summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive_gtk.pm
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2001-09-05 12:55:06 +0000
committerMystery Man <unknown@mandriva.org>2001-09-05 12:55:06 +0000
commitec7d8bfda214073d222fcadfa1ac9d3ed884ea87 (patch)
treed17c669ffaea9eae8bbc6b1b82b6164e75c6c42d /perl-install/interactive_gtk.pm
parentd2428470c34f096821615c7f119775b03aa86253 (diff)
downloaddrakx-ec7d8bfda214073d222fcadfa1ac9d3ed884ea87.tar
drakx-ec7d8bfda214073d222fcadfa1ac9d3ed884ea87.tar.gz
drakx-ec7d8bfda214073d222fcadfa1ac9d3ed884ea87.tar.bz2
drakx-ec7d8bfda214073d222fcadfa1ac9d3ed884ea87.tar.xz
drakx-ec7d8bfda214073d222fcadfa1ac9d3ed884ea87.zip
This commit was manufactured by cvs2svn to create tag 'V_9mdk'.V_9mdk
Diffstat (limited to 'perl-install/interactive_gtk.pm')
-rw-r--r--perl-install/interactive_gtk.pm791
1 files changed, 0 insertions, 791 deletions
diff --git a/perl-install/interactive_gtk.pm b/perl-install/interactive_gtk.pm
deleted file mode 100644
index 6445b39b5..000000000
--- a/perl-install/interactive_gtk.pm
+++ /dev/null
@@ -1,791 +0,0 @@
-package interactive_gtk; # $Id$
-
-use diagnostics;
-use strict;
-use vars qw(@ISA);
-
-@ISA = qw(interactive);
-
-use interactive;
-use common;
-use my_gtk qw(:helpers :wrappers);
-
-my $forgetTime = 1000; #- in milli-seconds
-
-sub new {
- ($::windowheight, $::windowwidth) = my_gtk::gtkroot()->get_size if !$::isInstall;
- ($::wantedheight, $::wantedwidth) = $::isEmbedded ? (450, 380) : ($::windowheight * 0.8, $::windowwidth * 0.8);
- goto &interactive::new;
-}
-sub enter_console { my ($o) = @_; $o->{suspended} = common::setVirtual(1) }
-sub leave_console { my ($o) = @_; common::setVirtual(delete $o->{suspended}) }
-
-sub exit {
- gtkset_mousecursor_normal(); #- for restoring a normal in any case on standalone
- my_gtk::flush();
- c::_exit($_[1]) #- workaround
-}
-
-sub ask_warn {
- local $my_gtk::pop_it = 1;
- &interactive::ask_warn;
-}
-
-sub ask_fileW {
- my ($o, $title, $dir) = @_;
- my $w = my_gtk->new($title);
- $dir .= '/' if $dir !~ m|/$|;
- my_gtk::_ask_file($w, $title, $dir);
- $w->main;
-}
-
-sub create_boxradio {
- my ($e, $may_go_to_next, $changed, $double_click) = @_;
- my @l = map { may_apply($e->{format}, $_) } @{$e->{list}};
-
- my $boxradio = gtkpack2__(new Gtk::VBox(0, 0),
- my @radios = gtkradio('', @l));
- $boxradio->show;
- my $tips = new Gtk::Tooltips;
- mapn {
- my ($txt, $w) = @_;
- $w->signal_connect(button_press_event => $double_click) if $double_click;
-
- $w->signal_connect(key_press_event => sub {
- my ($w, $event) = @_;
- $may_go_to_next->($w, $event, 'tab');
- 1;
- });
- $w->signal_connect(clicked => sub {
- ${$e->{val}} = $txt;
- &$changed;
- });
- if ($e->{help}) {
- gtkset_tip($tips, $w,
- ref($e->{help}) eq 'HASH' ? $e->{help}{$txt} :
- ref($e->{help}) eq 'CODE' ? $e->{help}($txt) : $e->{help});
- }
- } $e->{list}, \@radios;
-
- $boxradio, sub {
- my ($v) = @_;
- mapn { $_[0]->set_active($_[1] eq $v) } \@radios, $e->{list};
- }, $radios[0];
-}
-
-sub create_clist {
- my ($e, $may_go_to_next, $changed, $double_click) = @_;
- my $curr;
- my @l = map { may_apply($e->{format}, $_) } @{$e->{list}};
-
- my $list = new Gtk::CList(1);
- $list->set_selection_mode('browse');
- $list->set_column_auto_resize(0, 1);
-
- my $select = sub {
- $list->set_focus_row($_[0]);
- $list->select_row($_[0], 0);
- $list->moveto($_[0], 0, 0.5, 0) if $list->row_is_visible($_[0]) ne 'full';
- };
-
-# ref $title && !@okcancel ?
-# $list->signal_connect(button_release_event => $leave) :
-# $list->signal_connect(button_press_event => sub { &$leave if $_[1]{type} =~ /^2/ });
-
- my ($first_time, $starting_word, $start_reg) = (1, '', "^");
- my $timeout;
- $list->signal_connect(key_press_event => sub {
- my ($w, $event) = @_;
- my $c = chr($event->{keyval} & 0xff);
-
- Gtk->timeout_remove($timeout) if $timeout; $timeout = '';
-
- if ($event->{keyval} >= 0x100) {
- &$may_go_to_next if $c eq "\r" || $c eq "\x8d";
- $starting_word = '' if $event->{keyval} != 0xffe4; # control
- } else {
- if ($event->{state} & 4) {
- #- control pressed
- $c eq "s" or return 1;
- $start_reg and $start_reg = '', return 1;
- $curr++;
- } else {
- &$may_go_to_next if $c eq ' ';
-
- $curr++ if $starting_word eq '' || $starting_word eq $c;
- $starting_word .= $c unless $starting_word eq $c;
- }
- my $word = quotemeta $starting_word;
- my $j; for ($j = 0; $j < @l; $j++) {
- $l[($j + $curr) % @l] =~ /$start_reg$word/i and last;
- }
- $j == @l ?
- $starting_word = '' :
- $select->(($j + $curr) % @l);
-
- $timeout = Gtk->timeout_add($forgetTime, sub { $timeout = $starting_word = ''; 0 } );
- }
- 1;
- });
- $list->show;
-
- $list->append($_) foreach @l;
-
- $list->signal_connect(select_row => sub {
- my ($w, $row) = @_;
- ${$e->{val}} = $e->{list}[$curr = $row];
- &$changed;
- });
- $list->signal_connect(button_press_event => $double_click) if $double_click;
-
- $list, sub {
- my ($v) = @_;
- eval {
- my $nb = find_index { $_ eq $v } @{$e->{list}};
- $select->($nb) if $nb != $list->focus_row;
- };
- };
-}
-
-sub create_ctree {
- my ($e, $may_go_to_next, $changed, $double_click) = @_;
- my @l = map { may_apply($e->{format}, $_) } @{$e->{list}};
-
- my $sep = quotemeta $e->{separator};
- my $tree = Gtk::CTree->new(1, 0);
-
- my (%wtree, %wleaves, $size, $selected_via_click);
- my $parent; $parent = sub {
- if (my $w = $wtree{"$_[0]$e->{separator}"}) { return $w }
- my $s;
- foreach (split $sep, $_[0]) {
- $wtree{"$s$_$e->{separator}"} ||=
- $tree->insert_node($s ? $parent->($s) : undef, undef, [$_], 5, (undef) x 4, 0, 0);
- $size++ if !$s;
- $s .= "$_$e->{separator}";
- }
- $wtree{$s};
- };
- foreach (@l) {
- my ($root, $leaf) = /(.*)$sep(.+)/ ? ($1, $2) : ('', $_);
- $wleaves{$_} = $tree->insert_node($parent->($root), undef, [$leaf], 5, (undef) x 4, 1, 0);
- }
- undef %wtree;
-
- my $select = sub {
- my ($node) = @_;
- for (my $c = $node; $c; $c = $c->row->parent) {
- $tree->expand($c);
- }
- for (my $i = 0; $tree->node_nth($i); $i++) {
- if ($tree->node_nth($i) == $node) {
- $tree->set_focus_row($i);
- last;
- }
- }
- $tree->select($node);
- $tree->node_moveto($node, 0, 0.5, 0) if $tree->node_is_visible($node) ne 'full';
- };
-
- my $curr = $tree->node_nth(0); #- default value
- $tree->set_column_auto_resize(0, 1);
- $tree->set_selection_mode('browse');
- $tree->signal_connect(tree_select_row => sub {
- $curr = $_[1];
- if ($curr->row->is_leaf) {
- my @ll; for (my $c = $curr; $c; $c = $c->row->parent) {
- unshift @ll, first $tree->node_get_pixtext($c, 0);
- }
- my $val = join $e->{separator}, @ll;
- mapn {
- ${$e->{val}} = $_[1] if $val eq $_[0]
- } \@l, $e->{list};
- &$changed;
- } else {
- $tree->expand($curr) if $selected_via_click;
- }
- });
- my ($first_time, $starting_word, $start_reg) = (1, '', "^");
- my $timeout;
-
- my $toggle = sub {
- $curr->row->is_leaf ?
- &$may_go_to_next :
- $tree->toggle_expansion($curr);
- };
- $tree->signal_connect(key_press_event => sub {
- my ($w, $event) = @_;
- $selected_via_click = 0;
- my $c = chr($event->{keyval} & 0xff);
- $curr or return;
- Gtk->timeout_remove($timeout) if $timeout; $timeout = '';
-
- if ($event->{keyval} >= 0x100) {
- &$toggle if $c eq "\r" || $c eq "\x8d";
- $starting_word = '' if $event->{keyval} != 0xffe4; # control
- } else {
- my $next;
- if ($event->{state} & 4) {
- #- control pressed
- $c eq "s" or return 1;
- $start_reg and $start_reg = '', return 1;
- $next = 1;
- } else {
- &$toggle if $c eq ' ';
-
- $next = 1 if $starting_word eq '' || $starting_word eq $c;
- $starting_word .= $c unless $starting_word eq $c;
- }
- my $word = quotemeta $starting_word;
- my ($after, $best);
-
- $tree->pre_recursive(undef, sub {
- my ($tree, $node) = @_;
- $next &&= !$after;
- $after ||= $node == $curr;
- my ($t) = $tree->node_get_pixtext($node, 0);
-
- if ($t =~ /$start_reg$word/i) {
- if ($after && !$next) {
- ($best, $after) = ($node, 0);
- } else {
- $best ||= $node;
- }
- }
- });
- if (defined $best) {
- $select->($best);
- } else {
- $starting_word = '';
- }
- $timeout = Gtk->timeout_add($forgetTime, sub { $timeout = $starting_word = ''; 0 });
- }
- 1;
- });
- $tree->signal_connect(button_press_event => sub {
- $selected_via_click = 1;
- &$double_click if $curr->row->is_leaf && $double_click;
- });
-
- $tree->set_row_height($tree->style->font->ascent + $tree->style->font->descent + 1);
-
- $tree, sub {
- my $v = may_apply($e->{format}, $_[0]);
- $select->($wleaves{$v} || return) if $wleaves{$v} != $tree->selection;
- }, $size;
-}
-
-sub create_list {
- my ($e, $may_go_to_next, $changed, $double_click) = @_;
- my $l = $e->{list};
- my $list = new Gtk::List();
- $list->set_selection_mode('browse');
-
- my $select = sub {
- $list->select_item($_[0]);
- };
-
- my $tips = new Gtk::Tooltips;
- my $toselect;
- map_index {
- my $item = new Gtk::ListItem(may_apply($e->{format}, $_));
- $item->signal_connect(key_press_event => sub {
- my ($w, $event) = @_;
- my $c = chr($event->{keyval} & 0xff);
- $may_go_to_next->($event) if $event->{keyval} < 0x100 ? $c eq ' ' : $c eq "\r" || $c eq "\x8d";
- 1;
- });
- $list->append_items($item);
- $item->show;
- if ($e->{help}) {
- gtkset_tip($tips, $item,
- ref($e->{help}) eq 'HASH' ? $e->{help}{$_} :
- ref($e->{help}) eq 'CODE' ? $e->{help}($_) : $e->{help});
- }
- $item->grab_focus if ${$e->{val}} && $_ eq ${$e->{val}};
- } @$l;
-
- #- signal_connect'ed after append_items otherwise it is called and destroys the default value
- $list->signal_connect(select_child => sub {
- my ($w, $row) = @_;
- ${$e->{val}} = $l->[$list->child_position($row)];
- &$changed;
- });
- $list->signal_connect(button_press_event => $double_click) if $double_click;
-
- $list, sub {
- my ($v) = @_;
- eval {
- $select->(find_index { $_ eq $v } @$l);
- };
- };
-}
-
-sub ask_fromW {
- my ($o, $common, $l, $l2) = @_;
- my $ignore = 0; #-to handle recursivity
-
- my $mainw = my_gtk->new($common->{title}, %$o);
- $mainw->sync; # for XPM's creation
-
- #-the widgets
- my (@widgets, @widgets_always, @widgets_advanced, $advanced, $advanced_pack, $has_horiz_scroll, $has_scroll, $total_size, $max_width);
- my $tooltips = new Gtk::Tooltips;
-
- my $set_all = sub {
- $ignore = 1;
- $_->{set}->(${$_->{e}{val}}) foreach @widgets_always, @widgets_advanced;
- $_->{real_w}->set_sensitive(!$_->{e}{disabled}()) foreach @widgets_always, @widgets_advanced;
- $ignore = 0;
- };
- my $get_all = sub {
- ${$_->{e}{val}} = $_->{get}->() foreach @widgets_always, @widgets_advanced;
- };
- my $update = sub {
- my ($f) = @_;
- return if $ignore;
- $get_all->();
- $f->();
- $set_all->();
- };
- my $create_widget = sub {
- my ($e, $ind) = @_;
-
- my $may_go_to_next = sub {
- my ($w, $event, $kind) = @_;
- if ($kind eq 'tab') {
- if (($event->{keyval} & 0x7f) == 0x9) {
- $w->signal_emit_stop("key_press_event");
- if ($ind == $#widgets) {
- $mainw->{ok}->grab_focus;
- } else {
- $widgets[$ind+1]{focus_w}->grab_focus;
- }
- }
- } else {
- if (!$event || ($event->{keyval} & 0x7f) == 0xd) {
- $w->signal_emit_stop("key_press_event") if $event;
- if ($ind == $#widgets) {
- @widgets == 1 ? $mainw->{ok}->clicked : $mainw->{ok}->grab_focus;
- } else {
- $widgets[$ind+1]{focus_w}->grab_focus;
- }
- }
- }
- };
- my $changed = sub { $update->(sub { $common->{callbacks}{changed}($ind) }) };
-
- my ($w, $real_w, $focus_w, $set, $get, $expand, $size, $width);
- if ($e->{type} eq 'iconlist') {
- $w = new Gtk::Button;
- $set = sub {
- gtkdestroy($e->{icon});
- my $f = $e->{icon2f}->($_[0]);
- $e->{icon} = -e $f ?
- gtkpng($f) :
- new Gtk::Label(may_apply($e->{format}, $_[0]));
- $w->add($e->{icon});
- $e->{icon}->show;
- };
- $w->signal_connect(clicked => sub {
- $set->(${$e->{val}} = next_val_in_array(${$e->{val}}, $e->{list}));
- $changed->();
- });
- $real_w = gtkpack_(new Gtk::HBox(0,10), 1, new Gtk::HBox(0,0), 0, $w, 1, new Gtk::HBox(0,0), );
- } elsif ($e->{type} eq 'bool') {
- $w = Gtk::CheckButton->new($e->{text});
- $w->signal_connect(clicked => $changed);
- $set = sub { $w->set_active($_[0]) };
- $get = sub { $w->get_active };
- $width = length $e->{text};
- } elsif ($e->{type} eq 'label') {
- $w = Gtk::Label->new(${$e->{val}});
- $set = sub { $w->set($_[0]) };
- $width = length ${$e->{val}};
- } elsif ($e->{type} eq 'button') {
- $w = Gtk::Button->new('');
- $w->signal_connect(clicked => sub {
- $get_all->();
- $mainw->{rwindow}->hide;
- $e->{clicked}();
- $mainw->{rwindow}->show;
- $set_all->();
- });
- $set = sub { $w->child->set(may_apply($e->{format}, $_[0])) };
- $width = length may_apply($e->{format}, ${$e->{val}});
- } elsif ($e->{type} eq 'range') {
- my $adj = create_adjustment(${$e->{val}}, $e->{min}, $e->{max});
- $adj->signal_connect(value_changed => $changed);
- $w = new Gtk::HScale($adj);
- $w->set_digits(0);
- $w->signal_connect(key_press_event => $may_go_to_next);
- $set = sub { $adj->set_value($_[0]) };
- $get = sub { $adj->get_value };
- $size = 2;
- } elsif ($e->{type} =~ /list/) {
-
- my $quit_if_double_click =
- #- i'm the only one, double click means accepting
- @$l == 1 ?
- sub { if ($_[1]{type} =~ /^2/) { $mainw->{retval} = 1; Gtk->main_quit } } : '';
-
- my @para = ($e, $may_go_to_next, $changed, $quit_if_double_click);
- my $use_boxradio = exists $e->{gtk}{use_boxradio} ? $e->{gtk}{use_boxradio} : @{$e->{list}} <= 8;
-
- if ($e->{help}) {
- #- used only when needed, as key bindings are dropped by List (CList does not seems to accepts Tooltips).
- ($w, $set, $focus_w) = $use_boxradio ? create_boxradio(@para) : create_list(@para);
- } elsif ($e->{type} eq 'treelist') {
- ($w, $set, $size) = create_ctree(@para);
- } else {
- ($w, $set, $focus_w) = $use_boxradio ? create_boxradio(@para) : create_clist(@para);
- }
- if (@{$e->{list}} > (@$l == 1 ? 10 : 4)) {
- $has_scroll = 1;
- $expand = 1;
- $real_w = createScrolledWindow($w);
- $size ||= @{$e->{list}};
- }
- $width = max(map { length } @{$e->{list}});
- } else {
- if ($e->{type} eq "combo") {
- $w = new Gtk::Combo;
- $w->set_use_arrows_always(1);
- $w->entry->set_editable(!$e->{not_edit});
- $w->set_popdown_strings(@{$e->{list}});
- $w->disable_activate;
- ($real_w, $w) = ($w, $w->entry);
- my @l = sort { $b <=> $a } map { length } @{$e->{list}};
- $has_horiz_scroll = 1;
- $width = $l[@l / 16]; # take the third octile (think quartile)
- } else {
- $w = new Gtk::Entry;
- $w->signal_connect(focus_in_event => sub { $w->select_region });
- $w->signal_connect(focus_out_event => sub { $w->select_region(0,0) });
- }
- $w->signal_connect(key_press_event => $may_go_to_next);
- $w->signal_connect(changed => $changed);
- $w->set_visibility(0) if $e->{hidden};
- $set = sub { $w->set_text($_[0]) if $_[0] ne $w->get_text };
- $get = sub { $w->get_text };
- }
- $w->signal_connect(focus_out_event => sub {
- $update->(sub { $common->{callbacks}{focus_out}($ind) });
- });
- $tooltips->set_tip($w, $e->{help}) if $e->{help} && !ref($e->{help});
-
- $max_width = max($max_width, $width);
- $total_size += $size || 1;
-
- { e => $e, w => $w, real_w => $real_w || $w, focus_w => $focus_w || $w, expand => $expand,
- get => $get || sub { ${$e->{val}} }, set => $set || sub {},
- icon_w => -e $e->{icon} ? gtkpng($e->{icon}) : '' };
- };
- @widgets_always = map_index { $create_widget->($_, $::i ) } @$l;
- my $always_total_size = $total_size;
- @widgets_advanced = map_index { $create_widget->($_, $::i + @$l) } @$l2;
-
- my $set_advanced = sub {
- ($advanced) = @_;
- $advanced ? $advanced_pack->show : $advanced_pack->hide;
- @widgets = (@widgets_always, $advanced ? @widgets_advanced : ());
- $mainw->sync; #- for $set_all below (mainly for the set of clist)
- $set_all->(); #- must be done when showing advanced lists (to center selected value)
- };
- my $advanced_button = [ $common->{advanced_label}, sub { $set_advanced->(!$advanced) } ];
-
- my $create_widgets = sub {
- my $w = create_packtable({}, map { [($_->{icon_w}, $_->{e}{label}, $_->{real_w})]} @_);
-
- my $width = max(250, $max_width * 5);
- $mainw->{box_width} = min($::wantedwidth, $width);
-
- my $height = max(200, my_gtk::n_line_size($always_total_size, 'various', $mainw->{rwindow}));
- $mainw->{box_height} = min($::wantedheight, $height);
-
- my $has = $width > $mainw->{box_width} || $height > $mainw->{box_height};
- $has_scroll ||= $has;
- $has ? createScrolledWindow($w) : $w;
- };
-
- my $pack = gtkpack_(create_box_with_title($mainw, @{$common->{messages}}),
- 1, $create_widgets->(@widgets_always),
- if_($common->{ok} || $::isWizard,
- 0, $mainw->create_okcancel($common->{ok}, $common->{cancel}, '', @$l2 ? $advanced_button : ())));
- my @adv = map { warp_text($_) } @{$common->{advanced_messages}};
- $always_total_size += $mainw->{box_size};
- $advanced_pack =
- gtkpack_(new Gtk::VBox(0,0),
- 0, '',
- (map {; 0, new Gtk::Label($_) } @adv),
- 0, new Gtk::HSeparator,
- 1, $create_widgets->(@widgets_advanced));
-
- $pack->pack_start($advanced_pack, 1, 1, 0);
- gtkadd($mainw->{window}, $pack);
- if ($has_scroll && !$::isEmbedded &&!$::isWizard) {
- $mainw->{rwindow}->set_default_size($mainw->{box_width}, $mainw->{box_height});
- } elsif ($has_horiz_scroll && !$::isEmbedded &&!$::isWizard) {
- $mainw->{rwindow}->set_default_size($mainw->{box_width}, 0);
- }
- $set_advanced->(0);
- (@widgets ? $widgets[0]{focus_w} : $common->{focus_cancel} ? $mainw->{cancel} : $mainw->{ok})->grab_focus();
-
- my $check = sub {
- my ($f) = @_;
- sub {
- $get_all->();
- my ($error, $focus) = $f->();
-
- if ($error) {
- $set_all->();
- $widgets[$focus || 0]{focus_w}->grab_focus();
- }
- !$error;
- }
- };
- $mainw->main(map { $check->($common->{callbacks}{$_}) } 'complete', 'canceled');
-}
-
-
-sub ask_browse_tree_info_refW {
- my ($o, $common) = @_;
- my ($curr, $parent, $info_widget, $w_size, $prev_label, $go, $idle);
- my (%wtree, %ptree, %pix);
-
- my $w = my_gtk->new($common->{title});
- my $details = new Gtk::VBox(0,0);
- my $tree = Gtk::CTree->new(3, 0);
- $tree->set_selection_mode('browse');
- $tree->set_column_width(0, 200);
- $tree->set_column_auto_resize($_, 1) foreach 1..2;
-
- gtkadd($w->{window},
- gtkpack_(new Gtk::VBox(0,5),
- 0, $common->{message},
- 1, gtkpack(new Gtk::HBox(0,0),
- createScrolledWindow($tree),
- gtkadd(gtkset_usize(new Gtk::Frame(_("Info")), $::windowwidth - 490, 0),
- createScrolledWindow($info_widget = new Gtk::Text),
- )),
- 0, my $l = new Gtk::HBox(0,15),
- 0, gtkpack(new Gtk::HBox(0,10),
- $go = gtksignal_connect(new Gtk::Button($common->{ok}), "clicked" => sub { $w->{retval} = 1; Gtk->main_quit }),
- $common->{cancel} ? (gtksignal_connect(new Gtk::Button($common->{cancel}), "clicked" => sub { $w->{retval} = 0; Gtk->main_quit })) : (),
- )
- ));
- gtkpack__($l, my $toolbar = new Gtk::Toolbar('horizontal', 'icons'));
- if ($common->{auto_deps}) {
- gtkpack__($l, gtksignal_connect(gtkset_active(new Gtk::CheckButton($common->{auto_deps}), $common->{state}{auto_deps}), clicked => sub { invbool \$common->{state}{auto_deps} }));
- }
- $l->pack_end($w_size = new Gtk::Label($prev_label = $common->{state}{status_label}), 0, 1, 20);
-
- $w->{window}->set_usize(map { $_ - 2 * $my_gtk::border - 4 } $::windowwidth, $::windowheight);
- $go->grab_focus;
- $w->{rwindow}->show_all;
-
- my $update_size = sub {
- my $new_label = $common->{get_status}();
- $prev_label ne $new_label and $w_size->set($prev_label = $new_label);
- };
-
- my $set_node_state_flat = sub {
- my ($node, $state) = @_;
- unless ($pix{$state}) {
- foreach ("$ENV{SHARE_PATH}/$state.png", "$ENV{SHARE_PATH}/rpm-$state.png") {
- if (-e $_) {
- $pix{$state} = [ gtkcreate_png($_) ];
- last;
- }
- }
- $pix{$state} or die "unable to find a pixmap for state $state";
- }
- $tree->node_set_pixmap($node, 1, $pix{$state}[0], $pix{$state}[1]);
- };
- my $set_node_state_tree; $set_node_state_tree = sub {
- my ($node, $state) = @_;
- unless ($pix{$state}) {
- foreach ("$ENV{SHARE_PATH}/$state.png", "$ENV{SHARE_PATH}/rpm-$state.png") {
- if (-e $_) {
- $pix{$state} = [ gtkcreate_png($_) ];
- last;
- }
- }
- $pix{$state} or die "unable to find a pixmap for state $state";
- }
- if ($node->{state} ne $state) {
- if ($node->row->is_leaf) {
- my $parent = $node->row->parent;
- my $stats = $parent->{state_stats} ||= {}; --$stats->{$node->{state}}; ++$stats->{$state};
- my @list = grep { $stats->{$_} > 0 } keys %$stats;
- my $new_state = @list == 1 ? $list[0] : 'semiselected';
- $parent->{state} ne $new_state and $set_node_state_tree->($parent, $new_state);
- }
- $tree->node_set_pixmap($node, 1, $pix{$state}[0], $pix{$state}[1]);
- $node->{state} = $state; #- hack to to get this features efficiently.
- }
- };
- my $set_node_state = $common->{state}{flat} ? $set_node_state_flat : $set_node_state_tree;
-
- my $set_leaf_state = sub {
- my ($leaf, $state) = @_;
- $set_node_state->($_, $state) foreach @{$ptree{$leaf}};
- };
- my $add_parent; $add_parent = sub {
- my ($root, $state) = @_;
- $root or return undef;
- if (my $w = $wtree{$root}) { return $w }
- my $s; foreach (split '\|', $root) {
- my $s2 = $s ? "$s|$_" : $_;
- $wtree{$s2} ||= do {
- my $n = $tree->insert_node($s ? $add_parent->($s, $state) : undef, undef, [$_, '', ''], 5, (undef) x 4, 0, 0);
- $n;
- };
- $s = $s2;
- }
- $set_node_state->($wtree{$s}, $state); #- use this state by default as tree is building.
- $wtree{$s};
- };
- my $add_node = sub {
- my ($leaf, $root) = @_;
- my $state = $common->{node_state}($leaf) or return;
- my $node = $tree->insert_node($add_parent->($root, $state), undef, [$leaf, '', ''], 5, (undef) x 4, 1, 0);
- $set_node_state->($node, $state);
- push @{$ptree{$leaf}}, $node;
- };
- my $add_nodes = sub {
- foreach (values %ptree) {
- delete $_->{state} foreach @$_;
- }
- foreach (values %wtree) {
- delete $_->{state};
- delete $_->{state_stats};
- }
- %ptree = %wtree = ();
-
- $tree->freeze;
- while (1) { $tree->remove_node($tree->node_nth(0) || last) }
-
- $common->{state}{flat} = $_[0];
- $set_node_state = $common->{state}{flat} ? $set_node_state_flat : $set_node_state_tree;
- $common->{build_tree}($add_node, $common->{state}{flat});
-
- $tree->thaw;
- &$update_size;
- };
- $add_nodes->($common->{state}{flat});
-
- my @toolbar = (ftout => [ _("Expand Tree") , sub { $tree->expand_recursive(undef) } ],
- ftin => [ _("Collapse Tree") , sub { $tree->collapse_recursive(undef) } ],
- reload => [ _("Toggle between flat and group sorted"), sub { $add_nodes->(!$common->{state}{flat}) } ]);
- foreach my $ic (@{$common->{icons} || []}) {
- push @toolbar, ( $ic->{icon} => [ $ic->{help}, sub {
- if ($ic->{code}) {
- my $w = $ic->{wait_message} && $o->wait_message('', $ic->{wait_message});
- $ic->{code}();
- $add_nodes->($common->{state}{flat});
- }
- } ]);
- }
- my %toolbar = @toolbar;
- $toolbar->set_button_relief("none");
- foreach (grep_index { $::i % 2 == 0 } @toolbar) {
- gtksignal_connect($toolbar->append_item(undef, $toolbar{$_}[0], undef, gtkpng("$ENV{SHARE_PATH}/$_.png")),
- clicked => $toolbar{$_}[1]);
- }
- $toolbar->set_style("icons");
-
- my $display_info = sub { gtktext_insert($info_widget, $common->{get_info}($curr)); 0 };
- my $children = sub { map { ($tree->node_get_pixtext($_, 0))[0] } gtkctree_children($_[0]) };
- my $toggle = sub {
- if (ref $curr && ! $_[0]) {
- $tree->toggle_expansion($curr);
- } else {
- if (ref $curr) {
- my @l = $common->{grep_allowed_to_toggle}($children->($curr)) or return;
- my @unsel = $common->{grep_unselected}(@l);
- my @p = @unsel ?
- @unsel : # not all is selected, select all
- @l;
- $common->{toggle_nodes}($set_leaf_state, @p);
- &$update_size;
- $parent = $curr;
- } else {
- $common->{check_interactive_to_toggle}($curr) and $common->{toggle_nodes}($set_leaf_state, $curr);
- &$update_size;
- }
- }
- };
-
- $tree->signal_connect(key_press_event => sub {
- my ($w, $e) = @_;
- my $c = chr($e->{keyval} & 0xff);
- $toggle->(0) if $e->{keyval} >= 0x100 ? $c eq "\r" || $c eq "\x8d" : $c eq ' ';
- 1;
- });
- $tree->signal_connect(tree_select_row => sub {
- Gtk->timeout_remove($idle) if $idle;
-
- if ($_[1]->row->is_leaf) {
- ($curr) = $tree->node_get_pixtext($_[1], 0);
- $parent = $_[1]->row->parent;
- $idle = Gtk->timeout_add(100, $display_info);
- } else {
- $curr = $_[1];
- }
- $toggle->(1) if $_[2] == 1;
- });
- &$update_size;
- my $b = before_leaving { #- ensure cleaning here.
- foreach (values %ptree) {
- delete $_->{state} foreach @$_;
- }
- foreach (values %wtree) {
- delete $_->{state};
- delete $_->{state_stats};
- }
- };
- $w->main;
-}
-
-sub wait_messageW($$$) {
- my ($o, $title, $messages) = @_;
-
- local $my_gtk::pop_it = 1;
- my $w = my_gtk->new($title, %$o, grab => 1);
- gtkadd($w->{window}, my $hbox = new Gtk::HBox(0,0));
- $hbox->pack_start(my $box = new Gtk::VBox(0,0), 1, 1, 10);
- $box->pack_start($_, 1, 1, 4) foreach my @l = map { new Gtk::Label(join("\n", warp_text($_))) } @$messages;
-
- ($w->{wait_messageW} = $l[$#l])->signal_connect(expose_event => sub { $w->{displayed} = 1 });
- $w->{rwindow}->set_position('center') if ($::isStandalone && !$::isEmbedded && !$::isWizard);
- $w->{window}->show_all;
- $w->sync until $w->{displayed};
- $w;
-}
-sub wait_message_nextW {
- my ($o, $messages, $w) = @_;
- my $msg = join("\n", warp_text(join "\n", @$messages));
- return if $msg eq $w->{wait_messageW}->get; #- needed otherwise no expose_event :(
- $w->{displayed} = 0;
- $w->{wait_messageW}->set($msg);
- $w->flush until $w->{displayed};
-}
-sub wait_message_endW {
- my ($o, $w) = @_;
- $w->destroy;
-}
-
-sub kill {
- my ($o) = @_;
- $o->{before_killing} ||= 0;
-
- while (my $e = shift @tempory::objects) { $e->destroy }
- while (@interactive::objects > $o->{before_killing}) {
- my $w = pop @interactive::objects;
- $w->destroy;
- }
- $o->{before_killing} = @interactive::objects;
-}
-
-1;
perl-install/share/advertising/Makefile?h=V1_1_8_5mdk&id=086c820d43cdc543121f9206cf5368f95659e170'>perl-install/share/advertising/Makefile
+++ /dev/null
@@ -1,8 +0,0 @@
-include ../../Makefile.config
-
-install:
- rm -rf $(ROOTDEST)/Mandrake/share/advertising
- install -d $(ROOTDEST)/Mandrake/share/advertising
- install -m755 *.pl $(ROOTDEST)/Mandrake/share/advertising
- install -m644 *.png $(ROOTDEST)/Mandrake/share/advertising
- install -m644 list $(ROOTDEST)/Mandrake/share/advertising
diff --git a/perl-install/share/advertising/list b/perl-install/share/advertising/list
deleted file mode 100644
index fb5689909..000000000
--- a/perl-install/share/advertising/list
+++ /dev/null
@@ -1,14 +0,0 @@
-00-thanks.png
-01-gnu.png
-02-internet.png
-03-graphic.png
-04-develop.png
-05-contcenter.png
-06-user.png
-07-server.png
-08-games.png
-09-MDKcampus.png
-10-MDKexpert.png
-11-consul.png
-12-MDKstore.png
-13-Nvert.png
diff --git a/perl-install/share/aliases b/perl-install/share/aliases
deleted file mode 100644
index d3807605a..000000000
--- a/perl-install/share/aliases
+++ /dev/null
@@ -1,7 +0,0 @@
-raidstop raidstart
-gunzip gzip
-install2 perl-install/install2
-commands perl-install/commands
-runinstall2 install2
-fsck.ext2 e2fsck
-rmmod insmod_
diff --git a/perl-install/share/compssList b/perl-install/share/compssList
deleted file mode 100644
index 36b0f4a44..000000000
--- a/perl-install/share/compssList
+++ /dev/null
@@ -1,1665 +0,0 @@
- normal server developer
-
-AVLTree-devel 0 0 0
-AfterStep 22 0 53
-AfterStep-APPS 22 0 35
-Apache-ASP -99 0 -99
-ApacheJServ -99 0 -99
-Apple-StyleWriter-printer-driver__lpstyl 0 0 0
-Aurora 81 -1 -1
-BasiliskII 35 0 10
-BasiliskII-sheepnet 33 0 8
-BitchX 43 0 15
-C++2LaTeX 0 0 30
-Canon-CaPSL-printer-driver__cjet 0 0 0
-ClanLib 32 0 32
-ClanLib-devel 0 0 25
-ClanLib-docs 0 0 25
-ClanLib-gl 0 0 0
-ClanLib-magick 0 0 0
-ClanLib-mikmod 0 0 0
-ClanLib-png 0 0 0
-Device3Dfx -1 -1 -1
-DrakConf 84 84 84
-drakprofile 50 0 50
-draksync 50 0 50
-DrakeLogo 20 0 0
-ElectricFence 10 0 66
-Epplets 57 0 53
-Eterm 57 0 53
-Eterm-devel 0 0 0
-FaxMail 30 0 0
-FileRunner 45 0 25
-FreeWnn -20 -20 -20
-FreeWnn-devel -70 -60 -40
-GConf 0 0 0
-GConf-devel 0 0 40
-GXedit 40 0 55
-Glide_V2 -1 -1 -1
-Glide_V2-devel -1 -1 -1
-Glide_V3 -1 -1 -1
-Glide_V3-DRI -1 -1 -1
-Glide_V3-DRI-devel -1 -1 -1
-Glide_V3-devel -1 -1 -1
-Glide_V5 -1 -1 -1
-Glide_V5-devel -1 -1 -1
-HTML-Embperl 0 40 40
-Hermes 32 0 42
-Hermes-devel 0 0 35
-ImageMagick 56 5 60
-ImageMagick-devel 10 0 60
-ImageMagick-lib 0 0 0
-MAKEDEV 91 91 91
-MandrakeUpdate 82 0 80
-Mesa 30 0 70
-Mesa-common 30 0 70
-Mesa-common-devel 0 0 70
-Mesa-demos 10 0 15
-MySQL 2 55 15
-MySQL-bench 2 50 10
-MySQL-client 2 52 11
-MySQL-devel 0 0 15
-MySQL-shared 2 50 10
-ORBit 0 0 55
-ORBit-devel 10 0 55
-SDL 50 0 25
-SDL-devel 0 0 25
-SDL_image 0 0 25
-SDL_image-devel 0 0 25
-SDL_mixer 0 0 25
-SDL_mixer-devel 0 0 25
-SDL_net 0 0 25
-SDL_net-devel 0 0 25
-SDL_ttf 0 0 25
-SDL_ttf-devel 0 0 25
-SVGATextMode 0 0 0
-SmallEiffel 0 0 30
-SysVinit 15 52 45
-TiMidity++ 51 0 54
-WMRack 40 0 32
-WindowMaker 40 0 57
-WindowMaker-devel 0 0 30
-WsLib-devel 0 0 0
-X11R6-contrib 55 0 47
-XFree86 91 0 81
-XFree86-100dpi-fonts 56 0 30
-XFree86-3DLabs -30 -30 -30
-XFree86-75dpi-fonts 91 0 81
-XFree86-8514 -30 -30 -30
-XFree86-AGX -30 -30 -30
-XFree86-FBDev -30 -30 -30
-XFree86-I128 -30 -30 -30
-XFree86-ISO8859-2 -20 -30 -20
-XFree86-ISO8859-2-100dpi-fonts -20 -30 -20
-XFree86-ISO8859-2-75dpi-fonts -20 -30 -20
-XFree86-ISO8859-2-Type1-fonts -20 -30 -20
-XFree86-ISO8859-9 -20 -30 -20
-XFree86-ISO8859-9-100dpi-fonts -20 -30 -20
-XFree86-ISO8859-9-75dpi-fonts -20 -30 -20
-XFree86-Mach32 -30 -30 -30
-XFree86-Mach64 -30 -30 -30
-XFree86-Mach8 -30 -30 -30
-XFree86-Mono -30 -30 -30
-XFree86-P9000 -30 -30 -30
-XFree86-S3 -30 -30 -30
-XFree86-S3V -30 -30 -30
-XFree86-SVGA -30 -30 -30
-XFree86-VGA16 -30 -30 -30
-XFree86-W32 -30 -30 -30
-XFree86-Xnest 0 0 55
-XFree86-Xvfb 0 0 15
-XFree86-cyrillic-fonts -20 -30 -20
-XFree86-devel 12 0 55
-XFree86-doc -30 -30 -30
-XFree86-glide-module -2 -2 -2
-XFree86-libs 10 0 0
-XFree86-server -30 -30 -30
-XFree86-server-common -30 -30 -30
-XFree86-static-libs 0 0 20
-XFree86-xfs 0 0 0
-XaoS 40 0 25
-XaoS-aalib 0 0 0
-XaoS-svgalib 0 0 0
-Xaw3d 20 0 70
-Xaw3d-devel 10 0 60
-Zope 0 15 30
-Zope-components 0 15 30
-Zope-core 0 15 30
-Zope-pcgi 0 15 30
-Zope-services 0 15 30
-Zope-zpublisher 0 15 30
-Zope-zserver 0 15 30
-Zope-ztemplates 0 15 30
-aalib 25 0 15
-aalib-devel 0 0 25
-abisuite 59 0 45
-acon -10 -10 -10
-acpid 0 0 0
-adjtimex 22 35 87
-adns 30 30 30
-adns-devel 0 0 30
-aktion 66 0 15
-alsa 0 0 0
-alsa-lib 0 0 0
-alsa-lib-devel 0 0 20
-alsa-source 0 0 0
-alsa-utils 0 0 0
-alsaplayer 0 0 0
-am-utils 0 25 19
-ami -20 -20 -20
-ami-gnome -20 -20 -20
-anacron 85 70 85
-anonftp 0 86 13
-apache -99 80 -99
-apache-common -99 0 -99
-apache-devel -99 0 -99
-apache-manual -99 40 -99
-apache-mod_perl -99 85 -99
-apache-mod_perl-devel -99 0 -99
-apache-suexec -99 75 -99
-apcupsd -1 -1 -1
-apmd -1 -1 -1
-apmd-devel -1 -1 -1
-app-defaults-be -30 -30 -30
-app-defaults-cs -30 -30 -30
-app-defaults-ga -30 -30 -30
-app-defaults-ru -30 -30 -30
-app-defaults-th -30 -30 -30
-app-defaults-uk -30 -30 -30
-arpwatch 0 50 0
-ash 10 10 10
-aspell 49 15 22
-aspell-ca -30 -30 -30
-aspell-cs -30 -30 -30
-aspell-da -30 -30 -30
-aspell-de -30 -30 -30
-aspell-de_CH -30 -30 -30
-aspell-devel 0 0 10
-aspell-en -30 -30 -30
-aspell-en_CA -30 -30 -30
-aspell-en_GB -30 -30 -30
-aspell-eo -30 -30 -30
-aspell-es -30 -30 -30
-aspell-fr -30 -30 -30
-aspell-it -30 -30 -30
-aspell-nl -30 -30 -30
-aspell-no -30 -30 -30
-aspell-pl -30 -30 -30
-aspell-sv -30 -30 -30
-at 42 96 94
-aterm 17 0 13
-audiofile 25 0 26
-audiofile-devel 10 0 26
-aumix 79 0 79
-auth_ldap 5 75 20
-autoconf 15 0 84
-autofs 48 45 50
-autoirpm -60 -60 -60
-autologin 82 0 82
-automake 15 0 84
-awesfx 20 0 13
-basesystem 0 0 0
-bash 0 0 0
-bash-doc 35 50 71
-bash1 15 5 13
-bc 40 25 25
-bdflush 0 0 0
-bind 0 75 0
-bind-devel 0 0 0
-bind-utils 25 35 70
-binutils 47 0 87
-bison 10 0 80
-blackbox 30 0 45
-blt 10 0 75
-bluefish 60 0 60
-boa -99 -99 -99
-bonnie 5 45 25
-bonobo 20 0 20
-bonobo-devel 0 0 35
-bootparamd 20 78 0
-bug-buddy 0 0 20
-byacc 16 0 80
-bzflag -1 -1 -1
-bzip2 41 85 75
-caching-nameserver 0 70 0
-cbb 55 0 13
-cdecl 10 0 70
-cdialog 3 0 20
-cdp 40 0 27
-cdparanoia 45 0 45
-cdparanoia-devel 0 0 30
-cdrecord 45 0 45
-cdrecord-cdda2wav 44 0 45
-cdrecord-devel 10 0 0
-cervisia 0 0 0
-cfengine 0 30 0
-chkconfig 0 65 10
-chkfontpath 0 0 50
-chromium -1 -1 -1
-clanbomber 65 0 25
-cleanfeed 24 65 21
-clisp 0 0 15
-compat-glibc 0 0 40
-compat-libs 0 0 0
-comsat 0 30 2
-console-tools 97 97 97
-console-tools-devel 0 0 0
-control-center 69 0 10
-control-center-devel 0 0 0
-control-panel 2 0 2
-cooledit 0 0 30
-corewars 0 15 0
-cpio 90 89 90
-cproto 15 0 61
-cracklib 10 85 35
-cracklib-devel 0 0 15
-cracklib-dicts 10 82 35
-crontabs 95 95 95
-csmash -1 -1 -1
-ctags 10 0 80
-cttex -30 -30 -30
-cups -99 -99 -99
-cups-devel 0 0 20
-cups-drivers -99 -99 -99
-cvs 18 60 72
-cvsweb 0 0 30
-cxhextris 50 0 36
-detect 25 25 75
-detect-devel 0 0 60
-detect-lst 25 25 75
-dev 99 99 99
-dev86 0 0 40
-dev86-devel 0 0 40
-devfsd 0 0 0
-dhcp -99 80 -99
-dhcp-client 0 79 5
-dhcp-relay 0 10 0
-dhcpcd 0 0 0
-dhcpxd 0 0 0
-dia 30 0 30
-dialog 10 0 71
-diffstat 12 50 87
-diffutils 42 55 87
-dip 40 45 13
-docbook-dtd31-sgml 30 0 45
-docbook-style-dsssl 5 15 15
-docbook-style-dsssl-doc 4 14 14
-dosemu 45 0 49
-dosemu-freedos 45 0 49
-dosfstools 40 15 22
-doxygen 0 0 40
-dpsftp 45 0 0
-dpsftplib 45 0 0
-dpsftplib-devel 45 0 15
-drakfloppy 84 0 84
-drakfont 84 0 84
-drakxtools 86 80 87
-dump 10 75 87
-e2fsprogs 98 98 98
-e2fsprogs-devel 0 0 25
-eMusic 65 0 50
-ed 45 10 5
-ee 58 0 54
-efax 25 78 30
-egcs 5 0 50
-egcs-c++ 5 0 50
-egcs-cpp 5 0 50
-egcs-g77 5 0 50
-egcs-objc 5 0 50
-egcs-objc-devel 4 0 20
-eggdrop 25 0 25
-eject 92 33 91
-elm 22 5 13
-emacs 49 45 0
-emacs-X11 51 0 69
-emacs-el 0 0 15
-emacs-leim 20 0 50
-emacs-nox 20 0 14
-emacs-pcomplete 20 0 30
-emacs-tramp 20 20 30
-enlightenment 41 0 55
-enscript 20 25 71
-eog 30 0 20
-eperl 0 0 10
-eshell 20 0 30
-esound 0 0 0
-esound-devel 12 0 4
-etcskel 98 98 98
-ethemes 40 0 35
-exmh 40 0 36
-expect 23 0 71
-ext2ed 5 52 42
-ext2resize 5 52 42
-faces 20 75 15
-faces-devel 10 0 0
-faces-xface 20 0 15
-faq 63 49 53
-fbset 22 0 0
-fdutils 10 0 0
-fetchmail 45 99 31
-fetchmail-daemon 20 30 20
-fetchmailconf 45 0 40
-file 92 92 94
-filesystem 99 99 99
-fileutils 99 99 99
-findutils 97 97 97
-finger 40 35 27
-finger-server 0 30 0
-flex 13 0 72
-fltk 0 0 0
-fltk-devel 0 0 15
-fmirror 45 35 40
-fnlib 10 0 7
-fnlib-devel 10 0 0
-fonts-ttf-armenian -10 0 -10
-fonts-ttf-big5 -10 0 -10
-fonts-ttf-decoratives 72 0 68
-fonts-ttf-gb2312 -10 0 -10
-fonts-ttf-japanese -10 0 -10
-fonts-ttf-korean -10 0 -10
-fonts-ttf-west_european 77 0 74
-fonts-type1-baltic -15 -15 -15
-fortune-mod 10 0 10
-freeciv 54 0 53
-freetype 10 0 4
-freetype-devel 10 0 0
-fribidi 0 0 0
-fribidi-devel 0 0 0
-ftp 90 92 90
-fvwm 12 0 15
-fvwm2 17 0 17
-fvwm2-icons 17 0 17
-fwhois 25 45 36
-g-print 20 0 20
-g-wrap 0 0 40
-g-wrap-devel 0 0 20
-gaddr 45 0 40
-gaim 35 0 30
-gated 0 80 0
-gatos 55 0 49
-gawk 10 55 87
-gawk-doc 10 35 50
-gcc 50 40 90
-gcc-c++ 15 0 74
-gcc-chill 20 0 65
-gcc-colorgcc 0 0 0
-gcc-cpp 47 0 72
-gcc-fr 0 0 0
-gcc-g77 15 0 27
-gcc-java 16 0 65
-gcc-libgcj 15 0 30
-gcc-objc 16 0 35
-gcombust 40 0 0
-gd 12 0 71
-gd-devel 10 0 71
-gd-utils 45 0 64
-gdb 12 0 94
-gdbm 12 0 72
-gdbm-devel 10 0 72
-gdk-pixbuf 68 0 70
-gdk-pixbuf-devel 0 0 40
-gdm 67 0 55
-gedit 68 0 62
-gedit-devel 0 0 0
-genromfs 10 0 9
-gentoo 30 0 0
-gettext 10 15 71
-gettext-devel 0 0 35
-getty_ps 99 99 99
-gfcc 15 0 31
-gftp 67 0 62
-ggv 25 0 0
-ghc 0 0 35
-ghc-prof 0 0 2
-ghostscript 40 70 75
-ghostscript-utils 30 50 55
-ghostscript-fonts 22 55 75
-ghostscript-module-SVGALIB 10 0 63
-ghostscript-module-X 40 60 65
-gif2png 10 0 20
-giftrans 42 0 71
-gimp 69 0 67
-gimp-data-extras 55 0 58
-gimp-devel 10 0 40
-gimp-libgimp 10 0 50
-gimp-perl 30 0 30
-git 69 35 54
-gkrellm 15 30 15
-gkrellm-devel 0 0 20
-glade 17 0 57
-glademm 0 0 40
-glib 1 0 0
-glib-devel 10 0 87
-glibc 1 99 96
-glibc-devel 25 0 76
-glibc-profile 1 0 54
-gltron -1 -1 -1
-gmc 68 0 59
-gmp 17 0 71
-gmp-devel 10 0 71
-gnomba 24 0 24
-gnome-applets 68 0 55
-gnome-audio 60 0 55
-gnome-audio-extra 55 0 50
-gnome-chess 60 0 55
-gnome-core 68 0 55
-gnome-core-devel 10 0 55
-gnome-games 60 0 59
-gnome-games-devel 10 0 0
-gnome-guile 0 0 50
-gnome-guile-devel 10 0 50
-gnome-iconedit 60 0 55
-gnome-libs 68 0 55
-gnome-libs-devel 10 0 55
-gnome-linuxconf 74 0 74
-gnome-media 60 0 58
-gnome-network 60 0 58
-gnome-objc 0 0 40
-gnome-objc-devel 10 0 40
-gnome-pilot 55 0 45
-gnome-pilot-conduits 45 0 35
-gnome-pilot-devel 0 15 0
-gnome-pim 61 0 70
-gnome-pim-conduits 51 0 60
-gnome-pim-devel 10 0 70
-gnome-print 62 0 55
-gnome-print-devel 10 0 55
-gnome-tiles 60 0 55
-gnome-toaster 65 0 61
-gnome-users-guide 66 0 60
-gnome-utils 66 0 50
-gnome-vfs 0 0 0
-gnome-vfs-devel 0 0 30
-gnomeicu 61 0 58
-gnomemm 0 0 40
-gnomemm-devel 0 0 30
-gnorpm 74 0 71
-gnozip 50 0 60
-gnucash 35 0 15
-gnucash-devel 0 0 12
-gnuchess 40 0 31
-gnumeric 67 0 58
-gnuplot 65 0 53
-gnus 20 0 14
-gob 0 0 20
-gperf 12 0 72
-gphoto 60 0 58
-gpm 0 65 87
-gpm-devel 10 0 55
-gprolog 5 5 45
-gps 30 15 30
-gqcam 0 0 0
-gqview 55 0 49
-grep 0 92 94
-grip 60 0 35
-groff 0 0 62
-groff-for-man 0 0 0
-groff-gxditview 22 0 19
-groff-perl 0 0 0
-grpmi 0 0 0
-grub 99 99 99
-grub-doc 0 0 25
-gsl 10 0 0
-gsl-devel 0 0 0
-gsu 65 0 53
-gtk+ 0 0 70
-gtk+-devel 10 0 70
-gtk+licq 45 0 30
-gtk+mdk 0 0 15
-gtk+mdk-devel 0 0 15
-gtk-engines 0 0 70
-gtk-themes 50 0 20
-gtkdialogs 0 0 0
-gtkeyboard 20 0 0
-gtkglarea 10 0 15
-gtkglarea-devel 0 0 15
-gtkgo 15 0 5
-gtkgraph 65 0 35
-gtkhtml 0 0 0
-gtkhtml-devel 0 0 0
-gtkmm 20 0 55
-gtkmm-devel 20 0 55
-gtktalog 52 0 25
-gtkzip 60 0 58
-gtop 60 0 58
-gtulpas 10 0 10
-guile 11 0 75
-guile-devel 10 0 75
-gurpmi 82 0 86
-gv 55 0 49
-gzip 98 98 98
-hackkernel 0 0 0
-hackkernel-doc 0 0 0
-hackkernel-headers 0 0 0
-hackkernel-pcmcia-cs 0 0 0
-hackkernel-source 0 0 0
-happy 0 0 25
-harddrake 83 0 83
-haskell-GTK 0 0 10
-haskell-GTK-devel 0 0 10
-hdparm 98 98 98
-heartbeat -1 25 -1
-hexedit 91 91 91
-howto-html-de -30 -30 -30
-howto-html-el -30 -30 -30
-howto-html-en -30 -30 -30
-howto-html-es -30 -30 -30
-howto-html-fr -30 -30 -30
-howto-html-hr -30 -30 -30
-howto-html-id -30 -30 -30
-howto-html-it -30 -30 -30
-howto-html-ja -30 -30 -30
-howto-html-ko -30 -30 -30
-howto-html-pl -30 -30 -30
-howto-html-ro -30 -30 -30
-howto-html-sl -30 -30 -30
-howto-html-sv -30 -30 -30
-howto-html-zh -30 -30 -30
-howto-utils 0 0 0
-hugs98 0 0 15
-hylafax 0 0 0
-hylafax-client 0 0 0
-hylafax-server 0 0 0
-ibtk 20 0 13
-ical 40 0 27
-icepref 50 0 54
-icewm 65 0 78
-icewm-light 90 0 80
-imap 0 80 6
-imap-devel 0 0 6
-imlib 10 0 71
-imlib-cfgeditor 70 0 71
-imlib-devel 10 0 50
-imwheel 78 60 73
-indent 20 0 91
-indexhtml 0 87 76
-inews 6 12 15
-info 20 65 70
-info-install 0 0 10
-initscripts 99 99 99
-inn 0 55 0
-inn-devel 0 0 0
-intimed 0 55 10
-ipchains 15 98 13
-iplog 15 15 15
-iproute2 0 30 0
-ipvsadm 0 15 0
-ipxutils 20 85 9
-irda-utils -1 -1 -1
-irssi 59 0 57
-isapnptools 43 73 73
-isapnptools-devel 0 0 70
-isdn4k-utils -99 -99 -99
-isdn4net -99 -99 -99
-isicom 20 0 13
-ispell 49 15 22
-ispell-af -15 -15 -15
-ispell-br -15 -15 -15
-ispell-ca -15 -15 -15
-ispell-cs -15 -15 -15
-ispell-da -15 -15 -15
-ispell-de -15 -15 -15
-ispell-el -15 -15 -15
-ispell-en -15 -15 -15
-ispell-eo -15 -15 -15
-ispell-es -15 -15 -15
-ispell-fi -15 -15 -15
-ispell-fr -15 -15 -15
-ispell-ga -15 -15 -15
-ispell-gd -15 -15 -15
-ispell-gv -15 -15 -15
-ispell-id -15 -15 -15
-ispell-it -15 -15 -15
-ispell-nl -15 -15 -15
-ispell-no -15 -15 -15
-ispell-pl -15 -15 -15
-ispell-pt -15 -15 -15
-ispell-pt_BR -15 -15 -15
-ispell-ro -15 -15 -15
-ispell-ru -15 -15 -15
-ispell-sk -15 -15 -15
-ispell-sl -15 -15 -15
-ispell-sv -15 -15 -15
-itcl 10 0 60
-jadetex 15 0 45
-jed 16 18 14
-jed-common 0 18 0
-jed-xjed 40 0 22
-jikes 1 0 65
-joe 20 20 15
-kaffe 10 0 60
-kdbg 15 0 27
-kde1-compat 0 0 0
-kde1-compat-devel 0 0 0
-kdeaddutils 73 0 62
-kdeaddutils-devel 1 1 50
-kdeadmin 72 0 60
-kdebase 79 40 68
-kdebase-devel 1 1 60
-kdegames 71 0 59
-kdegraphics 77 40 66
-kdegraphics-devel 1 1 60
-kdelibs 0 0 0
-kdelibs-devel 1 1 60
-kdelibs-sound 60 0 55
-kdelibs-sound-devel 1 1 60
-kdemultimedia 77 0 66
-kdemultimedia-devel 1 1 60
-kdenetwork 72 0 60
-kdenetwork-devel 1 1 60
-kdepim 72 0 63
-kdesdk 0 0 35
-kdesupport 0 0 0
-kdesupport-devel 0 0 15
-kdetoys 70 0 65
-kdeutils 78 0 67
-kdiff 0 0 0
-kdiskcat 0 0 0
-kdoc 0 0 35
-kernel 99 99 99
-kernel-doc 5 50 65
-kernel-headers 1 45 94
-kernel-linus -1 -1 -1
-kernel-pcmcia-cs -1 -1 -1
-kernel-secure 0 0 0
-kernel-smp -1 -1 -1
-kernel-source 0 45 65
-kernel-utils 0 5 25
-kfilecoder 0 0 0
-kfirewall 0 0 0
-kfortune 0 0 0
-kfsstatus 0 0 0
-kfun21 0 0 0
-kimon 0 0 0
-kinput2-wnn4 -15 -15 -15
-kisocd 0 0 0
-kless 0 0 0
-klilo 0 0 0
-klyx 0 0 0
-kmag 0 0 0
-kmol 0 0 0
-kmp3 0 0 0
-kmp3te 0 0 0
-koffice 69 0 55
-koffice-devel 0 0 35
-kon2 -12 -60 -15
-kover 69 0 60
-kpacman 0 0 0
-kreglo 0 0 0
-krubik 0 0 0
-ksendfax 0 0 0
-kslide 0 0 0
-ktail 0 0 0
-ktelnet 0 0 0
-kterm -10 -90 -10
-kudzu 97 0 97
-kudzu-devel 0 0 43
-kups 60 0 50
-kups-devel 0 0 0
-kvideogen 0 0 0
-kvirc 69 0 56
-kvoice 0 0 0
-kvoicecontrol 0 0 0
-kwebget 0 0 0
-lame 15 40 35
-latex2html 25 0 50
-latte 0 0 45
-ld.so 98 98 98
-leafnode 0 50 0
-less 97 97 97
-lesstif 0 0 0
-lesstif-clients 0 0 0
-lesstif-devel 0 0 0
-lesstif-mwm 2 0 2
-lftp 50 78 83
-lha 40 25 72
-libPropList 10 0 80
-libPropList-devel 0 0 34
-libc 10 15 75
-libelf 10 15 80
-libghttp 10 0 55
-libghttp-devel 10 0 55
-libglade 10 0 55
-libglade-devel 10 0 40
-libgr 10 0 71
-libgr-devel 10 0 70
-libgr-progs 10 0 9
-libgtop 10 0 55
-libgtop-devel 10 0 55
-libjpeg 10 0 71
-libjpeg-devel 10 0 70
-libmikmod 10 0 55
-libmikmod-devel 10 0 55
-libnet 97 97 97
-libole2 0 0 0
-libole2-devel 0 0 0
-libpcap 10 80 72
-libpcap-devel 0 0 0
-libpng 10 0 71
-libpng-devel 10 0 71
-librep 10 0 50
-librep-devel 10 0 50
-libsafe 0 0 35
-libsigc++ 0 0 25
-libsigc++-devel 0 0 25
-libsigc++-examples 0 0 25
-libstdc++ 10 0 80
-libstdc++-compat 10 0 60
-libstdc++-devel 10 0 80
-libtabe -15 -90 -15
-libtabe-devel -15 -90 -15
-libtermcap 10 55 87
-libtermcap-devel 10 0 64
-libtiff 10 0 72
-libtiff-devel 10 0 72
-libtool 10 0 85
-libtool-devel 0 0 0
-libungif 10 0 72
-libungif-devel 10 0 72
-libungif-progs 10 0 2
-libunicode 10 0 80
-libunicode-devel 0 0 50
-libwmf 0 0 15
-libxml 10 0 71
-libxml-devel 10 0 71
-libxml2 10 0 71
-libxml2-devel 10 0 71
-licq 62 0 45
-licq-autoreply 45 0 30
-licq-console 45 0 30
-licq-devel 0 0 20
-licq-forwarder 45 0 30
-licq-rms 45 0 30
-licq-update-hosts 45 0 30
-lilo 99 99 99
-lilo-doc 0 0 30
-links 20 25 20
-linux_logo 92 72 92
-linuxconf 90 79 86
-linuxconf-gui -1 -1 -1
-linuxconf-lib 0 0 0
-linuxconf-util 0 0 0
-linuxconf 90 79 86
-linuxconf-devel 10 0 70
-lkmpg 2 0 65
-locales 96 76 96
-locales-af -1 -1 -1
-locales-ar -1 -1 -1
-locales-az -1 -1 -1
-locales-be -1 -1 -1
-locales-bg -1 -1 -1
-locales-br -1 -1 -1
-locales-ca -1 -1 -1
-locales-cs -1 -1 -1
-locales-cy -1 -1 -1
-locales-da -1 -1 -1
-locales-de -1 -1 -1
-locales-el -1 -1 -1
-locales-en -1 -1 -1
-locales-eo -1 -1 -1
-locales-es -1 -1 -1
-locales-et -1 -1 -1
-locales-eu -1 -1 -1
-locales-fa -1 -1 -1
-locales-fi -1 -1 -1
-locales-fo -1 -1 -1
-locales-ur -1 -1 -1
-locales-fr -1 -1 -1
-locales-ga -1 -1 -1
-locales-gd -1 -1 -1
-locales-gl -1 -1 -1
-locales-gv -1 -1 -1
-locales-he -1 -1 -1
-locales-hi -1 -1 -1
-locales-hr -1 -1 -1
-locales-hu -1 -1 -1
-locales-hy -1 -1 -1
-locales-id -1 -1 -1
-locales-is -1 -1 -1
-locales-it -1 -1 -1
-locales-ja -1 -1 -1
-locales-ka -1 -1 -1
-locales-kl -1 -1 -1
-locales-ko -1 -1 -1
-locales-kw -1 -1 -1
-locales-lo -1 -1 -1
-locales-lt -1 -1 -1
-locales-lv -1 -1 -1
-locales-mi -1 -1 -1
-locales-mk -1 -1 -1
-locales-ms -1 -1 -1
-locales-nl -1 -1 -1
-locales-no -1 -1 -1
-locales-oc -1 -1 -1
-locales-pd -1 -1 -1
-locales-ph -1 -1 -1
-locales-pl -1 -1 -1
-locales-pp -1 -1 -1
-locales-pt -1 -1 -1
-locales-ro -1 -1 -1
-locales-ru -1 -1 -1
-locales-sk -1 -1 -1
-locales-sl -1 -1 -1
-locales-sq -1 -1 -1
-locales-sr -1 -1 -1
-locales-sv -1 -1 -1
-locales-ta -1 -1 -1
-locales-tg -1 -1 -1
-locales-th -1 -1 -1
-locales-tr -1 -1 -1
-locales-tt -1 -1 -1
-locales-uk -1 -1 -1
-locales-vi -1 -1 -1
-locales-wa -1 -1 -1
-locales-yi -1 -1 -1
-locales-zh -1 -1 -1
-logrotate 0 25 15
-losetup 5 45 35
-lout 15 35 10
-lout-doc 31 32 10
-lpg 40 0 80
-lpr -99 -99 -99
-lrzsz 0 34 0
-lslk 20 49 54
-lsof 10 0 67
-ltrace 10 0 0
-lynx 42 78 84
-lyx 50 0 58
-m4 15 0 80
-macutils 22 5 19
-mailcap 5 5 4
-mailx 92 92 92
-make 50 50 94
-man 90 65 72
-man-pages 90 65 72
-man-pages-cs -10 -30 -25
-man-pages-de -10 -30 -25
-man-pages-es -10 -30 -25
-man-pages-fr -10 -30 -25
-man-pages-hu -10 -30 -25
-man-pages-id -10 -30 -25
-man-pages-it -10 -30 -25
-man-pages-ja -10 -30 -25
-man-pages-ko -10 -30 -25
-man-pages-pl -10 -30 -25
-man-pages-ru -10 -30 -25
-man-pages-zh -10 -30 -25
-mandrake-release 99 99 99
-mandrake_desk 88 0 88
-mandrake_doc-de -15 -90 -25
-mandrake_doc-en -15 -90 -25
-mandrake_doc-es -15 -90 -25
-mandrake_doc-fr -15 -90 -25
-mandrake_doc-it -15 -90 -25
-mandrake_doc-ru -15 -90 -25
-mars-nwe 0 35 0
-mathplot 30 0 20
-mawk 0 25 80
-mc 49 45 31
-mcserv 0 40 9
-mek 40 0 0
-memprof 2 5 65
-menu 90 0 80
-menudrake 79 75 75
-userdrake 50 0 40
-mercury 0 0 45
-metamail 40 80 50
-mgetty 24 20 9
-mgetty-contrib 28 20 15
-mgetty-sendfax 28 20 15
-mgetty-viewfax 28 20 15
-mgetty-voice 28 20 15
-mikmod 42 0 10
-mingetty 5 25 15
-minicom 27 0 4
-mirrordir 26 99 0
-mkbootdisk 35 55 60
-mkinitrd 99 99 99
-mkisofs 26 0 13
-mktemp 15 75 65
-mkxauth 2 99 1
-mm 0 0 15
-mm-devel 0 0 0
-mod_php -99 35 -99
-php-gd -99 15 -99
-php-imap -99 15 -99
-php-ldap -99 15 -99
-php-mysql -99 15 -99
-php-pgsql -99 15 -99
-php-oracle -99 15 -99
-php-dba_gdbm_db2 -99 15 -99
-php-readline -99 15 -99
-mod_ssl -99 75 -99
-mod_ssl-sxnet -99 30 -99
-modutils 99 99 99
-mon 0 40 0
-mount 97 97 97
-mouseconfig 0 0 0
-mozilla-fonts 0 0 0
-mp3info 50 20 50
-mpage 55 65 80
-mpeg_lib 0 0 0
-mpeg_lib-devel 0 0 30
-mpeg_lib-devel 0 0 0
-mpg123 42 0 42
-msec 98 98 98
-mt-st 40 0 49
-mtools 90 0 84
-mutt 10 0 10
-mxp 0 0 0
-nag 35 75 25
-nasm 20 20 65
-nasm-doc 0 20 65
-nasm-rdoff 0 20 65
-nc 0 0 0
-ncftp 55 0 49
-sftp 15 10 15
-ncompress 42 79 91
-ncpfs 0 0 0
-ncurses 0 0 80
-ncurses-extraterms 0 0 0
-ncurses-devel 10 0 75
-nedit 45 20 65
-net-tools 95 96 95
-netkit-base 82 99 82
-netscape-castellano -13 -30 -18
-netscape-catalan -13 -30 -18
-netscape-common 0 0 0
-netscape-communicator 78 60 73
-netscape-euskara -13 -30 -18
-netscape-francais -13 -30 -18
-netscape-german -13 -30 -18
-netscape-japanese -13 -30 -18
-netscape-navigator 0 0 0
-netscape-polish -13 -30 -18
-netscape-russian -13 -30 -18
-netscape-spanish -13 -30 -18
-netscape-walon -13 -30 -18
-newt 10 0 75
-newt-devel 10 0 75
-nfs-utils -99 80 13
-nfs-utils-clients 23 75 23
-nist 55 0 45
-nmap 5 40 40
-nmap-frontend 5 40 40
-nmh 0 0 0
-nscd 0 40 0
-nss_ldap 0 55 25
-ntp -1 -1 -1
-ntsysv 0 65 25
-numlock -11 -11 -11
-oaf 0 0 0
-oaf-devel 0 0 0
-ocaml 0 0 35
-octave 0 0 30
-oggvorbis 30 10 20
-oggvorbis-devel 0 0 15
-oggvorbis-examples 0 0 15
-open 20 45 80
-openjade 5 15 15
-openldap 0 50 35
-openldap-devel 0 0 25
-openssl 0 0 0
-openssl-devel 0 0 0
-oregano 0 0 0
-p2c 10 0 71
-p2c-devel 10 0 55
-pam 7 99 91
-pam-devel 0 0 0
-pam-doc 0 50 50
-pan 22 0 0
-pango 10 0 10
-pango-devel 0 0 10
-parted 35 35 35
-parted-devel 0 0 35
-passwd 99 99 99
-patch 14 0 72
-pciutils 16 55 55
-pciutils-devel 0 0 20
-pdksh 10 25 9
-penguin-command 35 0 10
-perl 20 19 90
-perl-Apache-Filter 0 0 0
-perl-Apache-SSI 0 0 0
-perl-Apache-Session 0 0 0
-perl-Compress-Zlib 0 0 0
-perl-Convert-BER 0 0 0
-perl-DBI 10 0 65
-perl-DBIx-Recordset 0 0 0
-perl-DB_File 10 0 50
-perl-Data-ShowTable 10 0 50
-perl-Date-Calc 0 0 0
-perl-DateManip 0 0 0
-perl-Devel-Symdump 0 0 0
-perl-Digest-MD5 10 0 70
-perl-ExtUtils_F77 0 0 0
-perl-File-Tail 0 0 0
-perl-GTK 10 0 72
-perl-GTK-GLArea 10 0 70
-perl-GTK-GdkImlib 10 0 70
-perl-GTK-Glade 10 0 70
-perl-GTK-Gnome 10 0 70
-perl-GTK-GtkHTML 0 0 0
-perl-HTML-Clean 0 0 0
-perl-HTML-Parser 10 0 55
-perl-HTML-SimpleParse 10 0 50
-perl-IO-stringy 5 0 65
-perl-MIME-Base64 5 0 45
-perl-MIME-tools 5 0 50
-perl-MLDBM 0 0 0
-perl-MP3-Info 5 0 40
-perl-Magick 0 0 0
-perl-MailTools 5 0 50
-perl-Mon 0 0 0
-perl-Msgcat 5 0 50
-perl-Mysql 5 0 40
-perl-Net-Telnet 0 0 0
-perl-Net_SSLeay 0 0 0
-perl-PDL 10 0 75
-perl-PDL-doc 0 0 0
-perl-Parse-RecDescent 10 0 75
-perl-Parse-Yapp 0 0 0
-perl-Period 0 0 0
-perl-RPM 0 0 0
-perl-Storable 0 0 0
-perl-Term-Readline-Gnu 10 10 88
-perl-Tie-Cache 0 0 0
-perl-Time-HiRes 0 0 0
-perl-TimeDate 0 0 0
-perl-Tk 0 15 0
-perl-Tk-devel 0 0 0
-perl-Tk-doc 0 0 0
-perl-URI 5 0 50
-perl-XML-Parser 0 0 0
-perl-XML-XSLT 0 0 0
-perl-base 0 0 0
-perl-devel 0 0 30
-perl-libnet 10 10 80
-perl-libwww-perl 10 10 80
-perl-libxml-enno 0 0 0
-perl-libxml-perl 0 0 0
-perl-Array-RefElem 0 0 0
-perl-Data-DumpXML 0 0 0
-perl-ExtUtils-PerlPP 0 0 0
-perl-File-NCopy 0 0 0
-perl-Image-Size 0 0 0
-perl-Mail-Sendmail 0 0 0
-perl-Net-XWhois 0 0 0
-perl-XML-RSS 0 0 0
-perlftlib 10 0 0
-php 0 35 5
-php-devel 0 0 5
-php-manual 0 0 5
-pidentd 15 69 87
-pilot-link 40 0 27
-perl-PDA-Pilot 0 0 0
-pilot-link-devel 11 0 25
-pine 40 0 27
-pinfo 20 20 20
-pingus 40 0 10
-piranha 0 10 0
-piranha-docs 0 10 0
-piranha-gui 0 10 0
-playmidi 43 0 19
-playmidi-X11 53 0 20
-plugger 40 0 40
-pmake 22 0 75
-pmake-customs 12 0 72
-popt 10 0 80
-popt-devel 0 0 45
-portmap 0 91 19
-postfix 20 88 51
-postgresql 0 56 23
-postgresql-devel 0 0 23
-postgresql-jdbc 0 0 15
-postgresql-odbc 0 0 23
-postgresql-perl 0 0 23
-postgresql-python 0 0 5
-postgresql-server 0 56 23
-postgresql-tcl 0 0 23
-postgresql-test 0 0 23
-postgresql-tk 0 0 5
-ppp 0 0 0
-pppoe-linuxconf 0 0 0
-pptp-adsl-fr -99 -99 -99
-pptp-client -99 -99 -99
-procinfo 24 15 96
-procmail 2 65 45
-procps 98 98 98
-procps-X11 50 0 32
-procps-devel 0 0 0
-proftpd -99 -99 -99
-psacct 20 70 87
-psmisc 25 62 56
-pspell 0 0 0
-pspell-devel 0 0 0
-psutils 5 42 15
-pth 0 0 25
-pth-devel 0 0 15
-publib-devel 0 0 0
-pump 0 0 0
-pump-devel 0 0 0
-pwdb 13 90 75
-pwdb-devel 0 0 50
-pygnome 12 0 50
-pygnome-applet 10 0 30
-pygnome-capplet 10 0 30
-pygnome-libglade 10 0 30
-pygtk 13 0 50
-pygtk-glarea 15 0 25
-pygtk-libglade 16 0 50
-pysol 27 0 27
-python 15 0 74
-python-devel 0 0 65
-python-docs 31 0 40
-python-imaging 31 0 40
-pythonlib 17 0 75
-qcad 5 0 5
-qiv 78 0 70
-qt 0 0 55
-qt-devel 10 0 55
-qt-qgl 10 0 50
-qt-qimgio 10 0 50
-qt2 0 0 45
-qt2-devel 0 0 45
-qt2-doc 0 0 30
-qtcups 0 0 0
-qtcups-devel 0 0 0
-queso 0 25 35
-quota 42 85 37
-raidtools 25 85 4
-rcs 12 0 71
-rdate 10 80 9
-rdist 10 75 9
-readline 11 0 70
-readline-devel 11 0 65
-recode 10 0 72
-recode-devel 0 0 50
-reiserfs-utils 60 60 60
-rep-gtk 0 0 20
-rep-gtk-gnome 0 0 20
-rep-gtk-libglade 0 0 20
-rgrep 55 55 75
-rhs-printfilters 1 1 0
-rmt 24 0 24
-rocksndiamonds 35 0 10
-rootfiles 99 99 99
-routed 0 90 19
-rp-pppoe -99 -99 -99
-rpm 99 99 99
-rpm-build 45 45 70
-rpm-devel 10 0 80
-rpm-python 0 0 50
-rpmdrake 84 0 81
-rpmlint 10 10 60
-rpmtools 0 0 25
-rpmtools-compat 0 0 0
-rpmtools-devel 0 0 25
-rsh 46 99 75
-rsh-server -99 55 25
-rsync 20 99 75
-ruby 0 0 25
-ruby-doc 0 0 25
-ruby-extensions 0 0 25
-ruby-gtk 0 0 25
-rusers 20 0 20
-rute -50 -75 -60
-rwall -1 0 -1
-rwho -1 0 -1
-rxvt 49 0 80
-rxvt-CLE -10 -90 -10
-sag 39 35 25
-samba 21 99 23
-samba-client 55 56 50
-samba-common 0 0 0
-sane 45 0 53
-sane-devel 10 0 2
-sash 5 5 5
-sawfish 59 0 57
-sawfish-themer 15 0 15
-sawfish-themes 50 0 50
-screen 26 43 79
-sed 97 97 97
-sendmail -99 -99 -99
-sendmail-cf 0 0 0
-sendmail-doc 0 0 0
-setserial 42 0 55
-setup 15 25 15
-sfm 25 0 25
-sgml-common 5 15 15
-sgml-tools 5 15 15
-sh-utils 97 97 97
-shadow-utils 98 98 98
-shapecfg 20 75 8
-sharutils 43 99 38
-sketch 45 0 0
-slang 12 0 75
-slang-devel 10 0 70
-slang-doc 0 0 70
-slocate 99 99 99
-slrn 10 0 10
-slrn-pull 35 0 45
-smpeg 50 0 25
-smpeg-devel 0 0 25
-sndconfig 70 40 70
-sox 41 32 80
-sox-devel 13 0 70
-space_sounds 52 0 55
-spacecup -1 -1 -1
-spec-helper 0 0 35
-spellutils 0 0 0
-spruce 0 0 0
-squid 0 45 16
-stat 5 55 45
-statserial 15 0 13
-strace 11 0 87
-sudo 0 30 0
-svgalib 10 0 63
-svgalib-devel 10 0 63
-swatch 22 65 4
-swi-prolog 5 5 45
-swig 0 0 20
-swig-devel 0 0 10
-symlinks 23 75 29
-sympa -1 40 -1
-sysklogd 97 97 97
-t1lib 1 0 29
-t1lib-devel 10 0 40
-taipeifonts -10 0 -10
-talk 44 0 39
-talk-server 0 0 0
-taper 42 0 27
-tar 97 97 97
-tcl 12 0 70
-tcllib 0 0 0
-tclx 12 0 70
-tcp_wrappers 0 99 0
-tcp_wrappers-devel 0 0 0
-tcpdump 10 79 2
-tcsh 1 25 15
-telnet 90 79 92
-openssh 65 75 65
-openssh-server -99 35 -99
-openssh-clients 65 75 65
-openssh-askpass 0 0 0
-openssh-askpass-gnome 0 0 0
-gnupg 90 90 90
-telnet-server -99 28 -99
-termcap 98 98 98
-tetex 25 0 50
-tetex-afm 25 0 40
-tetex-doc 25 0 40
-tetex-dvilj 40 0 40
-tetex-dvips 25 0 40
-tetex-latex 25 0 40
-tetex-latex-heb -65 -90 -90
-tetex-xdvi 25 0 50
-texinfo 22 0 50
-textutils 99 99 99
-teyjus 0 0 35
-tftp 0 40 2
-tftp-server 0 40 2
-thud 0 0 0
-time 40 65 87
-timeconfig 55 80 60
-timed 40 70 36
-timetool 54 0 57
-timidity-instruments 51 0 54
-tin 44 0 39
-tix 15 0 60
-tk 15 0 60
-tkbabel 15 0 15
-tkcvs 15 0 15
-tkinter 15 0 60
-tksysv 55 0 60
-tmake 10 0 25
-tmpwatch 35 75 60
-traceroute 40 79 29
-transfig 16 0 14
-tree 40 25 10
-trn 46 0 41
-trophy 35 0 10
-tunelp 24 15 28
-tuxracer -1 -1 -1
-ucd-snmp 0 70 45
-ucd-snmp-devel 0 25 45
-ucd-snmp-utils 0 37 45
-umb-scheme 10 0 65
-unarj 40 45 16
-units 22 0 10
-unixODBC 0 0 0
-unzip 70 75 91
-urlview 43 0 47
-urpmi 95 95 95
-urw-fonts 50 0 34
-usbview 5 0 10
-usermode 51 0 58
-usernet 42 55 37
-utempter 90 0 73
-utempter-devel 0 0 0
-util-linux 98 98 98
-uucp 0 80 2
-uxcook 0 0 0
-vigmeup 23 0 11
-vim-X11 52 0 26
-vim-common 0 19 0
-vim-enhanced 46 78 83
-vim-minimal 98 98 98
-vimguide 30 0 25
-vixie-cron 97 97 97
-vlock 40 99 80
-vnc 44 0 39
-vnc-SVGALIB 43 0 38
-vnc-doc 38 35 33
-vnc-java 38 0 34
-vnc-server 0 40 28
-webmin 20 40 20
-wget 65 75 53
-which 1 25 25
-wine 54 0 57
-wine-devel 0 0 0
-wmakerconf 47 0 57
-wmnet 24 0 21
-words 47 85 42
-wu-ftpd -99 85 -99
-wv 55 0 54
-wv-devel 0 0 0
-x3270 1 0 0
-xa+cv -10 -20 -10
-xalf 68 0 55
-xanim 58 0 54
-xbanner 15 0 12
-xboard 54 0 48
-xboing 53 0 47
-xcdroast 59 0 53
-xchat 58 0 52
-xcin -10 -10 -10
-xcpustate 53 0 47
-xdaliclock 57 0 51
-xdelta 16 0 5
-xdelta-devel 10 0 2
-xdosemu 34 0 37
-xearth 53 0 56
-xemacs 57 0 0
-xemacs-el 0 0 15
-xemacs-extras 50 0 36
-xemacs-info 54 0 42
-xemacs-mule 0 0 0
-xfce 0 0 0
-xfig 39 0 33
-xfishtank 51 0 45
-xgammon 40 0 31
-xinetd 0 0 0
-xinetd-devel 0 0 0
-xinitrc 0 0 0
-xinput 10 0 30
-xjewel 58 0 52
-xkobo 57 0 51
-xli 65 0 60
-xlispstat 2 0 45
-xloadimage 45 0 30
-xlockmore 58 0 52
-xmailbox 53 0 47
-xmame 25 0 25
-xmess 25 0 15
-xmms 64 0 57
-xmms-devel 0 0 15
-xmms-esd 46 0 41
-xmms-gnome 62 0 52
-xmms-kjofol-skins 50 0 50
-xmms-mesa -1 -1 -1
-xmms-mikmod 43 0 38
-xmms-more-vis-plugins 55 0 55
-xmms-oggvorbis 64 0 57
-xmms-skins 60 0 55
-xmms-smpeg 50 0 45
-xmorph 52 0 44
-xmovie 55 0 35
-xntp3 0 75 31
-xoscope 10 0 10
-xosview 51 0 45
-xpaint 53 0 47
-xpat2 43 0 38
-xpcd 40 0 30
-xpcd-gimp 30 0 25
-xpcd-svga 0 0 0
-xpdf 57 0 51
-xpilot 59 0 53
-xpm 52 0 64
-xpm-devel 10 0 56
-xpp 60 0 50
-xpuzzles 50 0 43
-xrally 5 0 5
-xrn 55 0 49
-xscreensaver 68 0 55
-xscreensaver-gl -1 -1 -1
-xsoldier 51 0 45
-xsysinfo 55 0 56
-xterm 87 0 80
-xtoolwait 50 0 35
-xtraceroute 50 0 40
-xtrojka 51 0 45
-xwc 65 0 40
-xwpe 0 0 20
-xwpe-X11 0 0 20
-xwpick 55 0 49
-xxgdb 53 0 47
-yodl 0 0 0
-yp-tools 0 40 0
-ypbind 0 40 0
-ypserv 0 0 0
-ytalk 21 75 18
-yudit 50 0 38
-zgv 15 0 13
-zip 70 65 87
-zlib 16 60 94
-zlib-devel 10 0 72
-zsh 20 50 72
-zsh-doc 0 35 60
-jpilot 40 0 30
-jpilot-Mail 12 0 10
-jpilot-syncmal 12 0 10
-jpilot-plugin-devel 0 0 0
-Maelstrom 50 0 35
-auctex 5 0 5
-bcast 15 0 10
-mpeg2_movie 10 0 8
-bg5ps -10 -10 -10
-eroaster 55 0 45
-everybuddy 52 0 52
-jabber 0 30 0
-libjabber 0 0 0
-libjabber-devel 0 0 0
-gabber 35 10 20
-gdk-pixbuf-gnomecanvas 0 0 0
-gdk-pixbuf-loaders 0 0 0
-gdk-pixbuf-xlib 0 0 0
-htdig 20 0 15
-libxode 0 0 0
-libxode-devel 0 0 0
-libgnet 0 0 0
-libgnet-devel 0 0 0
-libetherx 0 0 0
-libetherx-devel 0 0 0
-screem 55 0 60
-portsentry 0 15 0
-ttfprint -10 -10 -10
-kde-i18n-Afrikaans -12 -51 -23
-kde-i18n-Basque -12 -51 -23
-kde-i18n-Brazil -12 -51 -23
-kde-i18n-Breton -12 -51 -23
-kde-i18n-British -12 -51 -23
-kde-i18n-Bulgarian -12 -51 -23
-kde-i18n-Catalan -12 -51 -23
-kde-i18n-Chinese -12 -51 -23
-kde-i18n-Chinese-Big5 -12 -51 -23
-kde-i18n-Croatian -12 -51 -23
-kde-i18n-Czech -12 -51 -23
-kde-i18n-Danish -12 -51 -23
-kde-i18n-Dutch -12 -51 -23
-kde-i18n-Esperanto -12 -51 -23
-kde-i18n-Estonian -12 -51 -23
-kde-i18n-Finnish -12 -51 -23
-kde-i18n-French -12 -51 -23
-kde-i18n-Galacian -12 -51 -23
-kde-i18n-German -12 -51 -23
-kde-i18n-Greek -12 -51 -23
-kde-i18n-Hebrew -12 -51 -23
-kde-i18n-Hungarian -12 -51 -23
-kde-i18n-Icelandic -12 -51 -23
-kde-i18n-Italian -12 -51 -23
-kde-i18n-Japanese -12 -51 -23
-kde-i18n-Korean -12 -51 -23
-kde-i18n-Lithuanian -12 -51 -23
-kde-i18n-Macedonian -12 -51 -23
-kde-i18n-Maori -12 -51 -23
-kde-i18n-Norwegian -12 -51 -23
-kde-i18n-Norwegian -12 -51 -23
-kde-i18n-Polish -12 -51 -23
-kde-i18n-Portuguese -12 -51 -23
-kde-i18n-Romanian -12 -51 -23
-kde-i18n-Russian -12 -51 -23
-kde-i18n-Serbian -12 -51 -23
-kde-i18n-Slovak -12 -51 -23
-kde-i18n-Slovenian -12 -51 -23
-kde-i18n-Spanish -12 -51 -23
-kde-i18n-Swedish -12 -51 -23
-kde-i18n-Tamil -12 -51 -23
-kde-i18n-Thai -12 -51 -23
-kde-i18n-Turkish -12 -51 -23
-kde-i18n-Ukrainian -12 -51 -23
-kde-i18n-Walloon -12 -51 -23
-kde-i18n-Welsh -12 -51 -23
-kde-i18n-Norwegian-Nynorsk -12 -51 -23
-linuxconf-lang-cn -35 -60 -35
-linuxconf-lang-cs -35 -60 -35
-linuxconf-lang-de -35 -60 -35
-linuxconf-lang-es -35 -60 -35
-linuxconf-lang-fi -35 -60 -35
-linuxconf-lang-fr -35 -60 -35
-linuxconf-lang-it -35 -60 -35
-linuxconf-lang-ko -35 -60 -35
-linuxconf-lang-no -35 -60 -35
-linuxconf-lang-pt -35 -60 -35
-linuxconf-lang-ro -35 -60 -35
-linuxconf-lang-ru-SU -35 -60 -35
-linuxconf-lang-se -35 -60 -35
-linuxconf-lang-sk -35 -60 -35
-linuxconf-lang-zh -35 -60 -35
-7colors 15 0 0
-ltris 28 0 0
-lbreakout 35 0 0
-fonts-hebrew-elmar -30 -30 -30
-kwintv 0 0 0
-xawtv 0 0 0
-xawtv-misc 0 0 0
-xawtv-radio 0 0 0
-wxxt 0 0 0
-wxxt-devel 0 0 0
-surfraw 0 0 0
-R-base 0 0 0
-gpa 20 0 0
-gnome-telnet 0 0 0
-quanta 32 0 24
-nslint 0 12 0
-logcheck 0 12 0
-kisdn-free 33 0 30
-
-# commercial
-ac3d 20 0 20
-acroread 24 15 24
-acroread-nppdf 24 15 24
-IglooFTP-PRO 20 20 20
-interbase 0 15 15
-interbase-docs 0 15 15
-civctp-demo 22 0 20
-compupic 19 0 19
-commercial-menu 50 40 50
-eus-demo 23 0 20
-myth2-demo 24 0 25
-macromedia-flash 45 15 45
-RealPlayer 27 15 27
-RealPlayer-rpnp 27 15 27
-scol 23 0 23
-avp-database 20 20 20
-avp-linux 20 20 20
-arkeia-arkc 0 20 0
-arkeia-client 20 0 20
-arkeia-gui 24 0 20
-arkeia-server-shareware 0 30 0
-Artstream 20 0 0
-citrix-icaclient-en -70 -70 -70
-citrix-icaclient-fr -70 -70 -70
-citrix-icaclient-ge -70 -70 -70
-citrix-icaclient-sp -70 -70 -70
-printpro 0 0 0
-printpro-agfa 0 0 0
-printpro-alps 0 0 0
-printpro-apple 0 0 0
-printpro-autologic 0 0 0
-printpro-calcomp 0 0 0
-printpro-canon 0 0 0
-printpro-digital 0 0 0
-printpro-efi 0 0 0
-printpro-encad 0 0 0
-printpro-epson 0 0 0
-printpro-hp 0 0 0
-printpro-ibm 0 0 0
-printpro-lexmark 0 0 0
-printpro-lhag 0 0 0
-printpro-linotronic 0 0 0
-printpro-nec 0 0 0
-printpro-oki 0 0 0
-printpro-otheram 0 0 0
-printpro-othernz 0 0 0
-printpro-qms 0 0 0
-printpro-seiko 0 0 0
-printpro-sony 0 0 0
-printpro-tektronix 0 0 0
-printpro-ti 0 0 0
-printpro-varityper 0 0 0
-printpro-xerox 0 0 0
-emumail4.0 0 20 0
-EnlightenDSMFree 0 24 0
-EnlightenDSMFree-dsa 0 24 0
-EnlightenDSMFree-gui 0 24 0
-ForteCE-FCS 0 0 30
-ViaVoice_Outloud_rtk 0 0 45
-ViaVoice_Outloud_sdk 0 0 45
-ViaVoice_runtime 0 0 45
-ViaVoice_sdk 0 0 45
-jdk-sun 0 0 35
-jdk-sun-doc 0 0 35
-jre-sun 20 0 35
-heretic2-demo 24 0 24
-heroes3-demo 24 0 24
-rt2-demo 24 0 24
-MainActor 24 0 0
-mupad 20 0 20
-mtv 24 0 24
-mtv-fullscreen-extension 15 0 15
-NetPartitioner 0 24 0
-omnimark 0 0 35
-rebol-core 0 0 30
-staroffice-de -64 -90 -64
-staroffice-en -64 -90 -64
-staroffice-fr -64 -90 -64
-staroffice-it -64 -90 -64
-staroffice-nl -64 -90 -64
-staroffice-pt -64 -90 -64
-staroffice-es -64 -90 -64
-staroffice-sv -64 -90 -64
-tina-base 0 0 0
-tina-lesstif 0 0 0
-tina-oracle80 0 0 0
-tina-oracle8i 0 0 0
-tina-server 0 0 0
-VMware 20 0 35
-VariCAD 24 0 24
-ViaVoice_runtime 26 0 26
-<<<<<<< compssList
-viavoicemenu 26 0 26
-=======
-viavoicemenu 26 0 26
->>>>>>> 1.139
-kisdn 0 0 0
diff --git a/perl-install/share/compssUsers b/perl-install/share/compssUsers
deleted file mode 100644
index 7becfcfd4..000000000
--- a/perl-install/share/compssUsers
+++ /dev/null
@@ -1,92 +0,0 @@
- # --- Workstation
-
-Office Workstation [icon=office] [path=Workstation] [descr=Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, gnumeric), pdf viewers, etc]
- OFFICE
- PUBLISHING
- PIM
-
-Game station [icon=arcade] [path=Workstation] [descr=Amusement programs: arcade, boards, strategy, etc]
- GAMES
-
-Multimedia station [icon=multimedia] [path=Workstation] [descr=Sound and video playing/editing programs]
- AUDIO
- VIDEO
- GRAPHICS
-
-Internet station [icon=networking] [path=Workstation] [descr=Set of tools to read and send mail and news (pine, mutt, tin..) and to browse the Web]
- NETWORKING_WWW
- NETWORKING_MAIL
- NETWORKING_NEWS
- COMMUNICATIONS
- NETWORKING_CHAT
- NETWORKING_FILE_TRANSFER
- NETWORKING_IRC
- NETWORKING_INSTANT_MESSAGING
- NETWORKING_DNS
-
-Network Computer (client) [icon=terminals] [path=Workstation] [descr=Clients for different protocols including ssh]
- NETWORKING_REMOTE_ACCESS
- NETWORKING_FILE
-
-Configuration [icon=configuration] [path=Workstation] [descr=Tools to ease the configuration of your computer]
- CONFIG
- WEBMIN
-
-Scientific Workstation [icon=sciences] [path=Workstation] [descr=]
- SCIENCES
-
-Console Tools [icon=terminals] [path=Workstation] [descr=Editors, shells, file tools, terminals]
- EDITORS
- TERMINALS
- TEXT_TOOLS
- SHELLS
- FILE_TOOLS
-
- # --- Graphical Environment
-
-KDE Workstation [icon=kde] [path=Graphical Environment] [descr=The K Desktop Environment, the basic graphical environment with a collection of accompanying tools]
- KDE
- X
-
-Gnome Workstation [icon=gnome] [path=Graphical Environment] [descr=A graphical environment with user-friendly set of applications and desktop tools]
- GNOME
- X
-
-Other Graphical Desktops [icon=windowmanager] [path=Graphical Environment] [descr=Icewm, Window Maker, Enlightenment, Fvwm, etc]
- GRAPHICAL_DESKTOP
- X
-
-
- # --- Development
-
-Development [icon=editors] [path=Development] [descr=C and C++ development libraries, programs and include files]
- DEVELOPMENT
- EDITORS
-
-Documentation [icon=documentation] [path=Development] [descr=Books and Howto's on Linux and Free Software]
- BOOKS
-
- # --- Server
-
-Web/FTP [icon=file_transfer] [path=Server] [descr=Apache, Pro-ftpd]
- NETWORKING_WWW_SERVER
- NETWORKING_FILE_TRANSFER_SERVER
-
-Mail/Groupware/News [icon=mail] [path=Server] [descr=Postfix mail server, Inn news server]
- NETWORKING_MAIL_SERVER
- NETWORKING_NEWS_SERVER
-
-Database [icon=archiving] [path=Server] [descr=PostgreSQL or MySQL database server]
- DATABASES
- DATABASES_SERVER
-
-Firewall/Router [icon=networking] [path=Server] [descr=Internet gateway]
- NETWORKING_FIREWALLING_SERVER
-
-DNS/NIS [icon=hardware] [path=Server] [descr=Domain Name and Network Information Server]
- NIS_SERVER
- NETWORKING_DNS_SERVER
-
-Network Computer server [icon=networking] [path=Server] [descr=NFS server, SMB server, Proxy server, ssh server]
- NETWORKING_FILE_SERVER
- NETWORKING_REMOTE_ACCESS_SERVER
diff --git a/perl-install/share/compssUsers.desktop b/perl-install/share/compssUsers.desktop
deleted file mode 100644
index f836d6731..000000000
--- a/perl-install/share/compssUsers.desktop
+++ /dev/null
@@ -1,39 +0,0 @@
-Office [icon=office] [descr=Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, gnumeric), pdf viewers, etc]
- Office
-
-Internet [icon=networking] [descr=Set of tools for mail, news, web, file transfer, and chat]
- Networking
-
-Games [icon=amusement] [descr=Amusement programs: arcade, boards, strategy, etc]
- Games
-
-Multimedia - Graphics [icon=graphics] [descr=Graphics programs such as The Gimp]
- Graphics
-
-Multimedia - Sound [icon=multimedia] [descr=Audio-related tools: mp3 or midi players, mixers, etc]
- Sound
-
-Multimedia - Video [icon=video] [descr=Video players and editors]
- Video
-
-Multimedia - CD Burning [icon=cd_burning] [descr=Tools to create and burn CD's]
- Archiving/Cd burning
-
-More Graphical Desktops (Gnome, IceWM) [icon=windowmanager] [descr=Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc]
- Graphical desktop/GNOME
- Graphical desktop/Sawmill
- Graphical desktop/Icewm
- +XFree86-75dpi-fonts
- +fonts-ttf-west_european
-
-Personal Information Management [icon=remote_access] [descr=Tools for your Palm Pilot or your Visor]
- +jpilot
- +pilot-link
- +kde-pim
- +gnome-pim
- +gnome-pim-conduits
-
-Personal Finance [icon=sciences] [descr=Programs to manage your finance, such as gnucash]
- +gnucash
- +MoneyDance
-
diff --git a/perl-install/share/compssUsers.server b/perl-install/share/compssUsers.server
deleted file mode 100644
index ac384122e..000000000
--- a/perl-install/share/compssUsers.server
+++ /dev/null
@@ -1,67 +0,0 @@
- # --- Graphical Environment
-
-KDE Workstation [icon=kde] [path=Graphical Environment] [descr=The K Desktop Environment, the basic graphical environment with a collection of accompanying tools]
- KDE
- X
-
-Gnome Workstation [icon=gnome] [path=Graphical Environment] [descr=A graphical environment with user-friendly set of applications and desktop tools]
- GNOME
- X
-
-Other Graphical Desktops [icon=windowmanager] [path=Graphical Environment] [descr=XFce, Window Maker, IceWm]
- GRAPHICAL_DESKTOP
- X
-
- # --- Development
-
-Development [icon=editors] [path=Development] [descr=C and C++ development libraries, programs and include files]
- DEVELOPMENT
-
-Documentation [icon=documentation] [path=Development] [descr=Books and Howto's on Linux and Free Software]
- BOOKS
-
- # --- Server
-
-Web Server [icon=file_transfer] [path=Server] [descr=Apache]
- NETWORKING_WWW_SERVER
-
-Groupware [icon=mail] [path=Server] [descr=PHPgroupware]
- NETWORKING_GROUPWARE_SERVER
-
-Firewall/Router [icon=networking] [path=Server] [descr=Internet gateway]
- NETWORKING_FIREWALLING_SERVER
-
-Mail/News [icon=mail] [path=Server] [descr=Postfix mail server, Inn news server]
- NETWORKING_MAIL_SERVER
- NETWORKING_NEWS_SERVER
-
-Directory Server [icon=mail] [path=Server] [descr=LDAP server]
- NETWORKING_LDAP_SERVER
-
-FTP Server [icon=file_transfer] [path=Server] [descr=Wu-FTPd]
- NETWORKING_FILE_TRANSFER_SERVER
-
-DNS/NIS [icon=hardware] [path=Server] [descr=Domain Name and Network Information Server]
- NIS_SERVER
- NETWORKING_DNS_SERVER
-
-File & Printer Sharing Server [icon=archiving] [path=Server] [descr=NFS server, Samba server]
- NETWORKING_FILE_SERVER
-
-Database [icon=archiving] [path=Server] [descr=PostgreSQL or MySQL database server]
- DATABASES
- DATABASES_SERVER
-
- # --- Utilities
-
-SSH server [icon=networking] [path=Utilities] [descr=ssh server]
- NETWORKING_REMOTE_ACCESS_SERVER
-
-Webmin [icon=archiving] [path=Utilities] [descr=webmin remote configuration server]
- WEBMIN
-
-Network Utilities/Monitoring [icon=archiving] [path=Utilities] [descr=Monitoring tools, processes accounting, tcpdump, nmap, ...]
- MONITORING
-
-MandrakeSoft Wizards [icon=archiving] [path=Utilities] [descr=Wizards to configure servers]
- WIZARDS
diff --git a/perl-install/share/consolefonts/Cyr_a8x16 b/perl-install/share/consolefonts/Cyr_a8x16
deleted file mode 100644
index a09ac03d8..000000000
--- a/perl-install/share/consolefonts/Cyr_a8x16
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/consolefonts/lat0-sun16 b/perl-install/share/consolefonts/lat0-sun16
deleted file mode 100644
index 19e3d432e..000000000
--- a/perl-install/share/consolefonts/lat0-sun16
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/consolefonts/lat2-sun16 b/perl-install/share/consolefonts/lat2-sun16
deleted file mode 100644
index 509e5def2..000000000
--- a/perl-install/share/consolefonts/lat2-sun16
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/consolefonts/ruscii_8x16 b/perl-install/share/consolefonts/ruscii_8x16
deleted file mode 100644
index b0513a9db..000000000
--- a/perl-install/share/consolefonts/ruscii_8x16
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/diskdrake.rc b/perl-install/share/diskdrake.rc
deleted file mode 100644
index 317fc2684..000000000
--- a/perl-install/share/diskdrake.rc
+++ /dev/null
@@ -1,43 +0,0 @@
-style "font"
-{
- fontset = "-*-*-medium-r-normal-*-8-*-*-*-*-*-iso8859-1,*-r-*"
-}
-
-style "red" = "font"
-{
- bg[NORMAL] = { 1.0, 0, 0 }
- bg[PRELIGHT] = { 0.9, 0, 0 }
-}
-style "darkred" = "font"
-{
- bg[NORMAL] = { 0.7, 0, 0 }
- bg[PRELIGHT] = { 0.6, 0, 0 }
-}
-style "green" = "font"
-{
- bg[NORMAL] = { 0, 1.0, 0 }
- bg[PRELIGHT] = { 0, 0.9, 0 }
- fg[NORMAL] = { 0, 0, 0 }
-}
-style "blue" = "font"
-{
- bg[NORMAL] = { 0, 0, 1.0 }
- bg[PRELIGHT] = { 0, 0, 0.9 }
-}
-style "white" = "font"
-{
- bg[NORMAL] = { 1.0, 1.0, 1.0 }
- bg[PRELIGHT] = { 0.67, 0.67, 0.67 }
- fg[NORMAL] = { 0, 0, 0 }
-}
-
-widget "*Linux*" style "red"
-widget "*Ext2*" style "red"
-widget "*Journalised FS*" style "darkred"
-widget "*Linux swap*" style "green"
-widget "*Swap*" style "green"
-widget "*FAT*" style "blue"
-widget "*SunOS*" style "blue"
-widget "*NT NTFS*" style "blue"
-widget "*Empty*" style "white"
-widget "*Other*" style "font"
diff --git a/perl-install/share/floppy.png b/perl-install/share/floppy.png
deleted file mode 100644
index 2265e6ec6..000000000
--- a/perl-install/share/floppy.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/fonts.tar.bz2 b/perl-install/share/fonts.tar.bz2
deleted file mode 100644
index a663faa8f..000000000
--- a/perl-install/share/fonts.tar.bz2
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/ftin.png b/perl-install/share/ftin.png
deleted file mode 100644
index 3cec3c194..000000000
--- a/perl-install/share/ftin.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/ftout.png b/perl-install/share/ftout.png
deleted file mode 100644
index d821716eb..000000000
--- a/perl-install/share/ftout.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/gen_locales.sh b/perl-install/share/gen_locales.sh
deleted file mode 100755
index 249db5c1a..000000000
--- a/perl-install/share/gen_locales.sh
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/sh
-
-rm -rf .tmp ; mkdir .tmp ; cd .tmp
-tar xfj ../locales-skeleton.tar.bz2
-
-# locale utf-8
-for i in LC_ADDRESS LC_COLLATE LC_IDENTIFICATION LC_MEASUREMENT LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE LC_TIME LC_MESSAGES/SYS_LC_MESSAGES ; do
- cp -f /usr/share/locale/UTF-8/$i usr/share/locale/UTF-8/$i
-done
-
-# lc_ctype for common encoding
-for i in CP1251 ISO-8859-13 ISO-8859-14 ISO-8859-15 ISO-8859-2 ISO-8859-3 ISO-8859-7 ISO-8859-9 ISO-8859-9E ; do
- f=usr/share/locale/$i/LC_CTYPE
- [ -e /$f ] || { echo missing /$f ; exit 1 ; }
- cp -f /$f $f
-done
-
-rm -rf .tmp2 ; mkdir .tmp2 ; cd .tmp2
-for i in hy ja ko th vi ; do
- ii=locales-`echo $i | sed 's/\(..\).*/\1/'`
- rpm2cpio /RPMS/$ii-*.rpm | cpio -id --quiet
- f=usr/share/locale/$i/LC_CTYPE
- [ -e $f ] || { echo missing $f in package $ii ; exit 1 ; }
- cp -f $f ../$f
- rm -rf *
-done
-cd .. ; rm -rf .tmp2
-
-# special case for chineese (why is it needed?)
-rm -rf .tmp2 ; mkdir .tmp2 ; cd .tmp2
-for i in zh_CN.GB2312 zh_TW.Big5 ; do
- ii=locales-`echo $i | sed 's/\(..\).*/\1/'`
- rpm2cpio /RPMS/$ii-*.rpm | cpio -id --quiet
- for f in LC_ADDRESS LC_COLLATE LC_CTYPE LC_IDENTIFICATION LC_MEASUREMENT LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE LC_TIME LC_MESSAGES/SYS_LC_MESSAGES ; do
- f=usr/share/locale/$i/$f
- [ -e $f ] || { echo missing $f in package $ii ; exit 1 ; }
- cp -f $f ../$f
- done
- rm -rf *
-done
-cd .. ; rm -rf .tmp2
-
-for i in common C armscii-8 en_US.UTF-8 iso8859-1 iso8859-13 iso8859-14 iso8859-15 iso8859-2 iso8859-3 iso8859-5 iso8859-7 iso8859-9 iso8859-9e ja ko koi8-r koi8-u microsoft-cp1251 microsoft-cp1255 microsoft-cp1256 th_TH vi_VN.tcvn zh_CN zh_TW.big5 ; do
- cp -a /usr/X11R6/lib/X11/locale/$i usr/X11R6/lib/X11/locale
-done
-
-tar cfj ../locales.tar.bz2 usr
-
-cd .. ; rm -rf .tmp
diff --git a/perl-install/share/help.png b/perl-install/share/help.png
deleted file mode 100644
index ddebe33ad..000000000
--- a/perl-install/share/help.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/install.rc b/perl-install/share/install.rc
deleted file mode 100644
index b86a22c29..000000000
--- a/perl-install/share/install.rc
+++ /dev/null
@@ -1,21 +0,0 @@
-style "default-font"
-{
- fontset = "-*-*-medium-r-normal-*-12-*-*-*-*-*-iso8859-15"
-}
-
-style "small-font"
-{
- fontset = "-*-*-medium-r-normal-*-8-*-*-*-*-*-iso8859-15"
-}
-
-style "logo" = "background"
-{
- # no background image
- engine "pixmap" { image { function = FLAT_BOX } }
-}
-
-widget "*" style "default-font"
-widget "Steps" style "steps"
-widget "*Steps*" style "small-font"
-widget "*logo*" style "logo"
-
diff --git a/perl-install/share/keyboards.tar.bz2 b/perl-install/share/keyboards.tar.bz2
deleted file mode 100644
index 62939096c..000000000
--- a/perl-install/share/keyboards.tar.bz2
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/keymaps.tar.bz2 b/perl-install/share/keymaps.tar.bz2
deleted file mode 100644
index 8ca03c137..000000000
--- a/perl-install/share/keymaps.tar.bz2
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/keymaps_generate b/perl-install/share/keymaps_generate
deleted file mode 100755
index 0265502c9..000000000
--- a/perl-install/share/keymaps_generate
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/perl
-
-use lib "..";
-use keyboard;
-
-my $dir = "keymaps/usr/share/keymaps";
-system("rm -rf keymaps ; mkdir -p keymaps/usr/share/keymaps");
-
-foreach (keyboard::keyboards()) {
- my $kmap = keyboard::keyboard2kmap($_);
- if (system("./kmap2bkmap $kmap > $dir/$kmap.bkmap 2>/dev/null") != 0) {
- warn "unknown kmap $kmap\n";
- unlink "$dir/$kmap.bkmap";
- }
-}
-
-system("tar cfj keymaps.tar.bz2 -C keymaps usr") == 0 or die;
-system("rm -rf keymaps");
diff --git a/perl-install/share/kmap2bkmap b/perl-install/share/kmap2bkmap
deleted file mode 100755
index 3aff35c3e..000000000
--- a/perl-install/share/kmap2bkmap
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/perl
-
-use lib "..";
-use c;
-
-my $KMAP_MAGIC = 0x8B39C07F;
-
-BEGIN { @ARGV == 1 or die "usage: kmap2bkmap <keymap>\n" }
-
-system("sudo loadkeys $ARGV[0]") == 0 or die;
-open F, "dumpkeys -n -f |";
-<F> =~ /^keymaps\s+(.*)/ or die;
-foreach (split ',', $1) {
- my @l = /(\d+)-(\d+)/;
- my ($i, $j) = @l ? @l : ($_,$_);
- $keymaps[$_] = 1 foreach $i .. $j;
-}
-
-print pack("I", $KMAP_MAGIC);
-print map { pack "i", $keymaps[$_] || 0 } 0 .. c::MAX_NR_KEYMAPS()-1;
-
-foreach (<F>) {
- s/\+0x/0x/g;
- my ($keycode, $key, undef, @l) = split;
- $keycode eq 'keycode' or next;
- my $i = 0;
- $L[$i++][$key] = hex $_ foreach @l;
-}
-close F or die "dumpkeys failed";
-
-foreach (@L) {
- foreach my $i (0 .. c::NR_KEYS()-1) {
- print pack "s", defined $_->[$i] ? $_->[$i] : 0x200;
- }
-}
-
-exit 0;
diff --git a/perl-install/share/list b/perl-install/share/list
deleted file mode 100644
index 4f5ecc6c2..000000000
--- a/perl-install/share/list
+++ /dev/null
@@ -1,173 +0,0 @@
-/bin/ash
-/bin/consolechars
-/bin/cpio
-/bin/gzip
-/lib/libnss_nis.so.2
-/lib/libnss_files.so.2
-/lib/libnss_dns.so.2
-/lib/libresolv.so.2
-/etc/protocols
-/etc/imrc
-/etc/im_palette.pal
-/sbin/badblocks
-/sbin/e2fsck
-/sbin/tune2fs
-/sbin/fdisk
-/sbin/insmod
-/sbin/losetup
-/sbin/mke2fs
-/sbin/modinfo
-/sbin/resize2fs
-/sbin/dumpe2fs
-/sbin/modinfo
-/usr/X11R6/lib/modules/xf86Wacom.so
-/usr/bin/bzip2
-/usr/bin/fb2png
-/usr/bin/packdrake
-/usr/bin/parsehdlist
-/usr/bin/perl
-/usr/lib/gconv/BIG5.so
-/usr/lib/gconv/EUC-JP.so
-/usr/lib/gconv/libGB.so
-/usr/lib/gconv/libJIS.so
-/usr/lib/gconv/libKSC.so
-/usr/lib/gconv/EUC-KR.so
-/usr/lib/gconv/ISO8859-15.so
-/usr/lib/gconv/ISO8859-14.so
-/usr/lib/gconv/ISO8859-13.so
-/usr/lib/gconv/ISO8859-9E.so
-/usr/lib/gconv/ISO8859-9.so
-/usr/lib/gconv/ISO8859-7.so
-/usr/lib/gconv/ISO8859-5.so
-/usr/lib/gconv/ISO8859-3.so
-/usr/lib/gconv/ISO8859-2.so
-/usr/lib/gconv/ISO8859-1.so
-/usr/lib/gconv/KOI8-K.so
-/usr/lib/gconv/KOI8-U.so
-/usr/lib/gconv/KOI8-R.so
-/usr/lib/gconv/TIS-620.so
-/usr/lib/gconv/CP1251.so
-/usr/lib/gconv/GEORGIAN-PS.so
-/usr/lib/gconv/EUC-CN.so
-/usr/lib/gconv/gconv-modules
-/usr/lib/gtk/themes/engines/libpixmap.so
-/usr/lib/gtk/themes/engines/libpixmap.la
-/usr/lib/libimlib-png.so
-/usr/lib/perl5/PERL_VERSION/AutoLoader.pm
-/usr/lib/perl5/PERL_VERSION/Carp.pm
-/usr/lib/perl5/PERL_VERSION/Carp/Heavy.pm
-/usr/lib/perl5/PERL_VERSION/Exporter.pm
-/usr/lib/perl5/PERL_VERSION/Exporter/Heavy.pm
-/usr/lib/perl5/PERL_VERSION/FileHandle.pm
-/usr/lib/perl5/PERL_VERSION/SelectSaver.pm
-/usr/lib/perl5/PERL_VERSION/SelfLoader.pm
-/usr/lib/perl5/PERL_VERSION/Symbol.pm
-/usr/lib/perl5/PERL_VERSION/Time/Local.pm
-/usr/lib/perl5/PERL_VERSION/IO/Socket/INET.pm
-/usr/lib/perl5/PERL_VERSION/IO/Socket/UNIX.pm
-/usr/lib/perl5/PERL_VERSION/dumpvar.pl
-/usr/lib/perl5/PERL_VERSION/warnings.pm
-/usr/lib/perl5/PERL_VERSION/warnings/register.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/File/Glob.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/auto/File/Glob/Glob.so
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/Config.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/Data/Dumper.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/DynaLoader.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/Errno.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/Fcntl.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/XSLoader.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/auto/Fcntl/Fcntl.so
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/IO.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/IO/File.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/IO/Handle.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/IO/Seekable.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/IO/Select.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/IO/Socket.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/Socket.pm
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/_h2ph_pre.ph
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/asm/unistd.ph
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/auto/Data/Dumper/Dumper.so
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/auto/IO/IO.so
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/auto/Socket/Socket.so
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/bits/syscall.ph
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/sys/syscall.ph
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/syscall.ph
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/auto/DynaLoader/dl_findfile.al
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/lib.pm
-/usr/lib/perl5/PERL_VERSION/bytes.pm
-/usr/lib/perl5/PERL_VERSION/integer.pm
-/usr/lib/perl5/PERL_VERSION/overload.pm
-/usr/lib/perl5/PERL_VERSION/strict.pm
-/usr/lib/perl5/PERL_VERSION/vars.pm
-/usr/lib/perl5/PERL_VERSION/Net/Cmd.pm
-/usr/lib/perl5/PERL_VERSION/Net/Config.pm
-/usr/lib/perl5/PERL_VERSION/Net/FTP.pm
-/usr/lib/perl5/PERL_VERSION/Net/FTP/A.pm
-/usr/lib/perl5/PERL_VERSION/Net/FTP/I.pm
-/usr/lib/perl5/PERL_VERSION/Net/FTP/dataconn.pm
-/usr/lib/perl5/PERL_VERSION/Net/Netrc.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/MDK/Common/DataStructure.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/MDK/Common/File.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/MDK/Common/Func.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/MDK/Common/Globals.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/MDK/Common/Math.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/MDK/Common/String.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/MDK/Common/System.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/MDK/Common/Various.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/MDK/Common.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/ARCH-linux/URPM.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/ARCH-linux/URPM/Resolve.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/ARCH-linux/auto/URPM/URPM.so
-/usr/lib/perl5/vendor_perl/PERL_VERSION/ARCH-linux/packdrake.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/ARCH-linux/Gtk.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/ARCH-linux/Gtk/Types.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/ARCH-linux/Gtk/Gdk/ImlibImage.pm
-/usr/lib/perl5/vendor_perl/PERL_VERSION/ARCH-linux/auto/Gtk/Gtk.so
-/usr/lib/perl5/vendor_perl/PERL_VERSION/ARCH-linux/auto/Gtk/Gdk/ImlibImage/ImlibImage.so
-/usr/lib/rpm/rpmrc
-/usr/lib/rpm/macros
-/sbin/rescuept
-/usr/share/icons/amusement_section.png
-/usr/share/icons/arcade_section.png
-/usr/share/icons/cd_burning_section.png
-/usr/share/icons/chat_section.png
-/usr/share/icons/default_section.png
-/usr/share/icons/documentation_section.png
-/usr/share/icons/gnome.xpm
-/usr/share/icons/graphics_section.png
-/usr/share/icons/kde.xpm
-/usr/share/icons/multimedia_section.png
-/usr/share/icons/development_section.png
-/usr/share/icons/networking_section.png
-/usr/share/icons/mail_section.png
-/usr/share/icons/archiving_section.png
-/usr/share/icons/hardware_section.png
-/usr/share/icons/file_transfer_section.png
-/usr/share/icons/office_section.png
-/usr/share/icons/remote_access_section.png
-/usr/share/icons/sciences_section.png
-/usr/share/icons/video_section.png
-/usr/share/icons/windowmanager_section.png
-/usr/share/icons/editors_section.png
-/usr/share/icons/terminals_section.png
-/usr/share/icons/configuration_section.png
-/usr/share/ldetect-lst/Cards+
-/usr/share/ldetect-lst/CardsNames
-/usr/share/ldetect-lst/MonitorsDB
-/usr/share/ldetect-lst/isdn.db
-/usr/share/ldetect-lst/pcitable
-/usr/share/ldetect-lst/usbtable
-
-/sbin/pvcreate
-/sbin/pvdisplay
-/sbin/vgchange
-/sbin/vgcreate
-/sbin/vgdisplay
-/sbin/vgextend
-/sbin/vgremove
-/sbin/vgscan
-/sbin/lvcreate
-/sbin/lvdisplay
-/sbin/lvextend
-/sbin/lvreduce
-/sbin/lvremove
diff --git a/perl-install/share/list.alpha b/perl-install/share/list.alpha
deleted file mode 100644
index 7ce1a1fee..000000000
--- a/perl-install/share/list.alpha
+++ /dev/null
@@ -1,13 +0,0 @@
-/sbin/mkraid
-/sbin/mkreiserfs
-/sbin/raidstart
-/sbin/ifport
-/sbin/mkdosfs
-/usr/X11R6/bin/XF86_FBDev
-/usr/X11R6/bin/XF86_VGA16
-/usr/X11R6/bin/XF86_3DLabs
-/usr/X11R6/bin/XF86_SVGA
-/usr/X11R6/bin/XF86_TGA
-/usr/X11R6/bin/XF86_S3
-/usr/X11R6/bin/XF86_Mach64
-/usr/X11R6/bin/xmodmap
diff --git a/perl-install/share/list.i386 b/perl-install/share/list.i386
deleted file mode 100644
index d7735f29c..000000000
--- a/perl-install/share/list.i386
+++ /dev/null
@@ -1,11 +0,0 @@
-/sbin/mkraid
-/sbin/mkreiserfs
-/sbin/mkfs.jfs
-/sbin/mkfs.xfs
-/sbin/raidstart
-/sbin/ifport
-/sbin/mkdosfs
-/sbin/resize_reiserfs
-/usr/X11R6/bin/XF86_FBDev
-/usr/X11R6/bin/XF86_VGA16
-/usr/X11R6/bin/xmodmap
diff --git a/perl-install/share/list.ia64 b/perl-install/share/list.ia64
deleted file mode 100644
index 9bbf999cb..000000000
--- a/perl-install/share/list.ia64
+++ /dev/null
@@ -1,119 +0,0 @@
-/sbin/mkraid
-/sbin/mkreiserfs
-/sbin/mkfs.xfs
-/sbin/raidstart
-/sbin/mkdosfs
-/sbin/resize_reiserfs
-/usr/bin/strace
-/var/log/XFree86.0.log
-/usr/X11R6/bin/XFree86
-/usr/X11R6/bin/xmodmap
-/usr/X11R6/lib/modules/
-/usr/X11R6/lib/modules/codeconv
-/usr/X11R6/lib/modules/codeconv/libARABIC.a
-/usr/X11R6/lib/modules/codeconv/libARMSCII8.a
-/usr/X11R6/lib/modules/codeconv/libBIG5.a
-/usr/X11R6/lib/modules/codeconv/libDOSENCODING.a
-/usr/X11R6/lib/modules/codeconv/libGB2312.a
-/usr/X11R6/lib/modules/codeconv/libGEORGIAN.a
-/usr/X11R6/lib/modules/codeconv/libISO8859_1.a
-/usr/X11R6/lib/modules/codeconv/libISO8859_10.a
-/usr/X11R6/lib/modules/codeconv/libISO8859_11.a
-/usr/X11R6/lib/modules/codeconv/libISO8859_14.a
-/usr/X11R6/lib/modules/codeconv/libISO8859_15.a
-/usr/X11R6/lib/modules/codeconv/libISO8859_2.a
-/usr/X11R6/lib/modules/codeconv/libISO8859_3.a
-/usr/X11R6/lib/modules/codeconv/libISO8859_4.a
-/usr/X11R6/lib/modules/codeconv/libISO8859_5.a
-/usr/X11R6/lib/modules/codeconv/libISO8859_6.a
-/usr/X11R6/lib/modules/codeconv/libISO8859_7.a
-/usr/X11R6/lib/modules/codeconv/libISO8859_8.a
-/usr/X11R6/lib/modules/codeconv/libISO8859_9.a
-/usr/X11R6/lib/modules/codeconv/libJISX0201.a
-/usr/X11R6/lib/modules/codeconv/libJISX0208.a
-/usr/X11R6/lib/modules/codeconv/libJISX0212.a
-/usr/X11R6/lib/modules/codeconv/libKOI8.a
-/usr/X11R6/lib/modules/codeconv/libKSC5601.a
-/usr/X11R6/lib/modules/codeconv/libKSCJOHAB.a
-/usr/X11R6/lib/modules/codeconv/libMULEENCODING.a
-/usr/X11R6/lib/modules/codeconv/libTCVN.a
-/usr/X11R6/lib/modules/codeconv/libVISCII.a
-/usr/X11R6/lib/modules/dri
-/usr/X11R6/lib/modules/dri/gamma_dri.so
-/usr/X11R6/lib/modules/dri/i810_dri.so
-/usr/X11R6/lib/modules/dri/mga_dri.so
-/usr/X11R6/lib/modules/dri/r128_dri.so
-/usr/X11R6/lib/modules/dri/sis_dri.so
-/usr/X11R6/lib/modules/drivers
-/usr/X11R6/lib/modules/drivers/ati_drv.o
-/usr/X11R6/lib/modules/drivers/atimisc_drv.o
-/usr/X11R6/lib/modules/drivers/fbdev_drv.o
-/usr/X11R6/lib/modules/drivers/glint_drv.o
-/usr/X11R6/lib/modules/drivers/i740_drv.o
-/usr/X11R6/lib/modules/drivers/linux
-/usr/X11R6/lib/modules/drivers/linux/v4l_drv.o
-/usr/X11R6/lib/modules/drivers/mga_drv.o
-/usr/X11R6/lib/modules/drivers/nv_drv.o
-/usr/X11R6/lib/modules/drivers/r128_drv.o
-/usr/X11R6/lib/modules/drivers/radeon_drv.o
-/usr/X11R6/lib/modules/drivers/rendition_drv.o
-/usr/X11R6/lib/modules/drivers/s3virge_drv.o
-/usr/X11R6/lib/modules/drivers/sis_drv.o
-/usr/X11R6/lib/modules/drivers/tdfx_drv.o
-/usr/X11R6/lib/modules/drivers/vga_drv.o
-/usr/X11R6/lib/modules/extensions
-/usr/X11R6/lib/modules/extensions/libGLcore.a
-/usr/X11R6/lib/modules/extensions/libdbe.a
-/usr/X11R6/lib/modules/extensions/libdri.a
-/usr/X11R6/lib/modules/extensions/libextmod.a
-/usr/X11R6/lib/modules/extensions/libglx.a
-/usr/X11R6/lib/modules/extensions/librecord.a
-/usr/X11R6/lib/modules/extensions/libxie.a
-/usr/X11R6/lib/modules/fonts
-/usr/X11R6/lib/modules/fonts/libbitmap.a
-/usr/X11R6/lib/modules/fonts/libfreetype.a
-/usr/X11R6/lib/modules/fonts/libspeedo.a
-/usr/X11R6/lib/modules/fonts/libtype1.a
-/usr/X11R6/lib/modules/fonts/libxtt.a
-/usr/X11R6/lib/modules/input
-/usr/X11R6/lib/modules/input/citron_drv.o
-/usr/X11R6/lib/modules/input/digitaledge_drv.o
-/usr/X11R6/lib/modules/input/dynapro_drv.o
-/usr/X11R6/lib/modules/input/elographics_drv.o
-/usr/X11R6/lib/modules/input/microtouch_drv.o
-/usr/X11R6/lib/modules/input/mouse_drv.o
-/usr/X11R6/lib/modules/input/mutouch_drv.o
-/usr/X11R6/lib/modules/input/spaceorb_drv.o
-/usr/X11R6/lib/modules/input/summa_drv.o
-/usr/X11R6/lib/modules/input/void_drv.o
-/usr/X11R6/lib/modules/input/wacom_drv.o
-/usr/X11R6/lib/modules/libafb.a
-/usr/X11R6/lib/modules/libcfb.a
-/usr/X11R6/lib/modules/libcfb16.a
-/usr/X11R6/lib/modules/libcfb24.a
-/usr/X11R6/lib/modules/libcfb32.a
-/usr/X11R6/lib/modules/libddc.a
-/usr/X11R6/lib/modules/libfb.a
-/usr/X11R6/lib/modules/libi2c.a
-/usr/X11R6/lib/modules/libint10.a
-/usr/X11R6/lib/modules/libmfb.a
-/usr/X11R6/lib/modules/libpcidata.a
-/usr/X11R6/lib/modules/librac.a
-/usr/X11R6/lib/modules/libramdac.a
-/usr/X11R6/lib/modules/libscanpci.a
-/usr/X11R6/lib/modules/libshadow.a
-/usr/X11R6/lib/modules/libshadowfb.a
-/usr/X11R6/lib/modules/libvbe.a
-/usr/X11R6/lib/modules/libvgahw.a
-/usr/X11R6/lib/modules/libxaa.a
-/usr/X11R6/lib/modules/libxf1bpp.a
-/usr/X11R6/lib/modules/libxf24_32bpp.a
-/usr/X11R6/lib/modules/libxf4bpp.a
-/usr/X11R6/lib/modules/libxf8_16bpp.a
-/usr/X11R6/lib/modules/libxf8_32bpp.a
-/usr/X11R6/lib/modules/linux
-/usr/X11R6/lib/modules/linux/libdrm.a
-/usr/X11R6/lib/modules/linux/libfbdevhw.a
-/usr/X11R6/lib/modules/v10002d.uc
-/usr/X11R6/lib/modules/v20002d.uc
-/usr/lib/perl5/PERL_VERSION/ARCH-linux/asm/break.ph
diff --git a/perl-install/share/list.ppc b/perl-install/share/list.ppc
deleted file mode 100644
index 332c97dc2..000000000
--- a/perl-install/share/list.ppc
+++ /dev/null
@@ -1,15 +0,0 @@
-/sbin/mkraid
-/sbin/mkreiserfs
-/sbin/raidstart
-/usr/bin/hformat
-/usr/bin/hmount
-/usr/bin/humount
-/usr/bin/hattrib
-/usr/bin/hcopy
-/usr/bin/hcd
-/sbin/pdisk
-/usr/X11R6/bin/Xpmac
-/usr/X11R6/bin/xmodmap
-/sbin/mkfs.xfs
-/sbin/mkfs.jfs
-
diff --git a/perl-install/share/list.sparc b/perl-install/share/list.sparc
deleted file mode 100644
index b597a10ce..000000000
--- a/perl-install/share/list.sparc
+++ /dev/null
@@ -1,84 +0,0 @@
-/bin/cpio
-/lib/libnss_nis.so.2
-/lib/libnss_files.so.2
-/lib/libnss_dns.so.2
-/lib/libresolv.so.2
-/etc/protocols
-/sbin/mkreiserfs
-/sbin/fdisk
-/sbin/ifport
-/sbin/insmod
-/sbin/mkraid
-/sbin/rmmod
-/sbin/mkdosfs
-/sbin/mke2fs
-/sbin/raidstart
-/sbin/losetup
-/usr/bin/genromfs
-/usr/bin/bzip2
-/usr/bin/perl
-/usr/lib/libimlib-png.so
-/usr/lib/gtk/themes/engines/libpixmap.so
-/usr/lib/gtk/themes/engines/libpixmap.la
-/usr/lib/libimlib-png.so
-/usr/lib/perl5/PERL_VERSION/AutoLoader.pm
-/usr/lib/perl5/PERL_VERSION/Carp.pm
-/usr/lib/perl5/PERL_VERSION/sparc-linux/Data/Dumper.pm
-/usr/lib/perl5/PERL_VERSION/Exporter.pm
-/usr/lib/perl5/PERL_VERSION/Carp/Heavy.pm
-/usr/lib/perl5/PERL_VERSION/Exporter/Heavy.pm
-/usr/lib/perl5/PERL_VERSION/FileHandle.pm
-/usr/lib/perl5/PERL_VERSION/SelectSaver.pm
-/usr/lib/perl5/PERL_VERSION/SelfLoader.pm
-/usr/lib/perl5/PERL_VERSION/Symbol.pm
-/usr/lib/perl5/PERL_VERSION/Time/Local.pm
-/usr/lib/perl5/PERL_VERSION/dumpvar.pl
-/usr/lib/perl5/PERL_VERSION/warnings.pm
-/usr/lib/perl5/PERL_VERSION/warnings/register.pm
-/usr/lib/perl5/PERL_VERSION/sparc-linux/File/Glob.pm
-/usr/lib/perl5/PERL_VERSION/sparc-linux/auto/File/Glob/Glob.bs
-/usr/lib/perl5/PERL_VERSION/sparc-linux/auto/File/Glob/Glob.so
-/usr/lib/perl5/PERL_VERSION/sparc-linux/Config.pm
-/usr/lib/perl5/PERL_VERSION/sparc-linux/XSLoader.pm
-/usr/lib/perl5/PERL_VERSION/sparc-linux/DynaLoader.pm
-/usr/lib/perl5/PERL_VERSION/sparc-linux/Fcntl.pm
-/usr/lib/perl5/PERL_VERSION/sparc-linux/auto/Fcntl/Fcntl.bs
-/usr/lib/perl5/PERL_VERSION/sparc-linux/auto/Fcntl/Fcntl.so
-/usr/lib/perl5/PERL_VERSION/sparc-linux/IO/File.pm
-/usr/lib/perl5/PERL_VERSION/sparc-linux/IO/Handle.pm
-/usr/lib/perl5/PERL_VERSION/sparc-linux/IO/Seekable.pm
-/usr/lib/perl5/PERL_VERSION/sparc-linux/IO/Socket.pm
-/usr/lib/perl5/PERL_VERSION/sparc-linux/Socket.pm
-/usr/lib/perl5/PERL_VERSION/sparc-linux/_h2ph_pre.ph
-/usr/lib/perl5/PERL_VERSION/sparc-linux/asm/unistd.ph
-/usr/lib/perl5/PERL_VERSION/sparc-linux/asm-sparc/unistd.ph
-/usr/lib/perl5/PERL_VERSION/sparc-linux/asm-sparc64/unistd.ph
-/usr/lib/perl5/PERL_VERSION/sparc-linux/auto/Data/Dumper/Dumper.bs
-/usr/lib/perl5/PERL_VERSION/sparc-linux/auto/Data/Dumper/Dumper.so
-/usr/lib/perl5/PERL_VERSION/sparc-linux/auto/IO/IO.so
-/usr/lib/perl5/PERL_VERSION/sparc-linux/auto/Socket/Socket.bs
-/usr/lib/perl5/PERL_VERSION/sparc-linux/auto/Socket/Socket.so
-/usr/lib/perl5/PERL_VERSION/sparc-linux/bits/syscall.ph
-/usr/lib/perl5/PERL_VERSION/sparc-linux/sys/syscall.ph
-/usr/lib/perl5/PERL_VERSION/sparc-linux/syscall.ph
-/usr/lib/perl5/PERL_VERSION/sparc-linux/auto/DynaLoader/dl_findfile.al
-/usr/lib/perl5/PERL_VERSION/lib.pm
-/usr/lib/perl5/PERL_VERSION/overload.pm
-/usr/lib/perl5/PERL_VERSION/strict.pm
-/usr/lib/perl5/PERL_VERSION/vars.pm
-/usr/lib/perl5/site_perl/PERL_VERSION/sparc-linux/Gtk.pm
-/usr/lib/perl5/site_perl/PERL_VERSION/sparc-linux/Gtk/Types.pm
-/usr/lib/perl5/site_perl/PERL_VERSION/sparc-linux/Net/Cmd.pm
-/usr/lib/perl5/site_perl/PERL_VERSION/sparc-linux/Net/Config.pm
-/usr/lib/perl5/site_perl/PERL_VERSION/sparc-linux/Net/FTP.pm
-/usr/lib/perl5/site_perl/PERL_VERSION/sparc-linux/Net/FTP/A.pm
-/usr/lib/perl5/site_perl/PERL_VERSION/sparc-linux/Net/FTP/I.pm
-/usr/lib/perl5/site_perl/PERL_VERSION/sparc-linux/Net/FTP/dataconn.pm
-/usr/lib/perl5/site_perl/PERL_VERSION/sparc-linux/Net/Netrc.pm
-/usr/lib/perl5/site_perl/PERL_VERSION/sparc-linux/auto/Gtk/Gtk.bs
-/usr/lib/perl5/site_perl/PERL_VERSION/sparc-linux/auto/Gtk/Gtk.so
-/usr/lib/rpm/rpmrc
-/usr/X11R6/bin/Xsun24
-/usr/X11R6/bin/XF86_Mach64
-/usr/X11R6/bin/XF86_3DLabs
-/usr/X11R6/bin/xmodmap
diff --git a/perl-install/share/locales-skeleton.tar.bz2 b/perl-install/share/locales-skeleton.tar.bz2
deleted file mode 100644
index 113f3300a..000000000
--- a/perl-install/share/locales-skeleton.tar.bz2
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/logo-mandrake.png b/perl-install/share/logo-mandrake.png
deleted file mode 100644
index 5b754bef3..000000000
--- a/perl-install/share/logo-mandrake.png
+++ /dev/null
Binary files differ
diff --git a/perl-install/share/makedev.sh b/perl-install/share/makedev.sh
deleted file mode 100755
index e9dccaff2..000000000
--- a/perl-install/share/makedev.sh
+++ /dev/null
@@ -1,89 +0,0 @@
-#!/bin/sh
-#
-# $Id$
-#
-# This script creates all ISDN devices under /dev .
-# Many/most distributions don't include these devices.
-
-echo -e "Creating device inodes ... \c"
-
-if [ $# = 1 ] ; then
- DEV=$1/dev
-else
- DEV=/dev
-fi
-
-MAJ=45
-MIN=0
-rm -f $DEV/isdnctrl* $DEV/ippp*
-while [ $MIN -lt 64 ] ; do
- mknod -m 600 $DEV/isdn$MIN c $MAJ $MIN
- mknod -m 660 $DEV/isdnctrl$MIN c $MAJ `expr $MIN + 64`
- mknod -m 600 $DEV/ippp$MIN c $MAJ `expr $MIN + 128`
- MIN=`expr $MIN + 1`
-done
-if grep '^pppusers:' /etc/group > /dev/null
-then # RH 5 standard
- chgrp pppusers $DEV/isdnctrl* $DEV/ippp*
-elif grep '^dialout:' /etc/group > /dev/null
-then # Debian/SuSE standard
- chgrp dialout $DEV/isdnctrl* $DEV/ippp*
-fi
-rm -f $DEV/isdninfo
-mknod -m 444 $DEV/isdninfo c $MAJ 255
-ln -sf $DEV/isdnctrl0 $DEV/isdnctrl
-
-MAJ=43
-MIN=0
-rm -f $DEV/ttyI*
-while [ $MIN -lt 64 ] ; do
- mknod -m 666 $DEV/ttyI$MIN c $MAJ $MIN
- MIN=`expr $MIN + 1`
-done
-
-MAJ=44
-MIN=0
-rm -f $DEV/cui*
-while [ $MIN -lt 64 ] ; do
- mknod -m 666 $DEV/cui$MIN c $MAJ $MIN
- MIN=`expr $MIN + 1`
-done
-
-if grep '^dialout:' /etc/group > /dev/null
-then # Debian/SuSE standard
- chgrp dialout $DEV/ttyI* $DEV/cui*
-fi
-
-MAJ=68
-MIN=0
-rm -f $DEV/capi20*
-mknod -m 666 $DEV/capi20 c $MAJ 0
-mknod -m 666 $DEV/capi20.00 c $MAJ 1
-mknod -m 666 $DEV/capi20.01 c $MAJ 2
-mknod -m 666 $DEV/capi20.02 c $MAJ 3
-mknod -m 666 $DEV/capi20.03 c $MAJ 4
-mknod -m 666 $DEV/capi20.04 c $MAJ 5
-mknod -m 666 $DEV/capi20.05 c $MAJ 6
-mknod -m 666 $DEV/capi20.06 c $MAJ 7
-mknod -m 666 $DEV/capi20.07 c $MAJ 8
-mknod -m 666 $DEV/capi20.08 c $MAJ 9
-mknod -m 666 $DEV/capi20.09 c $MAJ 10
-mknod -m 666 $DEV/capi20.10 c $MAJ 11
-mknod -m 666 $DEV/capi20.11 c $MAJ 12
-mknod -m 666 $DEV/capi20.12 c $MAJ 13
-mknod -m 666 $DEV/capi20.13 c $MAJ 14
-mknod -m 666 $DEV/capi20.14 c $MAJ 15
-mknod -m 666 $DEV/capi20.15 c $MAJ 16
-mknod -m 666 $DEV/capi20.16 c $MAJ 17
-mknod -m 666 $DEV/capi20.17 c $MAJ 18
-mknod -m 666 $DEV/capi20.18 c $MAJ 19
-mknod -m 666 $DEV/capi20.19 c $MAJ 20
-
-if grep '^dialout:' /etc/group > /dev/null
-then # Debian/SuSE standard
- chgrp dialout $DEV/capi20 $DEV/capi20.??
-fi
-rm -f $DEV/isdnctrl
-ln -s $DEV/isdnctrl1 $DEV/isdnctrl
-
-echo "done."
diff --git a/perl-install/share/po/Changelog b/perl-install/share/po/Changelog
deleted file mode 100644
index fcb677e9a..000000000
--- a/perl-install/share/po/Changelog
+++ /dev/null
@@ -1,249 +0,0 @@
-2002-05-14 Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>
- * pl.po: finished translation and corrected many entries
-
-2001-03-14 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * i18n_compssUsers: improved the script to not include path=
- lines
-
-2000-10-03 Guillaume Cottenceau <gc@mandrakesoft.com>
-
- * fr.po: fixed bug #518 and fixed other misc errors
-
-2000-09-16 Pixel <pixel@mandrakesoft.com>
- * de.po: fix translation of "Size: %d KB\n" (was MB instead of KB)
-
-2000-04-28 Stefan Siegel <siegel@linux-mandrake.com>
- * de.po: Update German File
-
-2000-04-18 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * cy.po: There is now a Welsh file, Thanks Dafydd !
- * da.po: Updated Danish file
-
-2000-04-04 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * lv.po: Added Latvian file; now we are the very first to have
- Latvian language :)
-
-2000-03-26 Pablo Saratxaga <pablo@mandrakesoft.com>
-
- * sk.po: Slovakian translation is now mantained and updated
-
-2000-01-10 Pixel <pixel@mandrakesoft.com>
-
- * po/Changelog: remove the paragraph which was removed from
- help.pm in br.po cs.po el.po et.po gl.po ro.po ru.po tr.po
-
-2000-01-06 François PONS <fpons@mandrakesoft.com>
- * it.po: updated by Maurizio.
-
-2000-01-06 David BAUDENS <baudens@mandrakesoft.com>
- * fr.po: updated
-
-2000-01-05 Pixel <pixel@mandrakesoft.com>
- * *.po: changed the crypto message (french address in usa, and
- removed a paragraph)
-
-2000-01-03 Pablo Saratxaga <pablo@mandrakesoft.com>
- * *.po: merged some strigns from gnorpm to help transaltiosn fo
- rpmdrake new strings
-
-2000-01-03 Pablo Saratxaga <pablo@mandrakesoft.com>
- * no.po: updated Norwegian file
- * id.po: updated Indonesian file
- * hr.po: updated Croatian file
- * da.po: updated Danish file
- * et.po: updated Estonian file
-
-2000-01-01 Pablo Saratxaga <pablo@mandrakesoft.com>
- Happy New Year to all !
- * es.po: completed Spanish file
- * zh_CN.po: created a GB2312 version by converting the Big5 one
- however a real mantainer for a GB2312 version is still wanted
- * ca.po: the first one to be updated after Y2K :)
-
-1999-12-30 Pablo Saratxaga <pablo@mandrakesoft.com>
- * zh_TW.Big5.po: uddated chinese file
- * it.po: updated the Italian file
- * es.po: completed spanish file
- * br.po: updated Britton file
- * ja.po: updated Japanese file
-
-1999-12-29 Pablo Saratxaga <pablo@mandrakesoft.com>
- * no.po: completed Norwegian file
- * eo.po: Completed esperanto file
- * sv.po: updated Swedish file
- * hu.po: compelted Hungarian file
-
-1999-12-27 Pablo Saratxaga <pablo@mandrakesoft.com>
- * ru.po: updated Russian file
- * id.po: completed Indonesian file
- * et.po: Estonian files fixes
- * no.po: completed file
- * et.po: completed file
- * lt.po: updated Lithuanian file
- * da.po: completed Danish file
- * ja.po: updated Japanese file
-
-1999-12-24 Pablo Saratxaga <pablo@mandrakesoft.com>
- * lt.po: updated Lithuanian file
- * *.po: new strings have been added...
-
-1999-12-23 Pablo Saratxaga <pablo@mandrakesoft.com>
- * eo.po: completed esperanto file
- * hr.po: updated Croatian file
- * zh_TW.Big5: updated chinese file
- * id.po: completed Indonesian file
- * et.po: completed Estonian file
- * sv.po: updated swedish file
- * da.po: completed Danish file
- * bg.po: updated Bulgarian file
- * sr.po: updated serbian file
- * no.po: completed norwegian file
-
-1999-12-22 Pablo Saratxaga <pablo@mandrakesoft.com>
- * de.po: update from Stefan Siegel <siegel@informatik.uni-kl.de>
- * bg.po: updated Bulgarian file
-
-1999-12-16 Pablo Saratxaga <pablo@mandrakesoft.com>
- * *.po: updated po files
- * ja.po: added japanese file
-
-1999-12-12 Pablo Saratxaga <pablo@mandrakesoft.com>
- * pt_BR.po: added portuguese file from Andrei <andreib@zaz.com.br>
-
-1999-12-10 Pablo Saratxaga <pablo@mandrakesoft.com>
- * et.po: completed 100% the Estonian file
-
-1999-12-09 Pablo Saratxaga <pablo@mandrakesoft.com>
- * th.po: Thai file from Kan Yuenyong <kan@kaiwal.com>
-
-1999-12-07 Pablo Saratxaga <pablo@mandrakesoft.com>
- * ro.po: did 'ispell -d romanian ro.po', I hope that improves the
- lack of 8 bit letters; but a real mantainer is needed.
-
-1999-12-02 Pablo Saratxaga <pablo@mandrakesoft.com>
- * es.po, ca.po, no.po, id.po: Completed Spanish, Catalan,
- Norwegian and Indonesian language files.
- * hu.po: Update of Hungarian file (60% done)
-
-1999-11-30 Pablo Saratxaga <pablo@mandrakesoft.com>
- * hu.po: added Hungarian language file
-
-1999-11-26 Pablo Saratxaga <pablo@mandrakesoft.com>
- * no.po: updated Norwegian file
- * ca.po: added beginnign of Catalan file from SoftCatalŕ
-
-1999-11-25 Pablo Saratxaga <pablo@mandrakesoft.com>
- * *.po: corrected a typo ( s/Size: %d/Size: %s/ )
- * de.po: updated German file
- * id.po: updated Indonesian file
-
-1999-11-24 Pablo Saratxaga <pablo@mandrakesoft.com>
- * bg.po: added Bulgarian file from Elena Radĺva <ely@triada.bg>
-
-1999-11-19 Pablo Saratxaga <pablo@mandrakesoft.com>
- * uk.po: added Ukrainian file
- * pl.po: Polish is now 100% complete!
-
-1999-11-18 Pablo Saratxaga <pablo@mandrakesoft.com>
- * et.po: added estonian from Riho Kurg <riho@aso.ee>
- * pl.po: updated polish from Pawel Jablonski
-
-1999-11-16 Pablo Saratxaga <pablo@mandrakesoft.com>
- * update-po, lots of new strings :)
- * es.po: updated & completed
-
-1999-11-10 Pablo Saratxaga <pablo@mandrakesoft.com>
- * es.po: completed
- * pl.po: updated from Pavel Jablonski
-
-1999-11-08 François PONS <fpons@mandrakesoft.com>
- * fr.po: updated.
-
-1999-11-05 Pablo Saratxaga <pablo@mandrakesoft.com>
- * pl.po: added Polish language file
- * ru.po: updated russian file
- * no.po: completed norwegian file
-
-1999-11-04 Pablo Saratxaga <pablo@mandrakesoft.com>
- * es.po: updated and completed spanish language file
- * wa.po: updated walon language file
-
-1999-10-30 Pablo Saratxaga <pablo@mandrakesoft.com>
- * es.po: updated spanish language file
-
-1999-10-22 Pablo Saratxaga <pablo@mandrakesoft.com>
- * it.po, es.po: uopdated spanish and italian language files
-
-1999-10-22 Pablo Saratxaga <pablo@mandrakesoft.com>
- * no.po: update of the Nowegian translation by Terje Bjerkelia
-
-1999-10-22 Pixel <pixel@linux-mandrake.com>
- * es.po: some corrections by Camille <camille@mandrakesoft.com>
-
-1999-10-21 François PONS <fpons@mandrakesoft.com>
- * fr.po: modified printer or queue translation (line 1950 and 2778)
-
-1999-10-21 Pablo Saratxaga <pablo@mandrakesoft.com>
- * es.po: updated Spanish language file
-
-1999-10-20 François PONS <fpons@mandrakesoft.com>
- * fr.po: corrected "Skip PCMCIA probing" message with new msgid
-
-1999-10-14 Pablo Saratxaga <pablo@mandrakesoft.com>
- * ru.po: new Russian translations from Aleksey Smirnov
- * no.po: update of the Nowegian translation by Terje Bjerkelia
-
-1999-10-13 Pablo Saratxaga <pablo@mandrakesoft.com>
- * *.po: checked that the name is correctly DrakX now, and updated them
- * tr.po: newer translations from Hakan Terziođlu <hakan@gelecek.com.tr>
-
-1999-10-11 Pablo Saratxaga <pablo@mandrakesoft.com>
- * no.po,es.po: updated Norwegian and Spanish language files
-
-1999-09-30 Pablo Saratxaga <pablo@mandrakesoft.com>
- * es.po: updated Spanish language file
-
-1999-09-26 Pablo Saratxaga <pablo@mandrakesoft.com>
- * no.po: updated norwegian file
-
-1999-09-25 Pablo Saratxaga <pablo@mandrakesoft.com>
- * it.po: updated italian file
-
-1999-09-19 Pablo Saratxaga <pablo@mandrakesoft.com>
- * no.po: update Norwegian language file
-
-1999-09-18 Pablo Saratxaga <pablo@mandrakesoft.com>
- * tr.po: Added Turkish language file from
- Hakan Terziođlu <hakan@gelecek.com.tr>
- * it.po: updated italian file
-
-1999-09-13 Pablo Saratxaga <pablo@mandrakesoft.com>
- * it.po: added italian language file from
- "Paolo Lorenzin" <pasusu@tin.it>
-
-1999-09-08 Pablo Saratxaga <pablo@mandrakesoft.com>
- * id.po, es.po: completed files
-
-1999-08-26 Pablo Saratxaga <pablo@mandrakesoft.com>
- * fr.po: updated fr.po from gregus@linux-mandrake.com (Grégoire Colbert)
- who is now in charge of the French translation
-
-1999-08-25 Pablo Saratxaga <pablo@mandrakesoft.com>
- * Makefile: corrected the msgmerge update (translations were
- being deleted !). make it so DrakX.pot has a header
- * *.po: get back all *.po files to the latest version including
- translated strings. add headers
- * id.po: update from indonesian team
-
-1999-08-22 Pablo Saratxaga <pablo@mandrakesoft.com>
- * no.po: added norwegian translations from
- Terje Bjerkelia <terje@bjerkelia.com>
-
-1999-08-18 Pablo Saratxaga <pablo@mandrakesoft.com>
- * Changelog: created a Changelog file
- * id.po: added indonesian translations from
- Mohammad DAMT <mdamt@cakraweb.com>
-
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
deleted file mode 100644
index e1495dcf3..000000000
--- a/perl-install/share/po/DrakX.pot
+++ /dev/null
@@ -1,10173 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-06-13 15:54+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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8-bit\n"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Configure all heads independently"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:244
-msgid "Use Xinerama extension"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:247
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:250
-msgid "Multi-head configuration"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:251
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Graphics card"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:263
-msgid "Select a graphics card"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:287
-msgid "Choose a X server"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:287
-msgid "X server"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:294
-msgid "Choose a X driver"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:294
-msgid "X driver"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:361 ../../Xconfigurator.pm_.c:367
-#: ../../Xconfigurator.pm_.c:417 ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "XFree %s"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:364
-msgid "Which configuration of XFree do you want to have?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:375
-#, 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:377 ../../Xconfigurator.pm_.c:410
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:379 ../../Xconfigurator.pm_.c:412
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:387 ../../Xconfigurator.pm_.c:401
-#, 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:389 ../../Xconfigurator.pm_.c:403
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:398
-#, 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:418
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:422
-msgid "XFree configuration"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:497
-msgid "Select the memory size of your graphics card"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:551
-msgid "Choose options for server"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:575
-msgid "Choose a monitor"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:575
-msgid "Monitor"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:578
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Horizontal refresh rate"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:586
-msgid "Vertical refresh rate"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:623
-msgid "Monitor not configured"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:626
-msgid "Graphics card not configured yet"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:629
-msgid "Resolutions not chosen yet"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:647
-msgid "Do you want to test the configuration?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:651
-msgid "Warning: testing this graphics card may freeze your computer"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:654
-msgid "Test of the configuration"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:693 ../../Xconfigurator.pm_.c:705
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:693 ../../Xconfigurator.pm_.c:705
-msgid "An error occurred:"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:734
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:745
-msgid "Is this the correct setting?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:754
-msgid "An error occurred, try to change some parameters"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:825
-msgid "Resolution"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:877
-msgid "Choose the resolution and the color depth"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:879
-#, c-format
-msgid "Graphics card: %s"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:880
-#, c-format
-msgid "XFree86 server: %s"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:894 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:894 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:701
-#: ../../my_gtk.pm_.c:1034 ../../my_gtk.pm_.c:1056
-#: ../../standalone/drakbackup_.c:2288 ../../standalone/drakbackup_.c:2359
-#: ../../standalone/drakbackup_.c:2375
-msgid "Ok"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:896 ../../network/netconnect.pm_.c:173
-#: ../../printerdrake.pm_.c:2473 ../../standalone/drakfloppy_.c:146
-#: ../../standalone/draknet_.c:275 ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:897
-msgid "Show all"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:942
-msgid "Resolutions"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Monitor: %s\n"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1518
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Graphics card identification: %s\n"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "Color depth: %s\n"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "Resolution: %s\n"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1525
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1526
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1544
-msgid "Preparing X-Window configuration"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1564
-msgid "What do you want to do?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1569
-msgid "Change Monitor"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Graphics card"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Change Server options"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1574
-msgid "Change Resolution"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1575
-msgid "Show information"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1576
-msgid "Test again"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1577 ../../printerdrake.pm_.c:2476
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1585
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1606
-msgid "Graphical interface at startup"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1607
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(XFree) upon booting.\n"
-"Would you like XFree to start when you reboot?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1613
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1628
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr ""
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr ""
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr ""
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr ""
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr ""
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr ""
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr ""
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr ""
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr ""
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr ""
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr ""
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr ""
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr ""
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr ""
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr ""
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr ""
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr ""
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr ""
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr ""
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr ""
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr ""
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr ""
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1087 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:710 ../../printerdrake.pm_.c:808
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr ""
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1088
-msgid "Password (again)"
-msgstr ""
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr ""
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr ""
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr ""
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr ""
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr ""
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr ""
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1143
-#: ../../install_steps_interactive.pm_.c:1082
-msgid "Please try again"
-msgstr ""
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1082
-msgid "The passwords do not match"
-msgstr ""
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr ""
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr ""
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr ""
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr ""
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:741
-#: ../../standalone/drakbackup_.c:850 ../../standalone/drakfont_.c:790
-#: ../../standalone/drakfont_.c:827
-msgid "Add"
-msgstr ""
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr ""
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr ""
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr ""
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:884
-msgid "Linux"
-msgstr ""
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr ""
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr ""
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr ""
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr ""
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr ""
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr ""
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr ""
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr ""
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr ""
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr ""
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr ""
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr ""
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr ""
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr ""
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr ""
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr ""
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr ""
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr ""
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr ""
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr ""
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr ""
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1033
-msgid "No"
-msgstr ""
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1033
-msgid "Yes"
-msgstr ""
-
-#: ../../any.pm_.c:661
-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:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr ""
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr ""
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr ""
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr ""
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr ""
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr ""
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr ""
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr ""
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr ""
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr ""
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr ""
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr ""
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr ""
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:709
-#: ../../printerdrake.pm_.c:807
-msgid "User name"
-msgstr ""
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr ""
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr ""
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr ""
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr ""
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr ""
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr ""
-
-#: ../../any.pm_.c:851
-msgid ""
-"Mandrake Linux can support multiple languages. Select\n"
-"the languages you would like to install. They will be available\n"
-"when your installation is complete and you restart your system."
-msgstr ""
-
-#: ../../any.pm_.c:865 ../../install_steps_interactive.pm_.c:689
-#: ../../standalone/drakxtv_.c:78
-msgid "All"
-msgstr ""
-
-#: ../../any.pm_.c:957
-msgid "Allow all users"
-msgstr ""
-
-#: ../../any.pm_.c:957
-msgid "Custom"
-msgstr ""
-
-#: ../../any.pm_.c:957
-msgid "No sharing"
-msgstr ""
-
-#: ../../any.pm_.c:967 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-
-#: ../../any.pm_.c:970
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr ""
-
-#: ../../any.pm_.c:978 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:984
-msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:998 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:564
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:702 ../../my_gtk.pm_.c:705 ../../my_gtk.pm_.c:1034
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1588
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2279 ../../standalone/drakbackup_.c:2300
-#: ../../standalone/drakbackup_.c:2321 ../../standalone/drakbackup_.c:2339
-#: ../../standalone/drakbackup_.c:2387 ../../standalone/drakbackup_.c:2407
-#: ../../standalone/drakbackup_.c:2426 ../../standalone/drakfloppy_.c:235
-#: ../../standalone/drakfloppy_.c:384 ../../standalone/drakfont_.c:768
-#: ../../standalone/drakgw_.c:598 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:527
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:1000
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1037
-msgid "Welcome To Crackers"
-msgstr ""
-
-#: ../../any.pm_.c:1038
-msgid "Poor"
-msgstr ""
-
-#: ../../any.pm_.c:1039 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr ""
-
-#: ../../any.pm_.c:1040
-msgid "High"
-msgstr ""
-
-#: ../../any.pm_.c:1041
-msgid "Higher"
-msgstr ""
-
-#: ../../any.pm_.c:1042
-msgid "Paranoid"
-msgstr ""
-
-#: ../../any.pm_.c:1045
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-
-#: ../../any.pm_.c:1048
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-
-#: ../../any.pm_.c:1050
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1051
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which can "
-"accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-
-#: ../../any.pm_.c:1054
-msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
-msgstr ""
-
-#: ../../any.pm_.c:1059
-msgid "Please choose the desired security level."
-msgstr ""
-
-#: ../../any.pm_.c:1062
-msgid "Security level"
-msgstr ""
-
-#: ../../any.pm_.c:1064
-msgid "Use libsafe for servers"
-msgstr ""
-
-#: ../../any.pm_.c:1065
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-#: ../../any.pm_.c:1067
-msgid "Security user (login or email)"
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:354
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:910
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:913
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:916
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:919
-msgid "commands before booting, or 'c' for a command-line."
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:922
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr ""
-
-#: ../../bootloader.pm_.c:926
-msgid "not enough room in /boot"
-msgstr ""
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1026
-msgid "Desktop"
-msgstr ""
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1028
-msgid "Start Menu"
-msgstr ""
-
-#: ../../bootloader.pm_.c:1047
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr ""
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr ""
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr ""
-
-#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
-#: ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr ""
-
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
-#: ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr ""
-
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
-#: ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr ""
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr ""
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr ""
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr ""
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1457
-#: ../../standalone/drakbackup_.c:1468 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr ""
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr ""
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the graphical environment when your system starts"
-msgstr ""
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr ""
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2431 ../../standalone/drakbackup_.c:3335
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:537
-#: ../../standalone/drakfont_.c:658 ../../standalone/drakfont_.c:721
-#: ../../standalone/drakfont_.c:766 ../../standalone/draknet_.c:109
-#: ../../standalone/draknet_.c:141 ../../standalone/draknet_.c:297
-#: ../../standalone/draknet_.c:436 ../../standalone/draknet_.c:522
-#: ../../standalone/draknet_.c:565 ../../standalone/draknet_.c:666
-#: ../../standalone/logdrake_.c:520
-msgid "OK"
-msgstr ""
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr ""
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr ""
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr ""
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr ""
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr ""
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr ""
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
-msgid "France"
-msgstr ""
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
-msgid "Belgium"
-msgstr ""
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr ""
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr ""
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr ""
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr ""
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
-msgid "Italy"
-msgstr ""
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr ""
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:899
-#: ../../diskdrake/interactive.pm_.c:908 ../../diskdrake/interactive.pm_.c:962
-msgid "Read carefully!"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1058
-msgid "Empty"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:933
-msgid "Other"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:535
-#: ../../diskdrake/interactive.pm_.c:562 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:629
-msgid "Resize"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:682
-msgid "Move"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:781
-msgid "Size in MB: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:782
-msgid "Filesystem type: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1042
-#: ../../diskdrake/interactive.pm_.c:1116
-msgid "Mount point: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:533
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:534 ../../diskdrake/interactive.pm_.c:561
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:540
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:585
-msgid "Computing FAT filesystem bounds"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:585 ../../diskdrake/interactive.pm_.c:644
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:617
-msgid "This partition is not resizeable"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "All data on this partition should be backed-up"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:624
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:629
-msgid "Choose the new size"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:630
-msgid "New size in MB: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:683
-msgid "Which disk do you want to move it to?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:684
-msgid "Sector"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:685
-msgid "Which sector do you want to move it to?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:688
-msgid "Moving"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:688
-msgid "Moving partition..."
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:705
-msgid "Choose an existing RAID to add to"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:706 ../../diskdrake/interactive.pm_.c:724
-msgid "new"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:722
-msgid "Choose an existing LVM to add to"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:727
-msgid "LVM name?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:767
-msgid "This partition can't be used for loopback"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:779
-msgid "Loopback"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "Loopback file name: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:785
-msgid "Give a file name"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:788
-msgid "File already used by another loopback, choose another one"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:789
-msgid "File already exists. Use it?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:812
-msgid "Mount options"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:819
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:882 ../../standalone/drakfloppy_.c:104
-msgid "device"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:883
-msgid "level"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:884
-msgid "chunk size"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:899
-msgid "Be careful: this operation is dangerous."
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:914
-msgid "What type of partitioning?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:932
-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 ""
-
-#: ../../diskdrake/interactive.pm_.c:936
-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 ""
-
-#: ../../diskdrake/interactive.pm_.c:942
-msgid ""
-"You've selected a software RAID partition as root (/).\n"
-"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:962
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:966
-msgid "You'll need to reboot before the modification can take place"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:977
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:979
-msgid "Formatting"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:980
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:981
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:992
-msgid "Hide files"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:992
-msgid "Move files to the new partition"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:993
-#, c-format
-msgid ""
-"Directory %s already contains data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-msgid "Moving files to the new partition"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1008
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1012
-#, c-format
-msgid "Removing %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1022
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1043
-#: ../../diskdrake/interactive.pm_.c:1102
-msgid "Device: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1044
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1056
-#: ../../diskdrake/interactive.pm_.c:1120
-msgid "Type: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1052
-msgid "Name: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1060
-#, c-format
-msgid "Start: sector %s\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "Size: %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ", %s sectors"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1065
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1066
-msgid "Formatted\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1067
-msgid "Not formatted\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1068
-msgid "Mounted\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1069
-#, c-format
-msgid "RAID md%s\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1071
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1072
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1074
-#, c-format
-msgid "Level %s\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1075
-#, c-format
-msgid "Chunk size %s\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1076
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1078
-#, c-format
-msgid "Loopback file name: %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1081
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1084
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1103
-#, c-format
-msgid "Size: %s\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1104
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1105
-msgid "Info: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1106
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1107
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1108
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1122
-#, c-format
-msgid "Options: %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1142
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1143
-msgid "The encryption keys do not match"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1146
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1147
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr ""
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a medium"
-msgstr ""
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr ""
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr ""
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr ""
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr ""
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr ""
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr ""
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr ""
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr ""
-
-#: ../../fsedit.pm_.c:486
-msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
-msgstr ""
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr ""
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:697
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr ""
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr ""
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr ""
-
-#: ../../install_any.pm_.c:794
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:798
-msgid "This floppy is not FAT formatted"
-msgstr ""
-
-#: ../../install_any.pm_.c:810
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-
-#: ../../install_any.pm_.c:832 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partitions"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr ""
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr ""
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing Windows partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:136
-msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
-msgstr ""
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for Windows on"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partition to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr ""
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr ""
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr ""
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr ""
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:675
-msgid "Package Group Selection"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:690
-msgid "Individual package selection"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:615
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:525
-msgid "Choose the packages you want to install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:757
-msgid "Installing"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation..."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:781
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:781
-msgid "Refuse"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:782
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:794
-#: ../../install_steps_interactive.pm_.c:798
-msgid "Go on anyway?"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:794
-msgid "There was an error ordering packages:"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:798
-msgid "There was an error installing packages:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. 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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1017
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "No partition available"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages..."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade..."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:538
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:541
-msgid "Load from floppy"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:543
-msgid "Loading from floppy"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:543
-msgid "Package selection"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:548
-msgid "Insert a floppy containing package selection"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:560
-msgid "Save on floppy"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:628
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:641
-msgid "Type of install"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:642
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:645
-msgid "With X"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:647
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:648
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:732
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:737
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:757
-msgid "Preparing installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:766
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:812
-msgid "Post-install configuration"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:818
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:824
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:844
-msgid ""
-"You now have the opportunity to download encryption software.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:883
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been released after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:898
-msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:903
-msgid "Choose a mirror from which to get the packages"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Which is your timezone?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:944
-msgid "Hardware clock set to GMT"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:945
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:952
-msgid "NTP Server"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:986
-#: ../../install_steps_interactive.pm_.c:994
-msgid "Remote CUPS server"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:987
-msgid "No printer"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1004
-msgid "Do you have an ISA sound card?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1006
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1008
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1013 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1016
-msgid "Mouse"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1018
-msgid "Timezone"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1019 ../../printerdrake.pm_.c:2279
-#: ../../printerdrake.pm_.c:2357
-msgid "Printer"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1021
-msgid "ISDN card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1024
-#: ../../install_steps_interactive.pm_.c:1026
-msgid "Sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1028
-msgid "TV card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1066
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1094
-msgid "LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1067
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1103
-msgid "NIS"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1068
-#: ../../install_steps_interactive.pm_.c:1090
-msgid "Local files"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1077
-#: ../../install_steps_interactive.pm_.c:1078 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1079
-msgid "No password"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1084
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1090 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1098
-msgid "Authentication LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1099
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1100
-msgid "LDAP Server"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1106
-msgid "Authentication NIS"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "NIS Domain"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1108
-msgid "NIS Server"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1143
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "First floppy drive"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1160
-msgid "Second floppy drive"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1161 ../../printerdrake.pm_.c:1851
-msgid "Skip"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1166
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1172
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1180
-msgid "Sorry, no floppy drive available"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1184
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1188
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1191
-msgid "Creating bootdisk..."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1198
-msgid "Preparing bootloader..."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1209
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1215
-msgid "Do you want to use aboot?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1218
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1225
-msgid "Installing bootloader"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1231
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1239
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1283
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1287
-msgid "Creating auto install floppy..."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1298
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1309
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid "Generate auto install floppy"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1328
-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:1333
-msgid "Automated"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1333
-msgid "Replay"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1336
-msgid "Save packages selection"
-msgstr ""
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr ""
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr ""
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr ""
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button?"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:103
-msgid " enter `void' for void entry"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:197 ../../keyboard.pm_.c:228
-msgid "Czech (QWERTZ)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:198 ../../keyboard.pm_.c:230
-msgid "German"
-msgstr ""
-
-#: ../../keyboard.pm_.c:199
-msgid "Dvorak"
-msgstr ""
-
-#: ../../keyboard.pm_.c:200 ../../keyboard.pm_.c:237
-msgid "Spanish"
-msgstr ""
-
-#: ../../keyboard.pm_.c:201 ../../keyboard.pm_.c:238
-msgid "Finnish"
-msgstr ""
-
-#: ../../keyboard.pm_.c:202 ../../keyboard.pm_.c:239
-msgid "French"
-msgstr ""
-
-#: ../../keyboard.pm_.c:203 ../../keyboard.pm_.c:264
-msgid "Norwegian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:204
-msgid "Polish"
-msgstr ""
-
-#: ../../keyboard.pm_.c:205 ../../keyboard.pm_.c:272
-msgid "Russian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:207 ../../keyboard.pm_.c:274
-msgid "Swedish"
-msgstr ""
-
-#: ../../keyboard.pm_.c:208 ../../keyboard.pm_.c:289
-msgid "UK keyboard"
-msgstr ""
-
-#: ../../keyboard.pm_.c:209 ../../keyboard.pm_.c:290
-msgid "US keyboard"
-msgstr ""
-
-#: ../../keyboard.pm_.c:211
-msgid "Albanian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:212
-msgid "Armenian (old)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:213
-msgid "Armenian (typewriter)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:214
-msgid "Armenian (phonetic)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:219
-msgid "Azerbaidjani (latin)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:221
-msgid "Belgian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:222
-msgid "Bulgarian (phonetic)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:223
-msgid "Bulgarian (BDS)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:224
-msgid "Brazilian (ABNT-2)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:225
-msgid "Belarusian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:226
-msgid "Swiss (German layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:227
-msgid "Swiss (French layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:229
-msgid "Czech (QWERTY)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:231
-msgid "German (no dead keys)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:232
-msgid "Danish"
-msgstr ""
-
-#: ../../keyboard.pm_.c:233
-msgid "Dvorak (US)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:234
-msgid "Dvorak (Norwegian)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:235
-msgid "Dvorak (Swedish)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:236
-msgid "Estonian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:240
-msgid "Georgian (\"Russian\" layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:241
-msgid "Georgian (\"Latin\" layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:242
-msgid "Greek"
-msgstr ""
-
-#: ../../keyboard.pm_.c:243
-msgid "Hungarian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:244
-msgid "Croatian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:245
-msgid "Israeli"
-msgstr ""
-
-#: ../../keyboard.pm_.c:246
-msgid "Israeli (Phonetic)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:247
-msgid "Iranian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:248
-msgid "Icelandic"
-msgstr ""
-
-#: ../../keyboard.pm_.c:249
-msgid "Italian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:251
-msgid "Japanese 106 keys"
-msgstr ""
-
-#: ../../keyboard.pm_.c:254
-msgid "Korean keyboard"
-msgstr ""
-
-#: ../../keyboard.pm_.c:255
-msgid "Latin American"
-msgstr ""
-
-#: ../../keyboard.pm_.c:256
-msgid "Lithuanian AZERTY (old)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:258
-msgid "Lithuanian AZERTY (new)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:259
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr ""
-
-#: ../../keyboard.pm_.c:260
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr ""
-
-#: ../../keyboard.pm_.c:261
-msgid "Latvian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:262
-msgid "Macedonian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:263
-msgid "Dutch"
-msgstr ""
-
-#: ../../keyboard.pm_.c:265
-msgid "Polish (qwerty layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:266
-msgid "Polish (qwertz layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:267
-msgid "Portuguese"
-msgstr ""
-
-#: ../../keyboard.pm_.c:268
-msgid "Canadian (Quebec)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:270
-msgid "Romanian (qwertz)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:271
-msgid "Romanian (qwerty)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:273
-msgid "Russian (Yawerty)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:275
-msgid "Slovenian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:276
-msgid "Slovakian (QWERTZ)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:277
-msgid "Slovakian (QWERTY)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Serbian (cyrillic)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "Tamil"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Thai keyboard"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "Tajik keyboard"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Turkish (traditional \"F\" model)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Turkish (modern \"Q\" model)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:288
-msgid "Ukrainian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:291
-msgid "US keyboard (international)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:292
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr ""
-
-#: ../../keyboard.pm_.c:293
-msgid "Yugoslavian (latin)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:301
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:302
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:303
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:304
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:305
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:306
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:307
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:308
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:309
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr ""
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr ""
-
-#: ../../modules.pm_.c:832
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr ""
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr ""
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr ""
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr ""
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr ""
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr ""
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr ""
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr ""
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr ""
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr ""
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr ""
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr ""
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr ""
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr ""
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr ""
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr ""
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr ""
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr ""
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:666
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:701
-msgid "Finish"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:701 ../../printerdrake.pm_.c:1590
-msgid "Next ->"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:702 ../../printerdrake.pm_.c:1588
-msgid "<- Previous"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:1034
-msgid "Is this correct?"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:1098 ../../services.pm_.c:222
-msgid "Info"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:1119
-msgid "Expand Tree"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:1120
-msgid "Collapse Tree"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:1121
-msgid "Toggle between flat and group sorted"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:248
-msgid "Choose the network interface"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
-msgid "Configuring network"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
-msgid "Host name"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:179
-#: ../../network/netconnect.pm_.c:206 ../../network/netconnect.pm_.c:229
-#: ../../network/netconnect.pm_.c:237
-msgid "Network Configuration Wizard"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
-msgstr ""
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use?"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card?"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:235
-msgid ""
-"I have detected an ISDN PCI card, but I don't know its type. Please select a "
-"PCI card on the next screen."
-msgstr ""
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr ""
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr ""
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr ""
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr ""
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr ""
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr ""
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr ""
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:256
-#: ../../network/netconnect.pm_.c:276 ../../network/tools.pm_.c:63
-msgid "Network Configuration"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-
-#: ../../network/netconnect.pm_.c:171
-msgid "Choose the profile to configure"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:172
-msgid "Use auto detection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:179 ../../printerdrake.pm_.c:145
-msgid "Detecting devices..."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "Normal modem connection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-#, c-format
-msgid "detected on port %s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
-msgid "ISDN connection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
-#, c-format
-msgid "detected %s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
-msgid "ADSL connection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
-#, c-format
-msgid "detected on interface %s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
-msgid "Cable connection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
-msgid "cable connection detected"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
-msgid "LAN connection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
-msgid "ethernet card(s) detected"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:206
-msgid "Choose the connection you want to configure"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:230
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:231
-msgid "Internet connection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:237
-msgid "Do you want to start the connection at boot?"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:251
-msgid "Network configuration"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:256
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:270
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:271
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration."
-msgstr ""
-
-#: ../../network/network.pm_.c:293
-msgid ""
-"WARNING: this device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-
-#: ../../network/network.pm_.c:298
-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 ""
-
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
-#, c-format
-msgid "Configuring network device %s"
-msgstr ""
-
-#: ../../network/network.pm_.c:309
-#, c-format
-msgid " (driver %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:311 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr ""
-
-#: ../../network/network.pm_.c:312 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr ""
-
-#: ../../network/network.pm_.c:313
-msgid "(bootp/dhcp)"
-msgstr ""
-
-#: ../../network/network.pm_.c:313
-msgid "Automatic IP"
-msgstr ""
-
-#: ../../network/network.pm_.c:314
-msgid "Start at boot"
-msgstr ""
-
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:714
-msgid "IP address should be in format 1.2.3.4"
-msgstr ""
-
-#: ../../network/network.pm_.c:365
-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 ""
-
-#: ../../network/network.pm_.c:370
-msgid "DNS server"
-msgstr ""
-
-#: ../../network/network.pm_.c:371
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:373
-msgid "Gateway device"
-msgstr ""
-
-#: ../../network/network.pm_.c:385
-msgid "Proxies configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:386
-msgid "HTTP proxy"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "FTP proxy"
-msgstr ""
-
-#: ../../network/network.pm_.c:388
-msgid "Track network card id (useful for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:391
-msgid "Proxy should be http://..."
-msgstr ""
-
-#: ../../network/network.pm_.c:392
-msgid "Proxy should be ftp://..."
-msgstr ""
-
-#: ../../network/tools.pm_.c:41
-msgid "Internet configuration"
-msgstr ""
-
-#: ../../network/tools.pm_.c:42
-msgid "Do you want to try to connect to the Internet now?"
-msgstr ""
-
-#: ../../network/tools.pm_.c:46 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr ""
-
-#: ../../network/tools.pm_.c:56
-msgid "The system is now connected to Internet."
-msgstr ""
-
-#: ../../network/tools.pm_.c:57
-msgid "For security reason, it will be disconnected now."
-msgstr ""
-
-#: ../../network/tools.pm_.c:58
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-
-#: ../../network/tools.pm_.c:82
-msgid "Connection Configuration"
-msgstr ""
-
-#: ../../network/tools.pm_.c:83
-msgid "Please fill or check the field below"
-msgstr ""
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr ""
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr ""
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr ""
-
-#: ../../network/tools.pm_.c:89 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr ""
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr ""
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr ""
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:95
-msgid "Choose your country"
-msgstr ""
-
-#: ../../network/tools.pm_.c:96 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr ""
-
-#: ../../network/tools.pm_.c:97 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr ""
-
-#: ../../network/tools.pm_.c:98 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:99 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:100 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr ""
-
-#: ../../network/tools.pm_.c:118
-msgid "United Kingdom"
-msgstr ""
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr ""
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr ""
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions."
-msgstr ""
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr ""
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr ""
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr ""
-
-#: ../../partition_table_raw.pm_.c:186
-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:24
-msgid "must have"
-msgstr ""
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr ""
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr ""
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr ""
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr ""
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr ""
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr ""
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr ""
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:736
-msgid "Printer on remote lpd server"
-msgstr ""
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr ""
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr ""
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr ""
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:740
-msgid "Enter a printer device URI"
-msgstr ""
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2733
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr ""
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr ""
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ""
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1138
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr ""
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2394
-#: ../../printerdrake.pm_.c:2405 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2673 ../../printerdrake.pm_.c:2700
-#: ../../printerdrake.pm_.c:2870 ../../printerdrake.pm_.c:2872
-msgid " (Default)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2457
-msgid "CUPS configuration"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2458
-msgid "Specify CUPS server"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:864
-msgid "The port number should be an integer!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:857
-msgid "Port"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2440
-#: ../../printerdrake.pm_.c:2559
-msgid "Add a new printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart P100 or 1315 or an "
-"HP LaserJet 2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:484
-msgid "Installing HPOJ package..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:489
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:507
-msgid "Installing SANE package..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:519
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:536
-msgid "Making printer port available for CUPS..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:546 ../../printerdrake.pm_.c:1020
-#: ../../printerdrake.pm_.c:1134
-msgid "Reading printer database..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote lpd Printer Options"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:627
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:628
-msgid "Remote host name"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:629
-msgid "Remote printer name"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:632
-msgid "Remote host name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:636
-msgid "Remote printer name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:705
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:706
-msgid "SMB server host"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:707
-msgid "SMB server IP"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:708
-msgid "Share name"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:711
-msgid "Workgroup"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:718
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:722
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:727
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:728
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:738
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:741
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:803
-msgid "NetWare Printer Options"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:804
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:805
-msgid "Printer Server"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:806
-msgid "Print Queue Name"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:811
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:815
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:854
-msgid "TCP/Socket Printer Options"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:855
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:856
-msgid "Printer host name"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:860
-msgid "Printer host name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:889 ../../printerdrake.pm_.c:891
-msgid "Printer Device URI"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:890
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:905
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1006
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Name of printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1008
-msgid "Description"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1009
-msgid "Location"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1023
-msgid "Preparing printer database..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1114
-msgid "Your printer model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1115
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1120 ../../printerdrake.pm_.c:1123
-msgid "The model is correct"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1121 ../../printerdrake.pm_.c:1122
-#: ../../printerdrake.pm_.c:1125
-msgid "Select model manually"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1141
-msgid "Printer model selection"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1142
-msgid "Which printer model do you have?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1143
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1146
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1222
-msgid "OKI winprinter configuration"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1223
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1266 ../../printerdrake.pm_.c:1293
-msgid "Lexmark inkjet configuration"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1267
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1294
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1510
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1519
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1523
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1528
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1567
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1584
-msgid "Test pages"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1585
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1589
-msgid "No test pages"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Print"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1592
-msgid "Standard test page"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1595
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Alternative test page (A4)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1600
-msgid "Photo test page"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1604
-msgid "Do not print any test page"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1612 ../../printerdrake.pm_.c:1749
-msgid "Printing test page(s)..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1637
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1641
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1648
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1669 ../../printerdrake.pm_.c:2735
-msgid "Raw printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1689
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:1708
-#: ../../printerdrake.pm_.c:1718
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1695 ../../printerdrake.pm_.c:1734
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1698
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1705 ../../printerdrake.pm_.c:1715
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1710 ../../printerdrake.pm_.c:1720
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1723
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1727
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1731
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1740 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:1747 ../../printerdrake.pm_.c:1748
-#: ../../printerdrake.pm_.c:2719 ../../standalone/drakbackup_.c:743
-#: ../../standalone/drakbackup_.c:2448 ../../standalone/drakfont_.c:580
-#: ../../standalone/drakfont_.c:792
-msgid "Close"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1743 ../../printerdrake.pm_.c:1755
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1744 ../../printerdrake.pm_.c:1756
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1746
-msgid "Print option list"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1768
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1775
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1797 ../../printerdrake.pm_.c:2224
-#: ../../printerdrake.pm_.c:2488
-msgid "Reading printer data..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1817 ../../printerdrake.pm_.c:1845
-#: ../../printerdrake.pm_.c:1880
-msgid "Transfer printer configuration"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1821
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1823
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1827
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1828
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1832
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1833 ../../printerdrake.pm_.c:1850
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1846
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1854
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1859
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1867
-msgid "New printer name"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1870
-#, c-format
-msgid "Transferring %s..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1881
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1890
-msgid "Refreshing printer data..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1898 ../../printerdrake.pm_.c:1969
-#: ../../printerdrake.pm_.c:1981
-msgid "Configuration of a remote printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1899
-msgid "Starting network..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1933 ../../printerdrake.pm_.c:1937
-#: ../../printerdrake.pm_.c:1939
-msgid "Configure the network now"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1934
-msgid "Network functionality not configured"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1938
-msgid "Go on without configuring the network"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1971
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1972
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1982
-msgid "Restarting printing system..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2020
-msgid "high"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2020
-msgid "paranoid"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2021
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2022
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2054
-msgid "Starting the printing system at boot time"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2055
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2078 ../../printerdrake.pm_.c:2116
-#: ../../printerdrake.pm_.c:2146 ../../printerdrake.pm_.c:2179
-#: ../../printerdrake.pm_.c:2284
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2120
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2150
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2208
-msgid "Select Printer Spooler"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2209
-msgid "Which printing system (spooler) do you want to use?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2242
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2255
-msgid "Installing Foomatic..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2351
-#: ../../printerdrake.pm_.c:2736 ../../printerdrake.pm_.c:2806
-msgid "Printer options"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2321
-msgid "Preparing PrinterDrake..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2338 ../../printerdrake.pm_.c:2893
-msgid "Configuring applications..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2358
-msgid "Would you like to configure printing?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2370
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2418
-msgid "Printerdrake"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2422
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2423
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2449
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2467
-msgid "Change the printing system"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2472 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2628 ../../printerdrake.pm_.c:2678
-#: ../../printerdrake.pm_.c:2887
-msgid "Do you want to configure another printer?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2714
-msgid "Modify printer configuration"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2716
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2720
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2780
-msgid "Printer connection type"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2784
-msgid "Printer name, description, location"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2728 ../../printerdrake.pm_.c:2799
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2729 ../../printerdrake.pm_.c:2800
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2810
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2815
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2824
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2833
-msgid "Print test pages"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2743 ../../printerdrake.pm_.c:2835
-msgid "Know how to use this printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2837
-msgid "Remove printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2789
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2813
-msgid "Default printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2814
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2818 ../../printerdrake.pm_.c:2821
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2822
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2827 ../../printerdrake.pm_.c:2830
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2831
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2839
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2841
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr ""
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr ""
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr ""
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr ""
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr ""
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr ""
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr ""
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr ""
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr ""
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr ""
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr ""
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr ""
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr ""
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr ""
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr ""
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr ""
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr ""
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-
-#: ../../services.pm_.c:18
-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 ""
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-
-#: ../../services.pm_.c:23
-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 ""
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:414
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-
-#: ../../services.pm_.c:33
-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:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: ../../services.pm_.c:43
-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 ""
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:415
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-
-#: ../../services.pm_.c:52
-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 ""
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:417
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-
-#: ../../services.pm_.c:69
-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:71
-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 ""
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-
-#: ../../services.pm_.c:78
-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 ""
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr ""
-
-#: ../../services.pm_.c:81
-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 ""
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr ""
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr ""
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:923
-msgid "System"
-msgstr ""
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr ""
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr ""
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr ""
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr ""
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr ""
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr ""
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr ""
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr ""
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr ""
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:438
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:439
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:443
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:465
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:544 ../../standalone/drakbackup_.c:591
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:592 ../../standalone/drakbackup_.c:656
-msgid "Hard Disk Backup files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:604
-msgid "Backup User files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:605
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:655
-msgid "Backup Other files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:663
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-msgid ""
-"\n"
-" FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:676
-msgid " Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:717 ../../standalone/drakbackup_.c:728
-#: ../../standalone/drakbackup_.c:739 ../../standalone/drakfont_.c:788
-msgid "File Selection"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:744
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:779
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:780
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:781
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:782
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:783
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:784
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:801
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:828
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:829 ../../standalone/drakbackup_.c:853
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:851 ../../standalone/drakfont_.c:828
-msgid "Remove Selected"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:889
-msgid "Windows (FAT32)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:928
-msgid "Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:954
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:957
-msgid "Please enter the host name or IP."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:962
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter your login"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:972
-msgid "Please enter your password"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:978
-msgid "Remember this password"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1042 ../../standalone/drakbackup_.c:2038
-msgid "FTP Connection"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1049 ../../standalone/drakbackup_.c:2046
-msgid "Secure Connection"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1075 ../../standalone/drakbackup_.c:2879
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1078 ../../standalone/drakbackup_.c:2883
-msgid "Please choose your CD space"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1084 ../../standalone/drakbackup_.c:2895
-msgid "Please check if you are using CDRW media"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1090 ../../standalone/drakbackup_.c:2901
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1096
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1102
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1143
-msgid "Use tape to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1146
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1152 ../../standalone/drakbackup_.c:1193
-#: ../../standalone/drakbackup_.c:2003
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1185 ../../standalone/drakbackup_.c:1995
-msgid "Please enter the directory to save:"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:2009
-msgid "Use quota for backup files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1257
-msgid "Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1287 ../../standalone/drakbackup_.c:1291
-#: ../../standalone/drakbackup_.c:1295
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1288 ../../standalone/drakbackup_.c:1292
-#: ../../standalone/drakbackup_.c:1295
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1289 ../../standalone/drakbackup_.c:1293
-#: ../../standalone/drakbackup_.c:1295
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1290 ../../standalone/drakbackup_.c:1294
-#: ../../standalone/drakbackup_.c:1295
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1302
-msgid "Use daemon"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1307
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1313
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1317
-msgid "Use Hard Drive with daemon"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1319
-msgid "Use FTP with daemon"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1323
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1359
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1401
-msgid "What"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1406
-msgid "Where"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "When"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "More Options"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1435 ../../standalone/drakbackup_.c:2791
-msgid "Drakbackup Configuration"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1453
-msgid "Please choose where you want to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1455
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1466
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1530
-msgid "Please choose what you want to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1531
-msgid "Backup system"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1532
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1535
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1617
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1618
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1620
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1622
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1624
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1625
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1626
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1629
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1631
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1633
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1743
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1745
-msgid "Please uncheck or remove it on next time."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1776
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1777
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1876
-msgid " Restore Configuration "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1894
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1912
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1962
-msgid "Backup the system files before:"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1964
-msgid "please choose the date to restore"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1992
-msgid "Use Hard Disk to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2073
-msgid "Restore from Hard Disk."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2075
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2133
-msgid "Select another media to restore from"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2135
-msgid "Other Media"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2141
-msgid "Restore system"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2142
-msgid "Restore Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Restore Other"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2149
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2150
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2207
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2215
-msgid "Custom Restore"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2256 ../../standalone/drakbackup_.c:2281
-#: ../../standalone/drakbackup_.c:2302 ../../standalone/drakbackup_.c:2323
-#: ../../standalone/drakbackup_.c:2341 ../../standalone/drakbackup_.c:2373
-#: ../../standalone/drakbackup_.c:2389 ../../standalone/drakbackup_.c:2409
-#: ../../standalone/drakbackup_.c:2428 ../../standalone/drakbackup_.c:2450
-#: ../../standalone/drakfont_.c:578
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2259 ../../standalone/drakbackup_.c:2286
-#: ../../standalone/drakbackup_.c:2305 ../../standalone/drakbackup_.c:2326
-#: ../../standalone/drakbackup_.c:2344 ../../standalone/drakbackup_.c:2392
-#: ../../standalone/drakbackup_.c:2412 ../../standalone/drakbackup_.c:2431
-msgid "Previous"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2261 ../../standalone/drakbackup_.c:2328
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2307
-msgid "Build Backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2346 ../../standalone/drakbackup_.c:3023
-msgid "Restore"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2394 ../../standalone/drakbackup_.c:2414
-#: ../../standalone/drakbackup_.c:2435
-msgid "Next"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2468
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2489
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2512
-msgid "Package List to Install"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2540
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2563
-msgid "Please select data to restore..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2584
-msgid "Please select media for backup..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2606
-msgid "Please select data to backup..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2628
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2649
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2729
-msgid "Backup system files"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2731
-msgid "Backup user files"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2733
-msgid "Backup other files"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2735 ../../standalone/drakbackup_.c:2766
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2757
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2761
-msgid "Sending files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2831
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2889
-msgid "Please enter the cd writer speed"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2907
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2913
-msgid "Please check if you want to include install boot on your CD."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2979
-msgid "Backup Now from configuration file"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "View Backup Configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3010
-msgid "Wizard Configuration"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3014
-msgid "Advanced Configuration"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3018
-msgid "Backup Now"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3043
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3094
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3124
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3132
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3171
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3197 ../../standalone/drakbackup_.c:3272
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3199 ../../standalone/drakbackup_.c:3274
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3213
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3251
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3260
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3288
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:64
-msgid "usage: drakfloppy\n"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:68
-msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:69
-msgid "Module name"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:69
-msgid "Size"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
-msgid "drakfloppy"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:91
-msgid "boot disk creation"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
-msgid "default"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:115
-#, c-format
-msgid "DrakFloppy Error: %s"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:126
-msgid "kernel version"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:132
-msgid "General"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:137
-msgid "Expert Area"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:140
-msgid "mkinitrd optional arguments"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:141
-msgid "Add a module"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:161
-msgid "force"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:162
-msgid "if needed"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:163
-msgid "omit scsi modules"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:164
-msgid "omit raid modules"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:200
-msgid "Remove a module"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:222
-msgid "Output"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:234
-msgid "Build the disk"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:422
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:427
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:429
-#, c-format
-msgid "Unable to fork: %s"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:433
-#, c-format
-msgid ""
-"Unable to close properly mkbootdisk: \n"
-" %s \n"
-" %s"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:230
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:232
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:254
-msgid "no fonts found"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:262 ../../standalone/drakfont_.c:304
-#: ../../standalone/drakfont_.c:353 ../../standalone/drakfont_.c:413
-#: ../../standalone/drakfont_.c:422 ../../standalone/drakfont_.c:448
-#: ../../standalone/drakfont_.c:460 ../../standalone/drakfont_.c:473
-msgid "done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:266
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:302
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:305
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:328
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:351
-msgid "Fonts copy"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:354
-msgid "True Type fonts installation"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:358
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:362
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:369 ../../standalone/drakfont_.c:385
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:373 ../../standalone/drakfont_.c:389
-#: ../../standalone/drakfont_.c:409
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:378 ../../standalone/drakfont_.c:393
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:400
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:404
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:417
-msgid "Restart XFS"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:458 ../../standalone/drakfont_.c:468
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:470
-msgid "xfs restart"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:477 ../../standalone/drakfont_.c:761
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:551
-msgid "Fonts Importation"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:566
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:571
-msgid "Advanced Options"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:573
-msgid "Font List"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:740
-msgid "Choose the applications that will support the fonts :"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:744
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:748
-msgid "StarOffice"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:752
-msgid "Abiword"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:756
-msgid "Generic Printers"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:793
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:829
-msgid "Install List"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:859
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:896
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Selected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:898
-msgid "Remove List"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:915 ../../standalone/drakfont_.c:935
-msgid "Initials tests"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:916
-msgid "Copy fonts on your system"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:917
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:918
-msgid "Post Install"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:936
-msgid "Remove fonts on your system"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:937
-msgid "Post Uninstall"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:196
-msgid "Internet Connection Sharing"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:122
-msgid "Sorry, we support only 2.4 kernels."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:134
-msgid "Internet Connection Sharing currently enabled"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:135
-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 ""
-
-#: ../../standalone/drakgw_.c:139
-msgid "disable"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
-msgid "dismiss"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
-msgid "reconfigure"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:142
-msgid "Disabling servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:150
-msgid "Internet connection sharing is now disabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:159
-msgid "Internet Connection Sharing currently disabled"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:160
-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 ""
-
-#: ../../standalone/drakgw_.c:164
-msgid "enable"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:171
-msgid "Enabling servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:176
-msgid "Internet connection sharing is now enabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:197
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:223
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:224
-#, c-format
-msgid "Interface %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:232
-msgid "No network adapter on your system!"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:233
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:239
-msgid "Network interface"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:240
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:249
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:267
-msgid "Network interface already configured"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:268
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:273
-msgid "Automatic reconfiguration"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:274
-msgid "Show current interface configuration"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:276
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:288
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:293
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:294
-msgid "(This) DHCP Server IP"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:295
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:302
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:313
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:321
-msgid "Firewalling configuration detected!"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:322
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:329
-msgid "Configuring..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:330
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:366
-#, c-format
-msgid "Problems installing package %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:549
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:566
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:567
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:568
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:573
-msgid "Internet connection sharing configuration"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:580
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr ""
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr ""
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr ""
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr ""
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr ""
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr ""
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr ""
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr ""
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr ""
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr ""
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr ""
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr ""
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:51
-msgid "Setting security level"
-msgstr ""
-
-#: ../../standalone/draksec_.c:57
-msgid "Setting security user"
-msgstr ""
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr ""
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:55
-msgid ""
-"XawTV isn't installed!\n"
-"\n"
-"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
-"module in \"/etc/modules\") nor installed xawtv, please send the\n"
-"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
-"with subject \"undetected TV card\".\n"
-"\n"
-"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Canada (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "USA (broadcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:73
-msgid "China (broadcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:73
-msgid "Japan (broadcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:73
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:74
-msgid "East Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:74
-msgid "France [SECAM]"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:74
-msgid "Ireland"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:74
-msgid "West Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:75
-msgid "Australia"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:75
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:76
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:77
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:113
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:115
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:116
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:120
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:128
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:131
-msgid "There was an error while scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:132
-msgid "XawTV isn't installed!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:135
-msgid "Have a nice day!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:136
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:148
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:149
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr ""
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr ""
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:516
-msgid "logdrake"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr ""
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:407
-msgid "Mail/SMS alert configuration"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:408
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:416
-msgid "proftpd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-msgid "sshd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:420
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:421
-msgid "xinetd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:424
-msgid "service setting"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:425
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:435
-msgid "load setting"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:436
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:449
-msgid "alert configuration"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:450
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:493
-msgid "Save as.."
-msgstr ""
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr ""
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr ""
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr ""
-
-#: ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-msgid "choose device"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr ""
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr ""
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr ""
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr ""
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr ""
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr ""
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr ""
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr ""
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr ""
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr ""
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr ""
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr ""
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr ""
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr ""
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr ""
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr ""
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr ""
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, gnumeric), pdf viewers, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "The K Desktop Environment, the basic graphical environment with a collection of accompanying tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-
-#: ../../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:999
-msgid "Personal Finance"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "A graphical environment with user-friendly set of applications and desktop tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr ""
diff --git a/perl-install/share/po/Makefile b/perl-install/share/po/Makefile
deleted file mode 100644
index 0913590b6..000000000
--- a/perl-install/share/po/Makefile
+++ /dev/null
@@ -1,75 +0,0 @@
-include ../../Makefile.config
-
-PMSFILES = $(wildcard $(ALLPMS:%=../../%))
-PMSCFILES = $(PMSFILES:%=%_.c)
-
-# temporarly don't include ar.po,br.po,cy.po,ga.po,is.po,ro.po,sl.po
-# (too low translation percentage)
-POFILES = $(shell ls *.po|grep -v '\(ar.po\|ga.po\|is.po\|ro.po\|sl.po\)')
-
-MOFILES = $(POFILES:%.po=%.mo)
-LANGS = $(POFILES:%.po=%)
-
-LOCALEDIR=$(DATADIR)/locale
-
-
-all: help $(MOFILES)
-
-help:
- @if [ ! -d doc ]; then \
- echo "Checking out doc stuff now ..."; \
- cvs co doc/manual/{entities,literal/drakx}; \
- rm -rf doc/CVS; \
- else \
- echo "Updating doc stuff now ..."; \
- cvs update doc/manual/{entities,literal/drakx}; \
- fi
- ./help_xml2pm.pl
-
-%.mo: %.po
- msgfmt -o $@ $<
-
-$(PMSCFILES): %_.c: %
- ./fake_c.pl $< > $@
-
-$(POFILES): DrakX.pot
- perl -ne 'print unless /^# DO NOT BOTHER TO MODIFY HERE, SEE:|^#.*\Qdrakx-help.xml/ .. /^$$/' $@ > $@t
- if [ -e help-$@t ]; then perl -pe 's|^#~ ||' -i $@t ; msgmerge -C $@t help-$@t $< > $@; else msgmerge $@t $< > $@; fi
- rm $@t
-
-DrakX.pot: $(PMSFILES)
- $(MAKE) $(PMSCFILES);
- xgettext -F -n --add-comments='-PO' --keyword=_ --keyword=__ -o $@ $(PMSCFILES)
- rm $(PMSCFILES)
- perl i18n_compssUsers 2>/dev/null >> $@
-
-install:
- for l in $(LANGS); do \
- install -d $(LOCALEDIR)/$$l/LC_MESSAGES; \
- install -m 644 $$l.mo $(LOCALEDIR)/$$l/LC_MESSAGES/$(NAME).mo; \
- done
-
-clean:
- @rm -rf drakx-help.xml .memdump help-*.po{t,} doc empty.po tmp.* messages tmp.pot *.mo $(POFILES:%=%t) $(PMSCFILES)
-
-check:
- @grep -F '$$' DrakX.pot && { echo "bad translation strings (contains \$$) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"; exit 1; } ||:
-
-verif:
- perl -ne '/^\s*#/ or $$i += my @l = /\b__?\(/g; END { print "$$i\n" }' $(PMSFILES)
- perl -ne '$$i += my @l = /\.c:/g; END { print "$$i\n" }' DrakX.pot
-
-verif2:
-# perl -I ../.. -Mcommon -e 'foreach (qw($(PMSFILES))) { printf "package foo%d;\n", ++$$i; print common::cat_($$_) }' | perl -ne 'print if !/use (diagnostics|vars|strict)/' | OUTFILE=tmp.pm perl -I. -I../.. -Mb_dump_strings >/dev/null 2>/dev/null
- perl -pe 's|$$|\\n\\|' tmp.pm > tmp.pm_.c
- xgettext --keyword=_ -o tmp.po tmp.pm_.c
- msgmerge DrakX.pot tmp.po > tmp.pot
- grep "^msgid" tmp.pot | sort > tmp.pot.light
- grep "^msgid" DrakX.pot | sort | diff - tmp.pot.light | grep "^>" || true
-
-
-# for i in *.po; do echo -n "$i "; msgfmt -v $i 2>&1; done | perl -e 'print map { $_->[0] } sort { $a->[1] <=> $b->[1] } map { [ $_, (split)[1] ] } <>'
-
-
-%: %.sh
- # fake built-in
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
deleted file mode 100644
index 60896970c..000000000
--- a/perl-install/share/po/af.po
+++ /dev/null
@@ -1,12923 +0,0 @@
-# KTranslator Generated File
-# Copyright (c) 1999-2000 MandrakeSoft
-# Schalk. W. Cronjé <schalkc@ntaba.co.za>, 2000
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-09-09 22:06-0000\n"
-"Last-Translator: Schalk W. Cronjé <schalkc@uk.ntaba.com>\n"
-"Language-Team: Afrikaans <mandrake@af.org.za>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigureer skyfkoppe afsonderlik"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Gebruik Xinerama-ekstensies"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigureer net die \"%s\" kaart (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Multikopkonfigurasie"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"U stelsel onderstuen multikopkonfigurasie.\n"
-"Wat wil u doen?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Videokaart"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Selekteer 'n videokaart"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Kies 'n X-bediener"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-bediener"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Kies 'n X-bediener"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X-bediener"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Watter tipe XFree-konfigurasie verlang u?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"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:376 ../../Xconfigurator.pm_.c:409
-#, 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:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s met 3D-hardwareversnelling"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
-"bied,\n"
-"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installasievertoondrywer)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree-konfigurasie"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Kies die geheue grootte van u videokaart"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Selekteer opsies vir bediener"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Kies 'n monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Die kritiese twee parameters is die vertikale verfristempo (die tempo\n"
-"waarteen die hele skerm verfris) en die horisontale sinkronisasietempo (die\n"
-"tempo waarteen die horisontale skandeerlyne vertoon word). Lg. is die\n"
-"belangrikste.\n"
-"\n"
-"Dit is BAIE BELANGRIK dat u nie 'n sinkronisasie bereik buite dié van u\n"
-"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
-"kies konservatief."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Horisontale verfristempo"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Vertikale verfristempo"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor is nie opgestel nie"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafikakaart is nog nie konfigureer nie"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resolusie is nog nie gekies nie"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Wil u die konfigurasie toets?"
-
-#
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Toets konfigurasie"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probeer van die parameters verander"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Daar was 'n fout:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "uitgang binne %ds"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Is dit korrek?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Hier is fout, probeer van die parameters verander"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Resolusie"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Kies die resolusie en kleurdiepte"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Videokaart: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 bediener: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Nog"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "OK"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Kundige modus"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Vertoon almal"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolusies"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Sleutelbord uitleg: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Muistipe: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Muistoestel: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitor HoriSink: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitor VertVerfris: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Videokaart: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Videokaart: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Video geheue: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Kleurdiepte: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Resolusie: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 bediener: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86-drywer: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window konfigurasie word opgestel"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Wat wil u doen?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Verander monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Verander videokaart"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Verander bedienerinstellings"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Verander resolusie"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Vertoon inligting"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Toets weer"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Verlaat"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Behou die veranderinge?\n"
-"Huidige konfigurasie is:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X met herlaai"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
-"Wil u X begin met 'n herlaai?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 kleure (8 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32-duisend kleure (15 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65-duisend kleure (16 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16-miljoen kleure (24 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 biljoen kleure (32 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64MB of meer"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standaard VGA, 640x480 teen 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 teen 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-aanpasbaar, 1024x768 teen 87Hz interverweef (nie 800x600 nie)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-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:133
-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:134
-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:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hod frekwensie SVGA, 1024x768 teen 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 60Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 74Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 76Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor wat 1600x1220 kan doen teen 70Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor wat 1600x1220 kan doen teen 76Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Eerste sektor van herlaaipartisie"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Eerste sektor van skyf (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO installasie"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Waar wil u die herlaaistelsel installeer"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/grub installasie"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO met tekskieskaart"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO met grafiese kieskaart"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Laai vauit DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Herlaaistelsel hoofopsies"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Herlaaistelsel om te gebruik"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Herlaaiprogram installasie"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Herlaaitoestel"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Kompak"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "kompak"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Videomodus"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Wagperiode voro verstekstelsel gelaai word"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Wagwoord"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Wagwoord (weer)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Beperk instruksielynopsies"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "beperk"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Maak /tmp skoon met elke herlaai"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Gebruik multiprofiele"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Gee die geheuegrootte in MB"
-
-#: ../../any.pm_.c:191
-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:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Probeer asb. weer"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Die wagwoorde stem nie ooreen nie."
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Beginboodskap"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr ""
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Tydsbeperking vir stelselkernlaai"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Laat CD-herlaai toe?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Laat OF-herlaai toe?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Verstek bedryfstelsel?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Hier is die huidige inskrywings\n"
-"U kan byvoeg or verwyder soos nodig."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Voeg by"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Klaar"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Verander"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Watter tipe inskrywing wil u byvoeg?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Ander bedryfstelsel (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Ander bedryfstelsel (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Ander bedryfstelsel (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Beeld"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Basis"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Aanlas"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Lees-skryf"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabel"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Onveilig"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Etiket"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Verstek"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd-grootte"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "Geen video"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Verwyder inskrywing"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Leë etiket word nie toegelaat nie"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "U moet oor 'n ruilpartisie beskik"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Hierdie etiket is alreeds in gebruik"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Het %s %s koppelvlakke gevind"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Beskik u oor nog?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Het u enige %s koppelvlakke?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Nee"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Ja"
-
-#: ../../any.pm_.c:661
-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:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Drywer vir %s kaart %s in installasieproses"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(module %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Watter %s drywer meot ek probeer?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"In sekere gevalle sal die %s drywer ekstra inligting benodig, alhoewel in\n"
-"meeste gevalle dit nie nodig wees nie. Wil u ekstra opsies voorsien od moet\n"
-"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
-"ophang, maar dit sal nie skade veroorsaak nie."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Aftas"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Spesifieer opsies"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"U kan noue die opsies voorsien vir module %s.\n"
-"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
-"Bv. ``io=0x300 irq-7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Module opsies:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Laai van module %s het gefaal.\n"
-"Wil u ander parameters probeer?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s alreeds bygevoeg)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Die wagwoorde is te eenvoudig"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Gee asb. 'n gebruikerskode"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Hierdie genruikerskode bestaan alreeds"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Voeg gebruiker by"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Tik 'n gebruiker in\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Aanvaar gebruiker"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Regte naam"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Gebruikerskode"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Dop"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikoon"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Outointeken"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
-"Verlang u hierdie funksionaliteit?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Kies die verstek gebruiker:"
-
-#
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Kies die vensterbestuurder om te loop:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Kies asb. 'n taal om te gebruik."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Alles"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Voeg 'n gebruiker by"
-
-#
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Aangepaste"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "CUPS word gelaai"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"Hierdie pakket moet opgradeer word\n"
-"Is u seker u wil dit deselekteer?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Kanselleer"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Krakers welkom"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Swak"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standaard"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Hoog"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Hoog"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoďes"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Hierdie vlak moet met sorg gebruik word. Dit maak 'n stelsel baie maklik\n"
-"om te gebruik, maar is baie sensitief. Dit moet nie gebruik vir 'n rekenaar\n"
-"wat aan ander rekenaars of die internet gekoppel is nie. Daar is geen "
-"wagwoord\n"
-"toegang nie."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
-"aanbeveel nie."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Hierdie is die standaard sekuriteitsvlak wat aanbeveel word vir rekenaars\n"
-"wat aan die internet as 'n kliënt konnekteer. Daar is heelwat "
-"sekuriteitstoetse."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik word.\n"
-"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliënte\n"
-"af kan aanvaar."
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
-"Sekuriteitseienskappe is maksimaal."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Gebruik sekuriteitsvlak"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Sekuriteitsvlak word gestel."
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Selekteer opsies vir bediener"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Welkom by %s die bedryfstelselkeuseprogram!\n"
-"\n"
-"Kies u bedryfstelsel uit die bogelyste opsies of wag\n"
-"%d sekonde vir die verstekopsie.\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
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, 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."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Druk ENTER om die gekose bedryfstelsel te laai, 'e' om te redigeer."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, 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:944
-msgid "not enough room in /boot"
-msgstr "nie genoeg spasie in /boot nie"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Werkskerm"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Beginkieskaart"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Waar wil u die herlaaistelsel installeer"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "Gee hulp beskikbaar nie (nog nie).\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Herlaaistylkonfigurasie"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Lęer"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Lęer/_Verlaat"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<ctrl>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Nuwe monitorkategoriasiestyl"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Nuwe styl monitor"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Tradisionele monitor"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Tradisionele Gtk+ Monitor"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Laai Aurora met herlaaityd"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "LILO/GRUB metode"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot metode"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"U gebruik huidig %s as herlaaibestuurder.\n"
-"Kliek op Konfigureer om opstelassistent te laai."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Konfigureer"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Stelselmode"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Laai X-Windowstelsel met herlaai"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Nee, ek verlang outo-aanteken"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "kan nie /etc/inittab oopmaak vir lees nie: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minute"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minuut"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekondes"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Ek kan nie meer partisies byvoeg nie"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Frankryk"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Belgies"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Duitsland"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Grieks"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Norweegs"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Sien"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Italiaans"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "seriaal"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Rugsteun u data eers asb."
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Lees noukeurig!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Indien u beplan om 'aboot' te gebruik, los spasie aan die begin\n"
-"van die skyf. (2048 sektors is genoeg)."
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Fout"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Assistent"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Kies aksie"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"U het een massiewe FAT partisie. \n"
-"(gewoonlik deur DOS/Windows gebruik)\n"
-"Ek stel voor u verstel eers die grootte van dié partisie\n"
-"(kliek daarop en kliek dan op \"Verstel Grootte\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Kliek asb. op 'n partisie"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detail"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "Gejoernaliseer"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Ruilarea"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Leeg"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Ander"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "LOersteltipes:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Skep"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tipe"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Gebruik ``%s'' instede."
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Uitwis"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Gebruik ``Ontheg'' eerste"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Alle data om hierdie partisie %s sal uitgewis word na verandering van die "
-"partisietipe"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Kies 'n partisie"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Kies 'n ander partisie"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Verlaat"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Skakel oor na kundige gebruiksvlak"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Skakel oor na normale gebruiksvlak"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Herroep"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Wil u in elk geval voortgaan?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Verlaat, maar moenie iets stoor nie"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Wil u die /etc/fstab veranderinge stoor?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Outo-allokeer"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Verwydeer almal"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Hardeskyfinligting"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Alle primęre partisies is gebruik"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Ek kan nie meer partisies byvoeg nie"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
-"skep"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Skryf partisietabel"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Reddingspartisietabel"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Reddingspartisietabel"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Reddingspartisietabel"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Verwyderbare media"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Selekteer lOer"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
-"Wil u voortgaan?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Waarskuwing"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Sit 'n floppie in die aandrywer.\n"
-"Alle data op hierdie floppie sal verloor word."
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Partisietabel Reddingspoging"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Gedetaileerde inligting"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Hegpunt"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Opsies"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Verstel Grootte"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Skuif"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatteer"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Heg"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Voeg by RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Voeg by LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Ontheg"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Verwyder uit RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Verwyder uit LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Verander RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Gebruik vir teruglus"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Kies 'n nuwe grootte"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Kies sektor: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Grootte in MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "LOerstelseltipe: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Hegpunt:"
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Voorkeure: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Terugluslęer %s word geformateer"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Verander partisietipe"
-
-#
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Watter lęerstelsel verlang u?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Oorskakeling van ext2 na ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Waar wil u terugluslęer %s heg?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Waar wil u toestel %s heg?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
-"gebruik word. Verwyder eers die teruglus."
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "FAT lęerstelselgrense word bereken"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Grootteverandering"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Hierdie partisie se greootte kan nie verstel word nie"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Alle data om hierdie partisie moet gerugsteun word."
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Alle data om partisie %s sal uitgewis word met die grootteverandering"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Kies die nuwe grootte"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Nuwe grootte in MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Na watter skyf wil u skuif?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Na watter sektor wil u skuif?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Verskuiwing"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Partisie word verskuif..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Kies 'n bestaande RAID om by toe te voeg"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "nuut"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Kies 'n bestaande LVM om by toe te voeg"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "LVM naam?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Teruglus"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Teruglus lęernaam:"
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Regte naam"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Lęer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Lęer bestaan alreeds. Moet dit gebruik word?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Hegopsies:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Verskeie"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "toestel"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "vlak"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "blokgrootte"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Watter tipe van partisionering?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Jammer, ek kan nie die versoek om /boot om hierdie skyf (op 'n silinder > "
-"1024) te skep,\n"
-"aanvaar nie. As u LILO gebruik sal dit nie werk nie en as u nie LILO "
-"gebruik\n"
-"nie, dan het u nie /boot nodig nie."
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"_ keuse vir die \"root\" partisie (/) is fisies buite die 1024de silindervan "
-"die\n"
-"hardeskyf en u het nie 'n /boot partisie nie. Indien u beplan om LILO te "
-"gebruik,moet u\n"
-"asb. 'n /boot partisie skep,"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"U het 'n sagteware RAID-partisie as wortel (/).\n"
-"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
-"Onthou om 'n /boot by te voeg."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Partisietabel van skyf %s gaan opdateer word!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Alle data om partisie %s sal uitgewis word met formatering."
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formatering"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Terugluslęer %s word geformateer"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Partisie %s word formateer"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid het gefaal"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "LPD word verwyder..."
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Toestel:"
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tipe:"
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Naam: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Begin: sektor %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Grootte: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektore"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Silinder %d na silinder %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Geformateer\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Nie geformatter\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Geheg\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Teruglus lęer(s): %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Verstekpartisie vir herlaai\n"
-" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Vlak %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Blokgrootte %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-skywe %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Teruglus lęernaam: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Dis hoogs waarskynlik dat hierdie partisie\n"
-"drywerpartisie is en verkieslik alleen gelos\n"
-"moet word.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Hierdie spesiale herlaaipartisie\n"
-"is om u stelsel te duolaai.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Grootte: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info:"
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-skywe %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Partisietabeltipe: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "op bus %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Opsies: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "LOerstelseltipe: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Die wagwoorde stem nie ooreen nie."
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Verander tipe"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Kliek asb. op 'n partisie"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "DNS bediener"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatering ban %s het gefaal"
-
-#: ../../fs.pm_.c:548
-#, 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:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck het gefaal met kode %d of sein %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "fout met onthegting van %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "eenvoudig"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "bediener"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Hegpunte moet met 'n / begin"
-
-#: ../../fsedit.pm_.c:478
-#, 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:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Hierdie lęergids moet altyd in die wortellęerstelsel bly"
-
-#: ../../fsedit.pm_.c:486
-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:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Four om %s in skryfmode te open: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"'n Fout het voorgekom - geen geldige toestelle om die nuwe lęerstelsels op "
-"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "U get geen partisies nie!"
-
-#: ../../help.pm_.c:13
-#, fuzzy
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux is 'n multigebruikerstelsel en dit beteken dat elke gebruiker sy "
-"eie\n"
-"voorkeure kan stel, met sy eie lęers ens. U kan meer hieroor in die "
-"gebruikersgids\n"
-"lees. Maak andersins as 'root', die supergebruiker, kan gebruikers wat u "
-"hier byvoeg\n"
-"niks verander behalwe hul eie lęers en konfigurasie nie. U moet ten minste "
-"een gewone\n"
-"gebruiker vir u self skep. Hierdie gebruker is die een waaronder u moet "
-"inteken vir\n"
-"normale gebruik van die stelsel. Alhoewel dit baie gemaklik is om as 'root' "
-"in te teken vir\n"
-"daaglikse werk, is dit baie gevaarlik. 'n Eenvoudige fout kan u stelsel "
-"immobiliseer. 'n Fout\n"
-"wat as gewone gebruiker gemaak word sal net daardie gebruiker beďnvloed\n"
-"en nie hele stelsel nie.\n"
-"\n"
-"\n"
-"Eers moet u u eie naam intik. Dit is nie verpligtend nie, want u kan eintlik "
-"enigiets intik as\n"
-"u wil. DrakX sal dan die eerste woord wat u ingetik het in die "
-"gebruikerskode inskrywingsveld\n"
-"plaas. U kan hier verander indien u wil. Dit is die gebruikerskode waarmee "
-"die gebruiker in die\n"
-"stelsel sal inteken. U moet dan ook 'n wagwoord hier invoeg. 'n Gewone "
-"gebruiker se wagwoord\n"
-"is nie so krities as dié van die supergebruiker (uit 'n sekuriteitsoogpunt) "
-"nie, maar daar is geen\n"
-"rede om agterlosig met u data te wees nie.\n"
-"\n"
-"\n"
-"Indien u op Aanvaar kliek sal die gebruiker geskep word en kan u nog "
-"gebruikers byvoeg.\n"
-"U kan vir al u vriende gebruikerskodes skep of sommer een vir pa en ma ook. "
-"Wanneer u\n"
-"klaar is kliek op Klaar.\n"
-"\n"
-"Kliek op die Gevorderd knoppie indien u die verstek instruksiedop vir die "
-"gebruiker wil verander.\n"
-"Dit is bash by verstek."
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-#, fuzzy
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"U kan nou dienste kies wat by herlaaityd moet afskop.\n"
-"Wanneer u die muis oor 'n item beweeg, sal 'n klein ballon opspring\n"
-"wat die rol van die diens verduidelik.\n"
-"\n"
-"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:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-#, fuzzy
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Voordat u voortgaan, lees asb die lisensieterme noukeurig deur. Dit dek\n"
-"die hele Mandrake Lnux distirbusie, and indien u nie saamstem met al die\n"
-"terme daarin bevat nie, kliek om die Weier knoppie. Dit sal onmiddelik die\n"
-"installasie stop sit. Om met die installasie voort te gaan kliek op die "
-"Aanvaar\n"
-"knoppie."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr ""
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr "Kies asb. "
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
-"ttyS0 onder GNU/Linux is."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (Die LInux LOader) en Grub is herlaaistelsels. Beide kan GNU/Linux of "
-"enige ander\n"
-"bedryfstelsel wat op u rekenar teenwoordig is, laai. Gewoonlik word hierdie\n"
-"beryfstelsels reg bespeur en bygevoeg. Indien nie, kan u 'n inskrywing maak\n"
-"op hierdie skerm. Maak seker u kies die korrekte paramters.\n"
-"\n"
-"\n"
-"U mag dalk toegang tot ander bedryfstelsels beperk, in welke geval u die "
-"nodige\n"
-"inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om die\n"
-"betrokke bedryfstelsels te laai."
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"U moet aandui waar u die informasie om Linux te herlaai, wil plaas.\n"
-"\n"
-"\n"
-"Behalwe as u werklik weet wat u doen moet u \"Eerste sektor van skyf (MBR)\" "
-"kies."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX sal probeer om vir PCI SCSI-kaarte te soek.\n"
-"Indien DrakX 'n SCSI-kaart bespeur en weet watter drywer omte gebruik sal "
-"dit outomaties installeer word.\n"
-"\n"
-"Indien u nie oor 'n SCSI-kaart, beskik nie of oor 'n ISA SCSI-kaart of 'n "
-"PCI SCSI-kaart beskik wat DrakX nie kan herken nie, sal u gevra word of daar "
-"enige SCSI-kaarte in diestelsel is. Indien daar geen is nie kliek op 'Nee', "
-"andersins op 'Ja'. U sal dan uit'n drywerlys kan kies.\n"
-"\n"
-"\n"
-"Indien u self 'n drywer moes spesifiseer, sal DrakX u ook vra vir enige "
-"spesifiekeopsies.\n"
-"U kan egter DrakX toelaat om self die hardeware te ondervra. DIt werk "
-"gewoonlik die beste.\n"
-"\n"
-"Lees die installasie inligting hoe om hierdie tipe inligting m.b.v. die "
-"Windows-bedryfstelsel te bekom.\n"
-"U kan dit ook vanaf die internet onttrek indien u sulke toegang het."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Hierdie floppie is nie in FAT-formaat nie"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
-"\"linux defcfg=floppy\""
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Fout met die les van lęer %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Sekere hardeware op u rekenaar benodig geslote drywers.\n"
-" U kan inligting hieroorvind by %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"U moet 'n wortelpartisie definieer.\n"
-"Skep 'n partisie of kliek op 'n bestaande een.\n"
-"Kies dan Hegpunt en stel dit dan '/'."
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "U moet oor 'n ruilpartisie beskik"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"U het nie 'n ruilpartisie nie\n"
-"\n"
-"Wil u steeds voortgaan?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "U moet oor 'n FAT partisie wat as /boot/efi geheg is, beskik"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Gebruik beskikbare spasie"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Gebruik bestaande partisies"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Daar is geen bestaande partisies om te gebruik nie"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Gebruik vir die Windows-partisie vir teruglus"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Watter partisie wil u vir Linux4Win gebruik?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Kies die groottes"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Basispartisiegrootte in MB:"
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Ruilpartisiegrootte in MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Gebruik die beskikbare spasie op die Windowspartisie"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Watter partisie se grootte wil u verander?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Windowslęerstelselgrense word bereken"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Die FAT-verstellingsprogram kan nie u partisie hanteer nie.\n"
-"Fout: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr "U Windows-partisie is te gefragmenteer. Loop eers 'defrag' asb."
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"WAARSKUWING\n"
-"\n"
-"DrakX moet nou u WIndowspartisie se grootte verander. Hierdie operasie\n"
-"IS GEVAARLIK. Indien u nie alreeds so gemaak het nie, moet u hierdie "
-"installasie\n"
-"verlaat, scandisk onder Windows loop en dalk ook defrag. Dan kan u terugkeer "
-"na\n"
-"hierdie installasie. Rugstuen ook u data. Insien u skeer is van u saak, kies "
-"OK."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Watter grootte wil u vir Windows behou?"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "partisie %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT-grootteverandering het gefaal: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Daar is geen FAT partisies om te verander of om as teruglus (nie genoeg "
-"spasie nie) te gebruik nie"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Wis hele skyf"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Verwyder Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Gespesialiseerde skyfpartisionering"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Gebruik fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"U het nou partisie %s partisioneer.\n"
-"Wanneer u klaar is, stoor u veranderinge met 'w'."
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Die Windowspartisie beskik nie oor die nodige spasie nie."
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Ek kon geen plek vir installasie vind nie."
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partisionering het misluk: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Netwerk op pad op"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Netwerk op pad af"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-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:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duplikaat hegpunt %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Sekere belangrike pakkette het nie korrek geďnstalleer nie.\n"
-"Óf die CDROM-aandrywer óf die CD is foutief.\n"
-"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl Mandrake/RPMS/*."
-"rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Welkom by %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Geen sagteskyaandrywer beskikbaar nie"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Gaan stap '%s' binne\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"U stelsel het min hulpbronne beskikbaar. U mag dalk probleme ondervind met "
-"die installering\n"
-"van Mandrake Linux. In so 'n geval probeer eerder die teksinstallasie. "
-"Daarvoor moet u\n"
-"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die "
-"instruksielyn intik."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Installasieklas"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Kies asb. een van die volgende installasieklasse:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, 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:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Indien u verkies om minder as hierdie grootte te installeer, kies dan 'n\n"
-"persentasie van pakkette wat u wil installeer.\n"
-"\n"
-"'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
-"'n persentasie van 100%% sal alles gekose pakkette installeer."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"U het net spasie op u hardeskyf vir %d%% van hierdie pakkette.\n"
-"\n"
-"Indien u minder wil installeer, kies die persentasie wat u verlang.\n"
-"'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
-"'n Persentasie van %d%% sal soveel moontlik probeer installeer."
-
-#: ../../install_steps_gtk.pm_.c:241
-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:243
-msgid "Percentage of packages to install"
-msgstr "Persentasie pakkette om te installeer"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Kies pakketgroepe"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Individuele pakketseleksie"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Totale grootte: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Foutiewe pakket"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Naam: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Weergawe: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Groote: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Belangrikheid: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"U kan nie hierdie pakket selekteer nie, omdat daar nie meer spasie "
-"beskikbaar is nie"
-
-#
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Die volgende pakkette gaan installeer word"
-
-#
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Dei volgende pakkette gaan verwyder word"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-
-#: ../../install_steps_gtk.pm_.c:447
-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:449
-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:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Hierdie pakket moet opgradeer word\n"
-"Is u seker u wil dit deselekteer?"
-
-#: ../../install_steps_gtk.pm_.c:457
-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:462
-msgid "Show automatically selected packages"
-msgstr "Wys outogeselekteerde pakkette."
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Installasie"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Laai/Stoor op floppie"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Pakketseleksie word opgedateer"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Minimale installasie"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Kies die pakkette wat u wil installeer"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Besig met installasie"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Skatting"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Tyd oor "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Wag asb. installasie word voorberei"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pakkette"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Installeer pakket %s"
-
-#
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Aanvaar "
-
-#
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Weier"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Verander u CDROM!\n"
-"\n"
-"Sit asb. die CDROM getiteld \"%s\" in die aandrywer en druk OK. Indien u "
-"nie\n"
-"hieroor beskik nie, druk Kanselleer om installasies vanaf dié CDROM te vermy."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Gaan steeds voort?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Daar was 'n fout met pakkette:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Daar was 'n fout met die installasie van die pakkette:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "'n Fout het voorgekom"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Wil u die werklik die drukker verwyder?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Lisensieooreenkoms"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Sleutelbord"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Wat is u sleutelborduitleg?"
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Hierdie is die volledige lys van beskikbare sleutelborde"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Watter installasieklas verlang u?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Installeer/Opgradeer"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Is hierdie 'n installasie of opgradering?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Aanbevole"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Kundige"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Opgradeer"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Pakketseleksie word opgedateer"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Wat is u muistoestel?"
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Muispoort"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-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:281
-msgid "Buttons emulation"
-msgstr "Knoppie-emulasie"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Knop-2 Emulasie"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Knop-3 emulasie"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Stel PCMCIA op..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "IDE word opgestel"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "geen beskikbare partisies"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Hegpunte vir partisies word nou gesoek"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Kies die hegpunte"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
-"Ek sal die nodige partisies skoonmaak, maar alle data sal vernietig word.\n"
-"Die ander opsie is om DrakX te belet om die partisietabel te verander.\n"
-"(fout is %s)\n"
-"\n"
-"Will u al die partisies verwyder?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DrakX kon nie die partisietabel korrek interpreteer nie.\n"
-"Gaan aan op u eie risiko!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Geen beskikbare 1MB herlaaipartisie nie! Installasie sal voortgaan, maar u "
-"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
-"herlaai."
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Geen wortellęerstelsel gevind nie"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Basispartisie"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Wat is die basispartisie (/) van u stelsel?"
-
-#: ../../install_steps_interactive.pm_.c:411
-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:435
-msgid "Choose the partitions you want to format"
-msgstr "Kies die partisies om te formatteer"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Toets vir foutiewe areas?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Partisies word formateer"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Lęer %s word geskep en formatteer"
-
-#: ../../install_steps_interactive.pm_.c:467
-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:473
-msgid "Looking for available packages"
-msgstr "Soek vir beskikbare pakkette"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Soek vir pakkette om op te gradeer."
-
-#: ../../install_steps_interactive.pm_.c:496
-#, 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:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Klaar (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Aanbevole (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
-"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Laai vanaf floppie"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Oplaai vanaf floppie"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Pakketkeuse"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Stoor op floppie"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-
-#: ../../install_steps_interactive.pm_.c:671
-#, fuzzy
-msgid "Type of install"
-msgstr "Kies pakket om te installeer"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-#, fuzzy
-msgid "With X"
-msgstr "Wag"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Indien u oor al die gelyste CD's beskik, kliek OK.\n"
-"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:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CDROM getiteld \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Berei installasie voor"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Installeer nou pakket %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Postinstallasiekonfigurasie"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Sit asb. die module-opdateringsfloppie in aandrywer %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"U het nou die kans om enkripsieprogrammatuur af te laai.\n"
-"\n"
-"WAARSKUWING:\n"
-"\n"
-"A.g.v. die verskillende algemene vereistes wat van toepassing gemaak word "
-"deur\n"
-"wetgewing, moet die eindgebruiker van hierdie sagteware seker wees dat die\n"
-"wette in sy/haar land dit wel toelaat dat om hierdie agteware af te laai, "
-"aan te hou\n"
-"en te gebruik.\n"
-"Daarbenewens moet die gebruiker seker maak dat plaaslike wetgewing nie "
-"oortree\n"
-"word nie. Misbruik kan lei tot ernstige sanksies.\n"
-"\n"
-"In geen geval kan MandrakeSoft nog sy vervaardigers en verskaffers "
-"verantwoordelik\n"
-"gehou word vir spesiale, indirekte or toevallige skade berokken (insluitend, "
-"maar nie\n"
-"beperk tot, winsverlies, besigheidsonderbreking, dataverlies en enige "
-"voorspruitende laste\n"
-"soos moontlik bepaal deur die wetgewende hof) wat vooruitspruit uit die "
-"gebruik, besit\n"
-"of aflaai van hierdie programmatuur nie, na tekening wat hierdie ooreenkoms "
-"nie.\n"
-"\n"
-"\n"
-"Vir navrae vewant aan hierdie ooreenkoms, kontak asb.\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Spieël word gekontak vir die lys van pakkette"
-
-#: ../../install_steps_interactive.pm_.c:931
-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:940
-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:967
-msgid "Which is your timezone?"
-msgstr "Wat is u tydsone?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Hardewareklok gestel vir GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Outotydsinkronisasie met NTP"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP-bediener"
-
-#
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Verwyder CUPS-bediener"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Geen drukker"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Beskik u oor nog?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Opsomming"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Muis"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Tydsone"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Drukker"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDN-kaart"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Klankkaart"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV-kaaer"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "KDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Plaaslike lęers"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Kies 'root' se wagwoord"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Geen wagwoord"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, 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:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Magtiging"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "LDAP-magtiging"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP Basis-dn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAP-bediener"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "NIS-magtiging"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS-domein"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS-bediener"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"'n Spesiale herlaaiskyf voorsien ;n metode waarby u Linux kan laai sonder\n"
-"die gebruik van 'n normale herlaaistelsel. Dit is veral bruikbaar wanneer\n"
-"u nie SILO op u stelsel wil installeer nie, 'n ander bedryfstelsel SILO\n"
-"verwyder of SILO nie met u stelsel werk nie. Hierdie herlaaiskyf kan ook\n"
-"met die Mandrake reddingsbeeld gebruik word, wat dit makliker maak om van\n"
-"ernstige stelselfalings te herstel.\n"
-"\n"
-"Indien u 'n herlaaiskyf wil maak,\n"
-"plaas 'n skyf in die aandrywer en druk \"OK\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Eerste sagteskyfaandrywer"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Tweede sagteskyfaandrywer"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Mis hierdie stap"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"'n Spesiale herlaaiskyf voorsien ;n metode waarby u Linux kan laai sonder\n"
-"die gebruik van 'n normale herlaaistelsel. Dit is veral bruikbaar wanneer\n"
-"u nie LILO (of Grub) op u stelsel wil installeer nie, 'n ander bedryfstelsel "
-"LILO\n"
-"verwyder of LILO nie met u stelsel werk nie. Hierdie herlaaiskyf kan ook\n"
-"met die Mandrake reddingsbeeld gebruik word, wat dit makliker maak om van\n"
-"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-
-#: ../../install_steps_interactive.pm_.c:1212
-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:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Sit 'n skyf in aandrywer %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Herlaaiskyf word geskryf"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Herlaaistelsel word voorberei"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Wil u aboot gebruik?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
-"word die eerste partisie vernietig?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Herlaaistelselinstallasie"
-
-#: ../../install_steps_interactive.pm_.c:1259
-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:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Sit 'n leë floppie in aandrywer %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Outoinstallasieskyf word geskep."
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Bepaalde stappe is nie afgehandel nie.\n"
-"\n"
-"Wil u werklik nou aborteer?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Geluk, installasie is afgehandel.\n"
-"Verwyder die herlaaimedium en druk 'enter' om te herlaai.\n"
-"\n"
-"\n"
-"Vir lapinligting oor hierdie vrystelling vanMandrake Linux,\n"
-"bekyk die errata beskikbaar op\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
-"hoofstuk in die Offisiële Liux-Mandrake Gebruikersgids."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Skep outoinstallasieskyf"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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:1361
-msgid "Automated"
-msgstr "Outomaties"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Herspeel"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Stoor pakketseleksie"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux Installasie %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> tussen elemente | <Space> selekteer | <F12> volgende skerm "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu is weg"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Kies 'n lęer"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Gevorderd"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Wag asb."
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Maak boom oop"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Maak boom toe"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Skakel tussen plat- en groepsortering"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Swak keuse, probeer weer\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "U keuse? (verstek %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "U keuse? (verstek %s) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Opsies: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "Wil u aboot gebruik?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "U keuse? (verstek %s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Tseggies (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Duits"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Spaans"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Finnies"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Frans"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norweegs"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Pools"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Russies"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Sweeds"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "VK sleutelbord"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "VSA sleutelbord"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Albanies"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armenies (oud)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armenies (tikmasjien)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armenies (Foneties)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjani (latyns)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgies"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Armenies (Foneties)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Bulgaars"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasiliaans (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Belarussies"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Switsers (Duitse uitleg)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Switsers (Franse uitleg)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Tseggies (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Duits (geen dooie sleutels)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Deens"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (VSA)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norweegs)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (VSA)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estoniaans"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgies (Russiese uitleg)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgies (Latynse uitleg)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Grieks"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Hongaars"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Kroaties"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Israelies"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Israelies (Foneties)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iranies"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Yslandies"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italiaans"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japanees 106 sleutels"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Koreaanse sleutelbord"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latyns-Amerikaans"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituanies AZERTY (oud)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituanies AZERTY (nuut)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituanies \"nommerry\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituanies \"foneties\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "Latvies"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Masedonies"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Nederlands"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Pools (QWERTY uitleg)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Pools (QWERTZ uitleg)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugees"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Kanadees (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Romanies (QWERTZ)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Romanies (QWERTY)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Russue (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Sloveens"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovaaks (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovaaks (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Serwies (Kirillies)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Tabel"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Thai sleutelbord"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Tajik sleutelbord"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turks (tradisionele \"F\" model)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turks (moderne \"Q\" modem)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukranies"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "VSA internasionale sleutelbord"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Viëtnamees \"nommerry\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslaavs (latynse uitleg)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Sirkulęre heg %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Verwyder eers die logiese volumes\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Muis"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Generiese PS2 wielmuis"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 knop"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Generiese 2-knop muis"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generies"
-
-#
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Wiel"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "seriaal"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Generiese 3-knop muis"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Reeks (seriaal)"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Muis (seriaal, ou C7 tipe)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmuis"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 knoppies"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 knoppies"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "niks"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Geen muis"
-
-#
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Toets asb. die muis"
-
-#
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Om die muis te aktiveer"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "BEWEEG DIE WIEL!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Finnies"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Volgende ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Vorige"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Is dit korrek?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Konnekteer aan die internet"
-
-#: ../../network/adsl.pm_.c:20
-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 pppoe te gebruik.\n"
-"Daar is wel sekere konneksie wat pptp of DHCP gebruik.\n"
-"Indien u nie weet nie, kies 'gebruik pppoe'."
-
-#: ../../network/adsl.pm_.c:22
-#, fuzzy
-msgid "Alcatel speedtouch usb"
-msgstr "speedtouch USB"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "gebruik dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "gebruik pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "gebruik pptp"
-
-#: ../../network/ethernet.pm_.c:37
-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"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Geen ethernetkaart is op die stelsel gevind nie.\n"
-"Ek kan nie hierdie konneksietipe opstel nie."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Kies die netwerkkoppelvlak"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet."
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "geen netwerkkaart gevind nie"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Stel netwerk op"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Tik asb die rekenaarnaam in.\n"
-"Sekere DHCP-bedieners benodig die rekenaarnaam.\n"
-"Dit moet 'n volle gekwalifiseerde naam wees,\n"
-"bv. ``myne.mywerk.co.za''."
-
-#
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Rekenaarnaam"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Netwerkkonfigurasie-assistent"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Eksterne ISDN-kaart"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Interne ISDN-kaart"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Watter tipe is u ISDN-konneksie?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Nuwe konfigurasie (Ligte ISDN/isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Ou konfigurasie (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN Konfigurasie"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Kies u internetdiensvoorsiener.\n"
-"Indien nie in die lys nie kies Ongelys"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Europese protokol"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Europese protokol (EDSS1)"
-
-#
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protokol vir die res van die węreld"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protokol vir die res vd węreld \n"
-" geen D-Kanaal nie (bruikhuurlyne)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Watter protokol verlang u?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Oor watter tipe kaart beskik u?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Ek weet nie"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Indien u 'n ISA-kaart het, behoort die waardes op die volgende skerm reg te "
-"wees.\n"
-"\n"
-"Indien u 'n PCMCIA kaart het, moet u die IRQ en I/O van u kaart weet.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Aborteer"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Gaan voort"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Wat is u ISDN-kaart?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies asb.'n "
-"PCI-kaart op die volgende skerm."
-
-#: ../../network/isdn.pm_.c:244
-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."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Op watter seriaalpoort is u modem gekoppel?"
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Opbelopsies"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Konneksienaam"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Telefoonnommer"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Aantekenkode"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Skriptipe"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Terminaaltipe"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Domeinnaam"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Eerste DNS-bediener (opsioneel)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Tweede DNS-bediener (opsioneel)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"U kan diskonnekteer or herkonfigureer."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"U kan u konneksie herkonfigureer."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "U is tans aan die internet gekonnekteer."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"U kan aan die internet konnekter of u konneksie herkonfigureer."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "U is nie tans aan die internet gekonnekteer nie."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Konnekteer"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Diskonnekteer"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Stel netwerk op"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Internetkonneksie en konfigurasie"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Ons gaan nou die %s konneksie herkonfigureer."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Ons gan nou die %s konneksie konfigureer.\n"
-"\n"
-"\n"
-"Drk OK om voort te gaan."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Netwerkkonfigurasie"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Omdat u netwerk installasie doen, is u netwerk aslreeds opgestel.\n"
-"Kliek op OK om hierdee konfigurasie te behou, of op Kanselleer om u Internet "
-"& Netwerkkonneksie te herkonfigureer.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Welkom by die Netwerkkonfigurasie-assistent\n"
-"\n"
-"Ons gaan nou u internet/netwerkkonneksie konfigureer.\n"
-"Iniden u nie outobespeuring verlang nie, deselekteer die opsie.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Kies die profiel om te konfigureer"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Gebruik outobespeuring"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Toestel word afgetas..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Normale modemkonneksie"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "Op poort %s bespeur"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN konneksie"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "%s bespeur"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ADSL konneksie"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "op koppelvlak %s bespeur"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Kabelkonneksie"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "Kabelkonneksie bespeur"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "LAN konneksie"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "ethernet kaart(e) bespeur"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Kies die konneksie wat u wil konfigureer"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"U het meer as een internetkonneksiemetode opgste.\n"
-"Kies die een wat u verlang.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Internetkonneksie"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Netwerkkonfigurasie"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Daar was 'n probleem met die herlaai van die netwerk.\n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Geluk, die netwerk en internetkonfigurasie is voltooi.\n"
-"\n"
-"Die kongiurasie gaan op u stelsel toegepas word.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Nadat dit klaar is, sal dit beter wes om u X-omgewing te herlaai\n"
-"om die rekenaarnaamveranderingprobleem te voorkom."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\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 "
-"konnekteer.\n"
-"U kan die toestel net so aanvaar.\n"
-"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Gee asb die IP-konfigurasie vir hierdie rekenaar.\n"
-"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
-"(1.2.3.4) gegee word."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigureer netwerktoestel %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr "(drywer %s)"
-
-#
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP adres"
-
-#
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Netmasker"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Outomatiese IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Tik asb die rekenaarnaam in.\n"
-"Dit moet 'n volle gekwalifiseerde naam wees,\n"
-"bv. ``myne.mywerk.co.za''.\n"
-"U mag ook die netwerkhek byvoeg indien daar een is"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS bediener"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Netwerkportaaltoestel"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Instaanbedienerkonfigurasie"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP instaanbediener"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP instaanbediener"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Instaanbediener moet begin met http://"
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Instaanbediener moet begin met ftp://"
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Internetkonfigurasie"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Wil u nou aan die internet konnekteer?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Konneksie word getoets..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Die stelsel is nou aan die internet gekonnekteer."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Vir sekuriteitsredes, word u nou gediskonnekteer."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Die tselsel blyk nie aan die internet gekonnekteer te wees nie.\n"
-"Probeer om u stelsel te herkonfigureer."
-
-#
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Konneksiekonfigurasie"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Vul asb. die velde hieronder in"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "Kaart IRQ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Kaartgeheue (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "Kaart I/O"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "Kaart IO_0"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "Kaart IO_1"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "U persoonlike telefoonnommer"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Voorsienernaam (bv voorsiener.co.za)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Voorsiener se telefoonnommer"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Voorsiener DNS 1 (opsioneel)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Voorsiener DNS 2 (opsioneel)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Kies u land"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Belmetode"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Konneksiespoed"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Konneksie tydlimiet (in sekondes)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Gebruikerskode"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Wagwoord"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "heg het gefaal"
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Ekstensiepartisie word nie op hierdie platform ondersteun nie"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"U het 'n gat die partisietabel maar ek kan dit nie gebruik nie.\n"
-"Die enigste oplossing is om die primęre partisie te skuif sodat die gat\n"
-"langs die ekstensie partisies is"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Herstel van léer %s het gefaal: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Korrupte rugsteunlęer"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Fout in die skryf van %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Iets vrots gebeur op u hardeskyf.\n"
-"'n Dataintegriteitstoets het misluk.\n"
-"Dit beteken dat enigiets wat na u hardeskyf geskryf word as gemors sal "
-"eindig."
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "benodig"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "belangrik"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "baie oulik"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "oulik"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "moontlik"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Generiese Unixdrukstelsel (Common Unix Printing System) "
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - Nuwe generasie LPR"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Lyndrukkerdiensprogram"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Druk sonder drukkertou"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Plaaslike drukker"
-
-#
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Eksterne drukker"
-
-#
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Eksterne CUPS-drukker"
-
-#
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Eksterne LPD-drukker"
-
-#
-#: ../../printer.pm_.c:51
-#, fuzzy
-msgid "Network printer (TCP/Socket)"
-msgstr "Netwerkdrukker (sok)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Eksterne Netware-drukker"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Tik drukkertoestel URI in"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Pyk drukstuk na program"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Onbekende model"
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Plaaslike drukker"
-
-#
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Eksterne drukker"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Fout in die skryf van %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(op %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(op hierdie rekenaar)"
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "CUPS-bediener IP:"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Verstek)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Kies drukkerkonneksie"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Hoe is die drukker gekonekteer?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Met 'n eksterne CUPS-bediener, hoef u glad nie 'n drukker hier\n"
-"op te stel nie; drukkers wod outomaties bespeur.\n"
-"Indien u twyfel, kies \"Eksterne CUPS-drukker\"."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Konfigurasie"
-
-#
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Verwyder CUPS-bediener"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP-adres moet iets soos 192.168.1.20. lyk"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Die poortnommer moet heeltal wees."
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "CUPS-bediener IP:"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Poort"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Outomatiese CUPS konfigurasie"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Toestel word afgetas..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Toets poorte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Voeg drukker by"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Plaaslike drukker"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Eksterne drukker"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Gebruik outobespeuring"
-
-#
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Eksterne drukkernaam"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "%s bespeur"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Tik drukkertoestel URI in"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Plaaslike drukker"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Op watter seriaalpoort is u modem gekoppel?"
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Tik drukkertoestel URI in"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Kleurkonfigurasie"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Installeer pakket %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Installeer pakket %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "Drukkerdata word gelees..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-#, fuzzy
-msgid "Reading printer database ..."
-msgstr "Drukkerdata word gelees..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Eksterne lpd drukkeropsies"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Om 'n eksterne lpd drukkertou te gebruik,moett die naam\n"
-"van die drukkkerbediener en die naam van die drukkertou\n"
-"voorsien word."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Eksterne bedienernaam"
-
-#
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Eksterne drukkernaam"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Eksterne bedienernaam ontbreek!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Eksterne drukkernam ontbreek!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) drukkeropsies"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Om na 'n SMB drukker te druk moet u die volgende voorsien:\n"
-"SMB rekenaarnaam (dis nie noodwendig dieselfde as die TCP/IP rekenaarnaam\n"
-"nie); moontlik die IP adres van die drukkerbediener; die drukkernaam; \n"
-"toepaslike gebruikerskode en wagwoord; werkgroepnaam."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "SMB-bedienernaam"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "SMB-bediener IP:"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Drukkernaam:"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Werkgroep:"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Óf die bedienernaam óf die bediener-IP moet verskaf word!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "SAMBA-deelnaam ontbreek!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "NetWare drukkeropsies"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Om na 'n Netware drukker te druk moet u die volgende voorsien:\n"
-"Netware rekenaarnaam (dis nie noodwendig dieselfde as die TCP/IP\n"
-"rekenaarnaam nie); moontlik die IP adres van die drukkerbediener;\n"
-"die drukkernaam; toepaslike gebruikerskode en wagwoord."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Drukkerbediener"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Drukkertounaam"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "NCP-bedienernaam ontbreek!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "NCP-tounaam ontbreek!"
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Sokdrukkeropsies"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Om aan 'n sokdrukker te konnekteer, moet u die rekenaarnaam van die\n"
-"drukker voorsien en dalk ook 'n poortnommer voorsien.\n"
-"Met HP JetDirect-bedieners is die poortnommer gewoonlik 9100,\n"
-"maar dit mag anders wees met ander bedieners. Raadpleeg die handleiding\n"
-"wat saam met die hardeware gekom het."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Drukkerbedienernaam"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Drukkerbedienernaam ontbreek!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Drukkertoestel URI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"U kan die URI om die drukker te bereik direk spesifiseer. Die URI moet in "
-"CUPS- of Foomatic-formaat wees. Nie alle UTI-tipes moet deur al die "
-"spoelprogramme ondersteun nie."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "'n Geldige URI moet verskaf word!"
-
-#: ../../printerdrake.pm_.c:1004
-#, fuzzy
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Elke drukker benodig naam (bv. lp).\n"
-"Die Beskrywing- en Liggingvelde is opsioneel.\n"
-"Hulle dien as inligting vir gebruikers."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Drukkernaam"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beskrywing"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Ligging"
-
-#: ../../printerdrake.pm_.c:1021
-#, fuzzy
-msgid "Preparing printer database ..."
-msgstr "Drukkerdata word gelees..."
-
-#
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Eksterne drukkernaam"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Is dit korrek?"
-
-#
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Eksterne drukkernaam"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Drukkermodelkeuse"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Oor watter tipe drukker beskik u?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Verander drukkerkonfigurasie"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Internetkonfigurasie"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Opsie %s moet 'n heeltal wees!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Opsie %s moet 'n nommer wees"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Opsie %s is buite bereik!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Wil u hierdie drukker (\"%s\")\n"
-"die verstek drukker maak?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Toetsbladsye"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Geen toetsbladsye"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Druk"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Standaard toetsbladsy"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Alternatiewe toetsbladsy (Lettergrootte)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Alternatiewe toetsbladsy (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Fototoetsbladsy"
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Druk toetsbladsy(e)"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Toetsbladsy(e) word gedruk..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Toetsbladsy(e) is na die drukkerstelsel gestuur.\n"
-"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-"Drukstatus:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Toetsbladsy(e) is na die drukker gestuur.\n"
-"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "Het dit reg gewerk?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Geen drukker"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Sluit af"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Netwerk op pad af"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Netwerk op pad af"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Drukkeropsies"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Drukkerdata word gelees..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Dra drukkerkonfigurasie oor"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Moet nie drukkers oordra nie"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Oordrag"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Nuwe drukkernaam"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "%s word oorgedra..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "Drukkerdata word gelees..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "Konfigureer drukker"
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Konneksie word begin..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Stel netwerk op"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Monitor is nie opgestel nie"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Stel netwerk op"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Watter drukkerstelsel verlang u?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Hoog"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Paranoďes"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Watter drukkerstelsel verlang u?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Installeerde sagteware word deursoek..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "LPRng word verwyder..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "LPD word verwyder..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Kies drukkerspoelprogram"
-
-#
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Konfigureer drukker"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Installeer pakket %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Drukkeropsies"
-
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "Drukkerdata word gelees..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Konfigureer drukker"
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Wil u 'n drukwerk nou konfigureer?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Drukkerstelsel:"
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Drukker"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Hier is die bestaande drukkertoue.\n"
-"U kan byvoeg or verwyder soos nodig."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Hier is die bestaande drukkertoue.\n"
-"U kan byvoeg or verwyder soos nodig."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Stel netwerk op"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Normale modus"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Wil u die konfigurasie toets?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Verander drukkerkonfigurasie"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Drukker %s: %s %s\n"
-"Wil u hierdie drukker verander?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "Gaan voort!"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Drukkerkonneksietipe"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Drukkernaam,. beskrywing, ligging"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Drukkervervaardiger, model, drywer"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Drukkervervaardiger, model"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Maak hierdie die verstekdrukker"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Druk toetsbladsy(e)"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Wil u die konfigurasie toets?"
-
-#
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Verwyder drukker"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Drukkerdata word gelees..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Verstek drukker"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Drukker \"%s\" is nou die verstekdrukker"
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Wil u die werklik die drukker verwyder?"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Drukkerdata word gelees..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Instaanbedienerkonfigurasie"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Welkom by die proksiekonfigurasienutsprogram.\n"
-"\n"
-"Hier kan u die HTTP en FTP-instaanbedieners\n"
-"opstel met of sonder aantekenkodes en wagwoorde\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "Poort"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "Instaanbediener moet begin met http://"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Die poortgedeelte moet numeries wees"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Vul asb. die FTP-instaanbediener inligting in\n"
-"Los dit oop indien u nie FTP-instaanbediener verlang nie"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Instaanbediener moet begin met ftp://"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "Gebruikerskode"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "Herhaal wagwoord"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "Geen wagwoord"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Die wagwoorde stem nie ooreen nie. Probeer weer!"
-
-#: ../../raid.pm_.c:35
-#, 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:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Kan nie lęer %s skryf nie"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid het gefaal"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron is skeduleerder vir periodiese instruksies."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd word gebruik om battery status te monitor en dit dan te log via "
-"syslog.\n"
-"Dit kan ook gebruik word om die rekenaar af te bring wanneer die battery "
-"swak is."
-
-#: ../../services.pm_.c:18
-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 ""
-"Loop instruksies deur 'at' geskeduleer op die tyd deur 'at' gespesifiseer. "
-"Loop ook instruksiebondels wanneer die stelsellas laag genoeg is."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron is die standaard UNIX program om gebruikergespesifiseerde programme\n"
-"op periodies geskeduleerde tye te loop. vixie cron voeg addisionele "
-"funksionaliteit\n"
-"by die standaard UNIX cron, insluitende beter sekuriteit en 'n kragtiger "
-"konfigurasie."
-
-#: ../../services.pm_.c:23
-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 verleen muisvermoëns aan teksgebaseerde Linuxapplikasies soos\n"
-"Midnight Commander. Dit laat muisgebaseerde knip-en-plak aksies op die\n"
-"konsole toe asook opspringkieskaarte."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache is 'n WWW-bediener.\n"
-"Dit kan HTML-lęers uitstuur en CGI's hanteer"
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Die internetsuperbedienerdiensprogram (gewoonlik inetd genoem) laai 'n\n"
-"verskeidenheid internetdienste soos nodig. Dit is gewoonlik verantwoordelik "
-"vir\n"
-"telnet, ftp, rsh en rlogin. As inetd gesper word, sper dit ook die dienste "
-"waarvoor\n"
-"inetd verantwoordelik is."
-
-#: ../../services.pm_.c:33
-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:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Hierdie pakket laai die sleutelbordkaart soos dit in /etc/sysconfig/"
-"keyboard\n"
-"opgestel is. Dit kan vernader word met die kbdconfig nutsprogram. U moet "
-"dit\n"
-"op meeste rekenaars ongesper laat."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Outobespeuring en hardewarekonfigurasie met herlaaityd."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: ../../services.pm_.c:43
-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 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:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) is die domeinnaamdiens (DNS) wat gebruik word om\n"
-"rekenaarname na IP-adresse toe om te skakel."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Heg en ontheg all netwerklęerstels (NFS), SMB (Lan Manger/Windows)\n"
-"en NCP (Netware) hegpunte."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktiveer/Deaktiveer all netwerkkoppelvlakke wat opgestel is om by\n"
-"herlaaityf te begin."
-
-#: ../../services.pm_.c:52
-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 is 'n populęre protokol vir lęerdeling oor TCP/IP netwerke.\n"
-"Hierdie diens voorsien NFS-bedienerfunksionaliteit. Dit word via\n"
-"die /etc/exports lęer opgestel."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-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:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Ondersteun die OKI-4W en aanpasbare WIN-drukkers"
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA is gewoonlik nodig om ondersteuning te verleen aan\n"
-"toestelle soos ethernet en modems in skootrekenaars. Dit sal nie\n"
-"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:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Portmapper bestuur RPC-konneksies wat deur protokolle soos NFS en NIS\n"
-"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:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-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:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Stoor en herstel die stelselentropiepoel vir hoë kwaliteit,\n"
-"lukraaknommergenerasie."
-
-#: ../../services.pm_.c:69
-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:71
-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 ""
-"Die 'routed' diensprogram hanteer outomatiese IP-roeteertabelopdatering\n"
-"via die RIP protokol. Alhoewel RIP baie gebruik word in klein netwerke, is\n"
-"meer komplekse protokolle nodig vir komplekse netwerke."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Die 'rstat' protokol laat gebruikers op 'n netwerk toe om\n"
-"werksverrigtinginligting oor enige rekenaar op die netwerk te onttrek."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Die 'rusers' protokol laat netwerkgebruikers toe om te bepaal wie\n"
-"aangeteken is op ander samewerkende rekenaars."
-
-#: ../../services.pm_.c:78
-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 ""
-"Die 'rwho' protokol laat eksterne gebruikers toe om te sien wie\n"
-"ingeteken is op 'n rkeneaar wat die 'rwho' diensprogram loop. (Amper soos "
-"'finger')."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Laai die klankstelsel op u rekenaar"
-
-#: ../../services.pm_.c:81
-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 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:83
-msgid "Load the drivers for your usb devices."
-msgstr "Laai die drywers vir u USB-toestelle"
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Laai die X-fontbediener (dis nodig vir XFree)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Kies watter dienste moet outomaties begin met herlaaityd."
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Druk"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Stelselmode"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Eksterne lpd drukkeropsies"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Datbasis"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Dienste"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "aktief"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "onaktief"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr ""
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "met herlaai"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Toestand"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Sektor"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Protokol vir die res van die węreld"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Internettoegang"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedia - Grafika"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Ontwikkeling"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Beheersentrum"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Netwerkkoppelvlak"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "SMB-bedienernaam"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Speletjies"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Kundige"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-#, fuzzy
-msgid "MandrakeStore"
-msgstr "verpligtend"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Installeer pakket %s"
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
-"Ek sal die nodige partisies skoonmak."
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Fout!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Ek kan nie die nodige herlaaibeeld '%s' kry nie."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Outoinstallasiekonfigurasieprogram"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Outomatiese Stappe Konfigurasie"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Geluk!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Die floppie is sukselvol geskep.\n"
-"U kan nou weer 'n installasie uitspeel."
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Installasie"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Voeg 'n gebruiker by"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Terugluslęer %s word geformateer"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Korrupte rugsteunlęer"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Korrupte rugsteunlęer"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Korrupte rugsteunlęer"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Pakketkeuse"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Kies die pakkette wat u wil installeer"
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Verwyder tou"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Verwyder Windows(TM)"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Gebruikerskode"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Toets asb. die muis"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Probeer asb. weer"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Probeer asb. weer"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "Geen wagwoord"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN konneksie"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Kies drukkerkonneksie"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Wat is u sleutelborduitleg?"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Kliek asb. op 'n partisie"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Kies die pakkette wat u wil installeer"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Korrupte rugsteunlęer"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Toets asb. die muis"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Korrupte rugsteunlęer"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Netwerkkoppelvlak"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Gebruikerskode"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Kies die pakkette wat u wil installeer"
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Kies asb. 'n taal om te gebruik."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "gebruik hardeksyfoptimisasie?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "gebruik hardeksyfoptimisasie?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-#, fuzzy
-msgid "What"
-msgstr "Wag"
-
-#
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "Wiel"
-
-#
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "Wiel"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Module opsies:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Netwerkkonfigurasie"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Kies die pakkette wat u wil installeer"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Kies die pakkette wat u wil installeer"
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Stel lęerstelsels op"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Opsies"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Op watter seriaalpoort is u modem gekoppel?"
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Netwerkkonfigurasie"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Korrupte rugsteunlęer"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Wat is u muistoestel?"
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Korrupte rugsteunlęer"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Herstel vanaf floppie"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Wat is u muistoestel?"
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Ander"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Installeer stelsel"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Herstel vanaf lęer"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Herstel vanaf lęer"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Aangepaste"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- Vorige"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Toestand"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Korrupte rugsteunlęer"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Herstel vanaf lęer"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Teks"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Kies pakkette om te installeer"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Kies asb. 'n taal om te gebruik."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Kies asb. 'n taal om te gebruik."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Kies asb. 'n taal om te gebruik."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Korrupte rugsteunlęer"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Korrupte rugsteunlęer"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Korrupte rugsteunlęer"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Stoor in lęer"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Toets asb. die muis"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Kies die pakkette wat u wil installeer"
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Netwerkkonfigurasie"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Netwerkkonfigurasie"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Konfigurasie"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Sluit konfigurasie af"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Stel lęerstelsels op"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s installasie het gefaal a.g.v. hierdie fout: "
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "%s is nie gevind nie"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Klaar"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Formatteer floppie"
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Berei installasie voor"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-#, fuzzy
-msgid "Restart XFS"
-msgstr "Laai dit"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "beperk"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Formateer partisies"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-#, fuzzy
-msgid "Uninstall Fonts"
-msgstr "Deďnstallasie van RPMs"
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Sluit konfigurasie af"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Hegpunt"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Kies die partisies om te formatteer"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Kantoor"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Aborteer"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Drukker"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Installeer stelsel"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Selekteer lOer"
-
-#
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Verwyder drukker"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
-msgid "Initials tests"
-msgstr "Beginboodskap"
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Installasie"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Verlaay installasie"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Internetkonneksiedeling"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Internetkonneksiedeling is ontsper"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
-"Dis tans aktief.\n"
-"\n"
-"Wat wil u doen?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "deaktiveer"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "ignoreer/sien oor"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "herkonfigureer"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Bedieners word gedeaktiveer..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Internetkonneksiedeling is gedeaktiveer"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Internetkonneksiedeling is gesper"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
-"Dis tans gedeaktiveer.\n"
-"\n"
-"Wat wil u doen?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "Aktiveer"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Bedieneers word aktiveer..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Internetkonneksiedeling is geaktiveer"
-
-#: ../../standalone/drakgw_.c:201
-#, fuzzy
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-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"
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Koppelvlak %s (met module %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Koppelvlak %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
-"hardewarekonfigurasieprogram."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Netwerkkoppelvlak"
-
-#
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Daar is net een konfigureerde netwerkkaart op u stelsel.\n"
-"\n"
-"%s\n"
-"\n"
-"Ek gaan nou u LAN met daardie kaart opstel."
-
-#: ../../standalone/drakgw_.c:253
-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:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Monitor is nie opgestel nie"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Outomatiese CUPS konfigurasie"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Verander drukkerkonfigurasie"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "CUPS-bediener IP:"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Moontlike LAN-adresbotsing gevind in konfigurasie %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Vuurmuurkonfigurasie gevind!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
-"dietyd self regstellings moet aanbring."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Konfigurasie in aabou..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Probleme met Installasue van pakket %s"
-
-#: ../../standalone/drakgw_.c:672
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Die opstelling van is alreeds gedoen, maar is tans gedeaktiveer."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Die opstelling is alreeds gedoen en is alreeds ook geaktiveer."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Geen internetkonneksiedeling is al gekonfigureer nie."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Internetkonneksiedelingkonfigurasie"
-
-#: ../../standalone/drakgw_.c:703
-#, 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:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netwerkkonfigurasie (%d toestelle)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiel:"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Vee profiel uit..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profiel om uit te vee..."
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nuwe profiel..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Bedienernaam:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internettoegang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipe:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Portaal:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Koppelvlak:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigureer internettoegang..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN-konfigurasie"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Drywer"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Koppelvlak"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Toestand"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Stel plaaslike netwerk op..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistent..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Pas toe"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Wag asb... Konfigurasie word toegpas"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Gekonnekteer"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nie gekonnekteer nieKabelkonneksie"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konnekteer..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Diskonnekteer..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN konfigurasie"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Toestel %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Herlaaiprotokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Gelaai tydens herlaaityd"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-kliënt"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "Aktiveer nou dadelik"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktiveer nou dadelik"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetkonneksiekonfigurasie"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetkonneksiekonfigurasie"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Konneksietipe:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameters"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Portaal"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernetkaart"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-Kliënt"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Sekuriteitsvlak word gestel."
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Beheersentrum"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Kies die instrument wat u wil gebruik"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Kanadees (Quebec)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "Europa"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Yslandies"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "Europa"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "seriaal"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Wat is u sleutelborduitleg?"
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
-"Wil u hę dat die 'BackSpace' sleutel moet uitvee in die konsole ('n 'Delete' "
-"terugstuur)?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Verander CDROM"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Dit asb. die instasllasie CDROM in die aandrywer en druk OK. Indien u nie\n"
-"hieroor beskik nie, druk Kanselleer om die intydse opgradering te vermy."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Kon nie die intydse opgradering begin nie !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr ""
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Gebruikerskode"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "Beginboodskap"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Konfigurasie"
-
-#: ../../standalone/logdrake_.c:406
-#, fuzzy
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Welkom by die proksiekonfigurasienutsprogram.\n"
-"\n"
-"Hier kan u die HTTP en FTP-instaanbedieners\n"
-"opstel met of sonder aantekenkodes en wagwoorde\n"
-
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "skadu's"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Verlaat"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "interessant"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "Formatering"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Kleurkonfigurasie"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr ""
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Wat is u muistoestel?"
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "Geen 'serial_usb' gevind nie\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Emuleer derde knop?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Selekteer 'n videokaart"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Herlaaitoestel"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Vuurmuurkonfigurasie"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Vuurmuurkonfigurasie"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Vuurmuur\n"
-"\n"
-"Kliek op Konfigureer om die standaard vuurmuur op te stel."
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Kies u taal"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Kies installasieklas"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Hardeskyfdeteksie."
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Stel muistoestel op"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Kies u sleutelbord"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Sekuriteit"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Stel lęerstelsels op"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formateer partisies"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Kies pakkette om te installeer"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Installeer stelsel"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Voeg 'n gebruiker by"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Stel netwerk op"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Konfigureer dienste"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Installeer herlaaistelsel"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Maar 'n herlaaiskyf"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Stel X op"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Installeer stelsel"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Verlaay installasie"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfigurasie is voltooi. Moet ons hierdie veranderinge na skyf skryf?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Kan nie %s oopmaak nie: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Kon nie %s in skryfmode oopmaak nie: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Vuurmuurkonfigurasie"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Wag asb. installasie word voorberei"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Netwerkrekenaar (kliënt)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS, SMB, Instaan- , SSH (Bedieners)"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Kantoor"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome werkstasie"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Nutsprogramme vir PalmPilot en/of Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Werkstasie"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Vuurmuur/Netwerkroteerder"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domeinnaam en Netwerk Informasie Bediener (DNS/NIS)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Kantoorprogramme: Woordverwerkers( kword, abiword), spreistate (kspread, "
-"gnumeric), PDF-sigprogramme, ens."
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Klankprogramme: MP3- of MIDI-spelers, mengers, ens."
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Boeke en HOWTO's oor Linux en Vrye Sagteware"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE werkstasie"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ens."
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedia - Video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Hulpprogramme vir e-pos, netnuus, web, FTP en netpraat"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Datbasis"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL of MySQL databasisbediener"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Hulpprogramme vir u rekenaarkonfigurasie te vergemaklik"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedia - Klank"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Nutsprogramme"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "dokumentasie"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Konsole hulpprogramme"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix e-posbediener, Inn netnuusbediener"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internetstasie"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimediastasie"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Konfigurasie"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Addisionele grafiese werkskerms (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"Die K-werkskermomgewing (KDE), die basiese grafiese omgewing met 'n "
-"versameling bygaande hulpprogramme"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Grafiese omgewing"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Hulpprogramme vir die skep en brand van CDs"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Kantoorwerkstasie"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Bediener"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, ens."
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Grafiese programme soos Die GIMP"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C en C++ ontwikkelingsprogrammateke, programme en insluitlęers"
-
-#
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Netwerkrekenaarbediener"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "E-pos/Groepware/Netnuus"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Speletjiesrekenaar"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Videospelers en -redigeerders"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedia - Grafika"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Vermaak: Arkade, Bordspel, Strategie ens."
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Stel hulpprogramme om e-pos en netnuus te lees en te stuur (pine, mutt, tin) "
-"en om ook die web deur te blaai."
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Aaaargivering, emulators, monitorprogramme"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Persoonlike finansies"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"'n Grafiese omgewing met gebruikersvriendelike stel applikasies en "
-"werkskermhulpprogramme"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Kliëntprogramme vir 'n verkeidenheid protokolle insluitende SSH"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Internetpoort"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Klank- en videospelers/redigeerders"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Ander grafiese werkskerms"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr ""
-"Redigeerders. teksverwerkers, instruksiedoppe, lęernutsprogramme, "
-"terminaalprogramme"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programme om u finansies te bestuur, soos GNUcash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Persoonlike Inligtingbestuur."
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedia - CD Sny"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Wetenskaplike werkstasie"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Aborteer"
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Geen"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Kies die verstek gebruiker:"
-
-#
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Pas toe/herlees drukkers"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "U kan die opsies vir module %s hier intik."
-
-#~ msgid "mount failed"
-#~ msgstr "heg het gefaal"
-
-#~ msgid "Low"
-#~ msgstr "Laag"
-
-#~ msgid "Medium"
-#~ msgstr "Medium"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "'n Aantal verbetering op heirdie sekuriteitsvlak, die hoof een is meer\n"
-#~ "sekuriteitswaarskuwings en -toetse."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimedia"
-
-#~ msgid "Boot mode"
-#~ msgstr "Herlaaimodus"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Kundige"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux beheer tyd in GMT (Greenwichmeridiaantyd) en vertaal dit dan\n"
-#~ "in u lokale tyd volgends die gekose tydsone."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Konnekteer aan die internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Diskonnekteer van die internet"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfigureer netwerkkonneksie (LAN or internet)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Na watter skyf wil u skuif?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Kies die pakkette wat u wil installeer"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome werkstasie"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache is 'n WWW-bediener.\n"
-#~ "Dit kan HTML-lęers uitstuur en CGI's hanteer"
-
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) is die domeinnaamdiens (DNS) wat gebruik word om\n"
-#~ "rekenaarname na IP-adresse toe om te skakel."
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Wat is u muistoestel?"
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "Beskikbare NFS-gedeëlde hulpbronne word gesoek"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "Beskikbare NFS-gedeëlde hulpbronne van bediner %s word gesoek."
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "Beskikbare SAMBA-gedeëlde hulpbronne word gesoek"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "Beskikbare SAMBA-gedeëlde hulpbronnevan bediener %s word gesoek"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Verlaat"
-
-#~ msgid "Removable media"
-#~ msgstr "Verwyderbare media"
-
-#~ msgid "Active"
-#~ msgstr "Aktief"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Nee"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "'n Drukker, model \"%s\", is opgespoor op "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Plaaslikte drukkertoestel"
-
-#~ msgid "Printer Device"
-#~ msgstr "Drukkertoestel:"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "Toestel/Lęernaam ontbreek"
-
-#
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Drukkers op eksterne CUPS-bediener(s)"
-
-#
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Drukkers op eksterne CUPS-bediener(s)"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Stelselmode"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Ander"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Wat is u sleutelborduitleg?"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Kliek asb. op 'n partisie"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tipe:"
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Korrupte rugsteunlęer"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Stel X op"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Drukkertoestel:"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Kanselleer"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "OK"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Sluit af"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Konneksie word begin..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Konneksie word afgesluit..."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Die stelsel is nou ontkoppel."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Kies die grootte van die installasie"
-
-#~ msgid "Total size: "
-#~ msgstr "Totale grootte: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Wag asb.,"
-
-#~ msgid "Total time "
-#~ msgstr "Totale tyd "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Gebruik bestaande konfigurasie vir X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Watter toestel is die drukker aan gekoppel?\n"
-#~ "(let op dat /dev/lp0 ekwiwalent is aan LPT1:)\n"
-
-#~ msgid "%s"
-#~ msgstr "%s"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Waarskuwing! Die netwerkkaart is alreeds opgestel. Ek gaan dit "
-#~ "herkonfigureer?"
-
-#~ msgid "New"
-#~ msgstr "Nuut"
-
-#~ msgid "Remote"
-#~ msgstr "Ekstern"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Kliek asb. op 'n partisie"
-
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr ""
-#~ "Indien bo-gelyste inskrywings nie die nodige inskrywing bevat nie, voeg "
-#~ "dit hier by:"
-
-#~ msgid "Shared resource"
-#~ msgstr "Gedeëlde hulpbron"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Vaagheid (%s). Wees meer presies\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (verstek %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "U keuse? (Verstek %s tik 'none' vir geen)"
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "kan nie /etc/sysconfig/autologin oopmaak vir lees nie: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Wil u die netwerk herlaai?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Stem u saam?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ek gaan nou die netwerktoestel herlaai: \n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Ek gaan nou die netwerktoestel %s herlaai. Stem u saam?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Indien u spesifiek anders weet, is die gewone keuse \"/dev/hda\"\n"
-#~ "(primęre meester IDE-skyf) of \"/dev/sda\" (eerste SCSI-skyf)."
-
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr ""
-#~ "Konneksie tydlimiet (in sekondes) [ beta, nog nie geďmplementeer nie ]"
-
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Kon nie \"%s\" die verstek drukker maak nie!"
-
-#
-#~ msgid "Test the mouse here."
-#~ msgstr "Toets die muis hier."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Kies voorkeurtaal vir installasie en stelselgebruik."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Kies die sleutelborduitleg uit die bostaande lys"
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Selekteer:\n"
-#~ "\n"
-#~ " - Afgemeet: Indien u vertroud genoeg is met GNU/Linux, kan u die "
-#~ "primęre\n"
-#~ " gebruik van u rekenaar kies. Sien onder vir details.\n"
-#~ "\n"
-#~ " - Kundige: Indien u vlot is in GNU/Linux en 'n hoogs aangepaste "
-#~ "installasie wil\n"
-#~ " doen, kan u die deur die gebruik van u rekenaar te kies.\n"
-#~ " MOET ASB. NIE HIERDIE OPSIE KIES INDIEN U NIE WEET WAT U DOEN NIE."
-
-#, fuzzy
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Die verskillende opsies vir u rekenaar se gebruik (indien u \"Afgemeet"
-#~ "\" \n"
-#~ "of \"Kundige\" sou kies) is die volgende:\n"
-#~ "\n"
-#~ " - Normaal: Indien die rekenaar primęr vir daaglikse kantoorgebruik is.\n"
-#~ " Moenie programmeringspakette verwag nie.\n"
-#~ "\n"
-#~ " - Ontwikkeling: Indien die rekenaar vir programontwikkel;ing gebruik "
-#~ "sal\n"
-#~ " word. 'n Volledige stel kompileerders, saamstellers en ontfouters "
-#~ "sal \n"
-#~ " opgesit word.\n"
-#~ "\n"
-#~ " - Bediener: Indien die rekenaar primęr 'n bediener sal wees, hetsy met "
-#~ "NFS,\n"
-#~ " SMB, drukkerbediening, NIS magtiging ens.\n"
-#~ " Moenie vensterstelsels soos KDE en GNOME verwag nie.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "U kan nou die pakketgroepe kies wat u wil installeer of opgradeer.\n"
-#~ "\n"
-#~ "DrakX sal dan kyk of daar genoegsame spasie is vir die volledige "
-#~ "installasie.\n"
-#~ "Indien nie sal u verwittig word. Indien u voortgaan, sal van die minder "
-#~ "belangrike\n"
-#~ "pakkette nie installeer word nie.Heel onder kan u die opsie \"Individuele "
-#~ "pakketkeuses\"\n"
-#~ "kies waarna u deur meer as 'n 1000 pakkette sal moet blaai....."
-
-#, fuzzy
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Indienu al die CDs in die bogenoemde lys het, kliek OK.\n"
-#~ "Indien u geen het nie, kliek Kanselleer.\n"
-#~ "Indien sekere CDs weg is, onselekteer hulle en kliek dan OK."
-
-#, fuzzy
-#~ 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 ""
-#~ "U kan nou die opbelopsie invul. Indien u\n"
-#~ "twyfel kry die korrekte inligting van u ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Sleutel in:\n"
-#~ "\n"
-#~ " - IP-adres: Indien u dit nie weet nie vra u netwerkadministrateur of "
-#~ "ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Netmasker: \"255.255.255.0\" is gewoonlik 'n goeie keuse. Indien u "
-#~ "twyfel,\n"
-#~ " vra die netwerkadministrateur of ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Outomatiese IP: Indien u netwerk bootp of dhcp protokolle ondersteun, "
-#~ "kies\n"
-#~ " hierdie opsie. In so 'n geval is 'n IP-adresinskrywing nie nodig "
-#~ "nie. Indien u\n"
-#~ " twyfel, vra die netwerkadministrateur of ISP.\n"
-
-#, 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 ""
-#~ "Indien u netwerk NIS gebruik, kies \"Gebruik NIS\". Indien u twyfel vra\n"
-#~ "die netwerkadministrateur."
-
-#~ 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 ""
-#~ "U kan nou die opbelopsie invul. Indien u\n"
-#~ "twyfel kry die korrekte inligting van u ISP."
-
-#~ 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 ""
-#~ "Indien u instaanbedieners wil gebruik, stel hulle hier op.. Indien u "
-#~ "twyfel vra\n"
-#~ "die netwerkadministrateur of ISP."
-
-#, fuzzy
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "U kan 'n kriptografiese pakket installeer indien u internetkonneksie reg "
-#~ "opgestel is.\n"
-#~ "Kies eers die spieël waar u die pakket vanaf wil aflaai en kies dan die "
-#~ "pakkette\n"
-#~ "om te installeer.\n"
-#~ "\n"
-#~ "Let wel: U moet 'n spieël en pakkette selekteer n.a.l plaaslike wetgewing."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "U kan nou die 'root' wagwoord voorsien vir u Mandrake Linux stelsel.\n"
-#~ "Die wagworod moet twee keer ingevoer word en te verfiëer dat dit\n"
-#~ "korrek is.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is die administrateur van die stelsel en is die enigste gebruiker\n"
-#~ "wat toegelaat wiord om die stelselkonfigurasie te verander. In dié lig,\n"
-#~ "kies asb. die wagwoord sorgvuldig. Ongemagtigde gebruik van die root\n"
-#~ "rekening kan uitermatiglik nadelig wees vir die integriteit van die\n"
-#~ "stelsel. Die wagwoord moet alfanumeries wees en ten minste 8 karakters\n"
-#~ "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."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "U mag nou een of meer gewone gebruikersrekeninge skep. Dit is in\n"
-#~ "teenstelling met die bevoorregte 'root' rekening. Elke "
-#~ "gebruikersrekening\n"
-#~ "sal oor sy eie voorkeure (grafiese omgewing, programstelling, ens.) en\n"
-#~ "tuisgids (waar hierdie instellings gestoor word) beskik.\n"
-#~ "\n"
-#~ "\n"
-#~ "Derhalwe moet u in die stelsel intkeen met u eie gebruikerskode en slegs\n"
-#~ "'root' gebruik vir administratiewe doeleindes.\n"
-#~ "\n"
-#~ "Skep eerstens 'n rekening vir uself. Selfs indien u die enigste "
-#~ "gebruiker\n"
-#~ "op die stelsel sal wees, moet u NIE as 'root' vir u daaglikse gebruik\n"
-#~ "inteken NIE. 'n Onbruikbare stelsel kan net een tikfout ver weg wees.\n"
-#~ "\n"
-#~ "\n"
-#~ "Derhalwe moet u aanteken met die gebruikerskode wat u hier skep en "
-#~ "'root'\n"
-#~ "net vir admintratiewe doeleindes gebruik."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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"
-#~ " wat die herlaaisektor bevat. Indien u spesifiek anders weet\n"
-#~ " kies \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Wagperiode voor verstekbedryfstelsel gelaai word. Kies die syfer in\n"
-#~ " tiendes van 'n sekonde at die herlaaistelsel moet wag.\n"
-#~ " Hierdie is handig op stelsels wat onmiddelik die hardeskyf skop na "
-#~ "die\n"
-#~ " sleutelbord geaktiveer is. Die herlaaistelsel sal nie wag nie indien "
-#~ "die\n"
-#~ " wagperiode nul is.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Videomode: Kies die spesifieke VGA teksmode wat gebruik moet word "
-#~ "met\n"
-#~ " herlaai. Die volgende waardes is beskikbaar:\n"
-#~ " * normaal: selekteer normale 80x25 mode.\n"
-#~ " * syfer: die ooreenstemmende teksmode."
-
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 'n herlaaiprogram vir SPARC. Dir kan GNU/Linux of enige ander\n"
-#~ "bedryfstelsel wat op u rekenar teenwoordig is, laai. Gewoonlik word "
-#~ "hierdie\n"
-#~ "bedryfstelsels reg bespeur en bygevoeg. Indien nie, kan u 'n inskrywing "
-#~ "maak\n"
-#~ "op hierdie skerm. Maak seker u kies die korrekte paramters.\n"
-#~ "\n"
-#~ "\n"
-#~ "U mag dalk toegang tot ander bedryfstelsels beperk, in welke geval u die "
-#~ "nodige\n"
-#~ "inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om "
-#~ "die\n"
-#~ "betrokke bedryfstelsels te laai."
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "SILO hoofkeuses is:\n"
-#~ " - Herlaaitoestel: Waar wil u die inligting om GNU/Linux te laai plaas? "
-#~ "Die beste is\n"
-#~ "gewoonlik om \"Eerste hardeskyfsektor (MBR)\" te kies.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Wagperiode voor verstekbedryfstelsel gelaai word. Kies die syfer in\n"
-#~ " tiendes van 'n sekonde at die herlaaistelsel moet wag.\n"
-#~ " Hierdie is handig op stelsels wat onmiddelik die hardeskyf skop na "
-#~ "die\n"
-#~ " sleutelbord geaktiveer is. Die herlaaistelsel sal nie wag nie indien "
-#~ "die\n"
-#~ " wagperiode nul is."
-
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Dit is tyd om die X-vensterstelsel op te stel. Hierdie is die kern van\n"
-#~ "die GNU/Linux grafiese omgewing. Vir hierdie doeleindes, moet u 'n "
-#~ "videokaart\n"
-#~ "en monitor kies. Meeste van hierdie stappe is outomaties en u moet net\n"
-#~ "verifiëer of dit korrek is.\n"
-#~ "\n"
-#~ "\n"
-#~ "Na konfigurasie sal X outmaties gelaai word, behalwe as u DrakX "
-#~ "andersins\n"
-#~ "aansę. Indien die stelling u nie pas nie, kom terug en verander so veel\n"
-#~ "keer soos nodig."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Indien iets verkeerd is in die X-konfigurasie, gebruik hierdie opsies om\n"
-#~ "die X-vensterstelsel reg op te stel."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Indien u verkies om 'n grafiese intekenarea te kry, kies \"Ja\", "
-#~ "andersins \"Nee\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "U stelsel gaan nou herlaai.\n"
-#~ "\n"
-#~ "U nuwe Mandrake Linux stelsel sal outomaties laai. Indien u 'n ander\n"
-#~ " bedryfstelsel wil laai, lees die ekstra instruksies noukeurig deur."
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Skryf /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formatteer almal"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Na formatering van alle partisies"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "alle data om hierdie partisies sal verloor word"
-
-#~ msgid "Reload"
-#~ msgstr "Herlaai"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "Wil u 'n outoinstallasieskyf maak vir Linux replikasie?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL konfigurasie"
-
-#, fuzzy
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Met 'n eksterne CUPS-bediener, hoef u glad nie 'n drukker hier\n"
-#~ "op te stel nie; drukkers wod outomaties bespeur.\n"
-#~ "Indien u twyfel, kies \"Eksterne CUPS-bediener\"."
-
-#~ msgid "Remote queue"
-#~ msgstr "Eksterne drukkertou"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Eksterne tounaam ontbreek!"
-
-#~ msgid "Command line"
-#~ msgstr "Instruksielyn"
-
-#~ msgid "Modify printer"
-#~ msgstr "Verander drukker"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Netwerkmonitor"
-
-#~ msgid "Profile "
-#~ msgstr "Profiel"
-
-#~ msgid "Connection Time: "
-#~ msgstr "Konneksietyd"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Internetkonneksie"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Internetdiskonneksie"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Diskonnekteer van die internet het misluk."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Diskonneksie van die internet sukssevol"
-
-#~ msgid "Connection complete."
-#~ msgstr "Konneksie suksesvol"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Verstek loopvlak"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Konfigurasielęerinhoud is onverstaanbaar"
-
-#~ msgid "Adapter"
-#~ msgstr "Toestel"
-
-#~ msgid "Disable network"
-#~ msgstr "Sper netwerkstelsel"
-
-#~ msgid "Enable network"
-#~ msgstr "Aktiveer netwerk"
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (of ADSL) konneksie"
-
-#~ msgid "Choose"
-#~ msgstr "kies"
-
-#~ 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"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Ja, druk ASCII toetsbladsy"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Ja, druk die PostScript toetsbladsy"
-
-#~ msgid "Paper Size"
-#~ msgstr "Papiergrootte"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Stoot papier uit na voltooiing?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint-dryweropsies"
-
-#~ msgid "Color depth options"
-#~ msgstr "Kleurdiepte opsies"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Druk teks as PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Korrigeer trapsgewyse teks?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Aantal bladsye per uitsetblad?"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Regs/Links kantlyne in punte (1/72 van 'n duim)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Bo/Onder kantlyne in punte (1/72 van 'n duim)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Ekstra GhostScriptopsies"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Ekstra teksopsies"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Omgekeerde bladsyorde"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Kies eksterne drukkerkonneksie"
-
-#~ 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 ""
-#~ "Elke drukker benodig 'n naam (bv. lp)\n"
-#~ "Ander parameters soos 'n beskrywing en 'n ligging kan ook gegee word.\n"
-#~ "Wat is die drukker se naam en wat is die konneksietipe?"
-
-#~ 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 ""
-#~ "Elke drukkertou (waar drukstukke heengaan) het 'n naam nodig \n"
-#~ "(baie keer 'lp') and 'n gekoppelde spoelgids. Watter naam en\n"
-#~ "spoelgids moet gebruik word?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Tounaam"
-
-#~ msgid "Spool directory"
-#~ msgstr "Spoelgids"
-
-#~ msgid "Disable"
-#~ msgstr "Deaktiveer"
-
-#~ msgid "Enable"
-#~ msgstr "Aktiveer"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Om 'n veiliger stelsel te bou, moet u \"Gebruik skadulęer\" \n"
-#~ "en \"Gebruik MD5 wagwoorde\" kies."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Indien u netwerk NIS wil gebruik, kies \"Gebruik NIS\" hier. Indien u "
-#~ "twyfel vra\n"
-#~ "die sysadmin.."
-
-#~ msgid "yellow pages"
-#~ msgstr "geelbladsye"
-
-#~ msgid "Light configuration"
-#~ msgstr "Ligte konfigurasie"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Voorsiener DNS 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Voorsiener DNS 2"
-
-#, fuzzy
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Wil u nou aan die internet konnekteer?"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Selekteer lOer"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Konfigureer internetkonneksie"
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr "Stel X op"
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Stel netwerk op"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Hierdie skrip laai de nodige modules vir 'n USB-muis."
-
-#, fuzzy
-#~ 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"
-
-#, fuzzy
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Stel X op"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Maar 'n herlaaiskyf"
-
-#~ 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 "U kan nie supermount in hoë sekuriteitsvlak gebruik 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 "Which bootloader(s) do you want to use?"
-#~ msgstr "Watter herlaaistelsel(s) verlang u?"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Outoinstallasieskyf"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Soekj vir 'n modem?"
-
-#~ msgid "Configure local network"
-#~ msgstr "Stel netwerk op"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr "Plaaslike netwerk is alreeds opgestel: Wil u?"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Konfigureer tydsone"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(kan data korrupteer)"
-
-#~ 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 "Waarvoor word u stelsel gebruik?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Kies die grootte van die installasie"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Gebruik diskdrake"
-
-#
-#~ msgid "Customized"
-#~ msgstr "Gespesialiseerde"
-
-#~ 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 "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Gebruik MD5 wagwoorde"
-
-#~ msgid "Search"
-#~ msgstr "Soek"
-
-#~ msgid "Package"
-#~ msgstr "Pakket"
-
-#~ msgid "Tree"
-#~ msgstr "Boom"
-
-#~ msgid "Sort by"
-#~ msgstr "Gesorteer volgens"
-
-#~ msgid "Category"
-#~ msgstr "Kategorie"
-
-#~ msgid "Installed packages"
-#~ msgstr "Installeerde pakkette"
-
-#~ msgid "Available packages"
-#~ msgstr "Beskikbare pakkette"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Wys net eindnodes"
-
-#~ msgid "Expand all"
-#~ msgstr "Maak boom oop"
-
-#~ msgid "Collapse all"
-#~ msgstr "Maak boom toe"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Voeg pakketareas by"
-
-#~ msgid "Update location"
-#~ msgstr "Dateer ligging op"
-
-#~ 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 "Checking dependencies"
-#~ msgstr "Afhanklikhede word getoets"
-
-#
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Die volgende pakkette gaan verwyder word"
-
-#~ msgid "Regexp"
-#~ msgstr "Regex"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Watter pakket soek vir"
-
-#~ 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 verlang u?"
-
-#~ 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 "Voorsien asb. die volgende inligting"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s is lareeds 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 "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 "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"
-
-#~ msgid "Slovakian"
-#~ msgstr "Slovaaks"
-
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "Kon nie ipchains RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "Kon nie dhcp RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "Kon nie linuxconf RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "Kon nie bind RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr "Kon nie caching-nameserver RPM m.b.v. urpmi installeer nie. "
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Herkonfigureer plaaslike netwerk"
-
-#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
-#~ "\n"
-#~ msgstr "U rekenaar is opgestel om sy internet konneksie te deel.\n"
-
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "Internetkonneksiedeling is ontsper.\n"
-
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Konnekteer aan die internet met gewone modem"
-
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Konnekteer aan die internet met ISDN"
-
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Konnekteer aan die internet met DSL (of ADSL)"
-
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Konnekteer aan die internet met kabel"
-
-#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "Tyd, in sekondes, van onaktiwiteit voor diskonneksie.\n"
-#~ "Los oop om dié funksie te sper."
-
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Duitsland (1TR6)"
-
-#~ msgid "What do you wish to do?"
-#~ msgstr "Wat wil u doen?"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Installasie/Redding"
-
-#~ msgid "Rescue"
-#~ msgstr "Redding"
-
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Watter partisietipe verlang u?"
-
-#, fuzzy
-#~ 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 Mandrake Linux "
-#~ "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"
-#~ msgstr ""
-#~ "Selekteer:\n"
-#~ "\n"
-#~ " - Afgemeet: Indien u vertroud genoeg is met GNU/Linux, kan u die "
-#~ "primęre\n"
-#~ " gebruik van u rekenaar kies. Sien onder vir details.\n"
-#~ "\n"
-#~ " - Kundige: Indien u vlot is in GNU/Linux en 'n hoogs aangepaste "
-#~ "installasie wil\n"
-#~ " doen, kan u die deur die gebruik van u rekenaar te kies.\n"
-#~ " MOET ASB. NIE HIERDIE OPSIE KIES INDIEN U NIE WEET WAT U DOEN NIE."
-
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux 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 ""
-#~ "U kan nou kies watter partisie(s) gebruik kan word om Mandrake Linux\n"
-#~ "op te installeer indien hulle reeds bestaan (geskep uit 'n vorige "
-#~ "installasie,\n"
-#~ "of met 'n ander partisieprogram). In ander gevalle moet die partisies nog "
-#~ "geskep\n"
-#~ "word. Hierdie operasie bestan uit die logiese verdeling van die hardeskyf "
-#~ "in\n"
-#~ "aparte bruikbare areas\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u nuwe partisies moet skep, gebruik \"Outo-allokasie\" om "
-#~ "outomaties\n"
-#~ "partisies vir Linux te skep. U kan die skyf vir partisionering selekteer "
-#~ "deur\n"
-#~ "op \"hda\" te kliek vir die eerste IDE hardeskyf, hdb vir die tweede of "
-#~ "\"sda\"\n"
-#~ "vir die eerste SCSI skyf ens.\n"
-#~ "\n"
-#~ "\n"
-#~ "Twee algemene partisies is die \"root\" partisie (/), wat die wortel is\n"
-#~ "van die lęergidsstelsel, en /boot, wat die nodige lęers bevat om die\n"
-#~ "bedryfstelsel aan die gang te kry wanneer die rekenaar aangesit word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Omdat die gevolge van hierdie proses onomkeerbaar is, kan partisionering "
-#~ "baie\n"
-#~ "intimiderend en stresvol vir die onervare gebruiker wees. DiskDrake maak "
-#~ "dié\n"
-#~ "proses heelwat makliker. Lees die dokumentasie en neem u tyd voor u "
-#~ "voortgaan.\n"
-#~ "\n"
-#~ "\n"
-#~ "U kan enige opsie gebruik deur die sleutelbord te gebruik. Navigeer deur "
-#~ "diepartisies met\n"
-#~ "Tab en die pyltjies. Wanneer 'n partisie gekies is, gebruik:\n"
-#~ "\n"
-#~ "- Ctrl-c om 'n partisie te skep (wanneer 'n leë partisie gekies is)\n"
-#~ "\n"
-#~ "- Ctrl-d om 'n partisie uit te vee\n"
-#~ "\n"
-#~ "- Ctrl-m om 'n partisie te heg\n"
-
-#~ 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 ""
-#~ "Enige partisies wat nuut geskep is, moet eers formateer word voor "
-#~ "gebruik.\n"
-#~ "(Formateering beteken die skep van 'n lOerstelsel). U kan nou kies om "
-#~ "ook\n"
-#~ "bestaande partisies te herformateer en die data daarop te vernietig.\n"
-#~ "NOTA: Dit is nie nodig om alle bestaande partisies te herformateer nie,\n"
-#~ "veral indien daar data op is wat u wil hou. 'n Tipiese voorbeeld is /home."
-
-#~ 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 ""
-#~ "Die gekose pakette gaan nou installeer word. Hierdie proses\n"
-#~ "sal 'n paar minute neem. Indien u 'n opgradering gekies, kan dit\n"
-#~ "nog langer neem voordat die opgradering begin."
-
-#~ 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"
-#~ "\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"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Indien DrakX nie u muis kon vind nie, of as u wil sien\n"
-#~ "wat gedoen is, sal u moet die bg. lys van muistoestelle gepresenteer\n"
-#~ "word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u met DrakX saamstem, spring na die afdeling wat u\n"
-#~ "verlang deur op die kierkaart links te kliek. Andersins kies\n"
-#~ "'n muistoetsel in die kieskaart wat u dink die beste klop met die\n"
-#~ "muis wat u het.\n"
-#~ "\n"
-#~ "In geval van 'n seriaalmuis, moet u ook vir DrakX die seriaalpoort\n"
-#~ "gee."
-
-#~ 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 Mandrake Linux 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 ""
-#~ "Hierdie afdeling is vir die konfigurasie van 'n lokaalareanetwerk\n"
-#~ "of 'n modem.\n"
-#~ "\n"
-#~ "Kies \"LAN\" en DrakX sal probeer om 'n Ethernetkaart in u rekenaar\n"
-#~ "te vind. PCI-kaarte sal heelwaarskynlik outomaties gevind en\n"
-#~ "inisialiseer word. Indien u 'n ISA-kaart het sal daar 'n kieslys\n"
-#~ "vertoon word waaruit u dan u kaart moet selekteer.\n"
-#~ "\n"
-#~ "\n"
-#~ "indien u Mandrake Linux installeer op 'n stelsel wat deel is van 'n\n"
-#~ "bestaande netwerk, sal due netwerk administrateur u alreeds met die\n"
-#~ "nodige inligting (IP adres, netmasker en rekenaarnaam) voorsien het.\n"
-#~ "Indien u 'n privaat netwerk opstel (sso by die huis), dan moet u die\n"
-#~ "adresse kies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kies \"Uitbel met Modem\" en die internetkonneksie vir 'n modem\n"
-#~ "sal opgestel word. DrakX sal u modem probeer bepaal. Indien dié faal\n"
-#~ "sal u die modem en korrekte seriaalpoort moet selekteer."
-
-#~ 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"
-#~ "\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"
-#~ "\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."
-#~ msgstr ""
-#~ "GNU/Linux kan verskeie drukkers gebruik. Elkeen van hierdie tipes\n"
-#~ "verlang 'n ander opstelling. Let asb. daarop dat die verstek drukkernaam "
-#~ "'lp' is.\n"
-#~ "U moet so 'n drukker skep. U kan egter addisionele name bysit deur dit "
-#~ "met die '|' karakterte skei.\n"
-#~ "Derhalwe kan u dus die drukker 'n meer betekenisvolle naam ook toeken.\n"
-#~ "Die drukker met 'lp' in die naam sal die verstek drukker wees.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u drukker direk aan die rekenaar gekoppel is, selekteer\n"
-#~ "\"Lokale Drukker\". U moet dan die korrekte poort uitwys\n"
-#~ "en die gepaslike filter selekteer.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u 'n drukker om 'n ander Unix-rekenaar wil gebruik, kies\n"
-#~ "\"Eksterne lpd\". In hierdie geval moet u die naam van die drukkertou\n"
-#~ "op die ander rekenaar ken.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u toegang tot 'n SMB drukker (op 'n Windows-rekenaar) verlang,\n"
-#~ "moet u die SMB/NETBIOS naam (nie TCP/IP-naam nie) ken en moontlik ook "
-#~ "die\n"
-#~ "IP-adres. Daarby moet u ook 'n gebruikerskode, werkgroep en wagwoord en "
-#~ "die\n"
-#~ "drukkernaam voorsien. Dieselfde geld vir 'n Netware-drukker, behalwe dat "
-#~ "u\n"
-#~ "die werkgroep hoef te voorsien nie."
-
-# ../help.pm_.c:240 ../help.pm_.c:481 msgid ""
-#~ 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 ""
-#~ "Dit word sterk aanbeveel dat u \"Ja\" antwoord. Indien u Windows sou\n"
-#~ "herinstalleer, sal dit die herlaaisektor oorskryf. Indien u die die "
-#~ "herlaaiskyf\n"
-#~ "gemaak het nie, sal u nie weer in GNU/Linux kan inkom nie."
-
-#~ msgid "Move your wheel!"
-#~ msgstr "Draai u wiel!"
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Vergeet van die veranderinge?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Wat is u muistipe?"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "OUtomatiese resolusies"
-
-#~ 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 ""
-#~ "Ek gaan nou probeer m die beskikbare resolusies te kry.\n"
-#~ "Die skerm sal 'n paar maal flits...\n"
-#~ "U kan die skerm afsit indien u wil, ek sal biep wanneer ek klaar is"
-
-#~ 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?"
-#~ msgstr ""
-#~ "Ek kan probeer om al die beskikbare resolusies te kry (bv. 800x600).\n"
-#~ "Soms kan die rekenaar ophang.\n"
-#~ "Wil u probeer?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "Geen geldige modes was gevind nie\n"
-#~ "Probeer 'n ander videokaart of monitor"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Outomatiese resolusie soektog"
-
-#~ msgid "pump"
-#~ msgstr "pump"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "dhcp-client"
-#~ msgstr "DHCP-kliënt"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB-muis"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB-muis (2 knoppe)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB-muis (3+ knoppe)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB-muis"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB-muis (2 knoppe)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB-muis (3+ knoppe)"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI Busmuis"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft busmuis"
-
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech busmuis"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB Muis (3 knoppe of meer)"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A of beter (seriaal)"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (seriaal)"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (seriaal)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (seriaal)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Generiese Muis (seriaal)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Microsoft aanpasbaar (seriaal)"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Generiese 3-knopmuis (seriaal)"
-
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse (seriaal)"
-
-#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to "
-#~ "internet."
-#~ msgstr ""
-#~ "Ek moet u netwerkkaart konfigureer om aan die internet te konnekteer."
-
-#~ msgid "nfs mount failed"
-#~ msgstr "NFS heg het gefaal"
-
-#~ msgid "Socket"
-#~ msgstr "Sok"
-
-#~ msgid "Cryptographic"
-#~ msgstr "Kriptografie"
-
-#~ 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 sal konfigurasielęers maak vir beide XFree 3.3 en XFree 4.0.\n"
-#~ "By verstek sal die 4.0 bediener gebruik word indien u videokaart "
-#~ "ondersteun. word\n"
-#~ "\n"
-#~ "Wil u XFree 3.3 behou?"
-
-#~ msgid "Configure LAN"
-#~ msgstr "Stel LAN op"
-
-#~ msgid "Do not set up networking"
-#~ msgstr "Moenie netwerk opstel nie"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Wil u die netwerk vir u stelsel opstel?"
-
-#~ msgid "Show less"
-#~ msgstr "Vertoon minder"
-
-#~ msgid "Show more"
-#~ msgstr "Vertoon meer"
-
-#, fuzzy
-#~ msgid "tie"
-#~ msgstr "koppel"
-
-#~ msgid "brunette"
-#~ msgstr "brunette"
-
-#~ msgid "girl"
-#~ msgstr "meisie"
-
-#~ msgid "woman-blond"
-#~ msgstr "blondine"
-
-#, fuzzy
-#~ msgid "automagic"
-#~ msgstr "automagic"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Wat is u sleutelborduitleg?"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Soek PCMCIA-kaarte?"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Soek vir %s-toestelle?"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr "Wil u die opbelkonneksie (modem) konfigureer?"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Soek vir PCI-toestelle?"
-
-#~ msgid "Searching root partition."
-#~ msgstr "Wortelpartisisie word gesoek."
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr ""
-#~ "%s: Hierdie is nie 'n wortellęerstelsel nie, kies asb. 'n ander een."
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Watter partisie moet u wortelpartisie wees?"
-
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "U het geen Windows-partisies nie!"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "U het nie genoeg spasie vir Lnx4win nie."
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# 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)
-#
-#, fuzzy
-#~ 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 ""
-#~ "Welkom by %s die bedryfstelselkeuseprogram!\n"
-#~ "\n"
-#~ "Om die moontlikhede te vertoon, druk <TAB>.\n"
-#~ "\n"
-#~ "Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
-#~ "%ds en die verstek bedryfstelsel sal laai.\n"
-#~ "\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)
-#
-#, fuzzy
-#~ 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 ""
-#~ "Welkom by %s die bedryfstelselkeuseprogram!\n"
-#~ "\n"
-#~ "Om die moontlikhede te vertoon, druk <TAB>.\n"
-#~ "\n"
-#~ "Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
-#~ "%ds en die verstek bedryfstelsel sal laai.\n"
-#~ "\n"
-
-#~ msgid "SILO main options"
-#~ msgstr "SILO hoofopsies"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Hier is die huidige SILO-inskrywings\n"
-#~ "U kan byvoeg or verwyder soos nodig."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Hierdie etiket is alreeds in gebruik"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "SILO installasie het gefaal a.g.v. hierdie fout: "
-
-#~ 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 will probeer om eers te kyk vir een of meer bekende PCI\n"
-#~ "SCSI kaarte. Indien iets gevind word, en die drywers daarvoor\n"
-#~ "bekend is, sal dit outomaties bygevoeg word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u 'n ISA SCSI kaart het, of 'n onbekende PCI SCSI kaart, of\n"
-#~ "geen SCSI kaart nie, sa; u gevra word of daar enige SCSI kaarte is.\n"
-#~ "Indien daar geen is nie, antwoord \"Nee\". Indien daar wel is, antwoord\n"
-#~ "\"Ja\" en 'n lys van kaarte sal gegee word waaruit u moet kies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Na seleksie van die drywer, sal DrakX of vra vir opsies. Probeer eers\n"
-#~ "dat die drywer die hardeware ondervra; dit werk gewoonlik.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien nie, moenie die dokumentasie van u hardeware vergeet nie; ook nie\n"
-#~ "enige inligting van Windows (indien u dit gennstalleer het). Hierdie is\n"
-#~ "opsies wat u die drywer moet verskaf."
-
-#~ msgid "Shutting down"
-#~ msgstr "Stelselafsluiting"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
deleted file mode 100644
index bad02e711..000000000
--- a/perl-install/share/po/ar.po
+++ /dev/null
@@ -1,10269 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2000 Free Software Foundation, Inc.
-# Djaghlouli Kamel <djkamel@chez.com>, 2000.
-# Mohammed Gamal <f2c2001@yahoo.com>, 2002
-# Boujaj Mostapha Ibrahim <mboujaj@yahoo.de>, 2002
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-08 02:00GMT\n"
-"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
-"Language-Team: ARABIC <ar@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "اعداد كل الرؤوس بشكل مستقل"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "استخدام امتداد Xinerama"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "قم بإعداد البطاقة \"%s\" فقط (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "إعداد متعدد الرؤوس"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"نظامك يدعم الإعداد متعدد الرؤوس.\n"
-"ماذا تريد أن تفعل؟"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "بطاقة الشاشة"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "اختر بطاقة شاشة"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "إختر خادم X"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "خادم X"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "إختر مشغل X"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "مشغل X"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "أي اعداد لـXFree تريد؟"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد لكن فقط مع XFree %s.\n"
-"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشل أفضل في الوضع "
-"ثنائي الأبعاد."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد مع XFree %s"
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
-"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s مع دعم تجريبي للرسوم ثلاثية الأبعاد"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"يمكن لبطاقتك التمتع بدعم للتسريع ثلاثي الأبعاد لكن فقط مع XFree %s, \n"
-"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك.\n"
-"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشكل أفضل في وضعية "
-"الرسوم ثنائية الأبعاد."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (مشغل عرض التثبيت)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "ؼؚداد XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "إختر حجم ذاكرة بطاقة الشاشة"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "إختر خيارات الخادم"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "ؼ؎تع شاش؊"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "الشاشة"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"المعاملان المهمان جدا هما نسبة الإنعاش الأفقي, و هي النسبة التي\n"
-"يتم فيها انعاش الشاشة كاملة, و الأهم هو نسبة التزامن الأفقي\n"
-"و التي في خلالها يتم عرض خطوط المسح.\n"
-"\n"
-"من *المهم جدا* أن لا تحدد نوع شاشة مع متوسط تزامن\n"
-"أكبر من مقدرة شاشتك لأنك بهذا قد تدمر شاشتك.\n"
-" اذا لم تكن متأكدا يمكنك اختيار اعدادات عادية."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "نسبة الإنعاش الأفقي"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "نسبة الإنعاش الرأسي"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "الشاشة غير معدّة"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "لم يتم اعداد بطاقة الشاشة حتى الآن"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "ام يتم اعداد دقة العرض حتى الآن"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "هل تريد تجربة الإعداد؟"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "تحذير: اختبار بطاقة العرض هذه قد يتسب في ايقاف جهازك"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "اختبار الإعداد"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"حاول تغيير بعض المعاملات"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "ظهر خطأ:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "المغادرة في %d ثوان"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "هل هذا هو الضبط الصحيح؟"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "ظهر خطأ, حاول تغيير بعض الماملات"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "دقة العرض"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "اختر دقة العرض و عمق الألوام"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "بطاقة الشاشة: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "خادم XFree86 :%s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "أك؍ع"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "موافق"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "وضعية الخبير"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "اظهار الكل"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "دقة العرض"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "لوحة المفاتيح: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "نوع الفأرة: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "جهاز الفأرة: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "الشاشة: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "تزامن الشاشة الأفقي: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "انعاش الشاشة الرأسي: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "بطاقة الشاشة: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "معرف بطاقة الشاشة: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "ذاكرة بطاقة الشاشة: %s كيلوبايت\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "عمق الألوان: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "دقة العرض: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "خادم XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "مشغل XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "جاري تجهيز تهيئة X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "ماذا تريد أن تفعل؟"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "تغيير الشاشة"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "تغيير بطاقة الشاشة"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "تغيير خيارات الخادم"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "تغيير دقة العرض"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "عرض المعلومات"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "اختبر مرة أخرى"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "؎عو؏"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"هل تريد حفظ التغييرات؟\n"
-"الإعداد الحالي هو:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X عند بدء التشغيل"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"يمكنني جعل جهازك يبدأ X بشكل آلي بعد الإقلاع.\n"
-"هل تريد X أن بيدأ بعد إعادة تشغيل جهازك؟"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 لون )8 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ألف لون )15 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ألف لون )16 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 مليون لون )24 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 بليون لون )32 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 كيلوبايت"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 كيلوبايت"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 ميغابايت أو أكثر"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 at 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 at 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 at 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor that can do 1600x1200 at 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor that can do 1600x1200 at 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "القطاع اول من تجزئة الإقلاع"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "القطاع الأول من القرص (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "تثبيت SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "أين تريد تثبيت محمّل الإقلاع؟"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "تثبيت LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO مع قائمة نصية"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO مع قائمة رسومية"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "الإقلاع من DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "خيارات محمّل الإقلاع الرئيسية"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "محمّل الإقلاع المُستخدم"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "تثبيت محمل الإقلاع"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "جهاز الإقلاع"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA )لا يعمل مع أنظمة الـBIOS القديمة("
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "مدمج"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "مدمج"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "وضعية الفيدية"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "توقيت ما قبل اقلاع الصورة الافتراضية"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "???§?????????Š ?§???³?????????¹"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "كلمة المرور )ثانيةً("
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "تشديد خيارات سطر الأوامر"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "تشديد"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "قم بتنظيف /tmp عند كل إقلاع"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "حجم الذاكرة الدقيق عند الحاجة )تم ايجاد %d ميغابايت("
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "تمكين التشكيلات المتعددة"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "اكتب حجم الذاكرة بالميغابايت"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "خيار ``تشديد خيارات سطر الأوامر`` بدون قائدة من دون كلمة مرور"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "رجاء جاول مرة أخرى"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "كلمات المرور غير متطابقة"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "رسالة Init"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Open Firmware Delay"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "الوقت الأقصى لإقلاع النواة"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "تمكين الإقلاع من القرص المدمج؟"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "تمكين اقلاع OF؟"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "نظام التشغيل الافتراضي؟"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"ها هنا المخلات المختلفة.\n"
-"يمكنك اضافة مدخلات أخرى أو تغيير الموجودين."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "ؼ؜اف؊"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "انتهى"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "تعديل"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "ما نوع المدخل الذي تريد اضافته؟"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "لينكس"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "نظام آخر (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "نظام آخر (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "نظام آخر (Windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "ؾوع؊"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "الجذر"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "الحاق"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "للقراءة و الكتابة"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "الجدول"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Unsafe"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "عنوان"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "الإفتراضي"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "حجم Initrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "لا فيديو"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "ازل المدخل"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "غير مسموح بالعلامات الفارغة"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "يجب أن تحدد صورة النواة"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "يجب عليك تحديد تقسيم جذر"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "هذه العلامة مستخدمة مسبقا"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "تم ايجاد %s %s واجهات"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "هل عندك واحدة أخرى؟"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "هل لديك أي واجهات %s؟"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "لا"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "نعم"
-
-#: ../../any.pm_.c:661
-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:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "جاري تثبيت مشغل %s للبطاقة %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr ")الوحدة %s("
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "أي مشغل %s يجب أن استخدمه؟"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"في بعض الأحيان يحتاج مشغل %s معلومات اضافية لكي يعمل\n"
-"بشكل صحيح, الا أنه يمكنه العمل جيدا بدونها. هل تريد تحديد\n"
-"خيارات اضافية له أو تسمح للمشغل بالتحقق في جهازك\n"
-"عن المعلومات التي سيحتاجها؟ في بعض الأحيان, قد يتسبب التحقق في تعليق الجهاز, "
-"لكن\n"
-"لا يجب أن يتسبب ذلك في أي مشاكل."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "تحقق آلي"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "حدد الخيارات"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"يمكنك الآن اعطاء الخيارات للوحدة %s.\n"
-"الخيارات في هيئة ``name=value name2=value2 ...'' \n"
-"مثلا, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "خيارات الوحدة:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"فشل تحميل الوحدة %s.\n"
-"هل تريد المحاولة ثانية بمعاملات أخرى؟"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "الوصول الى برامج X"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "الوصول الى أدوات rpm"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "اسمح بـ\"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "الوصول الى ملفات الإدارة"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(تم اضافة %s مسبقا)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "كلمة المرور هذه بسيطة جدا"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "رجاءً قم بإعطاء اسم مستخدم"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "اسم المستخدم يجب أن يحتوي فقط على الحروف الصغيرة, الأرقام, `-' و `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "اسم المستخدم مُضاف مسبقا"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "اضف مستخدم"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"أدخل مستخدم\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "وافق على المستخدم"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "الاسم الحقيقي"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "اسم المستخدم"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "الغلاف"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "أيقونة"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "دخول آلي"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"يمكنني اعداد جهازك لتسجيل الدخول آليل لمستخدم ما.\n"
-"هل تريد استخدام هذه الميزة؟"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "اختر المستخدم الافتراضي:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "اختر مدير النوافذ الذي سيتم تشغيله:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "رجاء اختر لغة الاستخدام."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "يمكنكن اختيار لغات أخرى و التي ستكون متوفرة بعد التثبيت"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "الكل"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "اسمح لكل المستخدمين"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "مخصص"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "لا مشاركة"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "يمكنك التصدير باستخدام NFS أو Samba. أي منهما تريد"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "الحزمة الضرورية %s مفقودة"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "إلغاء"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "شغّل userdrake"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
-"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "مرحبا بالمخترقين"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "فقير"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "القياسي"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "مرتفع"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "مرتفع أكثر"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "مرتفع جدا"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "اختر مستوى الأمن"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "مستوى الأمن"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "إستخدم libsafe للملقمات"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Welcome to GRUB the operating system chooser!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Use the %c and %c keys for selecting which entry is highlighted."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Press enter to boot the selected OS, 'e' to edit the"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "commands before booting, or 'c' for a command-line."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, 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:944
-msgid "not enough room in /boot"
-msgstr "لا توجد مساحو كافية في /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "سطح المكتب"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Start Menu"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "يمكنك تثبيت محمّل الإقلاع على التجزئة %s\n"
-
-#: ../../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 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_ملف"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/ملف/_خروج"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>ŘŽ"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "شاشة NewStyle التصنيفية"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "شاش؊ NewStyle"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "شاشة تقليدية"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "شاشة Gtk+ التقليدية"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "شغّل Aurora عند الإقلاع"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "و؜ؚ Lilo/grub"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "و؜ؚ Yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"أنت تستخدم %s كمدير اقلاع حاليا.\n"
-"اضغط على تهيئة لتشغيل معالج الإعداد"
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "ؼؚداد"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "وضع النظام"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "شغّل X-Window عند بدء التشغيل"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "لا, لا أريد دخولا أليا"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "نعم, أريد دخولا آليا مع هذا )المستخدم, سطح المكتب("
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "موافق"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "لم يمكن فتح /etc/inittab للقراءة: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "غيغابايت"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "كيلوبايا"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "م.ب"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "تيرابايت"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d دقائق"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "دقيقة واحدة"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d ثوان"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "لا يمكنني غمل لقطات للشاشة قبل التجزئة"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت في %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "فرنسا"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "كوستاريكا"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "بلجيكا"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "جمهورية التشيك"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "ألمانيا"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "اليونان"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "النرويج"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "السويد"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "هولندا"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "إيطاليا"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "النمسا"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "الولايات المتحدة"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "رجاء قم بعمل نسخة احتياطية من بياناتك أولا"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "اقرأ جيدا!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"اذا كنت تريد استخدام aboot, فلا تنسى أن تترك مساحة فارغة في\n"
-"بداية القرص (2048 قطاعات كافية)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "؎ءأ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "المعالج"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "ا؎تع حد؍ا"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"لديك تجزئة FAT واحدة كبيرة\n"
-")يستخدم عامة عن طريق Microsoft DOS/Windows(.\n"
-"اقترح أن تغير حجم هذه التجزئة\n"
-")اضغط عليها ثم اختر \"تغيير الحجم\"("
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "فضلا اضغط على تجزئة"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "تفاصيل"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "التبديل"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "فاعغ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "أخرى"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "أنواع أنظمة الملفات:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "عمل تجزئة"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "النوع"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "استخدم ``%s'' بدلا من ذلك"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "إلغاء"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "استخدم ``ازالة التجهيز'' أولا"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "بعد تغيير نوع التجزئة %s, فإنك ستسخر كل البيانات على التجزئة"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "ؼ؎تع ت؏ز،؊"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "ؼ؎تع شاش؊"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "؎عو؏"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "النتقال الى وضعية الخبير"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "الانتقال الى الوضع العادي"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "تعا؏ؚ"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "هل تريد الاكمال على أي حال؟"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "الخروج بدون الحفظ"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "هل تريد الخروج بدون كتابة جدول التقسيم؟"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "هل تريد حفظ تعديلات /etc/fstab"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "تحديد آلي"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "أمسح الكل"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "معلومات القرص الصلب"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "كل التجزئات الرئيسية مستخدمة"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "لا يمكنني اضافة أي تجزئة أخرى"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr "لكي تمتلك تجزئات أكثر, يرجى الغاء تجزئة كي تتمكن من عمل تجزئة ممتدة"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "حفظ جدول التقسيم"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "استعادة جدول التقسيم"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "إنقاذ جدول التقسيم"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "إعادة تحميل جدول التقسيم"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "التجهيز الآلي للوسائط القابلة للإزالة"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "اختر ملف"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"جدول التقسيم المحفوظ ليس بنفس الحجم\n"
-"لا زلت تريد الإكمال؟"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "تحذير"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"أدخل قرصا مرنا في السواقة\n"
-"كل البيانات على القرص ستمحى"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "جاري محاولة انقاذ جدول التقسيم"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "معلومات مفصّلة"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "نقطة التجهيز"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "خيارات"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "تغيير الحجم"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "نقل"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "تنسيق"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "جهز"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "اضافة الى RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "اضافة الى LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "ازل التجهيز"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "ازالة من RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "ازالة من LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "تعديل RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "استخدام لـloopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "اعمل تجزئة جديدة"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "قطاع البداية: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "الحجم باليغابايت: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "نوع نظام المفات: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "نقطة التجهيز: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "التفضيل: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "هل تريد ازالة ملف loopback؟"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "غير نوع التجزئة"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "أي نظام ملفات تريد؟"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "جاري التغيير من ext2 الى ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "أين تريد تجهيز ملف loopback %s؟"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "أين تريد بجهيز الجهاز%s؟"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"لم يمكن ازالة تعيين نقطة التجهيز نظرا لأن هذه التجزئة مستخدمة لـloop back.\n"
-"قم بإزالة الـloopback أولا"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "جاري حساب روابط نظام ملفات FAT"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "جاري تغيير الحجم"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "هذا التقسيم غير قابل لتغيير الحجم"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "كل البيانات على هذه التجزئة يجب حفظها احتياطيا"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "بعد تغيير حجم التجزئة %s, فإن كل البيانات على هذه التجزئة ستفقد"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "اختر الحجم الجديد"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "الحجم الجديد بالميغابايت: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "أي قرص تريد نقله؟"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "القطاع"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "أي قطاع تريد نقله؟"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "نقل"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "جاري نقل التجزئة..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "اختر RAID موجود للاضافة"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "جديد"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "اختر LVM l,جود للاضافة"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "اسم LVM؟"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "هذه التجزئة لا يمكن استخدامها لـloopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "اسم ملف Loopback: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "اعط اسم ملف"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "هذا الملف مستخدم من loopback أخرى, اختر ملفا آخر"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "الملف موجود مسبقا, هل تريد استخدامه؟"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "خيارات التجهيز"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "متنوعة"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "الجهاز"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "المستوى"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "حجم chunk"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "كن حذرا: هذه العملية خطيرة"
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "أي نوع من التجزئة؟"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-
-#: ../../diskdrake/interactive.pm_.c:934
-msgid ""
-"You've selected a software RAID partition as root (/).\n"
-"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "جدول اتتقسيم للقرص %s سيتم كتابته الى القرص!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "ستحتاج الى اعادة التشغيل قبل أن يتم تفعيل التعديلات"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "بعد تهيئة التقسيم %s, فإن كل البيانات الموجودة على التجزئة ستفقد"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "جاري التهيئة"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "جاري تهيئة ملف loopback: %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "جاري تهيئة التجزئة %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "خبء الملفات"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "انقل الملفات الى تجزئة جديدة"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"الدليل %s يحتوي مسبقا على بعض البيانات\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "جاري نقل الملفات الى التجزئة الجديدة"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "جاري نسخ %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "جاري ازالة %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "التجزئة %s معروفة الآن بالإسم %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "الجهاز: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "حرف سواقة DOS: %s (مجرد تخمين)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "النوع: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "الاسم: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "البداية: قطاع %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "الحجم: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s قطاع"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "الاسطوانة %d الى %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "مجهز\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "غير مجهز\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "محمل\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "المستوى %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "حجم Chunk %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "أقراص RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "اسم ملف Loopback: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "الحجم: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "الهندسة: %s اسطوانة, %s رأس, %s قطاع\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "معلومات: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "أقراص LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "نوع جدول التقسيم: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "على bus %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "الخيارات: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "مفتاح تشفير نظام الملفات"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "اختر مفتاح تشفير نظام الملفات"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "مفتاح التشفير هذا بسيط جدا (يجب أن يكون %d حرفا على الأقل)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "مفاتيح التشفير غير متطابقة"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "مفاتح التشفير"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "مفاتح التشفير (مرة أخرى)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "غيّر النوع"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "فضلا اضعط على وسيط"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "ابحث في أجهزة الخادم"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s تجهيز %s قد فشل"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "لا أعرف كيف أجهز %s في النوع %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "بسيط"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "خادم"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr ""
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr ""
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr ""
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr ""
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "لا توجد مساحة كافية للتحديد الآلي"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:697
-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 ""
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr ""
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr ""
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "NIS لا تسطيع ا ستعمال هذ ا البرنامج مع"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr ""
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr "استمرّ بأيّة حال"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "استعمل مكانا حرا"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr ""
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr ""
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr ""
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr ""
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr ""
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr ""
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "قبول"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "هل تريد فعلا مغادرة التثبيت؟"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "لوحة المفاتيح"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "رجاء, اختر لوحة المفاتيح."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "ترقية"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "رجاء اختر لغة نوع الفأرة."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "خادم NTP"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "بطاقة الصّوت ISA هل عندك عند"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "الفأرة"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "ءابؚ؊"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "التحقق"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "خادم LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "تخطي"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1356
-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:1361
-msgid "Automated"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr ""
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr ""
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "إختر ملف"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "متقدم"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "هل تريد الضغط على هذا الزر؟ "
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "الألمانية"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr ""
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "الإسبانية"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "الفنلندية"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "الفرنسية"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "النرويجية"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "البولندية"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "الروسية"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "السويدية"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr ""
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr ""
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "البلجيكية"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "البلغارية (صوتية)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "البلغارية (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "البيلاروسية"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "الدنماركية"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (سويدية)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "الإستونية"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "يوناني"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "المجرية (الهنغارية)"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "الكرواتية"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "العبرية"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "الآيسلاندية"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "الإيطالية"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr ""
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr ""
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr ""
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr ""
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr ""
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "اللاتفية"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "المقدونية"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr ""
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "البرتغالية"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "السلوفينية"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "التاميل"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr ""
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr ""
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "الأوكرانية"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr ""
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr ""
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr ""
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr ""
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr ""
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr ""
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr ""
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr ""
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr ""
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr ""
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr ""
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr ""
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr ""
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr ""
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr ""
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr ""
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr ""
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr ""
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr ""
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "ولا واحد"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr ""
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "إنتهاء"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "التالي ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "معالج إعداد الشبكة"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "إعداد جديد (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "إعداد قديم (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "إنهاء"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "تابؚ"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr ""
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr ""
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr ""
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr ""
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr ""
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr ""
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr ""
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "اتصل"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "اقطع الإتصال"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "قم بإعداد الإتصال"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "وصلة ADSL"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "وصلة LAN"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "وصلة انترنت"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-
-#: ../../network/network.pm_.c:297
-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 ""
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr ""
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr ""
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr ""
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr ""
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr ""
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr ""
-
-#: ../../network/network.pm_.c:361
-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 ""
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr ""
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr ""
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr ""
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr ""
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr ""
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr ""
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr ""
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr ""
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr ""
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr ""
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr ""
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr ""
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr ""
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr ""
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr ""
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr ""
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr ""
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr ""
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr ""
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "إختر بلدك"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr ""
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "سرعة الإتصال"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "الوقت الأقصى للاتصال (بالثواني)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr ""
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "فشل التحميل: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr ""
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr ""
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr ""
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr ""
-
-#: ../../partition_table_raw.pm_.c:186
-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:24
-msgid "must have"
-msgstr ""
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr ""
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr ""
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr ""
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr ""
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "طابعة محلية"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "طابعة بعيدة"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr ""
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr ""
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "ءابؚ؊ شبك؊ (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr ""
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr ""
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr ""
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "الطابعات المحلية"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "الطابعات البعيدة"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ""
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr ""
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "على خادم CUPS \"%s\""
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-msgid "CUPS configuration"
-msgstr " CUPS اؚدادات"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-msgid "Specify CUPS server"
-msgstr "الخادم CUPS حدّد"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "عنوان IP لخادم CUPS"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "البوابة"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "تهيئة CUPS آلية"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "أضف طابعة جديدة"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "طابعة محلية"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "تحقق من الطابعات آليا"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "تحقق آلي"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "تم التحقق من %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr ""
-
-#
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"لم يتم ايحاد طابعة محلية!\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "رجاء اختر المنفذ الموصلة إليه طابعتك."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "إعداد يدوي"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "مجموعة العمل"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "اسم مستضيف الطابعة"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "الوصف"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "المكان"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1112
-msgid "Your printer model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-msgid "The model is correct"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-msgid "Select model manually"
-msgstr "تم اختيار النّموذج يدويًّا"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "إختيار وحدات الطابعة"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "ما هو نوع الطابعة لديك؟"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "ؼؚداد OKI WinPrinter"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "ؼؚداد Lexmark Inkjet"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"هل تريد تعيين هذه الطابعة (\"%s\")\n"
-"كطابعة افتراضية؟"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "ؼءبؚ"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "طابعة خام"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "إغلاق"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "جاري الطباعة/المسح على \"%s\""
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "جاري الطباعة على الطابعة \"%s\""
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "قائمة خيارات الطابعة"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "نقل إعدادات الطابعة"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "جاري بدء الشبكة..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "لم يتم تحديد وظيفية الشبكة"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "مرتفع"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "أي نظام طباعة تريد أن تستخدم؟"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "إعداد الطابعة \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-msgid "Configuring applications..."
-msgstr "جاري إعداد التطبيقات..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-msgid "Change the printing system"
-msgstr "تغيير نظام الطباعة"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "هل تريد تجربة إعداد طابعة أخرى؟"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "تعديل اعدادات الطابعة"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"الطابعة %s\n"
-"هل تريد تعديل تلك الطابعة؟"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "نوع وصلة الطابعة"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "اعرف كيف تستخدم هذه الطابعة"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr ""
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "إعداد البروكسي"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "عنوان"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr ""
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr ""
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr ""
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr ""
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr ""
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr ""
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr ""
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr ""
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr ""
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr ""
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr ""
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr ""
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr ""
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr ""
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-
-#: ../../services.pm_.c:18
-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 ""
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-
-#: ../../services.pm_.c:23
-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 ""
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-
-#: ../../services.pm_.c:33
-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:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: ../../services.pm_.c:43
-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 ""
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-
-#: ../../services.pm_.c:52
-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 ""
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-
-#: ../../services.pm_.c:69
-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:71
-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 ""
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-
-#: ../../services.pm_.c:78
-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 ""
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr ""
-
-#: ../../services.pm_.c:81
-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 ""
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr ""
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "إنترنت"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "نظام"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr ""
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "خادم قواعد بيانات"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "الخدمات"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr ""
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr ""
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr ""
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr ""
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "ابدأ"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "توقف"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "الإنترنت و المراسلة"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "وسائط متعددة و رسوميات"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "مركز تحكم Mandrake"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "واجهات الإستخدام"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "الالعاب"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "استشاعات Mandrake"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr ""
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "أداة اعداد المثبّت الآلي"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "إعداد الخطوات الآلية"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "تثبيت آلي"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "أزل المادة الأخيرة"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr "رجاء اختر كل المستخدمين الذين تريد تضمينهم في النسخ الإحتياطي."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "ازل المادة المختارة"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "المستخدمون"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "فضلا أدخل اسم المستضيف أو عنوان IP."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "رجاء أدخل اسم الدخول"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "رجاء كلمة المرور"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "تذكّر كلمة السّرّ هذه "
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "وصلة FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "وصلة آمنة"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "إلى المساعد CD/DVDROM الاستعمال "
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "رجاء اختر مساحة القرص المدمج"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-" من فضلك فحص إذا أردت أن تتضمّن \n"
-"ركّب الجدر على قرصك المدمج"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "الشبكة"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "HardDrive / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "كلّ ساعة "
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "يوميًّا "
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "أسبوعيّا"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "شهريا"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "استخدم المراقب"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"فضلا اختر الفترة \n"
-"ما بين كل عملية نسخ احتياطي"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"ع؏اإ ا؎تع\n"
-"وسيط النسخ الاحتياطي"
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "FTPاستخدم مع المراقب"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "ماذا "
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "أين"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "متى "
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "خيارات أكثر"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "ؼؚدادات Drakbackup"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "رجاء اختر أين تريد النسخ الاحتياطي."
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "على القرص الصّلب"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "عبر الشّبكة"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "رجاء اختر ما تريد نسخه احتياطياً"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "نظام المساعد"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "مستخدمو المساعد"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "اخترالمستخدم يدويًّا"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"مصادر المساعد :\n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"-ملفّات النّظام :\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"-ملفّات المستخدم:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"-الملفّات الأخرى:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- احفد القرص الصّلب على الطّريق :%s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"-FTP و على host احفد على : %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- خيارات:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tBackups use tar and bzip2\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tBackups use tar and gzip\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"-Daemon (%s) include :\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-CDROM.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Network by FTP.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Network by SSH.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "رجاء اختر تاريخ الإستعادة"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "اختر وسيط آخر للاستعادة منه"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "وسيط آخر"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "استعد النّظام"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "أعد المستخدمين "
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "استؚد آ؎ع"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "استعادة مخصصة"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "السابق"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "حفظ"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "استؚاد؊"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "التالي"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "قائمة الحزم المطلوب تثبيتها"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "رجاء اختر تاريخ الإستعادة..."
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "رجاء اختر وسيط النسخ الإحتياطي..."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "رجاء اختر البيانات المطلوب نسخها احتياطيا..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "رجاء أدخل سرعة سواقة كتابة الأقراص"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "قم بالنسخ الآن من ملف التهيئة"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "اعرض تهيئة النسخ الإحتياطي"
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "إعدادات المعالج"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "إعداد متقدم"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "فشل تثبيت %s. ظهر الخطأ التالي:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "انتهى"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "xfs restart"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "استيراد الخطوط"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "خيارات متقدمة"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "قائمة الخطوط"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "طابعات عادية (Generic)"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "تم اختيار الكل"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "ازل القائمة"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "الإختبارات الأولية"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "ما بعد التثبيت"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "ما بعد ازالة التثبيت"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "أعق"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "مشاركة اتصال الإنترنت غير ممكَّنة الآن."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:164
-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 "ماذا تحبّ أن تعمل"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "مشاركة إتصال الإنترنت ممكَّنة الآن."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "السّطح البينيّ %s(استعمال مركبة%s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "السّطح البينيّ %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "لا محوّل الشّبكة على نظامك"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "سطح بينيّ للشبكة "
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "واجهة الشبكة معدّة مسبقا!"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "اعداة تهيئة آلية"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "أظهر تهيئة الواجهة الحالية"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"الشّكل الحاليّ من `%s':\n"
-"n/الشّبكة : %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "عنوان IP لخادم DHCP (هذا)"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Firewalling configuration تم اكتشاف "
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:672
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "لم يتم اعداد أي مشاركة اتصال بالإنترنت"
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "إعدادات مشاركة إتصال الإنترنت"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr ""
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "النّبذة :"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "نبذة جد يد ة..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostname :"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr ""
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "النوع:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "الانتظار من فضلك"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "ؼؚداد LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "المحرك"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "الواجهة"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "الحالة"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "المعالج..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "تطبيق"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "متّصل "
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "غير متصل"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "متصل"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "ؼؚداد LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "المحوّل %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP العميل "
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "إعدادات الإتصال بالإنترنت"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "إعدادات الإتصال بالإنترنت"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "نوع العلاقة"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameters"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet Card"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP العميل"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr ""
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "مركز التّحكّم "
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "كندة (cable)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "الولايات المتّحدة الأمريكيّة (bcast)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "الولايات المتّحدة الأمريكيّة (cable)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "الولايات المتّحدة الأمريكيّة (cable-hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "الصين (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "اليابان (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "اليابان (cable)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "أوروبّا الشّرقيّة"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "أيرلندا"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "أوروبّا الغربيّة"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "أوستراليا"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "نيوزيلندا "
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "جنوب أفريقيا "
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "الأرجنتين "
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"من فضلك\n"
-" في معيار تليفزيونك و البلد type"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "TV norm :"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Area :"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "الاستعمال: keyboarddrake [--expert][لوحة المفاتيح]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "من فضلك اختر تصميم لوحة مفاتيحك"
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Cd-Romتغيير"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr ""
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "إعرض سجلات اليوم المختار فقط"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/ملف/_جديد"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>ŘŹ"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/ملف/_فتح"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>ف"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/ملف/_حفظ"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>Ř­"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/ملف/حفظ با_سم"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/ملف/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/خ_يارات"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/خيارات/احتبار"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_مساعدة"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/مساعدة/_حول"
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "المستخدم"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "الرسائل"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "شعوح أدوات Mandrake"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "بح؍"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "أداة لمراقبة سجلات نظامك"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "الضبط"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "الموائمة"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "لكن ليس موائمة"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "احتيار ملف"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "التقويم"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "محتويات الملف"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "تنبية البريد/SMS"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "يرجى الإنتظار, جاري تحليل الملف: %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "تهيئة تنبيه البريد/SMS"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"أهلا بكم الى أداة تهيئة البريد/SMS.\n"
-"\n"
-"هنا سيمكنك الإعداد \n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "إعدادات الخدمات"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "حمل الإعدادات"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "سوف تستلم تنبيها اذا كان التحميل أعلى من هذه القيمة"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "إعدادات التنبيه"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "أعدّ الطريقة التي سينبهك النظام بها"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "حفظ بإسم.."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr ""
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "no serial_usb found\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "%s found on %s وفّق بينه "
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "اختر جهاز المسح الضوئي"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "هذا %s الماسح الضّوئيّ غير مدعّم"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "جهاز الإقلاع"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "إعدادات الجدار الناري"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "أعدادات الجدار الناري"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "اختر لغتك"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "اختر نوع التثبيت"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "التحقق من الأقراص الصلبة"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "إعداد الفأرة"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "اختر لوحة المفاتيح الخاصة بك"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "الأمن"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "إعداد نظم الملفات"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "تجهيز التجزئات"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "اختر الحزم التي ستُثبَّت"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "تثبيت النظام"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "أضف مستخدم"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "تهيئة الشبكة"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "تهيئة الخدمات"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "تثبيت محمِّل الإقلاع"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "إعمل قرص إقلاع"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "تهيئة X"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "تثبيت تحديثات النظام"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "الخروج من التثبيت"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"?قد نكتب التّغييرات هذه للقرص. اعد اد كامل \n"
-" \n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, fuzzy, c-format
-msgid "Can't open %s: %s\n"
-msgstr "استءؚ"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "%sللكتابة %sلا يمكن أن ينفتح \n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr "لا, لا أحتاج الى DHCP"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr "نعم أحتاج الى DHCP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr "لا, لا أحتاج الى NTP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr "نعم أحتاج NTP"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr "لا تحفظ"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr "ؼحفظ و ا؎ع؏"
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "معالج إعداد الجدار الناري"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr "لا (امنع هذا من الإنترنت عن طريق الجدار الناري)"
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr "نعم (اسمح لهذا من خلال الجدار الناري)"
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr "يرجى الإنتظار... جاري التأكد من الحزم المثبتة"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "ويب/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "جهاز شبكة (عميل)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "خادم NFS, خادم SMB, خادم بروكسي, خادم ssh"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "أدوات المكتب"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "محطة عمل غنوم"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "أدوات لجهاز بالم بايلوت أو فايزور ألخاص بك"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "محطة عمل"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "جدتر ناري/موجِّه"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "خادم أسماء النطاثات و معلومات الشيكة"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"برامج مكتبية: معالجة الكلمات (kword, abiword), الجداول الحسابية (kspread, "
-"gnumeric) , برامج عرض pdf, الخ"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "أدوات صوتية: مشغلات mp3 أو midi, مازجات صوت, الخ"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "كتب و مذكرات 'كيف أعمل' حول لينكس و البرامج الحرة"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "محطو عمل كيدي"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, الخ"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "وسائط متعدددة - فيديو"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "مجموعة من الأدوات للبريد , الأخبار, الإنترنت, نقل الملفات, و المحادثة"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "قواعد البيانات"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "خادم قواعد البيانات PostgreSQL أو MySQL"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "أدوات لتسهيل إعداد جهازك"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "وسائط متعددة - صوت"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "أدوات خدمية"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "وثائق المساعدة"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "أدوات سطر الأوامر"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "خادم البريد Postfix, خادم الأخبار Inn"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "محطة انترنت"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "محطة وسائط متعددة"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "أدوات الإعدادات"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "أسطح مكتب رسومية أكثر (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"بيئة سطح مكتب كيدي, البيئة الرسومية الأساسية مع مجموعة من الأدوات المصاحبة"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "بيئات رسومية"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "أدوات لعمل و نسخ الأقراص"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "محطة عمل مكتبية"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "خادم"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, الخ"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "برامج رسوميات مثل The Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "برامج و مكتبات تطوير C و C++"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "خادم شبكات"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "بريد/أدوات مجموعات/أخبار"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "محطة ألعاب"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "برامج تشغيل و تحرير الفيديو"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "وسائط متعددة - رسوميات"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "برامج التسلية: ألعاب فيديو, ألعاب لوحات, ألعاب ستراتيجية, الخ"
-
-#: ../../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:999
-msgid "Archiving, emulators, monitoring"
-msgstr "الأرشفة, محاكيات, أدوات مراقبة النظام"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "الميزانية الشخصية"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"بيئة رسومية مع مجموعة من التطبيقات و أدوات سطح المكتب المناسبة للمستخدمين "
-"العاديين"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "عملاء لبروتوكولات مختلفة مثل ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "بوابة انترنت"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "برامج تحرير/تشغيل الفيدية و الصوت"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "أسطخ مكتب رسومية أخرى"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "محررات نصوص, أغلفة, أدوات ملفات, طرفيات"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "برامج لإدارة ميزانيتك مثل gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "ادارة المعلومات الشخصية"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "وسائط متعددة - نسخ أقراص"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "محطة عمل علمية"
-
-#~ msgid "About"
-#~ msgstr "حول"
-
-#~ msgid " Help "
-#~ msgstr " مساعدة "
-
-#~ msgid "None"
-#~ msgstr "ولا واحدة"
-
-#~ msgid "Choose a default printer!"
-#~ msgstr "اختر الطابعة الافتراضية:"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "يمكنك الآن اعطاء الخيارات للوحدة %s"
-
-#~ msgid "mount failed"
-#~ msgstr "فشل التحميل"
-
-#~ msgid "Low"
-#~ msgstr "منخفض"
-
-#~ msgid "Medium"
-#~ msgstr "متوسط"
-
-#~ msgid "Export"
-#~ msgstr "تصدير"
-
-#~ msgid "click here"
-#~ msgstr "انقر هنا"
-
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "تم التخقق من وجود %s, هل تريد اعداده؟"
-
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "رجاء اختر الطابعة التي تريد تهيئتها."
-
-#~ msgid "authentification"
-#~ msgstr "المصادقة"
-
-#~ msgid "user"
-#~ msgstr "المستخدم"
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "جاري مسح مصادر nfs المشتركة المتوفرة"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "جاري مسح مصادر nfs المشتركة المتوفرة للخادم %s"
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "جاري مسح مصادر samba المشتركة المتوفرة"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "جاري مسح مصادر samba المشتركة المتوفرة للخادم %s"
-
-#~ msgid "\\@quit"
-#~ msgstr "\\@؎عو؏"
-
-#~ msgid "Removable media"
-#~ msgstr "وسائط قابلة للإزالة"
-
-#~ msgid "Active"
-#~ msgstr "نشط"
-
-#~ msgid "No X"
-#~ msgstr "لا X"
-
-#~ msgid " Linux "
-#~ msgstr " لينكس "
-
-#~ msgid " System "
-#~ msgstr " نظام "
-
-#~ msgid " Other "
-#~ msgstr " أخرى "
-
-#~ msgid "please choose your CD space"
-#~ msgstr "رجاء اختر مساحة القرص المدمج"
-
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-
-#~ msgid " Tape "
-#~ msgstr " الشريط "
-
-#~ msgid " Cancel "
-#~ msgstr " إلغاء "
-
-#~ msgid " Ok "
-#~ msgstr " موافق "
-
-#~ msgid "close"
-#~ msgstr "إغلاق"
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "لم يمكن فتح /etc/sysconfig/autologin للقراءة: %s"
-
-#~ msgid "New"
-#~ msgstr "جديد"
-
-#~ msgid "Remote"
-#~ msgstr "بعيد"
-
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr ""
-#~ "فضلا اضغط الزر بالأعلى\n"
-#~ "\n"
-#~ "أو استخدم \"جديد\""
-
-#~ msgid "Use \"New\""
-#~ msgstr "استخدم \"جديد\""
-
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr "اذا لم تتضمن القائمة المدخل المطلوب, قم بإدخاله هنا:"
-
-#~ msgid "Shared resource"
-#~ msgstr "مصدر مشترك"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
deleted file mode 100644
index fb71a4b28..000000000
--- a/perl-install/share/po/az.po
+++ /dev/null
@@ -1,12924 +0,0 @@
-# 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: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-06-09 23:30GMT +0200\n"
-"Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
-"Language-Team: Azerbaijani Turkish <linuxaz@azerimal.net>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.8\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Bütün başlıqları ayrı ayrı quraşdır"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Xinerama ifadələrini işlət"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Təkcə \"%s\" kartını qur (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Çoxlu Başlıq quraşdırılması"
-
-#: ../../Xconfigurator.pm_.c:250
-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:261
-msgid "Graphic card"
-msgstr "Ekran kartÄą"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Ekran kartĹnĹzĹ seçin"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Bir X vericisi seçin"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X verici"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Bir X vericisi seçin"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X verici"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Necə bir XFree qurğusunu istəyirsiniz?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"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"
-"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:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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Ə KOMPÜTERİNİZ DONDURA BILƏR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, 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:397
-#, 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 ""
-"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Ə KOMPÜTERİNİZ 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:417
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree quraşdırılması"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "X verici üçün seçənəkləri göstərin"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Monitorunuzu seçin"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"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:584
-msgid "Horizontal refresh rate"
-msgstr "Üfüqi yeniləmə sür'əti"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Şaquli yeniləmə sür'əti"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor qurulmayÄąb"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ekran kartı hələ qurulmayıb"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Rezolyusiya hələ seçilməyib"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Qurğuları sınamaq istəyirsiniz?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Diqqət: Bu qrafika kartı ilə ediləcək sınaq təhlükəlidir"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Qurğuların sınağı"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"bə'zi parametrləri dəyişdirin"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Bir xəta oldu:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d saniyə sonra çıxılacaq"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Bu qurğular doğrudur?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Bir xəta oldu, parametrləri dəyişdirin"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Rezolyusiya"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Rezolyusiya və rəng dərinliyini seçin"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Ekran kartÄą: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 verici: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Daha Çox"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Oldu"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Usta Modu"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Hamısını Göstər"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezolyusiyalar"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Klavatura düzülüşü: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Siçan nÜvß: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Siçan avadanlığı: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitorun Şaquli Daraması: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitorun Üfüqi Yeniləməsi: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Ekran kartÄą: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Ekran kartÄą: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Ekran kartı yaddaşı: %s KB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Rəng dərinliyi: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Rezolyusiya: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 verici: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 sĂźrĂźcĂź: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window qurğuları hazırlanır"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Nə etmək istəyirsiniz?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Monitoru Dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ekran kartını dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Verici seçənəklərini dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Rezolyusiyanı Dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mə'lumatı göstər"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Yenidən sına"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Çıx"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Mövcud qurğuları saxlayım?\n"
-"Hal-hazırkı qurğular:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X ilə Açılış"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Kompüterinizi avtomatik olaraq X ilə açılması üçün qura bilərəm.\n"
-"Açılışda X Window ilə başlamaq istəyirsiniz?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "\"%s\"a(ə) təkrar girin və dəyişiklikləri fəallaşdırın"
-
-#: ../../Xconfigurator.pm_.c:1625
-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_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 rəng (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 min rəng (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 min rəng (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milyon rəng (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milyard rəng (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB və ya daha çox"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standart VGA, 60 Hz-də 640x480 "
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 56 Hz-də 800x600"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Uyğun, 87 Hz-də titrəşimli 1024x768 (800x600 yox)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-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:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Təkmilləşdirilmiş Super VGA, 60 Hz-də 800x600, 72 Hz-də 640x480"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-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:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Yüksək Frekanslı SVGA, 70 Hz-də 1024x768"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Çoxlu Frekansa qadir 60 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Çoxlu Frekansa qadir 74 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Çoxlu Frekansa qadir 76 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "70 Hz də 1600x1200 qadir Monitor"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "76 Hz də 1600x1200 qadir Monitor"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Açılış qisminin ilk sektoru"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Diskin ilk sektoru (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO Qurulumu"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Sistem yükləyicisini haraya qurmaq istəyirsiniz?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/grup Qurulumu"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "Mətn menyulu LILO"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "Qrafiki menyulu LILO"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "DOS/Wİndowsdan açĹl (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Sistem yükləyicisi ana seçənəkləri"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "İstifadə ediləcək Açılış idarəcisi"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Açılış yükləyici quruluşu"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Açılış avadanlığı"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (köhnə BIOSlarda işləməz)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Bəsit"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "bəsit"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Ekran modu"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Açılışda gecikmə müddəti"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Parol"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Parol (təkrar)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Əmr sətiri seçənəklərini məhdudlaşdır"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "məhdudlaşdır"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "/tmp-i hər açılışda təmizlə"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Ümumi yaddaş miqdarı (%d MB tapıldı)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Birdən artıq profilə icazə ver"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Yaddaş miqdarını Mb cinsindən verin"
-
-#: ../../any.pm_.c:191
-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:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Xahiş edirik təkrar sınayın"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Parollar uyğun gəlmir"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Ä°nit Ä°smarÄącÄą"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Firmware Gecikməsini Aç"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Çəkirdək Açılışı Vaxt Dolması"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "CDdən Açılışı Fəallaşdırım?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "OF Açılışı Fəallaşdırım?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Əsas OS"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Buradakı bir birindən fərqli seçənəklərə yenilərini əlavə edə bilər,\n"
-"ya da mövcud olanları dəyişdirə bilərsiniz."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Əlavə et"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "QurtardÄą"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Təkmilləşdir"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Ne cür bir giriş istəyirsiniz?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linuks"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Digər sistemlər (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Digər sistemlər (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Digər sistemlər (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Əks"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "KĂśk"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Sonuna əlavə et"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Oxu-yaz"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Cədvəl"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "E'tibarsÄąz"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Etiket"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Əsas"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd bĂśyĂźklĂźyĂź"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "NoVÄ°deo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Girişi sil"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Boş etiket qəbul edilə bilməz"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Bir swap sahəsinə ehtiyacınız var"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Bu etiket istifadə edilməz"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s %s ara ĂźzĂź tapÄąldÄą"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Başqa var?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Heç %s ara ßzß var?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Xeyr"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Bəli"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-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:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "%s kartı (%s) üçün sürücü yüklənir"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "HansÄą %s sĂźrĂźcĂźsĂź sÄąnansÄąn?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"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ək mi 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:720
-msgid "Autoprobe"
-msgstr "Avtomatik yoxla"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Seçənəkləri göstər"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"İstəsəniz indi %s modulunun parametrlərini göstərə bilərsiniz.\n"
-"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
-"Məsələn ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modul seçənəkləri:"
-
-#: ../../any.pm_.c:745
-#, 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"
-"Yenidən başqa bir parametr ilə sınamaq istəyirsiniz?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s artıq əlavə edilmişdir)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Zəif parol seçdiniz!"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Xahiş edirik bir istifadəçi adı alın"
-
-#: ../../any.pm_.c:776
-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:777
-msgid "This user name is already added"
-msgstr "Bu istifadəçi adı artıq vardır"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "İstifadəçini əlavə et"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Bir istifadəçi girin\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "İstifadəçini qəbul et"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Həqiqi adı"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "İstifadəçi adı"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "QabÄąq"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Timsal"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Avtomatik Giriş"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Kompüterinizi avtomatik olaraq bir istifadəçi ilə başlada bilərəm.\n"
-"İstəmirsiniz isə rədd edin."
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Əsas istifadəçini seçin:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-
-#: ../../any.pm_.c:851
-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"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "HamÄąsÄą"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "İstifadəçi əlavə et"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "XĂźsusi"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "CUPS başlayır"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"Bu paket yenilənməlidir\n"
-"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Ləğv et"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Krakerlərə xoşgəlmişsiniz"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Zəif"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standart"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Yüksək"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Yüksək"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Şübhəci"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Bu səviyyə RAID'i diqqətli istifadənizi tövsiyə edirik. Sisteminiz daha "
-"asand\n"
-"işlədiləcək, ancaq xətalara qarşı da həssaiyyəti də artacaqdır. İnternetə \n"
-"bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Parollar fəallaşdırıldı, yenə də bir şəbəkə üstündə istifadə edilməməsi "
-"tövsiyə edilir."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"İnternetə bağlı bir kompüter üçün standart və tövsiyə edilən bir "
-"təhlükəsizlik səviyyəsidir."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Bu təhlükəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
-"mĂźmkĂźndĂźr. \n"
-"Təhlükəsizlik, birdən çox alıcının bağlanmasına icazə verəcək şəkildə "
-"artırılmışdır. "
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Biz dördüncü səviyyə haqları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."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Təhlükəsizlik səviyyəsini seçin"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "X verici üçün seçənəkləri göstərin"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"%s emeliyyat sistemi secki proqramina xos gəlmissiniz!\n"
-"\n"
-"Içlerinden birini acmaq ucun adini yazin ve <ENTER>\n"
-"duymesine basin ve ya esas acilis ucun %d saniye gozleyin.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Emeliyyat 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
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "%c ve %c duymeleri ile isÄąqlandÄąrÄąlmÄąs girisleri sece bilersiniz"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr ""
-"acilisdan evvel emrleri duzeltmək ucun 'e', emr setiri ucun ise '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
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "/boot içində lazımi yer yoxdur"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Masa Üstü"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Başlama Menyusu"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Sistem yükləyicisini haraya qurmaq istəyirsiniz?"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "hələlik yardım 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 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Fayl"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Fayl/Çı_x"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>x"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "NewStyle KateqoriyasÄąndan Monitor"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "NewStyle Monitor"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Ənənəvi Monitor"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Ənənəvi Gtk+ Monitor"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Açılışda Auroranı başlat"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub modu"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot modu"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Açılış İdarəçisi olaraq hazırda %s işlədirsiniz.\n"
-"Quraşdırma sehirbazını başlatmaq üçün tıqlayın."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Qur"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Sistem modu"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Açılışda X-Window sistemini başlat"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Xeyr, Avtomatik giriş istəmirəm"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-"Bəli, bu istifadəçi üçün avtomatik giriş istəyirəm (istifadəçi, masa üstü)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "Oldu"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "/etc/inittab oxunmaq ßçßn açĹla bilmir: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr ""
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr ""
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr ""
-
-#: ../../common.pm_.c:114
-#, fuzzy, c-format
-msgid "%d seconds"
-msgstr "%d saniyə sonra çıxılacaq"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Artıq bölmə əlavə edilə bilməz"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "France"
-msgstr "FransÄązca"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Belçika dili"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-#, fuzzy
-msgid "Germany"
-msgstr "Almanca"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Yunanca"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Norveçcə"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "İsveçcə"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Ä°talyanca"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "serial"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Əvvəlcə datanızın yedəyini alın"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Diqqətlə Oxuyun!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Aboot istifadə etməyi istəyirsinizsə, boş disk sahəsi (2048 sektor bəsdir.)\n"
-"buraxmayÄą unutmayÄąn."
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Xəta"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Sehirbaz"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Monitorunuzu seçin"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-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 böyüklüyünü dəyişdirməyinizi\n"
-"tövsiyə edirik. Əvvəlcə bölmənin üstünə, sonra \"Böyüklüyü\n"
-"Dəyişdir\" düyməsinə tıqlayın"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Ətraflı"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "bağlama iflas etdi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Boş"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Digər"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Fayl sistemi nĂśvĂź:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Yarat"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "NĂśv"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Yerinə ``%s'' işlət"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Sil"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Əvvəlcə ``Ayır'-ı işlət"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, 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 mə'lumatlar "
-"silinəcəkdir"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Monitorunuzu seçin"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Yeni bölmə yarat"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Usta moduna keç"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Normal moda keç"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Geri al"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Davam edilsin?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Qeyd etmədən Çıx"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Bölmə cədvəlini qeyd etmədən çıxırsınız?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Qurğuları sınamaq istəyirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Avtomatik ayÄąr"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Hamısını təmizlə"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Sabit disk seçkisi"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Bütün birinci bölmələr istifadədədir"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Artıq bölmə əlavə edilə bilməz"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr "Artıq bölmə yaratmaq üçün, bir bölməni silib məntiqi bölmə yaradın"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Bölmə cədvəlini yaz"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Bölmə cədvəlini qurtar"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Bölmə cədvəlini qurtar"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Bölmə cədvəlini qurtar"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Taxılıb sökülə bilən avadanlıqların avtomatik bağlanması"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Fayl seç"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Yedək bölmə cədvəli eyni böyüklüyə sahib deyil\n"
-"Davam etmək istəyirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Xəbərdarlıq"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Disket sürücüyə bir disket yerləşdirin\n"
-"Bu disketdəki bütün mə'lumatlar yox olacaqdır"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Bölmə cədvəli qurtarılmağa cəhd edilir"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "Mə'lumatı göstər"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Bağlama nöqtəsi"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Seçənəklər"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Böyüklüyünü Dəyişdir"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Daşı"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Şəkilləndir"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Bağla"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "RAIDə əlavə et"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "LVMə əlavə et"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "AyÄąr"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "RAIDdən ayır"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "LVMdən ayır"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "RAIDi dəyişdir"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Loopback üçün istifadə et"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Yeni bölmə yarat"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Başlanğıç sektoru: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "MB cinsindən böyüklük: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Fayl sistemi nĂśvĂź: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Bağlama nöqtəsi: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Xüsusiyyətlər: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Loopback faylı şəkilləndirilir: %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Bölmə növünü Dəyişdir"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Hansı dili istəyirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "%s loopback avadanlığını haraya bağlamaq istəyirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Bu disk bölməsi loopback üçün istifadə edildiyindən ötrü bağlanma "
-"nöqtəsindən ayrıla bilinmir.\n"
-"Əvvəlcə loopback-ı ləğv edin."
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Fat fayl sistemi uclarÄą hesaplanÄąr"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Böyüklüyü dəyişdirilir"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Hansı bölmə növünü istəyirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Bu bölmədəki bütün mə'lumatlar yedəklənməlidir"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"%s bölməsi böyüklüyü dəyişdirildirkdən sonra bu bölmədəki bütün mə'lumatlar "
-"silinəcəkdir"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Yeni bÜyßklßk seçin"
-
-#: ../../diskdrake/interactive.pm_.c:622
-#, fuzzy
-msgid "New size in MB: "
-msgstr "MB cinsindən böyüklük: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Hansı diskə daşımaq istəyirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Hansı sektora daşımaq istəyirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Daşınır"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Bölmə daşınır..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Əlavə etmək üçün mövcud bir RAID seçin"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "yeni"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Əlavə etmək üçün mövcud bir LVM seçin"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "LVM adÄą?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Bu disk bölməsi loopback üçün işlədilməz"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Loopback fayl adÄą: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Həqiqi adı"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr ""
-"Fayl başqa bir loopback tərəfindən istifadədədir, başqa\n"
-"birini seçin"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Fayl onsuz da vardır. İşlədilsin?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-#, fuzzy
-msgid "Mount options"
-msgstr "Modul seçənəkləri:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "avadanlÄąq"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "səviyyə"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "parça bÜyßklßyß"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Diqqətlı olun: bu əməliyyat təhlükəlidir."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Nəcə bölməlandirmə istəyirsən?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Bağışlayın, /boot bölməsini bu sürücüdə yarada bilməyəcəm.\n"
-"Onda ya LILO istifadə edə bilməyəcəksiniz ve /boot bölümünə \n"
-"ehtiyacınız yoxdur və ya LILO istifadəsini sınayarsınız, ancaq LILO işləməyə "
-"bilər."
-
-#: ../../diskdrake/interactive.pm_.c:928
-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. silindrin xaricində)\n"
-"/boot bölümünüz yoxdur. Lilo açılış idarəcisindən istifadə etmək "
-"istəyirsinizsə, \n"
-"/boot bölməsini əlavə edərkən çox diqqətli olmalısınız."
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Bir proqram tə'minatlı RAID bölməsini kök qovluğu (/) olaraq tə'yin "
-"etdiniz.\n"
-"Əgər lilo ya da grub istifadə etmək istəyirsinizsə, bir /boot bölməsi\n"
-"əlavə etməyi unutmayın"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "%s sürücüsünün bölmə cədvəli diskə yazılacaq!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Yeni qurğuların fəallaşmağı üçün sistemi yenidən başlatmalısınız"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"%s bölməsi şəkilləndirildikdən sonra bu bölmədəki bütün mə'lumatlar "
-"silinəcəkdir"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Şəkilləndirilir"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Loopback faylı şəkilləndirilir: %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Şəkilləndirilən bölmə: %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid iflas etdi"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Rezolyusiya: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "AvadanlÄąq: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS sürücü hərfi: %s (sadəcə təxmini)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "NĂśv: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Ad: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Başlanğıc: sektor %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "BĂśyĂźklĂźyĂź: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektor"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Silindr %d -dən silindr %d-yə\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Şəkilləndirilmiş\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Şəkilləndirilməmiş\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Bağlı\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Loopback faylÄą:\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Ana açılma bölməsi\n"
-" (MS-DOS açılışı üçün)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Səviyyə %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Parça bÜyßklßyß %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-diskləri %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Loopback faylÄą adÄą: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-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/interactive.pm_.c:1076
-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/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "BĂśyĂźklĂźk: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometriyası: %s silindr, %s baş, %s sektor\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Mə'lumat: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-diskləri %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Bölmə cədvəli növü: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "%d data yolunda, %d nĂś'li\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Seçənəklər: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Fayl sistemi nĂśvĂź: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Parollar uyğun gəlmir"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "Bölmə növünü Dəyişdir"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "DNS verici"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s şəkilləndirilməsində %s bölmə xətası"
-
-#: ../../fs.pm_.c:548
-#, 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:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "%s ayrılırkən xəta oldu: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "bəsit"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "verici"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "16MB dən kiçik disk bölmələrində JFS istifadə etməlisiniz"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "32MB dən kiçik disk bölmələrində ReiserFS istifadə etməlisiniz"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Bağlama nöqtələri / ilə başlamalıdır"
-
-#: ../../fsedit.pm_.c:478
-#, 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:482
-#, 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:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Bu bağlama nöqtəsi üçün həqiqi bir fayl sisteminə (ext2, reisrfs)\n"
-"ehtiyac vardÄąr.\n"
-
-#: ../../fsedit.pm_.c:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "%s üçün LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Avtomatik yerləşdirmə üçün boş sahə yoxdur"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Yazmaq üçün açılan %s'də xəta: %s"
-
-#: ../../fsedit.pm_.c:697
-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. Yeni fayl sisteminin yaradılacağı hökmlü bir sürücü "
-"tapılmadı. Bu problemin qaynağı üçün avadanlığınızı yoxlayın"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Heç disk bölməniz yoxdur!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Yuxarıda sürücünüzdə tapılan Linuks 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 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 Linuks\n"
-"bölməniz var isə).\n"
-"\n"
-"\n"
-"Xəbəriniz olsun, hər bölmə aşağıdakı kimi sıralanıb: \"Ad\", \"Həcm\".\n"
-"\n"
-"\n"
-"\"Ad\" belə kodlanıb: \"sürücü növü\", \"sürücü mömrəsi\",\n"
-"\"bölmə nömrəsi\" (məsələn \"hda1\").\n"
-"\n"
-"\n"
-"\"Sürücü növü\" əgər sürücünüz IDE sürücüdürsə \"hd\"dirvə SCSI sürücü isə "
-"\"sd\"dir.\n"
-"\n"
-"\n"
-"\"Sürücü nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir.IDE "
-"sürücülər üçün:\n"
-"\n"
-"*\"a\" yəni \"birinci IDE idarəcisində ali sürücü\",\n"
-"\n"
-"*\"b\" yəni \"birinci IDE idarəcisində kölə sürücü\",\n"
-"\n"
-"*\"c\" yəni \"ikinci IDE idarəcisində ali sürücü\",\n"
-"\n"
-"*\"d\" yəni \"ikinci IDE idarəcisində kölə sürücü\".\n"
-"\n"
-"\n"
-"SCSI sürücülərində \"a\" nın mənası \"birinci sürücü\",\n"
-"\"b\"nin mənası \"ikinci sürücü\"dür vs..."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-#, fuzzy
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"İndi, açılışda avtomatik olaraq başlamasını istədiyiniz xidmətləri \n"
-"seçə bilərsiniz. Siçan bir maddənin üzərina gəldiyində o xidmətin rolunu "
-"açĹqlayan\n"
-"kiçik bir baloncuq ortaya çĹxacaqdĹr.\n"
-"\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:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-#, fuzzy
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Bu nöqtədə Linuks Mandrakeni sabit diskinizdə haraya quracağınıza\n"
-"qərar verəcəksiniz. Əgər diskiniz boş isə və ya bir başqa sistem\n"
-"bütün yeri doldurmuş isə, o zaman diskinizdə Linuks Mandrake üçün\n"
-"yer açmalısınız. Ona görə də diski bölmələndirməlisiniz.\n"
-"Bölmələndirmə əsasən diskinizdə məntiqi sürücülər yaratmaqdan ibarətdir.\n"
-"\n"
-"Ümumiyyətlə bölmələndirmənin təsiri geri dönülməzdir.Ona görə də\n"
-"bu iş çox gərgin və yorucudur. Əgər özünüzə inanmırsınız isə bu\n"
-"sehirbaz sizə yardım edər. Başlamadan əvvəl xahiş edirik əl kitabçanıza\n"
-"baxın. Və bu iş üçün bir az vaxt ayırın.\n"
-"\n"
-"\n"
-"Sizə ən az 2 bölmə lazımdır. Biri sistemin özünü köçürməsi üçü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ə 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"
-"Sisteminizin quruluşundan asılı olaraq müxtəlif imkanlarınız var:\n"
-"\n"
-"* Bßtßn diski sil: Linuks Mandrake qurmaq ßçßn bßtßn diskinizin\n"
-" üzərindəki bölmələri silər. Burada diqqətli olun.\n"
-" Sildikləriniz əsla geri gəlməz.\n"
-"\n"
-"\n"
-"* Windows bölməsindəki sahəni istifadə et: Sisteminizdə\n"
-" Microsoft Windows qurulu isə ve bütün diski əhatə edir isə\n"
-" Linuks Mandrake ßçßn bir yer ayĹrmalĹsĹnĹz. Bunun ßçßn\n"
-" ya bütün diski silməlisiniz (\"Bütün diski sil\" bax ya da\n"
-" \" 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"
-" eyni kompüterdə həm Linuks Mandrake həm də Windows qurulu olmasıdır.\n"
-"\n"
-"\n"
-"t Bu seçkiyə getmədən əvvəl bir şeyi başa düşməlisiniz ki, yenidən "
-"bölmələndirmə ilə sizin Windows bölməsi kiçiləcəkdir.\n"
-" Yə'ni Windows altında daha az disk sahəsinə malik olacaqsınız.\n"
-"\n"
-"\n"
-"* Usta modu: Əgər əllə diski bölmək istəsəniz, bu modu seçin. Diqqətli "
-"olun.\n"
-" Bu mod güçlüdür amma bir o qədər də təhlükəlidir. Diskinizdəki bütün "
-"bilgiyi asandlıqla itirə bilərsiniz.\n"
-" Təcrübəsiz isəniz bunu seçməyin."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-#, fuzzy
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Yeni yaradılan bütün bölmələr şəkilləndirilməlidir\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 "
-"şəkilləndirmək istəya\n"
-"bilərsiniz.\n"
-"Bunu istəyirsinizsə bu bölmələri də seçməlisiniz.\n"
-"\n"
-"\n"
-"Bunu ağlınızda tutun ki var olan bütün bölmələri şəkilləndirmək\n"
-"məcburi deyil.\n"
-"İşlətim sistəmini əmələ gətirən bölmələri (yəni\n"
-"\"/\", \"usr\" və ya \"var\"ı yenidən şəkilləndirmək üçün\n"
-"seçə bilərsiniz. Verilər olan \"home\"u məsələ toxunulmadan\n"
-"buraxa bilərsiniz.\n"
-"\n"
-"\n"
-"Diqqətli olun. şəkilləndirdiyiniz bölmələrdəki verilər\n"
-"geri gəlməz.\n"
-"\n"
-"\n"
-"Şəkilləndirməyə hazır isəniz \"Oldu\" düyməsini tıqlayın.\n"
-"\n"
-"\n"
-"Yeni Linuks Mandrake sisteminizi qurmaq üçün başqa bölmə seçmək\n"
-"istəyirsiniz isə \"Ləğv et\" düyməsinə basın."
-
-#: ../../help.pm_.c:404
-#, fuzzy
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Təptəzə Linuks Mandrake sisteminizə qurulacaq. Bu da seçdiyiniz\n"
-"yükləmə böyüklüyünə və sistəminizin qabiliyyətinə görə\n"
-"bir neçə deqiqə alar.\n"
-"\n"
-"\n"
-"Xahiş edirik, səbrli olun."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-#, fuzzy
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Bu nöqtədə siz Linuks Mandrake yükləmək üçün bölmələri seçməlisiniz. Əgər "
-"əvvəldən bölmələr var isə (sistemdə əvvəllər qurulu olan GNU/Linuks "
-"bölmələri və ya başqa bölmələndirmə vasitələri ilə hazırladığınız bölmələr), "
-"onları seçin və istifadə edin.\n"
-"Yoxsa onları bildirməlisiniz.\n"
-"\n"
-"\n"
-"Bölmələri yaratmaq üçün əvvəlci diski seçməlisiniz.\n"
-"Diski seçmək üçün birinci IDE sürücüsü üçün \"hda\" nı, ikinciyi seçmək üçün "
-"\"hdb\"ni, birinci SCSİ sßrßcßsß ßçßn ise \"sda\" vs tĹqlamalĹsĹnĹz.\n"
-"\n"
-"\n"
-"Seçdiyiniz sürücüyə aşağıdakıları etməyə qadirsiniz:\n"
-"\n"
-" *Hamısını təmizlə: seçili sürücüdə bütün bölmələri silər.\n"
-"\n"
-"\n"
-" *Avtomatik: Sürücünüzdəki boş sahədə Ext2 və Swapbölmələrini avtomatik\n"
-"yaradar.\n"
-"\n"
-"\n"
-" *Bölmə cədvəlini qurtar: Zədələnmiş bölmə cədvəlinibərpa edər. Xahiş "
-"edirik\n"
-" diqqətli olun, çünkü bu da iflas edə bilər.\n"
-"\n"
-"\n"
-" *Gəri dön: İstəmədiyiniz seçkilərinizdən geri döndərər.\n"
-"\n"
-"\n"
-" *Yenidən yüklə: Bütün dəyişikliklərinizdən geri dönərbaşdakı bölmə "
-"cədvəlinə gələr.\n"
-"\n"
-"\n"
-" *Sehirbaz: Bölmələndirməyi bir sehirbaz edər. Təcrübəsizisəniz bunu "
-"seçin.\n"
-"\n"
-"\n"
-" *Floppy-dən bərpa et: Bölmə cədvəlini əvvəllər flopy-yə qeydetdiniz isə, "
-"bölmə cədvəlini bərpa edin.\n"
-"\n"
-"\n"
-" *Floppy-yə qeyd et: Daha sonradan bərpa etmek üçünbilgiləri floppy-yə qeyd "
-"edin.\n"
-" Bu seçki şiddətlə tövsiyə edilir.\n"
-"\n"
-"\n"
-" *Oldu: Bölmələndirmə bitdiyində, bunu seçərəkdəyişikliklərinizi qeyd "
-"edin.\n"
-"\n"
-"\n"
-"Xəbəriniz olsun, istənilən seçkiyə Tab ve Aşağı/Yuxarı oxlarını da işlədərək "
-"klaviaturadan idarə edə bilərsiniz.\n"
-"\n"
-"\n"
-"Bölmə seçildiyi zaman bunları işlədə bilərsiniz:\n"
-"\n"
-" *Ctrl-c yeni bölmə yaratmaq üçün (boş bölmə seçili olduğu zaman)\n"
-"\n"
-" *Ctrl-d bölməni ləğv etmək üçün\n"
-"\n"
-" *Ctrl-m bağlama nöqtəsini göstərmək üçün\n"
-"\n"
-"\n"
-"\n"
-"Əgər PPC kompüterdə qurulum aparırsınızsa, ən az 1 MBlıq balaca bir HFC "
-"'bootstrap' bölməsini yaboot açılış yükləyicisi üçün seçmək istəyəcəksiniz.\n"
-"Əgər daha çox yeriniz varsa ; məsələn 50 MB, onda bütün kernel və ramdisk "
-"əksini təcili açılış halları üçün saxlaya bilərsiniz."
-
-#: ../../help.pm_.c:513
-#, fuzzy
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Sürücünüzdə bir və ya daha çox Windows bölməsi tapıldı.\n"
-"Xahiş edirik Linuks Mandrakeni qurmaq üçün onlardan birini "
-"yenidənölçüləndirmək üzərə seçin.\n"
-"\n"
-"\n"
-"Xəbəriniz olsun, her bölmə bu cür sıralanıb; \"Linuks adı\",\"Windows\n"
-"adı\"\"Həcm\".\n"
-"\n"
-"\"Linuks adı\" bu cür kodlanıb: \"sürücü növü\", \"sürücü nömrəsi\",\"bölmə "
-"nömrəsi\" (məsələn, \"hda\").\n"
-"\n"
-"\n"
-"\"Sürücü növü\" sürücünüz IDE sürücü isə \"hd\"dirSCSI sürücü isə\n"
-"\"sd\"dir.\n"
-"\n"
-"\n"
-"\"Sürücü nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir.IDE "
-"sürücülər üçün:\n"
-"\n"
-"*\"a\" yəni \"birinci IDE idarəcisində ali sürücü\",\n"
-"\n"
-"*\"b\" yəni \"birinci IDE idarəcisində kölə sürücü\",\n"
-"\n"
-"*\"c\" yəni \"ikinci IDE idarəcisində ali sürücü\",\n"
-"\n"
-"*\"d\" yəni \"ikinci IDE idarəcisində kölə sürücü\".\n"
-"\n"
-"\n"
-"SCSI sürücülərində \"a\" nın mənası \"birinci sürücü\",\n"
-"\"b\"nin mənası \"ikinci sürücü\"dür vs..."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Səbrli olun. Bu əməliyyat bir neçə deqiqə sürə bilər."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Xahiş edirik Linuks Mandrakenin daha əvvəlki buraxılışları qurulu deyilsə və "
-"ya müxtəlif əməliyyat sistemlərindən istifadə etmək istəyirsinizsə \"Yüklə\" "
-"seçin.\n"
-"\n"
-"\n"
-"Xahiş edirik qurulu olan Linuks Mandrakenin əvvəlki buraxılışını güncəlləmək "
-"istəyirsinizsə \"Güncəllə\" seçin.\n"
-"\n"
-"\n"
-"Sizin GNU/Linuks biliyinizdən asılı olaraq yükləmək və ya güncəlləmək üçün "
-"Linuks Mandrakenin aşağıdakı səviyyələrini seçə bilərsiniz:\n"
-"\n"
-"* Tövsiyə edilən: Əgər əvvəlcə heç GNU/Linuks ilə tanış olmadınız isə seçin. "
-"Yükləmə çox asand olacaq və çox az sual soruşulacaq.\n"
-"\n"
-"\n"
-"* Xüsusi: Əgə əvvəlcə GNU/Linuksa bir az aşina isəniz, seçin. Onda siz "
-"istədiyiniz sistem növünü (Masa üstü, Verici, Təcrübi) seçə biləcəksiniz.\n"
-" Əlbətdə sizə \"Tövsiyə edilən\" seçkidən daha çox sual soruşulacaq.\n"
-" Ona görə də GNU/Linuksa bir az aşina olmalısınız.\n"
-"\n"
-"\n"
-"* Usta: Əgər yaxşı bir GNU/Linuks biliyinə sahibsəniz, bu sinifi seçin.\n"
-" \"Xüsusi\" sinifindəki kimi işlədəcəyiniz sistemi (Masa üstü, Verici, "
-"Təcrübi)\n"
-" seçə biləcəksiniz. Amma sizi çox çətin suallar gözləyir. Bəzən bu sualların "
-"içindən\n"
-" çıxa bilmək çox zəhmətli olur. Ona görə də nə etdiyinizi bilirsəniz, bu "
-"sinifi seçin."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-#, fuzzy
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Xahiş edirik doğru qapını seçin. Məsələn, MS Windowsdakı COM1'in qarşılığı\n"
-"Linuksda ttyS0'dÄąr."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (Linuks Yükləyici) və Grub açılış sistem yükləyiciləridir: sistemi "
-"Linuks\n"
-"ya da kompüterinizdə olan başqa bir əməliyyatiyle aça bilərlər.\n"
-"Əsasən bu digər əməliyyat sistemləri doğru bir şəkilde təsbit edilib "
-"açılışa\n"
-"qurula bilərlər. Əgər bir problem olarsa, buradan əllə əlavə edilə "
-"bilərlər.\n"
-"Parametrlər mövzusunda diqqətli olun."
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Linuksu açmaq üçün lazımi bilgilərin harada saxlanılacağına qərar verin.\n"
-"\n"
-"Nə etdiyinizi bilmirsinizsə, \"Diskin ilk sektoru (MBR)\" seçin."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX PCI SCSI adapterleri axtarmağa cəhd edəcək. Əgə DrakX SCSI\n"
-"taparsa və hansı sürücü işlədiləcəyini bilərsə, her şey öz özünə\n"
-"qurulacaq.\n"
-"\n"
-"\n"
-"Əgər sisteminizdə SCSI adapteri yoxsa, DrakXin tanımayacağı bir\n"
-"ISA SCSI və ya PCI SCSI adapteri var isə, sizə sisteminizdə SCSI\n"
-"adapteri olub olmadığı soruşulacaq.\n"
-"Əgər SCSI adapteriniz yox isə, \"Yox\" tıqlayın. Əgər \"Var\"ı "
-"tÄąqlayarsanÄąz.\n"
-"qarşınıza sürücüləin siyahısı çıxacaq, oradan sizə uyanını seçərsiniz.\n"
-"\n"
-"\n"
-"Əgər əllə qurmağı səçərsəniz, o zaman DrakX sizə adapterin xüsusiyyətlərini\n"
-"soruşacaq. İmkan verin ki, DrakX sərbəstcə özü xüsusiyyətləri tapsın.\n"
-"Çoxunda bu işə yarayır.\n"
-"\n"
-"\n"
-"Əgər istəmirsəniz isə, o zaman adapter üçün xüsusiyyətləri özünüz\n"
-"göstərməlisiniz. Bunun üçün İstifadəçinin Əl Kitabçasına\n"
-"(başlıq 3, \"Avadanlığınız üçün kollektiv mə'lumat) bölməsinə\n"
-"baxın. Ya da avadanlığınızın əl kitabçasından və ya\n"
-"veb səhifəsindən (Əgər internetə çıxışınız var isə)\n"
-"ya da Microsoft Windowsdan (Əgər sisteminizdə qurulu isə)\n"
-"mə'lumat alın."
-
-#: ../../help.pm_.c:784
-#, fuzzy
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"Burada yaboot üçün həm başqa əməliyyat sistemləri, həm alternativ "
-"kernellər,\n"
-" ya da təcili yardım açılış əksləri əlavə edə bilərsiniz.\n"
-"\n"
-"\n"
-"Başqa OSlər üçün girişin mənası ad və kök çığırından ibarətdir.\n"
-"\n"
-"\n"
-"Linuks üçün mühtəməl girişlər bunlar ola bilər: \n"
-"\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 video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-"\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 əməliyyat 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:830
-#, fuzzy
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot NewWorld MacIntosh avadalığı üçün açılış idarəcisidir. Ayrıca\n"
-"GNU/Linuks, MacOS, və ya MacOSX sistemlərini kompüterinizdə varsa, "
-"açacaqdĹr.\n"
-"Normalda, bu əməliyyat 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, yabootda 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 Linuks 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ın?: 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:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-#, fuzzy
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Linuks Mandrakeni yükləmak üçün sürücüyü seçin.\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:896
-#, fuzzy
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Sürücüdəki bütün bilgiləri və bölmələri silmək üçün\n"
-"\"Oldu\" düyməsinə basın. Diqqətli olun,\"Oldu\" düyməsinə basdıqdan sonra\n"
-"Windows bilgiləri də daxil olmaq üzərəbütün bölmə mə'lumatı geri dönməyəcək "
-"şəkildə silinəcək.\n"
-"\n"
-"\n"
-"Bölmədəki mə'lumatları qoruyaraq \"Ləğv et\" düyməsinə\n"
-"əməliyyatı ləğv edə bilərsiniz."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"bu vericiləri seçdiniz: %s\n"
-"\n"
-"\n"
-"bu vericilər əsasən fəallaşdırılır. Onların heç bir təhlükəsizlik\n"
-"problemləri yoxdur, amma bə'zi xətalar tapıla bilər. Belə olsa, mümükün olan "
-"ən yaxın zamanda güncəlləməlisiniz.\n"
-"\n"
-"\n"
-"Bu vericiləri qurmaq istəyirsiniz?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "NİS domeyni olmadan translasiya işlədilə bilməz"
-
-#: ../../install_any.pm_.c:793
-#, 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:797
-msgid "This floppy is not FAT formatted"
-msgstr "Bu floppi FAT şəklində deyildir"
-
-#: ../../install_any.pm_.c:809
-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:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "%s faylı oxunurkan xəta oldu"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Sisteminizdaki bə'zi avadanlıqlar işləməsi üçün düzgün sürücülərə ehtiyac "
-"duyar.\n"
-"Bunun haqqında %s də/a lazımi malumatları tapa bilərsiniz"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Bir root disk bĂślĂźmĂźna ehtiyacÄąnÄąz var.\n"
-"Bunun üçün istər mövcud bir disk bölümü üzərina tıqlayın, \n"
-"ya da yeni birini başdan yaradın. Sonra \"Bağlama \n"
-"Nöqtəsi\"nə gəlin va burayı '/' olaraq dəyişdirin."
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Bir swap sahəsinə ehtiyacınız var"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Bir swap sahəniz yoxdur\n"
-"Davam edim?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Bir swap sahəsinə ehtiyacınız var"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Boş sahəni istifadə et"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Var olan bölmələri işlədimmi"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Bölmə cədvəli qurtarılmağa çalışılır"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Loopback üçün Windows bölməsini işlət"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Linuks4Win'i qurmaq üçün hansı disk bölməsini istifadə edəcəksiniz?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Böyüklüklərini seçin"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Kök (root) bölməsi böyüklüyü (Mb): "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Swap sahəsi böyüklüyü (Mb): "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Windows bölməsindəki boş sahəni işlət"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Hansı bölmənin böyüklüyünü dəyişdirəcəksiniz?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Fat fayl sistemi uclarÄą hesaplanÄąr"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"FAT tədqiqatçımız sizin bölümləri işlədə bilmir,\n"
-"bu xəta oldu: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Sizin Windows bölümü çox dağınıqdır. Daxiş edirik, əvvəlcə birləşdirin "
-"(defraq)"
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"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:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Hansı sektora daşımaq istəyirsiniz?"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "bölmə %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT böyüklüyü dəyişdirilməsi bacarılmadı: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr "FAT bölməsi yoxdur ya da loopback üçün lazımi yer buraxılmayıb"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "BĂźtĂźn diski sil"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "\"Windows\"u sil"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"Sizin birdən çox diskiniz var, linux qurmaq üçün hansını istifadə "
-"edəcəksiniz?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"%s bölüməsinin böyüklüyü dəyişdirildikdən sonra bu bölmədəki bütün "
-"mə'lumatlar silinəcəkdir"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Hazırkı disk bölmələndirməsi"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Fdisk istifadə et"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"İndi %s sabit diskinizi bölmələndirə bilərsiniz\n"
-"İşinizi bitirdiyinizdə `w' ilə qeyd etməyi unutmayın"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Heç Windows disk bölməniz yoxdur!"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Artıq bölmə əlavə edilə bilməz"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX bölmə sehirbazı bu yolu tapdı:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Bölmə cədvəli növü: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Şəbəkə fəallaşdırılır"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Şəbəkə dayandırılır"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Bir xəta oldu, fəqət necə düzəldiləcəyini bilmirəm.\n"
-"Davam edin, riski sizə aitdir!"
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "%s bağlama nöqtəsini çoxalt"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Bəzi paketlər doğru olaraq qurulumu bitirmədi.\n"
-"cdrom sürücünüz ya da cdromunuz düzgün işləmir.\n"
-"Əvvəldən Linuks qurulu bir sistemdə \"rpm -qpl Mandrake/RPMS/*.rpm\"'yi\n"
-"istifadə edərək Cd-Rom'u yoxlayın.\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "%s Sisteminə Xoşgəlmişsiniz"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Disket sĂźrĂźcĂź yoxdur"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Başlanğıc addımı `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Sizin sisteminizin qaynaqları çatışmır. Qurulum ərzində problem yaşaya "
-"bilərsiniz\n"
-"Bu baş verərsə mətn aracılığı ilə qurulumu sınamalısınız. Bunun üçün "
-"dəCDROMdan başlatdığınız zaman,\n"
-" 'F1'ə basın və 'text' yazaraq enter'ə basın."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Qurulum Sinifi"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Xahiş edirik aşağıdakı qurulum siniflərindən birisini seçiniz:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, 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:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Bu böyüklükdən daha azını yükləmək istəsəniz,\n"
-"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:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Sabit diskinizdə bu paketlərin sadəcə olaraq %d%%'sini quracaq qədər yer "
-"var.\n"
-"Bundan daha azını qurmaq istəsəniz,\n"
-"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:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Sonrakı addımda daha geniş bir seçki qabağınıza gələcəkdir."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Qurulacaq paketlərin faizi"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Paket Qrup Seçkisi"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Fərdi paket seçkisi"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Ümumi böyüklük: %d / %d Mb"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Xətalı paket"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Ad: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Buraxılış: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "BĂśyĂźklĂźyĂź: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Əhəmiyyət: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-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:422
-msgid "The following packages are going to be installed"
-msgstr "Aşağıdakı paketlər qurulacaqdır"
-
-#: ../../install_steps_gtk.pm_.c:423
-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:435
-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:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Bu lazımlı bir paketdir, sistemdən çıxardıla bilməz"
-
-#: ../../install_steps_gtk.pm_.c:449
-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:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Bu paket yenilənməlidir\n"
-"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Bu paketi sistemdən çıxarda bilməzsiniz. Yenilənməlidir"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Avtomatik seçili paketləri göstər"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Qurulum"
-
-#: ../../install_steps_gtk.pm_.c:466
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "Disketə qeyd et"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Paket seçkilərini saxla"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "Qurulumdan çĹx"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Qurmaq istədiyiniz paketləri seçin"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Qurulur"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Təxmini olaraq hesaplanır"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Qalan müddət"
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d paket"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "%s paketi qurulur"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Qəbul Et"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Rədd Et"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Cd-Romu dəyişdirin!\n"
-"\n"
-"\"%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:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Yenə də davam edək?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Paketləri istərkən bir xəta oldu:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Paketlər qurulurkən bir xəta oldu:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a şəbəkə. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Bir xəta oldu"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Lisenziya sözləşməsi"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Linuks-"
-"Mandrake distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Linuks-Mandrake distribution.\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 Linuks-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\", \"Linuks-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:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Klaviatura"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Klaviatura quruluşunu seçiniz."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "BĂźtĂźn mĂśvcud klaviaturalarÄąn siyahÄąsÄą"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Hansı qurulum sinifini istəyirsiniz?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Qurulum/Güncəlləmə"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Bu bir qurulum mu, yoxsa güncəlləməmidir?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Tövsiyə edilən"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Usta"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Güncəlləmə"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Paket seçkilərini saxla"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Xahiş edirik siçanınızın növünü seçin."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Siçan QapĹsĹ"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-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:281
-msgid "Buttons emulation"
-msgstr "Düymə emulyasiyası"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Düymə 2 emulyasiyası"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Düymə 3 emulyasiyası"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIA kartlar qurulur..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "IDE qapÄąlarÄą qurulur"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "uyğun bölmə tapılmadı"
-
-#: ../../install_steps_interactive.pm_.c:330
-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:338
-msgid "Choose the mount points"
-msgstr "Bağlama nöqtələrini seçin"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Bölmə cədvəlinizi oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
-"Xarab olmuş bolmələri düzəltməyə çalışacam.\n"
-"Amma bütün mə'lumatlar itəcəkdir.\n"
-"Başqa bir yol isə DrakXin bölmə cədvəllərini yoxlamasını "
-"passivləşdirməkdir.\n"
-"(xəta %s)\n"
-"\n"
-"Bütün bölmələri itirmək istəyirsiniz?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake bölmə cədvəlini oxumağı bacara bilmədi.\n"
-"Özünüz davam edə bilərsiniz."
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Kök (root) Bölməsi"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Sisteminizin kök (/) bölməsi hansıdır?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Bölmə cəvəlindəki dəyişikliklərin daxil olması üçün kompüterinizi yenidən "
-"başlatmalısınız."
-
-#: ../../install_steps_interactive.pm_.c:435
-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:436
-msgid "Check bad blocks?"
-msgstr "Xətalı bloklar sınansınmı?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Bölmələr şəkilləndirilir"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "%s faylı yaradılır və şəkilləndirilir"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Qurulumu bitirmək üçün lazımi sahə yoxdur, xahiş edirik əlavə edin"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Mövcud olan paketlər axtarılır."
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Güncəllənəcək paketlar tapılır"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, 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:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "HamÄąsÄą (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Ən az (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Tövsiyə edilən (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-#, fuzzy
-msgid "Load from floppy"
-msgstr "Disketdən geri çağır"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Loading from floppy"
-msgstr "Disketdən geri çağır"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Package selection"
-msgstr "Paket Qrup Seçkisi"
-
-#: ../../install_steps_interactive.pm_.c:578
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "%s sürücüsünə bir disket taxın"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Disketə qeyd et"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Seçili bÜyßklßk var olandan daha bÜyßkdßr"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Aşağıdakı siyahıdakı bütün CD'lərə sahib isəniz, OLDU'ya basın.\n"
-"CD'lərin heç birinə sahib deyilsəniz, İMTİNA ET'ə basın.\n"
-"CD'lərdən bə'ziləi əksik isə, onları seçili vəziyyətdən çıxardıb OLDU'ya "
-"basÄąn."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "\"%s\" adlÄą Cd-Rom"
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Qurulum hazÄąrlanÄąr"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"%s paketi qurulur\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Qurulum sonrası qurğular"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "%s sürücüsünə bir disket taxın"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"İndi şifrləmə üçün istifadə ediləcək tə'minatı endirə bilərsiniz.\n"
-"DİQQƏT:\n"
-"\n"
-"Bu tə'minata bə'zi fərqli ümumi ehtiyaclardan və müxtəlif\n"
-"mühakəmə haqlarından ötrü, bu tə'minatın son istifadəçisi, qanunların ona "
-"bu\n"
-"tə'minatı internetdən endirmə və saxlama haqqını verdiyindən əmin "
-"olmalÄądÄąr.\n"
-"\n"
-"Əlavə olaraq, müşdəri va/və ya son istifadəçi xüsusilə, yerləşdiyi mühakəmə "
-"yerinin\n"
-"qanunlarını çeynəmədiyindən əmin olmalıdır. Müşdəri və/və ya son istifadəçi\n"
-"qanunların əmr etdiyi şərtləri pozduğu zaman ciddi cəzalara\n"
-"mə'ruz qalacaqdır.\n"
-"\n"
-"Xüsusi ya da dolaylı zərərlərə (gəlir azalması, işin pozulması, ticari "
-"mə'lumat\n"
-"itkisi və digər maddi itkilər) yol açan heç bir hadisədə nə Mandrakesoft, nə "
-"də \n"
-"istehsalatçıları və/va ya qaynaq vericiləri məs'ul tutulmazlar. Bu "
-"tə'minatı\n"
-"internetden endirirkən son istifadəçi bu sözləşməyi qəbul etdiyini \n"
-"bəyan etmiş sayılır.\n"
-"\n"
-"\n"
-"Bu sözləşməylə əlaqədər hər cür sual üçün xahiş edirik\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA\n"
-"ĂźnvanÄąna yazÄąnÄąz."
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Əks ünvanına bağlantı qurulur"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Əks ünvanına bağlantı qurulur"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Sisteminiz hansı məqsədlə istifadə ediləcək?"
-
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-#, fuzzy
-msgid "NTP Server"
-msgstr "NIS Verici"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Uzaq CUPS vericisi"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Çap Edicisiz"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Başqa var?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Mündəricat"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Siçan"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Vaxt Dilimi"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Çap Edici"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDN kartÄą"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Səs kartı"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV kartÄą"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-#, fuzzy
-msgid "NIS"
-msgstr "NIS istifadə et"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-#, fuzzy
-msgid "Local files"
-msgstr "Yerli Çap Edici"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Root parolunu qur"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Parolsuz"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, 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:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "TanÄątma"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "TanÄątma"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-#, fuzzy
-msgid "LDAP Server"
-msgstr "Verici"
-
-#: ../../install_steps_interactive.pm_.c:1134
-#, fuzzy
-msgid "Authentication NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS sahəsi"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS Verici"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Xüsusi bir açılış disketi, Linuks sisteminizin normal bir sistem yükləyiciyə "
-"lĂźzĂźm\n"
-"olmadan açılmasına imkan verər. Əgə sisteminizə lilo (ya da grub) "
-"qurmayacaqsanÄąz,\n"
-"ya da başqa bir əməliyyat sistemi liloyu silərsa ya da lilo "
-"avadanlığınızlaişləməzsə\n"
-"bu disket sizə yardımç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?\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:1187
-msgid "First floppy drive"
-msgstr "Ä°lk disket sĂźrĂźcĂź"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Ä°kinci disket sĂźrĂźcĂź"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Nəzərə Alma"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Xüsusi bir açılış disketi, Linuks sisteminizin normal bir sistem yükləyiciyə "
-"lĂźzĂźm\n"
-"olmadan açılmasına imkan verər. Əgə sisteminizə lilo (ya da grub) "
-"qurmayacaqsanÄąz,\n"
-"ya da başqa bir əməliyyat sistemi liloyu silərsa ya da lilo "
-"avadanlığınızlaişləməzsə\n"
-"bu disket sizə yardımç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?\n"
-"Açılış disketi yaratmaq istəyirsinizsə, birinci disket sürücüyədisklet "
-"yerləşdirin\n"
-"və \"OLDU\" basın.\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Bağışlayın, disket sürücü yoxdur"
-
-#: ../../install_steps_interactive.pm_.c:1212
-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:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "%s sürücüsünə bir disket taxın"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Açılış disketi yaradılır"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Açılış yükləyici hazırlanır"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "aboot istifadə etmək istəyirsiniz?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"aboot qurulumunda xata, \n"
-"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Sistem yükləyicini qur"
-
-#: ../../install_steps_interactive.pm_.c:1259
-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:1267
-#, fuzzy, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"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:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Avtomatik qurulum disketi hazÄąrlanÄąr"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Bə'zi bölmələr bitdi.\n"
-"\n"
-"Həqiqətən də çıxmaq istəyirsiniz?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-#, fuzzy
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Təbriklər, quruluş bitdi.\n"
-"Cdrom və disketi çıxartdıqtan sonra Enter'ə basaraq kompüterinizi \n"
-"yenidən başladın. Linuks Mandrake'nin bu buraxılışındakı yamaqlar haqqında \n"
-"mə'lumat almaq üçün http://www.mandrakelinux.com ünvanından Errata'ya "
-"baxÄąn.\n"
-"Sisteminizin qurğuları haqqında daha geniş bilgiyi Linuks Mandrake \n"
-"İstifadəçi Kitabcığında tapa bilərsiniz."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Avtomatik qurulum disketi hazÄąrlanÄąr"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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ə'ni baş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:1361
-msgid "Automated"
-msgstr "Avtomatlaşdırılmış"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Təkrarla"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Paket seçkilərini saxla"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Linuks-Mandrake Qurulumu %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> irəli/geri | <Boşluq> işarətlə | <F12> sonrakı ekran"
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu əksikdir"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Monitorunuzu seçin"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Ətraflı"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Xahiş edirik gözləyin"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Mə'lumat"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Ağacı Aç"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Ağacı Qapat"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Otaq və grup sıralaması arasında gəz"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Xətalı tərcih, təkrar sınayın\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Seçkiniz? (əsas %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Seçkiniz? (əsas %s) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Seçənəklər: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "aboot istifadə etmək istəyirsiniz?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Seçkiniz? (əsas %s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Çex dili (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Almanca"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Ä°spanca"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Fincə"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "FransÄązca"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norveçcə"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polyakca"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Rusca"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "İsveçcə"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Ä°ngiliz (UK) klaviaturasÄą"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Amerikan (US) klaviaturasÄą"
-
-#: ../../keyboard.pm_.c:188
-#, fuzzy
-msgid "Albanian"
-msgstr "Farsca"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Ermenicə (köhnə) "
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Ermenicə (yazı maşını)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Ermenicə (fonetik)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azərbaycanca (latın)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belçika dili"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Ermenicə (fonetik)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Bulqarca"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazilya dili (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Belarusca"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "İsveçcə (Alman sırası)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "İsveçcə (Fransız sırası)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Çex dili (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Almanca (ölü düymələr olmasın)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Danimarka dili"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norveçcə)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estoniya dili"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "GĂźrcĂź dili (\"Rus\" sÄąrasÄą)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "GĂźrcĂź dili (\"LatÄąn\" sÄąrasÄą)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Yunanca"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Macarca"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "XÄąrvatca"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Ä°srail"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Ä°srail (Fonetik)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Farsca"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Ä°zlandiya dili"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Ä°talyanca"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Yaponca 106 düyməli"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Koreya klaviaturasÄą"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "LatÄąn Amerika dili"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litvaniya dili AZERTY (köhnə)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litvanya dili AZERTY (yeni)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litvanya dili \"number row\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litvanya dili \"Fonetik\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Yeri"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Makedoniya dili"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Hollandiya dili"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Polyakca (QWERTY sÄąrasÄą)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Polyakca (QWERTZ sÄąrasÄą)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portuqalca"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "FransÄązca (Kanada/Quebec)"
-
-#: ../../keyboard.pm_.c:247
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "Rusca (Yawerty)"
-
-#: ../../keyboard.pm_.c:248
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "Rusca (Yawerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Rusca (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slovencə"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovakca (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovakca (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "Azərbaycanca (kiril)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Cədvəl"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Thai klaviatura"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Thai klaviatura"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Türkcə (ənənəvi \"F\" klaviatura)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Türkcə (müasir \"Q\" klaviatura)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukrayna dili"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Amerikan (US) klaviaturası (beynəlmiləl)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vyetnam dili \"numeric row\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Yugoslavca (latÄąn/kiril)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Dairəvi bağlama %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Məntiqi ciltləri birinci olaraq sil\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Siçan"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Sıravi PS2 Çərxli Siçan"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 düymə"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Sıravi 2 Düyməli Siçan"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Ümumi"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Çərx"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "serial"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Sıravi 3 Düyməli Siçan"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech mouse (serial ya da köhnə C7 növü)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 düyməli"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 düyməli"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "heç biri"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "SiçansĹzs"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Xahiş edirik siçanınızı seçin"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Siçanınızı işə salmaq üçün,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "TƏKƏRİ OYNADIN!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Qurtar"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "SonrakÄą ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Əvvəlki"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Doğrudur?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "İnternetə bağlan"
-
-#: ../../network/adsl.pm_.c:20
-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"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "dhcp istifadə et"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "pppoe istifadə et"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "pptpe istifadə et"
-
-#: ../../network/ethernet.pm_.c:37
-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"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Sisteminizdə heç bir eternet şəbəkə adapteri tapıla bilmədi.\n"
-"Bu bağlantı şəklini qura bilmərəm."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Şəbəkə ara üzünü seçin"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "İnternetə bağlanmaq üçün şəbəkə adapteri seçin."
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "şəbəkə kartı tapılmadı"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Şəbəkə Qurğuları"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Xahiş edirik 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/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Ev sahibi adÄą"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Şəbəkə Quraşdırılması Sehirbazı"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Xarici ISDN kart"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Daxili ISDN kart"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "ISDN bağlantınızın növü nədir?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN quraşdırılması"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"İnternet xidmət vericinizi seçin.\n"
-"Siyahıda deyilsə Siyahıda deyil'i seçin."
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol"
-msgstr "Açılış Protokolu"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Avropa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "BĂźtĂźn dĂźnya"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid ""
-"Protocol for the 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)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Hansı protokolu istifadə etmək istəyirsiniz?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "HansÄą nĂśv kartÄąnÄąz var?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Bilmirəm"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"ISA kartınız var isə sonrakı ekrandakı qiymətlər doğru olmalıdır.\n"
-"\n"
-"PCMCIA kartınız var isə kartınızın irq və ya io'sunu bilməlisiniz.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "DayandÄąr"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Davam et"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "HansÄąsÄą sizin ISDN kartÄąnÄązdÄąr?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"ISDN PCI kart tapdım, amma növünü bilmirəm. Xahiş edirik sonrakı ekrandakı "
-"kartlardan birini seçin."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Heç bir ISDN PCI kart tapĹlmaĹ. SonrakĹ ekrandakĹlardan seçin."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Çevirməli şəbəkə seçənəkləri"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Bağlantı adı"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Telefon nömrəsi"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Giriş adı"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Skript əsaslı"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Terminal əsaslı"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Sahə(domain) adı"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Birinci DNS Vericisi (arzuya görə)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "İkinci DNS Vericisi (arzuya görə)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
-"bilərsiniz."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Bağlantınızı yenidən quraşdıra bilərsiniz."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Artıq İnternetə bağlısınız."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"İstəsəniz İnternetə bağlana bilərsiniz ya da yeniden quraşdıra bilərsiniz."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Hələ İnternetə bağlı deyilsiniz."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Bağlan"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Bağlantını kəs"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Şəbəkəni qur"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "İnternet bağlantısı & quraşdırılması"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr ""
-"\n"
-"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
-"bilərsiniz."
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
-"bilərsiniz."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Şəbəkə quraşdırılması"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Şəbəkədən quraşdırması apardığınız üçün şəbəkəniz artıq qurulmuş olmalıdır.\n"
-"Şəbəkə/İnternet bağlantınızı yenidən quraşdırmaq üçün Oldu'ya yoxsa Ləğv "
-"et'ə basın.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Şə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"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Qurulacaq profili seçin"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Avtomatik təsbit işlət"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "AvadanlÄąqlar tanÄąnÄąr..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Normal modem təsbiti"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "%s qapÄąsÄąnda tapÄąldÄą"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN Bağlantısı"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "%s tapÄąldÄą"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy
-msgid "ADSL connection"
-msgstr "Yerli Şəbəkə quraşdırılması"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "%s ara üzündə tapıldı"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Kabel bağlantısı"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Kabel bağlantısı"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Yerli Şəbəkə quraşdırılması"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "eternet kart tapÄąldÄą"
-
-#: ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "İstifadə edəcəyiniz vasitəni seçin"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-#, fuzzy
-msgid "Internet connection"
-msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Şəbəkə quraşdırılması"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Şəbəkənin yenidən başladılması sırasında xəta oldu: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Təbrik edirik, internet və şəbəkə quraşdırılması qurtardı.\n"
-"\n"
-"Qurğular indi sisteminizə əlavə ediləcək.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Bu edildikdən sonra Xdən çıxmağınızı tövsiyyə edirik, yoxsa\n"
-"verici adı xəsarətləri meydana gələ bilər."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\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"
-"Avadanlığın qurğularını dəyişdirmaək istəmirsiniz isə,\n"
-"OLDU ya basÄąn.\n"
-"Aşağıdakı girişləri düzəltməniz özünü əvvəlki qurğuların üstünə yazacaqdır."
-
-#: ../../network/network.pm_.c:297
-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 "Xahiş edirik bu kompüter üçün IP qurğularını girin"
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "%s şəbəkə avadanlığı qurulur"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (sĂźrĂźcĂź %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP ĂźnvanÄą"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Netmask"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Avtomatlaşdırılmış IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Xahiş edirik 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/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS verici"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Keçit avadanlığı"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Vəkil vericilər quraşdırılması"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP vəkil verici"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP vəkil verici"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Vəkil verici http://... şəklində olmalıdır."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Vəkil verici ftp://... olmalıdır."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "İnternet qurğuları"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "İnternete girişi indi sınamaq istəyirsiniz?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Bağlantınız sınanır..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "İnternetə artıq bağlısınız"
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Təhlükəsizlik səbəbi ilə indi bağlantı qopacaqdır."
-
-#: ../../network/tools.pm_.c:52
-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ını yenidən quraşdırın"
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Bağlantı quraşdırılması"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Xahiş edirik aşağıdakıları doldurun ya da seçin"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "Kart IRQ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Kart mem (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "Kart IO"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "Kart IO_0"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "Kart IO_1"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Sizin şəxsi telefon nömrəniz"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "İnternet xidmət vericinizin adı (məsələn azeronline.com)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "İXM telefon nömrəsi"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Dns xidmətcisi 1 (arzuya görə)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Dns xidmətcisi 2 (arzuya görə)"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "KlaviaturanĹzĹ seçin"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Yığma modu"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "Bağlantı növü:"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Bağlantı növü:"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Hesab Girişi (istifadəçi adı)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Hesap Parolu"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "bağlama iflas etdi: "
-
-#: ../../partition_table.pm_.c:664
-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:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Bölmə cədvəlinizdə bir boşluq var, amma o da işlədilə bilməz.\n"
-"Bu boşluğu, birinci bölmənizi en yaxınındakı genişlədilmiş bölməyə "
-"daşıyaraq\n"
-"məsələni həll edə bilərsiniz."
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "%s faylından qurtarılışda xəta: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Xətalı yedəkləmə faylı"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "%s faylına yazarkən xəta oldu"
-
-#: ../../partition_table_raw.pm_.c:186
-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:24
-msgid "must have"
-msgstr "alÄąnmalÄą"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "vacib"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "əla"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "gözəl"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "bəlkə"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Yerli Çap Edici"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Uzaq Çap Edici"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Uzaq CUPS vericisi"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "Uzaq çap edici vericisi(lpd)"
-
-#: ../../printer.pm_.c:51
-#, fuzzy
-msgid "Network printer (TCP/Socket)"
-msgstr "Şəbəkə Çap Edicisi (soket) "
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Çap Edici Vericisi"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "Çap Edici avadanlığı URI"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Yerli Çap Edici"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Uzaq Çap Edici"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "%s faylına yazarkən xəta oldu"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(modul %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "CUPS verici IP"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Əsas)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Çap Edici Bağlantısı Seçin"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Çap ediciniz nə şəkildə bağlıdır?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"Uzaq CUPS vericiləri üçün heç bir quraşdırmağa lüzüm yoxdur\n"
-"Buradakı hər çap edici avtomatik tapılacaqdır.\n"
-"Olmazsa \"Uzaq CUPS vericisi\" ni seçin."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Uzaq CUPS vericisi"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-#, fuzzy
-msgid "The port number should be an integer!"
-msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "CUPS verici IP"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "QapÄą"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Qurulum Tərzi Quraşdırılması"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "AvadanlÄąqlar tanÄąnÄąr..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "QapÄąlarÄą sÄąna"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Çap Edicisiz"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Yerli Çap Edici"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Uzaq Çap Edici"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Avtomatik təsbit işlət"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Uzaq Çap Edici"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "%s tapÄąldÄą"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Çap Edici avadanlığı URI"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Yerli Çap Edici"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Çap Edici avadanlığı URI"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Quraşdırma"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "%s paketi qurulur"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "%s paketi qurulur"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-#, fuzzy
-msgid "Reading printer database ..."
-msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"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:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "UzaqdakÄą ev sahibi adÄą"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Uzaq Çap Edici"
-
-#: ../../printerdrake.pm_.c:630
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "UzaqdakÄą ev sahibi adÄą"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "UzaqdakÄą ev sahibi adÄą"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) Çap Edici Seçənəkləri"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Bir SMB çap edicidən yekun 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:704
-msgid "SMB server host"
-msgstr "SMB verici adÄą"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "SMB verici IP"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Paylaşdırma adı"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "İş qrupu"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "NetWare Çap Edici Qurğuları"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"NetWare çap edicidən yekun almaq üçün, NetWare vericisinin adı və çap "
-"edici \n"
-"növbəsi adı ilə istifadəçi adı va parolu verilməlidir."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Çap Edici Vericisi"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Çap Edici Növbə Adı"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Soket Çap Edici Qurğuları"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Soket çap edicidən yekun almaq üçün, çap edicinin ev sahibi adını ve "
-"mümkünsə, qapısının nömrəsini verməlisiniz."
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "Çap Edici Ev sahibi"
-
-#: ../../printerdrake.pm_.c:858
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "Çap Edici Ev sahibi"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Çap Edici avadanlığı URI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Çap edici adı"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Ä°zah"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Yeri"
-
-#: ../../printerdrake.pm_.c:1021
-#, fuzzy
-msgid "Preparing printer database ..."
-msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Uzaq Çap Edici"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Doğrudur?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Uzaq Çap Edici"
-
-#: ../../printerdrake.pm_.c:1139
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Çap Edici Bağlantısı"
-
-#: ../../printerdrake.pm_.c:1140
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "Nə cür bir çap ediciniz var?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "İnternet qurğuları"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "İnternet qurğuları"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Çap edicini sınamaq istəyirsiniz?"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "QapÄąlarÄą sÄąna"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-#, fuzzy
-msgid "No test pages"
-msgstr "Bəli, hər iki sınaq səhifəsini də çap et"
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "Çap Edici"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Standart"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "Sınaq səhifəsi çap edilir..."
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "Sınaq səhifəsi çap edilir..."
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Sınaq səhifəsi çap edilir..."
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Sınaq səhifəsi çap edilir..."
-
-#: ../../printerdrake.pm_.c:1635
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Sınaq səhifəsi çap edici vasitəsinə 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?"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Sınaq səhifəsi çap edici vasitəsinə göndərildi.\n"
-"Çap edicinin işləməsi üçün bir az vaxt keçər.\n"
-"Düz mü işləyir?"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Çap Edicisiz"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Qapat"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Şəbəkə dayandırılır"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Şəbəkə dayandırılır"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Çap edici seçənəkləri"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "İnternet qurğuları"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Çap edici adı təkcə hərf, rəqəm və alt xətt daxil edə bilər"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "Çap Edicisiz"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Bağlantınız başladılır..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Şəbəkəni qur"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Monitor qurulmayÄąb"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Şəbəkə Qurğuları"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Yüksək"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Şübhəci"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Çap Edici Bağlantısı Seçin"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Çap Edicini Qur"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "%s paketi qurulur"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Çap edici seçənəkləri"
-
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Çap Edicini Qur"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Bir çap edici qurmaq istəyirsiniz?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Çap Edici"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
-"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
-"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Şəbəkəni qur"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Normal Mod"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Qurğuları sınamaq istəyirsiniz?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "İnternet qurğuları"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Qurğuları sınamaq istəyirsiniz?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Çap Edici Bağlantısı"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "Sınaq səhifəsi çap edilir..."
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Qurğuları sınamaq istəyirsiniz?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Uzaq Çap Edici"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Yerli Çap Edici"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-#, fuzzy
-msgid "Proxy configuration"
-msgstr "Vəkil vericilər quraşdırılması"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr ""
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-#, fuzzy
-msgid "port"
-msgstr "QapÄą"
-
-#: ../../proxy.pm_.c:44
-#, fuzzy
-msgid "Url should begin with 'http:'"
-msgstr "Vəkil verici http://... şəklində olmalıdır."
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-#, fuzzy
-msgid "The port part should be numeric"
-msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Vəkil verici ftp://... olmalıdır."
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-#, fuzzy
-msgid "login"
-msgstr "Avtomatik Giriş"
-
-#: ../../proxy.pm_.c:82
-#, fuzzy
-msgid "password"
-msgstr "Parol"
-
-#: ../../proxy.pm_.c:84
-#, fuzzy
-msgid "re-type password"
-msgstr "Parolsuz"
-
-#: ../../proxy.pm_.c:88
-#, fuzzy
-msgid "The passwords don't match. Try again!"
-msgstr "Parollar uyğun gəlmir"
-
-#: ../../raid.pm_.c:35
-#, 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:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "%s faylına yazıla bilinmədi"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid iflas etdi"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid iflas etdi (raidtools əksik ola bilər mi?)"
-
-#: ../../raid.pm_.c:152
-#, 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:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "ALSA səs sistemini (Advanced Linux Sound Architecture) başlat"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anakron, periodik əmr zamanlayıcısı"
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd batareya vəziyyətini izləmək üçün və syslog aracılığıyla bunun qeydini "
-"tutmaq üçün istifadə edilir.\n"
-"Ayrıca batareya azaldığında sistemi qapatmaq üçün də istifadə edilir."
-
-#: ../../services.pm_.c:18
-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 ""
-"at əmri, zamanlanan əmrləri işləmələ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
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-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"
-"yeni xüsusiyyət daxildir."
-
-#: ../../services.pm_.c:23
-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 əsaslı tə'minatlara siçan dəstəyi əlavə "
-"edər.\n"
-"Ayrıca konsolda siçanla kəsmə və yapışdırma əməliyyatlarına da imkan verər.\n"
-"Konsolda pop-up menyu dəstəyi verər."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake texniki tə'minat sınağı aparar və onları bir ön quraşdırmadan "
-"keçirər."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache bir World Wide Web vericisidir. HTML faylları və CGI verilməsi üçün "
-"istifadə edilir."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Internet superserver daemon (qĹsaca inetd ) bir çox \n"
-"başqa internet xidmətcisini lazım gəldiyi zaman işa salır. İçində telnet, "
-"ftp, rsh və rlogin kimi proqramın olduğu xidmətləri işə salmaqla məs'uldur.\n"
-"inetd-ni 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:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Linuks 2.2 seriyası çəkirdəklərində firewall\n"
-"qurmaq üçün üçün paket süzülməsini başlat."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-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 kompüterdə fəal buraxılmalıdır."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"/usr/include/linux/{autoconf,version}.h ßçßn \n"
-"/boot-da avtomatik çəkirdək başlığı yaradılması."
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Texniki avadanlığın açılışda avtomatik təsbiti və qurulması."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf sistem qurğularınızı idarə edən proqramları\n"
-"müxtəlif vəzifələri açılışda icra edər."
-
-#: ../../services.pm_.c:43
-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 çap edici vasitəsidir.\n"
-"lpd əsasən, çap vəzifələrini idarə edən və onları çap ediciyə göndərən "
-"vericidir."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linuks Virtual Verici, yüksək qabiliyyətli vericilər qurmaq üçün işlədilir."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) verici adlarını IP ünvanlarına çevirən\n"
-"Sahə Adı Vericisidir(DNS)."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"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:50
-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 şəbəkə axtar üzlərini "
-"fəallaşdırır ya da qapatır."
-
-#: ../../services.pm_.c:52
-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 şəbəkələrində fayl bölüşülməsi üçün istifadə edilən məşhur bir "
-"protokoldur.\n"
-"Bu xidmət, /etc/exports faylında qurğuları olan NFS vericisinin\n"
-"istifadəsinə imkan verər."
-
-#: ../../services.pm_.c:55
-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 şəbəkələrində fayl bölüşülməsi üçü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:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Açılışda XFree və konsolda numlock düyməsini\n"
-"avtomatik olaraq aç."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "OKI 4w və uyğun Windows çap edicilərini dəstəklə."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA dəstəyi, laptoplarda eternet və modem kimi avadanlıqların "
-"dəstəklənməsinə imkan verər.\n"
-"Qurulmadığı vaxtda açılışda işləməz, işləməsinə ehtiyac olmayan\n"
-"kompüterlərdə qurulu olması problem yaratmaz."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"portmapper, NFS ve NIS kimi protokollar tərəfindən istifadə edilən RPC \n"
-"bağlantılarını təşkilatlandırır. Portmap vericisi RPC mexanizmini işlədən\n"
-"protokollarla xidmət edən kompüterlərdə qurulmalıdır və işlədilməlidir."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Posfix, elektronik məktubların bir kompüterdən digərinə yollayan \n"
-"Elektronik Məktub Yollama Vasitəsidir."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-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:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-
-#: ../../services.pm_.c:71
-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 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"
-"şəbəkələrdə daha qarışıq routing protokollarına ehtiyacı vardır."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat protokolu bir şəbəkədəkı istifadəçilərin o şəbəkədəkı hər hansı bir\n"
-"kompüter haqqındakı qabiliyyət ölçüləri ala bilmələrinə imkan verər."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"rusers protokolu bir şəbəkədəkı istifadəçilərin o şəbəkədəkı kompüterlərdə\n"
-"işləyən istifadəçiləri görməsinə imkan verər."
-
-#: ../../services.pm_.c:78
-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 vasitəsi işlədən bir kompüterdə\n"
-"olan bütün istifadəçiləri görmələrina imkan verər."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Kompüterinizdə səs sistemı başladın"
-
-#: ../../services.pm_.c:81
-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 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:83
-msgid "Load the drivers for your usb devices."
-msgstr "USB avadanlığınız üçün sürücüləri yükləyin."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"X Font Vericisini açılışda işə salar (Bu, XFree icrası üçün məcburidir)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Açılışda avtomatik olaraq başlayacaq xidmətləri seçin"
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Çap Edici"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Ä°nternet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Sistem modu"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Databeyz"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "avadanlÄąq"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "işləmir"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "dayandÄąrÄąlÄąb"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Xidmətlər və vasitələr"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Bu xidmət haqqında təəsüf ki,\n"
-"əlavə mə'lumat yoxdur."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Açılışda"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Hal:"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Sektor"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "BĂźtĂźn dĂźnya"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Ä°nternet imkanÄą"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedya - Qrafika"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Təcrübi"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "İdarə Mərkəzi"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Şəbəkə ara üzü"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "SMB verici adÄą"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Oyunlar"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Usta"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "%s paketi qurulur"
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Bölmə cədvəlini oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
-"Xəsərli hissələri düzəltməyə cəhd edəcəm"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Xəta"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Qurulum sonrası qurğular"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Qurulum Tərzi Quraşdırılması"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Təbriklər!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Qurulum"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "İstifadəçi əlavə et"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Loopback faylı şəkilləndirilir: %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Xətalı yedəkləmə faylı"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Xətalı yedəkləmə faylı"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Xətalı yedəkləmə faylı"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Paket Qrup Seçkisi"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Növbəni sil"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "\"Windows\"u sil"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "İstifadəçi adı"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Xahiş edirik siçanınızı seçin"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Xahiş edirik təkrar sınayın"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Xahiş edirik təkrar sınayın"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "Parolsuz"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Yerli Şəbəkə quraşdırılması"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Çap Edici Bağlantısı Seçin"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Klaviatura quruluşunu seçiniz."
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Xətalı yedəkləmə faylı"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Xahiş edirik siçanınızı seçin"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Xətalı yedəkləmə faylı"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Şəbəkə ara üzü"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "İstifadəçi adı"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Sabit disk seçkisi"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "İstifadəçi adı"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "Çərx"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "Çərx"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Modul seçənəkləri:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Şəbəkə quraşdırılması"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Fayl sistemi qurğuları"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Seçənəklər"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Şəbəkə quraşdırılması"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Xətalı yedəkləmə faylı"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Xahiş edirik siçanınızın növünü seçin."
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Xətalı yedəkləmə faylı"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Disketdən geri çağır"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Xahiş edirik siçanınızın növünü seçin."
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Digər"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Sistemi qur"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Fayldan geri çağır"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Fayldan geri çağır"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "XĂźsusi"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_YardÄąm"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- Əvvəlki"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Hal:"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Xətalı yedəkləmə faylı"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Fayldan geri çağır"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "SonrakÄą ->"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Qurulacaq paketləri seçin"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Xətalı yedəkləmə faylı"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Xətalı yedəkləmə faylı"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Xətalı yedəkləmə faylı"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Fayla qeyd et"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Xahiş edirik siçanınızı seçin"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Şəbəkə quraşdırılması"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Şəbəkə quraşdırılması"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Fayl sistemi qurğuları"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s qurulumu iflas etdi. Olan xəta:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "şəbəkə kartı tapılmadı"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "QurtardÄą"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Qurulum hazÄąrlanÄąr"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-#, fuzzy
-msgid "Restart XFS"
-msgstr "məhdudlaşdır"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "məhdudlaşdır"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Bölmə şəkilləndirilməsi"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Bağlama nöqtəsi"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "İş Yeri"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "DayandÄąr"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Çap Edici"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Sistemi qur"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Fayl seç"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Uzaq Çap Edici"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
-msgid "Initials tests"
-msgstr "Ä°nit Ä°smarÄącÄą"
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Qurulum"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Qurulumdan çĹx"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "İnternet Bağlantısı Bölüşdürülməsi fəallaşdırıldı"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"İnternet Bağlantısı Bölüşdürülməsi qurulması artıq bitdi.\n"
-"Və artıq fəallaşdırılmışdır.\n"
-"\n"
-"Nə etmək istəyirsiniz?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "passivləşdir"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "keç"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "yenidən quraşdır"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Vericilər bağlanır..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "İnternet Bağlantısı Bölüşdürülməsi indi bağlandı"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "İnternet Bağlantısı Bölüşdürülməsi passivləşdirildi"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"İnternet Bağlantısı Bölüşdürülməsi qurulması artıq bitdi.\n"
-"Və artıq passivləşdirilmişdir.\n"
-"\n"
-"Nə etmək istəyirsiniz?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "fəallaşdır"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Xidmətlər fəallaşdırılır..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "İnternet Bağlantısı Bölüşdürülməsi indi açıldı"
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Kompüterınızi İnternet bağlantısını bölüşdürmək üçün quraşdırırsınız.\n"
-"Bu seçənəklə yerli şəbəkənizdəki başqa kompüterlər sizin İnternet "
-"bağlantınızdan faydalana biləcəklər.\n"
-"\n"
-"Xəbədarlıq: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə "
-"ehtiyacÄąnÄąz var."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Ara Üz %s (%s modulu işlədilir)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Ara Ăźz %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Sisteminizdə şəbəkə kartı tapıla bilməyib.Avadanlığı quran vasitəni işə "
-"salÄąn."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Şəbəkə ara üzü"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Sistemnizdə bir dənə qurulmuş şəbəkə adapteri var:\n"
-"\n"
-"%s\n"
-"\n"
-"Yerli Şəbəkə adapterinizi qurmaq üzərəyəm?"
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Sizi Yerli Şəbəkəyə bağlayacaq adapteri seçin"
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Monitor qurulmayÄąb"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Qurulum Tərzi Quraşdırılması"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "İnternet qurğuları"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "CUPS verici IP"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "%s quğusunda dəyəsən bir LAN ünvan çaxışması tapıldı!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Diqqət! Var olan Firewall qurğusu tapıldı. Yükləmədən sonra bir az əl "
-"gəzdirə bilərsiniz."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Quraşdırılır..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Skriptlə qurulur, proqram tə'minatı qurulur, xidmətlər başladılır..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "%s paketi qurulurkən xəta oldu"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Hər şey quruldu.\n"
-"İndi isə İnternet bağlantınızı yerli şəbəkədəkı başqa kompüterlər ilə "
-"bölüşdürə bilərsiniz, bunun üçün isə avtomatik şəbəkə quraşdırılması (DHCP) "
-"işlədilir."
-
-#: ../../standalone/drakgw_.c:689
-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:690
-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:691
-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:696
-msgid "Internet connection sharing configuration"
-msgstr "İnternet bağlantısı bölüşdürülməsi quraşdırılması"
-
-#: ../../standalone/drakgw_.c:703
-#, 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 Quraşdıra tıqlayın."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Şəbəkə quraşdırılması (%d adapter)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Profili sil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Silinəcək profil:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Yeni profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Ev sahibi adÄą:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Ä°nternet imkanÄą"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "NĂśv: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Keçit:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Ara Ăźz"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Hal:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "İnternet keçişini Qur..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Yerli Şəbəkə quraşdırılması"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "SĂźrĂźcĂź"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Ara Ăźz"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Hal:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Yerli Şəbəkəni Quraşdır..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Sehirbaz..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Əlavə Et"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Bağlandı"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Bağlı deyil"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Bağlan..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Bağlantını Kəs..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Qurulu ara ĂźzĂźnĂźz yoxdure.\n"
-"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "%s Adapteri: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Açılış Protokolu"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Açılışda başladılır"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP alÄącÄąsÄą"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Fəal"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Fəal"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Heç İnternet bağlantınız yoxdur.\n"
-"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "İnternet bağlantısı quraşdırılması"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "İnternet Bağlantısı Quraşdırılması"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Bağlantı növü:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametrlər"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Keçit"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Eternet KartÄą"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP AlÄącÄąsÄą"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "İdarə Mərkəzi"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "İstifadə edəcəyiniz vasitəni seçin"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "FransÄązca (Kanada/Quebec)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "Avropa"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Ä°zlandiya dili"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "Avropa"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "serial"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "istifadə qaydası: keyboarddrake [--expert] [klavatura]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Klaviatura quruluşunu seçiniz."
-
-#: ../../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?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Cd-Romu dəyişdir"
-
-#: ../../standalone/livedrake_.c:25
-msgid ""
-"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
-"If you don't have it, press Cancel to avoid live upgrade."
-msgstr ""
-"Qurma Cd-Romunu sürücünüzə taxın və OLDUya basın.\n"
-"Əgər Cd-Rom əlinizdə yox isə, bu Cd-Rom-dan qurmamaq üçün RƏDD ETə basın."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Təkmilləşdirmə işi başlaya bilmir !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-#, fuzzy
-msgid "Show only for the selected day"
-msgstr "Təkcə bu gününkünü göstər"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Fayl/_Yeni"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>Y"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Fayl/_Aç"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>A"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Fayl/_Qeyd Et"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>Q"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Fayl/_Fərqli Qeyd Et"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Fayl/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Seçənəklər"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Seçənəklər/Sınaq"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_YardÄąm"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/YardÄąm/_HaqqÄąnda..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "İstifadəçi adı"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "ismarÄąclar"
-
-#: ../../standalone/logdrake_.c:175
-#, fuzzy
-msgid "Syslog"
-msgstr "sistem qeydi"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "axtar"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Qeydlərinizə baxan vasitə"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Qurğular"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "oxşayır"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "amma oxşamır"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Fayl seç"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Təqvim"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Fayl məzmunu"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "xahiş edirik, gözləyin, fayl daranır: %s"
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Yerli Şəbəkə quraşdırılması"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache və Pro-ftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "avadanlÄąq"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "Şəkilləndirilir"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Quraşdırma"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Fərqli qeyd et..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Xahiş edirik siçanınızın növünü seçin."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "serial_USB avadanlığı tapılmadı\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "3 düymə emulasiyası"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Ekran kartĹnĹzĹ seçin"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Açılış avadanlığı"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Firewall quraşdırılması"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Firewall quraşdırılması"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Firewall qurğularını artıq qurtarmısınız.\n"
-"Qur-a tıqlayaraq firewall qurğuların silin ya da təkmilləşdirin."
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Qur-a tıqlayaraq standart firewall qurğularını aparın."
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "İşlətdiyiniz dili seçin"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Quruluş sinifini seçin"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Sabit disk seçkisi"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Siçan qurğuları"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "KlaviaturanĹzĹ seçin"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Təhlükəsizlik"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Fayl sistemi qurğuları"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Bölmə şəkilləndirilməsi"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Qurulacaq paketləri seçin"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Sistemi qur"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "İstifadəçi əlavə et"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Şəbəkəni qur"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Xidmətləri qur"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Sistem yükləyicini qur"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Açılış disketi yarat"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "X qur"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Sistemi qur"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Qurulumdan çĹx"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall configurator\n"
-"\n"
-"Bu, Linuks Mandrake sisteminiz üçün şəxsi bir firewall quraşdıracaqdır.\n"
-"Daha güclü və e'tibarlı sistem üçün xahiş edirik xüsusi MandrakeSecurity "
-"Firewall\n"
-"buraxılışını tədqiq edin."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"İndi isə internetə bağlanırkən istifadə etməyi arzuladığınız xidmətləri\n"
-"soruşacağıq. Bu suallara xahiş edirik diqqətlə cavab verin, çünkü "
-"kompĂźterinizin \n"
-"təhlükəsizliyi çox vacib məsələdir.\n"
-"\n"
-"Xahiş edirik, bu xidmətlərdən istifadə etmədiklərinizə yaxşı qərar verin ki, "
-"firewall\n"
-"onu bağlasın. Sonradan bu qurğuları özünüz proqramı yenidən işə salaraq "
-"dəyişdirə bilərsiniz.!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Sisteminizdə bütün İnternetə göstərmək istədiyiniz veb vericisi "
-"işlədirsiniz? \n"
-"Təkcə bu kompüterin görəcəyi bir veb vericisi olacaqsa burada YOX cavasbı "
-"verə bilərsiniz.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Bu kompüterdə ad vericisi işlədirsiniz? Əgər internetə bağlanırkən bir IP "
-"ünvanı və\n"
-"nahiyə mə'lumatı almırsınızsa YOX cavabı verin.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Gələn E'tibarlı Qabıq (ssh) bağlantılarına icazə vermək istəyiriniz? Bu, "
-"bir\n"
-"cür telnet əvəzidir. İndi telnet işlədirsinizsə onda \"ssh\"yə "
-"keçməlisiniz. \n"
-"Telnet kodlama işlətmir, ona görə dəbə'zi həkerlər parolunuzu oğurlaya "
-"bilər. \n"
-"ssh bunlara icazə verməz."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Gələn telnet bağlantılarına icazə verim?\n"
-"Bu çox e'tibarsızdır. Bunu sizə əvvəlki ekranda söylədik. Buna \n"
-"yox cavabı verməyinizi tövsiyyə edirik. Yerinə ssh işlədin.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"İnternetdən yetişilə bilən bir FTP vericisi işlədirsiniz? Əgər "
-"işlədirsinizsə,\n"
-"təkcə Anonim köçürmələr üçün olmasını tövsiyyə edərik. FTP ilə göndərilən\n"
-"parollar həkerlər tərəfindən oğurlana bilər. FTP parolları kodlaya bilmir "
-"axÄą.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Burada məktub vericisi işlədirsiniz? Əgər ismarıclarınızı pine\n"
-"mutt və ya başqa mətn əsaslı məktub alıcısından göndərirsinizsə,\n"
-"demək ki, işlədirsiniz. Yoxsa firewall bunu bağlamalıdır.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Burada POP və ya IMAP vericisi işlədirsiniz? Bu isə\n"
-"kompüterdə veb əsaslı olmayan məktub hesabları qurmaq üçün lazımdır.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Dəyəsən 2.2 çəkirdək işlədirsiniz. Əgər kompüterinizin\n"
-"IPsi başqa bir kompüter tərəfindən dinamik olaraq verilirsə,\n"
-"onda buna icazə vermək olar. Beledir?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Kompüterinizin vaxtı başqa bir kompüterlə sinxronlaşdırır?\n"
-"Bu, daha çox orta və geniş Unix/Linuks şirkətləri tərəfindən işlədilir.\n"
-"Əgər bir şirkətin bir parçası deyilsinizsə, demək ki, işlətmirsiniz."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Qurulum qurtarıldı. Dəyişiklikləri diskə yazım?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "%s açĹla bilmir: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Yazmaq ßçßn %s açĹla bilmir: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Firewall quraşdırılması"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Verici, Veb/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Şəbəkə Kompüteri (alıcı)"
-
-#: ../../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 "Office"
-msgstr "İş Yeri"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome iş stansiyası"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Palm Pilot və ya Visorunuz üçün vasitələr"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Masa ĂźstĂź"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Verici, Firewall/Ruter"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domeyn Ad bə Şəbəkə Mə'lumat Vericisi"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"İdarə proqramları: kəlmə işləyənlər (kword, abiword), hesablayıcılar və pdf "
-"göstəriciləri, vs."
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr ""
-"Səs ilə əlaqədər vasitələr: mp3 və ya midi çalğıçılar, qarışdırıçılar, vs."
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Linuks və pulsuz proqram tə'minatıları Kitablar və Howtoları"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE iş stansiyası"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, vs."
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedya - Video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Məktub, xəbərlər, fayl daşınması, chat vasitələri"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Databeyz"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL və ya MySQL databeyz vericisi"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Kompüter qurğularını asandlaşdıran vasitələr"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedya - Səs"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Vasitələr"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Sənədlər"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Konsol Vasitələri"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix məktub vericisi, Inn xəbər vericisi"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Ä°nternet stansiyasÄą"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimedya stansiyasÄą"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Başqa qrafiki ara üzlər (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr "KDE, əsas qrafiki ara üz və yardımçi proqramlar kolleksiyası"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Qrafiki Ara Üz"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache və Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "CD yazmaq və yandırmaq proqramları"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "İş Yeri Stansiyası"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Verici"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, IceWM, Windows Maker, Enlightement, Fvwm, vs."
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Qrafika proqramları, məsələn The Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../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 fayllar"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Şəbəkə Kompüteri vericisi"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Verici, ePoçt/Groupware/Xəbərlər"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Oyun stansiyasÄą"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Video çalğıçıları və editorları"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedya - Qrafika"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Məzəli proqramlar: arkad, lövhə oyunları, strategiya, vs"
-
-#: ../../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:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arxivləmə, emulyatorlar, izləmə"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Şəxsi Maliyyə"
-
-#: ../../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 üz vasitələri"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "SSH daxil bir çox protokollarĹn alĹcĹlarĹ"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "İnternet keçişı"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Səs və video çalınması/düzəliş proqramları"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Başqa qrafiki ara üzlər"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editorlar, rəflər, fayl vasitələri, terminallar"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Şəxsi maliyyə idarəçiləri, məsələn gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Şəxsi Mə'lumat İdarəçisi"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedya - CD YandÄąrma"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Elmi iş stansiyası"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "DayandÄąr"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "QurtardÄą"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Əsas istifadəçini seçin:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Uzaq Çap Edici"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "İndi %s moduluna parametrlər girə bilərsiniz."
-
-#~ msgid "mount failed"
-#~ msgstr "bağlama iflas etdi"
-
-#~ msgid "Low"
-#~ msgstr "Alçaq"
-
-#~ msgid "Medium"
-#~ msgstr "Orta"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "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."
-
-#~ msgid "Boot mode"
-#~ msgstr "Açılış modu"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Usta"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Linuks zamanı GMT-yə (Greenwich Mean Time) görə qurğular və olduğunuz \n"
-#~ "yerdəki zamana görə lazımi dəyişiklikləri edər."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "İnternetə bağlantı"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "İnternetə bağlantını kəs"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Şəbəkə (İnternet/LAN) bağlantınızı quraşdırın"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Hansı diskə daşımaq istəyirsiniz?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Mə'lumat"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome iş stansiyası"
-
-#~ msgid "authentification"
-#~ msgstr "tanÄątma"
-
-#~ msgid "user"
-#~ msgstr "istifadəçi"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache bir World Wide Web vericisidir. HTML faylları və CGI verilməsi "
-#~ "üçün istifadə edilir."
-
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) verici adlarını IP ünvanlarına çevirən\n"
-#~ "Sahə Adı Vericisidir(DNS)."
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Xahiş edirik siçanınızın növünü seçin."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Çıx"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Taxılıb sökülə bilən avadanlıqların avtomatik bağlanması"
-
-#~ msgid "Active"
-#~ msgstr "Fəal"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Xeyr"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "\"%s\" modelində bir çap edici tapıldı:"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Yerli Çap Edici Avadanlığı"
-
-#~ msgid "Printer Device"
-#~ msgstr "Çap Edici Avadanlığı"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Uzaq CUPS vericisi"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Uzaq CUPS vericisi"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linuks"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Sistem modu"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Digər"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Klaviatura quruluşunu seçiniz."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "NĂśv: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Xətalı yedəkləmə faylı"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "X qur"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Çap Edici Avadanlığı"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Ləğv et"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Oldu"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Qapat"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Bağlantınız başladılır..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Bağlantınız kəsilir..."
-
-#~ 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/şəbəkə-scripts/net_cnx_down\n"
-#~ "əmrini icra edərək nail ola bilərsiniz."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Sistem indi bağlantısını kəsib."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Qurmaq istədiyiniz paketləri seçin"
-
-#~ msgid "Total size: "
-#~ msgstr "HamÄąsÄą: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Xahiş edirik gözləyin, "
-
-#~ msgid "Total time "
-#~ msgstr "Ümumi müddət"
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "X11 qurğuları üçün mövcud qurğulardan istifadə edək?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Çap ediciniz hansı avadanlığa bağlıdır? \n"
-#~ "(/dev/lp0, LPT1'nin qarşılığıdır)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr "Diqqət, şəbəkə adapteriniz onsuz da qurulub. Yenidən quracam."
-
-#~ msgid "New"
-#~ msgstr "Yeni"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Uzaqdakı növbə adı"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Qarışıqlıq (%s), daha aydın yazın\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (əsas %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Seçkiniz (əsas %s, yoxsa `none' yazın) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "/etc/sysconfig/autologin oxunmaq ßçßn açĹla bilmir: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "RazÄąsÄąnÄąz?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Şəbəkə avadanlığını yenidən başlatmalıyam:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "%s avadanlığını yenidən başladacam. Razısınız?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Başqa bir şəkildə seçilməmiş isə, ümumiyyətlə bu seçki \"/dev/hda\" \n"
-#~ "(Birinci ali IDE disk) ya da \"/dev/sda\" (birinci SCSI disk)\n"
-#~ "olacaqdÄąr."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Bağlantı növü:"
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Əsas istifadəçini seçin:"
-
-#~ msgid "Test the mouse here."
-#~ msgstr "SiçanĹnĹzĹ buradan sĹnayĹn."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Qurulma və sistem istifadəsi üçün bir dil seçin."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Davam edə bilmək üçün yuxarıdakı lisenziyanın maddələrini qəbul "
-#~ "etməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xahiş edirik, maddələrlə razı isəniz \"Qəbul\" düyməsinə basın.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xahiş edirik, maddələrlə razı deyilsəniz ,\"Rədd\" düyməsinə basın\n"
-#~ "Yükləmə indiki qurğularınız dəyişdirilmədən bitiriləcək."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Yuxarıdakı siyahıdan klaviaturanıza uyöun gələn düzülüşü seçiniz"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Əgər yükləmədən sonra işlətmək üçün fərqli dillər (yükləmənin əvvəlində "
-#~ "seçdiyinizdən) seçmək istəyirsinizsə,\n"
-#~ "xahiş edirik, onları yuxarıdakı siyahıdan seçin.\n"
-#~ "Əgər hamısını seçmək istəyirsiniz isə \"Hamısını\" seçin."
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Seç:\n"
-#~ "\n"
-#~ " - Xüsusi: Əgər Linuksa aşina isəniz bu seçənəyə tıqlayın.\n"
-#~ " Sonra sistemin sinifini seçə biləcəksiniz.\n"
-#~ " Ayrınrılar üçün aşağıya baxın.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Usta: Əgər GNU/Linuks haqqında yaxşı bilik sahibi isəniz bunu seçin.\n"
-#~ " Daha sonra \"Xüsusi\" seçkisində olduğu kimi sistemin sinifini seçə "
-#~ "biləcəksiniz.\n"
-#~ " Ancaq artıq dərəcədə xahiş edirik, NƏ ETDİYİNİZİ BİLMİRSƏNİZ BU "
-#~ "SİNİFİ SEÇMƏYİN!."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "İndi isə kompüterinizi necə işlədəcəyinizə qerar verin.Seç:\n"
-#~ "\n"
-#~ "* Masa üstü: kompüterinizi gündəlik işlər (idarə işləri, qrafika vs.)\n"
-#~ " üçün istifadə edəcək isəniz, bunu seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Təcrübi: Kompüterinizi proqram tə'minatı inkişafı üçün işlədəcəksəniz, "
-#~ "sizin ßçßn ideal seçkidir.\n"
-#~ " O zaman qaynaq kodları yazmaq, şəkilləndirmək və xətadan ayıqlamaq və ya "
-#~ "proqram paketləri hazırlamaq üçün lazımi hər cür proqramın daxil olduğu "
-#~ "bir kolleksiya kompüterinizə qurulacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Verici: Kompüterinizə Linuks-Mandrakeni verici olaraq işlətmək üçün "
-#~ "quracaqsanız, bu yaxşı bir seçkidir.\n"
-#~ " Bir fayl vericisi (NFS ya da SMB),çap edici vericisi(Unixin lp protokolu "
-#~ "ya da Windows tərzi SMB çap),\n"
-#~ " tanıdıcı verici (NIS), mə'lumat tabanı vericisi və oxşarı...Onda KDE, "
-#~ "GNOME kimi məzəli şeylərin qurulmağını gözləməyin."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "İndi qurmaq ya da güncəlləmək istədiyiniz paket qruplarını\n"
-#~ "seçə bilərsiniz.\n"
-#~ "\n"
-#~ "Sonra DrakX seçdiklərinizi qurmaq ya da güncəlləmək üçün lazımi \n"
-#~ "boş yerinizin olub olmadığını sınayacaq. Əgər yoxsa, sizə bunu \n"
-#~ "söyləyəcək. Nə olursa olsun davam etmək istəsəniz,yükləmə davam edəcək.\n"
-#~ "Amma daha az ehtiyac olan paketlər qurulmayacaq.\n"
-#~ "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."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "İndi isə siz istədiyiniz paketi qurmaq üçün\n"
-#~ "seçə bilərsiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paket pəncərəsi solundakı bucaqdaki seçənəyə tıqlayaraqağacı həm aça\n"
-#~ "həm də sıxışdıra bilərsiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paketlərin əlifba sırasına görə düzülməsini istəyirsinizsə\n"
-#~ "\"Otaq və grupu düz\"\n"
-#~ "düyməsinə basın.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paket ehtiyacları xəbərdarlıqlarını istəmirsəniz \"Avtomatik\n"
-#~ "ehtiyaclar\"ı seçə bilərsiniz.\n"
-#~ "Amma bunu işarətlədiyiniz vaxt unutmayın bir paketin işarətini "
-#~ "qaldırdığınızda\n"
-#~ "ehtiyacı olan digər paketlerin de işarəti səssizcə qalxar."
-
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Yuxarıdakı siyahıdakı bütün CDlərə sahibsəniz, OLDUya 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 OLDUya "
-#~ "tÄąqlayÄąn."
-
-#~ 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 "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Kompüterinizi internete və ya yerli networka bağlamaq\n"
-#~ "istəyirsinizsə xahiş edirik 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ə\"Şəbəkə qurğularını "
-#~ "keç\"\n"
-#~ "seçənəyini işarətləyin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Şəbəkə qurğularını sonraya buraxmaq istəyirsinizsəvə ya qurğular bitdiysə "
-#~ "\"Oldu\" seçənəyini işarətləyin."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Modem tapılmadı. Xahiş edirik modemin bağlı olduğu serial qapını seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xəbəriniz olsun, birinci serial qapı (Windows altında\n"
-#~ "\"COM1\") linux altında\"ttyS0\" deyə adlandırılır."
-
-#~ 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 "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "İndi isə çevirməli bağlantı xüsusiyyətləri seçə bilərsiniz.\n"
-#~ "Əgər bilmirsinizsə və ya ne girəcəyinizə qerar 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."
-
-#~ 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 olaraq tapsın."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Xahiş edirik modeminizi açın ve doğru seçənəyi işarətləyin."
-
-#~ 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"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "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ə "
-#~ "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."
-
-#~ 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 ""
-#~ "İndi isə ev sahibi bilgilərini girin. Ne girəcəyinizə\n"
-#~ "qerar 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."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Seç:\n"
-#~ "\n"
-#~ " - IP ünvanı: Əgər IP ünvanını bilmirsinizsə, sistem idarəcisinəya da \n"
-#~ "İnternet xidmət vericisinə danışın.\n"
-#~ "\n"
-#~ " - Şə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"
-#~ "\n"
-#~ " - Avtomatik IP : Əgər networkunuz bootp ya da dhcp protokollarından bir "
-#~ "dənəsini \n"
-#~ "istifadə edirsə bu seçənəyi işarətləyin."
-
-#~ 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 ""
-#~ "Əgər şəbəkədə NIS işlədilirsə, \"NIS kullan\" seçənəyini işarətləyin. "
-#~ "Əgər \n"
-#~ "bilmirsinizsə sistem idarəcinizə soruşun."
-
-#~ 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."
-
-#~ 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 ""
-#~ "İndi çevirməli bağlantı seçənəklərini girə bilərsiniz. Əgər nə yazılması "
-#~ "lazım olduğunu\n"
-#~ "bilmirsinizsə İnternet xidmət vericinizdən lazımi bilgiləri alın."
-
-#~ 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."
-
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "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 əks ünvanı seçin və daha sonra qurulacaq \n"
-#~ "paketləri quraşdırın."
-
-#~ 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."
-
-#~ 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ıçını qura bilərsiniz\n"
-#~ "(Unix, Netware və ya Microsoft Windows networkundakı)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Yazdırma funksiyası istəyirsinizsə CUPS və LPR arasında seçici\n"
-#~ "davranmalÄąsÄąnÄąz.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS yeni, gĂźclĂź ve elastik bir Unix yazdÄąrma sistemidir\n"
-#~ "CUPS yəni \"Common Unix Printing System\". Bu da Linuks Mandrake\n"
-#~ "də əsas yazdırma sistemidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR Linuks Mandrakenin kĂśhne sistemidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "Printeriniz yox isə \"Yox\" düyməsinə tıqlayın."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linuks 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"
-#~ "Çap ediciniz fiziki olaraq kompüterinizə bağlı isə\n"
-#~ "\"Yerli çap edici\"nĹ seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Unix sisteminə bağlı çap ediciyə uzaqdan bağlanmaq istəyirsinizsə\n"
-#~ "\"Uzaqdan bağlanılan çap edici\".\n"
-#~ "\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."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Xahiş edirik DrakXin tapa bilməsi üçün yazıçınızı açın.\n"
-#~ "\n"
-#~ "Burada bir neçə mə'lumat verməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Ç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çə ç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 çap edici baş çap edici olacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Təsvir: İstəyə bağlıdır. Amma bir neçə çap ediciniz var isə\n"
-#~ "bir xeyli faydalı ola bilər.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Yerləşmə: Çap Edicinin yeri haqqında istədiyinizi yaza bilərsiniz."
-#~ "Məsələn, \"2ci mərtəbə\".\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Burada bir neçə mə'lumat verməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "*İ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çə ç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 çap edici baş çap edici olacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Saxlama qovluğu: Çap Edici sifarişlərinizi saxlanıldığı yer.\n"
-#~ "Mövzudan bixəbər isəniz əsas qurğunu seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Çap Edici bağlantısı: Çap Edici fiziki olaraq kompüterə bağlı ise\n"
-#~ "\"Yerli Çap Edici\" seçin.\n"
-#~ "Uzaq bir Unix sistemə bağlı çap edici isə\"Uzaqdan idarəli lpd Çap Edici"
-#~ "\" seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Uzaq SMB vericisi işlədən Unix və ya Windows sisteminə bağlıyazıçı üçün "
-#~ "isə \"SMB/Windows 95/98/NT\" seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "NetWare şəbəkədə yerləşən çap edici üçün isə\"NetWare\" seçin.\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Sizin çap edici tapılmadı. Xahiş edirik bağlı olduğu avadanlığın\n"
-#~ "adÄąnÄą girin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xəbəriniz olsun, bir çox çap edici birinci paralel qapıya bağlıdır.\n"
-#~ "Bu da GNU/Linuksda \"/dev/lp0\", Windowsda isə \"LPT1\"dir."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "İndi yuxarĹdakĹ siyahĹdan çap edici seçmalisiniz."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "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 ""
-#~ "Xahiş edirik yazıcınız üçün doğru qurğuları girin.\n"
-#~ "Nə seçəcəyinizi bilmirsiniz isə sənədlərə baxın\n"
-#~ "\n"
-#~ "\n"
-#~ "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."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Linuks sisteminiz üçün bir idarəci parolu verilməlidir. Bu parol\n"
-#~ "yazılış xətalarına meydan verməməsi və e'tibarlı olması səbəbi ilə iki "
-#~ "dəfə\n"
-#~ "girilməlidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "Bu parolu diqqətli seçməlisiniz. Sadəcə idarəi parolunu bilən \n"
-#~ "adamlar sistemi idarə və dəyişiklik edə bilirlər. Ayrıca idarəci \n"
-#~ "parolu ilə sistemə girən bir adam bütün veriləri silib, sistema zərər \n"
-#~ "verə bilər. Seçdiyiniz parol alfanumerik xarakterlər daxil edib en az 8 "
-#~ "xarakter uzunluğunda olmalıdır. Hər hansı bir kağıza, dəftara qeyd\n"
-#~ "alınmamalıdır. Çox uzun bir parol və ya çox qarışıq bir parol işlədilir "
-#~ "isə \n"
-#~ "parolun xatırlanması çətinləşir.\n"
-#~ "\n"
-#~ "\n"
-#~ "İdarəci olaraq sistemə girəcayiniz zaman, giriş sırasında \"login\"\n"
-#~ "yazan qismə \"root\" və \"password\" yazan qismə idarəci parolunu\n"
-#~ "yazmalÄąsÄąnÄąz."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "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 Linuks 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 hökmlü olar.\n"
-#~ "\n"
-#~ "\n"
-#~ "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 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"
-#~ "ilə etməyəcəyiniz idarə və təmir işləri üçün istifadə edilməlidir."
-
-#~ 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 ""
-#~ "Başlanğıc disketi yaradılması aşırı dərəcədə tövsiyyə edilir.\n"
-#~ "Sistemi aça bilmədiyiniz zaman bu, sizin üçün tək qurtuluş yolu olar.\n"
-#~ "Yoxsa sistemi yenidən yükləmək məcburiyyətindəsiniz."
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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"
-#~ "- 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 bilmirsinizsə \"/dev/hda\"yı seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "- Ə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 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"
-#~ "heç gözləməz.\n"
-#~ "\n"
-#~ "\n"
-#~ "- 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.\n"
-#~ "\n"
-#~ "\n"
-#~ "- \"/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"
-#~ "- 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."
-
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 (Linuks Yükləyici) SPARC üçün bir sistem yükləyicidir: sistemi "
-#~ "Linuks\n"
-#~ "ya da kompüterinizdəki başqa bir əməliyyat sistemiylə aça bilirlər.\n"
-#~ "Əsasən bu digər əməliyyat sistemləri doğru bir şəkildə 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."
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ " - 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 bilmirsinizsə \"/dev/hda\"yı seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ana əks 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 "
-#~ "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"
-#~ "Sistem yükləyicisi, əgər delay sıfır olaraq verilmiş isə\n"
-#~ "heç gözləməz."
-
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Buradan etibarən, Linuks GUI (Qrafik İstifadəçi Ara üzü) çəkirdəyini\n"
-#~ "əmələ gətirən X Window sistemini quracağıq. Buna görə də ekran kartınızı\n"
-#~ "və monitorunuzu qurmalısınız. Bu addımların çoxu onsuz da avtomatik "
-#~ "olaraq\n"
-#~ "keçiləcək və sizə sadəcə olaraq tövsiyə edilən qurğuları incələmək və "
-#~ "qəbul etmək\n"
-#~ "düşəcək. :-)\n"
-#~ "\n"
-#~ "\n"
-#~ "Quruluş qurtardığında əgər DrakXdən əksini istəmədiniz isə X Window \n"
-#~ "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."
-
-#~ 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."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Əgər sistemə girərkən qrafik arar üzünün gəlməsini istəyirsənız isə \"Bəli"
-#~ "\",əks halda \"Xeyr\" düyməsinə basın."
-
-#~ msgid ""
-#~ "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"
-#~ msgstr ""
-#~ "Sisteminiz üçün təhlükəsizlik səviyyəsini seçə bilərsiniz. Ətraflı "
-#~ "mə'lumat üçün xahiş edirik bələdçiyə\n"
-#~ " baş vurun. Əsasən , nə seçəcəyinizi bilmirsiniz isə buraya heç "
-#~ "toxunmayÄąn.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "İndi sistem yenidən qapanıb açılacaqdır.\n"
-#~ "\n"
-#~ "Açıldıqdan sonra Linuks Mandrake avtomatik olaraq yüklənəcəkdir. Əgər "
-#~ "başqa \n"
-#~ "bir əməliyyat sistemi də işlədəcəksəniz əlavə xəbərdarlıqları oxuyun."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Çex dili (Proqramcılar)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovakca (ProqramcÄąlar)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "YaradÄąlacaq profil adÄą:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "/etc/fstab-a Yaz"
-
-#~ msgid "Format all"
-#~ msgstr "Hamısını şəkilləndir"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Bütün bölmələri şəkilləndirdikdən sonra, "
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "bu bölmələrdəki bütün verilər itəcəkdir"
-
-#~ msgid "Reload"
-#~ msgstr "Yenidən yüklə"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Linuks köçürülməsi üçün bir dənə avtomatik qurulum disketi yaratmaq "
-#~ "istəyərmisiniz?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL quraşdırılması"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "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 ç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."
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Uzaqdakı növbə adı"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Sahə(domain) adı"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Çap Edicisiz"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Şəbəkə Monitoru"
-
-#~ msgid "Profile "
-#~ msgstr "Profil "
-
-#~ msgid "Statistics"
-#~ msgstr "Statistikalar"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Yollama Sür'əti:"
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Alam Sür'əti:"
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Bağlantı növü:"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "İnternetə bağlanılır"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "İnternet ilə bağlantını kəs"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "İnternet ilə bağlantı kəsilməsi bacarılmadı."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "İnternet ilə bağlantı kəsilməsi qurtardı."
-
-#~ msgid "Connection complete."
-#~ msgstr "Bağlantı qurtardı."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Bağlantı iflas etdi.\n"
-#~ "Qurğularınızı Mandrake İdarə Mərkəzindən yoxlayın."
-
-#~ msgid "sent: "
-#~ msgstr "yollandÄą:"
-
-#~ msgid "received: "
-#~ msgstr "alÄąndÄą:"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Əsas Runlevel"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Quraşdırma faylının içindəkilərlə oynanılmaz"
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Tanınmaz quraşdırma faylı"
-
-#~ msgid "Adapter"
-#~ msgstr "Adapter"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Bağla"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Aç"
-
-#~ 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 ""
-#~ "İndi siçanı sınaya bilərsiniz. Hər şeyin yolunda olduğunu \n"
-#~ "sınamaq üçün düymə və çarxı işlədin. Qurğular yaxşı isə\n"
-#~ "problem yoxdur. Əgər deyilsə onda \"Ləğv et\"i tıqlayaraq\n"
-#~ "başqa siçan sürücüsü seçə bilərsiniz."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (və ya ADSL) bağlantısı"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Qapat"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "CUPS ilə çap ediciyə yetişmək üçün URIni verməlisiniz"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Bəli, ASCII sınaq səhifəsi çap et"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Bəli, PostScript sınaq səhifəsi çap et"
-
-#~ msgid "Paper Size"
-#~ msgstr "Kağız Böyüklüyü"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "İş bittikdən sonra səhifə atılsın mı?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint sürücü seçənəkləri"
-
-#~ msgid "Color depth options"
-#~ msgstr "Rəng dərinlik seçənəkləri"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Mətni PostScript olaraq yazdırsın mı?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Mətn pilləli olaraq düzəldilsin mi?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Hər yekun səhifəsinin nömrəsi"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Sağ/Sol boşluqlar nöqtəvi(inch'in 1/72'si"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Üst/Alt boşluqlar nöqtəvi (inch'in 1/72'si)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Əlavə GhostScript seçənəkləri"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Əlavə mətn seçənəkləri"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Tərs səhifə sıralaması"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Çap Edici Bağlantısı Seçin"
-
-#~ 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 ç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?"
-
-#~ 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 ç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?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Növbənin adı"
-
-#~ msgid "Spool directory"
-#~ msgstr "Gözləmə qovluğu"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ 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."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Əgər şəbəkədə NIS istifadə edilirsə, \"NIS işlət\" seçəneyini "
-#~ "işarətləyin. Əgər \n"
-#~ "bilmirsinizsə sistem idarəcinizə soruşun."
-
-#~ msgid "yellow pages"
-#~ msgstr "sarı səhifələr"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Ä°XM dns 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Ä°XM dns 2"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "İnternetə necə bağlanmaq istəyirsiniz?"
diff --git a/perl-install/share/po/b_dump_strings.pm b/perl-install/share/po/b_dump_strings.pm
deleted file mode 100644
index f29275ecd..000000000
--- a/perl-install/share/po/b_dump_strings.pm
+++ /dev/null
@@ -1,113 +0,0 @@
-package b_dump_strings;
-
-use B qw(minus_c save_BEGINs peekop class walkoptree walkoptree_exec
- main_start main_root cstring sv_undef);
-
-BEGIN { open OUT, ">$ENV{OUTFILE}" }
-
-sub B::CV::debug {
- my ($sv) = @_;
- B::walkoptree_exec($sv->START, "debug");
-}
-
-sub B::OP::debug {
- my ($op) = @_;
-# print "OP ", class($op), " ", $op->name, "\n";
- eval {
- if ($op->name eq 'entersub') {
- $op2 = $op->first->first or return;
-
- if ($op2->name eq 'pushmark') {
- my $s = $op2->sibling->sv->PV;
- my $l;
- for ($l = $op2->sibling; ${$l->sibling}; $l = $l->sibling) {}
-
- $s =~ s/"/\\"/g;
- if ($l->first->sv->NAME eq '_') {
- print OUT qq($::pkg _("$s")\n);
- }
- }
- }
- };
-}
-sub B::RV::debug {
- my ($op) = @_;
- $op->RV->debug;
-}
-sub B::SVOP::debug {
- my ($op) = @_;
- $op->sv->debug;
-}
-sub B::PV::debug {
- my ($sv) = @_;
-# print "STRING ", $sv->PV, "\n";
-}
-sub B::IV::debug {
- my ($sv) = @_;
-# printf "IV\t%d\n", $sv->IV;
-}
-sub B::NV::debug {
- my ($sv) = @_;
-# printf "NV\t%s\n", $sv->NV;
-}
-sub B::PVIV::debug {
- my ($sv) = @_;
-# printf "IV\t%d\n", $sv->IV;
-}
-sub B::PVNV::debug {
- my ($sv) = @_;
-# printf "NV\t%s\n", $sv->NV;
-}
-sub B::AV::debug {
- my ($av) = @_;
-# print "ARRAY\n";
-}
-sub B::GV::debug {
- my ($gv) = @_;
-# printf "GV %s::%s\n", $gv->STASH->NAME, $gv->SAFENAME;
-}
-sub B::NULL::debug {
-# print "NUL\n";
-}
-sub B::SPECIAL::debug {}
-
-sub B::SV::debug { die "SV"; }
-sub B::BM::debug {
- die "BM";
-}
-sub B::PVLV::debug { die "PVLV"; }
-
-sub B::GV::pgv {
- my ($gv) = @_;
-# print $gv->NAME, "\n";
- $gv->SV->debug;
- $gv->HV->debug;
- $gv->AV->debug;
- $gv->CV->debug;
-}
-
-
-
-
-sub search {
-
-foreach my $pkg (grep { /^[a-z]/ && !/^(diagnostics|strict|attributes|main)/ } grep { /\w+::$/ } keys %main::) {
- $::pkg = $pkg;
- foreach (keys %{$main::{$pkg}}) {
- print STDERR "$pkg $_ XXXXX\n";
- local *f = *{$main::{$pkg}{$_}};
- B::svref_2object(\*f)->pgv;
- }
-}
-print STDERR "DONE\n";
-}
-
-CHECK { search() }
-INIT { exit 0 }
-
-#use lib qw(. /home/pixel/gi/perl-install);
-##use commands;
-#require '/tmp/t.pl';
-#search();
-
-1;
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
deleted file mode 100644
index 617c278c6..000000000
--- a/perl-install/share/po/be.po
+++ /dev/null
@@ -1,13566 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 1999 MandrakeSoft.
-# Alexander Bokovoy <ab@avilink.net>, 2000
-# Maryia Davidouskaia <maryia@scientist.com>, 2000
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
-"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
-"Language-Team: be\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=windows-1251\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:246
-#, fuzzy, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ęŕíôiăóđŕâŕöü ěŕţ ęŕđňó"
-
-#: ../../Xconfigurator.pm_.c:249
-#, fuzzy
-msgid "Multi-head configuration"
-msgstr "÷űňŕííĺ íŕńňđîéęi"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Âiäýŕęŕđňŕ"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Ŕá˙đűöĺ âiäýŕęŕđňó"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Ŕá˙đűöĺ X ńĺđâĺđ"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X ńĺđâĺđ"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Ŕá˙đűöĺ X ńĺđâĺđ"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X ńĺđâĺđ"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "Ńĺđâĺđ XFree86 %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "ßęóţ ęŕíôiăóđŕöűţ XFree âű ćŕäŕĺöĺ ŕňđűěŕöü?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Ďŕäňđűěęŕ 3D-ďŕńęŕđýíí˙ ˘ Âŕřŕé âłäýŕęŕđöĺ âűęŕíŕíŕ ňîëüęł ˘ XFree %s.\n"
-"XFree %s ěîćŕ âűęŕđűńňî˘âŕöü ňîëüęł 2D-ďŕńęŕđýííĺ äë˙ ăýňŕé âłäýŕęŕđňű."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-"Âŕřŕ âiäýŕęŕđňŕ ěîćŕ ěĺöü 3D-ďŕńęŕđýííĺ, ˙ęîĺ ďŕäňđűěëiâŕĺööŕ ňîëüęi XFree %"
-"s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s ç ďŕäňđűěęŕé 3D-ďŕńęŕđýíí˙"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Âŕřŕ âiäýŕęŕđňŕ ěîćŕ ěĺöü 3D-ďŕńęŕđýííĺ, ˙ęîĺ ďŕäňđűěëiâŕĺööŕ ňîëüęi XFree %"
-"s.\n"
-"ĚŔÉÖĹ ÍŔ ĄÂŔÇĹ, ŘŇÎ ĂÝŇŔ ÝĘŃĎĹĐŰĚĹÍŇŔËÜÍŔß ĎŔÄŇĐŰĚĘŔ I ĚÎĆŔ ĎĐŰÂĹŃÖI ÄŔ\n"
-"ÇŔÂIŃŔÍÍß ÂŔŘŔĂŔ ĘŔĚĎ'ŢŇÝĐÓ."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s ç ýęńďĺđűěĺíňŕëüíŕé ďŕäňđűěęŕé 3D-ďŕńęŕđýíí˙"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Âŕřŕ âiäýŕęŕđňŕ ěîćŕ ěĺöü 3D-ďŕńęŕđýííĺ, ˙ęîĺ ďŕäňđűěëiâŕĺööŕ ňîëüęi XFree %"
-"s.\n"
-"ĚŔÉÖĹ ÍŔ ĄÂŔÇĹ, ŘŇÎ ĂÝŇŔ ÝĘŃĎĹĐŰĚĹÍŇŔËÜÍŔß ĎŔÄŇĐŰĚĘŔ I ĚÎĆŔ ĎĐŰÂĹŃÖI ÄŔ\n"
-"ÇŔÂIŃŔÍÍß ÂŔŘŔĂŔ ĘŔĚĎ'ŢŇÝĐÓ. Âŕřŕ âiäýŕęŕđňŕ ďŕäňđűěëiâŕĺööŕ XFree %s, ˙ęi\n"
-"ëĺďĺé ďŕäňđűěëiâŕĺ ęŕđňű ç 2D-ďŕńęŕđýííĺě."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Íŕńňđîéęŕ XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Ďŕçíŕ÷öĺ ďŕěĺđ âiäýŕďŕě˙öi"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Ŕá˙đűöĺ äŕäŕňęîâű˙ íŕńňđîéęi äë˙ ńĺđâĺđŕ"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Ŕá˙đűöĺ ěŕíiňîđ"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Ěŕíiňîđ"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Äâŕ ęđűňű÷íűő ďŕđŕěĺňđű - ăýňŕ ÷ŕńöłí˙ âĺđňűęŕëüíŕé đŕçăîđňęi, öi\n"
-"÷ŕńöłí˙ ŕäíŕ˘ëĺíí˙ ˘ń˙ăî ýęđŕíó, ŕ ňŕęńŕěŕ áîëĺé âŕćíű ďŕđŕěĺňđ -\n"
-"÷ŕńöłí˙ ăŕđűçŕíňŕëüíŕé ńiíőđŕíiçŕöűi đŕçăîđňęi, öi ÷ŕńöłí˙ âűâŕäó\n"
-"đŕäęî˘ ýęđŕíó.\n"
-"\n"
-"ÂĹËÜĚI ÂŔĆÍŔ, ęŕá ŕáđŕíű âŕěi ěŕíiňîđ ěĺ˘ ÷ŕńöłíţ ńiíőđŕíiçŕöűi, ˙ęŕ˙\n"
-"íĺ ďĺđŕâűřŕĺ ôŕęňű÷íű˙ ěŕă÷űěŕńöi âŕřŕăŕ ěŕíiňîđó: ó ďđîöiëĺăëűě âűďŕäęó\n"
-"âű ěîćŕöĺ ńŕďńŕâŕöü ěŕíiňîđ.\n"
-"Ęŕëi âű ńóěí˙âŕĺöĺń˙, ŕá˙đűöĺ ęŕíńĺđâŕňű˘íű˙ íŕńňđîéęi."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "×ŕńöłí˙ ăŕđűçŕíňŕëüíűé đŕçăîđňęi"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "×ŕńöłí˙ âĺđňűęŕëüíŕé đŕçăîđňęi"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ěŕíiňîđ ďŕęóëü íĺ íŕńňđîĺíű"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Âiäýŕęŕđňŕ ˙ř÷ý íĺ ŕäęŕíôiăóđŕâŕíŕ"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Ďŕěĺđű ýęđŕíó ˙ř÷ý íĺ ďŕçíŕ÷ŕíű"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Ďŕď˙đýäćŕííĺ: ňýńöiđŕâŕííĺ íŕ ăýňŕé âiäýŕęŕđöĺ íĺá˙ńďĺ÷íŕ"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Ďđŕâĺđęŕ ďŕđŕěĺňđࢠíŕńňđîéęi"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"ďŕńďđŕáóéöĺ çě˙íiöü íĺęŕňîđű˙ ďŕđŕěĺňđű"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ďŕěűëęŕ:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Çŕńňŕëîń˙ %d ńĺęóíäŕ˘"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ăýňŕ äŕęëŕäíű˙ ďŕđŕěĺňđű íŕńňđîéęi?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ŕňđűěŕíŕ ďŕěűëęŕ, ďŕńďđŕáóéöĺ çě˙íiöü ďŕđŕěĺňđű"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Ďŕěĺđű ýęđŕíó"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Âűáŕđ ďŕěĺđࢠýęđŕíó i ăëűáiíi ęîëĺđó"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Âiäýŕęŕđňŕ: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Ńĺđâĺđ XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr "Ďĺđŕíîń"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Îę"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Expert Mode"
-msgstr "Ýęńďĺđň"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ďŕęŕçŕöü óń¸"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Ďŕěĺđű ýęđŕíó"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Ňűď ęëŕâi˙ňóđű: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Ňűď ěűřű: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Ěűř: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Ěŕíiňîđ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "×ŕńöłí˙ ăŕđ.đŕçă. ěŕíiňîđó: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "×ŕńöłí˙ âĺđň.đŕçă. ěŕíiňîđó: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Âiäýŕęŕđňŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Âiäýŕęŕđňŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Âiäýŕďŕě˙öü: %s Ęá\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Ďŕđŕěĺňđű ăëűáiíi ęîëĺđó: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Ďŕěĺđű ýęđŕíó: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Ńĺđâĺđ XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Ńĺđâĺđ XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Ďŕäđűőňî˘ęŕ íŕńňđîéęi X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Řňî âű ćŕäŕĺöĺ çđŕáiöü?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Çě˙íiöü ěŕíiňîđ"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Çě˙íiöü âiäýŕęŕđňó"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Çě˙íiöü íŕńňđîéęi Ńĺđâĺđó"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Çě˙íiöü ďŕěĺđű ýęđŕíó"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Iíôŕđěŕöű˙"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Ďđŕâĺđűöü ˙ř÷ý đŕç"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Âűőŕä"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Öł ćŕäŕĺöĺ Âű çŕőŕâŕöü çě˙íĺííł?\n"
-"Á˙ăó÷ŕ˙ ęŕíôłăóđŕöű˙:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "Çŕďóńę X ďđű ńňŕđöĺ ńińňýěű"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Ěîćíŕ íŕńňđîiöü ńińňýěó äë˙ ŕ˘ňŕěŕňű÷íŕăŕ çŕďóńęó X ďŕńë˙ ńňŕđňó ńińňýěű.\n"
-"Ćŕäŕĺöĺ, ęŕá X ńňŕđňŕâࢠďđű đýńňŕđöĺ?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Ęŕëi ëŕńęŕ, ďĺđŕéäçiöĺ ˘ %s äë˙ ŕęňűâŕöűi çě˙íĺíí˙˘"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Ęŕëi ëŕńęŕ, âűéäçiöĺ, ŕ ďîňűě ńęŕđűńňŕéöĺ Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 ęîëĺđࢠ(8 áiňŕ˘)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ňűń˙÷ű ęîëĺđࢠ(15 áiňŕ˘)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ňűń˙÷ ęîëĺđࢠ(16 áiňŕ˘)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 ěiëü¸íࢠęîëĺđࢠ(24 áiňű)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 ěiëi˙đäŕ ęîëĺđࢠ(24 áiňű)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 Ęá"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 Ęá"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 Ěá"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 Ěá öi áîëĺé"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Ńňŕíäŕđňíű VGA, 640x480 ďđű 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 ďđű 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Ńóěĺńíű ç 8514, 1024x768 ďđű 87 Hz ďđŕçđŕäęîâŕ (í˙ěŕ 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ďđi 87 Hz ďđŕçđŕäęîâŕ, 800x600 ďđű 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-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:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Íĺďđŕçđŕäęîâŕ SVGA, 1024x768 ďđű 60 Hz, 800x600 ďđű 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Âűńîę÷ŕńöłí¸âű SVGA, 1024x768 ďđű 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ěŕíiňîđ, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1600x1200 ďđű 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ěŕíiňîđ, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1600x1200 ďđű 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Ďĺđřű ńĺęňŕđ çŕăđóçŕ÷íŕăŕ đŕçäçĺëó"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Ďĺđřű ńĺęňŕđ ďđűëŕäű (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Óńňŕë˙âŕííĺ SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Ęóäű âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ďŕ÷ŕňęîâű çŕăđóç÷űę?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Óńňŕë˙âŕííĺ LILO/GRUB"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr ""
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr ""
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr ""
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Ăŕëî˘íű˙ îďöűi ďŕ÷ŕňęîâŕăŕ çŕăđóç÷űęó"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-#, fuzzy
-msgid "Bootloader to use"
-msgstr "Ăŕëî˘íű˙ îďöűi ďŕ÷ŕňęîâŕăŕ çŕăđóç÷űęó"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Óńňŕë˙âŕííĺ çŕăđóç÷űęó"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Çŕăđóçŕ÷íŕ˙ ďđűëŕäŕ"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (íĺ ďđŕöóĺ ďđű ńňŕđűő âĺđńi˙ő BIOS)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Ęŕěďŕęňíŕ"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "ęŕěďŕęňíŕ"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Âiäýŕ-đýćűě"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Çŕňđűěęŕ ďĺđŕä çŕăđóçęŕé âîáđŕçó ďŕ äŕěŕ˘ëĺííţ"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Ďŕđîëü"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Ďŕ˘ňŕđűöĺ ďŕđîëü"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Ŕáěĺćŕâŕííĺ îďöű˙˘ ęŕěŕíäíŕăŕ đŕäęŕ"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "ŕáěĺćŕâŕííĺ"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Ŕ÷űř÷ŕöü /tmp ďđű ęîćíŕé çŕăđóçöű"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Ďŕçíŕ÷öĺ äŕęëŕäíű ďŕěĺđ RAM (çíîéäçĺíŕ %d Má)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Äŕńňóďíŕ řěŕň ďđîôië˙˘"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Ďŕçíŕ÷öĺ ďŕěĺđ RAM ó Má"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Îďöű˙ ``Ŕáěĺćŕâŕííĺ îďöű˙˘ ęŕěŕíäíŕăŕ đŕäęó'' íĺ âűęŕđűńňî˘âŕĺööŕ áĺç ďŕđîë˙"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Ďŕńďđŕáóéöĺ ˙ř÷ý đŕç"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Ďŕđîëi íĺ ńóďŕäŕţöü"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr ""
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr ""
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr ""
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:206
-#, fuzzy
-msgid "Default OS?"
-msgstr "Ďŕ äŕěŕ˘ëĺííţ"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Ó ěĺíţ ěŕţööŕ íŕńňóďíű˙ ďóíęňű.\n"
-"Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Äŕäŕöü"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Çđîáëĺíŕ"
-
-#: ../../any.pm_.c:265
-#, fuzzy
-msgid "Modify"
-msgstr "Çě˙íiöü RAID"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "ßęi ňűď ďóíęňŕ ćŕäŕĺöĺ äŕäŕöü?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Iířŕ˙ ŔŃ (SunOS,...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Iířŕ˙ ŔŃ (MacOS,...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Iířŕ˙ ŔŃ (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Âîáđŕç"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Äŕëó÷űöü"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "×űňŕííĺ-çŕďiń"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Ňŕáëiöŕ"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Íĺíŕäçĺéíŕ"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Ěĺňęŕ"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Ďŕ äŕěŕ˘ëĺííţ"
-
-#: ../../any.pm_.c:326
-#, fuzzy
-msgid "Initrd-size"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr ""
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Âűäŕëiöü çŕďiń"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Ďóńňŕ˙ ěĺňęŕ íĺ äŕçâŕë˙ĺööŕ"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Âű ďŕâiííű ěĺöü đŕçäçĺë swap"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Ăýňŕ˙ ěĺňęŕ ˘ćî âűęŕđűńňî˘âŕĺööŕ"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Çíîéäçĺíű %s %s iíňýđôĺéńű"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Öi ¸ńöü ó âŕń iířű?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Öi ¸ńöü ó âŕń %s iíňýđôĺéń?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Íĺ"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Ňŕę"
-
-#: ../../any.pm_.c:661
-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:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Óńňŕë˙âŕííĺ äđŕéâĺđó äë˙ %s ęŕđňű %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(ěîäóëü %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "ßęi äđŕéâĺđ %s ďŕńďđŕáŕâŕöü?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Ó íĺęŕňîđűő âűďŕäęŕő %s äđŕéâĺđó ďŕňđýáíŕ íĺęŕňîđŕ˙ äŕäŕňęîâŕ˙ iíôŕđěŕöű˙,\n"
-"ŕëĺ çâű÷ŕéíŕ ăýňŕ íĺ ďŕňđŕáóĺööŕ. Öi íĺ ćŕäŕĺöĺ âű çŕäŕöü äë˙ ˙ăî\n"
-"äŕäŕňęîâű˙ îďöűi, öi äŕçâîëiöĺ äđŕéâĺđó ďđŕňýńöiđŕâŕöü ěŕřűíó\n"
-"˘ ďîřóęŕő íĺŕáőîäíŕé iíôŕđěŕöűi? Ěŕă÷űěŕ, ňýńöiđŕâŕííĺ ďđűâ˙äçĺ\n"
-"äŕ ńďűíĺíí˙ ęŕěď'ţňýđó, ŕëĺ ˙íî íi÷îăŕ íĺ ńŕďńóĺ."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Ŕ˘ňŕďîřóę"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Ďŕçíŕ÷öĺ ďŕđŕěĺňđű"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Âű íĺ ěîćŕöĺ çŕäŕöü îďöűi ěîäóëţ %s.\n"
-"Îďöűi - ó ôŕđěŕöĺ ``iě˙=çíŕ÷ýííĺ iě˙2=çíŕ÷ýííĺ2 ...''.\n"
-"Íŕďđűęëŕä, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Îďöűi ěîäóëţ:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Çŕăđóçęŕ ěîäóëţ %s íĺ ďđŕéřëŕ.\n"
-"Ćŕäŕĺöĺ ďŕńďđŕáŕâŕöü ç iířűěi ďŕđŕěĺňđŕěi?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(óćî äŕäŕäçĺíŕ %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Ăýňű ďŕđîëü çŕíŕäňŕ ďđîńňű"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Ęŕëi ëŕńęŕ, óâ˙äçiöĺ iě˙ ęŕđűńňŕëüíięó"
-
-#: ../../any.pm_.c:776
-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:777
-msgid "This user name is already added"
-msgstr "Ăýňŕ iě˙ ęŕđűńňŕëüíięó ˘ćî äŕäŕäçĺíŕ"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Óâ˙äçiöĺ iě˙ ęŕđűńňŕëüíięó\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Ďđűí˙öü ęŕđűńňŕëüíięŕ"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Óëŕńíŕĺ iě˙"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Ŕáŕëîíęŕ:"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ďięňŕăđŕěŕ"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Ŕ˘ňŕěŕňű÷íű ˘âŕőîä ó ńińňýěó"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Ěîćíŕ íŕńňđîiöü ńińňýěó äë˙ ŕ˘ňŕěŕňű÷íŕăŕ ˘âŕőîäó ˘ ńińňýěó äë˙\n"
-"ŕäíŕăî ęŕđűńňŕëüíięŕ. Ęŕëi Âű íĺ ćŕäŕĺöĺ ăýňŕăŕ, íŕöińíiöĺ \"Ŕäěĺíŕ\"."
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Ŕá˙đűöĺ ěýíýäćŕđ âîęíŕ˘:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Âű ěîćŕöĺ ŕáđŕöü łířű˙ ěîâű, ˙ęi˙ áóäóöü äŕńňóďíű ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Óń¸"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Ďŕ âűáŕđó"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "×ŕęŕĺööŕ"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Ŕäěĺíŕ"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Ńŕđäý÷íŕ çŕďđŕřŕĺě ó Crackers"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Çóńłě ńëŕáű"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Ńňŕíäŕđňíű"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Âűńîęi"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Âűńîęi"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Ďŕđŕíŕiäŕëüíű"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Ăýňű óçđîâĺíü íĺŕáőîäíŕ âűęŕđűńňî˘âŕöü ç ŕńö˙đîăŕé. Ńińňýěŕ áóäçĺ ďđŕńöĺé\n"
-"ó ęŕđűńňŕííi, ŕëĺ i áîëüř ÷óňíŕé: ăýňű óçđîâĺíü á˙ńďĺęi íĺëüăŕ "
-"âűęŕđűńňî˘âŕöü\n"
-"íŕ ěŕřűíŕő, ˙ęi˙ äŕëó÷ŕíű äŕ ńĺňęi öi äŕ Internet. Óâŕőîä íĺ ŕáŕđîíĺíű "
-"ďŕđîëĺě."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Ďŕđîëü çŕđŕç óęëţ÷ŕíű, ŕëĺ âűęŕđűńňŕííĺ ęŕěď'ţňýđó ˘ ˙ęŕńöi ńĺňęŕâŕăŕ\n"
-"ňŕęńŕěŕ íĺ đýęŕěĺíäŕâŕíŕ."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Ăýňŕ ńňŕíäŕđňíű óçđîâĺíü á˙ńďĺęi, ˙ęi đýęŕěĺíäŕâŕíű äë˙ ęŕěď'ţňýđó,\n"
-"˙ęi äŕëó÷ŕíű äŕ Internet ó ˙ęŕńöi ęëiĺíňó. Äŕäŕíű˙ íîâű˙ ďđŕâĺđęi\n"
-"á˙ńďĺęi."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Íŕ ăýňŕě óçđî˘íĺ á˙ńďĺęi ěŕă÷űěŕ âűęŕđűńňŕííĺ ńińňýěű ˘ ˙ęŕńöi\n"
-"ńĺđâĺđó. Óçđîâĺíü á˙ńďĺęi äŕńňŕňęîâŕ âűńîęi äë˙ đŕáîňű\n"
-"ńĺđâĺđó, ˙ęi äŕďóńęŕĺ çëó÷ýííi ńŕ řěŕňëięiěi ęëiĺíňŕěi."
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Ďđűěŕţööŕ ˘ëŕńöiâŕńöi 4 óçđî˘í˙, ŕëĺ çŕđŕç ńińňýěŕ ďî˘íŕńöţ çŕ÷űíĺíŕ.\n"
-"Ďŕđŕěĺňđű á˙ńďĺęi ˘ńňŕíî˘ëĺíű íŕ ěŕęńiěóě."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Óçđîâĺíü á˙ńďĺęi"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Íŕńňđîéęi ˘çđî˘í˙ á˙ńďĺęi"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Ŕá˙đűöĺ äŕäŕňęîâű˙ íŕńňđîéęi äë˙ ńĺđâĺđŕ"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Welcome to GRUB the operating system chooser!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Use the %c and %c keys for selecting which entry is highlighted."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Press enter to boot the selected OS, 'e' to edit the"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "commands before booting, or 'c' for a command-line."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, 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:944
-msgid "not enough room in /boot"
-msgstr "Íĺ őŕďŕĺ äűńęŕâŕé ďđŕńňîđű ˘ /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Ďđŕöî˘íű ńňîë"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-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 ../../standalone/logdrake_.c:101
-#, fuzzy
-msgid "/_File"
-msgstr "Ôŕéëű:\n"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr ""
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr ""
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:92
-#, fuzzy
-msgid "NewStyle Monitor"
-msgstr "Ěŕíiňîđ"
-
-#: ../../bootlook.pm_.c:93
-#, fuzzy
-msgid "Traditional Monitor"
-msgstr "Çě˙íiöü ěŕíiňîđ"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr ""
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Lilo/grub mode"
-msgstr "Đýćűě çëó÷ýíí˙"
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Yaboot mode"
-msgstr "Çŕăđóçŕ÷íŕ˙ ďđűëŕäŕ"
-
-#: ../../bootlook.pm_.c:104
-#, 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:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-#, fuzzy
-msgid "Configure"
-msgstr "Íŕńňđîéęŕ X Window"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr ""
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr ""
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr ""
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr ""
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "Ěá"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr ""
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d őâiëií"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 őâiëiíŕ"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d ńĺęóíäŕ˘"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Äŕäŕöü đŕçäçĺë íĺěŕă÷űěŕ"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Âű ěîćŕöĺ ŕáđŕöü łířű˙ ěîâű, ˙ęi˙ áóäóöü äŕńňóďíű ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Ôđŕíöű˙"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Áĺëüăiéńęi"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Í˙ěĺöęi"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Ăđý÷ŕńęi"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Íŕđâĺćńęi"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Ăë."
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Iňŕëü˙íńęi"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "ďŕńë˙äî˘íŕ˙"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Ďŕ-ďĺđřŕĺ, çđŕáiöĺ đýçĺđâîâóţ ęîďiţ âŕřűő äŕäçĺíűő"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "×űňŕéöĺ ˘âŕćëiâŕ!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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"
-" íĺ äŕëĺé çŕ 2048 ńĺęňŕđî˘ ŕä ďŕ÷ŕňęó äűńęŕ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Ďŕěűëęŕ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Ěŕéńňŕđ ńňâŕđýíí˙"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Ŕá˙đűöĺ äçĺ˙ííĺ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Çŕđŕç âű ěŕĺöĺ ňîëüęi ŕäçií â˙ëięi đŕçäçĺë FAT\n"
-"(˙ęł çâű÷ŕéíŕ âűęŕđűńňî˘âŕĺ MS Dos/Windows).\n"
-"Ďđŕďŕíóţ, ďŕ-ďĺđřŕĺ, çě˙íiöü ďŕěĺđű đŕçäçĺëŕ\n"
-"(ęëięíiöĺ íŕ ˙ăî, ŕ ďîňűě íŕ \"çě˙íĺííĺ ďŕěĺđŕ˘\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Ďŕäđŕá˙çíŕńöi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Ďóńňŕ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "˛ířű˙"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Ňűďű ôŕéëŕâűő ńińňýěŕ˘:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Ńňâŕđűöü"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Ňűď"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Âűęŕđűńňî˘âŕéöĺ ``%s'' çŕěĺńň"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Çíiř÷űöü"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Ńďŕ÷ŕňęó çđŕáiöĺ ``Unmount''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "Óńĺ äŕäçĺíű˙ ˘ đŕçäçĺëĺ %s áóäóöü ńňđŕ÷ŕíű ďŕńë˙ çěĺíű ˙ăî ňűďó"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Ŕá˙đűöĺ äçĺ˙ííĺ"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Ńňâŕđýííĺ íîâŕăŕ đŕçäçĺëó"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Đýćűě ýęńďĺđňó"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Çâű÷ŕéíű đýćűě"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Ŕäęŕň"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Ńŕďđŕ˘äű ďđŕö˙ăâŕöü?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Âűéńöi áĺç çŕőŕâŕíí˙"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Âűéńöi áĺç çŕďińó ňŕáëiöű đŕçäçĺëŕ˘"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Đŕçěĺđęŕâŕöü ŕ˘ňŕěŕňű÷íŕ"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Ŕ÷űńöiöü óń¸"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Iíôŕđěŕöű˙"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Óńĺ ďĺđřŕńíű˙ đŕçäçĺëű âűęŕđűńňŕíű"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Äŕäŕöü đŕçäçĺë íĺěŕă÷űěŕ"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Ęŕá çđŕáiöü áîëüř đŕçäĺëŕ˘, âűäŕëiöĺ ŕäçií i ńňâŕđűöĺ ďŕřűđŕíű đŕçäçĺë "
-"(extended)"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Çŕďiń ňŕáëiöű đŕçäçĺëŕ˘"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Äŕäŕňęîâŕ˙ ňŕáëiöŕ đŕçäçĺëŕ˘"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Äŕäŕňęîâŕ˙ ňŕáëiöŕ đŕçäçĺëŕ˘"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Äŕäŕňęîâŕ˙ ňŕáëiöŕ đŕçäçĺëŕ˘"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Ŕ˘ňŕěŕíöiđŕâŕííĺ çěĺííűő íŕçŕďŕřâŕëüíłęŕ˘"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Ŕá˙đűöĺ ôŕéë"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Ňŕáëiöŕ đŕçě˙ř÷ýíí˙ đýçĺđâîâŕăŕ äűńęó ěŕĺ iířű ďŕěĺđ\n"
-"Ďđŕö˙ăâŕöü äŕëĺé?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Óâŕăŕ!"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä\n"
-"Óńĺ äŕäçĺíű˙ íŕ ăýňŕé äűńęĺöĺ áóäóöü ńňđŕ÷ŕíű"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Ďŕńďđŕáóĺě âűđŕňŕâŕöü ňŕáëiöó đŕçäçĺëŕ˘"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "Iíôŕđěŕöű˙"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Ęđîďęŕ ěŕíöiđŕâŕíí˙"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Îďöűi"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Çě˙íĺííĺ ďŕěĺđŕ˘"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Ďĺđŕíîń"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Ôŕđěŕňŕâŕííĺ"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Ěŕíöiđŕâŕííĺ"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Äŕäŕöü äŕ RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Äŕäŕöü äŕ LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Đŕçěŕíöiđŕâŕöü"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Âűäŕëiöü ç RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Âűäŕëiöü ç LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Çě˙íiöü RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Âűęŕđűńňî˘âŕöü äë˙ âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Ńňâŕđýííĺ íîâŕăŕ đŕçäçĺëó"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Ďŕ÷ŕňęîâű ńĺęňŕđ:"
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Ďŕěĺđ ó Ěá:"
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Ňűď ôŕéëŕâŕé ńińňýěű:"
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Ďóíęň ěŕíöiđŕâŕíí˙:"
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Ďŕđŕěĺňđű: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Ôŕđěŕňŕâŕííĺ âiđňóŕëüíŕăŕ đŕçäçĺëó %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Çě˙íiöü ňűď đŕçäçĺëó"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-#, fuzzy
-msgid "Which filesystem do you want?"
-msgstr "ßęóţ ńińňýěó äđóęó Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Ęóäű âű ćŕäŕĺöĺ ěŕíöiđŕâŕöü âiđňóŕëüíóţ ďđűëŕäó %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Ęóäű âű ćŕäŕĺöĺ ěŕíöiđŕâŕöü ďđűëŕäó %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Íĺëüăŕ ˘ńňŕë˙âŕöü ďóíęň ěŕíöiđŕâŕíí˙, ňŕěó řňî đŕçäĺë âűęŕđűńňî˘âŕĺööŕ äë˙\n"
-"âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű.\n"
-"Ńďŕ÷ŕňęó âűäŕëiöĺ âiđňóŕëüíóţ ńińňýěó"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Ďŕäëłę ěĺćࢠôŕéëŕâŕé ńińňýěű FAT"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Çě˙íĺííĺ ďŕěĺđŕ˘"
-
-#: ../../diskdrake/interactive.pm_.c:609
-#, fuzzy
-msgid "This partition is not resizeable"
-msgstr "Ďŕěĺđű ˙ęîăŕ đŕçäçĺëŕ âű ćŕäŕĺöĺ çě˙íiöü?"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Óńĺ äŕäçĺíű˙ ˘ ăýňűě đŕçäçĺëĺ ďŕâiííű áűöü çŕđőiâŕâŕíű˙"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Óńĺ äŕäçĺíű˙ ˘ đŕçäçĺëĺ %s áóäóöü ńňđŕ÷ŕíű"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Âűáŕđ íîâűő ďŕěĺđŕ˘"
-
-#: ../../diskdrake/interactive.pm_.c:622
-#, fuzzy
-msgid "New size in MB: "
-msgstr "Ďŕěĺđ ó Ěá:"
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Íŕ ˙ęi äűńę ďĺđŕíĺńöł?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Ńĺęňŕđ"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Íŕ ˙ęi ńĺęňŕđ ďĺđŕíĺńöł?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Ďĺđŕíîńłě"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Ďĺđŕíîńłööŕ đŕçäçĺë..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Ŕá˙đűöĺ ińíóţ÷ű RAID äë˙ äŕäŕíí˙"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "íîâű"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Âűá˙đűöĺ ińíóţ÷ű LVM äë˙ äŕáŕ˘ëĺíí˙"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Ăýňű đŕçäçĺë íĺ ěîćŕ áűöü âűęŕđűńňŕíű ďŕä âiđňóŕëüíóţ ôŕéëŕâóţ ńińňýěó"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Âiđňóŕëüíŕ˙ ôŕéëŕâŕ˙ ńińňýěŕ (loopback)"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Iě˙ âiđňóŕëüíŕăŕ đŕçäçĺëó"
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Óëŕńíŕĺ iě˙"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr ""
-"Ôŕéë óćî âűęŕđűńňî˘âŕĺööŕ iířŕé âiđňóŕëüíŕé ńińňýěŕé. Ęŕëi ëŕńęŕ, \n"
-"ŕá˙đűöĺ iířóţ íŕçâó"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Ôŕéë óćî ińíóĺ. Âűęŕđűńňŕöü ˙ăî?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-#, fuzzy
-msgid "Mount options"
-msgstr "Îďöűi ěîäóëţ:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "ďđűëŕäŕ"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "óçđîâĺíü"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "ďŕěĺđ áëîęó"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Áóäçüöĺ óâŕćëiâű. Ăýňóţ ŕďĺđŕöűţ íĺëüăŕ ŕäě˙íiöü"
-
-#: ../../diskdrake/interactive.pm_.c:906
-#, fuzzy
-msgid "What type of partitioning?"
-msgstr "ßęi ňűď äđóęŕđęi âű ěŕĺöĺ?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 íĺ "
-"âűęŕđűńňî˘âŕĺöŕ, ňŕäű /boot íĺ ďŕňđýáíű."
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 LILO, íĺ çŕďŕě˙ňŕéöĺ äŕäŕöü\n"
-"đŕçäçĺë /boot"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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"
-"Äŕäŕéöĺ đŕçäĺë /boot, ęŕëi ëŕńęŕ."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Ňŕáëiöŕ đŕçě˙ř÷ýíí˙ ďđűëŕäű %s áóäçĺ çŕďińŕíŕ íŕ äűńę!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Ęŕá çě˙íĺííi ˘ńňóďiëi ˘ äçĺ˙ííĺ, íĺîáőîäíŕ ďĺđŕçŕăđóçiööŕ"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Óńĺ äŕäçĺíűĺ ˘ đŕçäçĺëĺ %s áóäóöü ńňđŕ÷ŕíű ďŕńë˙ ôŕđěŕňŕâŕíí˙"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Ôŕđěŕňŕâŕííĺ"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Ôŕđěŕňŕâŕííĺ âiđňóŕëüíŕăŕ đŕçäçĺëó %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Ôŕđěŕňŕâŕííĺ đŕçäçĺëó %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid íĺ ďđŕöŕçäîëüíű"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Íĺ őŕďŕĺ ďđŕńňîđű äë˙ ńňâŕđýíí˙ íîâűő đŕçäçĺëŕ˘"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Íĺ őŕďŕĺ ďđŕńňîđű äë˙ ńňâŕđýíí˙ íîâűő đŕçäçĺëŕ˘"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Ďŕěĺđű ýęđŕíó: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Ďđűëŕäŕ:"
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Ëiňŕđŕ äë˙ DOS-äűńęó: %s (íŕ˘ăŕä)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Ňűď: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Iě˙: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Ďŕ÷ŕňŕę: ńĺęňŕđ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Ďŕěĺđ: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s ńĺęňŕđŕ˘"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Öűëiíäđű ç %d ďŕ %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Ôŕđěŕňŕâŕííĺ\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Íĺ ŕäôŕđěŕňŕâŕíŕ\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Çŕěŕíöiđŕâŕíŕ\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Ôŕéë(ű) âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Çŕăđóçŕ÷íű đŕçäçĺë ďŕ äŕěŕ˘ëĺííţ\n"
-" (äë˙ çŕăđóçęi MS-DOS, ŕ íĺ äë˙ lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Óçđîâĺíü %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Ďŕěĺđ ôđŕăěĺíňó %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-äűńęi %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Iě˙ ôŕéëó âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Ďŕěĺđ: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Ăĺŕěĺňđű˙: %s öűëiíäđŕ˘, %s ăŕëîâŕę, %s ńĺęňŕđŕ˘\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Iíôŕđěŕöű˙: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-äűńęi %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Ňűď ňŕáëiöű đŕçäçĺëŕ˘: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "íŕ řűíĺ %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Îďöűi: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Ňűď ôŕéëŕâŕé ńińňýěű:"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Ăýňű ďŕđîëü çŕíŕäňŕ ďđîńňű (˙ăî äŕ˘ćűí˙ ďŕâiííŕ áűöü íĺ ěĺíĺé çŕ %d ëiňŕđŕ˘)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Ďŕđîëi íĺ ńóďŕäŕţöü"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "Çě˙íiöü ňűď đŕçäçĺëó"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "DNS ńĺđâĺđ"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s ďŕěűëęŕ ôŕđěŕňŕâŕíí˙ %s"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Íĺ âĺäŕţ ˙ę ŕäôŕđěŕňŕâŕöü %s ç ňűďŕě %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "ďŕěűëęŕ đŕçěŕíöiđŕâŕíí˙ %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr ""
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "ńĺđâĺđ"
-
-#: ../../fsedit.pm_.c:467
-#, fuzzy
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Âű íĺ ěîćŕöĺ đŕçáiâŕöü íŕ đŕçäĺëű, ďŕěĺđ ˙ęiő ěĺíĺé çŕ 16 Ěá"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Âű íĺ ěîćŕöĺ đŕçáiâŕöü íŕ đŕçäĺëű, ďŕěĺđ ˙ęiő ěĺíĺé çŕ 32 Ěá"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Ďóíęň ěŕíöiđŕâŕíí˙ ďŕâiíĺí ďŕ÷űíŕööŕ ç /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Óćî ¸ńöü đŕçäçĺë ç ďóíęňŕě ěŕíöiđŕâŕíí˙ %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Ăýňű ęŕňŕëîă ďŕâłíĺí çíŕőîäçłööŕ ˘íóňđű ęŕđŕí¸âŕé ôŕéëŕâŕé ńłńňýěű"
-
-#: ../../fsedit.pm_.c:486
-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:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-"Âŕě íĺŕáőîäíŕ çŕäŕöü ďđŕâiëüíű ňűď ôŕéëŕâŕé ńińňýěű (ext2, reiserfs)\n"
-"äë˙ ăýňŕé ęđîďęi ěŕíöiđŕâŕíí˙\n"
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Íĺ őŕďŕĺ ďđŕńňîđű äë˙ ńňâŕđýíí˙ íîâűő đŕçäçĺëŕ˘"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Ďŕěűëęŕ ŕäęđűöö˙ %s äë˙ çŕďińó: %s"
-
-#: ../../fsedit.pm_.c:697
-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ěŕâĺđíŕé ďđű÷űíű."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Âű íĺ ńňâŕđűëi ŕíi˙ęiő đŕçäçĺëŕ˘!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-#, fuzzy
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", 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:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-#, fuzzy
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Ó ăýňűě ďóíęöĺ, âű ďŕâłííű ŕáđŕöü äçĺ íŕ âŕřűě ćîđńęłě \n"
-"äűńęó óńňŕë˙âŕöü ŕďĺđŕöűéíóţ ńłńňýěó Mandrake Linux. Ęŕëł äűńę ďóńňű\n"
-"ŕëüáî ˘ńňŕëűâŕíŕ˙ ŕďĺđŕöűéíŕ˙ ŕďĺđŕöűéíŕ˙ ńłńňýěŕ âűęŕđűńňî˘âŕĺ ˘ńţ\n"
-"äűńęŕâóţ ďđŕńňîđó, âű ďŕâłííű đŕçüáłöü ˙ăî íŕ đŕçäçĺëű. Ó ŕńíî˘íűě,\n"
-"đŕçáłöö¸ đŕçäçĺëࢠćîđńęŕăŕ äűńęó ńęëŕäŕĺööŕ ç ëŕăł÷íŕăŕ äç˙ëĺíí˙ ˙ăî\n"
-"äűńęŕâŕé ďđŕńňîđű äçĺë˙ ˘ńňŕë˙âŕíí˙ âŕřŕé íîâŕé ńłńňýěű Mandrake Linux.\n"
-"\n"
-"Ňŕěó ˙ę âűíłęł đŕçáłöö˙ đŕçäçĺëࢠçâű÷ŕéíŕ íĺçâŕđîňíű˙, ăýňű ďđŕöýń \n"
-"ěîćŕ áűöü ďóćŕţ÷űě ł íŕďđóćŕíűě, ęŕëł âű íĺâîďűňíű ęŕđűńňŕëüíłę. Ăýňű\n"
-"ěŕéńňŕđ ńďđŕř÷ŕĺ ăýňű ďđŕöýń. Ďĺđŕä ňűě ˙ę ďŕ÷ŕöü çâ˙đíłöĺń˙, ęŕëł\n"
-"ëŕńęŕ, äŕ äŕâĺäęł.\n"
-"\n"
-"Âŕě ďŕňđýáíŕ, ńŕěŕ ěŕëŕ, äâŕ đŕçäçĺëű. Ďĺđřű íĺďŕńđýäíŕ äë˙ ŕďĺđŕöűéíŕé\n"
-"ńłńňýěű, ł äđóăł äë˙ âłđňóŕëüíŕé ďŕě˙öł (Swap - đŕçäçĺë).\n"
-"\n"
-"Ęŕëł đŕçäçĺëű ˘ćî âűçíŕ÷ŕíű (ó ďŕď˙đýäí˙ĺ ˘ńňŕë˙âŕííĺ öł łířűě \n"
-"łíńňđóěŕíňŕě âűçíŕ÷ýíí˙ đŕçäçĺëŕ˘), âű ďŕâłííű ŕáđŕöü ňű˙, ˙ęł˙ ćŕäŕĺöĺ\n"
-"âűęŕđűńňî˘âŕöü äë˙ ˘ńňŕë˙âŕíí˙ ńłńňýěű.\n"
-"\n"
-"\n"
-"Ęŕëł đŕçäçĺëű íĺ áűëł âűçíŕ÷ŕíű, âű ďŕâłííű łő ńňâŕđűöü. Ęŕá çđŕáłöü \n"
-"ăýňŕ, ńęŕđűńňŕéöĺ ěŕéńňđŕ, äŕńňóďíŕăŕ âűřýé. Ó çŕëĺćíŕńöł ŕä \n"
-"ęŕíôłăóđŕöűł ćîđńňęŕăŕ äűńęó, ěîăćŕ áűöü çđîáëĺíŕ íŕńňóďíŕĺ:\n"
-"\n"
-"* Âűęŕđűńňŕííĺ łńíóţ÷ŕăŕ đŕçäçĺëó: ěŕéńňŕđ çíŕéřî˘ ŕäçłí öł íĺęŕëüęł.\n"
-"łńíóţ÷űő đŕçäçĺëࢠíŕ âŕřűě ćîđńęłě äűńęó. Ęŕëł âű ćŕäŕĺöĺ łő çŕőŕâŕöü,\n"
-"ŕá˙đűöĺ ăĺňóţ îďöűţ.\n"
-"\n"
-"\n"
-"* Ďî˘íŕ˙ ŕ÷űńňęŕ äűńęó: ŕá˙đűöĺ ăýňŕ, ęŕëł âű ćŕäŕĺöĺ âűäŕëłöü óńĺäŕäçĺíű˙ ł "
-"đŕçäçĺëű ˙ęł˙ łńíóţöü\n"
-" íŕ âŕřűě äűńęó ł çŕě˙íłöü íŕ Mandrake Linux. Áóäçöĺ óâŕćëłâű ç ăýňŕéîďöű˙é, "
-"áî ăýňű ďđŕöýń íĺçâŕđîňíű.\n"
-"\n"
-"\n"
-"* Âűęŕđűńňŕííĺ âîëüíŕé ďđŕńňîđű íŕ đŕçäçĺëĺ Windows: ęŕëł MicrosoftWindows "
-"óńňŕë˙âŕíŕ íŕ âŕřűě ćîđńęłě\n"
-" äűńęó ł âűęŕđűńňî˘âŕĺ ˘ńţ äŕńňóďíóţ ďđŕńňîđó, âű ďŕâłííű ńňâŕđűöüâîëüíóţ "
-"ďđŕńňîđó äë˙ äŕäçĺíűő Linux\n"
-"Ęŕá çđŕáłöü ăýňŕ, âű ěîćŕöĺ âűäŕë˙öü âŕř đŕçäçĺë Windows ł äŕäçĺíű˙(ăë."
-"\"Ŕ÷űńňęŕ óń˙ăî äűńęó\" ŕëüáî\n"
-" \"Đýćűě ýęńďĺđňó\") ŕëüáî çě˙íłöü ďŕěĺđű âŕřŕăŕ đŕçäçĺëó WindowsÇě˙íĺííĺ "
-"ďŕěĺđࢠěîćŕ áűöü âűęŕíŕíŕ\n"
-" áĺç ńňđŕňű äŕäçĺíűő. Ăýňŕ˙ îďöű˙ đýęŕěĺíäóĺööŕ, ęŕëł âű "
-"ćŕäŕĺöĺâűęŕđűńňî˘âŕöü Mandrake Linux ł\n"
-" Microsoft Windows íŕ ŕäíűě ł ňűě ćŕ ęŕěď'ţňýđű.\n"
-"\n"
-" Ďĺđŕä âűáŕđŕě ăýňŕăŕ, ęŕëł ëŕńęŕ, çüâ˙đíłöĺ ˘âŕăó, íŕ ňîĺ, řňîęîëüęŕńüöü "
-"äŕńňóďíŕé âîëüíŕé\n"
-" ďđŕńňîđű ďŕä Microsoft Windows çěĺířűööŕ.\n"
-"\n"
-"\n"
-"* Đýćűě ýęńďĺđňó: âű ěîćŕöĺ ŕáđŕöü ăýňóţ îďöűţ, ęŕëł âű ćŕäŕĺöĺđŕçáłöü "
-"đŕçäçĺëű óëŕńíŕ đóęŕěł.\n"
-" Áóäçöĺ ˘âŕćëłâű˙ ŕáłđŕţ÷ű ăýňŕ. Ăýňŕ˙ îďöű˙ ěŕăóňíŕ˙ ŕëĺ äŕâîëłíĺá˙ńďĺ÷íŕ˙, "
-"âű ěîćŕöĺ\n"
-" ë¸ăęŕ çăóáłöü ńâŕĺ äŕäçĺíű˙. Ňŕěó íĺ ŕáłđŕéöĺ ăýňóţ îďöűţ ęŕëł âűíĺ âĺäŕĺöĺ "
-"řňî đîáłöĺ."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-#, fuzzy
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-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"
-"íîâŕé ŕďĺđŕöűéíŕé ńłńňýěű Mandrake Linux."
-
-#: ../../help.pm_.c:404
-#, fuzzy
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Âŕřŕ íîâŕ˙ ŕďĺđŕöűéíŕ˙ ńłńňýěŕ Mandrake Linux çŕđŕç óńňŕ븢âŕĺööŕ.\n"
-"Ăýňŕ ŕďĺđŕöű˙ ŕäűěĺ ďý˘íű ÷ŕń(řňî çŕëĺćűöü ŕä ďŕěĺđó ŕáđŕíŕăŕ ˘ńňŕë˙âŕíí˙ ł "
-"őóňęŕńöł\n"
-" ęŕěď'ţňýđó) .\n"
-"\n"
-"\n"
-"Ęŕëł ëŕńęŕ, ďŕ÷ŕęŕéöĺ."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: ../../help.pm_.c:513
-#, fuzzy
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Íŕ âŕřűě äűńęó áűëî çíîéäçĺíŕ áîëĺé çŕ ŕäçłí đŕçäçĺë\n"
-"Windows. Ęŕëł ëŕńęŕ, ŕá˙đűöĺ ňîé, ďŕěĺđ ˙ęîăŕ ćŕäŕĺöĺ çě˙íłöü, "
-"ęŕáóńňŕë˙âŕöü\n"
-"ńłńňýěó Mandrake Linux.\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:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Ęŕëł ëŕńęŕ, ďŕ÷ŕęŕéöĺ. Ăýňŕ˙ ŕďĺđŕöű˙ ŕäűěĺ ďý˘íű ÷ŕń."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Ęŕëł ëŕńęŕ, íŕöłńíłöĺ \"Óńňŕ븢ęŕ\" ęŕëł íĺ ěŕĺööŕ ŕíł˙ęŕé ďŕď˙đýäí˙éâĺđńłł "
-"Mandrake Linux\n"
-"ŕëüáî âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü íĺęŕëüęł ŕďĺđŕöűéíűő ńłńňýěŕ˘.\n"
-"\n"
-"\n"
-"Ó çŕëĺćíŕńöł ŕä âŕřűő âĺäࢠGNU/Linux, âű ěîćűöĺ ŕáđŕöü ŕäçłí ç íŕńňóďíűő "
-"ęëŕńŕ˘, ęŕá óńňŕ븢âŕöü ł ěŕäűôłęŕâŕöü \n"
-"âŕřóţ ŕďĺđŕöűéíóţ ńłńňýěó Mandrake Linux:\n"
-"\n"
-"* Đýęŕěĺíäŕâŕíŕ: ŕá˙đűöĺ ăýňű ęëŕń, ęŕëł âű íłęîëł íĺ ˘ńňŕ븢âŕëłGNU/Linux. "
-"Óńňŕë˙âŕííĺ áóäçĺ âĺëüěł ďđîńňűě,\n"
-" âŕě áóäçĺ çŕäŕíŕ ňîëüęł íĺęŕëüęł ďűňŕíí˙˘.\n"
-"\n"
-"\n"
-"* Ďŕ âűáŕđó: ęŕëł âű äŕńňŕňęîâŕ çíŕ¸ěű˙ ç GNU/Linux, âű ěîćŕöĺ çđŕáłöü âűáŕđ "
-"ěłć âűęŕđűńňŕííĺě ńłńňýěű ˙ę Ďđŕöî˘íŕ˙\n"
-" ńňŕíöű˙, Ńĺđâĺđ, Đŕńďđŕöî˘ęŕ. Âű ďŕâłííű áóäçĺöĺ ŕäęŕçŕöü íŕ áîëüřóţ "
-"ęîëüęŕńöü ďűňŕíí˙˘ ÷űě ďŕä ÷ŕń óńňŕë˙âŕíí˙\n"
-" ęëŕńó \"Đýęŕěýíäŕâŕíŕ\", ňŕěó âű ďŕâłííű âĺäŕöü, ˙ę ďđŕöóĺ GNU/Linux, ęŕá "
-"ŕáđŕöü ăýňű ęëŕń óńňŕë˙âŕíí˙.\n"
-"\n"
-"\n"
-"* Ýęńďĺđň: âű ěîćŕöĺ ŕáđŕöü ăýňű ęëŕń, ęŕëł âű ěŕĺöĺ äîáđű˙ âĺäű ˘ GNU/"
-"Linux. ßę ł ďđű ˘ńňŕë˙âŕííł ęëŕńó\n"
-" \"Íŕńňđîĺíŕ\", âű ěîćŕöĺ çđŕáłöü âűáŕđ ěłć âűęŕđűńňŕííĺě ńłńňýěű ˙ę "
-"Ďđŕöî˘íŕ˙ ńňŕíöű˙, Ńĺđâĺđ,\n"
-" Đŕńďđŕöî˘ęŕ. Áóäçüöĺ âĺëüěł ŕńö˙đîćíű˙ ďĺđŕä ňűě, ˙ę ŕáđŕöü ăýňű ęëŕń "
-"óńňŕë˙âŕíí˙. Âű áóäçĺöĺ çäîëüíű˙ âűęŕíŕöü óńňŕë˙âŕííĺ ˘\n"
-" ŕäďŕâĺäíŕńöł ç âŕřűěł ćŕäŕíí˙ěł. Ŕäęŕçű íŕ íĺęŕňîđű˙ ďűňŕííł ěîăóöü áűöü "
-"âĺëüěł ńęëŕäŕíűěł, ęŕëł âű íĺ ěŕĺöĺ äîáđűő âĺäࢠó GNU/Linux.\n"
-" Ňŕěó íĺ ŕáłđŕéöĺ ăýňű ęëŕń łíńňŕë˙öűł, ęŕëł âű íĺ âĺäŕĺöĺ ňîĺ, řňî đîáłöĺ."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (ŕä LInux LOader) i Grub - ăýňŕ çŕăđóç÷űęi. ßíű ěîăóöü çŕăđóçiöü "
-"äđóăóţ\n"
-"GNU/Linux öi ëţáóţ iířóţ ŕďĺđŕöűéíóţ ńińňýěó, óńňŕë˙âŕíóţ íŕ ęŕěďóňŕđű.\n"
-"Çâű÷ŕéíŕ, ăýňű˙ iířű˙ ŕďĺđŕöűéíű˙ ńińňýěű ęŕđýęňíŕ âűçíŕ÷ŕţööŕ i\n"
-"˘ńňŕ븢âŕţööŕ. Ęŕëi ăýňŕ íĺ ŕňđűěŕëŕń˙, ňî âű ěîćŕöĺ äŕäŕöü ëţáű çŕďiń\n"
-"ńŕěŕńňîéíŕ. Áóäçüöĺ ˘ďý˘íĺíű, řňî âű çŕäŕëi ęŕđýęňíű˙ ďŕđŕěĺňđű.\n"
-"\n"
-"\n"
-"Ňŕęńŕěŕ âű ěîćŕöĺ ďŕćŕäŕöü i íĺ äŕáŕ˘ë˙öü iířű˙ ŕďĺđŕöűéíű˙ ńińňýěű.\n"
-"Ó ňŕęiě âűďŕäęó ďŕňđýáíŕ âűäŕëiöü ŕäďŕâĺäíű˙ çŕďińű. Ŕëĺ ć ňŕäű âŕě \n"
-"ďŕňđýáíŕ áóäçĺ çŕăđóçŕ÷íŕ˙ äűńęĺňŕ, ęŕá çŕăđóçiööŕ!"
-
-#: ../../help.pm_.c:722
-#, fuzzy
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Íĺŕáőîäíŕ ďŕçíŕ÷űöü, äçĺ âű ćŕäŕĺöĺ đŕçě˙ńöiöü iíôŕđěŕöűţ, ˙ęŕ˙ íĺŕáőîäíŕ\n"
-"äë˙ çŕăđóçęi Linux.\n"
-"\n"
-"\n"
-"Ęŕëi âű íĺ ŕä÷óâŕĺöĺ ŕáńŕëţňíŕ äŕęëŕäíŕ, řňî âű đîáiöĺ, \n"
-"ŕá˙đűöĺ \"Ďĺđřű ńĺęňŕđ íŕ äűńęó (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-#, fuzzy
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Ŕá˙đűöĺ ćîđńęł äűńę ˙ęł ćŕäŕĺöĺ ŕ÷űńöłöü äë˙ ˘ńňŕë˙âŕíí˙\n"
-"íîâŕăŕ đŕçäçĺëó Mandrake Linux. Áóäçöĺ ˘âŕćëłâű˙, óńĺ äŕäçĺíű˙ íŕ äűńęó "
-"áóäóöü\n"
-" çíłř÷ŕíű ł łő íĺěŕă÷űěŕ áóäçĺ ŕäíŕâłöü."
-
-#: ../../help.pm_.c:896
-#, fuzzy
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"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"
-"Íŕöłńíłöĺ \"Ŕäěĺíŕ\" ęŕá ŕäě˙íłöü ŕďĺđŕöűţ áĺç ńňđŕňű äŕäçĺíűő ł đŕçäçĺëŕ˘"
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Íĺěŕă÷űěŕ âűęŕđűńňî˘âŕöü broadcast áĺç äŕěĺíŕ NIS"
-
-#: ../../install_any.pm_.c:793
-#, fuzzy, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr ""
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Ďŕěűëęŕ ÷űňŕíí˙ ôŕéëó %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Ďý˘íŕĺ ŕáńňŕë˙âŕííĺ ďŕňđŕáóĺ ęŕěĺđöűéíűő äđŕéâĺđࢠäë˙ ďđŕöű.\n"
-"×ŕńňęîâŕ łíôŕđěŕöűţ ďđŕ łő ěîćíŕ ŕňđűěŕöü ňóň: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Âű ďŕâiííű ěĺöü ęŕđŕí¸âű đŕçäçĺë.\n"
-"Äë˙ ăýňŕăŕ ńňâŕđűöĺ đŕçäçĺë (ŕëüáî ŕäçíŕ÷öĺ ˘ćî ińíóţ÷ű).\n"
-"Ďîňűě ŕá˙đűöĺ ``Ęđîďęŕ ěŕíöiđŕâŕíí˙'' i ˘ńňŕíŕâiöĺ ˙ĺ ˘ `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Âű ďŕâiííű ěĺöü đŕçäçĺë swap"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Í˙ěŕ đŕçäçĺëŕ swap.\n"
-"\n"
-"Óń¸ ŕäíî ďđŕö˙ăâŕöü?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Âű ďŕâiííű ěĺöü đŕçäçĺë swap"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Âűęŕđűńňî˘âŕöü íĺçŕí˙ňóţ ďđŕńňîđó"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Íĺ őŕďŕĺ ďđŕńňîđű äë˙ ńňâŕđýíí˙ íîâűő đŕçäçĺëŕ˘"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Âűęŕđűńňî˘âŕöü ińíóţ÷ű đŕçäçĺë"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Í˙ěŕ ińíóţ÷űő đŕçäçĺëŕ˘, ˙ęi˙ ěîćíŕ âűęŕđűńňŕöü"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Âűęŕđűńňî˘âŕöü đŕçäçĺë Windows äë˙ âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű"
-
-#: ../../install_interactive.pm_.c:112
-#, fuzzy
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Ďŕěĺđű ˙ęîăŕ đŕçäçĺëŕ âű ćŕäŕĺöĺ çě˙íiöü?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Âűáŕđ ďŕěĺđŕ˘"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Ęŕđŕí¸âű đŕçäçĺë ˘ Má: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Ďŕěĺđ swap đŕçäçĺëó ˘ Má:"
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Âűęŕđűńňî˘âŕöü íĺçŕí˙ňóţ ďđŕńňîđó íŕ đŕçäçĺëĺ Windows"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Ďŕěĺđű ˙ęîăŕ đŕçäçĺëŕ âű ćŕäŕĺöĺ çě˙íiöü?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Âűëi÷ýííĺ ěĺćࢠôŕéëŕâŕé ńińňýěű Windows"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Ó ďđŕăđŕěű çěĺíű ďŕěĺđࢠđŕçäçĺëŕ FAT íĺ ŕňđűěŕëŕń˙\n"
-"ŕďđŕöŕâŕöü Âŕř đŕçäçĺë, ďŕěűëęŕ: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Âŕř đŕçäçĺë ç Windows çŕíŕäňŕ ôđŕăěĺíňŕâŕíű. \n"
-"Đýęŕěĺíäóĺě ńďŕ÷ŕňęó çŕďóńöiöü ďđŕăđŕěó ``defrag''"
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"ÓÂŔĂŔ!\n"
-"\n"
-"DrakX çŕđŕç ďŕâiíĺí çě˙íiöü ďŕěĺđ âŕřŕăŕ đŕçäçĺëŕ Windows.\n"
-"Áóäçüöĺ ˘âŕćëiâű: ăýňŕ˙ ŕďĺđŕöű˙ íĺá˙ńďĺ÷íŕ. Ęŕëi âű ˙ř÷ý íĺ çđŕáiëi \n"
-"đýçĺđâîâóţ ęîďiţ äŕäçĺíűő, ňî ńďŕ÷ŕňęó ďŕęiíüöĺ ďđŕăđŕěó ˘ńňŕë˙âŕíí˙,"
-"âűęŕíŕéöĺ scandisk i defrag íŕ ăýňűě đŕçäĺëĺ, çđŕáiöĺ đýçĺđâîâóţ ęîďiţ\n"
-"äŕäçĺíűő i ňîëüęi ďîňűě çíî˘ â˙đíiöĺń˙ äŕ ďđŕăđŕěű ˘ńňŕë˙âŕíí˙.\n"
-"Ęŕëi ďŕäđűőňŕâŕëiń˙, íŕöińíiöĺ Ok."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "ßęóţ ďđŕńňîđó çŕőŕâŕöü äë˙ Windows?"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "Đŕçäçĺë %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Ŕ˘ňŕçě˙íĺííĺ ďŕěĺđࢠíĺ ŕňđűěŕëŕń˙ äë˙ đŕçäçĺëó FAT %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Íĺ çíîéäçĺíŕ đŕçäçĺëࢠFAT äë˙ çě˙íĺíí˙ ďŕěĺđࢠŕëüáî âűęŕđűńňŕíí˙\n"
-"˘ ˙ęŕńöi âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű (öi íĺäŕńňŕňęîâŕ ďđŕńňîđű íŕ äűńęó)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Ńö¸đöi äŕäçĺíű˙ íŕ ˘ńiě äűńęó"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Âűäŕëiöü Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Íŕ ˙ęi ç ěŕţ÷űőń˙ ćîđńňęiő äűńęࢠÂű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü Linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Óńĺ ińíóţ÷ű˙ đŕçäçĺëű íŕ äűńęó %s i äŕäçĺíű˙ íŕ iő áóäóöü ńňđŕ÷ŕíű"
-
-#: ../../install_interactive.pm_.c:190
-#, fuzzy
-msgid "Custom disk partitioning"
-msgstr "Âűęŕđűńňî˘âŕöü ińíóţ÷ű đŕçäçĺë"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Âűęŕđűńňî˘âŕöü fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Âű ěîćŕöĺ ö˙ďĺđ đŕçáiöü âŕř äűńę %s\n"
-"Ďŕ çŕęŕí÷ýííi íĺ çŕáóäçüöĺń˙ çŕőŕâŕöü çě˙íĺííi, ńęŕđűńňŕ˘řű `w'"
-
-#: ../../install_interactive.pm_.c:226
-#, fuzzy
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Âűęŕđűńňî˘âŕöü íĺçŕí˙ňóţ ďđŕńňîđó íŕ đŕçäçĺëĺ Windows"
-
-#: ../../install_interactive.pm_.c:242
-#, fuzzy
-msgid "I can't find any room for installing"
-msgstr "Äŕäŕöü đŕçäçĺë íĺěŕă÷űěŕ"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Ěŕéńňŕđ ďŕäđűőňî˘ęi đŕçäçĺëࢠDrakX çíŕéřî˘ íŕńňóďíű˙ âŕđű˙íňű:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Ďŕäđűőňî˘ęŕ đŕçäĺëࢠíĺ ˘äŕëŕń˙: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Äŕëó÷ýííĺ äŕ ńĺňęi"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Óçíięëŕ ďŕěűëęŕ, ˙ęóţ íĺ ŕňđűěëłâŕĺööŕ ęŕđýęňíŕ ŕďđŕöŕâŕöü,\n"
-"ňŕěó ďđŕö˙ăâŕéöĺ íŕ ńâŕţ đűçűęó."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Íĺęŕňîđű˙ âŕćíű˙ ďŕęĺňű íĺ áűëi ˘ńňŕë˙âŕíű ęŕđýęňíŕ.\n"
-"Äđóăi âŕř cdrom äűńę öi âŕř cdrom ěŕţöü äýôĺęňű.\n"
-"Ďđŕâĺđöĺ cdrom íŕ âŕřűě ęŕěďóňŕđű, âűęŕđűńňî˘âŕţ÷ű\"rpm -qpl Mandrake/RPMS/*."
-"rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Сардэчна запрашаем у %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Äűńęŕâîä íĺäŕńňóďíű"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Ďĺđŕőîä íŕ ęđîę `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Ó Âŕřŕé ńińňýěĺ ěŕĺööŕ íĺäŕőîď đýńóđńŕ˘, ňŕěó ěŕă÷űěű ďđŕáëĺěű\n"
-"ďđű ˘ńňŕë˙âŕííi Mandrake Linux. Ó ăýňűě âűďŕäęó ďŕńďđŕáóéöĺ ňýęńňŕâóţ\n"
-"ďđŕăđŕěó ˘ńňŕë˙âŕíí˙. Äë˙ ăýňŕăŕ íŕöińíiöĺ `F1' ó ÷ŕń çŕăđóçęi, ŕ ďîňűě\n"
-"íŕá˙đűöĺ `text' i íŕöińíiöĺ <ENTER>."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Ęëŕń Óńňŕë˙âŕíí˙"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ŕäçií ç ęëŕńࢠóńňŕë˙âŕíí˙:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ŕăóëüíű ďŕěĺđ äë˙ ŕáđŕíűő ăđóďࢠďđűáëiçíŕ đî˘íű %d Ěá.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ęŕëi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ěĺíĺé ăýňŕăó ďŕěĺđó,\n"
-"ŕá˙đűöĺ ŕäńîňŕę ďŕęĺňŕ˘, ˙ęi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü.\n"
-"\n"
-"Ďđű íiçęiě ŕäńîňęó áóäóöü óńňŕë˙âŕíű ňîëüęi íŕéáîëüř âŕćíű˙ ďŕęĺňű,\n"
-"ŕ ďđű 100% áóäóöü óńňŕë˙âŕíű ˘ńĺ ŕáđŕíű˙ ďŕęĺňű."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Íŕ âŕřűě äűńęó ¸ńöü ěĺńöŕ ňîëüęi äë˙ %d%% ăýňűő ďŕęĺňŕ˘.\n"
-"\n"
-"Ęŕëi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ěĺíĺé ăýňŕăŕ, ňî\n"
-"ďŕçíŕ÷öĺ ŕäńîňŕę ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙.\n"
-"Ďđű ěŕëűě ŕäńîňęó áóäóöü óńňŕë˙âŕíű íŕéáîëüř âŕćíű˙ ďŕęĺňű;\n"
-"ďđű ŕäńîňęó %d%% áóäçĺ ˘ńňŕë˙âŕíŕ ńňîëüęi ďŕęĺňࢠęîëüęi ěŕă÷űěŕ."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Áîëüř äŕęëŕäíű âűáŕđ ěîćíŕ áóäçĺ çđŕáiöü íŕ íŕńňóďíűě ęđîęó."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Ŕäńîňŕę ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Âűáŕđ ăđóďű ďŕęĺňŕ˘"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Ŕăóëüíű ďŕěĺđ: %d / %d Má"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Äđýííű ďŕęĺň"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Iě˙: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Âĺđńi˙: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Ďŕěĺđ: %d Ká\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Çíŕ÷íŕńöü: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Âű íĺ ěîćŕöĺ âűáđŕöü ăýňű ďŕęĺň, ňŕěó ˙ę íĺ őŕďŕĺ ěĺńöŕ äë˙ ˙ăî ˘ńňŕë˙âŕíí˙"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Íŕńňóďíű˙ ďŕęĺňű áóäóöü äŕäŕíű äŕ ńińňýěű"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Íŕńňóďíű˙ ďŕęĺňű áóäóöü âűäŕëĺíű"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Âű íĺ ěîćŕöĺ âűëó÷ŕöü ł ŕäě˙í˙öü âűëó÷ýííĺ ăýňŕăŕ ďŕęĺňó"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Ăýňŕ ŕáŕâ˙çęîâű ďŕęĺň, ˙ăî âűëó÷ýííĺ íĺëüăŕ ŕäě˙íiöü"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Âű íĺ ěîćŕöĺ ŕäě˙íiöü âűëó÷ýííĺ ăýňŕăŕ ďŕęĺňó. ¨í óćî ˘ńňŕë˙âŕíű"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Ăýňű ďŕęĺň ďŕâiíĺí áűöü ŕáíî˘ëĺíű\n"
-"Âű ˘ďý˘íĺíű, řňî őî÷ŕöĺ ŕäě˙íiöü âűëó÷ýííĺ?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Âű íĺ ěîćŕöĺ ŕäě˙íiöü âűëó÷ýííĺ ăýňŕăŕ ďŕęĺňó. ßăî ďŕňđýáíŕ ŕáíŕâiöü"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Óńňŕ븢ęŕ"
-
-#: ../../install_steps_gtk.pm_.c:466
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "Çŕőŕâŕííĺ íŕ äűńęĺňó"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "Âűäŕëiöü ç ńińňýěű"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Óńňŕ븢âŕĺě"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "×ŕęŕĺööŕ"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Çŕńňŕëîń˙ ÷ŕńó "
-
-#: ../../install_steps_gtk.pm_.c:528
-#, fuzzy
-msgid "Please wait, preparing installation"
-msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕë˙âŕíüí˙"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d ďŕęĺňŕ˘"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Ďđűí˙öü"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Ŕäęŕçŕöü"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Çě˙íiöĺ âŕř Cd-Rom!\n"
-"\n"
-"Ęŕëi ëŕńęŕ, óńňŕ˘öĺ Cd-Rom, ďŕçíŕ÷ŕíű \"%s\", ó âŕř äűńęŕâîä i íŕöińíiöĺ Oę "
-"ďŕńë˙.\n"
-"Ęŕëi âű íĺ ěŕĺöĺ ˙ăî, íŕöińíiöĺ Ŕäě˙íiöü, ęŕá ŕäě˙íiöü óńňŕë˙âŕííĺ ç ăýňŕăŕ "
-"Cd."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Óń¸ đî˘íŕ ďđŕö˙ăâŕöü?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Ŕňđűěŕëŕń˙ ďŕěűëęŕ ˘ďŕđŕäęŕâŕíí˙ ďŕęĺňŕ˘:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Ŕňđűěŕëŕń˙ ďŕěűëęŕ ˘ďŕđŕäęŕâŕíí˙ ďŕęĺňŕ˘:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Ŕäáűëŕń˙ ďŕěűëęŕ"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Ëłöýíçłéíŕ˙ äŕěîâŕ"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Ęëŕâi˙ňóđŕ"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ňűď ęëŕâi˙ňóđű."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "ßęi ęëŕń óńňŕë˙âŕíí˙ âű ćŕäŕĺöĺ?"
-
-#: ../../install_steps_interactive.pm_.c:226
-#, fuzzy
-msgid "Install/Update"
-msgstr "Óńňŕ븢ęŕ"
-
-#: ../../install_steps_interactive.pm_.c:226
-#, fuzzy
-msgid "Is this an install or an update?"
-msgstr "Ŕá˙đűöĺ ˘ńňŕë˙âŕííĺ öi ŕáíŕ˘ëĺííĺ"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Đýęŕěĺíäŕâŕíŕ"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Ýęńďĺđň"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Ďîđň ěűřű"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ďîńë˙äî˘íű ďîđň, äŕ ˙ęîăŕ ďŕäęëţ÷ŕíŕ âŕřŕ˙ ěűř."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Íŕńňđîéęŕ ęŕđň PCMCIA ..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Íŕńňđîéęŕ IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "í˙ěŕ äŕńňóďíűő đŕçäçĺëŕ˘"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Ŕá˙đűöĺ ďóíęňű ěŕíöiđŕâŕíí˙"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ňŕáëiöŕ đŕçäçĺëࢠíĺ ÷űňŕĺööŕ, ˙íŕ çŕíŕäňŕ ńŕďńŕâŕíŕ˙ äë˙ ěĺí˙ :(\n"
-"Ďŕńďđŕáóţ ińöi äŕëĺé i áóäó ďđŕďóńęŕöü äđýííű˙ đŕçäçĺëű (Óńĺ ÄŔÄĹÇĹÍŰß\n"
-"áóäóöü ńňđŕ÷ŕíű!). Iířŕĺ đŕřýííĺ íĺ äŕçâîëiöü DrakX çě˙íiöü ňŕáëiöó "
-"đŕçäçĺëŕ˘.\n"
-"(ďŕěűëęŕ ˘ %s)\n"
-"\n"
-"Öi ćŕäŕĺöĺ ńňđŕöiöü óńĺ đŕçäçĺëű?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake íĺ çěîă ďđŕâiëüíŕ ďđŕ÷űňŕöü ňŕáëiöó đŕäçĺëŕ˘.\n"
-"Ďđŕö˙ăâŕéöĺ ňîëüęi íŕ ńâŕţ đűçűęó!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "Ęŕđŕí¸âű đŕçäçĺë íĺ çíîéäçĺíű"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Ęŕđŕí¸âű đŕçäçĺë"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "ßęi đŕäçĺë ęŕđŕí¸âű (/) äë˙ âŕřŕé ńińňýěű?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Ęŕá ěŕäűôięŕöű˙ ňŕáëiöű đŕçäçĺëࢠçäĺéńíiëŕń˙, ďŕňđýáíŕ ďĺđŕçŕăđóçęŕ."
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Âűáŕđ đŕçäçĺëࢠäë˙ ôŕđěŕňŕâŕíí˙"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Ďđŕâĺđűöü íŕ íŕ˙˘íŕńöü äđýííűő áëîęŕ˘?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Ôŕđěŕňŕâŕíí˙ đŕçäçĺëŕ˘"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Ńňâŕđýííĺ i ôŕđěŕňŕâŕííĺ ôŕéëŕ %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr ""
-"Íĺ őŕďŕĺ ěĺńöŕ ˘ áóôĺđű ďŕäęŕ÷ęi (swap) äë˙ ˘ńňŕë˙âŕíí˙, ďŕâ˙ëi÷öĺ ˙ăî."
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Ďđŕăë˙ä äŕńňóďíűő ďŕęĺňŕ˘"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Ďîřóę ďŕęĺňࢠäë˙ ŕáíŕ˘ëĺíí˙"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Âŕřŕ ńińňýěŕ íĺ ěŕĺ äŕńňŕęîâŕ ěĺńöŕ äë˙ ˘ńňŕë˙âŕíí˙ öi ŕáíŕ˘ëĺíí˙ (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Ďî˘íű (%dMá)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Ěiíiěŕëüíű (%dMá)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Đýęŕěĺíäŕâŕíŕ (%dĚá)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-#, fuzzy
-msgid "Load from floppy"
-msgstr "Ŕäíŕ˘ëĺííĺ ç äűńęĺňű"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Loading from floppy"
-msgstr "Ŕäíŕ˘ëĺííĺ ç äűńęĺňű"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Package selection"
-msgstr "Âűáŕđ ăđóďű ďŕęĺňŕ˘"
-
-#: ../../install_steps_interactive.pm_.c:578
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Çŕőŕâŕííĺ íŕ äűńęĺňó"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:671
-#, fuzzy
-msgid "Type of install"
-msgstr "Âűáŕđ ďŕęĺňࢠäë˙ óńňŕë˙âŕíí˙"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-#, fuzzy
-msgid "With X"
-msgstr "×ŕęŕéöĺ"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 íĺęŕňîđűő ç CD äűńęࢠíĺ ěŕĺöĺ, ŕäě˙íiöĺ iő âűäç˙ëĺííĺ i íŕöińíiöĺ Îę."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom ďŕçíŕ÷ŕíű \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕë˙âŕíüí˙"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Óńňŕë˙âŕííĺ ďŕęĺňó %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Çŕđŕç âű ěŕĺöĺ ěŕă÷űěŕńöü çŕăđóçiöü ďđŕăđŕěű äë˙ řűôđŕâŕíí˙.\n"
-"\n"
-"ÓÂŔĂŔ:\n"
-"\n"
-"Ç-çŕ ŕăóëüíűő ŕáěĺćŕâŕíí˙˘ íŕ ďđŕăđŕěű ăýňęŕăŕ đîäó i đîçíűő ďŕí˙öö˙˘\n"
-"ó đîçíűő çŕęîíŕäŕ˘ńňâŕő, ďđŕäŕâĺö i/ŕëüáî ęŕđűńňŕëüíię ăýňűő ďđŕăđŕě "
-"ďŕâiíĺí\n"
-"óďý˘íiööŕ ˘ ňűě, řňî çŕęîíű ˙ăî/iő äç˙đćŕâࢠäŕçâŕë˙ţöü çŕăđóćŕöü, "
-"çŕőî˘âŕöü\n"
-"i/ŕëüáî âűęŕđűńňî˘âŕöü ăýňű˙ ďđŕăđŕěű.\n"
-"\n"
-"Ŕęđŕě˙ ňŕăî, ďđŕäŕâĺö i/ŕëüáî ęŕđűńňŕëüíię ďŕâiííű áűöü óďý˘íĺíű, řňî íĺ "
-"ďŕđóřŕţöü\n"
-"çŕęîíࢠńâŕ¸é ęđŕiíű. Ęŕëi ďđŕäŕâĺö i/ŕëüáî ęŕđűńňŕëüíię ďŕđóřŕĺ ăýňű˙\n"
-"çŕęîíű, ˙ęi˙ ěîăóöü áűöü ńęŕđűńňŕíű˙ ńóďđŕöü ˙ăî, ¸í/˙íű í˙ńĺ ŕäęŕçíŕńöü\n"
-"\n"
-"Íi ˘ ˙ęiě đŕçĺ íi Mandrakesoft, íi ˙ĺ âűęŕíŕ˘öű i ďŕńňŕ˘ř÷űęi íĺ ŕäęŕçâŕţöü\n"
-"çŕ íĺďŕńđýäíóţ, íĺďđŕěóţ ŕëüáî âűďŕäęîâóţ řęîäó (řňî óęëţ÷ŕĺ, ŕëĺ \n"
-"íĺ ŕáě˙ćî˘âŕĺööŕ ńňđŕ÷ŕíűěł ďđűáűňęŕě, ďŕđóřýííĺ áiçíýńó, ńňđŕňŕé "
-"ęŕěĺđöűéíűő \n"
-"äŕäçĺíűő i iířűěi ńňđŕňŕěi, ŕ ňŕęńŕěŕ ěŕă÷űěűěi ńŕíęöű˙ěi i řňđŕôŕěi, ˙ęi˙ \n"
-"íŕëĺćűöü âűďëŕöiöü ďŕ ďŕńňŕíîâĺ ńóäó), ˙ęi˙ âűö˙ęŕţöü ç ęŕđűńňŕíí˙, \n"
-"âŕëîäŕíí˙, ŕëüáî ďđîńňŕ çŕăđóçęi ç ńĺňęi ďđŕăđŕě, äŕ ˙ęiő ďđŕäŕâĺö ŕëüáî\n"
-"ęŕđűńňŕëüíię ŕňđűěŕëi äîńňóď ďŕńë˙ ďŕäďińŕíí˙ ăýňŕăŕ ďŕăŕäíĺíí˙.\n"
-"\n"
-"Ăýňŕĺ ďŕăŕäíĺííĺ ˘ ďĺđřóţ ÷ŕđăó ŕäęŕçâŕĺ çŕęîíŕäŕ˘ńňâó Ôđŕíöűi, çŕ "
-"âűęëţ÷ýííĺě\n"
-"âűďŕäęŕ˘, ˙ęi˙ ńďĺöű˙ëüíŕ đýăëŕěĺíňóţööŕ ě˙ńöîâűě çŕęîíŕäŕ˘ńňâŕě ó ěĺćŕő\n"
-"ăđŕěŕäç˙íńęŕăŕ ďđŕâŕ. Ŕäíŕę äŕäçĺíŕĺ ďŕăŕäíĺííĺ ęŕňýăŕđű÷íŕ ŕáâ˙đăŕĺ ëţáű˙\n"
-"íĺńóŕäíîńiíű çŕęîíŕäŕ˘ńňâŕ˘, ďđűíöűďŕ˘, ŕëüáî ďđűě˙íĺííĺ ŕä ďđîöiëĺăëŕăŕ.\n"
-"Ňŕęiě ÷űíŕě, çŕęîíű Ôđŕíöűi áóäóöü ďđýâŕëiđŕâŕöü íŕä ëţáűěi iířűěi "
-"ě˙ńöîâűěi\n"
-"çŕęîíŕěi.\n"
-"\n"
-"Ç ëţáűěi ďűňŕíí˙ěi, ˙ęi˙ äŕňű÷ŕööŕ äŕäçĺííŕăŕ ďŕăŕäíĺíí˙, çâ˙đňŕéöĺń˙: \n"
-"Mandrakesoft\n"
-"43, rue d'Aboukir\n"
-"75002 Paris\n"
-"FRANCE"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Ńóâ˙çü ç ëţđŕě äë˙ ŕňđűěŕíí˙ ńďińó äŕńňóďíűő ďŕęĺňŕ˘"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Âűáŕđ ëţńňđŕ äë˙ ŕňđűěŕíí˙ ďŕęĺňŕ˘"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Ńóâ˙çü ç ëţđŕě äë˙ ŕňđűěŕíí˙ ńďińó äŕńňóďíűő ďŕęĺňŕ˘"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "ßęi âŕř ÷ŕńŕâű ďî˙ń?"
-
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "Âŕř ńińňýěíű ăŕäçiííię óńňŕë˙âŕíű íŕ GMT?"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-#, fuzzy
-msgid "NTP Server"
-msgstr "NIS ńĺđâĺđ:"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
-
-#: ../../install_steps_interactive.pm_.c:1015
-#, fuzzy
-msgid "No printer"
-msgstr "Iě˙ äđóęŕđęi"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Öi ¸ńöü ó âŕń iířű?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1044
-#, fuzzy
-msgid "Mouse"
-msgstr "Ďîđň ěűřű"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Ďđűíňýđ"
-
-#: ../../install_steps_interactive.pm_.c:1049
-#, fuzzy
-msgid "ISDN card"
-msgstr "Óíóňđŕíŕ˙ ISDN ęŕđňŕ"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-#, fuzzy
-msgid "Sound card"
-msgstr "Ńňŕíäŕđňíű"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-#, fuzzy
-msgid "NIS"
-msgstr "Âűęŕđűńňî˘âŕöü NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-#, fuzzy
-msgid "Local files"
-msgstr "Ëŕęŕëüíű ďđűíňýđ"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Ďŕđîëü äë˙ root"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Í˙ěŕ ďŕđîëţ"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr ""
-"Ăýňű ďŕđîëü çŕíŕäňŕ ďđîńňű (˙ăî äŕ˘ćűí˙ ďŕâiííŕ áűöü íĺ ěĺíĺé çŕ %d ëiňŕđŕ˘)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Ŕ˘ňýíňűôięŕöű˙"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "Ŕ˘ňýíňűôięŕöű˙"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-#, fuzzy
-msgid "LDAP Server"
-msgstr "ńĺđâĺđ"
-
-#: ../../install_steps_interactive.pm_.c:1134
-#, fuzzy
-msgid "Authentication NIS"
-msgstr "Ŕ˘ňýíňűôięŕöű˙ NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS Domain"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS ńĺđâĺđ:"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Ç äŕďŕěîăŕé çŕăđóçŕ÷íŕăŕ äűńęŕ âű çěîćŕöĺ çŕăđóćŕöü Linux íĺçŕëĺćíŕ ŕä\n"
-" ńňŕíäŕđňíŕăŕ çŕăđóç÷űęŕ. Ăýňŕ ěîćŕ áűöü ˙ęŕńíŕ, ęŕëi âű íĺ ćŕäŕĺöĺ \n"
-"˘ńňŕ븢âŕöü SILO, ęŕëi iířŕ˙ ŕďĺđŕöűéíŕ˙ ńińňýěŕ âűäŕë˙ĺ SILO, öi SILO íĺ \n"
-"ěîćŕ ďđŕöŕâŕöü ó âŕřŕé ęŕíôiăóđŕöűi. Çŕăđóçŕ÷íű äűńę ňŕęńŕěŕ ěîćŕ áűöü \n"
-"âűęŕđűńňŕí ńóěĺńíŕ ç âűđŕňŕâŕëüíŕé äűńęĺňŕé Mandrake Linux, ˙ęŕ˙ âĺëüěi \n"
-"ďŕëĺă÷űöü âűđŕňŕâŕííĺ ńińňýěű ďŕńë˙ çáîţ.\n"
-"\n"
-"Ęŕëi ćŕäŕĺöĺ ńňâŕđűöü çŕăđóçŕ÷íű äűńę çŕđŕç, óńňŕ˘öĺ äűńęĺňó ˘ ďĺđřű\n"
-"äűńęŕâîä i íŕöińíiöĺ \"Ok\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Ďĺđřű äűńęŕâîä"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Äđóăi äűńęŕâîä"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Ďđŕďóńöiöü"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Ç äŕďŕěîăŕé çŕăđóçŕ÷íŕăŕ äűńęó âű çěîćŕöĺ çŕăđóćŕöü Linux ňŕęńŕěŕ ˙ę i \n"
-"ńňŕíäŕđňíűě çŕăđóç÷űęŕě. Ăýňŕ ěîćŕ áűöü ˙ęŕńíŕ, ęŕëi âű íĺ ćŕäŕĺöĺ \n"
-"˘ńňŕ븢âŕöü LILO (öi Grub), ęŕëi iířŕ˙ ŕďĺđŕöűéíŕ˙ ńińňýěŕ âűäŕë˙ĺ LILO,\n"
-"öi LILO íĺ ěîćŕ ďđŕöŕâŕöü ó âŕřŕé ęŕíôiăóđŕöűi. Çŕăđóçŕ÷íű äűńę ňŕęńŕěŕ "
-"ěîćŕ\n"
-"áűöü âűęŕđűńňŕíű ńóěĺńíŕ ç đŕěîíňíŕé äűńęĺňŕé Mandrake Linux, ˙ęŕ˙ âĺëüěi \n"
-"ďŕëĺă÷űöü âűđŕňŕâŕííĺ ńińňýěű ďŕńë˙ çáîţ.\n"
-"\n"
-"Ćŕäŕĺöĺ ńňâŕđűöü çŕăđóçŕ÷íű äűńę çŕđŕç?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Âűáŕ÷ŕéöĺ, ŕëĺ äűńęŕâîä íĺäŕńňóďíű"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Ŕá˙đűöĺ äűńęŕâîä, ó ˙ęiě áóäçĺ ńňâŕđŕööŕ çŕăđóçŕ÷íŕ˙ äűńęĺňŕ"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Ńňâŕđýííĺ çŕăđóçŕ÷íŕé äűńęĺňű"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Ďŕäđűőňî˘ęŕ çŕăđóç÷űęŕ"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Ďŕěűëęŕ ˘ńňŕë˙âŕíí˙ ŕboot, \n"
-"ńďđŕáŕâŕöü óńňŕ븢âŕöü, íĺăëĺäç˙÷ű íŕ ěŕă÷űěŕńöü ďŕđóřýíí˙ ďĺđřŕăŕ đŕçäĺëó?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Óńňŕë˙âŕííĺ çŕăđóç÷űęó"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Ďđŕöýń óńňŕë˙âŕíí˙ çŕăđóç÷űęŕ íĺ ŕňđűěŕ˘ń˙. Óçíięëŕ íŕńňóďíŕ˙ ďŕěűëęŕ:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Ńňâŕđýííĺ äűńęĺňű äë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Íĺęŕňîđű˙ ęđîęi íĺ çŕâĺđřŕíű.\n"
-"Âű ńŕďđŕ˘äű ćŕäŕĺöĺ âűéńöi çŕđŕç?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Âiířóĺě, óńňŕë˙âŕííĺ çŕâĺđřŕíŕ.\n"
-"Âűäŕëiöĺ çŕăđóçŕ÷íű äűńę i íŕöińíiöĺ enter äë˙ ďĺđŕçŕăđóçęi.\n"
-"\n"
-"\n"
-"Çŕ iíôŕđěŕöű˙é ďđŕ çě˙íĺííi äŕäçĺíŕăŕ âűďóńęó Mandrake Linux,\n"
-"çâ˙đňŕéöĺńü íŕ \n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Iíôŕđěŕöű˙ ďŕ íŕńňđîéęĺ âŕřŕé ńińňýěű ¸ńňü ˘ ďŕńë˙-˘ńňŕë¸âŕ÷íŕé\n"
-"ăëŕâĺ âŕřŕăŕ Äŕďŕěîćíięŕ Ęŕđűńňŕëüíięó ç Ŕôiöűéíŕăŕ Mandrake Linux."
-
-#: ../../install_steps_interactive.pm_.c:1354
-#, fuzzy
-msgid "Generate auto install floppy"
-msgstr "Ńňâŕđýííĺ äűńęĺňű äë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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:1361
-msgid "Automated"
-msgstr "Ŕ˘ňŕěŕňű÷íű"
-
-#: ../../install_steps_interactive.pm_.c:1361
-#, fuzzy
-msgid "Replay"
-msgstr "Ďĺđŕçŕăđóçiöü"
-
-#: ../../install_steps_interactive.pm_.c:1364
-#, fuzzy
-msgid "Save packages selection"
-msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Óńňŕë˙âŕííĺ Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> ďŕěić ýëĺěĺíňŕěi | <Space> âűáŕđ | <F12> íŕńňóďíű ýęđŕí "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Ŕá˙đűöĺ äçĺ˙ííĺ"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr ""
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Ęŕëi ëŕńęŕ, ďŕ÷ŕęŕéöĺ"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Iíôŕđěŕöű˙"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Đŕçăŕđíóöü äđýâŕ"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Çăŕđíóöü äđýâŕ"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Ďĺđŕęëţ÷ýííĺ ďŕěić óďŕđŕäęŕâŕííĺě ďŕ ăđóďĺ i ŕńîáęŕő"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Äđýííű âűáŕđ, ďŕńďđŕáóéöĺ ˙ř÷ĺ\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Îďöűi: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü aboot?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "×ĺřńęi (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Í˙ěĺöęi"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Ińďŕíńęi"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Ôiíńęi"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Ôđŕíöóçńęi"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Íŕđâĺćńęi"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Ďîëüńęi"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Đóńęi"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Řâĺöęi"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "UK ęëŕâi˙ňóđŕ"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "US ęëŕâi˙ňóđŕ"
-
-#: ../../keyboard.pm_.c:188
-#, fuzzy
-msgid "Albanian"
-msgstr "Iđŕíńęi"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Ŕđě˙íńęi (ńňŕđű)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Ŕđě˙íńęi (typewriter)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Ŕđě˙íńęi (ôŕíĺňű÷íű)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Ŕçĺđáŕéäćŕíńęł (latin)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Áĺëüăiéńęi"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Ŕđě˙íńęi (ôŕíĺňű÷íű)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Áŕëăŕđńęi"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Áđŕçiëüńęi (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Áĺëŕđóńęł"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Řâĺéöŕđńęi (Í˙ěĺöęŕ˙ đŕńęëŕäęŕ)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Řâĺéöŕđńęi (Ôđŕíöóçńęŕ˙ đŕńęëŕäęŕ)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "×ĺřńęi (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Í˙ěĺöęi (í˙ěŕ çŕáëŕęiđŕâŕíűő ęëŕâiř)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Äŕöęi"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Íŕđâĺćńęi)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Ýńňîíńęi"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Ăđóçiíńęi (\"Đóńęŕ˙\" đŕńęëŕäęŕ)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Ăđóçiíńęi (\"Ëŕöiíńęŕ˙\" đŕńęëŕäęŕ)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Ăđý÷ŕńęi"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Ěŕäü˙đńęi"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Őŕđâŕöęi"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "I˘đűň"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "I˘đűň (ôŕíĺňű÷íű)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iđŕíńęi"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Ińëŕíäńęi"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Iňŕëü˙íńęi"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "ßďîíńęi 106 ęëŕâiř"
-
-#: ../../keyboard.pm_.c:231
-#, fuzzy
-msgid "Korean keyboard"
-msgstr "UK ęëŕâi˙ňóđŕ"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Ëŕöiíŕ-Ŕěĺđűęŕíńęi"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Ëiňî˘ńęi AZERTY (ńňŕđű)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Ëiňî˘ńęi AZERTY (íîâű)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Ëiňî˘ńęi \"íóěŕđ đŕäęŕ\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Ëiňî˘ńęi \"ôŕíĺňű÷íű\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Đŕçěĺđęŕâŕííĺ"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Ăŕëŕíäńęi"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Ďîëüńęi (ńňŕíäŕđňíŕ˙ đŕńęëŕäęŕ)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Ďîëüńęi (qwertz đŕńęëŕäęŕ)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Ďŕđňóăŕëüńęi"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Ęŕíŕäńęi (Ęâĺáýę)"
-
-#: ../../keyboard.pm_.c:247
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "Đóńęi (ß-Â-Ĺ-Đ-Ň-Č)"
-
-#: ../../keyboard.pm_.c:248
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "Đóńęi (ß-Â-Ĺ-Đ-Ň-Č)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Đóńęi (ß-Â-Ĺ-Đ-Ň-Č)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Ńëŕâĺíńęi"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Ńëŕâŕöęi (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Ńëŕâŕöęi (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "Ŕçĺđáŕéäćŕíńęł (ęłđűëłöŕ)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Ňŕáëiöŕ"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Ňŕéńęŕ˙ ęëŕâi˙ňóđŕ"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Ňŕéńęŕ˙ ęëŕâi˙ňóđŕ"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Ňóđýöęi (ňđŕäűöű¸íŕ˙ \"F\" ěŕäýëü)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Ňóđýöęi (ńó÷ŕńíŕ˙ \"Q\" ěŕäýëü)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Óęđŕiíńęi"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "US ęëŕâi˙ňóđŕ (ěićíŕđîäíŕ˙)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Âüĺňíŕěńęi \"íóěŕđ đŕäęŕ\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Ŕçĺđáŕéäćŕíńęł (latin)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Ěŕíöiđŕâŕííĺ äűńęó %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr ""
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Ěűř"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-#, fuzzy
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Çâű÷ŕéíŕ˙ ěűř ç 2 ęíîďęŕěł"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-#, fuzzy
-msgid "1 button"
-msgstr "2 ęíîďęi"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Çâű÷ŕéíŕ˙ ěűř ç 2 ęíîďęŕěł"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Ŕăóëüíű"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Ç ęîëŕě"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "ďŕńë˙äî˘íŕ˙"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Çâű÷ŕéíŕ˙ ěűř ç 3 ęíîďęŕěł"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (ďŕńë˙äî˘íŕ˙, ńňŕđű ňűď C7)"
-
-#: ../../mouse.pm_.c:66
-#, fuzzy
-msgid "busmouse"
-msgstr "Í˙ěŕ ěűřű"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 ęíîďęi"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 ęíîďęi"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "í˙ěŕ"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Í˙ěŕ ěűřű"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-
-#: ../../mouse.pm_.c:500
-#, fuzzy
-msgid "To activate the mouse,"
-msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "Đóřöĺ ęîëŕě ěűřű!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-#, fuzzy
-msgid "Finish"
-msgstr "Ôiíńęi"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Äŕëĺé ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Ăýňŕ äŕęëŕäíŕ?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "âűęŕđűńňî˘âŕöü pppoe"
-
-#: ../../network/adsl.pm_.c:22
-#, fuzzy
-msgid "use pptp"
-msgstr "âűęŕđűńňî˘âŕöü pppoe"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"ßęi dhcp ęëiĺíň âű ďëŕíóĺöĺ âűęŕđűńňî˘âŕöü?\n"
-"Ďŕ çěî˘÷ŕííţ, ăýňŕ dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-#, fuzzy
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Íi âîäíű ethernet ńĺňęŕâű ŕäŕďňŕđ ó âŕřŕé ńińňýěĺ íĺ âűçíŕ÷ŕíű. Ęŕëi ëŕńęŕ, "
-"ńęŕđűńňŕéöĺ ęŕíôiăóđŕöűéíű iíńňđóěýíň."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Ďŕçíŕ÷öĺ ńĺňęŕâű iíňýđôĺéń"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ńĺňęŕâű ŕäŕďňŕđ, ˙ęi ďëŕíóĺöĺ âűęŕđűńňî˘âŕöü äë˙ "
-"äŕëó÷ýíí˙ äŕ iíňýđíýň"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "ńĺňęŕâŕ˙ ęŕđňŕ íĺ çíîéäçĺíŕ"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Íŕńňđîéęŕ ńĺňęi"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Óâ˙äçiöĺ iě˙ ńâŕ¸é ěŕřűíű (host).\n"
-"Iě˙ âŕřŕé ěŕřűíű ďŕâiííŕ áűöü çŕäŕäçĺíŕ ďî˘íŕńöţ,\n"
-"íŕďđűęëŕä ``mybox.mylab.myco.com''.\n"
-"Âű ěîćŕöĺ ňŕęńŕěŕ ˘âĺńöi IP ŕäđŕń řëţçó, ęŕëi ¸í ó âŕń ¸ńöü."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Iě˙ ěŕřűíű"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-#, fuzzy
-msgid "Network Configuration Wizard"
-msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-
-#: ../../network/isdn.pm_.c:22
-#, fuzzy
-msgid "External ISDN modem"
-msgstr "Óíóňđŕíŕ˙ ISDN ęŕđňŕ"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Óíóňđŕíŕ˙ ISDN ęŕđňŕ"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "Çíîéäçĺíŕ ńłńňýěŕ ńĺňęŕâŕé á˙ńďĺęł (firewall)!"
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "Çíîéäçĺíŕ ńłńňýěŕ ńĺňęŕâŕé á˙ńďĺęł (firewall)!"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Íŕńňđîéęŕ ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Ŕá˙đűöĺ âŕřŕăŕ ďđŕâŕéäŕđŕ.\n"
-"ęŕëi ˙ăî í˙ěŕ ˘ ăýňűě ńďińĺ, ŕá˙đűöĺ ňűď ``Iířű''"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Ţđîďŕ (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "Ďŕäęëţ÷ýííĺ"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Ďŕäęëţ÷ýííĺ \n"
-" íĺ ďđŕç D-ęŕíŕë (âűëó÷ŕíű˙ ęŕíŕëű)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "ßęi ďđŕňŕęîë âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "ßęi ňűď ęŕđňű âű ěŕĺöĺ?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Íĺ â˙äîěŕ"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Ęŕëi âű ěŕĺöĺ ISA ęŕđňó, âĺëi÷űíi íŕ íŕńňóďíűě ýęđŕíĺ ďŕâiííű áűöü "
-"ńŕďđŕ˘äíűěi.\n"
-"\n"
-"Ęŕëi âű ěŕĺöĺ PCMCIA ęŕđňó, âű ďŕâiííű âĺäŕöü irq i io âŕřŕé ęŕđňű.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Ŕäě˙íiöü"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Ďđŕö˙ăíóöü"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "ßęŕ˙ ˘ âŕń ISDN ęŕđňŕ?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Âűçíŕ÷ŕíŕ ISDN PCI ęŕđňŕ, ŕëĺ íĺâ˙äîěű ˙ĺ ňűď. Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ PCI "
-"ęŕđňó íŕ íŕńňóďíűě ýęđŕíĺ."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Ęŕđňŕ ISDN PCI íĺ çíîéäçĺíŕ. Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ íŕ íŕńňóďíűě ýęđŕíĺ."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Äŕ ˙ęîăŕ ďŕńë˙äî˘íŕăŕ ďîđňó äŕëó÷ŕíű ěŕäýě?"
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Ďŕđŕěĺňđű ęŕěóňŕâŕíŕăŕ çëó÷ýíí˙ (Dialup)"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Iě˙ çëó÷ýíí˙"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Íóěŕđ ňýëĺôîíó"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Iě˙ (login ID)"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "íŕ ŕńíîâĺ ńęđűďňó"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "íŕ ŕńíîâĺ ňýđěiíŕëó"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Iě˙ äŕěĺíó"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-#, fuzzy
-msgid "First DNS Server (optional)"
-msgstr "Ďĺđřű ńĺđâĺđ DNS"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-#, fuzzy
-msgid "Second DNS Server (optional)"
-msgstr "Äđóăi ńĺđâĺđ DNS:"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-
-#: ../../network/netconnect.pm_.c:34
-#, fuzzy
-msgid "You are currently connected to internet."
-msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-
-#: ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-
-#: ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid "You are not currently connected to Internet."
-msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
-msgid "Connect"
-msgstr "Iě˙ çëó÷ýíí˙"
-
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
-msgid "Disconnect"
-msgstr "Íŕńňđîéęŕ ISDN"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Íŕńňđîéęŕ ńĺňęi"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr ""
-"\n"
-"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-
-#: ../../network/netconnect.pm_.c:167
-#, fuzzy
-msgid "Choose the profile to configure"
-msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, fuzzy, c-format
-msgid "detected on port %s"
-msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, fuzzy
-msgid "ISDN connection"
-msgstr "Íŕńňđîéęŕ ISDN"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy
-msgid "ADSL connection"
-msgstr "Đŕçěĺđęŕâŕííĺ"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy, c-format
-msgid "detected on interface %s"
-msgstr "Ńĺňęŕâű iíňýđôĺéń"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "Cable connection"
-msgstr "Çëó÷ýííĺ ďđűíňýđó"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Çëó÷ýííĺ ďđűíňýđó"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-#, fuzzy
-msgid "LAN connection"
-msgstr "Đŕçěĺđęŕâŕííĺ"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "Ŕá˙đűöĺ iíńňđóěĺíň, ˙ęi ćŕäŕĺöĺ ńęŕđűńňŕöü"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-#, fuzzy
-msgid "Internet connection"
-msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Âű ćŕäŕĺöĺ, ęŕá ăýňŕĺ çëó÷ýííĺ ńňŕđňŕâŕëŕ ďđű çŕăđóçöű?"
-
-#: ../../network/netconnect.pm_.c:247
-#, fuzzy
-msgid "Network configuration"
-msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, fuzzy, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Ęŕëi ëŕńęŕ, óâ˙äçiöĺ IP ęŕíôiăóđŕöűţ äë˙ âŕřŕé ěŕřűíű.\n"
-"Ęîćíű ďóíęň ďŕâiíĺí áűöü çŕďî˘íĺíű ˙ę IP ŕäđŕń ˘ äçĺń˙ňęîâŕ-ęđîďęŕâŕé \n"
-"íŕňŕöűi (íŕďđűęëŕä, 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Íŕńňđîéęŕ ńĺňęŕâŕé ďđűëŕäű %s"
-
-#: ../../network/network.pm_.c:307
-#, fuzzy, c-format
-msgid " (driver %s)"
-msgstr "Ńĺđâĺđ XFree86: %s\n"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP ŕäđŕń"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Ěŕńęŕ ńĺňęi"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Ŕ˘ňŕěŕňű÷íű IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP ŕäđŕń ďŕâiíĺí áűöü ó ôŕđěŕöĺ 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Óâ˙äçiöĺ iě˙ ńâŕ¸é ěŕřűíű (host).\n"
-"Iě˙ âŕřŕé ěŕřűíű ďŕâiííŕ áűöü çŕäŕäçĺíŕ ďî˘íŕńöţ,\n"
-"íŕďđűęëŕä ``mybox.mylab.myco.com''.\n"
-"Âű ěîćŕöĺ ňŕęńŕěŕ ˘âĺńöi IP ŕäđŕń řëţçó, ęŕëi ¸í ó âŕń ¸ńöü."
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS ńĺđâĺđ"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Ďđűëŕäŕ-řëţç"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Íŕńňđîéęŕ proxy ęýřóţ÷űő ńĺđâĺđŕ˘"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy ďŕâiíĺí áűöü http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy ďŕâiíĺí áűöü ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Öi ćŕäŕĺöĺ çŕđŕç ďŕńďđŕáŕâŕöü äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-#, fuzzy
-msgid "Testing your connection..."
-msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-
-#: ../../network/tools.pm_.c:50
-#, fuzzy
-msgid "The system is now connected to Internet."
-msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr ""
-
-#: ../../network/tools.pm_.c:52
-#, fuzzy
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"\n"
-"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Íŕńňđîéęŕ äŕëó÷ýíí˙ äŕ Iíňýđíýňó"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Ęŕëi ëŕńęŕ, çŕďî˘íiöĺ öi ďŕçíŕ÷öĺ ďîëĺ íićýé"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ ęŕđňű"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Ŕäđŕńű ďŕě˙öł ęŕđňű (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO ęŕđňű"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_0 ęŕđňű"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 ęŕđňű"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Âŕř ŕńŕáińňű ňýëĺôîííű íóěŕđ"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Iě˙ ďđŕâŕéäŕđó, íŕďđűęëŕä ďđŕâŕéäŕđ.net"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Íóěŕđ ňýëĺôîíó ďđŕâŕéäŕđŕ"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-#, fuzzy
-msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 ďđŕâŕéäŕđó"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-#, fuzzy
-msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 ďđŕâŕéäŕđó"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "Âűáŕđ ęëŕâi˙ňóđű"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Đýćűě çëó÷ýíí˙"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "Iě˙ çëó÷ýíí˙"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Iě˙ çëó÷ýíí˙"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Iě˙ äë˙ ˘âŕőîäó (iě˙ ęŕđűńňŕëüíięó)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Ďŕđîëü äë˙ ˘âŕőîäó"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Ďŕřűđŕíű đŕçäçĺë íĺ ďŕäňđűěëiâŕĺööŕ ăýňŕé ďëŕňôîđěŕé"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Âű ěŕĺöĺ äçiđęó ˘ ňŕáëiöű đŕäçĺëŕ˘, ŕëĺ ˙ íĺ ěŕţ ěŕă÷űěŕńöi ˙ĺ ńęŕđűńňŕöü.\n"
-"Ŕäçiíű âűőŕä ó ňűě, ęŕá ďĺđŕě˙ńöiöü ďĺđřŕńíű˙ đŕçäçĺëű ňŕę, ęŕá äçiđęŕ iřëŕ\n"
-"ŕäđŕçó çŕ ďŕřűđŕíűě (extended) đŕçäçĺëŕě"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëŕ %s íĺ ŕňđűěŕëŕń˙: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Ďŕěűëęŕ çŕďińó ˘ ôŕéë %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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:24
-msgid "must have"
-msgstr "ďŕâiííű ěĺöü"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "âŕćíŕ"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "âĺëüěi äîáđŕ"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "äîáđŕ"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "ěîćŕ áűöü"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Ëŕęŕëüíű ďđűíňýđ"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Ŕääŕëĺíű ďđűíňýđ"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "Ŕääŕëĺíű ńĺđâĺđ lpd"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Ńĺňęŕâű ďđűíňýđ (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Ńĺđâĺđ äđóęó"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "URI ďđűíňýđó"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Ëŕęŕëüíű ďđűíňýđ"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Ŕääŕëĺíű ďđűíňýđ"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Ďŕěűëęŕ çŕďińó ˘ ôŕéë %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(ěîäóëü %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP ńĺđâĺđŕ SMB"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Ďŕ äŕěŕ˘ëĺííţ)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "ßę ďđűíňŕđ äŕëó÷ŕíű?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"Ŕääŕëĺíű CUPS ńĺđâĺđ íĺ ďŕňđŕáóĺ ŕä Âŕń íŕńňđîéęł ďđűíňýđó\n"
-"íŕ ăýňŕé ěŕřűíĺ, ¸í áóäçĺ çíîéäçĺíű ŕ˘ňŕěŕňű÷íŕ.\n"
-"Ęŕëł Âű íĺ ˘ďý˘íĺíű, ŕá˙đűöĺ \"Ŕääŕëĺíű ńĺđâĺđ CUPS\"."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Íŕńňđîéęŕ"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP ŕäđŕń ďŕâiíĺí áűöü ó ôŕđěŕöĺ 1.2.3.4"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:87
-#, fuzzy
-msgid "CUPS server IP"
-msgstr "IP ńĺđâĺđŕ SMB"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Ďîđň"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Íŕńňđîéęŕ ěŕäýěó"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ďđŕâĺđęŕ ďŕđňî˘"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Iě˙ äđóęŕđęi"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Ëŕęŕëüíű ďđűíňýđ"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Ŕääŕëĺíű ďđűíňýđ"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Ŕääŕëĺíű ďđűíňýđ"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Ŕääŕëĺíű ďđűíňýđ"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "URI ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Ëŕęŕëüíű ďđűíňýđ"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Äŕ ˙ęîăŕ ďŕńë˙äî˘íŕăŕ ďîđňó äŕëó÷ŕíű ěŕäýě?"
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "URI ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Íŕńňđîéęŕ"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-#, fuzzy
-msgid "Reading printer database ..."
-msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Îďöűi ŕääŕëĺíŕăŕ ďđűíňýđó lpd"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Äë˙ íŕńňđîéęi ŕääŕëĺíŕé ÷ŕđăi äđóęó âŕě ďŕňđýáíŕ\n"
-"ďŕçíŕ÷űöü iě˙ ŕääŕëĺíŕăŕ ńĺđâĺđŕ i iě˙ ÷ŕđăi äđóęó,\n"
-"ó ˙ęóţ ŕääŕëĺíű ńĺđâĺđ áóäçĺ ŕäďđŕ˘ë˙öü çŕäŕííi."
-
-#: ../../printerdrake.pm_.c:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "Ŕääŕëĺíű âóçĺë"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Ŕääŕëĺíű ďđűíňýđ"
-
-#: ../../printerdrake.pm_.c:630
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "Ŕääŕëĺíű âóçĺë"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Ŕääŕëĺíű âóçĺë"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Îďöűi ďđűíňýđó SMB (Windows 9x/NT)"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Äë˙ äđóęó íŕ ďđűíňýđű SMB íĺŕáőîäíŕ ďŕçíŕ÷űöü iě˙ őîńňó SMB (íĺ çŕ˘ń¸äű "
-"ńóďŕäŕĺ ç iěĺíĺě ó ńĺňöű TCP/IP) i ŕäđŕń IP ńĺđâĺđŕ äđóęó, ŕ ňŕęńŕěŕ iě˙ "
-"đýńóđńó, ˙ęi ńďŕëó÷ŕíű ç âűáđŕíűě ďđűíňýđŕě, iě˙ ęŕđűńňŕëüíięó, ďŕđîëü i "
-"iíôŕđěŕöűţ ŕá ďđŕöî˘íŕé ăđóďĺ."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Iě˙ ńĺđâĺđó SMB"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP ńĺđâĺđŕ SMB"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Iě˙ äë˙ đŕçěĺđęŕâŕíŕăŕ đýńóđńó"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Ďđŕöî˘íŕ˙ ăđóďŕ"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Îďöűi ďđűíňýđó NetWare"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Äë˙ äđóęó íŕ ďđűíňýđű NetWare íĺŕáőîäíŕ ďŕçíŕ÷űöü iě˙ ńĺđâĺđó äđóęó NetWare "
-"(íĺ çŕ˘ń¸äű ńóďŕäŕĺ ç iěĺíĺě ó ńĺňöű TCP/IP) i iě˙ ÷ŕđăi äđóęó, ˙ęŕ˙ "
-"ŕäďŕâ˙äŕĺ ŕáđŕíŕěó ďđűíňýđó, ŕ ňŕęńŕěŕ iě˙ ęŕđűńňŕëüíięó i ďŕđîëü."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Ńĺđâĺđ äđóęó"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Iě˙ ÷ŕđăi äđóęó"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Îďöűi ńîęĺňó ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Ęŕá äđóęŕâŕöü ďđŕç ńîęĺň äđóęŕđęi, âŕě íĺŕáőîäíŕ çŕá˙ńďĺ÷űöü\n"
-"iě˙ ďđűíňýđó i ěŕă÷űěŕ ˙ăî íóěŕđ ďîđňó."
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "Iě˙ ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:858
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "Iě˙ ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "URI ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Iě˙ äđóęŕđęi"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Ŕďińŕííĺ"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Đŕçěĺđęŕâŕííĺ"
-
-#: ../../printerdrake.pm_.c:1021
-#, fuzzy
-msgid "Preparing printer database ..."
-msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Ŕääŕëĺíű ďđűíňýđ"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Ăýňŕ äŕęëŕäíŕ?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Ŕääŕëĺíű ďđűíňýđ"
-
-#: ../../printerdrake.pm_.c:1139
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Çëó÷ýííĺ ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:1140
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "ßęi ňűď äđóęŕđęi âű ěŕĺöĺ?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü äđóę?"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "Ďđŕâĺđęŕ ďŕđňî˘"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-#, fuzzy
-msgid "No test pages"
-msgstr "Ňŕę, íŕäđóęŕâŕöü ŕáĺäçâĺ ńňŕđîíęi ňýęńňó"
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "Ďđűíňýđ"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Ńňŕíäŕđňíű"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-
-#: ../../printerdrake.pm_.c:1635
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Ňýńňŕâű˙ ńňŕđîíęi ŕäďđŕ˘ëĺíű äýěŕíó äđóęó.\n"
-"Ďĺđŕä ňűě, ˙ę ďđűíňýđ çŕďđŕöóĺ, ěîćŕ ďđŕéńöi ďý˘íű ÷ŕń.\n"
-"Ńňŕňóń äđóęó:\n"
-"%s\n"
-"\n"
-"¨í ďđŕöóĺ íŕđěŕëüíŕ?"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Ňýńňŕâű˙ ńňŕđîíęi ŕäďđŕ˘ëĺíű äýěŕíó äđóęó.\n"
-"Ďĺđŕä ňűě, ˙ę ďđűíňýđ çŕďđŕöóĺ, ěîćŕ ďđŕéńöi ďý˘íű ÷ŕń.\n"
-"¨í ďđŕöóĺ íŕđěŕëüíŕ?"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Iě˙ äđóęŕđęi"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Ďîđň ěűřű"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Îďöűi ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "Iě˙ äđóęŕđęi"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "Íŕńňđîéęŕ ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Íŕńňđîéęŕ ńĺňęi"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Ěŕíiňîđ ďŕęóëü íĺ íŕńňđîĺíű"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Íŕńňđîéęŕ ńĺňęi"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "ßęóţ ńińňýěó äđóęó Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Âűńîęi"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Ďŕđŕíŕiäŕëüíű"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "ßęóţ ńińňýěó äđóęó Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "ßęóţ ńińňýěó äđóęó Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Íŕńňđîéęŕ ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Îďöűi ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Íŕńňđîéęŕ ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Ćŕäŕĺöĺ íŕńňđîiöü ďđűíňýđ?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Ďđűíňýđ"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Ňóň çě˙ř÷ŕţööŕ ÷ýđăi äđóęó.\n"
-"Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Ňóň çě˙ř÷ŕţööŕ ÷ýđăi äđóęó.\n"
-"Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Íŕńňđîéęŕ ńĺňęi"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Normal Mode"
-msgstr "Çâű÷ŕéíű"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Çëó÷ýííĺ ďđűíňýđó"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Ŕääŕëĺíű ďđűíňýđ"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Ëŕęŕëüíű ďđűíňýđ"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-#, fuzzy
-msgid "Proxy configuration"
-msgstr "Íŕńňđîéęŕ proxy ęýřóţ÷űő ńĺđâĺđŕ˘"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr ""
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-#, fuzzy
-msgid "port"
-msgstr "Ďîđň"
-
-#: ../../proxy.pm_.c:44
-#, fuzzy
-msgid "Url should begin with 'http:'"
-msgstr "Proxy ďŕâiíĺí áűöü http://..."
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr ""
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Proxy ďŕâiíĺí áűöü ftp://..."
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-#, fuzzy
-msgid "login"
-msgstr "Ŕ˘ňŕěŕňű÷íű ˘âŕőîä ó ńińňýěó"
-
-#: ../../proxy.pm_.c:82
-#, fuzzy
-msgid "password"
-msgstr "Ďŕđîëü"
-
-#: ../../proxy.pm_.c:84
-#, fuzzy
-msgid "re-type password"
-msgstr "Í˙ěŕ ďŕđîëţ"
-
-#: ../../proxy.pm_.c:88
-#, fuzzy
-msgid "The passwords don't match. Try again!"
-msgstr "Ďŕđîëi íĺ ńóďŕäŕţöü"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Íĺ ŕňđűěëiâŕĺööŕ äŕäŕöü đŕçäçĺë íŕ _ŕäôŕđěŕöiđŕâŕíű_ RAID md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Íĺ ŕňđűěëiâŕĺööŕ çŕďiń ó ôŕéë %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid íĺ ďđŕöŕçäîëüíű"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid íĺ ďđŕöŕçäîëüíű (ěîćŕ raid ďđűëŕäű ŕäńóňíi÷ŕţöü?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Íĺäŕńňŕňęîâŕ đŕçäçĺëࢠäë˙ RAID óçđî˘í˙ %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, ďĺđű˙äű÷íű ęŕěŕíäíű ďëŕíŕâŕëüíię."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"ampd âűęŕđűńňî˘âŕĺööŕ äë˙ ŕäńëĺćâŕíí˙ ńňŕňóńó áŕňŕđýi i â˙äçĺíí˙ "
-"ńňŕňűńňűęi.\n"
-"ßăî ěîćíŕ âűęŕđűńňî˘âŕöü äë˙ âűęëţ÷ýíí˙ ěŕřűíű ďđű íiçęiě çŕđŕäçĺ áŕňŕđýi."
-
-#: ../../services.pm_.c:18
-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 íićýé äŕńňŕňęîâŕé."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron - ńňŕíäŕđňíŕ˙ UNIX ďđŕăđŕěŕ, ˙ęŕ˙ âűęîíâŕĺ ďđŕăđŕěű ęŕđűńňŕëüíięŕ\n"
-"ďđŕç ďŕçíŕ÷ŕíű˙ ďĺđű˙äű ÷ŕńó. Vixie cron äŕäŕĺ đŕä äŕďŕ˘íĺíí˙˘ äŕ "
-"ńňŕíäŕđňíŕăŕ\n"
-"UNIX cron, óęëţ÷ŕţ÷ű ëĺďřű ˘çđîâĺíü á˙ńďĺęi i ěîöíű˙ ęŕíôiăóđŕöűéíű˙ îďöűi."
-
-#: ../../services.pm_.c:23
-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˙ ďđŕöóţöü ó ňýęńňŕâűě đýćűěĺ,\n"
-"ňŕęiő ˙ę Midnight Commander. Ăýňŕ äŕçâŕë˙ĺ âűęŕđűńňî˘âŕöü ěűř ďđű "
-"ęŕďiđŕâŕííi i ˘ńňŕ˘öű,\n"
-"i ˘ęëţ÷ŕĺ ďŕäňđűěęó ˘ńďëűâŕţ÷űő (pop-up) ěĺíţ ˘ ňýęńňŕâűě đýćűěĺ."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache - ăýňŕ World Wide Web ńĺđâĺđ. ¨í âűęŕđűńňî˘çâŕĺöŕ äë˙ ŕáńëóăî˘âŕíí˙\n"
-"HTML ôŕéëࢠi CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Iíňýđíýň ńóďĺđńĺđâĺđ-äýěŕí (çŕâĺööŕ inetd) çŕďóńęŕĺ ďđű ńňŕđöĺ \n"
-"ęîëüęŕńöü đîçíűő iíňýđíýň ńëóćáŕ˘, ˙ęi˙ íĺŕáőîäíű. ßăî ěîćíŕ âűęŕđűńňî˘âŕöü "
-"äë˙ ďóńęó\n"
-"řěŕňëłęłő ńëóćáŕ˘, óęëţ÷ŕţ÷ű telnet, ftp, rsh i rlogin. Áëŕęóţ÷ű inetd, "
-"áëŕęóĺě\n"
-"óńĺ ńëóćáű, çŕ ˙ęi˙ ¸í ŕäęŕçâŕĺ."
-
-#: ../../services.pm_.c:33
-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:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Ăýňű ďŕęĺň çŕăđóćŕĺ ŕáđŕíóţ đŕńęëŕäęó ęëŕâi˙ňóđű ˙ę íŕáîđ ç\n"
-"/etc/sysconfig/keyboard. ¨íŕ ěîćŕ áűöü ŕáđŕíŕ ňŕęńŕěŕ ç äŕďŕěîăŕé "
-"kbdconfig.\n"
-"Âű ěîćŕöĺ çđŕáiöü äŕńňóďíŕé ˙ĺ äë˙ řěŕňëłęłő ěŕřűíŕ˘."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: ../../services.pm_.c:43
-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. Ăýňŕ\n"
-"ńĺđâĺđ, ˙ęi ęiđóĺ ďđŕöŕé ďđűíňýđó(ŕ˘)."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) - ăýňŕ ńĺđâĺđ äŕěĺííűő iě¸íŕ˘, ˙ęi âűęŕđűńňî˘âŕĺööŕ äë˙\n"
-"ďĺđŕęëŕäŕíí˙ iě¸í âóçëî˘ ó IP ŕäđŕńű."
-
-#: ../../services.pm_.c:48
-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đŕâŕíí˙."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Ŕęňűâiçŕâŕöü/äýŕęňűâiçŕâŕöü óńĺ ńĺňęŕâű˙ iíňýđôĺéńű, ńęŕíôiăóđŕâŕíű˙ äë˙\n"
-"ńňŕđňó ďđű çŕăđóçöű ńińňýěű."
-
-#: ../../services.pm_.c:52
-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 ńĺňęi.\n"
-"Ăýňŕ˙ ńëóćáŕ çŕá˙ńďĺ÷âŕĺööŕ NFS ńĺđâĺđŕě, ˙ęi ęŕíôiăóđűđóĺöŕ ďđŕç\n"
-"/etc/exports ôŕéë."
-
-#: ../../services.pm_.c:55
-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"
-"ńĺňęi. Ăýňŕ˙ ńëóćáŕ ˘ďëűâŕĺ íŕ íŕ˙˘íŕńöü ńóâ˙çi ďŕěić NFS ôŕéëŕěi."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"Ďŕäňđűěęŕ PCMCIA - ăýňŕ çâű÷ŕéíŕ ďŕäňđűěęŕ ňŕęiő đý÷ŕ˘, ˙ę Ethernet i\n"
-"ěŕäýěű ˘ íŕ˘ňáóęŕő. Âŕě í˙ěŕ íĺŕáőîäíŕńöi ęŕíôiăóđŕâŕöü iő, ęŕëi íŕ âŕřŕé\n"
-"ěŕřűíĺ iő í˙ěŕ, öi ˙íŕ íĺ íŕ˘ňáóę."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Portmapper (ŕăë˙äŕëüíię ďŕđňî˘) ęiđóĺ RPC çëó÷ýíí˙ěi, ˙ęi˙ çâű÷ŕéíŕ\n"
-"âűęŕđűńňî˘âŕţööŕ ňŕęiěi ďđŕňŕęîëŕěi ˙ę NFS i NIS. Portmap ńĺđâĺđ ďŕâiíĺí "
-"âűęîíâŕööŕ\n"
-"íŕ ěŕřűíŕő ˙ęi˙ ďđŕöóţöü ˙ę ńĺđâĺđű äë˙ ďđŕňŕęîëŕ˘, ˙ęi˙ ńęŕđűńňî˘âŕţöü RPC."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix - ăýňŕ ďŕřňîâű ňđŕíńďŕđňíű ŕăĺíň, ďđŕăđŕěŕ, ˙ęŕ˙\n"
-"ďĺđŕě˙ř÷ŕĺ ďîřňó ç ŕäíîé ěŕřűíű íŕ éířóţ."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Çŕőŕâŕöü i ŕäíŕâiöü ńińňýěíű ýíňđŕďiéíű ďóë äë˙ âűńîęŕé ˙ęŕńöi\n"
-"ăĺíĺđŕöűł âűďŕäęîâűő ëłęŕ˘."
-
-#: ../../services.pm_.c:69
-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:71
-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"
-"ŕäíŕ˘ë˙ööŕ ďđŕç RIP ďđŕňŕęîë. RIP âűęŕđűńňî˘âŕĺööŕ ˘ ěŕëűő ńĺňęŕő, áîëüř\n"
-"ńęëŕäŕíű˙ ďđŕňŕęîëű ěŕđřđóňűçŕöűi - ó â˙ëięiő ńĺňęŕő."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Ďđŕňŕęîë rstat äŕçâŕë˙ĺ ęŕđűńňŕëüíięŕě ńĺňęi ŕňđűěëiâŕöü\n"
-"ďŕěĺđű íŕăđóçęi äë˙ ęîćíŕé ěŕřűíű ńĺňęi."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Ďđŕňŕęîë rusers äŕçâŕë˙ĺ ęŕđűńňŕëüíięŕě ńĺňęi âűçíŕ÷ŕöü, őňî\n"
-"˘âŕéřî˘ i ďđŕöóĺ íŕ ěŕřűíŕő ˘ ńĺňöű."
-
-#: ../../services.pm_.c:78
-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 äŕĺ ěŕă÷űěŕńöü ęŕđűńňŕëüíięŕě ŕňđűěŕöü ńďiń ˘ńiő\n"
-"ęŕđűńňŕëüíięŕ˘, óâŕéřî˘řűő íŕ ěŕřűíó, âűęŕíࢠrwho äýěŕí (ďŕäîáíű íŕ finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr ""
-
-#: ../../services.pm_.c:81
-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 äîáđŕ äë˙ ŕăë˙äó ďđŕöű đîçíűő ńëóćáŕ˘."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: ../../services.pm_.c:84
-#, fuzzy
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Çŕďóńęŕĺ i ďđűďűí˙ĺ X Font Server ďđű çŕăđóçöű i âűęëţ÷ýííi."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Ŕá˙đűöĺ, ˙ęi˙ ńĺđâińű çŕďóńęŕöü ŕ˘ňŕěŕňű÷íŕ ďđű çŕăđóçöű"
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Ďđűíňýđ"
-
-#: ../../services.pm_.c:123
-#, fuzzy
-msgid "Internet"
-msgstr "öięŕâŕ"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Mouse Systems"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Îďöűi ŕääŕëĺíŕăŕ ďđűíňýđó lpd"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Ńĺđâĺđ äđóęó"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "ďđűëŕäŕ"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "running"
-msgstr "Óâŕăŕ!"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "stopped"
-msgstr "Äŕëó÷űöü"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr ""
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-
-#: ../../services.pm_.c:224
-#, fuzzy
-msgid "On boot"
-msgstr "Yaboot"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Ńĺęňŕđ"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Ďŕäęëţ÷ýííĺ"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Ěóëüňűěĺäű˙ - Ăđŕôłęŕ"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-#, fuzzy
-msgid "Development"
-msgstr "đŕńďđŕöî˘ř÷űę"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Ńĺňęŕâű iíňýđôĺéń"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "Iě˙ ńĺđâĺđó SMB"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Çŕáŕâű"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "ýęńďĺđň"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-#, fuzzy
-msgid "MandrakeStore"
-msgstr "ŕáŕâ˙çęîâŕ"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ňŕáëiöŕ đŕçäçĺëࢠíĺ ÷űňŕĺööŕ, ˙íŕ çŕíŕäňŕ ńŕďńŕâŕíŕ äë˙ ěĺí˙ :(\n"
-"Ďŕńďđŕáóţ ińöi äŕëĺé i áóäó ďđŕďóńęŕöü äđýííű˙ đŕçäçĺëű"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Ďŕěűëęŕ"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Íŕńňđîéęŕ ěŕäýěó"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Ďđűěłöĺ âiířŕâŕííi!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Óńňŕ븢ęŕ"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Ôŕđěŕňŕâŕííĺ âiđňóŕëüíŕăŕ đŕçäçĺëó %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Âűáŕđ ăđóďű ďŕęĺňŕ˘"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Âűäŕëiöü ÷ŕđăó äđóęó"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Âűäŕëiöü Windows(TM)"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Ďŕńďđŕáóéöĺ ˙ř÷ý đŕç"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Ďŕńďđŕáóéöĺ ˙ř÷ý đŕç"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "Í˙ěŕ ďŕđîëţ"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Đŕçěĺđęŕâŕííĺ"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ďđűíňýđó"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ňűď ęëŕâi˙ňóđű."
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Ńĺňęŕ:"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Âűęŕđűńňî˘âŕöü ŕďňűěiçŕöűţ ćîđńňęŕăŕ äűńęó?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Âűęŕđűńňî˘âŕöü ŕďňűěiçŕöűţ ćîđńňęŕăŕ äűńęó?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-#, fuzzy
-msgid "What"
-msgstr "×ŕęŕéöĺ"
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "Ç ęîëŕě"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "Ç ęîëŕě"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Îďöűi ěîäóëţ:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-#, fuzzy
-msgid "across Network"
-msgstr "Ńĺňęŕ:"
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Íŕńňđ. ôŕéëŕâűő ńińňýěŕ˘"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Îďöűi"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Äŕ ˙ęîăŕ ďŕńë˙äî˘íŕăŕ ďîđňó äŕëó÷ŕíű ěŕäýě?"
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Ŕäíŕ˘ëĺííĺ ç äűńęĺňű"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "˛ířű˙"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Óńňŕë˙âŕííĺ ńińňýěű"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Ďŕ âűáŕđó"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Ňýęńň"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Âűáŕđ ďŕęĺňŕ˘"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Çŕőŕâŕííĺ ˘ ôŕéë"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Íŕńňđîéęŕ"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Çŕęŕí÷ýííĺ íŕńňđîéęi"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Íŕńňđ. ôŕéëŕâűő ńińňýěŕ˘"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Óńňŕë˙âŕííĺ %s íĺ ŕňđűěŕëŕń˙. Óçíięëŕ íŕńňóďíŕ˙ ďŕěűëęŕ:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "Íĺ çíŕéřëi %s"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Çđîáëĺíŕ"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Ôŕđěŕňŕâŕöü äűńęĺňó"
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕë˙âŕíüí˙"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-#, fuzzy
-msgid "Restart XFS"
-msgstr "ŕáěĺćŕâŕííĺ"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "ŕáěĺćŕâŕííĺ"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Ôŕđěŕňŕâŕííĺ đŕçäçĺëŕ˘"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-#, fuzzy
-msgid "Uninstall Fonts"
-msgstr "Âűäŕëĺííĺ âűáđŕíűő RPM-ďŕęĺňࢠç ńińňýěű"
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Çŕęŕí÷ýííĺ íŕńňđîéęi"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Ęđîďęŕ ěŕíöiđŕâŕíí˙"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Âűáŕđ đŕçäçĺëࢠäë˙ ôŕđěŕňŕâŕíí˙"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "äîáđŕ"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Ŕäě˙íiöü"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Ďđűíňýđ"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Óńňŕë˙âŕííĺ ńińňýěű"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Ŕá˙đűöĺ ôŕéë"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Ŕääŕëĺíű ďđűíňýđ"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Ó âŕřŕé ńłńňýěĺ í˙ěŕ íiâîäíŕăŕ ńĺňęŕâŕăŕ ŕäŕďňŕđŕ!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Óńňŕ븢ęŕ"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Ó âŕřŕé ńłńňýěĺ í˙ěŕ íiâîäíŕăŕ ńĺňęŕâŕăŕ ŕäŕďňŕđŕ!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Çŕęŕí÷ýííĺ ˘ńňŕë˙âŕíí˙"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç ěŕă÷űěŕ"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-
-#: ../../standalone/drakgw_.c:143
-#, fuzzy
-msgid "disable"
-msgstr "Ňŕáëiöŕ"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-#, fuzzy
-msgid "reconfigure"
-msgstr "Íŕńňđîéęŕ X Window"
-
-#: ../../standalone/drakgw_.c:146
-#, fuzzy
-msgid "Disabling servers..."
-msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
-
-#: ../../standalone/drakgw_.c:154
-#, fuzzy
-msgid "Internet connection sharing is now disabled."
-msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç çŕáŕđîíĺíŕ"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç çŕáŕđîíĺíŕ"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-
-#: ../../standalone/drakgw_.c:168
-#, fuzzy
-msgid "enable"
-msgstr "Ňŕáëiöŕ"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:180
-#, fuzzy
-msgid "Internet connection sharing is now enabled."
-msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç ěŕă÷űěŕ"
-
-#: ../../standalone/drakgw_.c:201
-#, fuzzy
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Âŕř ęŕěď'ţňŕđ ěîćŕ áűöü ńęŕíôłăóđŕâŕíű íŕ ńóěĺńíŕĺ âűęŕđűńňŕííĺ\n"
-" ˛íňýđíýňó (Internet Connection Sharing)?\n"
-"\n"
-"Çŕ˘âŕăŕ: âŕě ďŕňđýáíű ńĺňęŕâű ŕäŕďňŕđ äë˙ ďŕäęëţ÷ýíí˙ äŕ ËÂŃ.\n"
-"\n"
-"Âű ćŕäŕĺöĺ óńňŕë˙âŕöü ńóěĺńíű äîńňóď äŕ Internet?"
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:228
-#, fuzzy, c-format
-msgid "Interface %s"
-msgstr "Ńĺňęŕâű iíňýđôĺéń"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Ó âŕřŕé ńłńňýěĺ í˙ěŕ íiâîäíŕăŕ ńĺňęŕâŕăŕ ŕäŕďňŕđŕ!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Íi âîäíű ethernet ńĺňęŕâű ŕäŕďňŕđ ó âŕřŕé ńińňýěĺ íĺ âűçíŕ÷ŕíű. Ęŕëi ëŕńęŕ, "
-"ńęŕđűńňŕéöĺ ęŕíôiăóđŕöűéíű iíńňđóěýíň."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Ńĺňęŕâű iíňýđôĺéń"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ńĺňęŕâű ŕäŕďňŕđ, ˙ęł áóäçĺ âűęŕđűńňŕíű äë˙ äŕëó÷ýíí˙ äŕ "
-"âŕřŕé ëŕęŕëüíŕé ńĺňęi."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Ěŕíiňîđ ďŕęóëü íĺ íŕńňđîĺíű"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Íŕńňđîéęŕ ěŕäýěó"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "IP ńĺđâĺđŕ SMB"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Ďŕňýíöűéíű ŕäđŕń ËÂŃ ęŕíôëięňóĺ ç á˙ăó÷ŕé ęŕíôiăóđŕöű˙é %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Çíîéäçĺíŕ ńłńňýěŕ ńĺňęŕâŕé á˙ńďĺęł (firewall)!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Óâŕăŕ! Çíîéäçĺíŕ łńíóţ÷ŕ˙ ńińňýěŕ ńĺňęŕâŕé á˙ńďĺęi (firewall). Âŕě ěŕă÷űěŕ "
-"ńďŕňđýáłööŕ ńęŕđýęňŕâŕöü ˙ĺ ďŕńë˙ ˘ńňŕë˙âŕíí˙."
-
-#: ../../standalone/drakgw_.c:340
-#, fuzzy
-msgid "Configuring..."
-msgstr "Íŕńňđîéęŕ IDE"
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Ęŕíôłăóđŕöű˙ ńöýíŕđŕ˘, óńňŕë˙âŕííĺ ĎÇ, çŕďóńę ńëóćáŕ˘..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Ďđŕáëĺěű ç óńňŕë˙âŕííĺě ďŕęĺňó %s"
-
-#: ../../standalone/drakgw_.c:672
-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:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:691
-#, fuzzy
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç ěŕă÷űěŕ"
-
-#: ../../standalone/drakgw_.c:696
-#, fuzzy
-msgid "Internet connection sharing configuration"
-msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
-
-#: ../../standalone/drakgw_.c:703
-#, 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:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Iě˙ ěŕřűíű"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr ""
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Ňűď: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Řëţç:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Íŕńňđîéęŕ ńëóćáŕ˘"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Íŕńňđîéęŕ ADSL"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Driver"
-msgstr "ńĺđâĺđ"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "Ńĺňęŕâű iíňýđôĺéń"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Íŕńňđîéęŕ ëŕęŕëüíŕé ńĺňęi"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Ěŕéńňŕđ ńňâŕđýíí˙..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Ďđŕâĺđęŕ ďŕđŕěĺňđࢠíŕńňđîéęi"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Iě˙ çëó÷ýíí˙"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Đŕçěĺđęŕâŕííĺ"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "Íŕńňđîéęŕ"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Ŕęňű˘íű"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Ŕęňű˘íű"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Iě˙ çëó÷ýíí˙"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Řëţç"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Íŕńňđîéęi ˘çđî˘í˙ á˙ńďĺęi"
-
-#: ../../standalone/drakxconf_.c:47
-#, fuzzy
-msgid "Control Center"
-msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Ŕá˙đűöĺ iíńňđóěĺíň, ˙ęi ćŕäŕĺöĺ ńęŕđűńňŕöü"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Ęŕíŕäńęi (Ęâĺáýę)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "Ţđîďŕ"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Ińëŕíäńęi"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "Ţđîďŕ"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "ďŕńë˙äî˘íŕ˙"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ňűď ęëŕâi˙ňóđű."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Âű ćŕäŕĺöĺ ęŕá BackSpace ďđŕöŕâࢠó ęŕíńîëł ˙ę Delete?"
-
-#: ../../standalone/livedrake_.c:24
-#, fuzzy
-msgid "Change Cd-Rom"
-msgstr "Çě˙íiöü ďŕěĺđű ýęđŕíó"
-
-#: ../../standalone/livedrake_.c:25
-#, 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 ""
-"Çě˙íiöĺ âŕř Cd-Rom!\n"
-"\n"
-"Ęŕëi ëŕńęŕ, óńňŕ˘öĺ Cd-Rom, ďŕçíŕ÷ŕíű \"%s\", ó âŕř äűńęŕâîä i íŕöińíiöĺ Oę "
-"ďŕńë˙.\n"
-"Ęŕëi âű íĺ ěŕĺöĺ ˙ăî, íŕöińíiöĺ Ŕäě˙íiöü, ęŕá ŕäě˙íiöü óńňŕë˙âŕííĺ ç ăýňŕăŕ "
-"Cd."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Íĺěŕă÷űěŕ çŕďóńöłöü live upgrade !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr ""
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "Ďđŕâĺđęŕ ďŕđňî˘"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Íŕńňđîéęŕ ADSL"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "öĺíü"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "ďđűëŕäŕ"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "ôŕđěŕňŕâŕííĺ"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Íŕńňđîéęŕ"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr ""
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "serial_usb íĺ çíîéäçĺí\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Ýěóë˙âŕöü ňđýöţţ ęíîďęó?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Ŕá˙đűöĺ âiäýŕęŕđňó"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Çŕăđóçŕ÷íŕ˙ ďđűëŕäŕ"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "Çíîéäçĺíŕ ńłńňýěŕ ńĺňęŕâŕé á˙ńďĺęł (firewall)!"
-
-#: ../../standalone/tinyfirewall_.c:44
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "Çíîéäçĺíŕ ńłńňýěŕ ńĺňęŕâŕé á˙ńďĺęł (firewall)!"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Âűáŕđ ěîâű"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Ęëŕń óńňŕë˙âŕíí˙"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Âűçíŕ÷ýííĺ ćîđńňęŕăŕ äűńęó"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Íŕńňđîéęŕ ěűřű"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Âűáŕđ ęëŕâi˙ňóđű"
-
-#: ../../steps.pm_.c:19
-#, fuzzy
-msgid "Security"
-msgstr "ęó÷ŕđŕâű"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Íŕńňđ. ôŕéëŕâűő ńińňýěŕ˘"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Ôŕđěŕňŕâŕííĺ đŕçäçĺëŕ˘"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Âűáŕđ ďŕęĺňŕ˘"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Óńňŕë˙âŕííĺ ńińňýěű"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Íŕńňđîéęŕ ńĺňęi"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Íŕńňđîéęŕ ńëóćáŕ˘"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Óńňŕë˙âŕííĺ çŕăđóç÷űęó"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Ńňâŕđűöü çŕăđ. äűńę"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Íŕńňđîéęŕ X Window"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Óńňŕë˙âŕííĺ ńińňýěű"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Çŕęŕí÷ýííĺ ˘ńňŕë˙âŕíí˙"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ďŕěűëęŕ ŕäęđűöö˙ %s äë˙ çŕďińó: %s"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕë˙âŕíüí˙"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer (client)"
-msgstr "Ńĺňęŕâű ďđűíňýđ (socket)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Office"
-msgstr "äîáđŕ"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Gnome Workstation"
-msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "˛íńňđóěĺíňŕëüíű˙ ńđîäęł äë˙ Palm Pilot ł Visor"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Workstation"
-msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Îôłńíű˙ ďđŕăđŕěű: ďđŕöýńŕđű ńëîâࢠ(kword, abiword), ýëĺęňđîíű˙ ňŕáëłöű, "
-"ŕăë˙äŕëüíłęł pdf-ôŕéëŕ˘, ł ă.ä."
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Ŕ˘äű¸ńđîäęł: ďđŕéăđŕâŕëüíłęł mp3 ł midi, ěłęřŕđű ł ă.ä."
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "íłăł ł Howto ďŕ Linux ł Free Software"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "KDE Workstation"
-msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Ěóëüňűěĺäű˙ - âłäýŕ"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Íŕáîđ łíńňđóěĺíňࢠäë˙ ďîřňű, íŕâłíŕ˘, web'ó, ďĺđŕäŕ÷ű ôŕéëŕ˘, ł chat"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Tools to ease the configuration of your computer"
-msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Ěóëüňűěĺäű˙ - ăóę"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Óöłëłňű"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Documentation"
-msgstr "Ŕ˘ňýíňűôięŕöű˙"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Ęŕíńîëüíű˙ łíńňđóěĺíňŕëüíű˙ ńđîäęł"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet station"
-msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia station"
-msgstr "Ěóëüňűěĺäű˙ - ăóę"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "Íŕńňđîéęŕ"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Řěŕň ăđŕôł÷íűő ěýíŕäćýđࢠĎđŕöî˘íűő ńňŕëî˘(Gnome, IceWM)"
-
-#: ../../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:999
-msgid "Graphical Environment"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "˛íńňđóěĺíňŕëüíű˙ ńđîäęł ńňâŕđýíüí˙ CD"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Office Workstation"
-msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Server"
-msgstr "ńĺđâĺđ"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Ăđŕôł÷íű˙ ďđŕăđŕěű ňűďó The Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Áłáëł˙ňýęł ł ďđŕăđŕěű äë˙ đŕńďđŕöî˘ęł íŕ Ń ł Ń++"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer server"
-msgstr "Ńĺňęŕâű ďđűíňýđ (socket)"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Game station"
-msgstr "Ěóëüňűěĺäű˙ - ăóę"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Đýäŕęňŕđű ł ďđŕéăđŕâŕëüíłęł âłäýŕ"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Ěóëüňűěĺäű˙ - Ăđŕôłęŕ"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Çŕáŕ˘ë˙ëüíű˙ ďđŕăđŕěű: ŕđęŕäű, ńňđŕňýăłł ł ă.ä."
-
-#: ../../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:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Ŕđőłâŕňŕđű, ýěóë˙ňŕđű, ěŕíłňîđűíă"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Ďĺđńŕíŕëüíű˙ ôłíŕíńű"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Ăđŕôł÷íŕĺ ŕń˙đîäçĺ ńŕ çđó÷íűě äçĺë˙ âűęŕđűńňŕíí˙ íŕáîđŕě ďđűęëŕäŕíí˙˘ ł "
-"łíńňđóěĺíňŕëüíűő ńđîäęŕ˘"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet gateway"
-msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Đýäŕęňŕđű ł ďđŕéăđŕâŕëüíłęł ăóęó ł âłäýŕ"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "˛ířű˙ ăđŕôł÷íű˙ Ďđŕöî˘íű˙ ńňŕëű"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Đýäŕęňŕđű, ŕáŕëîíęł, ňýđěłíŕëű"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Ďđŕăđŕěű ęłđŕâŕíí˙ âŕřűěł ôłíŕíńŕěł, ňűďó gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Ěýíŕäćŕđ ŕńŕáłńňŕé łíôŕđěŕöűł"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Ěóëüňűěĺäű˙ - Ńňâŕđýííĺ CD"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Scientific Workstation"
-msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Ŕäě˙íiöü"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Í˙ěŕ"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Ŕääŕëĺíű ďđűíňýđ"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Âű íĺ ěîćŕöĺ çŕäŕöü îďöűi ěîäóëţ %s."
-
-#~ msgid "mount failed"
-#~ msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙"
-
-#~ msgid "Low"
-#~ msgstr "Ńëŕáű"
-
-#~ msgid "Medium"
-#~ msgstr "Ń˙đýäíi"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Ăýňű óçđîâĺíü á˙ńďĺęi ěŕĺ řýđŕă ďŕë˙ďřýíí˙˘, ó ďĺđřóţ ÷ŕđăó\n"
-#~ "ďŕâ˙ëi÷űëŕń˙ ęîëüęŕńöü ďđŕâĺđŕę i ďŕď˙đýäćŕíí˙˘."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Ěóëüňűěĺäű˙"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Ýęńďĺđň"
-
-#, fuzzy
-#~ msgid "Connect to Internet"
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Íŕ ˙ęi äűńę ďĺđŕíĺńöł?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Iíôŕđěŕöű˙"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache - ăýňŕ World Wide Web ńĺđâĺđ. ¨í âűęŕđűńňî˘çâŕĺöŕ äë˙ "
-#~ "ŕáńëóăî˘âŕíí˙\n"
-#~ "HTML ôŕéëࢠi CGI."
-
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) - ăýňŕ ńĺđâĺđ äŕěĺííűő iě¸íŕ˘, ˙ęi âűęŕđűńňî˘âŕĺööŕ äë˙\n"
-#~ "ďĺđŕęëŕäŕíí˙ iě¸í âóçëî˘ ó IP ŕäđŕńű."
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Âűőŕä"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Ŕ˘ňŕěŕíöiđŕâŕííĺ çěĺííűő íŕçŕďŕřâŕëüíłęŕ˘"
-
-#~ msgid "Active"
-#~ msgstr "Ŕęňű˘íű"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Íĺ"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Ďđűíňýđ ěŕäýëi \"%s\" çíîéäçĺíű íŕ "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Ëŕęŕëüíű ďđűíňýđ"
-
-#~ msgid "Printer Device"
-#~ msgstr "Ďîđň ďđűíňýđó"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mouse Systems"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "˛ířű˙"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ňűď ęëŕâi˙ňóđű."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Ňűď: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Íŕńňđîéęŕ X Window"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Ďîđň ďđűíňýđó"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Ŕäěĺíŕ"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Îę"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Ďîđň ěűřű"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "Root"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Ŕá˙đűöĺ ďŕćŕäŕíű ďŕěĺđ óńňŕë˙âŕíí˙"
-
-#~ msgid "Total size: "
-#~ msgstr "Ŕăóëüíű ďŕěĺđ: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Ďŕ÷ŕęŕéöĺ, ęŕëi ëŕńęŕ, "
-
-#~ msgid "Total time "
-#~ msgstr "Ŕăóëüíű ÷ŕń "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Âűęŕđűńňŕöü ińíóţ÷óţ íŕńňđîéęó äë˙ X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Äŕ ˙ęîăŕ ďîđňó äŕëó÷ŕíű âŕř ďđűíňýđ \n"
-#~ "(/dev/lp0 ýęâiâŕëĺíňíű LPT1:)?\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#, fuzzy
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Óâŕăŕ, ńĺňęŕâű ŕäŕďňŕđ ńęŕíôiăóđŕâŕíű.\n"
-#~ "Öi ćŕäŕĺöĺ ďĺđŕęŕíôiăóđŕâŕöü ˙ăî?"
-
-#~ msgid "New"
-#~ msgstr "Íîâű"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Çíiř÷űöü"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Íĺâűçíŕ÷ŕíŕńöü (%s), áóäçüöĺ äŕęëŕäíű˙\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (çěî˘÷ŕííĺ %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s. Óâ˙äçiöĺ `none' ďđű ŕäńóňíŕńöi) "
-
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Âű çăîäíű˙?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Ęŕëi âű íĺ âĺäŕĺöĺ äŕęëŕäíŕ, äűę çâű÷ŕéíűě âűáŕđŕě ç'˙˘ë˙ĺööŕ \"/dev/hda"
-#~ "\"\n"
-#~ "(ďĺđřŕńíű ěŕéńňŕđ IDE äűńę) öi \"/dev/sda\" (ďĺđřű SCSI äűńę)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Iě˙ çëó÷ýíí˙"
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Âű ďŕâłííű ďđűí˙öü óěîâű ëłöýíçłł, ęŕá ďđŕö˙ăíóöü óńňŕë˙âŕíüíĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęŕëł ëŕńęŕ, íŕöłńíłöĺ \"Ďđűí˙öü\", ęŕëł âű çăîäíű˙ ç óěîâŕěł ëłöýíçłł.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęŕëł ëŕńęŕ, íŕöłńíłöĺ \"Ŕäâĺđăíóöü\", ęŕëł âű íĺ çăîäíű˙ ç óěîâŕěł "
-#~ "ëłöĺíçłł.Óńňŕë˙âŕííĺ áóäçĺ ńęîí÷ŕíŕ\n"
-#~ "á˙ç çěĺíࢠâŕřŕé á˙ăó÷ŕé ęŕíôłăóđŕöűł."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Ŕá˙đűöĺ đŕńęëŕäęó ńâŕ¸é ęëŕâi˙ňóđű ç ďđűâĺäçĺíŕăŕ ńďińó"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Ęŕëł âű ćŕäŕĺöĺ ęŕá ďŕńë˙ ˘ńňŕë˙âŕíí˙ áűëł äŕńňóďíű łířű˙ ěîâű\n"
-#~ "(ŕęđŕě˙ ňîé, ˙ęóţ âű ˘ćî ŕáđŕëł íŕďŕ÷ŕňęó ˘ńňŕë˙âŕíí˙), ęŕëł "
-#~ "ëŕńęŕŕá˙đűöĺ\n"
-#~ "łő ç âűřýé ďđűâĺäçĺíŕăŕ ńďłńó. Ęŕëł âű ćŕäŕĺöĺ ŕáđŕöü óń¸ íŕöłńíłöĺ \"Óńĺ"
-#~ "\"."
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Ŕá˙đűöĺ: \n"
-#~ "\n"
-#~ " - Ďŕ âűáŕđó: Ăýňű đýćűě đýęŕěĺíäóĺööŕ ˘ ňűě âűďŕäęó, ęŕëi âű "
-#~ "ďđŕöŕâŕëi \n"
-#~ " đŕíĺé ç GNU/Linux, i çěîćŕöĺ ńŕěi âűáđŕöü íĺŕáőîäíű˙\n"
-#~ " ďŕęĺňű i ŕáńňŕë˙âŕííĺ äë˙ âŕřŕăŕ ęŕěď'ţňŕđó. Ăë˙äçiöĺ íićýé "
-#~ "ďŕäđŕá˙çíŕńöł.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ýęńďĺđň: Âűáŕđ ăýňŕăŕ đýćűěó ńâĺä÷űöü, řňî âű ńâŕáîäíŕ âŕëîäŕĺöĺ GNU/"
-#~ "Linux\n"
-#~ " i ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü âĺëüěi äýňŕë¸âŕĺ Ąńňŕë˙âŕííĺ. ßę i ˘ "
-#~ "âűďŕäęó \n"
-#~ " \"Ďŕ âűáŕđó\"âŕě ďŕňđýáíŕ áóäçĺ âűáđŕöü íĺŕáőîäíű˙ ďđŕăđŕěű i \n"
-#~ " ŕáńňŕë˙âŕííĺ âŕřŕăŕ ęŕěďóňŕđó.\n"
-#~ " Ęŕëi ëŕńęŕ, ÍĹ ÂŰÁIĐŔÉÖĹ ĂÝŇŰ ĐÝĆŰĚ, ĘŔËI ÍĹ ĄĎÝĄÍĹÍŰ, ŘŇÎ ĐÎÁIÖĹ "
-#~ "ĎĐŔÂIËÜÍŔ!"
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "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"
-#~ "˙ęł˙ ŕä ˙ăî çŕëĺćŕöü."
-
-#, fuzzy
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Ęŕëi âű ěŕĺöĺ ˘ńĺ CD äűńęi ńŕ ńďińŕ íićýé, íŕöińíiöĺ Îę.\n"
-#~ "Ęŕëi âű íĺ ěŕĺöĺ ŕíi âîäíŕăŕ ç ăýňűő CD äűńęŕ˘, íŕöińíiöĺ Ŕäě˙íiöü.\n"
-#~ "Ęŕëi íĺęŕňîđűő ç CD äűńęࢠíĺ ěŕĺöĺ, ŕäě˙íiöĺ iő âűäç˙ëĺííĺ i íŕöińíiöĺ "
-#~ "Îę."
-
-#~ 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 "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Ęŕëł âű ćŕäŕĺöĺ ďŕäęëţ÷űöü âŕř ęîěď'ţňŕđ äŕ Internet öł ËÂŃ, ęŕëł ëŕńęŕ,\n"
-#~ "ŕá˙đűöĺ ďđŕâłëüíóţ îďöűţ. Óęëţ÷űöĺ âŕřó ďđűëŕäó ďĺđŕä âűáŕđŕě ďđŕâłëüíŕé "
-#~ "îďöűł, DrakXçíîéäçĺ ăýňŕ\n"
-#~ "ŕ˘ňŕěŕňű÷íŕ\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęŕëł âŕě íĺ ďŕňđýáíŕ ďŕäęëţ÷ýííĺ äŕ Internet öł ËÂŃ, íŕöłńíłöĺ\n"
-#~ "\"Ŕäęëţ÷űöü ďŕäňđűěęó ńĺňęł\".\n"
-#~ "Ęŕëł âű ćŕäŕĺöĺ ŕäęŕíôłăóđŕâŕöü ńĺňęó ďŕńë˙ ˘ńňŕë˙âŕíí˙ öł âű "
-#~ "˘ćîńęîí÷űëł\n"
-#~ "˙ĺ ęŕíôłăóđŕâŕííĺ, íŕöłńíłöĺ \"Âűęŕíŕöü\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "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."
-
-#~ 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 "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Çŕđŕç âű ěîćŕöĺ ˘âĺńöł ďŕđŕěĺňđű ŕääŕëĺíŕăŕ ďŕäëţ÷ýíí˙.\n"
-#~ "Ęŕëł âű íĺ âĺäŕĺöĺ öł íĺ ˘ďý˘íĺíű řňî ňđýáŕ ˘âĺńöł, ńďűňŕéöĺń˙ ó "
-#~ "ńâŕéăî˛nternet\n"
-#~ "ďđŕâŕéäýđó. Ęŕëł âű íĺ ˘âîäçłöĺ łíôŕđěŕöűţ ŕá DNS ńĺđâĺđŕő, ˙íŕ áóäçĺ \n"
-#~ "ŕňđűěŕíŕ ďŕä ÷ŕń çëó÷ýíí˙ ç âŕřűě Internet-ďđŕâŕéäýđŕě."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Ęŕëł ˘ âŕń âîíęŕâű ěŕäýě, ęŕëł ëŕńęŕ, óęëţ÷űöĺ ˙ăî, ł ďîňűě DrakXçíîéçĺ "
-#~ "˙ăî ŕ˘ňŕěŕňű÷íŕ."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Ęŕëł ëŕńęŕ, óęëţ÷űöĺ ěŕäýě ł ŕá˙đűöĺ ďđŕâłëíű."
-
-#~ 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"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Ęŕëł âű íĺ óďý˘íĺíű, öł ç'˙˘ë˙ĺööŕ âűřýé ďđűâĺäçĺíŕ˙\n"
-#~ "łíôŕđěŕöű˙ ęŕđýęňíŕé öł âű íĺ âĺäŕĺöĺ ŕëüáî í˙˘ďý˘íĺíű˙ řňî ňđýáŕ óâĺńöł\n"
-#~ "ďđŕâčëüíŕ˙\n"
-#~ "łíôŕđěŕöű˙ ěîćŕ áűöü ŕňđűěŕíŕ ŕä âŕřŕăŕ ďđŕâŕéäýđó Internet. Ęŕëł âű íĺ\n"
-#~ "˘âîäçłöĺ łíôŕđěŕöűţ ŕá DNS, ăýňŕ˙ łíôŕđěŕöű˙ áóäçĺ ŕňđűěŕíŕ ŕä âŕřŕăŕ\n"
-#~ "ďđŕâŕéäýđó ďŕä ÷ŕń çëó÷ýíí˙."
-
-#, fuzzy
-#~ 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 ""
-#~ "Çŕđŕç ěîćíŕ ˘âĺńöi ďŕđŕěĺňđű çëó÷ýíí˙ ďđŕç ěŕäýě (dialup). Ęŕëi âű\n"
-#~ "íĺ âĺäŕĺöĺ, řňî ďŕňđýáíŕ ďińŕöü,\n"
-#~ "ďŕńďđŕáóéöĺ ŕňđűěŕöü äŕęëŕäíóţ iíôŕđěŕöűţ ˘ ńâŕéăî ďđŕâŕéäýđó Internet "
-#~ "(ISP)."
-
-#, 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 ""
-#~ "Ęŕëł íĺŕáőîäíŕ, âű ěŕćŕöĺ óâĺńöł łě˙ âŕřŕăŕ őŕńňŕ. Ęŕëł âű\n"
-#~ "íĺ âĺäŕĺöĺ öł íĺ ˘ďĺ˘íĺíű˙, řňî ňđýáŕ ˘âŕäçłöü. Ďŕęłíöĺ ďîëĺ ďóńňűě."
-
-#~ 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"
-#~ "íĺ âĺäŕĺöĺ öł íĺ ˘ďĺ˘íĺíű˙, řňî ňđýáŕ ˘âŕäçłöü. Ďŕęłíöĺ ďîëĺ ďóńňűě."
-
-#~ 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)."
-
-#~ 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-ďđŕâŕéäýđó."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Çŕđŕç âű ěîćŕöĺ ŕáđŕöü ÷ŕńŕâű ďî˙ń çăîäíŕ ç ěĺńöŕě ćűőŕđńňâŕ."
-
-#~ 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)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\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"
-#~ "ŕďĺđŕöűéíŕé ńłńňýěĺ Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR - ńňŕđŕ˙ ńłńňýěŕ äđóęó ˘ ďŕď˙đýäíłő âĺđńł˙ő äűńňđűáţňűâóMandrake "
-#~ "Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęŕëł âű íĺ ěŕĺöĺ ďđűíňýđó, íŕöłńíłöĺ \"Í˙ěŕ\"."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "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"
-#~ "\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " 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"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " 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"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "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."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Âű ďŕâłííű ŕáđŕöü âŕř ďđűíňŕđ ńŕ ńďłńó."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "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"
-#~ "íŕ íŕńňóďíűě ęđîęó ł çüě˙íłöü ˙ĺ."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Çŕđŕç âű ěîćŕöĺ ńňâŕđűöü ŕäçií ŕëüáî íĺęŕëüęi \"çâű÷ŕéíűő\" óëięîâűő "
-#~ "çŕďińŕ˘\n"
-#~ "ęŕđűńňŕëüíięŕ˘. Äë˙ ęîćíŕăŕ ęŕđűńňŕëüíięŕ ěŕă÷űěŕ ńňâŕđűöü ďŕ ŕäíŕěó öi "
-#~ "íĺęŕëüęi\n"
-#~ "˘ëięîâűő çŕďińŕ˘. Äë˙ ęîćíŕăŕ ˘ëięîâŕăŕ çŕďińó ńňâŕđŕţööŕ ˘ëŕńíű˙ "
-#~ "íŕńňđîéęi\n"
-#~ "(ăđŕôi÷íŕĺ ŕńń˙đîääçĺ, íŕńňđîéęi ďđŕăđŕě,...) i ˘ëŕńíű \"őŕňíi ęŕňŕëŕă"
-#~ "\",\n"
-#~ "ó ˙ęiě çŕőî˘âŕţööŕ ăýňű˙ íŕńňđîéęi.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ďŕ-ďĺđřŕĺ, ńňâŕđűöĺ ˘âŕőîä äë˙ ń˙áĺ! Íŕâŕň ęŕëi âű áóäçĺöĺ ŕäçiíűě\n"
-#~ "ęŕđűńňŕëüíięŕě ăýňŕé ěŕřűíű, íĺ đýęŕěĺíäóĺööŕ óâŕőîäçiöü ç ďđŕâŕěi\n"
-#~ "ńóďĺđęŕđűńňŕëüíięó äë˙ řňîäç¸ííŕé ďđŕöű: ăýňŕ çŕíŕäňŕ â˙ëięŕ˙ ďŕăđîçŕ\n"
-#~ "á˙ńďĺęi. Ěŕă÷űěŕ çíiř÷űöü ńińňýěó çâű÷ŕéíŕé ďŕěűëęŕé äđóęó.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ňŕěó ˘âŕőîäçiöü ó ńińňýěó íĺŕáőîäíŕ ç ďđŕâŕěi çâű÷ŕéíŕăŕ ęŕđűńňŕëüíięó,\n"
-#~ "˙ęîăŕ âű çŕđŕç i ńňâîđűöĺ, ŕ ˘âŕőîäçiöü ç ďđŕâŕěi root íĺŕáőîäíŕ ňîëüęi\n"
-#~ "ç ěýňŕěi ŕäěiíińňđűđŕâŕíí˙ i ŕáńëóăî˘âŕíí˙ ńińňýěű."
-
-#~ 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"
-#~ "ńłňýěű áĺç ĺéíŕăŕ ďĺđŕ˘ńňŕë˙âŕíüí˙."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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 ""
-#~ "Ŕńíî˘íű˙ ďŕđŕěĺňđű 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 óńňŕë˙âŕíŕ íŕ íîëü."
-
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 - ăýňű çŕăđóç÷űę äë˙ SPARC. ¨í ěîćŕ çŕăđóçiöü äđóăóţ\n"
-#~ "GNU/Linux öi ëţáóţ iířóţ ŕďĺđŕöűéíóţ ńińňýěó, óńňŕë˙âŕíóţ íŕ ęŕěďóňŕđű.\n"
-#~ "Çâű÷ŕéíŕ, ăýňű˙ iířű˙ ŕďĺđŕöűéíű˙ ńińňýěű ęŕđýęňíŕ âűçíŕ÷ŕţööŕ i\n"
-#~ "˘ńňŕ븢âŕţööŕ. Ęŕëi ăýňŕ íĺ ŕňđűěŕëŕń˙, ňî âű ěîćŕöĺ äŕäŕöü ëţáű çŕďiń\n"
-#~ "ńŕěŕńňîéíŕ. Áóäçüöĺ ˘ďý˘íĺíű, řňî âű çŕäŕëi ęŕđýęňíű˙ ďŕđŕěĺňđű.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ňŕęńŕěŕ âű ěîćŕöĺ ďŕćŕäŕöü i íĺ äŕäâŕöü iířű˙ ŕďĺđŕöűéíű˙ ńińňýěű.\n"
-#~ "Ó ňŕęiě âűďŕäęó ďŕňđýáíŕ âűäŕëiöü ŕäďŕâĺäíű˙ çŕďińű. Ŕëĺ ć ňŕäű âŕě \n"
-#~ "áóäçĺ ďŕňđýáíű iíńňŕë˙öűéíű äűńę, ęŕá çŕăđóçiööŕ."
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Ŕńíî˘íű˙ ďŕđŕěĺňđű 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 óńňŕë˙âŕíŕ íŕ íîëü."
-
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Çŕđŕç ěŕă÷űěŕ íŕńňđîiöü X Window System, ˙ęŕ˙ ç'˙˘ë˙ĺööŕ\n"
-#~ "ŕńíîâŕé Linux GUI (Ăđŕôi÷íű Iíňýđôĺéń Ęŕđűńňŕëüíięŕ). Äçĺë˙ ăýňŕăŕ\n"
-#~ "ďŕňđýáíŕ íŕńňđîiöü âiäýŕęŕđňó i ěŕíiňîđ. Áîëüřŕ˙ ÷ŕńňęŕ ăýňűő ęđîęŕ˘\n"
-#~ "ŕ˘ňŕěŕňűçŕâŕíŕ, ňŕěó âŕřŕ ďđŕöŕ ěîćŕ çŕęëţ÷ŕööŕ ˘ ďđŕâĺđöű\n"
-#~ "âűíięࢠíŕńňđîéęi i ďŕäöâĺđäćŕííţ ŕáđŕíűő ďŕđŕěĺňđࢠ:)\n"
-#~ "\n"
-#~ "Ęŕëi ęŕíôiăóđŕâŕííĺ çŕâĺđřűööŕ, áóäçĺ çŕďóř÷ŕíű X (ęŕëi âű íĺ\n"
-#~ "ďŕďđîńiöĺ DrakX íĺ đŕáiöü ăýňŕăŕ), ęŕá âű çěŕăëi ďđŕâĺđűöü, öi çăîäíű\n"
-#~ "âű ç íŕńňđîéęŕěi. Ęŕëi íĺ, ňî çŕ˘ń¸äű ěŕă÷űěŕ â˙đíóööŕ i çě˙í˙öü iő\n"
-#~ "ęîëüęi âŕě ďŕňđýáíŕ."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Ęŕëi íĺřňŕ íĺ ňŕę ç íŕńňđîéęŕé X, ńęŕđűńňŕéöĺ ăýňű˙ ďŕđŕěĺňđű äë˙ \n"
-#~ "ęŕđýęňíŕé íŕńňđîéęi X Window System."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Ęŕëi âű ŕääŕĺöĺ ďĺđŕâŕăó ăđŕôi÷íŕěó ˘âŕőîäó (login), ŕá˙đűöĺ \"Ňŕę\". "
-#~ "Iíŕęř - \n"
-#~ "\"Íĺ\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Ńińňýěŕ çáiđŕĺööŕ ďĺđŕçŕăđóçiööŕ.\n"
-#~ "\n"
-#~ "Ďŕńë˙ ďĺđŕçŕăđóçęi, âŕřŕ íîâŕ˙ ńińňýěŕ Mandrake Linux çŕăđóçiööŕ "
-#~ "ŕ˘ňŕěŕňű÷íŕ.\n"
-#~ "Ęŕëi âű ćŕäŕĺöĺ ďĺđŕçŕăđóçiöŕ ďŕä iířóţ ŕďĺđŕöűéíóţ ńińňýěó, ÷űňŕéöĺ \n"
-#~ "äŕäŕňęîâű˙ iíńňđóęöűi."
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Çŕďiń /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Ôŕđěŕňŕâŕöü óń¸"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Ďŕńë˙ ôŕđěŕňŕâŕíí˙ ˘ńiő đŕçäçĺëŕ˘,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "óńĺ äŕäçĺíű˙ ˘ ăýňűő đŕçäçĺëŕő áóäóöü ńňđŕ÷ŕíű"
-
-#~ msgid "Reload"
-#~ msgstr "Ďĺđŕçŕăđóçiöü"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Öi ćŕäŕĺöĺ âű ńňâŕđűöü ŕ˘ňŕ˘ńňŕë¸âŕ÷íű ôëîďi-äűńę äë˙ đĺďëięŕöűi linux?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Íŕńňđîéęŕ ADSL"
-
-#, fuzzy
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Ŕääŕëĺíű CUPS ńĺđâĺđ íĺ ďŕňđŕáóĺ ŕä Âŕń íŕńňđîéęł ďđűíňýđó\n"
-#~ "íŕ ăýňŕé ěŕřűíĺ, ¸í áóäçĺ çíîéäçĺíű ŕ˘ňŕěŕňű÷íŕ.\n"
-#~ "Ęŕëł Âű íĺ ˘ďý˘íĺíű, ŕá˙đűöĺ \"Ŕääŕëĺíű ńĺđâĺđ CUPS\"."
-
-#~ msgid "Remote queue"
-#~ msgstr "Ŕääŕëĺíŕ˙ ÷ŕđăŕ äđóęó"
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Ŕääŕëĺíŕ˙ ÷ŕđăŕ äđóęó"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Iě˙ äŕěĺíó"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Iě˙ äđóęŕđęi"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-
-#, fuzzy
-#~ msgid "Profile "
-#~ msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Iě˙ çëó÷ýíí˙"
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Iě˙ çëó÷ýíí˙"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Ďŕ äŕěŕ˘ëĺííţ"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Íĺ ŕňđűěëłâŕĺööŕ ŕďđŕöŕâŕöü çěĺńň ôŕéëŕ íŕńňđîĺę."
-
-#~ msgid "Disable network"
-#~ msgstr "Çđŕáiöü íĺŕęňű˘íűě ńĺňęŕâŕĺ çëó÷ýííĺ"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Çđŕáiöü íĺŕęňű˘íűě ńĺňęŕâŕĺ çëó÷ýííĺ"
-
-#~ 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"
-#~ "łířű äđŕéâĺđ."
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Ďîđň ěűřű"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "Âű ěîćŕöĺ âűçíŕ÷űöü íŕ˘ďđîńň URI ęŕá äŕëó÷űööŕ äŕ äđóęŕđęi ç CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Ňŕę, íŕäđóęŕâŕöü ńňŕđîíęó ňýęńňó ASCII"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Ňŕę, íŕäđóęŕâŕöü ńňŕđîíęó ňýęńňó PostScript"
-
-#~ msgid "Paper Size"
-#~ msgstr "Ďŕěĺđű ďŕďĺđű"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Âűřňóđőâŕöü ďŕďĺđó ďŕńë˙ äđóęó?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Ďŕđŕěĺňđű äđŕéâĺđó Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "Ďŕđŕěĺňđű ăëűáiíi ęîëĺđó"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Äđóęŕâŕöü ňýęńň ˙ę PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Ęŕđýęňŕâŕöü ďđűńňóďęŕâű ňýęńň?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Íóěŕđ ńňŕđîíęi ŕä ęîëüęŕńöi íŕäđóęŕâŕíűő ńňŕđîíŕę"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Ďđŕâŕĺ/ëĺâŕĺ ďŕëi ˘ ęđîďęŕő (1/72 äçţéěŕ)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Âĺđőí˙ĺ/Íićí˙ĺ ďŕëi ˘ ęđîďęŕő (1/72 äçţéěŕ)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Äŕäŕňęîâű˙ îďöűi GhostScript"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Äŕäŕňęîâű˙ ďŕđŕěĺňđű ňýęńňó"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Ŕäâŕđîňíű ďŕđŕäŕę ńňŕđîíŕę"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ç ŕääŕëĺíűě ďđűíňýđŕě"
-
-#~ 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 ""
-#~ "Ęîćíŕ˙ ÷ŕđăŕ äđóęó, ó ˙ęóţ ŕäďđŕ˘ë˙ţööŕ çŕäŕííi äë˙ äđóęó, ďŕňđŕáóĺ "
-#~ "ďŕçíŕ÷ýíí˙ iě˙ (çâű÷ŕéíŕ lp). Äđóăi˙ ďŕđŕěĺňđű, ňŕęi˙ ˙ę ŕďińŕííĺ "
-#~ "äđóęŕđęi öi\n"
-#~ " ˙ăî đŕçěĺđęŕâŕííĺ, ěîăóöü áűöü ďŕçíŕ÷ŕíű. ßęîĺ iě˙ äŕ äđŕęóđęi âű "
-#~ "áóäçĺöĺ\n"
-#~ "ńęŕđűńňî˘âŕöü i ˙ę ăýňŕ˙ äđóęŕđęŕ äŕëó÷ŕĺööŕ?"
-
-#~ 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 ""
-#~ "Ęîćíŕ˙ ÷ŕđăŕ äđóęó, ó ˙ęóţ ŕäďđŕ˘ë˙ţööŕ çŕäŕííi äë˙ äđóęó, ďŕňđŕáóĺ "
-#~ "ďŕçíŕ÷ýíí˙ iě˙ (çâű÷ŕéíŕ lp) i ńďŕëó÷ŕíŕăŕ ç ¸ţ ęŕňŕëîăó ńďóëiíăó. "
-#~ "Ďŕçíŕ÷öĺ iě˙ i ęŕňŕëîă äë˙ ÷ŕđăi."
-
-#~ msgid "Name of queue"
-#~ msgstr "Iě˙ ÷ŕđăi äđóęó"
-
-#~ msgid "Spool directory"
-#~ msgstr "Äűđýęňîđű˙ ńďóëiíăó"
-
-#, fuzzy
-#~ msgid "Disable"
-#~ msgstr "Ňŕáëiöŕ"
-
-#, fuzzy
-#~ msgid "Enable"
-#~ msgstr "Ňŕáëiöŕ"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Ęŕá óçěŕöíiöü á˙ńďĺęó ńińňýěű, íĺŕáőîäíŕ ŕáđŕöü \"Ńęŕđűńňŕöü ńőŕâŕíű ôŕéë"
-#~ "\"\n"
-#~ "i \"Ńęŕđűńňŕöü ďŕđîëi MD5\"."
-
-#~ 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íińňđŕňŕđŕ ńĺňęi."
-
-#~ msgid "yellow pages"
-#~ msgstr "ćî˘ňű˙ ńňŕđîíęi"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Íŕńňđîéęŕ ADSL"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "DNS 1 ďđŕâŕéäŕđó"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "DNS 2 ďđŕâŕéäŕđó"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Ŕá˙đűöĺ ôŕéë"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr "Íŕńňđîéęŕ IDE"
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Íŕńňđîéęŕ: Äŕäŕöü ęđűíiöó"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr " Ăýňű ďóńęŕâű ńęđűďň ŕäíŕ˘ë˙ĺ ˘ńĺ ěîäóëi äë˙ usb ěűřű."
-
-#, fuzzy
-#~ msgid "Boot style configuration"
-#~ msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-
-#, fuzzy
-#~ 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 ""
-#~ "Âŕř ęŕěď'ţňŕđ ěîćŕ áűöü ńęŕíôłăóđŕâŕíű íŕ ńóěĺńíŕĺ âűęŕđűńňŕííĺ\n"
-#~ " ˛íňýđíýňó (Internet Connection Sharing)?\n"
-#~ "\n"
-#~ "Çŕ˘âŕăŕ: âŕě ďŕňđýáíű ńĺňęŕâű ŕäŕďňŕđ äë˙ ďŕäęëţ÷ýíí˙ äŕ ËÂŃ.\n"
-#~ "\n"
-#~ "Âű ćŕäŕĺöĺ óńňŕë˙âŕöü ńóěĺńíű äîńňóď äŕ Internet?"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Ďđŕâĺđęŕ çŕëĺćíŕńö˙˘"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Íŕńňđîéęŕ LILO/GRUB"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Ńňâŕđűöü çŕăđ. äűńę"
-
-#~ msgid "Choice"
-#~ msgstr "Âűáŕđ"
-
-#, fuzzy
-#~ msgid "gMonitor"
-#~ msgstr "Ěŕíiňîđ"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Đîçíŕĺ"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Äŕäŕňęîâű˙ ďűňŕííi"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Íĺ ěŕăó âűęŕđűńňî˘âŕöü ěŕíöiđŕâŕííĺ ďđű âűńîęiě óçđî˘íi á˙ńďĺęi"
-
-#~ 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 ďŕď˙đýäćŕíű˙."
-
-#~ 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')."
-
-#, fuzzy
-#~ msgid "Actions"
-#~ msgstr "Đŕçěĺđęŕâŕííĺ"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Ďĺđřű ńĺđâĺđ DNS"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Äđóăi ńĺđâĺđ DNS:"
-
-#, fuzzy
-#~ msgid "using module"
-#~ msgstr "Đýćűě çëó÷ýíí˙"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%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 ""
-#~ "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ííű áűöü ŕäôŕđěŕňŕâŕíű äë˙ âűęŕđűńňŕíí˙\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"
-#~ "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?"
-
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux 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 ""
-#~ "Çŕđŕç ěîćíŕ âűçíŕ÷űöü, ˙ęi˙ đŕçäçĺëű âűęŕđűńňî˘âŕöü äë˙ ˘ńňŕë˙âŕíí˙\n"
-#~ "âŕřŕé ńińňýěű Mandrake Linux, ęŕëi ˙íű ˘ćî áűëi çŕäŕäçĺíű (ďđű "
-#~ "ďŕď˙đýäíłě\n"
-#~ "˘ńňŕë˙âŕííł Linux ŕëüáî iířŕé ďđŕöýäóđŕé đŕçáiöö˙). Ó iířűő âűďŕäęŕő\n"
-#~ "đŕçäçĺëű ćîđńňęŕăŕ äűńęó ďŕâiííű áűöü ďŕçíŕ÷ŕíű. Ăýňŕ ŕďĺđŕöű˙ ńęëŕäŕĺööŕ "
-#~ "ç\n"
-#~ "ëŕăi÷íŕăŕ đŕçáiöö˙ äűńęŕâŕé ďđŕńňîđű ęŕěď'ţňýđó íŕ íĺęŕëüęi\n"
-#~ "âîáëŕńöĺé âűęŕđűńňŕíí˙.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęŕëi âű ďëŕíóĺöĺ ńňâŕđŕöü íîâű˙ đŕçäçĺëű, ňŕäű ěîćŕöĺ ńęŕđűńňŕöü đýćűě\n"
-#~ "\"Ŕ˘ňŕ đŕçě˙ř÷ýííĺ\", ęŕá ŕ˘ňŕěŕňű÷íŕ ńňâŕđűöü đŕçäçĺëű GNU/Linux. Âű "
-#~ "ěîćŕöĺ\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"
-#~ "\n"
-#~ "\n"
-#~ "Ďŕęîëüęi âűíięi ăýňŕăŕ ďđŕöýńó çâű÷ŕéíŕ íĺçâŕđîňíű˙, đŕçáiöö¸ íŕ "
-#~ "đŕçäçĺëű\n"
-#~ "ěîćŕ íŕďŕëîőŕöü íŕâi÷ęŕ. DiskDrake ńďđŕř÷ŕĺ ăýňű ďđŕöýń, ňŕěó íŕďđóćŕííĺ\n"
-#~ "ďŕâiííŕ çíiěŕööŕ. Ďŕăë˙äçiöĺ äŕęóěĺíňŕöűţ i ďŕäđűőňóéöĺń˙ ŕäđŕçó.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ňŕęńŕěŕ ëţáóţ ŕďĺđŕöűţ íŕä đŕçäçĺëŕě âű ěîćŕöĺ âűęŕíŕöŕü ç äŕďŕěîăŕé\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"
-
-#~ 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 "Category"
-#~ msgstr "Ęŕňýăîđű˙"
-
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ "Ďđŕăđŕěű Chat (IRC or instant messaging), ňűďó xchat, licq, gaim ł ă.ä."
-
-#~ msgid "Checking 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 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 ""
-#~ "Ŕá˙đűöĺ \"Óńňŕë˙âŕöü\", ęŕë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 ""
-#~ "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 Mandrake Linux "
-#~ "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"
-#~ 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"
-#~ "\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 ""
-#~ "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 í˙ěŕ ˘ńňŕë˙âŕíűő đŕíĺé âĺđńł˙˘ Linux,\n"
-#~ "ŕëüáî ęŕë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 "Collapse all"
-#~ msgstr "Çăŕđíóöü óń¸"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Ńđîäęł ęŕěóíłęŕöű˙˘"
-
-#~ msgid "Configure LAN"
-#~ msgstr "Íŕńňđîéęŕ ńĺňęi (ËÂŃ)"
-
-#~ 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 "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"
-#~ "\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 ""
-#~ "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 "ECI modem"
-#~ msgstr "Ěŕäýě ECI"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Óęëţ÷ýííĺ num lock ďđű ńňŕđöĺ"
-
-#~ 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 ""
-#~ "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"
-#~ "\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"
-#~ "\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."
-#~ msgstr ""
-#~ "Linux ěîćŕ ďđŕöŕâŕöü ńŕ řěŕňëięiěi ňűďŕěi äđóęŕâŕëüíűő ďđűëŕäŕ˘. Ęîćíű ç "
-#~ "ăýňűő\n"
-#~ "ňűďࢠďŕňđŕáóĺ đîçíŕăŕ ˘ńňŕë˙âŕíí˙.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęŕëi âŕřŕ ďđűëŕäŕ äë˙ äđóęŕâŕíí˙ äŕëó÷ŕíŕ íĺďŕńđýäíŕ äŕ ăýňŕăŕ "
-#~ "ęŕěď'ţňýđó,\n"
-#~ "ŕá˙đűöĺ \"Ëŕęŕëüíű ďđűíňýđ\". Âŕě áóäçĺ ďŕňđýáíŕ âűçíŕ÷űöü, äŕ ˙ęîăŕ "
-#~ "ďîđňó\n"
-#~ "äŕëó÷ŕíŕ ďđűëŕäŕ i âűáđŕöü ďŕäűőîäç˙÷ű ôiëüňđ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęŕëi âű ćŕäŕĺöĺ ŕňđűěŕöü äîńňóď äŕ ďđűíňýđó, ˙ęi çíŕőîäçiööŕ íŕ "
-#~ "ŕääŕëĺíŕé\n"
-#~ "ěŕřűíĺ Unix, íĺŕáőîäíŕ âűáđŕöü \"Ŕääŕëĺíŕ˙ ÷ŕđăŕ lpd\". Ęŕá ďđűěóńiöü "
-#~ "˙ăî\n"
-#~ "ďđŕöŕâŕöü, iě˙ i ďŕđîëü íĺ ďŕňđýáíű, ŕëĺ íĺŕáőîäíŕ âĺäŕöü iě˙ ÷ŕđăi "
-#~ "äđóęó\n"
-#~ "íŕ ăýňŕě ńĺđâĺđű.\n"
-#~ "\n"
-#~ "\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íôŕđěŕöű˙ ŕá ďđŕöîóíŕé ăđóďĺ."
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (ďŕńë˙äî˘íŕ˙)"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Í˙ěĺöęi (1TR6)"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Äŕéöĺ iě˙ (íŕďđ.: `extra', `commercial')"
-
-#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr ""
-#~ "Áóäçĺ ˘ńňŕë˙âŕíŕ %d Má. Ěîćíŕ ŕáđŕöü áîëüř ďđŕăđŕěࢠäë˙ ˘ńňŕë˙âŕíí˙."
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Áóäçĺě âűäŕë˙öü ďóíęň %s"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "SILO çě˙ř÷ŕĺ íŕńňóďíű˙ ďóíęňű.\n"
-#~ "Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
-
-#~ 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?"
-#~ msgstr ""
-#~ "Ěîćíŕ ďŕńďđŕáŕâŕöü çíŕéńöi äŕńňóďíű˙ ďŕěĺđű ýęđŕíó (íŕďđ.: 800x600).\n"
-#~ "Ó âĺëüěi đýäęiě âűďŕäęó ăýňŕ ěîćŕ ďđűâĺńöi äŕ ńďűíĺíí˙ ęŕěď'ţňŕđó .\n"
-#~ "Ćŕäŕĺöĺ ďŕńďđŕáŕâŕöü?"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Çíŕéřëi ISDN ęŕđňó:\n"
-
-#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to "
-#~ "internet."
-#~ msgstr ""
-#~ "Íĺŕáőîäíŕ ŕäęŕíôiăóđŕâŕöü âŕřó ńĺňęŕâóţ ęŕđňó, ęŕá ěŕă÷űěŕ áűëî äŕëó÷űööŕ "
-#~ "äŕ Iíňýđíýňó."
-
-#~ 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"
-#~ "\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"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Ęŕëi DrakX ďđŕâiëüíŕ çíŕéřî˘ âŕřó ěűř, ďđîńňŕ âűá˙đűöĺ ç ěĺíţ\n"
-#~ "iířű ďóíęň. Ó ďđîöiëĺăëűě âűďŕäęó ŕá˙đűöĺ ďŕäűőîäç˙÷ű âŕđű˙íň\n"
-#~ "äđŕéâĺđó ěűřű ńŕ ńďińó âűřýé.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ó âűďŕäęó ěűřű, ˙ęŕ˙ äŕëó÷ŕíŕ äŕ ďŕńë˙äî˘íŕăŕ ďîđňó, âŕě ďŕňđŕáóĺööŕ "
-#~ "ďŕâĺäŕěiöü\n"
-#~ "DrakX ďđŕâiëüíű íóěŕđ ďŕńë˙äî˘íŕăŕ ďîđňó, äŕ ˙ęîăŕ ˙íŕ äŕëó÷ŕíŕ."
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ "Ęŕëi âŕř ADSL ěŕäýě ŕäíŕ ç ěŕäýë˙˘ Alcatel, ďŕçíŕ÷öĺ Alcatel. Ó iířűě "
-#~ "âűďŕäęó - ECI."
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "ßęŕ˙ ęđŕiíŕ âŕřŕăŕ đŕçě˙ř÷ýíí˙?"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Óńňŕë˙âŕííĺ/Âűđŕňŕâŕííĺ"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "Óńňŕë˙âŕííĺ SILO íĺ ŕňđűěŕëŕń˙. Óçíięëŕ íŕńňóďíŕ˙ ďŕěűëęŕ:"
-
-#~ msgid "Installed packages"
-#~ msgstr "Óńňŕë˙âŕíű˙ ďŕęĺňű"
-
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "Íĺŕáőîäíŕ ďĺđŕçŕďóńöiöü óńňŕë˙âŕííĺ i çŕăđóçiööŕ ç äűńęĺňű"
-
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "Íĺŕáőîäíŕ ďĺđŕçŕďóńöiöü óńňŕë˙âŕííĺ ç íîâűě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 "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking 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 "Linear (needed for some SCSI drives)"
-#~ msgstr "Ëiíĺéíŕ (íĺŕáőîäíŕ äë˙ íĺęŕňîđűő ŕäŕďňýđࢠSCSI)"
-
-#~ 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 "Local LAN"
-#~ msgstr "Ëŕęŕëüíŕ˙ ńĺňęŕ"
-
-#~ 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 "Logitech MouseMan/FirstMouse (serial)"
-#~ msgstr "Logitech MouseMan/FirstMouse (ďŕńë˙äî˘íŕ˙)"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft Bus Mouse"
-
-#~ msgid "Microsoft IntelliMouse (serial)"
-#~ msgstr "Microsoft IntelliMouse (ďŕńë˙äî˘íŕ˙)"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A ŕëüáî âűřĺé (ďŕńë˙äî˘íŕ˙)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Microsoft ńóě˙ńöiěŕ˙ (ďŕńë˙äî˘íŕ˙)"
-
-#~ msgid "Move your wheel!"
-#~ 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 valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "Ďŕäűőîäç˙÷ű˙ đýćűěű íĺ çíîéäçĺíű.\n"
-#~ "Ďŕńďđŕáóéöĺ âűáđŕöü iířóţ âiäýŕęŕđňó öi ěŕíiňîđ"
-
-#~ 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 íĺ âĺäŕĺöĺ, ďŕçíŕ÷öĺ eth0.\n"
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Ďđŕäńňŕ˘öĺ íŕńňóďíóţ iíôŕđěŕöűţ"
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Ďĺđŕęŕíôiăóđŕâŕöü ëŕęŕëüíóţ ńĺňęó"
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Rescue"
-#~ msgstr "Âűđŕňŕâŕííĺ"
-
-#~ msgid "SILO main options"
-#~ msgstr "Ăŕëî˘íű˙ îďöűi SILO"
-
-#~ msgid "Sciences"
-#~ msgstr "Íŕâóęîâŕĺ"
-
-#~ msgid "Search"
-#~ msgstr "Ďîřóę"
-
-#~ msgid "Searching root partition."
-#~ 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 "Ďŕęŕçŕöü ěĺíĺé"
-
-#~ msgid "Show more"
-#~ msgstr "Ďŕęŕçŕöü áîëĺé"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Ďŕęŕçŕöü óńĺ ëińňű"
-
-#~ msgid "Shutting down"
-#~ msgstr "Âűęëţ÷ýííĺ ęŕěď'ţňýđó"
-
-#~ msgid "Size: %d MB"
-#~ msgstr "Ďŕěĺđ: %d MB"
-
-#~ msgid "Size: %d MB\n"
-#~ msgstr "Ďŕěĺđ: %d MB\n"
-
-#~ msgid "Size: %s MB"
-#~ msgstr "Ďŕěĺđ: %s Má"
-
-#~ msgid "Slovakian"
-#~ msgstr "Ńëŕâŕöęi"
-
-#~ msgid "Small(%dMB)"
-#~ msgstr "Ěŕëű (%dMá)"
-
-#~ msgid "Socket"
-#~ msgstr "Ńîęĺň"
-
-#~ msgid "Sort by"
-#~ msgstr "Óďŕđŕäęŕâŕöü ďŕ"
-
-#~ msgid "Take over the hard drive"
-#~ msgstr "Âűęŕđűńňî˘âŕöü óńţ äűńęŕâóţ ďđŕńňîđó"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ 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 "This label is already in use"
-#~ 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 Mandrake Linux 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"
-#~ "Ďđű ˘ńňŕë˙âŕííł Mandrake Linux íŕ ęŕěď'ţňýđ, ˙ę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 ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "×ŕń (ń˙ę) íĺŕęňű˘íŕńöi, ďŕńë˙ ˙ęîăŕ\n"
-#~ "âĺřŕöü ńëóőŕ˘ęó. (Ďŕęiíüöĺ ďóńňîĺ, ęŕá ŕäě˙íiöü)"
-
-#~ 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 "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 "Try to find PCI devices?"
-#~ msgstr "Ďŕńďđŕáŕâŕöü çíŕéńöi PCI ďđűëŕäű?"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Ďŕńďđŕáŕâŕöü çíŕéńöi ęŕđňű PCMCIA?"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Ďŕńďđŕáŕâŕöü çíŕéńöi ěŕäýě?"
-
-#~ msgid "URI for Local printer"
-#~ msgstr "URI äë˙ ëŕęŕëüíŕăŕ ďđűíňýđó"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL ęŕňŕëîăŕ, ˙ęi çě˙ř÷ŕĺ RPM"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB Ěűř (3 ęíîďęi öi áîëĺé)"
-
-#~ msgid "Update location"
-#~ msgstr "Çě˙íiöü ęđűíiöó"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Ŕäíŕ˘ëĺííĺ áŕçű ďŕęĺňࢠRPM"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Âűęŕđűńňî˘âŕöü ďŕđîëi MD5"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Âűęŕđűńňî˘âŕöü DiskDrake"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Âűęŕđűńňî˘âŕöü öĺí˙âű ôŕéë"
-
-#~ msgid "User name:"
-#~ msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-
-#~ 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:)?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Řňî âű ćŕäŕĺöĺ çíŕéńöł?"
-
-#~ msgid "What do you wish to do?"
-#~ msgstr "Řňî âű őî÷ŕöĺ çđŕáiöü?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "ßęi ňűď âŕřŕé ěűřű?"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "ßęi ňűď âŕřŕé ęëŕâi˙ňóđű?"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "Äçĺë˙ ÷ŕăî Âű áóäçĺöĺ âűęŕđűńňî˘âŕöü ńłńňýěó?"
-
-#~ msgid "What usage do you want?"
-#~ msgstr "ßęîĺ âűęŕđűńňŕííĺ ŕáiđŕĺöĺ?"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "ßęi ďŕ÷ŕňęîâű çŕăđóç÷űę âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "ßęi ôŕéë âű řóęŕĺöĺ?"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "ßęi˙ ďŕęĺňű řóęŕĺě"
-
-#~ 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"
-#~ "\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 ""
-#~ "Çŕđŕç ěîćíŕ ŕáđŕöü ďŕęĺňű ďđŕăđŕě, ˙ęi˙ âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ďŕ-ďĺđřŕĺ, âű ěîćŕöĺ ŕáđŕöü ăđóďó ďŕęĺňࢠęŕá óńňŕë˙âŕöü öi ŕáíŕâiöü. "
-#~ "Ďŕńë˙\n"
-#~ "âű ěîćŕöĺ ŕäçíŕ÷űöü áîëüř ďŕęĺňࢠó ŕäďŕâĺäíŕńöi ç ˙ăóëüíűě ďŕěĺđŕě, ˙ęi\n"
-#~ "âű ćŕäŕĺöĺ ŕáđŕöü.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęŕëi âű ďđŕöóĺöĺ ˘ đýćűěĺ ýęńďĺđňó, ňŕäű ďŕęĺňű ěîćíŕ ŕáiđŕöü "
-#~ "iíäűâiäóŕëüíŕ.\n"
-#~ "Ěŕéöĺ íŕ ˘âŕçĺ, řňî íĺęŕňîđű˙ ďŕęĺňű ďŕňđŕáóţöü óńňŕë˙âŕíí˙ iířűő "
-#~ "ďŕęĺňŕ˘.\n"
-#~ "Ăýňŕ çŕâĺööŕ çŕëĺćíŕńööţ ďŕęĺňŕ˘. Ďŕęĺňű, ˙ęi˙ âű ŕáđŕëi, i ďŕęĺňű,\n"
-#~ "ŕä ˙ęiő ˙íű çŕëĺćŕöü, áóäóöü ŕ˘ňŕěŕňű÷íŕ ŕáđŕíű äçĺë˙ ˘ńňŕë˙âŕíí˙.\n"
-#~ "Íĺěŕă÷űěŕ ˘ńňŕë˙âŕöü ďŕęĺň äŕ ˘ńňŕë˙âŕíí˙ ˘ńiő ďŕęĺňŕ˘, ŕä ˙ęiő ¸í "
-#~ "çŕëĺćűöü."
-
-#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Âŕř ęŕęěď'ţňýđ ěîćŕ áűöü ńęŕíôiăóđŕâŕíű äŕ ńóěĺńíŕăŕ Iíňýđíýň-çëó÷ýíí˙.\n"
-
-#~ msgid "automagic"
-#~ msgstr "ŕ˘ňŕěŕăi÷íű"
-
-#~ msgid "beginner"
-#~ msgstr "ďŕ÷űíŕţ÷ű"
-
-#~ msgid "brunette"
-#~ msgstr "áđóíĺň"
-
-#~ msgid "changing type of"
-#~ msgstr "Çě˙íĺííĺ ňűďó"
-
-#~ msgid "default"
-#~ msgstr "Ďŕ äŕěŕ˘ëĺííţ"
-
-#~ msgid "dhcp-client"
-#~ msgstr "dhcp-client"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "don't use pppoe"
-#~ msgstr "íĺ âűęŕđűńňî˘âŕöü pppoe"
-
-#~ msgid "girl"
-#~ msgstr "äç˙˘÷űíŕ"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (âŕćíŕ)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (äîáđŕ)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (âĺëüěi äîáđŕ)"
-
-#~ msgid "linear"
-#~ msgstr "Ëiíĺéíŕ"
-
-#~ msgid "loopback"
-#~ msgstr "Âiđňóŕëüíŕ˙ ôŕéëŕâŕ˙ ńińňýěŕ (loopback)"
-
-#~ msgid "nfs mount failed"
-#~ msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙ nfs"
-
-#~ msgid "pptp alcatel"
-#~ msgstr "pptp alcatel"
-
-#~ msgid "pump"
-#~ msgstr "pump"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake çŕđŕç ó đýćűěĺ ``low memory''.\n"
-#~ "rpmdrake áóäçĺ ďĺđŕçŕďóř÷ŕíű äçĺë˙ çŕáĺńď˙÷ýíí˙ ďîřóęó ôŕéëŕ˘"
-
-#~ msgid "tie"
-#~ msgstr "ăŕëüřňóę"
-
-#~ msgid "woman-blond"
-#~ msgstr "ćŕí÷űíŕ-áëŕíäűíęŕ"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
deleted file mode 100644
index 7bea7e548..000000000
--- a/perl-install/share/po/bg.po
+++ /dev/null
@@ -1,13898 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 1999, 2000 MandrakeSoft
-# Elena Radeva <ely@triada.bg>, 1999.
-# Pavel Cholakov <pavel@linux.home.bg>, 1999.
-# Boyan Ivanov <boyan17@bulgaria.com>, 1999, 2000
-# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000
-# Valery Dachev <valery@zonebg.com>, 2000, 2001
-#
-# Bulgarians on Linux use windows-1251 encoding
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-08-15 15:29+0200\n"
-"Last-Translator: Valery Dachev <valery@zonebg.com>\n"
-"Language-Team: Bulgarian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=windows-1251\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Čçďîëçâŕé đŕçřčđĺíčĺňî Xinerama"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Íŕńňđîéęŕ ńŕěî íŕ ęŕđňŕ \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Ăđŕôč÷íŕ ęŕđňŕ"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Čçáĺđĺňĺ ăđŕôč÷íŕ ęŕđňŕ"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Čçáĺđĺňĺ X ńúđâúđ"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X ńúđâúđ"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Čçáĺđĺňĺ X ńúđâúđ"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X ńúđâúđ"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Ęî˙ íŕńňđîéęŕ íŕ XFree čńęŕňĺ äŕ čěŕňĺ ?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Ęŕđňŕňŕ âč ěîćĺ äŕ čěŕ ďîääđúćęŕ íŕ őŕđäóĺđíî 3D óńęîđĺíčĺ, íî ńŕěî ń Xfree %"
-"s.\n"
-"Ęŕđňŕňŕ âč ńĺ ďîääúđćŕ îň XFree %s, ęîéňî ěîćĺ äŕ čěŕ ďî-äîáđŕ ďîääđúćęŕ íŕ "
-"2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Ęŕđňŕňŕ âč ěîćĺ äŕ čěŕ ďîääđúćęŕ íŕ őŕđäóĺđíî 3D óńęîđĺíčĺ â XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s ń őŕđäóĺđíî 3D óńęîđĺíčĺ"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Ęŕđňŕňŕ âč ěîćĺ äŕ čěŕ ďîääđúćęŕ íŕ őŕđäóĺđíî 3D óńęîđĺíčĺ ń XFree %s.\n"
-"ÎŇÁĹËĹĆĹŇĹ, ×Ĺ ŇÎÂŔ Ĺ ĹĘŃĎĹĐČĚĹÍŇŔËÍŔ ĎÎÄÄĐÚĆĘŔ Č ĘÎĚĎŢŇÚĐÚŇ ÂČ ĚÎĆĹ ÄŔ "
-"ÇŔÁČĹ."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s ń ĹĘŃĎĹĐČĚĹÍŇŔËÍO őŕđäóĺđíî 3D óńęîđĺíčĺ"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (číńňŕëŕöč˙ ăđŕôč÷ĺí äđŕéâĺđ)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Íŕńňđîéęŕ íŕ XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Čçáĺđĺňĺ ęŕďŕöčňĺň íŕ ďŕěĺňňŕ íŕ ăđŕôč÷íŕňŕ ńč ęŕđňŕ"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Čçáĺđĺňĺ îďöčč çŕ ńúđâúđŕ"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Čçáĺđĺňĺ ěîíčňîđ"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Ěîíčňîđ"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Äâŕňŕ ęđčňč÷íč ďŕđŕěĺňúđŕ ńŕ âĺđňčęŕëíŕňŕ ńęîđîńň íŕ âúçńňŕíîâ˙âŕíĺ, ęî˙ňî "
-"îňđŕç˙âŕ ńęîđîńňňŕ, \n"
-"ń ęî˙ňî öĺëč˙ň ĺęđŕí ńĺ âúçńňŕíîâ˙âŕ, č íŕé-âŕćíîňî - őîđčçîíňŕëíŕňŕ\n"
-"ńčíőđîíčçŕöčîííŕ ńęîđîńň, ęî˙ňî îňđŕç˙âŕ ńęîđîńňňŕ, ń ęî˙ňî ńĺ čçďčńâŕň "
-"őîđčçîíňŕëíčňĺ ëčíčč.\n"
-"\n"
-"ĚÍÎĂÎ Ĺ ÂŔĆÍÎ äŕ čçáĺđĺňĺ ňŕęŕâŕ ńčíőđîíčçŕöčîííŕňŕ ńęîđîńň, ęî˙ňî äŕ "
-"îňăîâŕđ˙ íŕ âúçěîćíîńňčňĺ íŕ Âŕřč˙ ěîíčňîđ - â ďđîňčâĺí ńëó÷ŕé ěîćĺňĺ äŕ "
-"ďîâđĺäčňĺ ěîíčňîđŕ ńč.\n"
-" Ŕęî čěŕňĺ í˙ęŕęâč ńúěíĺíč˙, čçáĺđĺňĺ ęîíńĺđâŕňčâíŕ íŕńňđîéęŕ."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Őîđčçîíňŕëíŕ ńęîđîńň íŕ âúçńňŕíîâ˙âŕíĺ"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Âĺđňčęŕëíŕ ńęîđîńň íŕ âúçńňŕíîâ˙âŕíĺ"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ěîíčňîđúň íĺ ĺ íŕńňđîĺí"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ăđŕôč÷íŕňŕ ęŕđňŕ âńĺ îůĺ íĺ ĺ íŕńňđîĺíŕ"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Îůĺ íĺ ĺ čçáđŕíŕ đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Čńęŕňĺ ëč äŕ ňĺńňâŕňĺ íŕńňđîéęčňĺ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Âíčěŕíčĺ: ňĺńňâŕíĺňî íŕ ňŕçč ăđŕôč÷íŕ ęŕđňŕ ěîćĺ äŕ \"çŕěđŕçč\" ęîěďţňúđŕ âč"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Ďđîâĺđęŕ íŕ íŕńňđîéęŕňŕ"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"îďčňŕéňĺ ńĺ äŕ ďđîěĺíčňĺ í˙ęîč ďŕđŕěĺňđč"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ďî˙âč ńĺ ăđĺřęŕ:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Čçőîä äî %d ńĺęóíäč"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Âĺđíč ëč ńŕ íŕńňđîéęčňĺ ?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ďî˙âč ńĺ ăđĺřęŕ, îďčňŕéňĺ ńĺ äŕ ďđîěĺíčňĺ í˙ęîč ďŕđŕěĺňđč"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Čçáĺđĺňĺ đŕçäĺëčňĺëíŕ ńďîńîáíîńň č äúëáî÷číŕ íŕ öâĺňîâĺňĺ"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Ăđŕôč÷íŕ ęŕđňŕ: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 ńúđâúđ: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Îůĺ"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ĺęńďĺđňĺí đĺćčě"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ďîęŕćč âńč÷ęč"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Ňčď ęëŕâčŕňóđŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Ňčď ěčřęŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Óńňđîéńňâî íŕ ěčřęŕňŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Ěîíčňîđ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Őîđčçîíňŕëíŕ ńčíőđîíčçŕöč˙ íŕ ěîíčňîđŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Âĺđňčęŕëíî îďđĺńí˙âŕíĺ íŕ ěîíčňîđŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Ăđŕôč÷íŕ ęŕđňŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Čäĺíňčôčęŕöč˙ íŕ ăđŕôč÷íŕňŕ ęŕđňŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Ăđŕôč÷íŕ ďŕěĺň: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Äúëáî÷číŕ íŕ öâĺňŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 ńúđâúđ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 äđŕéâĺđ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Ďîäăîňîâęŕ çŕ íŕńňđîéâŕíĺ íŕ X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Ďđîěĺíĺňĺ ěîíčňîđŕ"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ďđîěĺíĺňĺ ăđŕôč÷íŕňŕ ęŕđňŕ"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Ďđîěĺíĺňĺ îďöččňĺ íŕ ńúđâúđŕ"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Ďđîěĺíĺňĺ đŕçäĺëčňĺëíŕňŕ ńďîńîáíîńň"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Ďîęŕćč číôîđěŕöč˙ňŕ"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Ňĺńňâŕé îňíîâî"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Čçëčçŕíĺ"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Äŕ çŕďŕç˙ ëč ďđîěĺíčňĺ ?\n"
-"Ňĺęóůŕňŕ íŕńňđîéęŕ ĺ:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X ďđč ńňŕđňčđŕíĺ íŕ ńčńňĺěŕňŕ"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Kîěďţňúđŕ âč ěîćĺ ŕâňîěŕňč÷íî, äŕ âëĺçĺ â X ďđč ńňŕđňčđŕíĺ.\n"
-"Čńęŕňĺ ëč X äŕ ńĺ ńňŕđňčđŕ, ęîăŕňî đĺńňŕđňčđŕňĺ ńčńňĺěŕňŕ?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Ěîë˙ âëĺçňĺ îňíîâî â %s, çŕ äŕ ŕęňčâčđŕňĺ ďđîěĺíčňĺ"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Ěîë˙ čçëĺçňĺ îň ńĺńč˙ňŕ č čçďîëçâŕéňĺ Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 öâ˙ňŕ (8 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 őčë˙äč öâ˙ňŕ (15 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 őčë˙äč öâ˙ňŕ (16 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 ěčëčîíŕ öâ˙ňŕ (24 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 ěčëčŕđäŕ öâ˙ňŕ (32 áčňŕ)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 ĘÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 ĘÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 ĚÁ"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 ĚÁ čëč ďîâĺ÷ĺ"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 íŕ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 íŕ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-ńúâěĺńňčě, 1024x768 íŕ 87 Hz interlaced (í˙ěŕ 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-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:133
-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:134
-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:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Âčńîęî÷ĺńňîňĺí SVGA, 1024x768 íŕ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ěîíčňîđ, ęîéňî äîńňčăŕ 1600x1200 íŕ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ěîíčňîđ, ęîéňî äîńňčăŕ 1600x1200 íŕ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Ďúđâč ńĺęňîđ îň ńňŕđňčđŕůč˙ ńĺ ä˙ë"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Ďúđâč˙ň ńĺęňîđ îň äđŕéâŕ (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO číńňŕëŕöč˙"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Ęúäĺ čńęŕňĺ äŕ číńňŕëčđŕňĺ bootloader-ŕ?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/grub číńňŕëŕöč˙"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO ń ňĺęńňîâî ěĺíţ"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO ń ăđŕôč÷íî ěĺíţ"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Ńňŕđňčđŕíĺ îň DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Îďöčč íŕ çŕđĺćäŕůŕňŕ ďđîăđŕěŕ"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Čçďîëçâŕíŕ çŕđĺćäŕůŕňŕ ďđîăđŕěŕ"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Bootloader číńňŕëŕöč˙"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Ńňŕđňčđŕůî óńňđîéńňâî"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (íĺ đŕáîňč íŕ ńňŕđč BIOS-č)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Ęîěďŕęňĺí"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "ęîěďŕęňĺí"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Âčäĺî đĺćčě"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Çŕáŕâ˙íĺ ďđĺäč ńňŕđňčđŕíĺňî íŕ default ä˙ëŕ"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Ďŕđîëŕ"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Ďŕđîëŕ (îňíîâî)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Îăđŕíč÷č îďöččňĺ, çŕäŕâŕíč îň ęîěŕíäíč˙ đĺä"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "îăđŕíč÷č"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Ďî÷čńňâŕíĺ íŕ /tmp ďđč âń˙ęî çŕđĺćäŕíĺ"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Ňî÷ĺí đŕçěĺđ íŕ RAM-ďŕěĺňňŕ, ŕęî ĺ íĺîáőîäčěî (íŕěĺđĺíč %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Âęëţ÷č ěíîăî ďđîôčëč"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Äŕéňĺ đŕçěĺđŕ RAM-ďŕěĺň â Mb"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Îďöč˙ňŕ ``Îăđŕíč÷č îďöččňĺ îň ęîěŕíäíč˙ đĺä'' ĺ áĺçďîëĺçíŕ áĺç ďŕđîëŕ"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Ěîë˙, îďčňŕéňĺ îňíîâî"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Ďŕđîëčňĺ íŕ ńúâďŕäŕň"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Ńňŕđňîâî ńúîáůĺíčĺ"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Čç÷ŕęâŕíĺ íŕ Open Firmware"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Čç÷ŕęâŕíĺ çŕ ńňŕđňčđŕíĺ íŕ ˙äđîňî"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Ńňŕđňčđŕíĺ îň CD ?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Ńňŕđňčđŕíĺ îň OF ?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "ÎŃ ďî ďîäđŕçáčđŕíĺ ?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Ňîâŕ ńŕ đŕçëč÷íčňĺ çŕďčńč.\n"
-"Ěîćĺňĺ äŕ äîáŕâčňĺ îůĺ čëč äŕ ďđîěĺíčňĺ ńúůĺńňâóâŕůčňĺ."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Äîáŕâč"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Ăîňîâî"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Ěîäčôčöčđŕé"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Ęŕęúâ ňčď číôîđěŕöč˙ čńęŕňĺ äŕ ďđčáŕâčňĺ"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Äđóăŕ ÎŃ (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Äđóăŕ ÎŃ (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Äđóăŕ ÎŃ (Windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Îáđŕç"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Ăëŕâĺí"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Äîďúëâŕíĺ"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "×ĺňĺíĺ-çŕďčń"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Ňŕáëčöŕ"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Îďŕńĺí"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Ĺňčęĺň"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Ďî ďîäđŕçáčđŕíĺ"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd-ăîëĺěčíŕ"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "Áĺç ăđŕôčęŕ"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Ďđĺěŕőíč çŕďčń"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Ďđŕçĺí ĺňčęĺň íĺ ĺ đŕçđĺřĺí"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Ňđ˙áâŕ äŕ čěŕňĺ swap-ä˙ë"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Ňîçč ĺňčęĺň âĺ÷ĺ ńĺ čçďîëçâŕ"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Íŕěĺđĺíč ńŕ %s %s číňĺđôĺéńč"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Čěŕňĺ ëč äđóă(č) ?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Čěŕňĺ ëč í˙ęŕęúâ %s číňĺđôĺéń?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Íĺ"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Äŕ"
-
-#: ../../any.pm_.c:661
-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:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Číńňŕëčđŕíĺ íŕ äđŕéâĺđ çŕ %s ďëŕňęŕ %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(ěîäóë %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Ęîé %s äđŕéâĺđ äŕ ďđîáâŕě ?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-" í˙ęîč ńëó÷ŕč, %s äđŕéâĺđúň ńĺ íóćäŕĺ îň äîďúëíčňĺëíŕ číôîđěŕöč˙, çŕ\n"
-"äŕ đŕáîňč ęîđĺęňíî, âúďđĺęč ÷ĺ íîđěŕëíî đŕáîňč č áĺç íĺ˙. Ćĺëŕĺňĺ ëč "
-"äŕďîäŕäĺňĺ\n"
-"äîďúëíčňĺëíč îďöčč çŕ íĺăî čëč äŕ đŕçđĺřčňĺ íŕ äđŕéâĺđŕ äŕ ďîňúđńč "
-"číôîđěŕöč˙ňŕ\n"
-"îň ęî˙ňî ńĺ íóćäŕĺ ? Ďî ďđčíöčď ňîâŕ ěîćĺ äŕ çŕáčĺ ęîěďţňúđŕ âč, íî í˙ěŕ äŕ "
-"ăî ďîâđĺäč."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Çŕäŕé îďöčč"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ńĺăŕ ěîćĺňĺ äŕ ďîäŕäĺňĺ îďöččňĺ ěó äî ěîäóëŕ %s.\n"
-"Îďöččňĺ ńŕ âúâ ôîđěŕň ``čěĺ=ńňîéíîńň čěĺ2=ńňîéíîńň2 ...''.\n"
-"Íŕďđčěĺđ: ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Îďöčč íŕ ěîäóëŕ:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Çŕđĺćäŕíĺňî íŕ ěîäóëŕ %s íĺ óńď˙.\n"
-"Čńęŕňĺ ëč äŕ îďčňŕňĺ îňíîâî ń äđóăč ďŕđŕěĺňđč ?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(âĺ÷ĺ ďđčáŕâčő %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Ňŕçč ďŕđîëŕ ĺ ďđĺęŕëĺíî ďđîńňŕ"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Ěîë˙, çŕäŕéňĺ ďîňđĺáčňĺëńęî čěĺ"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Ďîňđĺáčňĺëńęîňî čěĺ ěîćĺ äŕ âęëţ÷âŕ ńŕěî ěŕëęč áóęâč, íîěĺđŕ, `-' č `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Ňîâŕ ďîňđĺáčňĺëńęî čěĺ ĺ âĺ÷ĺ äîáŕâĺíî"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Äîáŕâč ďîňđĺáčňĺë"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Âúâĺäĺňĺ ďîňđĺáčňĺë\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Ďđčĺěč ďîňđĺáčňĺë"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Čńňčíńęî čěĺ"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Řĺë"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Čęîíŕ"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Autologin"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Ěîăŕ äŕ íŕńňđî˙ ęîěďţňúđŕ âč äŕ âëčçŕíĺ â ńčńňĺěŕňŕ ŕâňîěŕňč÷íî ęŕňî í˙ęîé "
-"ďîňđĺáčňĺë.\n"
-"Čńęŕňĺ ëč ňŕçč âúçěîćíîńň ?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Čçáĺđĺňĺ ďîäđŕçáčđŕů ńĺ ďîňđĺáčňĺë :"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Čçáĺđĺňĺ Windows Manager çŕ ńňŕđňčđŕíĺ:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Ěîćĺňĺ äŕ čçáĺđĺňĺ äđóăč ĺçčöč, ęîčňî ůĺ áúäŕň íŕëčöĺ ńëĺäčíńňŕëŕöč˙ňŕ"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Âńč÷ęč"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Äîáŕâ˙íĺ íŕ ďîňđĺáčňĺë"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Ęëčĺíňńęŕ"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "Ďîäĺë˙íĺ íŕ ôŕéëîâĺ"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"Ňîçč ďŕęĺň ňđ˙áâŕ äŕ áúäĺ îáíîâĺí\n"
-"Ńčăóđíč ëč ńňĺ, ÷ĺ čńęŕňĺ äŕ ăî čçęëţ÷čňĺ ?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Îňě˙íŕ"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Äîáđĺ äîřëč ďđč Cracker-čňĺ"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Ëîřî"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Ńňŕíäŕđňíŕ"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Âčńîęî"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Âčńîęî"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Ďŕđŕíîč÷íî"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Ňîâŕ íčâî ńĺ čçďîëçâŕ ń âíčěŕíčĺ. Ňîâŕ ęŕđŕ ńčńňĺěŕňŕ âč ďî-ëĺńíŕ çŕ\n"
-"óďîňđĺáŕ, íî ĺ ďî-÷óâńňâčňĺëíî: íĺ ňđ˙áâŕ äŕ áúäĺ čçďîëçâŕíŕ íŕ ěŕřčíč\n"
-"ńâúđçŕíč ń äđóăč čëč ďî Číňĺđíĺň. Í˙ěŕ äîńňúď ń ďŕđîëč."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Ďŕđîëŕňŕ ńĺăŕ ĺ âęëţ÷ĺíŕ, íî čçďîëçâŕíĺňî ęŕňî ěđĺćîâ ęîěďţňúđ íĺ ĺ "
-"ďđĺďîđú÷čňĺëíî."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Ňîâŕ ĺ ńňŕíäŕđňíŕňŕ ńčăóđíîńň ďđĺďîđú÷čňĺëíŕ çŕ ęîěďţňúđ, ęîéňî ůĺ áúäĺ\n"
-"čçďîëçâŕí äŕ ńĺ ńâúđçâŕ ęúě Číňĺđíĺň ęŕňî ęëčĺíň. Čěŕ ďđîâĺđęč íŕ "
-"ńčăóđíîńňňŕ. "
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Ń ňîâŕ íčâî íŕ ńčăóđíîńň, ďîëçâŕíĺňî íŕ ńčńňĺěŕňŕ ęŕňî ńúđâúđ ńňŕâŕ "
-"âúçěîćíî.\n"
-"Ńčăóđíîńňňŕ ńĺăŕ ĺ äîńňŕňú÷íî ăîë˙ěŕ äŕ ńĺ čçďîëçâŕ ńčńňĺěŕňŕ ęŕňî\n"
-"ńúđâúđ ďđčĺěŕů âđúçęč îň ěíîăî ęëčĺíňč. "
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Čçáčđŕěĺ 4-ňî íčâî, íî ńčńňĺěŕňŕ ĺ íŕďúëíî çŕňâîđĺíŕ.\n"
-"Íčâîňî íŕ ńčăóđíîńň ĺ íŕ ěŕęńčěóěŕ ńč."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Íčâî íŕ ńčăóđíîńň"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Čçďîëçâŕéňĺ libsafe çŕ ńúđâúđč"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Áčáëčîňĺęŕ, ęî˙ňî îńčăóđ˙âŕ çŕůčňŕ îň aňŕęč ń ďđĺďúëâŕíĺ íŕ áóôĺđ č ôîđěŕňíč "
-"ńňđčíăîâĺ."
-
-# 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)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, 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:944
-msgid "not enough room in /boot"
-msgstr "í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Äĺńęňîď"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Ńňŕđňîâî Ěĺíţ"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Íĺ ěîćĺňĺ äŕ číńňŕëčđŕňĺ bootloader íŕ ä˙ëŕ %s\n"
-
-#: ../../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 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Ôŕéëîâĺ"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Ôŕéë/_Čçőîä"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<ęîíňđîë>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "NewStyle ęŕňĺăîđčçčđŕí ěîíčňîđ"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "NewStyle ěîíčňîđ"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Îáčęíîâĺí ěîíčňîđ"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Îáčęíîâĺí Gtk+ ěîíčňîđ"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Ďóńíč Aurora ďđč ńňŕđňčđŕíĺ"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Đĺćčě íŕ Lilo/grub"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Đĺćčě íŕ Yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Â ěîěĺíňŕ čçďîëçâŕňĺ %s ęŕňî ďđîăđŕěŕ çŕ ńňŕđňčđŕíĺ.\n"
-"Öúęíĺňĺ íŕ Íŕńňđîé, çŕ äŕ ńňŕđňčđŕňĺ óńňŕíîâ˙âŕůč˙ ěŕăüîńíčę."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Íŕńňđîé"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Ńčńňĺěĺí đĺćčě"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Ďóńíč X-Window ńčńňĺěŕňŕ ďđč ńňŕđňčđŕíĺ"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Íĺ, íĺ čńęŕě autologin"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Äŕ, čńęŕě autologin ń ňîâŕ (ďîňđĺáčňĺë, äĺńęňîď)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "íĺ ěîăŕ äŕ îňâîđ˙ /etc/inittab çŕ ÷ĺňĺíĺ: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "ĂÁ"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "ĘÁ"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "ĚÁ"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "ŇÁ"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d ěčíóňč"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 ěčíóňŕ"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d ńĺęóíäč"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Íĺ ěîăŕ äŕ äîáŕâ˙ ďîâĺ÷ĺ ä˙ëîâĺ"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Ěîćĺňĺ äŕ čçáĺđĺňĺ äđóăč ĺçčöč, ęîčňî ůĺ áúäŕň íŕëčöĺ ńëĺäčíńňŕëŕöč˙ňŕ"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Ôđŕíöč˙"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Áĺëăčéńęŕ"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-#, fuzzy
-msgid "Germany"
-msgstr "Íĺěńęŕ"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Ăđúöęŕ"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Íîđâĺćęŕ"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Âčć"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Čňŕëčŕíńęŕ"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "ńĺđčéíŕ"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Ďúđâî ńúçäŕéňĺ backup íŕ ńâîčňĺ äŕííč"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Ďđî÷ĺňĺňĺ âíčěŕňĺëíî !"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Ŕęî ńě˙ňŕňĺ äŕ čçďîëçâŕňĺ aboot, îńňŕâĺňĺ ńâîáîäíî ďđîńňđŕíńňâî (2048 "
-"ńĺęňîđŕ\n"
-"ńŕ äîńňŕňú÷íč) â íŕ÷ŕëîňî íŕ äčńęŕ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Ăđĺřęŕ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Ěŕăüîńíčę"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Čçáĺđĺňĺ äĺéńňâčĺ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Čěŕňĺ ĺäčí ăîë˙ě FAT ä˙ë\n"
-"(ďî ďđčíöčď ńĺ ďîëçâŕň îň Microsoft Dos/Windows).\n"
-"Ďđĺäëŕăŕě ďúđâî äŕ ďđîěĺíčňĺ ăîëĺěčíŕňŕ íŕ ňîçč ä˙ë\n"
-"(ůđŕęíĺňĺ âúđőó íĺăî, ŕ ńëĺä ňîâŕ ůđŕęíĺňĺ âúđőó \"Ďđîěĺíč ăîëĺěčíŕňŕ\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Ěîë˙, öúęíĺňĺ íŕ ä˙ëŕ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Ďîäđîáíîńňč"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Ćóđíŕëíŕ FS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Ďđŕçĺí"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Äđóăŕ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Âčäîâĺ ôŕéëîâŕ ńčńňĺěŕ:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Ńúçäŕé"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Âčä"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Âěĺńňî ňîâŕ čçďîëçâŕéňĺ ``%s''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Čçňđčé"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Ďúđâî čçďîëçâŕéňĺ 'Äĺěîíňčđŕíĺ'"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Ńëĺä ďđîě˙íŕ íŕ ňčďŕ íŕ ä˙ëŕ %s, âńč÷ęč äŕííč âúđőó íĺăî ůĺ áúäŕň çŕăóáĺíč"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Čçáĺđĺňĺ ä˙ë"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Čçáĺđĺňĺ äđóă ä˙ë"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Čçëĺç"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Ďđĺěčíč â Ĺęńďĺđňĺí đĺćčě"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Ďđĺěčíč â Íîđěŕëĺí đĺćčě"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Âúđíč"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Ďđîäúëćĺíčĺ âúďđĺęč âńč÷ęî ?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Čçőîä áĺç çŕďčń"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Čçőîä, áĺç äŕ çŕďčń íŕ ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ ?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Čńęŕňĺ ëč äŕ çŕďŕçčňĺ ďđîěĺíčňĺ â /etc/fstab"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Ŕâňîěŕňč÷íî ńúçäŕâŕíĺ"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Čç÷čńňč âńč÷ęî"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Číôîđěŕöč˙ňŕ çŕ ňâúđäč˙ äčńę"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Âńč÷ęč ďúđâč÷íč ä˙ëîâĺ ńĺ čçďîëçâŕň"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Íĺ ěîăŕ äŕ äîáŕâ˙ ďîâĺ÷ĺ ä˙ëîâĺ"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Ŕęî čńęŕňĺ îůĺ ä˙ëîâĺ, ěîë˙ čçňđčéňĺ ĺäčí, çŕ äŕ ěîćĺňĺ äŕ ńúçäŕäĺňĺ ĺäčí "
-"đŕçřčđĺí ä˙ë"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Çŕďŕçč ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Âúçńňŕíîâč ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Ńďŕń˙âŕíĺ ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Ďđĺçŕđĺäč ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Ŕâňîěŕňč÷íî ěîíňčđŕíĺ íŕ ńěĺí˙ĺě íîńčňĺë"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Čçáĺđĺňĺ ôŕéë"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Đĺçĺđâíŕňŕ ňŕáëčöŕ íŕ ä˙ëîâĺňĺ íĺ ĺ ńúń ńúůŕňŕ ăîëĺěčíŕ\n"
-"Äŕ ďđîäúëćŕ ëč âńĺ ďŕę ?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Ďđĺäóďđĺćäĺíčĺ"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Ńëîćĺňĺ äčńęĺňŕ âúâ ôëîďčňî\n"
-"Âńč÷ęč äŕííč, íŕěčđŕůč ńĺ âúđőó äčńęĺňŕňŕ, ůĺ áúäŕň çŕăóáĺíč"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Îďčňâŕě ńĺ äŕ ńďŕń˙ ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Ďîäđîáíŕ číôîđěŕöč˙"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Ě˙ńňî íŕ ěîíňčđŕíĺ"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Îďöčč"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Ďđîěĺíč ăîëĺěčíŕňŕ"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Ďđĺěĺńňč"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Ôîđěŕňčđŕé"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Ěîíňčđŕé"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Ďđčáŕâč ęúě RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Ďđčáŕâč ęúě LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Äĺěîíňčđŕé"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Ďđĺěŕőíč îň RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Ďđĺěŕőíč îň LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Ěîäčôčöčđŕé RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Čçďîëçâŕé çŕ loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Ńúçäŕé íîâ ä˙ë"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Íŕ÷ŕëĺí ńĺęňîđ: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Ăîëĺěčíŕ â MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Âčä ôŕéëîâŕ ńčńňĺěŕ: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Ě˙ńňî íŕ ěîíňčđŕíĺ: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Ďđĺäďî÷čňŕíčĺ: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Äŕ ďđĺěŕőíŕ ëč loopback ôŕéëŕ ?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Ďđîě˙íŕ ňčďŕ íŕ ä˙ëŕ"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Ęî˙ ôŕéëîâŕ ńčńňĺěŕ čńęŕňĺ ?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Ďđĺőîä îň ext2 ęúě ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Ęúäĺ čńęŕňĺ äŕ ěîíňčđŕňĺ loopback-ôŕéëŕ %s ?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Ęúäĺ čńęŕňĺ äŕ ěîíňčđŕňĺ óńňđîéńňâî %s ?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Íĺ ěîăŕ äŕ ěŕőíŕ ňî÷ęŕňŕ íŕ ěîíňčđŕíĺ, ňúé ęŕňî ä˙ëúň ńĺ čçďîëçâŕ çŕ "
-"loopback.\n"
-"Ďúđâî ěŕőíĺňĺ loopback"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Čç÷čńë˙âŕě ăđŕíčöčňĺ íŕ fat ôŕéëîâŕňŕ ńčńňĺěŕ"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Ďđîě˙íŕ íŕ ăîëĺěčíŕňŕ"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Ăîëĺěčíŕňŕ íŕ ä˙ëŕ íĺ ěîćĺ äŕ áúäĺ ďđîěĺíĺíŕ"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Âńč÷ęč äŕííč íŕ ňîçč ä˙ë ňđ˙áâŕ äŕ áúäŕň ŕđőčâčđŕíč"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Ńëĺä ďđîě˙íŕ ăîëĺěčíŕňŕ íŕ ä˙ëŕ %s, äŕííčte âúđőó íĺăî ůĺ áúäŕň çŕăóáĺíč"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Čçáĺđĺňĺ íîâŕ ăîëĺěčíŕ"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Íîâŕ ăîëĺěčíŕ â MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Íŕ ęîé äčńę čńęŕňĺ äŕ ăî ďđĺěĺńňčňĺ ?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Ńĺęňîđ"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Íŕ ęîé ńĺęňîđ čńęŕňĺ äŕ ăî ďđĺěĺńňčňĺ?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Ěĺńňĺíĺ"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Ěĺńňâ˙ ä˙ëŕ ... "
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Čçáĺđĺňĺ ńúůĺńňâóâŕů RAID çŕ ďđčáŕâ˙íĺ"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "íîâ"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Čçáĺđĺňĺ ńúůĺńňâóâŕů LVM çŕ ďđčáŕâ˙íĺ"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "LVM čěĺ ?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Ňîçč ä˙ë íĺ ěîćĺ äŕ áúäĺ čçďîëçâŕí çŕ loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Čěĺ íŕ loopback ôŕéëŕ: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Äŕéňĺ čěĺ íŕ ôŕéë"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Ôŕéëúň âĺ÷ĺ ńĺ čçďîëçâŕ ňî äđóă loopback, čçáĺđĺňĺ äđóă ôŕéë."
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Ôŕéëúň âĺ÷ĺ ńúřĺńňâóâŕ. Äŕ ăî čçďîëçâŕě ëč ?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Îďöčč çŕ mount:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Đŕçëč÷íč"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "óńňđîéńňâî"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "íčâî"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "ăîëĺěčíŕ íŕ ďŕđ÷ĺňî"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Âíčěŕíčĺ: ňŕçč îďĺđŕöč˙ ĺ îďŕńíŕ"
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Ęŕęúâ ňčď đŕçäĺë˙íĺ íŕ ä˙ëîâĺ ?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ňîëęîâŕ íŕâúňđĺ âúđőó äčńęŕ "
-"(âúđőó öčëčíäúđ > 1024).\n"
-"Čëč čçďîëçâŕňĺ LILO č ňî íĺ đŕáîňč, čëč íĺ čçďîëçâŕňĺ LILO č í˙ěŕňĺ íóćäŕ "
-"îň /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Ä˙ëúň, ęîéňî ńňĺ ěŕđęčđŕëč çŕ root (/) ĺ ôčçč÷ĺńęč đŕçďîëîćĺí îňâúä\n"
-"1024-č˙ öčëčíäúđ íŕ ňâúđäč˙ äčńę č í˙ěŕňĺ /boot ä˙ë.\n"
-"Ŕęî ńě˙ňŕňĺ äŕ čçďîëçâŕňĺ boot ěĺíčäćúđŕ LILO, áúäĺňĺ âíčěŕňĺëíč ďđč\n"
-"ďđčáŕâ˙íĺňî íŕ /boot ä˙ë"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Ěŕđęčđŕëč ńňĺ ńîôňóĺđĺí RAID ä˙ë ęŕňî root (/).\n"
-"Í˙ěŕ çŕđĺćäŕůŕ ďđîăđŕěŕ, ęî˙ňî äŕ ěîćĺ äŕ ńĺ ńďđŕâč ń íĺăî áĺç /boot ä˙ë.\n"
-"Ňŕęŕ ÷ĺ äîáŕâĺňĺ /boot ä˙ë"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ íŕ óńňđîéńňâî %s ůĺ áúäĺ çŕďčńŕíŕ âúđőó äčńęŕ !"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Ňđ˙áâŕ äŕ đĺńňŕđňčđŕňĺ, ďđĺäč ďđîěĺíčňĺ äŕ âë˙çŕň â ńčëŕ"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Ńëĺä ôîđěŕňčđŕíĺ íŕ ä˙ëŕ %s, âńč÷ęč äŕííč âúđőó íĺăî ůĺ áúäŕň çŕăóáĺíč"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Ôîđěŕňčđŕíĺ"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Ôîđěŕňčđŕíĺ íŕ loopback ôŕéëŕ %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëŕ %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Ńęđčé ôŕéëîâĺňĺ"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Ďđĺěĺńňč ôŕéëîâĺňĺ íŕ íîâ ä˙ë"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"Äčđĺęňîđč˙ňŕ %s âĺ÷ĺ ńúäúđćŕ í˙ęŕęâč äŕííč\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Ďđĺěĺńňč ôŕéëîâĺňĺ íŕ íîâ ä˙ë"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Ęîďčđŕíĺ íŕ %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Čçňđčâŕíĺ íŕ %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Óńňđîéńňâî: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Áóęâŕ íŕ óńňđîéńňâîňî ďîä DOS: %s (ďđîńňî ďđĺäďîëîćĺíčĺ)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Âčä: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Čěĺ: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Íŕ÷ŕëî: ńĺęňîđ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Đŕçěĺđ: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s ńĺęňîđŕ"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Îň öčëčíäúđ %d äî öčëčíäúđ %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Ôîđěŕňčđŕí\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Íĺôîđěŕňčđŕí\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Ěîíňčđŕí\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Loopback ôŕéë(îâĺ):\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Ä˙ë, ęîéňî ńĺ ńňŕđňčđŕ ďî ďîäđŕçáčđŕíĺ\n"
-" (çŕ MS-DOS boot, íĺ çŕ lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Íčâî %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Đŕçěĺđ íŕ ďŕđ÷ĺňî %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-äčńęîâĺ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Čěĺ íŕ loopback ôŕéëŕ: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Âĺđî˙ňíî ĺ ňîçč ä˙ë äŕ ĺ\n"
-"Äđŕéâĺđ-ä˙ë, ěîćĺ áč ňđ˙áâŕ\n"
-"ňđ˙áâŕ äŕ ăî îńňŕâčňĺ.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Ňŕçč ńďĺöčŕëíŕ ńňŕđňčđŕůŕ\n"
-"čâčöŕ íŕ ä˙ëŕ ĺ çŕ äâîéíî\n"
-"ńňŕđňčđŕíĺ íŕ ńčńňĺěŕňŕ âč.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Đŕçěĺđ: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Ăĺîěĺňđč˙: %s öčëčíäđč, %s ăëŕâč, %s ńĺęňîđč\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Číôîđěŕöč˙: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-äčńęîâĺ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Ňčď íŕ ňŕáëčöŕňŕ ń ä˙ëîâĺ: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "íŕ řčíŕ %d ŕäđĺń %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Îďöčč: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Âčä ôŕéëîâŕ ńčńňĺěŕ: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Ďŕđîëŕňŕ ĺ ďđĺęŕëĺíî ďđîńňŕ (ňđ˙áâŕ äŕ áúäĺ äúëăŕ ďîíĺ %d ńčěâîëŕ)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Ďŕđîëčňĺ íŕ ńúâďŕäŕň"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Ďđîě˙íč ňčďŕ"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Ěîë˙, öúęíĺňĺ íŕ íîńčňĺë˙"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "DNS ńúđâúđ"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s ôîđěŕňčđŕíĺ îň %s ďđîâŕëĺíî"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "íĺ çíŕě ęŕę äŕ ôîđěŕňčđŕě %s â ňčď %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck čçëĺçĺ ń čçőîäĺí ęîä %d čëč ńčăíŕë %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "ăđĺřęŕ ďđč äĺěîíňčđŕíĺňî íŕ %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "ďđîńň"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "ńúđâúđ"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Íĺ ěîćĺňĺ äŕ čçďîëçâŕňĺ JFS çŕ ä˙ë ďî-ěŕëúę îň 16 ĚÁ"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Íĺ ěîćĺňĺ äŕ číńňŕëčđŕíĺ ReiserFS íŕ ä˙ë ďî-ěŕëúę îň 32 ĚÁ"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Ňî÷ęčňĺ íŕ ěîíňčđŕíĺ ňđ˙áâŕ äŕ çŕďî÷âŕň ń /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Âĺ÷ĺ čěŕ ä˙ë ń ňŕçč ě˙ńňî íŕ ěîíňčđŕíĺ %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Íĺ ěîćĺňĺ äŕ čçďîëçâŕňĺ LVM ëîăč÷ĺńęč ňčď çŕ ě˙ńňî íŕ ěîíňčđŕíĺ %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Ňŕçč äčđĺęňîđč˙ ňđ˙áâŕ äŕ îńňŕíĺ â đŕěęčňĺ íŕ root ôŕéëîâŕňŕ ńčńňĺěŕ."
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Íóćäŕĺňĺ ńĺ îň čńňčíńęŕ ôŕéëîâŕ ńčńňĺěŕ (ext2, reiserfs) çŕ ňŕçč ňî÷ęŕ íŕ "
-"ěîíňčđŕíĺ\n"
-
-#: ../../fsedit.pm_.c:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Íĺ ěîćĺňĺ äŕ čçďîëçâŕňĺ LVM ëîăč÷ĺńęč ňčď çŕ ě˙ńňî íŕ ěîíňčđŕíĺ %s"
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ ŕâňîěŕňč÷íî çŕĺěŕíĺ"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Ăđĺřęŕ ďđč îňâŕđ˙íĺ íŕ %s çŕ çŕďčń: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Ďî˙âč ńĺ ăđĺřęŕ - íĺ ńŕ îňęđčňč âŕëčäíč óńňđîéńňâŕ, âúđőó ęîčňî äŕ áúäŕň "
-"ńúçäŕäĺíč íîâč ôŕéëîâč ńčńňĺěč. Ěîë˙ ďđîâĺđĺňĺ ňâúđäč˙ ńč äčńę ńč çŕ "
-"ďđč÷číŕňŕ çŕ ňîçč ďđîáëĺě"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Í˙ěŕňĺ íčęŕęâč ä˙ëîâĺ!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux ĺ ěíîăîďîňđĺáčňĺëńęŕ ńčńňĺěŕ, ęî˙ňî îçíŕ÷ŕâŕ, ÷ĺ âńĺęč ďîňđĺáčňĺë "
-"ěîćĺ\n"
-"äŕ čěŕ ńâîč ďđĺäďî÷ĺňŕíč˙, ôŕéëîâĺ č ň.í.. ěîćĺňĺ äŕ ďđî÷ĺňĺňĺ Đúęîâîńňâîňî "
-"íŕ\n"
-"Ďîňđĺáčňĺë˙, çŕ äŕ íŕó÷čňĺ ďîâĺ÷ĺ.\n"
-"Çŕ đŕçëčęŕ îň Root, ęîéňî ĺ ŕäěčíčńňđŕňîđúň, ďîňđĺáčňĺëčňĺ, ęîčňî ůĺ "
-"äîáŕâčňĺ ňóę\n"
-"í˙ěŕ äŕ ěîăŕň äŕ ďđîěĺí˙ň íčůî îńâĺí ńîáńňâĺíčňĺ ńč ôŕéëîâĺ č ňĺőíčňĺ "
-"íŕńňđîéęč.\n"
-"Ůĺ ňđ˙áâŕ äŕ ńúçäŕäĺňĺ ďîíĺ ĺäčí îáčęíîâĺí ďîňđĺáčňĺë çŕ ńĺáĺ ńč.\n"
-"Ń ňîçč ŕęŕóíň ůĺ ňđ˙áâŕ äŕ âëčçŕňĺ çŕ đóňčííŕ äĺéíîńň. Âúďđĺęč ňîâŕ "
-"ďđŕęňčęŕňŕ\n"
-"äŕ âëčçŕňĺ ęŕňî root ĺćĺäíĺâíî, ěîćĺ äŕ áúäĺ ěíîăî îďŕńíŕ ! Č íŕé-"
-"ěŕëęŕňŕăđĺřęŕ\n"
-"ěîćĺ äŕ îçíŕ÷ŕâŕ, ÷ĺ ńčńňĺěŕňŕ âč í˙ěŕ äŕ đŕáîňč ďîâĺ÷ĺ. Ŕęî íŕďđŕâčňĺ í˙ęî˙ "
-"ńĺđčîçíŕ\n"
-"ăđĺřęŕ ęŕňî ďîňđĺáčňĺë, ňîâŕ ěîćĺ ńŕ äŕ äîâĺäĺ äî çŕăóáŕ íŕ ÷ŕńň îň "
-"číôîđěŕöč˙ňŕ,\n"
-"íî íĺ č íŕ ö˙ëŕňŕ ńčńňĺěŕ.\n"
-"\n"
-"Ďúđâî, ňđ˙áâŕ äŕ ńč âúâĺäĺňĺ čěĺňî. Ňîâŕ íĺ ĺ çŕäúëćčňĺëíî, đŕçáčđŕ ńĺ, "
-"âńúůíîńň\n"
-"ěîćĺňĺ äŕ âúâĺäĺňĺ ęŕęâîňî č äŕ ĺ. DrakX ńëĺä ňîâŕ ůĺ čçáĺđĺ ďúđâŕňŕ "
-"âúâĺäĺíŕ\n"
-"â ęóňčéęŕňŕ äóěŕ č ůĺ ăî čçęŕđŕ ęŕňî ďîňđĺáčňĺëńęî čěĺ. Ňîâŕ ĺ čěĺňî, ń "
-"ęîĺňî\n"
-"âńúůíîńň îďđĺäĺëĺíč˙ň ďîňđĺáčňĺë ůĺ âëčçŕ â ńčńňĺěŕňŕ. Ěîćĺňĺ äŕ ăî "
-"ďđîěĺíčňĺ.\n"
-"Ňđ˙áâŕ äŕ âúâĺäĺňĺ č ďŕđîëŕ ňóę. Ďŕđîëŕňŕ íŕ íĺďđĺâčëĺăčđîâŕí (îáčęíîâĺí) "
-"ďîňđĺáčňĺë\n"
-"íĺ ĺ ňîëęîâŕ ôŕňŕëíŕ ęŕňî ňŕçč íŕ Root îň ăëĺäíŕ ňî÷ęŕ íŕ ńčăóđíîńňňŕ, íî "
-"âńĺ\n"
-"ďŕę í˙ěŕ ďđč÷číŕ äŕ ˙ ďîäöĺí˙âŕňŕ, ňúé ęŕňî đčńęóâŕňĺ ôŕéëîâĺňĺ ńč.\n"
-"\n"
-"Ńëĺä ęŕňî öúęíĺňĺ íŕ \"Ďđčĺěč ďîňđĺáčňĺë\", ěîćĺňĺ äŕ äîáŕâčňĺ ęîëęîňî ńč "
-"čńęŕňĺ.\n"
-"Äîáŕâĺňĺ ďî ĺäčí ďîňđĺáčňĺë çŕ âńĺęč îň ďđč˙ňĺëčňĺ ńč: áŕůŕ ńč, ńĺńňđŕ ńč, "
-"íŕďđčěĺđ.\n"
-"Ęîăŕňî ńňĺ äîáŕâčëč âńč÷ęč ďîňđĺáčňĺëč, ęîčňî čńęŕňĺ, öúęíĺňĺ Ăîňîâî.\n"
-"\n"
-"Öúęíĺňĺ íŕ áóňîíŕ \"Íŕďđĺäíč÷ŕâ\", çŕ äŕ ďđîěĺíčňĺ îáâčâęŕňŕ ďî ďîäđŕçáčđŕíĺ "
-"íŕ\n"
-"ďîňđĺáčňĺë˙ (bash ďî ďîäđŕçáčđŕíĺ)."
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Ďî-ăîđĺ ńŕ čçáđîĺíč çŕńĺ÷ĺíčňĺ Linux ä˙ëîâĺ ńúůĺńňâóâŕůč\n"
-"íŕ ňâúđäč˙ âč äčńę. Ěîćĺňĺ äŕ çŕďŕçčňĺ čçáîđŕ íŕďđŕâĺí îň ěŕăüîńíčęŕ, ňĺ ńŕ\n"
-"äîáđč çŕ îáůŕ óďîňđĺáŕ. Ŕęî ăč ďđîěĺíčňĺ, ňđ˙áâŕ äŕ ďîíĺ äŕ îďđĺäĺëčňĺ\n"
-"root ä˙ë (\"/\"). Íĺ čçáčđŕéňĺ ďđĺęŕëĺíî ěŕëęč ä˙ëîâĺ, çŕůîňî í˙ěŕ äŕ "
-"ěîćĺňĺ\n"
-"äŕ číńňŕëčđŕňĺ äîńňŕňú÷íî ńîôňóĺđ. Ŕęî čńęŕňĺ äŕ ńúőđŕí˙âŕňĺ äŕííčňĺ ńč íŕ\n"
-"îňäĺëĺí ä˙ë, ňđ˙áâŕ äŕ čçáĺđĺňĺ \"/home\" (âúçěîćíî ĺ ńŕěî, ŕęî čěŕňĺ "
-"ďîâĺ÷ĺ\n"
-"îň ĺäčí Linux ä˙ë).\n"
-"\n"
-"\n"
-"Çŕ číôîđěŕöč˙, âńĺęč ä˙ë ĺ ďîęŕçŕí, ęŕęňî ńëĺäâŕ: \"Čěĺ\", \"Ęŕďŕöčňĺň\".\n"
-"\n"
-"\n"
-"\"Čěĺňî\" ńĺ ęîäčđŕ ęŕęňî ńëĺäâŕ: \"ňčď íŕ äčńęŕ\", \"íîěĺđ íŕ äčńęŕ\",\n"
-"\"íîěĺđ íŕ ä˙ë\" (íŕďđčěĺđ, \"hda1\").\n"
-"\n"
-"\n"
-"\"Ňčďúň íŕ äčńęŕ\" ěîćĺ äŕ ĺ \"hd\", ŕęî ĺ IDE ňâúđä äčńę, čëč \"sd\", ŕęî "
-"ĺ\n"
-"SCSI ňâúđä äčńę.\n"
-"\n"
-"\n"
-"\"Íîěĺđúň íŕ äčńęŕ\" âčíŕăč ĺ áóęâŕňŕ ńëĺä \"hd\" čëč \"sd\". Ďđč IDE "
-"äčńęîâĺ:\n"
-"\n"
-" * \"a\" îçíŕ÷ŕâŕ \"master äčńę íŕ ďúđâč˙ IDE ęîíňđîëĺđ\",\n"
-" * \"b\" îçíŕ÷ŕâŕ \"slave äčńę íŕ ďúđâč˙ IDE ęîíňđîëĺđ\",\n"
-" * \"c\" îçíŕ÷ŕâŕ \"master äčńę íŕ âňîđč˙ IDE ęîíňđîëĺđ\",\n"
-" * \"d\" îçíŕ÷ŕâŕ \"slave äčńę íŕ âňîđč˙ IDE ęîíňđîëĺđ\".\n"
-"\n"
-"\n"
-"Ďđč SCSI óńňđîéńňâŕ, \"a\" îçíŕ÷ŕâŕ \"ďúđâč ňâúđä äčńę\", \"b\" îçíŕ÷ŕâŕ "
-"\"âňîđč ňâúđä äčńę\" č ň.í.."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"Číńňŕëŕöč˙ňŕ íŕ Mandrake Linux ĺ đŕçďîëîćĺíŕ íŕ í˙ęîëęî CDROM-ŕ. DrakX\n"
-"çíŕĺ äŕëč čçáđŕí ďŕęĺň íĺ ńĺ íŕěčđŕ íŕ äđóă CDROM čëč ůĺ čçâŕäč ňĺęóůîňî\n"
-"CD č ůĺ âč îńňŕâč äŕ âęŕđŕňĺ ňîâŕ, îň ęîĺňî čěŕ íóćäŕ."
-
-#: ../../help.pm_.c:77
-#, fuzzy
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"Ńĺăŕ ĺ ěîěĺíňúň äŕ îďđĺäĺëčňĺ ęîč ďđîăđŕěč čńęŕňĺ äŕ áúäŕň číńňŕëčđŕíč íŕ\n"
-"ńčńňĺěŕňŕ âč. Â Mandrake Linux äčńňđčáóöč˙ňŕ čěŕ őčë˙äč ďŕęĺňč, íî íĺ ĺ\n"
-"çŕäúëćčňĺëíî äŕ ăč çíŕĺňĺ íŕčçóńň.\n"
-"\n"
-"Ŕęî čçâúđřâŕňĺ ńňŕíäŕđňíŕ číńňëŕöč˙ îň CDROM, ďúđâî ůĺ áúäĺňĺ ďîďčňŕíč ęîč\n"
-"CD-ňŕ čěŕňĺ (â Ĺęńďĺđňĺí đĺćčě). Ďđîâĺđĺňĺ çŕăëŕâč˙ňŕ íŕ CD-ňŕňŕ č ďîńî÷ĺňĺ\n"
-"ęóňčéęčňĺ ńúîňâĺňńňâŕůč íŕ CD-ňŕňŕ, ń ęîčňî đŕçďîëŕăŕňĺ. Öúęíĺňĺ \"OK\",\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"
-"ďđč ďîďđŕâęŕ čëč îáíîâ˙âŕíĺ íŕ ńúůĺńňâóâŕůŕňŕ ńčńňĺěŕ."
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Íŕęđŕ˙, â çŕâčńčěîńň îň čçáîđŕ âč äŕëč äŕ čçáčđŕňĺ ďŕęĺňč ĺäčí ďî ĺäčí, ůĺ\n"
-"âč áúäĺ ďđĺäńňŕâĺíî äúđâî ńúäúđćŕůî âńč÷ęč ďŕęĺňč ďîäđĺäĺíč ďî ăđóďč č\n"
-"ďîäđăđóďč. Äîęŕňî îáőîćäŕňĺ äúđâîňî, ěîćĺňĺ äŕ čçáĺđĺňĺ öĺëč ăđóďč, "
-"ďîäăđóďč\n"
-"čëč îňäĺëíč ďŕęĺňč.\n"
-"\n"
-"Ęîăŕňî ďîńî÷čňĺ ďŕęĺň îň äúđâîňî, ůĺ ńĺ ďî˙âč îďčńŕíčĺ âä˙ńíî. Ęîăŕňî\n"
-"čçáîđúň ĺ ďđčęëţ÷ĺí, öúęíĺňĺ áóňîíŕ \"Číńňŕëčđŕé\", ęîéňî ůĺ ďóńíĺ ďđîöĺńŕ\n"
-"íŕ číńňŕëŕöč˙. Â çŕâčńčěîńň îň ńęîđîńňňŕ íŕ őŕđäóĺđŕ âč č áđî˙ íŕ ďŕęĺňčňĺ,\n"
-"ęîčňî čńęŕňĺ äŕ áúäŕň číńňŕëčđŕíč, ďđîöĺńúň ěîćĺ äŕ îňíĺěĺ čçâĺńňíî âđĺěĺ.\n"
-"Î÷ŕęâŕíîňî âđĺěĺ çŕ ďđčęëţ÷âŕíĺ íŕ ďđîöĺńŕ, ÷ĺ áúäĺ ďîęŕçŕíî íŕ ĺęđŕňŕ, çŕ\n"
-"äŕ âč ďîěîăíĺ äŕ ďđĺöĺíčňĺ äŕëč čěŕňĺ äîńňŕňú÷íî âđĺěĺ äŕ ńĺ íŕńëŕäčňĺ íŕ\n"
-"÷ŕřŕ ęŕôĺ.\n"
-"\n"
-"!! Ŕęî ĺ čçáđŕí ńúđâúđĺí ďŕęĺň, áčëî ňî óěčřëĺíî čëč çŕůîňî ĺ ÷ŕńň îň ö˙ëŕ\n"
-"ăđóďŕ, ůĺ áúäĺňĺ ďîěîëĺíč çŕ ďîňâúđćäĺíčĺ, ÷ĺ íŕčńňčíŕ čńęŕňĺ ňîçč ńúđâúđ\n"
-"äŕ áúäĺ číńňŕëčđŕí.  Mandrake Linux, âńč÷ęč ńúđâúđč ňđúăâŕň ďî "
-"ďîäđŕçáčđŕíĺ\n"
-"ďđč çŕđĺćäŕíĺ.Äŕćĺ ŕęî ńŕ ńčăóđíč č í˙ěŕň čçâĺńňíč ďđîáëĺěč, ęîăŕňî\n"
-"äčńňđčáóöč˙ňŕ ńĺ đŕçďđîńňđŕí˙âŕ, ěîćĺ äŕ ńĺ ńëó÷č ňŕęŕ, ÷ĺ äŕ ńĺ ďî˙â˙ň\n"
-"äóďęč â ńčăóđíîńňňŕ, ńëĺä ęŕňî âĺđńč˙ňŕ íŕ Mandrake Linux ĺ çŕâúđřĺíŕ. Ŕęî\n"
-"íĺ çíŕĺňĺ çŕ ęŕęâî ńëóćč îďđĺäĺëĺíŕ óńëóăŕ čëč çŕůî ĺ číńňŕëčđŕíŕ, öúęíĺňĺ\n"
-"\"Íĺ\". Ń öúęŕíĺ íŕ \"Äŕ\" ůĺ číńňŕëčđŕňĺ čçáđîĺíč óńëóăč č ňĺ ůĺ áúäŕň\n"
-"ńňŕđňčđŕíč ŕâňîěŕňč÷íî ďî ďîäđŕçáčđŕíĺ. !!\n"
-"\n"
-"Îďöč˙ňŕ \"Ŕâňîěŕňč÷íč çŕâčńčěîńňč\" čçęëţ÷âŕ ďđĺäóďđĺäčňĺëíčňĺ äčŕëîçč,\n"
-"ęîăŕňî číńňŕëŕňîđúň ŕâîěŕňč÷íî đĺřč čçáĺđĺ ďŕęĺň. Ňîâŕ ńĺ ńëó÷âŕ, çŕůîňî\n"
-"ĺ đĺřčë, ÷ĺ ńĺ íóćäŕĺ äŕ çŕäîâîëč çŕâčńčěîńň ń äđóă ďŕęĺň, çŕ äŕ ďđčęëţ÷č\n"
-"óńďĺříî číńňŕëŕöč˙ňŕ.\n"
-"\n"
-"Ěŕëęŕňŕ čęîíęŕ íŕ äčńęĺňęŕ â äúíîňî íŕ ńďčńúęŕ ďîçâîë˙âŕ äŕ çŕđĺäčňĺ ńďčńúę\n"
-"ń ďŕęĺňč îň ďđĺäčříŕ číńňŕëŕöč˙. Ŕęî öúęíĺňĺ íŕ ňŕçč čęîíęŕ, ůĺ áúäĺňĺ\n"
-"ďîěîëĺíč äŕ âęŕđŕňĺ äčńęĺňŕ ńúçäŕäĺíŕ ďđĺäč ňîâŕ â ęđŕ˙ íŕ äđóăŕ "
-"číńňŕëŕöč˙.\n"
-"Âčćňĺ âňîđŕňŕ ďîäńęŕçęŕ ďî âđĺěĺ íŕ ďîńëĺäíŕňŕ ńňúďęŕ, çŕ ňîâŕ ęŕę äŕ\n"
-"ńúçäŕäĺňĺ ňŕęŕâŕ äčńęĺňŕ."
-
-#: ../../help.pm_.c:164
-#, fuzzy
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"Ŕęî čńęŕňĺ äŕ ńâúđćĺňĺ ęîěďţňúđŕ ńč ęúě Číňĺđíĺň čëč ęúě ëîęŕëíŕ ěđĺćŕ, "
-"ěîë˙\n"
-"čçáĺđĺňĺ ďîäőîä˙ůŕňŕ îďöč˙. Ěîë˙, âęëţ÷ĺňĺ óńňđîéńňâîňî ńč ďđĺäč äŕ "
-"čçáĺđĺňĺ\n"
-"îďöč˙ňŕ, çŕ äŕ äŕäĺňĺ âúçěîćíîńň íŕ DrakX äŕ ăî çŕńĺ÷ĺ.\n"
-"\n"
-"Mandrake Linux čçâúđřâŕ íŕńňđîéęŕňŕ íŕ Číňĺđíĺň âđúçęŕňŕ ďî âđĺěĺ íŕ\n"
-"číńňŕëŕöč˙. Äîńňúďíčňĺ âđúçęč: îáčęíîâĺí ěîäĺě, ISDN ěîäĺě, ADSL âđúçęŕ,\n"
-"ęŕáĺëĺí ěîäĺě č íŕęđŕ˙ îáčęíîâĺíŕ LAN âđúçęŕ (Ethernet).\n"
-"\n"
-"Ňóę í˙ěŕ ďîäđîáíî äŕ đŕçăëĺćäŕěĺ âń˙ęŕ íŕńňđîéęŕ. Ďđîńňî áúäĺňĺ ńčăóđíč, ÷ĺ\n"
-"čěŕňĺ äîńňŕňú÷íî äŕííč îň Číňĺđíĺň äîńňŕâ÷čęŕ ńč čëč ńčńňĺěíč˙\n"
-"ŕäěčíńčňđŕňîđ.\n"
-"\n"
-"Ěîćĺňĺ äŕ ńĺ ęîíńóëňčđŕňĺ ń ăëŕâŕňŕ â đúęîâîäńňâîňî çŕ Číňĺđíĺň âđúçęčňĺ çŕ\n"
-"ďîäđîáíîńňč çŕ íŕńňđîéęŕňŕ čëč ďđîńňî čç÷ŕęŕéňĺ ńčńňĺěŕňŕ âč äŕ áúäĺ\n"
-"číńňŕëčđŕíŕ č čçďîëçâŕéňĺ ďđîăđŕěŕňŕ îďčńŕíŕ ňŕě, çŕ äŕ íŕńňđîčňĺ âđúçęŕňŕ.\n"
-"\n"
-"Ŕęî čńęŕňĺ äŕ íŕńňđîčňĺ ěđĺćŕňŕ ďî-ęúńíî ńëĺä číńňŕëŕöč˙ čëč ŕęî ńňĺ "
-"ńâúđřčëč\n"
-"ń íŕńňđîéęŕňŕ íŕ ěđĺćŕňŕ, öúęíĺňĺ \"Îňęŕç\"."
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Ńĺăŕ ěîćĺňĺ äŕ čçáĺđĺňĺ ęîč óńëóăč äŕ ńĺ ďóńęŕň ďđč ńňŕđňčđŕíĺ.\n"
-"\n"
-"Ňóę ńŕ ďđĺäńňŕâĺíč âńč÷ęč óńëóăč, äîńňúďíč ń íŕńňî˙ůŕňŕ číńňŕëŕöč˙.\n"
-"Ďđĺăëĺäŕéňĺ ăč âíčěŕňĺëíî č čçęëţ÷ĺňĺ ňĺçč, ęîčňî íĺ âč ňđ˙áâŕň âčíŕăč ďđč "
-"ńňŕđňčđŕíĺ.\n"
-"\n"
-"Ěîćĺňĺ âčäčňĺ ęđŕňúę îá˙ńíčňĺëĺí ňĺęńň çŕ óńëóăŕňŕ, ęŕňî ďîńňŕâčňĺ ęóđîđŕ íŕ "
-"ěčřęŕňŕ ńč\n"
-"íŕä čěĺňî íŕ óńëóăŕňŕ. Ŕęî íĺ ńňĺ ńčăóđíč, äŕëč óńëóăŕňŕ ĺ ďîëĺçíŕ čëč íĺ, "
-"ďî-äîáđĺ\n"
-"ĺ äŕ îńňŕâčňĺ čçáîđŕ ďî ďîäđŕçáčđŕíĺ.\n"
-"\n"
-"Âíčěŕâŕéňĺ ń ňŕçč ńňúďęŕ, ŕęî ńě˙ňŕňĺ äŕ čçďîëçâŕňĺ ěŕřčíŕňŕ ńč ęŕňî "
-"ńúđâúđ:\n"
-"ńčăóđíî íĺ áčőňĺ čńęŕëč äŕ ďóńęŕňĺ óńëóăč, îň ęîčňî íĺ ńĺ íóćäŕĺňĺ. Ěîë˙,\n"
-"çŕďîěíĺňĺ, ÷ĺ í˙ęîč óńëóăč ěîăŕň äŕ áúäŕň îďŕńíč, ŕęî ńŕ âęëţ÷ĺíč íŕ "
-"ńúđâúđŕ.\n"
-"Ďî ďđčíöčď, čçáčđŕéňĺ ńŕěî óńëóăčňĺ, îň ęîčňî íŕčńňčíŕ ńĺ íóćäŕĺňĺ."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-#, fuzzy
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X (îđ X Window System) ĺ ńúđöĺňî íŕ GNU/Linux ăđŕôč÷íč˙ číňĺđôĺéń, íŕ ęîéňî\n"
-"ńĺ îńëŕí˙ň ăđŕôč÷íčňĺ ńđĺäč (KDE, Gnome, AfterStep, WindowMaker...) "
-"ńâúđçŕíč\n"
-"ń Mandrake Linux.  ňŕçč ńĺęöč˙, DrakX ůĺ ńĺ ŕâňîěŕňč÷íî äŕ íŕńňđîč X.\n"
-"\n"
-"Čçęëţ÷čňĺëíî đ˙äęî ńĺ ńëó÷âŕ äŕ ńĺ ďđîâŕëč, îńâĺí ŕęî őŕđäóĺđúň íĺ ĺ ěíîăî\n"
-"ńňŕđ (čëč ďđĺęŕëĺíî íîâ). Ŕęî óńďĺĺ, ůĺ ńňŕđňčđŕ X ŕâňîěŕňč÷íî ń íŕé-"
-"äîáđŕňŕ\n"
-"đŕçäĺëčňĺëíŕ ńďîńîáíîńň â çŕâčńčěîńň îň ăîëĺěčíŕňŕ íŕ ěîíčňîđŕ âč. Ůĺ ńĺ\n"
-"ďî˙âč ďđîçîđĺö, çŕ äŕ âč ďîďčňŕ äŕëč ăî âčćäŕňĺ.\n"
-"\n"
-"Ŕęî čçâúđřâŕňĺ \"Ĺęńďĺđňíŕ\" číńňŕëŕöč˙, ůĺ áúäĺňĺ âúâĺäĺíč â ěŕăüîńíčęŕ çŕ\n"
-"íŕńňđîéęŕ íŕ X. Âčćňĺ ńúîňâĺňíŕňŕ ńĺęöč˙ íŕ đúęîâîäńňâîňî çŕ ďîâĺ÷ĺ\n"
-"číôîđěŕöč˙ çŕ ěŕăüîńíčęŕ.\n"
-"\n"
-"Ŕęî âčäčňĺ ńúîáůĺíčĺňî, íŕňčńíĺňĺ \"Äŕ\", ńëĺä ęîĺňî DrakX ůĺ ďđîäúëćč ńúń\n"
-"ńëĺäâŕůŕňŕ ńňúďęŕ. Ŕęî íĺ âčäčňĺ ńúîáůĺíčĺňî, ňîâŕ îçíŕ÷ŕâŕ, ÷ĺ íŕńňđîéęŕňŕ\n"
-"ĺ ńăđĺřĺíŕ č ňĺńňúň ŕâňîěŕňč÷íî ůĺ áúäĺ ďđčęëţ÷ĺí ńëĺä 10 ńĺęóíäč,\n"
-"âúçńňŕíîâ˙âŕéęč ĺęđŕíŕ."
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Ďúđâč˙ ďúň, ęîăŕňî îďčňŕňĺ íŕńňđîéęŕňŕ íŕ X, ěîćĺ áč í˙ěŕ äŕ ńňĺ äîâîëíč îň\n"
-"îň âčäŕ (ĺęđŕíúň ĺ ďđĺęŕëĺíî ěŕëúę, îňěĺńňĺí íŕë˙âî čëč íŕä˙ńíî...). "
-"Âúďđĺęč\n"
-"ňîâŕ, äŕćĺ ŕęî X ňđúăíĺ ęŕňî őîđŕňŕ, DrakX ůĺ âč ďîďčňŕ äŕëč íŕńňđîéęŕňŕ âč\n"
-"äîďŕäŕ. Ńúůî ňŕęŕ, ÷ĺ âč ďđĺäëîćč ďđîě˙íŕ, ęŕňî ďîęŕćĺ ńďčńúę íŕ âŕëčäíč\n"
-"đĺćčěč, ęîčňî ĺ óńď˙ë äŕ íŕěĺđč, ń ěîëáŕ äŕ ďîńî÷čňĺ ĺäčí.\n"
-"\n"
-"Ęŕňî ďîńëĺäíŕ âúçěîćíîńň, ŕęî âńĺ îůĺ íĺ ěîćĺňĺ äŕ ďîäęŕđŕňĺ X, čçáĺđĺňĺ\n"
-"\"Ďđîě˙íŕ íŕ ăđŕôč÷íŕňŕ ęŕđňŕ\", ďîńî÷čňĺ \"Íĺčçáđîĺíŕ ęŕđňŕ\", č, ęîăŕňî\n"
-"áúäĺňĺ ďîďčňŕíč ęîé ńúđâúđ äŕ áúäĺ čçďîëçâŕí, čçáĺđĺňĺ \"FBDev\". Ňîâŕ ĺ\n"
-"áĺçăđĺříŕ îďöč˙, ęî˙ňî đŕáîňč íŕ âń˙ęŕ ďî-íîâŕ ęŕđňŕ. Ňîăŕâŕ čçáĺđĺňĺ "
-"\"Îďčňŕé ďŕę\", çŕ äŕ ńňĺ ńčăóđíč."
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Íŕęđŕ˙, ůĺ áúäĺňĺ ďîďčňŕíč äŕëč čńęŕňĺ äŕ âčćäŕňĺ ăđŕôč÷íč˙ číňĺđôĺéń ďđč\n"
-"çŕđĺćäŕíĺ. Îňáĺëĺćĺňĺ, ÷ĺ ňîçč âúďđîń ůĺ âč áúäĺ çŕäŕäĺí äŕćĺ ŕęî čçáĺđĺňĺ,\n"
-"äŕ íĺ ňĺńňâŕňĺ íŕńňđîéęŕňŕ. Î÷ĺâčäíî, áčőňĺ îňăîâîđčëč ń \"Íĺ\", ŕęî "
-"ěŕřčíŕňŕ\n"
-"ůĺ đŕáîňč ęŕňî ńúđâúđ čëč ŕęî í˙ěŕ óńďĺříî íŕńňđîĺí äčńďëĺé."
-
-#: ../../help.pm_.c:256
-#, fuzzy
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"Mandrake Linux CDROM-úň čěŕ âăđŕäĺí ńďŕńčňĺëĺí đĺćčě. Ěîćĺňĺ äŕ ăî\n"
-"äîńňčăíĺňĺ, ęŕňî ńňŕđňčđŕňĺ îň CDROM-ŕ, íŕňčńíĺňĺ ęëŕâčřŕ >>F1<< č íŕďčřĺňĺ\n"
-">>rescue<<. Íî ńëó÷ŕé, ÷ĺ ęîěďţňúđúň íĺ ěîćĺ äŕ ńňŕđňčđŕ îň CDROM, ůĺ "
-"ňđ˙áâŕ\n"
-"äŕ ńĺ âúđíĺňĺ ęúě ňŕçč ńňúďęŕ çŕ ďîěîů â ďîíĺ äâĺ ńčňóŕöčč:\n"
-"\n"
-" * ęîăŕňî čńíňŕëčđŕňĺ boot loader, DrakX ůĺ ďđĺçŕďčřĺ ńňŕđňîâč˙ ńĺęňîđ (MBR) "
-"íŕ ăëŕâíč˙ âč äčńę (îńâĺí ŕęî íĺ čçďîëçâŕňĺ äđóă ńňŕđňîâ ěĺíčäćúđ), ňŕęŕ ÷ĺ\n"
-"äŕ ńňŕđňčđŕňĺ Windows čëč GNU/Linux (ŕęî čěŕňĺ Windows â ńčńňĺěŕňŕ ńč). Ŕęî\n"
-"ńĺ íóćäŕĺňĺ äŕ ďđĺčíńňŕëčđŕňĺ Windows, číńňŕëŕöčîííč˙ ďđîöĺń íŕ Microsoft\n"
-"ůĺ ďđĺçŕďčřĺ ńňŕđňîâč˙ ńĺęňîđ č í˙ěŕ äŕ ěîćĺňĺ äŕ ďóńíĺňĺ âŕřč˙ GNU/Linux!\n"
-"\n"
-" * ŕęî ńĺ ďî˙âč ďđîáëĺě č íĺ ěîćĺňĺ äŕ ďóńíĺňĺ GNU/Linux îň ňâúđäč˙ ńč "
-"äčńę,\n"
-"ňŕçč äčńęĺňŕ ůĺ čěŕ çŕ öĺë ńŕěî äŕ ńňŕđňčđŕ GNU/Linux. Ň˙ ńúäúđćŕ "
-"çŕäîâîëčňĺëĺí\n"
-"áđîé ńčńňĺěíč číńňđóěĺíňč çŕ âúçńňŕíîâ˙âŕíĺ íŕ ńčńňĺěŕ, ęî˙ňî ĺ çŕáčëŕ ńëĺä\n"
-"ńđčâ â çŕőđŕíâŕíĺňî, ńëó÷ŕéíŕ ăđĺřęŕ, ăđĺřęŕ â ďŕđîëŕňŕ čëč í˙ęŕęâŕ äđóăŕ\n"
-"ďđč÷číŕ.\n"
-"\n"
-"Ęîăŕňî öúęíĺňĺ íŕ ňŕçč ńňúďęŕ, ůĺ áúäĺňĺ ďîěîëĺíč äŕ ďîńňŕâčňĺ äčńę â\n"
-"óńňđîéńňâîňî. Äčńęĺňŕňŕ, ęî˙ňî âęŕđŕňĺ, ňđ˙áâŕ äŕ áúäĺ ďđŕçíŕ čëč äŕ "
-"ńúäúđćŕ\n"
-"äŕííč, îň ęîčňî íĺ ńĺ íóćäŕĺňĺ. Í˙ěŕ íóćäŕ äŕ ˙ ôîđěŕňčđŕňĺ, ňúé ęŕňî DrakX\n"
-"ůĺ ďđĺçŕďčřĺ ö˙ëŕňŕ äčńęĺňŕ."
-
-#: ../../help.pm_.c:280
-#, fuzzy
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Â ňîçč ěîěĺíň ňđ˙áâŕ čçáĺđĺňĺ ęúäĺ íŕ ňâúđäč˙ ńč äčńęŕ äŕ číńňŕëčđŕňĺ "
-"âŕřŕňŕ\n"
-"Mandrake Linux îďĺđŕöčîííŕ ńčńňĺěŕ. Ŕęî ňâúđäč˙ň âč äčńę ĺ ďđŕçĺí čëč äđóăŕ\n"
-"îďĺđŕöčîííŕ ńčńňĺěŕ čçďîëçâŕ ö˙ëîňî ďđîńňđŕíńňâî, ůĺ ňđ˙áâŕ äŕ ăî "
-"đŕçäĺëčňĺ.\n"
-"Ęŕçŕíî ďđîńňč÷ęî, đŕçäĺë˙íĺňî íŕ ňâúđäč˙ äčńę ńĺ ńúńňîč â ëîăč÷ĺńęî "
-"đŕçäĺë˙íĺ\n"
-"öĺë äŕ ńĺ ńúçäŕäĺ ě˙ńňî çŕ číńňŕëŕöč˙ íŕ íîâŕňŕ Mandrake Linux ńčńňĺěŕ.\n"
-"\n"
-"Ňúé ęŕňî ďđîöĺńúň íŕ đŕçäĺë˙íĺ îáčęíîâĺíî ĺ íĺîáđŕňčě, đŕçäĺë˙íĺňî ěîćĺ äŕ\n"
-"čçăëĺćäŕ ďëŕřĺů č ńňđ˙ńęŕů, ŕęî ńňĺ íĺîďčňĺí ďîňđĺáčňĺë. Ńëŕâŕ Áîăó, čěŕ\n"
-"ěŕăüîńíčę, ęîéňî îďđîńň˙âŕ ňîçč ďđîöĺń. Ďđĺäč äŕ çŕďî÷íĺňĺ, ęîíńóëňčđŕéňĺ "
-"ńĺ\n"
-"ń đúęîâîäńňâîňî č íĺ áúđçŕéňĺ.\n"
-"\n"
-"Ŕęî ďóńęŕňĺ číńňŕëŕöč˙ňŕ â Ĺęńďĺđňĺí đĺćčě, ůĺ áúäĺňĺ âúâĺäĺíč â DiskDrake,\n"
-"đŕçäĺë˙ůč˙ číńňđóěĺíň íŕ Mandrake Linux, ęîéňî âč ďîçâîë˙âŕ äŕ äîíŕńňđîčňĺ\n"
-"ä˙ëîâĺňĺ ńč. Âčćňĺ ăëŕâŕňŕ DiskDrake îň đúęîâîäńňâîňî. Îň číńňŕëŕöčîííč˙\n"
-"číňĺđôĺéń ěîćĺňĺ äŕ čçďîëçâŕňĺ ěŕăüîńíčöčňĺ, ęŕňî íŕňčńíĺňĺ áóňîíŕ\n"
-"\"Ěŕăüîńíčę\" íŕ äčŕëîăŕ.\n"
-"\n"
-"Ŕęî ä˙ëîâĺňĺ ńŕ âĺ÷ĺ îďđĺäĺëĺíč, äŕëč îň ďđĺäčříŕ číńňŕëŕöč˙ čëč îň äđóă\n"
-"čńňđóěĺíň çŕ đŕçäĺë˙íĺ, ďđîńňî čçáĺđĺňĺ íŕ ęîé äŕ číńňŕëčđŕňĺ Linux\n"
-"ńčńňĺěŕňŕ.\n"
-"\n"
-"Ŕęî ä˙ëîâĺňĺ íĺ ńŕ îďđĺäĺëĺíč, ůĺ ňđ˙áâŕ äŕ ńúçäŕäĺňĺ ňŕęčâŕ čçďîëçâŕéęč\n"
-"ěŕăüîńíčęŕ. Â çŕâčńčěîńň îň íŕńňđîéęŕňŕ íŕ ňâúđäč˙ äčńę, ńŕ âúçěîćíč "
-"í˙ęîëęî\n"
-"îďöčč:\n"
-"\n"
-" * \"Čçďîëçâŕé ńâîáîäíîňî ďđîńňđŕíńňâî\": ňŕçč îďöč˙ ďđîńňî ůĺ äîâĺäĺ ňî\n"
-"ŕâňîěŕňč÷íî ďîäĺë˙íĺ íŕ ďđŕçíîňî ďđîńňđŕíńňâî íŕ ňâúđäč˙ âč äčńę. Í˙ěŕ äŕ\n"
-"áúäĺňĺ ďčňŕíč çŕ ňîâŕ.\n"
-"\n"
-" * \"Čçďîëçâŕé ńúůĺńňâóâŕů ä˙ë\": ěŕăüîńíčęúň ĺ çŕń˙ęúë ĺäčí čëč ďîâĺ÷ĺ\n"
-"ńúůĺńňâóâŕůč Linux ä˙ëîâĺ íŕ ňâúđäč˙ âč äčńę. Ŕęî čńęŕňĺ äŕ ăč čçďîëçâŕňĺ,\n"
-"čçáĺđĺňĺ ňŕçč îďöč˙.\n"
-"\n"
-" * \"Čçďîëçâŕé ńâîáîäíîňî ďđîńňđŕíńňâî íŕ Windows ä˙ë\": ŕęî čěŕňĺ "
-"číńňŕëčđŕí\n"
-"Microsoft Windows íŕ ňâúđäč˙ ńč äčńę č ňîé çŕĺěŕ ö˙ëîňî äîńňúďíî\n"
-"ďđîńňđŕíńňâî íŕ íĺăî, ňđ˙áâŕ äŕ îńâîáîäčňĺ ě˙ńňî çŕ Linux äŕííč. Çŕ äŕ\n"
-"íŕďđŕâčňĺňîâŕ, ěîćĺňĺ äŕ čçňđčĺňĺ Microsoft Windows ä˙ëŕ č äŕííčňĺ (âčćňĺ\n"
-"đĺřĺíč˙ňŕ \"Čçňđčé öĺëč˙ äčńę\" čëč \"Ĺęďĺđňĺí đĺćčě\") čëč äŕ ďđîěĺíčňĺ\n"
-"ăîëĺěčíŕňŕ íŕ Microsoft Windows ä˙ëŕ. Ďđîě˙íŕňŕ íŕ ăîëĺěčíŕňŕ ěîćĺ äŕ áúäĺ\n"
-"čçâúđřĺíŕ áĺç çŕăóáŕ íŕ äŕííč. Ňîâŕ đĺřĺíčĺ ńĺ ďđĺďîđú÷âŕ, ŕęî čńęŕňĺ\n"
-"ĺäíîâđĺěĺííî Mandrake Linux č Microsoft Windows íŕ ĺäčí č ńúůč ęîěďţňúđ.\n"
-"\n"
-" Ďđĺäč äŕ čçáĺđĺňĺ ňŕçč îďöč˙, ěîë˙, đŕçáĺđĺňĺ, ÷ĺ ńëĺä ňŕçč ďđîöĺäóđŕ,\n"
-"ăîëĺěčíŕňŕ íŕ Microsoft Windows ä˙ëŕ ůĺ áúäĺ ďî-ěŕëęŕ, îňęîëęîňî ďđĺäč "
-"ňîâŕ.\n"
-"Ůĺ čěŕňĺ ďî-ěŕëęî ě˙ńňî ďîä Microsoft Windows çŕ ńúőđŕí˙âŕíĺ íŕ äŕííč čëč "
-"çŕ\n"
-"číńňŕëčđŕ íŕ íîâ ńîôňóĺđ.\n"
-"\n"
-" * \"Čçňđčé öĺëč˙ äčńę\": ŕęî čńęŕňĺ äŕ čçňđčĺňĺ âńč÷ęč äŕííč č ä˙ëîâĺ, "
-"ęîčňî\n"
-"ńúůĺńňâóâŕň íŕ âŕřč˙ ňâúđä äčńę č äŕ ăč çŕěĺíčňĺ ń íîâŕňŕ Mandrake Linux\n"
-"ńčńňĺěŕ, čçáĺđĺňĺ ňŕçč îďöč˙. Áúäĺňĺ âíčěŕňĺëíč ń ňîâŕ đĺřĺíč˙, çŕůîňî í˙ěŕ\n"
-"äŕ ěîćĺňĺ äŕ âúđíĺňĺ îáđŕňíî čçáîđŕ ńč, ńëĺä ęŕňî ďîňâúđäčňĺ.\n"
-"\n"
-" !! Ŕęî čçáĺđĺňĺ ňŕçč îďöč˙, âńč÷ęč äŕííč íŕ äčńęŕ âč ůĺ áúäŕň "
-"çŕăóáĺíč !!\n"
-"\n"
-" * \"Čçňđčé Windows\": Ňîâŕ ďđîńňî ůĺ čçňđčĺ âńč÷ęî íŕ äčńęŕ č ůĺ çŕďî÷íĺ "
-"íŕ\n"
-"÷čńňî, đŕçäĺë˙íĺ îň đŕç. Âń˙ęŕęâč äŕííč íŕ äčńęŕ âč ůĺ áúäŕň çŕăóáĺíč.\n"
-"\n"
-" !! Ŕęî čçáĺđĺňĺ ňŕçč îďöč˙, âńč÷ęč äŕííč íŕ äčńęŕ âč ůĺ áúäŕň "
-"çŕăóáĺíč !!\n"
-"\n"
-" * \"Ĺęńďĺđňĺí đĺćčě\": čçáĺđĺňĺ ňŕçč îďöč˙, ŕęî čńęŕňĺ đú÷íî äŕ đŕçäĺëčňĺ\n"
-"ňâúđäč˙ ńč äčńę. Áúäĺňĺ âíčěŕňĺëíč - ňîâŕ ĺ ěîůĺí, íî îďŕńĺí čçáîđ. Ěîćĺňĺ\n"
-"ěíîăî ëĺńíî äŕ çŕăóáčňĺ âńč÷ęč äŕííč. Ňŕęŕ ÷ĺ íĺ čçáčđŕéňĺ ňîâŕ, ŕęî íĺ\n"
-"çíŕĺňĺ ęŕęâî ďđŕâčňĺ."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"Ŕ ňŕęŕ ! Číńňŕëŕöč˙ňŕ ĺ çŕâúđřĺíŕ č GNU/Linux ńčńňĺěŕňŕ âč ĺ ăîňîâŕ çŕ\n"
-"óďîňđĺáŕ. Ďđîńňî öúęíĺňĺ \"OK\", çŕ äŕ đĺńňŕđňčđŕňĺ ńčńňĺěŕňŕ. Ěîćĺňĺ äŕ\n"
-"ńňŕđňčđŕňĺ GNU/Linux čëč Windows, ęîĺňî ďđĺäďî÷čňŕňĺ (ŕęî čěŕňĺ äâĺ "
-"ńčńňĺěč),\n"
-"âĺäíŕăŕ ńëĺä ęŕňî ęîěďţňúđúň ńňŕđňčđŕ îňíîâî.\n"
-"\n"
-"Áóňîíŕ \"Íŕďđĺäíč÷ŕâ\" (ńŕěî â \"Ĺęńďĺđňĺí\") ďîęŕçâŕ îůĺ äâŕ áóňîíŕ çŕ:\n"
-"\n"
-" * \"ăĺíĺđčđŕíĺ íŕ äčńęĺňŕ çŕ ŕâňîěŕňč÷íŕ číńňŕëŕöč˙\": çŕ äŕ ńúçäŕäĺňĺ\n"
-"číńňŕëŕöčîííŕ äčńęĺňŕ, ęî˙ňî ńëĺä ňîâŕ ŕâňîěŕňč÷íî äŕ čç÷úđřâŕ ö˙ëŕňŕ\n"
-"číńňŕëŕöč˙ áĺç ďîěîůňŕ íŕ îďĺđŕňîđ, ďđčëč÷ŕůŕ íŕ číńňŕëŕöč˙ňŕ, ęî˙ňî ňîęó-"
-"ůî\n"
-"ńňĺ čçâúđřčëč.\n"
-"\n"
-" Îňáĺëĺćĺňĺ, ÷ĺ äâĺ đŕçëč÷íč îďöčč ńŕ äîńňúíč, ÷đĺç öúęŕíĺ íŕ áóňîíŕ:\n"
-"\n"
-" * \"Ďđĺčăđŕé\". Ňîâŕ ĺ ÷ŕńňč÷íî ŕâňîěŕňčçčđŕíŕ číńňŕëŕöč˙ ęŕňî ńňúďęčňĺ\n"
-"ďî đŕçäĺë˙íĺ íŕ ä˙ëîâĺ îńňŕâŕň číňĺđŕęňčâíč.\n"
-"\n"
-" * \"Ŕâňîěŕňč÷íŕ\". Íŕďúëíî ŕâňîěŕňč÷íŕ číńňŕëŕöč˙: ňâúđäč˙ň äčńę ńĺ\n"
-"ďđĺçŕďčńâŕ íŕďúëíî, âń˙ęŕęâč äŕííč ńĺ çŕăóáâŕň.\n"
-"\n"
-" Ňŕçč îńîáĺíîńň ĺ ěíîăî óäîáíŕ, ęîăŕňî číńňŕëčđŕňĺ ăîë˙ě áđîé ďîäîáíî\n"
-"ěŕřčíč. Âčćňĺ ńĺęöč˙ňŕ çŕ ŕâňîěŕňč÷íŕ číńňŕëŕöč˙ íŕ íŕřč˙ web-ńŕéň.\n"
-"\n"
-" * \"Çŕďŕçč čçáîđŕ íŕ ďŕęĺňč\"(*): çŕďŕçâŕ čçáîđŕ íŕ ďŕęĺňč, ňŕęŕ ęŕęňî "
-"ĺ\n"
-"íŕďđŕâĺí ďđĺäč. Ęîăŕňî ďđŕâčňĺ äđóăŕ číńňŕëŕöč˙, âęŕđŕéňĺ äčńęĺňŕňŕ â\n"
-"óńňđîéńňâîňî č ďóńíĺňĺ číńňŕëŕöč˙ňŕ äŕ âúđâč ÷đĺç ďîěîůíč˙ ĺęđŕí, ęŕňî\n"
-"íŕňčńíĺňĺ ęëŕâčřŕ [F1] č ęŕňî íŕďčřĺňĺ >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) Ňđ˙áâŕ âč FAT-ôîđěŕňčđŕíŕ äčńęĺňŕ (çŕ äŕ ńúçäŕäĺňĺ ňŕęâŕ ďîä GNU/Linux,\n"
-"íŕďčřĺňĺ \"mformat a:\")"
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Âńč÷ęč íîâîäĺôčíčđŕíč ä˙ëîâĺ ňđ˙áâŕ äŕ áúäŕň ôîđěŕňčđŕíč, çŕ äŕ ńĺ "
-"čçďîëçâŕň\n"
-"(ôîđěŕňčđŕíĺ îçíŕ÷ŕâŕ ńúçäŕâŕíĺ íŕ ôŕéëîâŕ ńčńňĺěŕ).\n"
-"\n"
-"Â ňîçč ěîěĺíňŕ ěîćĺ áč čńęŕňĺ äŕ ďđĺôîđěŕňčđŕňĺ í˙ęîč ńúůĺńňâóâŕůč ä˙ëîâĺ, "
-"çŕ\n"
-"äŕ čçňđčĺňĺ âń˙ęŕęâč äŕííč, ęîčňî ńúäúđćŕň. Ŕęî čńęŕňĺ äŕ ăî íŕďđŕâčňĺ, "
-"ěîë˙\n"
-"čçáĺđĺňĺ ň˙ő.\n"
-"\n"
-"Ěîë˙, îňáĺëĺćĺňĺ, ÷ĺ íĺ ĺ íĺîáőîäčěî äŕ ďđĺôîđěŕňčđŕňĺ âńč÷ęč ä˙ëîâĺ\n"
-"ńúůĺńňâóâŕůč îňďđĺäč. Ňđ˙áâŕ äŕ ďđĺôîđěŕňčđŕňĺ ä˙ëîâĺňĺ ńúäúđćŕůč\n"
-"îďĺđŕöčîííŕňŕ ńčńňĺěŕ (ęŕňî \"/\", \"/usr\" čëč \"/var\"), íî ňîâŕ íĺ ĺ\n"
-"çŕäúëćčňĺëíî çŕ ä˙ëîâĺ ńúäúđćŕůč äŕííč, ęîčňî čńęŕňĺ äŕ çŕďŕçčňĺ "
-"(îáčęíîâĺíî\n"
-"\"/home\").\n"
-"\n"
-"Ěîë˙, áúäĺňĺ âíčěŕňĺëíč, ęîăŕňî čçáčđŕňĺ ä˙ëîâĺňĺ. Ńëĺä ôîđěŕňčđŕíĺ âńč÷ęč\n"
-"äŕííč íŕ ďîńî÷ĺíčňĺ ä˙ëîâĺ ůĺ áúäŕň čçňđčňč č í˙ěŕ äŕ ěîćĺňĺ äŕ ăč\n"
-"âúçńňŕíîâčňĺ.\n"
-"\n"
-"Öúęíĺňĺ \"OK\", ęîăŕňî ńňĺ ăîňîâč äŕ ôîđěŕňčđŕňĺ äŕëîâĺ.\n"
-"\n"
-"Öúęíĺňĺ \"Îňęŕç\", ŕęî čńęŕňĺ äŕ čçáĺđĺňĺ äđóăč ä˙ëîâĺ çŕ číńňŕëŕöč˙ íŕ "
-"íîâŕňŕ\n"
-"ńč Mandrake Linux îďĺđŕöčîííŕ ńčńňĺěŕ.\n"
-"\n"
-"Öúęíĺňĺ \"Íŕďđĺäíč÷ŕâ\", ŕęî čńęŕňĺ äŕ čçáĺđĺňĺ ä˙ëîâĺ, ęîčňî äŕ áúäŕň\n"
-"ďđîâĺđĺíč çŕ ëîřč áëîęîâĺ îň äčńęŕ."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Íîâŕňŕ âč Mandrake Linux îďĺđŕöčîííŕ ńčńňĺěŕ â ěîěĺíňŕ ńĺ číńňŕëčđŕ. Ňŕçč\n"
-"îďĺđŕöč˙ áč ňđ˙áâŕëî äŕ îňíĺěĺ í˙ęîëęî ěčíóňč (çŕâčńč îň čçáđŕíŕňŕ ăîëĺěčíŕ "
-"íŕ\n"
-"číńňŕëŕöč˙ňŕ č îň ńęîđîńňňŕ íŕ ęîěďţňúđŕ âč).\n"
-"\n"
-"Ěîë˙, áúäĺňĺ ňúđďĺëčâč."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Ďđĺäč äŕ ďđîäúëćčňĺ, ňđ˙áâŕ âíčěŕňĺëíî äŕ ďđî÷ĺňĺňĺ óńëîâč˙ňŕ íŕ ëčöĺíçŕ. "
-"Ňîé\n"
-"ďîęđčâŕ ö˙ëŕňŕ Mandrake Linux äčńňđčáóöč˙, č, ŕęî íĺ ńňĺ ńúăëŕńíč ń âńč÷ęč "
-"óńëîâč˙\n"
-"â íĺăî, öúęíĺňĺ íŕ áóňîíŕ Îňęŕç. Ňîâŕ íĺçŕáŕâíî ůĺ ďđčęëţ÷č číńňŕëŕöč˙ňŕ. Çŕ "
-"äŕ\n"
-"ďđîäúëćčňĺ ń číńňŕëŕöč˙ňŕ, öúęíĺňĺ íŕ áóňîíŕ Ďđčĺěč."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"Â ňîçč ěîěĺíň, ňđ˙áâŕ äŕ čçáĺđĺňĺ íčâîňî íŕ ńčăóđíîńň, ęîĺňî čńęŕňĺ çŕ\n"
-"ěŕřčíŕňŕ. Ďî ďđŕâčëî, ęîëęîňî ďîâĺ÷ĺ ěŕřčíŕňŕ âč ĺ äîńňúďíŕ č ęîëęîňî "
-"ďîâĺ÷ĺ\n"
-"äŕííč ńĺ ńúőđŕí˙âŕň íŕ íĺ˙, ňîëęîâŕ ďî-âčńîęî ňđ˙áâŕ äŕ ĺ íčâîňî íŕ "
-"ńčăóđíîńň.\n"
-"Âúďđĺęč ňîâŕ, âčńîęŕňŕ ńčăóđíîńň ĺ çŕ ńěĺňęŕ íŕ ëĺęîňŕňŕ íŕ đŕáîňŕ.\n"
-"Îáúđíĺňĺ ńĺ ęúě ăëŕâŕňŕ MSEC íŕ Reference Manual, çŕ äŕ ďîëó÷čňĺ ďîâĺ÷ĺ "
-"číôîđěŕöč˙\n"
-"çŕ çíŕ÷ĺíčĺňî íŕ ňĺçč íčâŕ.\n"
-"\n"
-"Ŕęî íĺ çíŕĺňĺ ęŕęňî äŕ čçáĺđĺňĺ, čçáĺđĺňĺ îďöč˙ňŕ ďî ďîäđŕçáčđŕíĺ."
-
-#: ../../help.pm_.c:442
-#, fuzzy
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Â ňîçč ěîěĺíň ňđ˙áâŕ äŕ čçáĺđĺňĺ ęîé ä˙ëîâĺ äŕ áúäŕň čçďîëçâŕíč çŕ "
-"číńňŕëŕöč˙\n"
-"íŕ âŕřŕňŕ Mandrake Linux ńčńňĺěŕ. Ŕęî ä˙ëîâĺňĺ âĺ÷ĺ ńŕ îďđĺäĺëĺíč, äŕëč îň\n"
-"ďđĺäčříŕ číńňŕëŕöč˙ íŕ GNU/Linux čëč îň äđóă číńňđóěĺíň çŕ đŕçäĺë˙íĺ, "
-"ěîćĺňĺ\n"
-"äŕ čçďîëçâŕňĺ ńúůĺńňâóâŕůčňĺ äŕëîâĺ.  ďđîňčâĺí ńëó÷ŕé ňđ˙áâŕ äŕ îďđĺäĺëčňĺ\n"
-"ä˙ëîâĺ îň ňâúđäč˙ äčńę.\n"
-"\n"
-"Çŕ äŕ ńúçäŕäĺňĺ ä˙ëîâĺ, ňđ˙áâŕ ďúđâî äŕ čçáĺđĺňĺ ňâúđä äčńę. Ěîćĺňĺ äŕ\n"
-"čçáĺđĺňĺ äčńę çŕ đŕçäĺë˙íĺ, ęŕňî öúęíĺňĺ íŕ \"hda\" çŕ ďúđâî IDE "
-"óńňđîéńňâî,\n"
-"\"hdb\" çŕ âňîđîňî, \"sda\" çŕ ďúđâî SCSI óńňđîéńňâî č ň.í..\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"
-"Ěčíŕâŕéňĺ ďđĺç ä˙ëîâĺňĺ čçďîëçâŕéęč [Tab} č ńňđĺëęčňĺ íŕăîđĺ/íŕäîëó.\n"
-"\n"
-"Ęîăŕňî ĺ čçáđŕí ä˙ë, ěîćĺňĺ äŕ čçďîëçâŕňĺ:\n"
-"\n"
-" * Ctrl-c, çŕ äŕ ńúçäŕäĺňĺ íîâ ä˙ë (ŕęî ĺ čçáđŕí ďđŕçĺí ä˙ë);\n"
-"\n"
-" * Ctrl-d, çŕ äŕ čçňđčĺňĺ ä˙ë;\n"
-"\n"
-" * Ctrl-m, çŕ äŕ óńňŕíîâčňĺ ňî÷ęŕ íŕ ěîíňčđŕíĺ.\n"
-"\n"
-"Ŕęî číńňŕëčňĺ íŕ PPC ěŕřčíŕ, ńčăóđíî ůĺ čńęŕňĺ äŕ ńúçäŕäĺňĺ ěŕëúę HFS\n"
-"\"bootstrap\" ä˙ë îň ďîíĺ 1 ĚÁ, ęîéňî ůĺ áúäĺ čçďîëçâŕň îň boot loader-úň\n"
-"yaboot. Ŕęî ńě˙ňŕňĺ äŕ íŕďđŕâčňĺ ä˙ëŕ ďî-ăîë˙ě, íŕďđčěĺđ 50 ĚÁ, ěîćĺňĺ äŕ "
-"ăî\n"
-"íŕěĺđčňĺ çŕ ďîëĺçíî ě˙ńňî, ęúäĺňî äŕ ńúőđŕí˙âŕňĺ í˙ęîĺ ˙äđî čëč image íŕ\n"
-"ramdisk â ńëó÷ŕé íŕ čçâúíđĺäíč ńčňóŕöčč."
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Áĺřĺ çŕńĺ÷ĺí ďîâĺ÷ĺ îň ĺäčí Microsoft Windows ä˙ë\n"
-"íŕ ňâúđäč˙ âč äčńęŕ. Čçáĺđĺňĺ ňîçč, ÷č˙ňî äúëćčíŕ čńęŕňĺ äŕ ďđîěĺíčňĺ, çŕ "
-"äŕ\n"
-"číńňŕëčđŕňĺ Mandrake Linux îďĺđŕöčîííŕ ńčńňĺěŕ.\n"
-"\n"
-"\n"
-"Çŕ číôîđěŕöč˙, âńĺęč ä˙ë ĺ čçáđîĺí ęŕęňî ńëĺäâŕ: \"Linux čěĺ\", \"Windows čěĺ"
-"\", \"Ęŕďŕöčňĺň\".\n"
-"\n"
-"\"Linux čěĺňî\" ńĺ ęîäčđŕ ęŕęňî ńëĺäâŕ: \"ňčď íŕ äčńęŕ\", \"íîěĺđ íŕ äčńęŕ"
-"\",\n"
-"\"íîěĺđ íŕ ä˙ë\" (íŕďđčěĺđ, \"hda1\").\n"
-"\n"
-"\n"
-"\"Ňčďúň íŕ äčńęŕ\" ěîćĺ äŕ ĺ \"hd\", ŕęî ĺ IDE ňâúđä äčńę, čëč \"sd\", ŕęî "
-"ĺ\n"
-"SCSI ňâúđä äčńę.\n"
-"\n"
-"\n"
-"\"Íîěĺđúň íŕ äčńęŕ\" âčíŕăč ĺ áóęâŕňŕ ńëĺä \"hd\" čëč \"sd\". Ďđč IDE "
-"äčńęîâĺ:\n"
-"\n"
-" * \"a\" îçíŕ÷ŕâŕ \"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:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Ěîë˙, áúäĺňĺ ňúđďĺëčâč. Ňŕçč îďĺđŕöč˙ ěîćĺ äŕ îňíĺěĺ í˙ęîëęî ěčíóňč."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"DrakX ńĺăŕ ňđ˙áâŕ äŕ ďđîâĺäĺ číńňŕëŕöč˙ ďî ďîäđŕçáčđŕíĺ (\"Ďđĺďîđú÷čňĺëíŕ"
-"\")\n"
-"čëč ňŕęŕâŕ, ęúäĺňî čěŕňĺ ďî-ăîë˙ě ęîíňđîë (\"Ĺęńďĺđňíŕ\"). Âčĺ ńúůî ňŕęŕ\n"
-"ěîćĺňĺ äŕ čçáĺđĺňĺ äŕ čçâúđřčňĺ íîâŕ číńňŕëŕöč˙ čëč íŕäăđŕćäŕíĺ íŕ\n"
-"ńúůĺńňâóâŕůŕ Mandrake Linux ńčńňĺěŕ. Öúęŕéęč íŕ \"Číńňŕëčđŕé\" ůĺ çŕňđčĺ\n"
-"íŕďúëíî ńňŕđŕňŕ ńčńňĺěŕ. Čçáĺđĺňĺ \"Íŕäăđŕäč\", ŕęî íŕäăđŕćäŕňĺ čëč\n"
-"ďîďđŕâčňĺ ńúůĺńňâóâŕůŕ ńčńňĺěŕ\n"
-"\n"
-"Ěîë˙, čçáĺđĺňĺ \"Číńňŕëčđŕé\", ŕęî í˙ěŕňĺ číńňŕëčđŕíŕ ďđĺäčříŕ âĺđńč íŕ\n"
-"Mandrake Linux čëč ŕęî čńęŕňĺ äŕ čçáčđŕňĺ ěĺćäó îďĺđŕöčîííč ńčńňĺěč.\n"
-"\n"
-"Ěîë˙, čçáĺđĺňĺ \"Íŕäăđŕäč\", ŕęî čńęŕňĺ äŕ íŕäăđŕäčňĺ čëč ďîďđŕâčňĺ âĺ÷ĺ\n"
-"číńňŕëčđŕíŕ âĺđńč˙ íŕ Mandrake Linux.\n"
-"\n"
-"Â çŕâčńčěîńň îň ďîçíŕíč˙ňŕ âč ďî GNU/Linux, ěîë˙, čçáĺđĺňĺ ĺäčí îň ńëĺäíčňĺ\n"
-"âčäîâĺ číńňŕëŕöč˙/íŕäăđŕćäŕíĺ íŕ âŕřŕňŕ Mandrake Linux îďĺđŕöčîíí ńčńňĺěŕ:\n"
-"\n"
-" * Ďđĺďîđú÷čňĺëíŕ: čçáĺđĺňĺ ňîâŕ, ŕęî íčęîăŕ íĺ ńňĺ čńíňŕëčđŕëč GNU/Linux\n"
-"îďĺđŕöčîííŕ ńčńňĺěŕ. Číńňŕëŕöč˙ňŕ ĺ ěíîăî ëĺńíŕ č ůĺ áúäĺňĺ ďîďčňŕíč ńŕěî\n"
-"í˙ęîëęî âúďđîńŕ.\n"
-"\n"
-" * Ĺęńďĺđňíŕ:ŕęî čěŕňĺ äîáđč ďîçíŕíč˙ ďî GNU/Linux, ěîćĺňĺ äŕ čçáĺđĺňĺ ňîçč\n"
-"číńňŕëŕöčîíĺí ęëŕń. Ĺęńďĺđňíŕňŕ číńňŕëŕöč˙ ůĺ âč ďîçâîëč äŕ čçâúđřčňĺ ěíîăî\n"
-"ďîňđĺáčňĺëńęŕ číńňŕëŕöč˙. Îňăîâîđčňĺ íŕ í˙ęîč âúďđîńč ěîćĺ äŕ ńŕ ňđúäč, ŕęî\n"
-"íĺ ďîçíŕâŕňĺ äîáđĺ GNU/Linux, ňŕęŕ ÷ĺ čçáĺđĺňĺ ňîâŕ, îńâĺí ŕęî íĺ çíŕĺňĺ\n"
-"ęŕęâî ďđŕâčňĺ."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Îáčęíîâĺíî, DrakX áč ňđ˙áâŕëî äŕ čçáĺđĺ ďđŕâčëíŕňŕ çŕ âŕń ęëŕâčŕňóđŕ (â "
-"çŕâčńčěîńň\n"
-"îň ĺçčęŕ, ęîéňî ńňĺ čçáđŕëč) č í˙ěŕ äŕ ńĺ íŕëîćč äŕ âčäčňĺ ňŕçč ńňúďęŕ. "
-"Îáŕ÷ĺ ěîćĺ äŕ\n"
-"í˙ěŕňĺ ęëŕâčŕňóđŕ ńúîňâĺňńňâŕůŕ ňî÷íî íŕ âŕřč˙ ĺçčę: íŕďđčěĺđ, ŕęî ńňĺ "
-"ŕíăëîăîâîđ˙ů řâĺä,\n"
-"ěîćĺ áč ůĺ čńęŕňĺ ęëŕâčŕňóđŕňŕ âč äŕ áúäĺ řâĺäńęŕ. Čëč ŕęî ăîâîđčňĺ "
-"aíăëčéńęč, íî ńňĺ\n"
-"â Ęâĺáĺę, ěîćĺ áč ůĺ ńňĺ â ńúůŕňŕ ńčňóŕöč˙. Č â äâŕňŕ ńëó÷ŕ˙, ůĺ ňđ˙áâŕ äŕ "
-"ńĺ âúđíĺňĺ\n"
-"ęúě ňŕçč číńňŕëŕöčîííŕ ńňúďęŕ č äŕ čçáĺđĺňĺ ďđŕâčëíŕňŕ ęëŕâčŕňóđŕ îň "
-"ńďčńúęŕ.\n"
-"\n"
-"Âńč÷ęî, ęîĺňî ňđ˙áâŕ äŕ íŕďđŕâčňĺ, ĺ äŕ ďîńî÷čňĺ ďđĺäďî÷čňŕíŕňŕ ęëŕâčŕňóđíŕ "
-"íŕđĺäáŕ\n"
-"îň ńďčńúęŕ, ęîéňî ůĺ ńĺ ďî˙âč ďđĺä âŕń.\n"
-"\n"
-"Ŕęî čěŕňĺ ęëŕâčŕňóđŕ îň ĺçčę đŕçëč÷ĺí îň ňîçč čçďîëçâŕí ďî ďîäđŕçáčđŕíĺ, "
-"öúęíĺňĺ\n"
-"íŕ áóňîíŕ \"Íŕďđĺäíč÷ŕâ\". Ůĺ âč áúäĺ ďđĺäîńňŕâĺí ďúëĺí ńďčńúę ń "
-"ďîääúđćŕíčňĺ ęëŕâčŕňóđč."
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Ěîë˙, öúęíĺňĺ íŕ ďđĺäďî÷čňŕíč˙ ĺçčę íŕ číńňŕëŕöč˙ č ńčńňĺěíŕ óďîňđĺáŕ.\n"
-"\n"
-"Öúęŕíĺňî íŕ áóňîíŕ \"Íŕďđĺäíč÷ŕâ\" ůĺ âč ďîçâîëč äŕ čçáĺđĺňĺ äđóăč ĺçčöč\n"
-"äŕ áúäŕň číńňŕëčđŕíč íŕ đŕáîňíŕňŕ âč ńňŕíöč˙. Čçáčđŕíĺňî íŕ äđóăč ĺçčöč\n"
-"ůĺ číńňŕëčđŕ ôŕéëîâĺ ńďĺöčâč÷íč çŕ ĺçčöčňĺ çŕ ńčńňĺěíŕ äîęóěĺíňŕöč˙ č\n"
-"ďđčëîćĺíč˙. Íŕďđčěĺđ, ŕęî čěŕňĺ ďîňđĺáčňĺëč îň Čçďŕíč˙ íŕ ěŕřčíŕňŕ ńč,\n"
-"čçáĺđĺňĺ ŕíăëčéńęč ęŕňî ăëŕâĺí ĺçčę â äúđâîâčäíŕňŕ ôîđěŕ č â ńĺęöč˙\n"
-"\"Íŕďđĺäíč÷ŕâ\" öúęíĺňĺ íŕ ńčâŕňŕ çâĺçäŕ ńúîňâĺňńňâŕůŕ íŕ\n"
-"\"Čńďŕíńęč|Čńďŕíč˙\".\n"
-"Îňáĺëĺćĺňĺ, ÷ĺ ěîăŕň äŕ áúäŕň číńňŕëčđŕíč í˙ęîëęî ĺçčęŕ. Âĺäíúć čçáđŕí\n"
-"í˙ęŕęúâ ëîęŕë, öúęíĺňĺ áóňîíŕ \"OK\", çŕ äŕ ďđîäúëćčňĺ."
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"Ďî ďîäđŕçáčđŕíĺ, DrakX ďđĺäďîëŕăŕ ÷ĺ čěŕňĺ äâóáóňîííŕ ěčřęŕ č ůĺ âęëţ÷č\n"
-"ńčěóëčđŕíĺ íŕ ňđč áóňîíŕ. DrakX ŕâňîěŕňč÷íî đŕçáčđŕ äŕëč ĺ PS/2, ńĺđčéíŕ "
-"čëč\n"
-"USB ěčřęŕ.\n"
-"\n"
-"Ŕęî čńęŕňĺ äŕ îďđĺäĺëčňĺ äđóă ňčď íŕ ěčřęŕňŕ, čçáĺđĺňĺ ďîäőîä˙ů îň ńďčńúęŕ,\n"
-"ęîéňî ůĺ âč áúäĺ ďđĺäńňŕâĺí.\n"
-"\n"
-"Ŕęî čçáĺđĺňĺ ěčřęŕ đŕçëč÷íŕ îň ňŕçč ďî ďîäđŕçáčđŕíĺ, ůĺ âč áúäĺ ďđĺäîńňŕâĺí\n"
-"ĺęđŕí çŕ ďđîáŕ. Čçďîëçâŕéňĺ áóňîíčňĺ č ęîëĺëöĺňî, çŕ äŕ ďđîâĺđčňĺ, ÷ĺ\n"
-"íŕńňđîéęŕňŕ ĺ äîđŕ. Ŕęî ěčřęŕňŕ íĺ đŕáîňč, ęŕęňî ňđ˙áâŕ, íŕňčńíĺňĺ číňĺđâŕë\n"
-"čëč ŃĹ ÂÚĐÍĹŇĹ ęúě \"Îňęŕç\" č čçáĺđĺňĺ ďŕę."
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Ěîë˙, čçáĺđĺňĺ âĺđíč˙ ďîđň. Íŕďđčěĺđ, ďîđňúň COM1 ďîä Windows ďîä GNU/Linux\n"
-"ńĺ íŕđč÷ŕ ttyS0."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (čëč LInux LOader) č Grub ńŕ bootloader-č: ňĺ ěîăŕ äŕ ńňŕđňčđŕň\n"
-"GNU/Linux čëč ęî˙ äŕ ĺ äđóăŕ îďĺđŕöčîííŕ ńčńňĺěŕ ńúůĺńňâóâŕůŕ íŕ ęîěďţňúđŕ "
-"âč.\n"
-"Îáčęíîâĺííî, ňĺçč äđóăč îďĺđŕöčîííč ńčńňĺěŕ ńĺ çŕńč÷ŕň č číńňŕëčđŕň\n"
-"ďđŕâčëíî. Ŕęî ňîâŕ íĺ ńňŕâŕ ďđč âŕń, ěîćĺňĺ äŕ äîáŕâ˙ňĺ çŕďčńč íŕ đúęŕ â\n"
-"ňîçč ĺęđŕí. Ăëĺäŕéňĺ äŕ čçáĺđĺňĺ âĺđíč ďŕđŕěĺňđč.\n"
-"\n"
-"\n"
-"Ěîćĺ äŕ íĺ čńęŕňĺ äŕ äŕâŕňĺ äîńňúď äî ňĺçč îďĺđŕöčîííč ńčńňĺěč íŕ íčęîé,\n"
-"â ęîéňî ńëó÷ŕé ěîćĺňĺ äŕ čçňđčĺňĺ ńúîňâĺňíčňĺ çŕďčńč. Íî â ňŕęúâ ńëó÷ŕé,\n"
-"ůĺ ńĺ íóćäŕĺňĺ îň boot-äčńęĺňŕ, çŕ äŕ ăč ńňŕđňčđŕňĺ !"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Ňđ˙áâŕ äŕ ďîńî÷čňĺ ęúäĺ ćĺëŕĺňĺ äŕ\n"
-"ďîńňŕâčňĺ číôîđěŕöč˙ňŕ, íĺîáőîäčěŕ çŕ ńňŕđňčđŕíĺňî íŕ GNU/Linux.\n"
-"\n"
-"Ŕęî íĺ ńňĺ ńčăóđíč â ňîâŕ, ęîĺňî ďđŕâčňĺ, čçáĺđĺňĺ \"Ďúđâč˙ ńĺęňîđ íŕ\n"
-"óńňđîéńňâîňî (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Čçáĺđĺňĺ ňâúđäč˙ äčńę, ęîéňî čńęŕňĺ äŕ čçňđĺňĺ, çŕ äŕ\n"
-"číńňŕëčđŕě íîâč˙ âč Mandrake Linux ä˙ë. Âíčěŕíčĺ, âńč÷ęč äŕííč íŕ íĺăî ůĺ "
-"áúäŕň çŕăóáĺíč\n"
-"č í˙ěŕ äŕ ěîăŕň äŕ ńĺ âúçńňŕíîâ˙ň."
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Öúęíĺňĺ \"OK\", ŕęî čńęŕňĺ äŕ čçňđčĺňĺ âńč÷ęč äŕííč č\n"
-"ä˙ëîâĺ ńúůĺńňâóâŕůč íŕ ňîçč ňâúđä äčńę. Âíčěŕíčĺ, ńëĺä öúęŕíĺ íŕ \"OK\", "
-"í˙ěŕäŕ ěîćĺňĺ äŕ âúçńňŕíîâčňĺ ęŕęâčňî č äŕ áčëî äŕííč č ä˙ëîâĺ ńúůĺńňâóâŕůč "
-"íŕ ňîçč ňâúđä äčńę,\n"
-"âęëţ÷čňĺëíî ęŕęâčňî č äŕ ĺ Windows äŕííč.\n"
-"\n"
-"Öúęíĺňĺ \"Îňě˙íŕ\", çŕ äŕ îňěĺíčňĺ ňŕçč îďĺđŕöč˙ áĺç çŕăóáŕ äŕ äŕííčňĺ č\n"
-"ä˙ëîâĺňĺ ńúůĺńňâóâŕůč íŕ ňîçč ňâúđä äčńę."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Čçáđŕëč ńňĺ ńëĺäíč˙(ňĺ) ńúđâúđ(č): %s\n"
-"\n"
-"\n"
-"Ňĺçč ńúđâúđč ńĺ ŕęňčâčđŕň ďî ďîäđŕçáčđŕíĺ. Ňĺ í˙ěŕň čçâĺńňíč ďđîáëĺěč ńúń\n"
-"ńčăóđíîńňňŕ, íî ěîćĺ äŕ ńĺ íŕěĺđ˙ň íîâč.  ňîçč ńëó÷ŕé, ůĺ ňđ˙áâŕ äŕ ńňĺ\n"
-"ńčăóđíč, ÷ĺ ůĺ íŕäăđŕćäŕňĺ âúçěîćíî íŕé-áúđçî.\n"
-"\n"
-"\n"
-"Íŕčńňčíŕ ëč čńęŕňĺ äŕ číńňŕëčđŕňĺ ňĺçč ńúđâúđč ?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Íĺ ěîćĺňĺ äŕ čçďîëçâŕňĺ broadcast áĺç NIS äîěĺéí"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Ńëîćĺňĺ FAT ôîđěŕňčđŕíŕ äčńęĺňŕ â óńňđîéńňâî %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Ňŕçč äčńęĺňŕ íĺ ĺ ôîđěŕňčđŕíŕ íŕ FAT"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Çŕ äŕ čçďîëçâŕňĺ çŕďŕçĺí čçáîđ íŕ ďŕęĺňč, ńňŕđňčđŕéňĺ číńňŕëŕöč˙ňŕ ń ``linux "
-"defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Ăđĺřęŕ ďđč ÷ĺňĺíĺňî íŕ ôŕéëŕ %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"×ŕńň îň őŕđäóĺđŕ íŕ ęîěďţňúđŕ âč ńĺ íóćäŕĺ îň ``ńîáńňâĺíčňĺ ńč'' äđŕéâĺđč, "
-"çŕ äŕ đŕáîňč.\n"
-"Ěîćĺňĺ äŕ íŕěĺđčňĺ ďîâĺ÷ĺ číôîđěŕöč˙ çŕ ňîâŕ íŕ: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Ňđ˙áâŕ äŕ čěŕňĺ root-ä˙ë.\n"
-"Çŕňîâŕ ńúçäŕéňĺ ä˙ë (čëč öúęíĺňĺ íŕ ńúůĺńňâóâŕů).\n"
-"Ňîăŕâŕ čçáĺđĺňĺ äĺéńňâčĺ ``Ě˙ńňî íŕ ěîíňčđŕíĺ'' č ăî ńëîćĺňĺ `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Ňđ˙áâŕ äŕ čěŕňĺ swap-ä˙ë"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Í˙ěŕňĺ swap-ä˙ë\n"
-"\n"
-"Äŕ ďđîäúëćŕ ëč âńĺ ďŕę ?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Ňđ˙áâŕ äŕ čěŕňĺ FAT ä˙ë ěîíňčđŕí â /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Čçďîëçâŕé ńâîáîäíîňî ě˙ńňî"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ ńúçäŕâŕíĺ íŕ íîâ ä˙ë"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Čçďîçâŕíĺ íŕ ńúůĺńňâóâŕů ä˙ë"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Í˙ěŕ ä˙ë, ęîéňî ěîăŕ äŕ čçďîëçâŕě"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Čçďîëçâŕé çŕ Windows ä˙ëúň çŕ loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Ęîé ä˙ë čńęŕňĺ äŕ čçďîëçâŕňĺ çŕ Linux4Win ?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Čçáĺđĺňĺ ăîëĺěčíčňĺ"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Ăîëĺěčíŕ íŕ root-ä˙ëŕ â MB: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Ăîëĺěčíŕ íŕ swap-ä˙ëŕ â MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Čçďîëçâŕé ńâîáîäíîňî ě˙ńňî íŕ Windows ä˙ëŕ"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Ęîé ä˙ë ćĺëŕĺňĺ äŕ ďđîěĺíčňĺ?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Čç÷čńë˙âŕě ăđŕíčöčňĺ íŕ Windows ôŕéëîâŕňŕ ńčńňĺěŕ"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Íĺ âúçěîćíîńň çŕ đŕáîňŕ ń âŕřč˙ FAT ä˙ë, \n"
-"ďîđŕäč ďîëó÷ĺíŕňŕ ăđĺřęŕ: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Âŕřč˙ň Windows ä˙ë ĺ ěíîăî ôđŕăěĺíňčđŕí, ěîë˙ ďúđâî ńňŕđňčđŕéňĺ ''defrag''"
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"ÂÍČĚŔÍČĹ!\n"
-"\n"
-"DrakX ňđ˙áâŕ äŕ ďđĺđŕçäĺëč Âŕřč˙ Windows ä˙ë. Áúäĺňĺ âíčěŕňĺëíč: ňŕçč "
-"îďĺđŕöč˙ ĺ\n"
-"îďŕńíŕ. Ŕęî îůĺ íĺ ńňĺ ăî íŕďđŕâčëč, ňđ˙áâŕ ďúđâî äŕ ďóńíĺňĺ scandisk (č\n"
-"ĺâĺíňóŕëíî äŕ čçďîëçâŕňĺ defrag) ďîä Windows âúđőó ňîçč ä˙ë, ňîăŕâŕ \n"
-"ďîâňîđĺňĺ číńňŕëŕöčŕ˙ňŕ. Áč áčëî äîáđĺ äŕ íŕďđŕâčňĺ ŕđőčâ íŕ äŕííčňĺ ńč.\n"
-"Ęîăŕňî ńňĺ ńčăóđíč, íŕňčńíĺňĺ ÎĘ."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Ęîëęî čńęŕňĺ äŕ îńňŕâčňĺ çŕ windows?"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "ä˙ë %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Íĺóńďĺříî ďđĺđŕçäĺë˙íĺ íŕ FAT: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Í˙ěŕ FAT ä˙ëîâĺ çŕ ńě˙íŕ íŕ ăîëĺěčíŕňŕ čëč çŕ čçďîëçâŕíĺ ęŕňî loopback (čëč "
-"í˙ěŕ äîńňŕňú÷íî ě˙ńňî íŕ äčńęŕ)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Čçňđčé öĺëč˙ äčńę"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Ďđĺěŕőíč Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "čěŕňĺ ďîâĺ÷ĺ îň ĺäčí ňâúđäč äčńęîâĺ, ęîé äŕ čçďîëçâŕě çŕ číńňŕëŕöč˙ňŕ?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "ÂŃČ×ĘČ ńúůĺńňâóâŕůč ä˙ëîâĺ č äŕííčňe âúđőó ň˙ő íŕ %s ůĺ áúäŕň çŕăóáĺíč"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Ęëčĺíňńęî đŕçäĺë˙íĺ íŕ äčńęŕ"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Čçďîëçâŕé fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Ńĺăŕ ěîćĺňĺ äŕ đŕçäĺëčňĺ %s.\n"
-"Ęîăŕňî ńňĺ ăîňîâč, íĺ çŕáđŕâ˙éňĺ äŕ çŕďčřĺňĺ čçďîëçâŕéęč `w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Í˙ěŕ äîńňŕňú÷íî ńâîáîäíî ě˙ńňî íŕ ä˙ëŕ"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Íĺ ěîăŕ äŕ íŕěĺđ˙ íčęŕęâî ě˙ńňî çŕ číńňŕëŕöč˙"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Ďîěîůíčęúň çŕ đŕçäĺëčíĺ íŕ ä˙ëîâĺ íŕ DrakX íŕěĺđč ńëĺäíčňĺ đĺřĺíč˙:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Íĺóńďĺříî đŕçäĺë˙íĺ íŕ: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Âęëţ÷âŕě ěđĺćŕňŕ"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Čçęëţ÷âŕíĺ íŕ ěđĺćŕňŕ"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Ďî˙âč ńĺ ăđĺřęŕ, íî íĺ çíŕě ęŕę äŕ ńĺ ńďđŕâ˙ ń íĺ˙ äĺëčęŕňíî.\n"
-"Ěîćĺňĺ äŕ ďđîäúëćčňĺ íŕ ńâîé đčńę."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Äóáëčđŕé ňî÷ęŕňŕ íŕ ěîíňčđŕíĺ %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Í˙ęîč âŕćíč ďŕęĺňč íĺ ńĺ číńňŕëčđŕőŕ ęŕęňî ňđ˙áâŕ.\n"
-"Čëč CDROM óńňđîéńňâîňî âč čëč ęîěďŕęň äčńęŕ âč ĺ äĺôĺęňĺí.\n"
-"Ďđîâĺđĺňĺ ęîěďŕęň äčńęŕ íŕ číńňŕëčđŕíč˙ ęîěďţňúđ čçďîëçâŕéęč \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Äîáđĺ äîřëč â %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Í˙ěŕ ôëîďč óńňđîéńňâî"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Íŕâëčçŕě â ĺňŕď `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Âŕřŕňŕ ńčńňĺěŕ ĺ ń ěŕëęč đĺńóđńč. Ěîćĺ äŕ čěŕňĺ ďđîáëĺěč ń číńňŕëčđŕíĺňî\n"
-"íŕ Mandrake Linux. Ŕęî ńĺ ďî˙âč ďđîáëĺě îďčňŕéňĺ ń ňĺęńňîâŕňŕ číńŕëŕöč˙. "
-"Çŕöĺëňŕ,\n"
-"íŕňčńíĺňĺ 'F1', ęîăŕňî ńňŕđňčđŕňĺ îň CDROM č âúâĺäĺňĺ 'ňĺüň'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Ęëŕń číńňŕëŕöč˙"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Ěîë˙, čçáĺđĺňĺ ĺäčí îň ńëĺäíčňĺ ęëŕńîâĺ íŕ číńňŕëŕöč˙:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, 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:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ŕęî čńęŕňĺ äŕ číńňŕëčđŕňĺ ďî-ěŕëęî îň ňŕçč ăîëĺěčíŕ,\n"
-"čçáĺđĺňĺ ďđîöĺíň ďŕęĺňč, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ.\n"
-"\n"
-"Ďđč íčńúę ďđîöĺíň ůĺ ńĺ číńňŕëčđŕň ńŕěî íŕé-âŕćíčňĺ ďŕęĺňč;\n"
-"ďđč 100%% ůĺ číńňŕëčđŕň âńč÷ęč ěŕđęčđŕíč ďŕęĺňč."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Čěŕňĺ ě˙ńňî íŕ äčńęŕ ńč ńŕěî çŕ %d%% îň ňĺçč ďŕęĺňč.\n"
-"\n"
-"Ŕęî čńęŕňĺ äŕ číńňŕëčđŕňĺ ďî-ěŕëęî îň ňîâŕ,\n"
-"čçáĺđĺňĺ ďđîöĺíň îň ďŕęĺňčňĺ, ęîčňî číńęŕňĺ äŕ číńňŕëčđŕňĺ.\n"
-"Ďđč íčńúę ďđîöĺíň ůĺ ńĺ číńňŕëčđŕň ńŕěî íŕé-âŕćíčňĺ ďŕęĺňč;\n"
-"ďđč %d%% ůĺ číńňŕëčđŕň âńč÷ęč čçáđŕíč ďŕęĺňč."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Ůĺ čěŕňĺ âúçěîćíîńňňŕ äŕ čçáĺđĺňĺ ďî-ňî÷íî ďđč ńëĺäâŕůč˙ ĺňŕď."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Ďđîöĺíň ďŕęĺňč çŕ číńňŕëčđŕíĺ"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Čçáîđ íŕ ăđóďŕ ďŕęĺňč"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Čçáčđŕíĺ íŕ ďŕęĺňč ĺäčí ďî ĺäčí"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Îáůŕ ăîëĺěčíŕ: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Ëîř ďŕęĺň"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Čěĺ: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Âĺđńč˙: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Ăîëĺěčíŕ: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Âŕćíîńň: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Íĺ ěîćĺňĺ äŕ îńňŕâčňĺ ďŕęĺňŕ íĺěŕđęčđŕí, çŕůîňî í˙ěŕňĺ ě˙ńňî äŕ ăî "
-"číńňŕëčđŕňĺ"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň číńňŕëčđŕíč"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň ďđĺěŕőíŕňč"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Íĺ ěîćĺňĺ äŕ îňáĺëĺćĺňĺ/äĺîňáĺëĺćĺňĺ ňîçč ďŕęĺň"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Ňîâŕ ĺ íóćĺí ďŕęĺň, íĺ ěîćĺ äŕ áúäĺ íĺěŕđęčđŕí"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Íĺ ěîćĺňĺ äŕ îńňŕâčňĺ ňîçč ďŕęĺň íĺěŕđęčđŕí. Ňîé âĺ÷ĺ ĺ číńňŕëčđŕí"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Ňîçč ďŕęĺň ňđ˙áâŕ äŕ áúäĺ îáíîâĺí\n"
-"Ńčăóđíč ëč ńňĺ, ÷ĺ čńęŕňĺ äŕ ăî čçęëţ÷čňĺ ?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Íĺ ěîćĺňĺ äŕ čçęëţ÷čňĺ ňîçč ďŕęĺň. Ňîé ňđ˙áâŕ äŕ áúäĺ îáíîâĺí"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Ďîęŕćč ŕâňîěŕňč÷íî îňáĺë˙çŕíčňĺ ďŕęĺňč"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Číńňŕëčđŕé"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Çŕđĺäč/Çŕďŕçč íŕ äčńęĺňŕ"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Îáíîâ˙âŕíĺ íŕ čçáîđŕ íŕ ďŕęĺňč"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Ěčěčíŕëíŕ číńňŕëŕöč˙"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Číńňŕëčđŕě"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Ďđĺńě˙ňŕíĺ"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Îńňŕâŕůî âđĺěĺ "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Ěîë˙, čç÷ŕęŕéňĺ, ďîäăîňâ˙íĺ íŕ číńňŕëŕöč˙ňŕ"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d ďŕęĺňŕ"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňŕ %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Ďđčĺěč"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Îňęŕćč"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Ńěĺíĺňĺ CD-ROM !\n"
-"\n"
-"Ěîë˙, ńëîćĺňĺ CD-ROM îçŕăëŕâĺí \"%s\" â óńňđîéńňâîňî č íŕňčńíĺňĺ Ok, ęîăŕňî "
-"ńňĺ ăîňîâč.\n"
-"Ŕęî ăî í˙ěŕňĺ, íŕňčńíĺňĺ Îňě˙íŕ, çŕ äŕ čçáĺăíĺňĺ číńňŕëčđŕíĺňî îň ňîçč CD-"
-"ROM."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Äŕ ďđîäúëćŕ ëč âńĺ ďŕę ?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Ďî˙âč ńĺ ăđĺřęŕ ďđč ďîđú÷âŕíĺňî íŕ ďŕęĺňčňĺ:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Ďî˙âč ńĺ ăđĺřęŕ ďđč číńňŕëčđŕíĺ íŕ ďŕęĺňčňĺ:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"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_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Ďî˙âč ńĺ ăđĺřęŕ"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Íŕčńňčíŕ ëč čńęŕňĺ äŕ ďđĺěŕőíĺňĺ ďđčíňĺđŕ \"%s\" ?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Ëčöĺíçčîíĺí äîăîâîđ"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Âúâĺäĺňíčĺ\n"
-"\n"
-"Îďĺđŕöčîííŕňŕ ńčńňĺěŕ č đŕçëč÷íčňĺ ęîěďîíĺíňč äîńňúďíč â Mandrake Linux "
-"äčńňđčáóöč˙ňŕ ďî-äîëó ůĺ ńĺ\n"
-"íŕđč÷ŕň \"Ńîôňóĺđĺí Ďđîäóęňč\". Ńîôňóĺđíčňĺ Ďđîäóęňč âęëţ÷âŕň, íî íĺ ńĺ "
-"îăđŕíč÷ŕâŕň ńŕěî äî, íŕáîđŕ\n"
-"ďđîăđŕěč, ěĺňîäč, ďđŕâčëŕ č äîęóěĺíňŕöč˙ îňíŕń˙ůŕ ńĺ äî îďĺđŕöčîííŕňŕ "
-"ńčńňĺěŕ č đŕçëč÷íčňĺ\n"
-"ęîěďîíĺíňč íŕ Mandrake Linux äčńňđčáóöč˙ňŕ.\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"
-"č óďîňđĺáŕňŕ íŕ ńîôňóĺđíč ęîěďîíĺíňč č îň čçňĺăë˙íĺňî íŕ ńîôňóĺđíč "
-"ęîěďîíĺíňč îň ńŕéňîâĺňĺ íŕ Mandrake Linux,\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\", \"Mandrake Linux\" č ńâúđçŕíčňĺ ëîăîňŕ ńŕ çŕďŕçĺíŕ ěŕđęŕ íŕ "
-"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:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Ęëŕâčŕňóđŕ"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Ěîë˙, čçáĺđĺňĺ ďîäđĺćäŕíĺ íŕ ęëŕâčŕňóđŕňŕ."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Ĺňî ďúëĺí ńďčńúę íŕ äîńňđúďíčňĺ ęëŕâčŕňóđč"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Ęŕęúâ ęëŕń číńňŕëŕöč˙ ćĺëŕĺňĺ ?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Číńňŕëčđŕé/Îáíîâč"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Ňîâŕ íîâŕ číńňŕëŕöč˙ ëč ĺ čëč îáíîâ˙âŕíĺ ?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Ďđĺďîđú÷čňĺëíŕ"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Ĺęńďĺđňíŕ"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Îáíîâ˙âŕíĺ"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Îáíîâ˙âŕíĺ íŕ čçáîđŕ íŕ ďŕęĺňč"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Ďîđň íŕ ěčřęŕňŕ"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Ěîë˙, čçáĺđĺňĺ ęúě ęîé ńĺđčĺí ďîđň ĺ ńâúđçŕíŕ ěčřęŕňŕ âč."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Čěčňŕöč˙ íŕ áóňîíč"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Čěčňŕöč˙ íŕ 2 áóňîíŕ"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Čěčňŕöč˙ íŕ 3 áóňîíŕ"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Íŕńňđîéęŕ íŕ PCMCIA ęŕđňčňĺ ..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Íŕńňđîéęŕ íŕ IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "í˙ěŕ ä˙ëîâĺ íŕ đŕçďîëîćĺíčĺ"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Ďđĺňúđńâŕíĺ íŕ ä˙ëîâĺňĺ çŕ íŕěčđŕíĺ íŕ ňî÷ęč íŕ ěîíňčđŕíĺ"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Čçáĺđĺňĺ ěĺńňŕ çŕ ěîíňčđŕíĺ"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Íĺ ěîăŕ äŕ đŕç÷ĺňŕ ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ, ďđĺęŕëĺíî ĺ ďîâđĺäĺíŕ çŕ ěĺí :(\n"
-"Ěîăŕ äŕ ńĺ îďčňŕě äŕ čç÷čńň˙ ëîřčňĺ ä˙ëîâĺ (ÂŃČ×ĘČ ÄŔÍÍČ ůĺ áúäŕň "
-"çŕăóáĺíč!).\n"
-"Äđóăî đĺřĺíčĺ ĺ äŕ çŕáđŕíčňĺ íŕ DrakX ďîďđŕâ˙ ňŕáëčöŕňŕ ń ä˙ëîâĺ.\n"
-"(ăđĺřęŕňŕ ĺ %s)\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake íĺ óńď˙ äŕ đŕç÷ĺňĺ ďđŕâčëíî ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ.\n"
-"Ďđîäúëćčňĺ íŕ ńîáńňâĺí đčńę !"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Í˙ěŕ ńâîáîäíî ě˙ńňî çŕ 1 ĚÁ ńňŕđňčđŕůî ďîëĺ ! Číńňŕëŕöč˙ňŕ ůĺ ďđîäúëćč, íî, "
-"çŕ äŕ ńňŕđňčđŕňĺ ńčńňĺěŕňŕ ńč, ůĺ ňđ˙áâŕ äŕ ńúçäŕäĺňĺ ńňŕđňčđŕůî ďîëĺ â "
-"DiskDrake"
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Íĺ ĺ íŕěĺđĺí ăëŕâĺí ä˙ë çŕ íŕäăđŕćäŕíĺ"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Root ä˙ë"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Ęîé ĺ root-ä˙ëúň (/) íŕ ńčńňĺěŕňŕ âč ?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Íŕëŕăŕ ńĺ đŕ đĺńňŕđňčđŕňĺ, ďđĺäč ěîäčôčęŕöččňĺ äŕ ďđĺäčçâčęŕň ĺôĺęň"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Čçáĺđĺňĺ ä˙ëîâĺňĺ, ęîčňî čńęŕňĺ äŕ ôîđěŕňčđŕňĺ"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Ďđîâĺđęŕ çŕ ëîřč ńĺęňîđč ?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëowe"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Ńúçäŕâŕíĺ č ôîđěŕňčđŕíĺ íŕ ôŕéëŕ %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr ""
-"Í˙ěŕ äîńňŕňú÷íî swap çŕ ďđčęëţ÷âŕíĺ íŕ číńňŕëŕöč˙ňŕ, ěîë˙ äîáŕâĺňĺ ěŕëęî"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Ňúđń˙ íŕëč÷íč ďŕęĺňč"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Ňúđń˙ ďŕęĺňč çŕ îáíîâ˙âŕíĺ"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Ńčńňĺěŕňŕ âč í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ číńňŕëŕöč˙ čëč îáíîâ˙âŕíĺ (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Ďúëíŕ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Ěčíčěŕëíŕ (%d Mb)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Ďđĺďîđú÷čňĺëíŕ (%dMb)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Ěîćĺ čçáĺđĺňĺ çŕđĺćäŕíĺ čëč çŕďčń íŕ čçáîđŕ íŕ ďŕęĺňč íŕ ôëîďč.\n"
-"Ôîđěŕňúň ĺ ńúůč˙ň ęŕňî auto_install ăĺíĺđčđŕíčňĺ äčńęĺňč."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Çŕđĺäč îň äčńęĺňŕ"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Çŕđĺćäŕíĺ îň äčńęĺňŕ"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Čçáîđ íŕ ďŕęĺňč"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Ńëîćĺňĺ äčńęĺňŕ ńúäúđćŕůŕ čçáîđ íŕ ďŕęĺňč"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Çŕďŕçč íŕ äčńęĺňŕ"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Čçáđŕíŕňŕ ăîëĺěčíŕ ĺ ďî-ăîë˙ěŕ îň äîńňúďíîňî ďđîńňđŕíńňâî"
-
-#: ../../install_steps_interactive.pm_.c:671
-#, fuzzy
-msgid "Type of install"
-msgstr "Čçáĺđĺňĺ ďŕęĺňč çŕ číńňŕëčđŕíĺ"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-#, fuzzy
-msgid "With X"
-msgstr "Ĺäčí ěîěĺíň"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Ŕęî čěŕňĺ âńč÷ęč CD-ňŕ îň ńďčńúęŕ ďî-ăîđĺ, íŕňčńíĺňĺ Ok.\n"
-"Ŕęî í˙ěŕňĺ íčňî ĺäíî îň ňĺçč CD-ňŕ, íŕňčńíĺňĺ Îňě˙íŕ.\n"
-"Ŕęî âč ëčďńâŕň í˙ęîč CD-ňŕ, ěŕőíĺňĺ ăč, č íŕňčńíĺňĺ Ok. "
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM îçŕăëŕâĺí \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Ďîäăîňâ˙ě číńňŕëŕöč˙ňŕ"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Číńňŕëčđŕě ďŕęĺň %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Ńëĺä číńňŕëŕöčîííŕ íŕńňđîéęŕ"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Ńëîćĺňĺ ńňŕđňčđŕůŕňŕ äčńęĺňŕ â óńňđîéńňâî %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Ńëîćĺňĺ äčńęĺňŕ çŕ îáíîâ˙âŕíĺ íŕ ěîäóëč â óńňđîéńňâî %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Ńĺăŕ čěŕňĺ âúçěîćíîńňňŕ äŕ ńâŕëčňĺ ńîôňóĺđ ń öĺë ęîäčđŕíĺ.\n"
-"\n"
-"ÂÍČĚŔÍČĹ:\n"
-"\n"
-"Ďîđŕäč đŕçëč÷íčňĺ čçčńęâŕíč˙ ďîńňŕâĺíč îň ňîçč ńîôňóĺđ č îň ěíîăî\n"
-"ţđčńäčęöčč, ęëčĺíňčňĺ č/čëč ęđŕéíčňĺ ęëčĺíňč íŕ ňîçč ńîôňóĺđ ňđ˙áâŕ\n"
-"äŕ áúäŕň ńčăóđíč, ÷ĺ íîđěŕňčâíŕňŕ áŕçŕ čě ďîçâîë˙âŕ ńâŕë˙íĺňî, ďđîäŕćáŕňŕ\n"
-"č/čëč čçďîëçâŕíĺňî íŕ ňîçč ńîôňóĺđ.\n"
-"\n"
-"Â äîďúëíĺíčĺ ęëčĺíňúň č/čëč ęđŕéíč˙ ďîňđĺáčňĺë ňđ˙áâŕ äŕ âíčěŕâŕ ń ňîâŕ\n"
-"äŕíĺáč äŕ íŕđóřč ÷ŕńň îň íîđěŕňčâíŕňŕ áŕçŕ. Ęëčĺíňúň č/čëč ęđŕéíč˙ň\n"
-"ďîňđĺáčňĺë ňđ˙áâŕ äŕ óâŕćŕâŕ ďđčëĺćŕůčňĺ çŕęîíč, ňúé ęŕňî ňîé ůĺ ďîíĺńĺ\n"
-"ńŕíęöččňĺ.\n"
-" íčęŕęúâ ńëó÷ŕé Mandrakesoft čëč íĺăîâčňĺ ďđîčçâîäčňĺëč č/čëč\n"
-"ńďîěîůĺńňâóâŕňĺëčňĺ ěó íĺ íîń˙ň íčęŕęâŕ îňăîâîđíîńň çŕ ęŕęâčňî č äŕ ĺ\n"
-"ďđĺęč, ęîńâĺíč čëč ńëó÷ŕéíč âđĺäč (âęëţ÷čňĺëíî, íî íĺ ńŕěî îăđŕíč÷ĺíč â\n"
-"çŕăóáŕňŕ íŕ ďîëçč, ďđĺęúńâŕíĺ íŕ áčçíĺń, çŕăóáŕ íŕ ęîěĺđńčŕëíč äŕííč č\n"
-"äđóăč ďŕđč÷íč çŕăóáč, č ĺâĺíňóŕëíč îňăîâîđíîńňč č îáĺůĺňĺíč˙ çŕ ďëŕůŕíĺ\n"
-"ďî ńúäĺáíč đĺřĺíč˙) ďđĺäčçâčęŕíč îň čçďîëçâŕíĺňî, ďîńňŕâ˙íĺňî čëč äîđč\n"
-"ńâŕë˙íĺňî íŕ ňîçč ńîôňóĺđ, äî ęîéňî ęëčĺíňúň č/čëč ęđŕéíč˙ň ďîňđĺáčňĺë\n"
-"ĺâĺíňóŕëíî ěîćĺ äŕ čěŕ äîńňúď ńëĺä ńúăëŕńčĺňî ń ňîâŕ ńďîđŕçóěĺíčĺ.\n"
-"\n"
-"Çŕ âń˙ęŕęâč âúďđîńč ďî ňîâŕ ńďîđŕçóěĺíčĺ, ěîë˙, ńâúđćĺňĺ ńĺ ń \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Ńâúđçâŕíĺ ń îăëĺäŕëíč˙ ńúđâúđ çŕ ďîëó÷ŕâŕíĺ íŕ ńďčńúęŕ ń ďŕęĺňčňĺ"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Čçáĺđĺňĺ îăëĺäŕëĺí ńúđâúđ,îň ęîéňî äŕ ďîëó÷čňĺ ďŕęĺňčňĺ"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Ńâúđçâŕíĺ ń îăëĺäŕëíč˙ ńúđâúđ çŕ ďîëó÷ŕâŕíĺ íŕ ńďčńúęŕ ń ďŕęĺňčňĺ"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Ęî˙ ĺ âđĺěĺâŕňŕ âč çîíŕ ?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Őŕäđóĺđíč˙ň âč ÷ŕńîâíčę ĺ íŕńňđîĺí ďî GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Ŕâňîěŕňč÷íŕ ńčíőđîíčçŕöč˙ íŕ âđĺěĺňî (čçďîëçâŕ NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP ńúđâúđ"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Îňäŕëĺ÷ĺí CUPS ńúđâúđ"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Í˙ěŕ ďđčíňĺđ"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Čěŕňĺ ëč äđóă(č) ?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Îáîáůĺíčĺ"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Ěčřęŕ"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "×ŕńîâŕ çîíŕ"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Ďđčíňĺđ"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDN ęŕđňŕ"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Çâóęîâŕ ęŕđňŕ"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV ęŕđňŕ"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Ëîęŕëíč ôŕéëîâĺ"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Âúâĺäĺňĺ ďŕđîëŕ çŕ root"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Áĺç ďŕđîëŕ"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Ďŕđîëŕňŕ ĺ ďđĺęŕëĺíî ďđîńňŕ (ňđ˙áâŕ äŕ áúäĺ äúëăŕ ďîíĺ %d ńčěâîëŕ)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Čäĺíňčôčęŕöč˙"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "LDAP ŕóňîđčçŕöč˙"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP Áŕçîâ dn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAP ńúđâúđ"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "NIS ŕóňîđčçŕöč˙"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS äîěĺéí"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS ńúđâúđ"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Ęëčĺíňńę˙ň bootdisk ĺ íĺîáőîäčě çŕ ńňŕđňčđŕíĺ â Linux ńčńňĺěŕňŕ âč "
-"íĺçŕâčńčěî\n"
-"îň îáčęíîâĺíč˙ bootloader. Ňîâŕ ĺ ďîëĺçíî, ŕęî íĺ čńęŕňĺ äŕ číńňŕëčđŕňĺ\n"
-"SILO íŕ ńčńňĺěŕňŕ ńč, ŕęî í˙ęî˙ äđóăŕ îďĺđŕöčîííŕ ńčńňĺěŕ ěŕőíĺ SILO\n"
-"čëč ŕęî SILO íĺ đŕáîňč ń őŕđäóĺđíŕňŕ âč íŕńňđîéęŕ. Ęëčĺíňńęč˙ň bootdisk\n"
-"ěîćĺ äŕ áúäĺ čçďîëçâŕí ńúń\n"
-"ńďŕńčňĺëíč˙ň îáđŕç íŕ Mandrake, óëĺńí˙âŕęč âúçńňŕíîâ˙âŕíĺňî ďđč đĺäęč\n"
-"ńëó÷ŕč íŕ ńđčâ.\n"
-"\n"
-"Ŕęî čńęŕňĺ äŕ ńúçäŕäĺňĺ bootdisk çŕ âŕřŕňŕ ńčńňĺěŕ, ďîńňŕâĺňĺ äčńęĺňŕ â\n"
-"ďúđâîňî óńňđîéńňâî č íŕňčńíĺňĺ \"Ok\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Ďúđâî ôëîďč óńňđîéńňâî"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Âňîđî ôëîďč óńňđîéńňâî"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Ďđĺńęî÷č"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Ęëčĺíňńęč bootdisk ĺ íĺîáőîäčě çŕ ńňŕđňčđŕíĺ â Linux ńčńňĺěŕňŕ âč "
-"íĺçŕâčńčěî\n"
-"îň îáčęíîâĺíŕňŕ çŕđĺćäŕůŕ ďđîăđŕěŕ. Ňîâŕ ĺ ďîëĺçíî, ŕęî íĺ čńęŕňĺ äŕ "
-"číńňŕëčđŕňĺ\n"
-"LILO (čëč GRUB) íŕ ńčńňĺěŕňŕ ńč čëč ŕęî í˙ęî˙ äđóăŕ îďĺđŕöčîííŕ ńčńňĺěŕ "
-"ěŕőíĺ LILO čëč LILO íĺ\n"
-"đŕáîňč ń őŕđäóĺđíŕňŕ âč íŕńňđîéęŕ. Bootdisk-úň ěîćĺ äŕ áúäĺ čçďîëçâŕí ńúń\n"
-"ńďŕńčňĺëíŕňŕ äčńęĺňŕ íŕ Mandrake, óëĺńí˙âŕůŕ âúçńňŕíîâ˙âŕíĺňî ďđč đĺäęč\n"
-"ńëó÷ŕč íŕ ńđčâ. Čńęŕňĺ ëč äŕ ńúçäŕě bootdisk çŕ ńčńňĺěŕňŕ âč ?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Ńúćŕë˙âŕě í˙ěŕ ôëîďč"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Čçáĺđĺňĺ ôëîďč äđŕéâ,ęúäĺňî äŕ íŕďđŕâčňĺ ńňŕđňčđŕůŕ äčńęĺňŕ"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Ńëîćĺňĺ äčńęĺňŕ â óńňđîéńňâî %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Ńúçäŕâŕíĺ íŕ ńňŕđňčđŕůŕ äčńęĺňŕ"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Ďîäăîňîâęŕ íŕ bootloader"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Čçăëĺćäŕ čěŕňĺ ńňŕđîâđĺěńęŕ čëč íĺčçâĺńňíŕ\n"
-"ěŕřčíŕ, íŕ ęî˙ňî yaboot í˙ěŕ äŕ ďđîđŕáîňč.\n"
-"Číńňŕëŕöč˙ňŕ ůĺ ďđîäúëćč, íî ůĺ ňđ˙áâŕ\n"
-"äŕ čďîëçâŕňĺ BootX, çŕ äŕ ńňŕđňčđŕňĺ ěŕřčíŕňŕ ńč"
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Čńęŕňĺ ëč äŕ čçďîëçâŕňĺ aboot ?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Ăđĺřęŕ ďđč číńňŕëčđŕíĺ íŕ aboot, \n"
-"äŕ ńĺ îďčňŕě ëč äŕ ďđîäúëćŕ číńňŕëŕöč˙ňŕ äîđč, ŕęî ňîâŕ óíčćňîćč ďúđâč˙ ä˙ë ?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Číńňŕëčđŕíĺ íŕ bootloader"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Číńňŕëŕöč˙ňŕ íŕ bootloader ďđîâŕëĺíŕ. Ďî˙âč ńĺ ńëĺäíŕňŕ ăđĺřęŕ:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Ěîćĺ áč ńĺ íóćäŕĺňĺ äŕ ďđîěĺíčňĺ Open Firmware ńňŕđňîâîňî óńňđîéńňâî,\n"
-" çŕ äŕ ďóńíĺňĺ çŕđĺćäŕůŕňŕ ďđîăđŕěŕ. Ŕęî íĺ âčćäŕňĺ ďîäńęŕçęŕňŕ č ďđč\n"
-" đĺńňŕđňčđŕíĺ, çŕäđúćňĺ Command-Option-O-F ďđč đĺńňŕđňčđŕíĺ č âúâĺäĺňĺ:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Ńëĺä ęîĺňî íŕďčřĺňĺ: shut-down\n"
-"Ďđč ńëĺäâŕůîňî đĺńňŕđňčđŕíĺ áč ňđ˙áâŕëî äŕ âčäĺňĺ ďîäńęŕçęŕňŕ."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Ńëîćĺňĺ ďđŕçíŕ äčńęĺňŕ â óńňđîéńňâî %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Ďîäăîňâ˙ě äčńęĺňŕ ń ŕâňîěŕňč÷íŕ číńňŕëŕöč˙"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Í˙ęîč ĺňŕďč íĺ ńŕ çŕâúđřĺíč.\n"
-"\n"
-"Íŕčńňčíŕ ëč čńęŕňĺ äŕ čçëĺçĺňĺ ńĺăŕ ?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Ďîçäđŕâëĺíč˙, číńňŕëŕöč˙ňŕ ĺ ďđĺęëţ÷ĺíŕ.\n"
-"Ďđĺěŕőíĺňĺ ńňŕđňîâîňî óńňđîéńňâî č íŕňčńĺíĺ Enter çŕ äŕ đĺńňŕđňčđŕéňĺ.\n"
-"\n"
-"\n"
-"Çŕ číôîđěŕöč˙ îňíîńíî ďîďđŕâęč, íŕ ňŕçč âĺđńč˙ íŕ Mandrake Linux,\n"
-"ńĺ ęîíńóëňčđŕéňĺ ń Errata, íŕ ŕäđĺń : \n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Číôîđěŕöč˙ çŕ íŕńňđîéâŕíĺ íŕ ńčńňĺěŕňŕ âč ěîćĺňĺ äŕ íŕěĺđčňĺ â\n"
-"ńëĺäčíńňŕëŕöčîííŕňŕ ăëŕâŕ îň Official Mandrake Linux User's Guide."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Ďîäăîňâč äčńęĺňŕ çŕ ŕâňîěŕňč÷íŕ číńňŕëŕöč˙"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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:1361
-msgid "Automated"
-msgstr "Ŕâňîěŕňčçčđŕí"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Ďîâňîđč"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Çŕďŕçč čçáîđ íŕ ďŕęĺňč"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Číńňŕëŕöč˙ íŕ Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> ěĺćäó ĺëĺěĺíňčňĺ | <Space> čçáčđŕ | <F12> ńëĺäâŕů ĺęđŕí"
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "ëčďńâŕ kdesu"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Čçáĺđĺňĺ ôŕéë"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Íŕďđĺäíč÷ŕâ"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Ěîë˙ čç÷ŕęŕéňĺ"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Číôîđěŕöč˙"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Đŕçřčđč äúđâîňî"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Čç÷čńňč äúđâîňî"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Ďđĺâęëţ÷âŕíĺ ěĺćäó íîđěŕëíî č ńîđňčđŕíĺ ďî ăđóďč"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Ëîř čçáîđ, îďčňŕéňĺ îňíîâî\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Âŕřč˙ň čçáîđ ? (ďî ďîäđŕçáčđŕíĺ ĺ %s)"
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Âŕřč˙ň čçáîđ ? (ďî ďîäđŕçáčđŕíĺ ĺ %s)"
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Îďöčč: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "Čńęŕňĺ ëč äŕ čçďîëçâŕňĺ aboot ?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Âŕřč˙ň čçáîđ ? (ďî ďîäđŕçáčđŕíĺ ĺ %s)"
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "×ĺřęŕ (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Íĺěńęŕ"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Äâîđŕę"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Čńďŕíńęŕ"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Ôčíëŕíäńęŕ"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Ôđĺíńęŕ"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Íîđâĺćęŕ"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Ďîëńęŕ"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Đóńęŕ"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Řâĺäńęŕ"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "UĘ ęëŕâčŕňóđŕ"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "US ęëŕâčŕňóđŕ"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Ŕëáŕíńęŕ"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Ŕđěĺíńęŕ (ńňŕđŕ)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Ŕđěĺíńęŕ (ďčřĺůŕ ěŕřčíŕ)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Ŕđěĺíńęŕ (ôîíĺňč÷ĺí)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Ŕçĺđáŕéäćŕíńęŕ (ëŕňčíčöŕ)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Áĺëăčéńęŕ"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Ŕđěĺíńęŕ (ôîíĺňč÷ĺí)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Áúëăŕđńęŕ"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Áđŕçčëńęŕ (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Áĺëŕđóńęŕ"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Řâĺéöŕđńęŕ (íĺěńęŕ íŕđĺäáŕ)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Řâĺéöŕđńęŕ (ôđĺíńęč íŕđĺäáŕ)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "×ĺřęŕ (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Íĺěńęŕ (áĺç íĺđŕáîňĺůč ęëŕâčřč)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Äŕňńęŕ"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Äâîđŕę (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Äâîđŕę (Íîđâĺćęŕ)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Äâîđŕę (US)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Ĺńňîíńęŕ"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Ăđóçčíńęŕ (\"Đóńęŕ\" íŕđĺäáŕ)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Ăđóçčíńęŕ (\"Ëŕňčíńęŕ\" íŕđĺäáŕ)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Ăđúöęŕ"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Óíăŕđńęŕ"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Őúđâŕňńęŕ"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Čçđŕĺëńęŕ"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Čçđŕĺëńęŕ (ôîíĺňč÷íŕ)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Čđŕíńęŕ"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Čńëŕíäńęŕ"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Čňŕëčŕíńęŕ"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "ßďîíńęŕ 106 ęëŕâčřŕ"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Ęîđĺéńęŕ ęëŕâčŕňóđŕ"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Ëŕňčíîŕěĺđčęŕíńęŕ"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Ëčňâčéńęŕ AZERTY (ńňŕđŕ)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Ëčňâčéńęŕ AZERTY (íîâŕ)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Ëčňâčéńęŕ \"÷čńëîâŕ đĺäčöŕ\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Ëčňâčéńęŕ \"ôîíĺňč÷ĺí\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "Ëŕňâčéńęŕ"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Ěŕęĺäîíńęŕ"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Őîëŕíäńęŕ"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Ďîëńęŕ (QWERTY íŕđĺäáŕ)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Ďîëńęŕ (QWERTZ íŕđĺäáŕ)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Ďîđňóăŕëńęŕ"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Ęŕíŕäńęŕ (Ęâĺáĺę)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Đóěúíńęŕ (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Đóěúíńęŕ (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Đóńęŕ (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Ńëîâĺíńęŕ"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Ńëîâŕřęŕ (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Ńëîâŕřęŕ (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Ńđúáńęŕ (ęčđčëčöŕ)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Ňŕáëčöŕ"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Ňŕéâŕíńęŕ ęëŕâčŕňóđŕ"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Ňŕäćčęčńňŕíńęŕ ęëŕâčŕňóđŕ"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Ňóđńęŕ (ňđŕäčöčîíĺí \"F\" ěîäĺë)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Ňóđńęŕ (ěîäĺđĺí \"Q\" ěîäĺë)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Óęđŕčíńęŕ"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "US ęëŕâčŕňóđŕ (ěĺćäóíŕđîäíŕ)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Âčĺňíŕěńęŕ \"÷čńëîâŕ đĺäčöŕ\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Ţăîńëŕâńęŕ (ëŕňčíčöŕ)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "\"Îěŕăüîńŕí ęđúă\" îň ěîíňčđŕíč˙: %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Ďúđâî ďđĺěŕőíč ëîăč÷íčňĺ ä˙ëîâî\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Ěčřęŕ íŕ Sun"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Îáčęíîâĺííŕ PS2 ěčřęŕ"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington THinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genuis NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 áóňîí"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Îáčęíîâĺííŕ 2-áóňîííŕ ěčřęŕ"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Îáů"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Wheel"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "ńĺđčéíŕ"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Îáčęíîâĺííŕ 3-áóňîííŕ ěčřęŕ"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (ńĺđčéíŕ, îň ńňŕđč˙ ňčď C7)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "BUS ěčřęŕ"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 áóňîíŕ"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 áóňîíŕ"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "í˙ěŕ"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Áĺç ěčřęŕ"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Çŕ äŕ ŕęňčâčđŕňĺ ěčřęŕňŕ ńč,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "ÁÓŇÍĹŇĹ ŇÎĎ×ĹŇÎ !"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Çŕâúđřč"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Ńëĺäâŕů ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Ďđĺäčřĺí"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Âńč÷ęî ďđŕâčëíî ëč ĺ ?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň"
-
-#: ../../network/adsl.pm_.c:20
-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'."
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch USB"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "čçďîëçâŕé DHCP"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "čçďîëçâŕé PPPOE"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "čçďîëçâŕé PPPTP"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Ęŕęúâ DHCP ęëčĺíň čńęŕňĺ äŕ čçďîëçâŕňĺ ?\n"
-"Ďî ďîäđŕçáčđŕíĺ ĺ dhcpcd ?"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Íĺ áĺřĺ íŕěĺđĺí ěđĺćîâ ŕäŕďňĺđ â ńčńňĺěŕňŕ âč.\n"
-"Íĺ ěîćĺňĺ äŕ íŕńňđîčňĺ ňŕęúâ âčä âđúçęŕ."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Čçáĺđĺňĺ ěđĺćîâ číňĺđôĺéń"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Ěîë˙, čçáĺđĺňĺ ęîé ěđĺćîâ ŕäŕďňĺđ äŕ čçďîëçâŕě çŕ âđúçęŕ ęúě Číňĺđíĺň"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "íĺ ĺ îňęđčňŕ ěđĺćîâŕ ęŕđňŕ"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Íŕńňîéęŕ íŕ ěđĺćŕňŕ"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Ěîë˙, âúâĺäĺňĺ čěĺ íŕ őîńň ŕęî ăî çíŕĺňĺ.\n"
-"Í˙ęîé DHCP ńúđâúđč čçčńęâŕň ňîâŕ çŕ äŕ đŕáîň˙ň.\n"
-"Host čěĺňî ňđ˙áâŕ äŕ áóäĺ íŕďúëíî ęâŕëčôčöčđŕíî čěĺ,\n"
-"ęŕňî ``mybox.mylab.myco.com''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Čěĺ íŕ őîńň:"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Ěŕăüîńíčę çŕ íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Âúířĺí ISDN ěîäĺě"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Âúňđĺříŕ ISDN ęŕđňŕ"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Ęŕęúâ ĺ ňčďúň íŕ ISDN âđúçęŕňŕ ?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Ęî˙ ISDN íŕńňđîéęŕ ďđĺäďî÷čňŕňĺ ?\n"
-"\n"
-"* Ńňŕđŕňŕ íŕńňđîéęŕ čçďîëçâŕ isdn4net. Ńúäúđćŕ ěîůíč číńňđóěĺíňč\n"
-" íî ĺ ęŕďđčçíŕ çŕ íŕńňđîéęŕ č íĺ ĺ ńňŕíäŕđňíŕ.\n"
-"\n"
-"* Íîâŕňŕ íŕńňđîéęŕ ĺ ďî-ëĺńíŕ çŕ đŕçáčđŕíĺ, ďî ńňŕíäŕđňíŕ,\n"
-" íî ń ďî-ěŕëęî číńňđóěĺíňč.\n"
-"\n"
-"Ďđĺďîđú÷âŕěĺ âč îëĺęîňĺíŕňŕ íŕńňđîéęŕ.\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Íîâŕ íŕńňđîéęŕ (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Ńňŕđŕ íŕńňđîéęŕ (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Íŕńňđîéęŕ íŕ IDSN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Ďîńî÷ĺňĺ äîńňŕâ÷čęŕ ńč.\n"
-" Ŕęî íĺ ĺ â ńďčńúęŕ, čçáĺđĺňĺ Unlisted"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Ďđîňîęîë Ĺâđîďŕ"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Ďđîňîęîë Ĺâđîďŕ (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Ďđîňîęîë çŕ îńňŕíŕëč˙ ńâ˙ň"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Ďđîňîęîë çŕ îńňŕíŕëč˙ ńâ˙ň\n"
-" áĺç D-Ęŕíŕë (íŕĺňŕ ëčíč˙)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Ęŕęúâ ďđîňîęîë ćĺëŕĺňĺ äŕ ďđîěĺíčňĺ ?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Ęŕęúâ ňčď ęŕđňŕ čěŕňĺ ?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Íĺ çíŕě"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Ŕęî čěŕňĺ ISA ęŕđňŕ, ńňîéíîńňčňĺ íŕ ńëĺäâŕůč˙ ĺęđŕí ňđ˙áâŕ äŕ ńŕ âĺđíč.\n"
-"\n"
-"Ŕęî čěŕňĺ PCMCIA ęŕđňŕ, ůĺ ňđ˙áâŕ äŕ çíŕĺňĺ IRC č IO íŕ ęŕđňŕňŕ ńč.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Îňęŕç"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Íŕňŕňúę"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Ęî˙ ĺ ISDN ęŕđňŕňŕ âč ?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Îňęđčňŕ ĺ ISDN PCI ęŕđňŕ, íî ń íĺďîçíŕň ňčď. Ěîë˙ čçáĺđĺňĺ í˙ęî˙ PCI ęŕđňŕ "
-"îň ńëĺäâŕůč˙ň ĺęđŕí."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Íĺ ĺ íŕěĺđĺíŕ ISDN PCI ęŕđňŕ. Ěîë˙ čçáĺđĺňĺ îň ńëĺäâŕůč˙ň ĺęđŕí."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Ěîë˙, čçáĺđĺňĺ ńĺđčĺí ďîđň ęúě ęîéňî ńâúđçŕí ěîäĺěúň âč."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Îďöčč çŕ čçáčđŕíĺ ďî ňĺëĺôîí"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Čěĺ íŕ âđúçęŕňŕ"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Ňĺëĺôîíĺí íîěĺđ"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Áŕçčđŕíŕ íŕ ńęđčďň"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Áŕçčđŕíŕ íŕ ňĺđěčíŕë"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Čěĺ íŕ äîěĺéíŕ"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Ďúđâč DNS ńúđâúđ (ďî čçáîđ)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Âňîđč DNS ńúđâúđ (ďî čçáîđ)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Ěîćĺňĺ äŕ ńĺ îňâúđćĺňĺ čëč äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Ěîćĺňĺ äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Â ěîěĺíňŕ ńňĺ ńâúđçŕíč ęúě Číňĺđíĺň"
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Ěîćĺňĺ äŕ ńĺ ńâúđćĺňĺ ęúě Číňĺđíĺň čëč äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Â ěîěĺíňŕ íĺ ńňĺ ńâúđçŕíč ęúě Číňĺđíĺň"
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Ńâúđćč"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Îňâúđćč"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Â ěîěĺíňŕ íŕńňđîéâŕě ěđĺćŕňŕ"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Číňĺđíĺň âđúçęŕ č íŕńňđîéęŕ"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Ńĺăŕ ůĺ íŕńňđîčě %s âđúçęŕňŕ."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Ńĺăŕ ůĺ íŕńňđîčě %s âđúçęŕňŕ.\n"
-"\n"
-"Íŕňčńíĺňĺ OK, çŕ äŕ ďđîäúëćčňĺ."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-
-#: ../../network/netconnect.pm_.c:139
-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"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Čçáĺđĺňĺ ďđîôčë çŕ íŕńňđîéęŕ"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Čçďîëçâŕé ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Îňęđčâŕíĺ íŕ óńňđîéńňâŕ ..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Îáčęíîâĺíŕ ěîäĺěíŕ âđúçęŕ"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "çŕńĺ÷ĺí íŕ ďîđň %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN âđúçęŕ"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "çŕńĺ÷ĺíŕ %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ADSL âđúçęŕ"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "çŕńĺ÷ĺí íŕ číňĺđôĺéń %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Ęŕáĺëíŕ âđúçęŕ"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "çŕńĺ÷ĺíŕ ĺ ęŕáĺëíŕ âđúçęŕ"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "LAN âđúçęŕ"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "ethernet ęŕđňč çŕńĺ÷ĺíč"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Čçáĺđĺňĺ âđúçęŕňŕ, ęîéňî čńęŕňĺ äŕ čçďîëçâŕňĺ"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Íŕńňđîčëč ńňĺ í˙ęîëęî íŕ÷číŕ çŕ âđúçęŕ ęúě Číňĺđíĺň.\n"
-"Čçáĺđĺňĺ ňîçč, ęîéňî čńęŕňĺ äŕ čçďîëçâŕňĺ.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Číňĺđíĺň âđúçęŕ"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Čńęŕňĺ ëč äŕ ńňŕđňčđŕňĺ âđúçęŕňŕ ńč ďđč çŕđĺćäŕíĺ ?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "Ěđĺćŕňŕ ňđ˙áâŕ äŕ áúäĺ đĺńňŕđňčđŕíŕ"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Čçíčęíŕ ďđîáëĺě ďđč đĺńňŕđňčđŕíĺňî íŕ ěđĺćŕňŕ:\n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Ďîçäđŕâëĺíč˙, ěđĺćîâŕňĺ č Číňĺđíĺň íŕńňđîéęŕňŕ ĺ çŕâúđřĺíŕ.\n"
-"\n"
-"Íŕńňđîéęčňĺ ůĺ áúäŕň ďđčëîćĺíč ęúě ńčńňĺěŕňŕ âč.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Ńëĺä ęŕňî ńňŕíĺ ňîâŕ, ďđĺďîđú÷âŕěĺ âč äŕ đĺńňŕđňčđŕňĺ X\n"
-"ńđĺäŕňŕ ńč, çŕ äŕ čçáĺăíĺňĺ ďđîáëĺěč ńúń ńě˙íŕňŕ čěĺňî íŕ őîńňŕ."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"ÂÍČĚŔÍČĹ: Ňîâŕ óńňđîéńňâî âĺ÷ĺ ĺ íŕńňđîĺíî äŕ ńĺ ńâúđçâŕ ęúě Číňĺđíĺň.\n"
-"Ďđîńňî ďđčĺěĺňĺ, çŕ äŕ îńňŕâčňĺ óńňđîéńňâîňî íŕńňđîĺíî.\n"
-"Ďîďđŕâęŕňŕ íŕ ďîëĺňŕňŕ ďî-äîëó ůĺ ďđĺçŕďčřĺ ňŕçč íŕńňđîéęŕ."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Ěîë˙, âúâĺäĺňĺ IP íŕńňđîéęčňĺ çŕ ňŕçč ěŕřčíŕ.\n"
-"Âń˙ęî óńňđîéńňâî ňđ˙áâŕ äŕ áúäĺ âúâĺäĺíî ęŕňî IP ŕäđĺń\n"
-"ń ňî÷ęîâî-äĺńĺňč÷íî îçíŕ÷ĺíčĺ (íŕďđčěĺđ, 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Íŕńňđîéęŕ íŕ ěđĺćîâîňî óńňđîéńňâî %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (äđŕéâĺđ %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP ŕäđĺń"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Ěđĺćîâŕ ěŕńęŕ"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Ŕâňîěŕňč÷ĺí IP ŕäđĺń"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP ŕäđĺńúň ňđ˙áâŕ äŕ áúäĺ âúâ ôîđěŕň 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Ěîë˙, âúâĺäĺňĺ host name çŕ ěŕřčíŕňŕ.\n"
-"Host čěĺňî ňđ˙áâŕ äŕ áóäĺ íŕďúëíî ęâŕëčôčöčđŕíî čěĺ,\n"
-"ęŕňî ``mybox.mylab.myco.com''.\n"
-"Ěîćĺňĺ ńúůî äŕ âúâĺäĺňĺ IP ŕäđĺńŕ íŕ Âŕřč˙ gateway, ŕęî čěŕňĺ ňŕęúâ"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS ńúđâúđ"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Gateway óńňđîéńňâî"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Íŕńňđîéęŕ íŕ proxy"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Ďđîńëĺä˙âŕíĺ íŕ ID íŕ ěđĺćîâŕňŕ ęŕđňŕ (ďîëĺçíî ďđč ëŕďňîďč)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy-ńúđâúđŕ ňđ˙áâŕ äŕ ĺ http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy-ńúđâúđŕ ňđ˙áâŕ äŕ ĺ ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Čńęŕňĺ ëč ńĺăŕ äŕ îďčňŕňĺ âđúçęŕ ęúě Číňĺđíĺň ?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Čçďđîáâŕíĺ íŕ âđúçęŕňŕ..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Ńčńňĺěŕňŕ â ěîěĺíňŕ ĺ ńâúđçŕíŕ ęúě Číňĺđíĺň."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Çŕ âŕřŕ ńčăóđíîńň, ńĺăŕ ň˙ ůĺ áúäĺňĺ îňâúđçŕíŕ."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Ńčńňĺěŕňŕ íĺ čçăëĺćäŕ ńâúđçŕíŕ ęúě Číňĺđíĺň.\n"
-"Îďčňŕéňĺ ńĺ äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Íŕńňđîéęŕ íŕ âđúçęŕňŕ"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Ěîë˙, ďîďúëíĺňĺ čëč ďđîâĺđĺňĺ ďîëĺňî ďî-äîëó"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ íŕ ęŕđňŕňŕ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Ďŕěĺň (DMA) íŕ ęŕđňŕňŕ"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO íŕ ęŕđňŕňŕ"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_0 íŕ ęŕđňŕňŕ"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 íŕ ęŕđňŕňŕ"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Ëč÷íč˙ âč ňĺëĺôîíĺí íîěĺđ"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Čěĺ íŕ äîńňŕâ÷čęŕ (íŕďđ. provider.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Ňĺëĺôîíĺí íîěĺđ íŕ äîńňŕâ÷čęŕ"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "1-âč DNS íŕ äîńňŕâ÷čęŕ (ďî ćĺëŕíčĺ)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "2-đč DNS íŕ äîńňŕâ÷čęŕ (ďî ćĺëŕíčĺ)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Čçáĺđĺňĺ ńňđŕíŕňŕ ńč"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Đĺćčě íŕ íŕáčđŕíĺ"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Ńęîđîńň íŕ âđúçęŕňŕ"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Timeout íŕ âđúçęŕňŕ (â ńĺę)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Čěĺ íŕ ŕęŕóíňŕ (ďîňĺáčňĺëńęî čěĺ)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Ďŕđîëŕ íŕ ŕęŕóíňŕ"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "ěîíňčđŕíĺňî íĺ óńď˙: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Đŕçřčđĺíč ä˙ëîâĺ íĺ ńĺ ďîääúđćŕň íŕ ňŕçč ďëŕňôîđěŕ"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Čěŕňĺ ďđŕçíčíŕ â ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ, íî íĺ ěîăŕ äŕ ˙ čçďîëçâŕě.\n"
-"Ĺäčíńňâĺíč˙ň íŕ÷čí ĺ äŕ ďđĺěĺńňčňĺ ăëŕâíčňĺ ńč ä˙ëîâĺ, çŕ äŕ čěŕňĺ ďđŕçíî "
-"ě˙ńňî ńëĺä extended-ä˙ëîâĺňĺ"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Âúçńňŕíîâ˙âŕíĺňî îň ôŕéëŕ %s íĺ óńď˙: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Ëîř backup-ôŕéë"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Ăđĺřęŕ ďđč çŕďčń âúâ ôŕéëŕ %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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:24
-msgid "must have"
-msgstr "íóćĺí"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "âŕćĺí"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "ěíîăî äîáúđ"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "äîáúđ"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "ńňŕâŕ"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Îáůŕ Unix Ďđčíňĺđíŕ Ńčńňĺěŕ"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Íîâî ďîęîëĺíčĺ"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Ëčíĺĺí Ďđčíňĺđĺí Äĺěîí"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Ďĺ÷ŕňŕé, Áĺç Îďŕřęŕ"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Ëîęŕëĺí ďđčíňĺđ"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Îňäŕëĺ÷ĺí ďđčíňĺđ"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Ďđčíňĺđ íŕ îňäŕëĺ÷ĺí CUPS ńúđâúđ"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Ďđčíňĺđ íŕ îňäŕëĺ÷ĺí LPD ńúđâúđ"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Ěđĺćîâ ďđčíňĺđ (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Ďđčíňĺđ íŕ SMB/Windows 95/98/NT ńúđâúđ"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Ďđčíňĺđ íŕ NetWare ńúđâúđ"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Âúâĺäĺňĺ URI íŕ ďĺ÷ŕňŕůî óńňđîéńňâî"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Ďđĺęŕđŕé đŕáîňŕňŕ ďđĺç ęîěŕíäŕ"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Íĺčçâĺńňĺí ěîäĺë"
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Ëîęŕëĺí ďđčíňĺđ"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Îňäŕëĺ÷ĺí ďđčíňĺđ"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Ăđĺřęŕ ďđč çŕďčń âúâ ôŕéëŕ %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(íŕ %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(íŕ ňŕçč ěŕřčíŕ)"
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP íŕ CUPS ńúđâúđŕ"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Ďî ďîäđŕçáčđŕíĺ)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Čçáĺđĺňĺ âđúçęŕ ęúě ďđčíňĺđŕ"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Ęŕę ĺ ńâúđçŕí ďđčíňĺđúň ?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Îňäŕëĺ÷ĺíčňĺ íŕ CUPS ńúđâúđ ďđčíňĺđč íĺ ňđ˙áâŕ äŕ íŕńňđîéâŕňĺ\n"
-"ňóę; ňĺçč ďđčíňĺđč ůĺ áúäŕň çŕńĺ÷ĺíč ŕâňîěŕňč÷íî. Ěîë˙,\n"
-"čçáĺđĺňĺ \"Ďđčíňĺđ íŕ îňäŕëĺ÷ĺí CUPS ńúđâúđ\" â ňîçč ńëó÷ŕé."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Íŕńňđîéęŕ"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Îňäŕëĺ÷ĺí CUPS ńúđâúđ"
-
-#: ../../printerdrake.pm_.c:71
-#, fuzzy
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"Ń îňäŕëĺ÷ĺíčňĺ CUPS ńúđâúđč, í˙ěŕ íóćäŕ äŕ íŕńňđîéâŕňŕ ęŕęúâňî\n"
-"č äŕ áčëî ďđčíňĺđ ňóę; CUPS ńúđâúđčňĺ číôîđěčđŕň ŕâňîěŕňč÷íî ěŕřčíŕňŕ\n"
-"çŕ ňĺőíčňĺ ďđčíňĺđč. Âńč÷ęč ďđčíňĺđč čçâĺńňíč íŕ ěŕřčíŕňŕ âč\n"
-"ńŕ čçđĺäĺíč â ďîëĺňî \"Ďđčíňĺđ ďî ďîđäđŕçáčđŕíĺ\". Čçáĺđĺňĺ\n"
-"ďđčíňĺđ ďî ďîäđŕçáčđŕíĺ çŕ ěŕřčíŕňŕ ńč îň ňŕě č öúęíĺňĺ íŕ áóňîíŕ\n"
-"\"Ďđčëîćč/Ďđĺďđî÷ĺňč ďđčíňĺđčňĺ\". Öúęíĺňĺ íŕ ńúůč˙ áóňîí, çŕ äŕ\n"
-"îďđĺńíčňĺ ńďčńúęŕ (ěîćĺ äŕ îňíĺěĺ äî 30 ńĺęóíäč ńëĺä ďóńęŕíĺňî\n"
-"íŕ CUPS, äîęŕňî âńč÷ęč îňäŕëĺ÷ĺíč ďđčíňĺđč ńňŕíŕň âčäčěč).\n"
-"Ęîăŕňî CUPS ńúđâúđ ĺ íŕ äđóăŕ ěđĺćŕ, ňđ˙áâŕ äŕ äŕäĺňĺ IP ŕäđĺń č,\n"
-"ĺâĺíňóëŕíî íîěĺđ íŕ ďîđň íŕ CUPS ńúđâúđŕ, çŕ äŕ âçĺěĺňĺ číôîđěŕöč˙\n"
-"çŕ ďđčíňĺđŕ îň ńúđâúđŕ, číŕ÷ĺ îńňŕâĺňĺ ďîëĺňî ďđŕçíî."
-
-#: ../../printerdrake.pm_.c:72
-#, fuzzy
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Îáčęíîâĺíî, CUPS ŕâňîěŕňč÷íî ńĺ íŕńňđîéâŕ ńďîđĺä ěđĺćîâŕňŕ ńđĺäŕ,\n"
-"ňŕęŕ ÷ĺ äŕ čěŕňĺ äîńňúď äî ďđčíňĺđčňĺ íŕ CUPS ńúđâúđŕ â ëîęŕëíŕňŕ\n"
-"âč ěđĺćŕ. Ŕęî íĺ ńđŕáîňč ęŕęňî ňđ˙áâŕ, čçęëţ÷ĺňĺ \"Ŕâňîěŕňč÷íŕ\n"
-"CUPS íŕńňđîéęŕ\" č ďîďđŕâĺňĺ ôŕéëŕ /etc/cups/cupsd.conf đú÷íî. Íĺ\n"
-"çŕáđŕâ˙éňĺ äŕ đĺńňŕđňčđŕňĺ CUPS ńëĺä ňîâŕ (ęîěŕíäŕ: \"service\n"
-"cups restart\")."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP ŕäđĺńúň ňđ˙áâŕ äŕ áúäĺ âúâ ôîđěŕň 192.168.1.20"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Íîěĺđúň íŕ ďîđňŕ ňđ˙áâŕ äŕ ĺ ö˙ëî ÷čńëî !"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP íŕ CUPS ńúđâúđŕ"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Ďîđň"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Ŕâňîěŕňč÷íŕ íŕńňđîéęŕ íŕ CUPS"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Çŕńč÷ŕíĺ íŕ óńňđîéńňâŕ ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ňĺńňâŕíĺ ďîđňîâĺňĺ"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Äîáŕâč ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Ëîęŕëĺí ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Îňäŕëĺ÷ĺí ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Čçďîëçâŕé ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "çŕńĺ÷ĺíŕ %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Âúâĺäĺňĺ URI íŕ ďĺ÷ŕňŕůî óńňđîéńňâî"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Ëîęŕëĺí ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Ěîë˙, čçáĺđĺňĺ ńĺđčĺí ďîđň ęúě ęîéňî ńâúđçŕí ěîäĺěúň âč."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Âúâĺäĺňĺ URI íŕ ďĺ÷ŕňŕůî óńňđîéńňâî"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Íŕńňđîéęŕ íŕ öâĺňîâĺ"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "×ĺňĺíĺ íŕ áŕçŕňŕ äŕííč îň ďđčíňĺđč ..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "×ĺňĺíĺ íŕ áŕçŕňŕ äŕííč îň ďđčíňĺđč ..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Îďöčč íŕ îňäŕëĺ÷ĺí lpd-ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Çŕ äŕ čçďîëçâŕňĺ îňäŕëĺ÷ĺí lpd ďđčíňĺđ, ňđ˙áâŕ\n"
-"äŕ ďđĺäîńňŕâčňĺ čěĺíŕňŕ íŕ őîńňŕ íŕ ďđčíňĺđíč˙ ńúđâúđ č\n"
-"čěĺňî íŕ ďđčíňĺđŕ íŕ ňîçč ńúđâúđ."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí őîńň"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Ëčďńâŕ čěĺ íŕ čěĺ íŕ őîńň !"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Ëčďńâŕ čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ !"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Íŕńňđîéęč íŕ SMB (Windows 9x/NT) ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Çŕ äŕ ďĺ÷ŕňŕňĺ íŕ SMB ďđčíňĺđ, ňđ˙áâŕ äŕ äŕäĺňĺ čěĺňî\n"
-"íŕ SMB őîńňŕ (Çŕáĺëĺćęŕ ! Ňî ěîćĺ äŕ ĺ đŕçëč÷íî îň TCP/IP őîńňŕ !)\n"
-"č âúçěîćíî IP ŕäđĺńŕ íŕ ďđčíňĺđńęč˙ ńúđâúđ, ęŕęňî č îáůîňî čěĺ íŕ\n"
-"ďđčíňĺđŕ, äî ęîéňî čńęŕňĺ äîńňúď č ďîäőîä˙ůî čěĺí, ďŕđîëŕ č číôîđěŕöč˙\n"
-"çŕ đŕáîňíŕňŕ ăđóďŕ."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Őîńň íŕ SMB ńúđâúđ"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP íŕ SMB ńúđâúđ:"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Îáůî čěĺ"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Đŕáîňíŕ ăđóďŕ"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Ňđ˙áâŕ äŕ áúäŕň çŕäŕäĺíč č čěĺňî č IP ŕäđĺńŕ íŕ ńúđâúđŕ !"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Ëčďńâŕ čěĺ íŕ SAMBA share !"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Îďöčč çŕ NetWare ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Çŕ äŕ ďĺ÷ŕňčňĺ íŕ NetWare ďđčíňĺđ ,ňđ˙áâŕ äŕ çíŕĺňĺ čěĺî ěó č âúçěîćíî\n"
-"ŕäđĺńŕ íŕ ńúđâúđŕ, ęŕęňî č čěĺňî íŕ îďŕřęŕňŕ,ďîňđĺáčňĺëńęîňî čěĺ,ďŕđîëŕ."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Ńúđâúđ íŕ ďđčíňĺđŕ"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Čěĺ íŕ ďĺ÷ŕňíŕňŕ îďŕřęŕňŕ"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "Ëčďńâŕ čěĺ íŕ NCP ńúđâúđ !"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "Ëčďńâŕ čěĺ íŕ NCP îďŕřęŕ !"
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Îďöčč íŕ Socket ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Çŕ äŕ ďĺ÷ŕňŕňĺ íŕ socket ďđčíňĺđ, ňđ˙áâŕ äŕ ďđĺäîńňŕâčňĺ\n"
-"čěĺňî íŕ őîńňŕ íŕ ďđčíňĺđŕ č, ĺâĺíňóŕëíî, íîěĺđ íŕ ďîđň.\n"
-"Íŕ HP JetDirect ńúđâúđč, íîěĺđúň íŕ ďîđňŕ îáčęíîâĺííî ĺ 9100,\n"
-"íŕ äđóăč ńúđâúđč ěîćĺ äŕ âŕđčđŕ. Âčćňĺ đúęîâîńňâîňî íŕ\n"
-"őŕđäóĺđŕ ńč."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Čěĺ íŕ őîńň íŕ ďđčíňĺđŕ"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Ëčďńâŕ čěĺ íŕ őîńň íŕ ďđčíňĺđa !"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Ďĺ÷ŕňŕůî óńňđîéńňâî URI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Ňđ˙áâŕ äčđĺęňíî äŕ îďđĺäĺëčňĺ URI çŕ äîńňúď äî ďđčíňĺđŕ. URI ňđ˙áâŕ äŕ "
-"čçďúëíč čëč CUPS čëč Foomatic ńďĺöčôčęŕöččňĺ. Îňáĺëĺćĺňĺ, ÷ĺ íĺ âńč÷ęč "
-"ňčďîâĺ URI ńĺ ďîääđúđćŕň îň spooler-čňĺ."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Ňđ˙áâŕ äŕ áúäĺ âúâĺäĺí âŕëčäĺí URI !"
-
-#: ../../printerdrake.pm_.c:1004
-#, fuzzy
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Âńĺęč ďđčíňĺđ ńĺ íóćäŕĺ îň čěĺ (íŕďđčěĺđ lp).\n"
-"Ďîëĺňŕňŕ Îďčńŕíčĺ č Ěĺńňîďîëîćĺ íĺ ňđ˙áâŕ äŕ áúäŕň\n"
-"ďîďúëâŕíč. Čěŕ ęîěĺíňŕđč çŕ ďîňđĺáčňĺëčňĺ."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Čěĺ íŕ ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Îďčńŕíčĺ"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Ěĺńňîďîëîćĺíčĺ"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Ďîäăîňâ˙íĺ íŕ áŕçŕňŕ äŕííč îň ďđčíňĺđč ..."
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Âńč÷ęî ďđŕâčëíî ëč ĺ ?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Čěĺ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Čçáîđ ěîäĺë íŕ ďđčíňĺđŕ"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Ęŕęúâ ěîäĺë ďđčíňĺđ čěŕňĺ ?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "Íŕńňđîéęč íŕ OKI Winprinter"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Íŕńňđîéęŕ íŕ Lexmark inkjet"
-
-#: ../../printerdrake.pm_.c:1265
-#, fuzzy
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Inkjet ďđčíňĺđíčňĺ äđŕéâĺđč ďđĺäîńňŕâĺíč îň Lexmark ďîääúđćŕň\n"
-"ńŕěî ëîęŕëíč ďđčíňĺđč, áĺç ďđčíňĺđč íŕ îňäŕëĺ÷ĺíč ěŕřčíč čëč\n"
-"ďđčíňĺđíč ěŕřčíč. Ěîë˙, ńâúđćĺňĺ ďđčíňĺđŕ ńč íŕ ëîęŕëĺí ďîđň\n"
-"čëč ăî íŕńňđîéňĺ íŕ ěŕřčíŕňŕ, ęúě ęî˙ňî ĺ ńâúđçŕí."
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-#, fuzzy
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Íŕńňđîéęč íŕ ďđčíňĺđŕ ďî ďîäđŕçáčđŕíĺ\n"
-"Ňđ˙áâŕ äŕ ńňĺ ńčăóđíč, ÷ĺ ăîëĺěčíŕňŕ íŕ ńňđŕíčöŕňŕ\n"
-"č ňčďŕ íŕ ěŕńňčëîňî (ŕęî čěŕ) ńŕ íŕńňđîĺíč ďđŕâčëíî.\n"
-"Îňáĺëĺćĺňĺ, ÷ĺ ďđč ěíîăî âčńîęî ęŕ÷ĺńňî íŕ čçőîäŕ íŕ\n"
-"ďđčíňĺđŕ, ňîé ěîćĺ çíŕ÷čňĺëíî äŕ ńĺ çŕáŕâč."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Íŕńňđîéęŕňŕ %s ňđ˙áâŕ äŕ ĺ ö˙ëî ÷čńëî !"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Íŕńňđîéęŕňŕ %s ňđ˙áâŕ äŕ ĺ ÷čńëî !"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Îďöč˙ňŕ %s ĺ čçâúí ăđŕíčöčňĺ !"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Čńęŕňĺ ëč äŕ íŕńňđîčňĺ ňîçč ďđčíňĺđ (\"%s\")\n"
-"ęŕňî ďđčíňĺđ ďî ďîäđŕçáčđŕíĺ ?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Ňĺńňîâč ńňđŕíčöč"
-
-#: ../../printerdrake.pm_.c:1583
-#, fuzzy
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Ěîë˙, čçáĺđĺňĺ ňĺńňîâŕ ńňđŕíčöŕ çŕ ďĺ÷ŕň.\n"
-"Çŕáĺëĺćęŕ: ňĺńňîâŕňŕ ńňđŕíčöŕ çŕ ńíčěęŕ ěîćĺ äŕ îňíĺěĺ äîńňŕ äúëăî\n"
-"âđĺěĺ äŕ ńĺ čçďĺ÷ŕňŕ č íŕ ëŕçĺđíč ďđčíňĺđč ń ěŕëęî ďŕěĺň ěîćĺ âúîáůĺ\n"
-"äŕ íĺ čçëĺçĺ.  ďîâĺ÷ĺňî ńëó÷ŕč ĺ äîńňŕňú÷íŕ ńňŕíäŕđňíŕ ňĺńňîâŕ ńňđŕíčöŕ."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Áĺç ňĺńňîâč ńňđŕíčöč"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Ďĺ÷ŕň"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Ńňŕíäŕđňíŕ ňĺńňîâŕ ńňđŕíčöŕ"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Ŕëňĺđíŕňčâíŕ ňĺńňîâŕ ńňđŕíčöŕ (Ďčńěî)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Ŕëňĺđíŕňčâíŕ ňĺńňîâŕ ńňđŕíčöŕ (Ŕ4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Ňĺńňîâŕ ńňđŕíčöŕ ńúń ńíčěęŕ"
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Îňďĺ÷ŕňâŕíĺ íŕ ňĺńňîâč ńňđŕíčöč"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Îňďĺ÷ŕňâŕíĺ íŕ ňĺńňîâ(ŕňŕ/čňĺ) ńňđŕíčö(ŕ/č) ..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Ňĺńňîâčňĺ ńňđŕíčöč ńŕ čçďđŕňĺíč ęúě ďđčíňĺđŕ.\n"
-"Ěîćĺ äŕ îňíĺěĺ ěŕëęî âđĺěĺ ďđĺäč ďđčíňĺđŕ äŕ çŕďî÷íĺ.\n"
-"Ńúńňî˙íčĺ íŕ ďĺ÷ŕňŕ:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Ňĺńňîâčňĺ ńňđŕíčöč ńŕ čçďđŕňĺíč ęúě ďđčíňĺđíŕ.\n"
-"Ěîćĺ äŕ îňíĺěĺ ěŕëęî âđĺěĺ ďđĺäč ďđčíňĺđŕ äŕ çŕďî÷íĺ.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "Ďđîđŕáîňč ëč ęŕęňî ňđ˙áâŕ ?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Çŕ äŕ čçďĺ÷ŕňŕňĺ ôŕéë îň ęîěŕíäíč˙ đĺä (ňĺđěčíŕëĺí ďđîçîđĺö), ěîćĺňĺ čëč äŕ "
-"čçďîëçâŕňĺ ęîěŕíäŕňŕ \"%s <file>\" čëč ăđŕôč÷íč˙ ďĺ÷ŕňŕů číńňđóěĺíň: \"xpp "
-"<file>\" čëč \"kprinter <file>\". Ăđŕôč÷íčňĺ číńňđóěĺíňč âč ďîçâîë˙âŕň äŕ "
-"čçáčđŕňĺ ďđčíňĺđŕ č äŕ ďîďđŕâ˙ňĺ ëĺńíî íŕńňđîéęčňĺ íŕ îďöččňĺ.\n"
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Ěîćĺňĺ äŕ čçďîëçâŕňĺ ňŕçč ęîěŕíäŕ č â ďîëĺňî \"Ęîěŕíäŕ çŕ ďĺ÷ŕň\" íŕ "
-"ďĺ÷ŕňíčňĺ äčŕëîçč â ěíîƒî ďđčëîćĺíč˙. Íî ň˘ę íĺ ďîńňŕâ˙éňĺ čěĺňî íŕ ôŕéëŕ, "
-"çŕůîňî ňî ńĺ ďîäŕâŕ îň ďđčëîćĺíčĺňî.\n"
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"Ęîěŕíäŕňŕ \"%s\" ńúůî ňŕęŕ âč ďîçâîë˙âŕ äŕ ďîďđŕâčňĺ íŕńňđîéęčňĺ íŕ îďöččňĺ "
-"çŕ îďđĺäĺëĺíŕ đŕáîňŕ íŕ ďđčíňĺđŕ. Ďđîńňî äîáŕâĺňĺ öĺëŕíčňĺ íŕńňđîéęč ęúě "
-"ęîěŕíäíč˙ đĺä, íŕďđ. \"%s <file>\". "
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, fuzzy, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"Çŕ äŕ âčäčňĺ ńďčńúę íŕ äîńňúďíčňĺ îďöčč çŕ ňĺęóůč˙ ďđčíňĺđ, čëč ďđî÷ĺňĺňĺ "
-"ńďčńúęŕ ďîęŕçŕí ďî-äîëó čëč öúęíĺňĺ íŕ áóňîíŕ \"Ńďčńúę ń îďöčč çŕ ďĺ÷ŕň\".\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Çŕ äŕ čçďĺ÷ŕňŕňĺ ôŕéë îň ęîěŕíäíč˙ đĺä (ňĺđěčíŕëĺí ďđîçîđĺö) čçďîëçâŕéňĺ "
-"ęîěŕíäŕňŕ \"%s <file>\".\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Ěîćĺňĺ äŕ čçďîëçâŕňĺ ňŕçč ęîěŕíäŕ č â ďîëĺňî \"Ęîěŕíäŕ çŕ ďĺ÷ŕň\" íŕ "
-"ďĺ÷ŕňíčňĺ äčŕëîçč â ěíîăî ďđčëîćĺíč˙. Íî ňóę íĺ ďîńňŕâ˙éňĺ čěĺňî íŕ ôŕéëŕ, "
-"çŕůîňî ňî ńĺ ďîäŕâŕ îň ďđčëîćĺíčĺňî.\n"
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-#, fuzzy
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Çŕ äŕ âčäčňĺ ńďčńúę ń äîńňúďíčňĺ îďöčč çŕ ňĺęóůč˙ ďđčíňĺđ, öúęíĺňĺ íŕ áóňîíŕ "
-"\"Ńďčńúę ń îďöčč çŕ ďĺ÷ŕň\".\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Çŕ äŕ îňďĺ÷ŕňŕňĺ ôŕéë îň ęîěŕíäíč˙ đĺä (ňĺđěčíŕëĺí ďđîçîđĺö), čçďîëçâŕéňĺ "
-"ęîěŕíäŕňŕ \"%s <file>\" čëč \"%s <file>\".\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Ęîěŕíäčňĺ \"%s\" č \"%s\" ńúůî ňŕęŕ ďîçâîë˙âŕň äŕ ďîďđŕâ˙ňĺ čçáđŕíčňĺ "
-"íŕńňđîéęč çŕ îďđĺäĺëĺíŕ đŕáîňŕ íŕ ďđčíňĺđŕ. Ďđîńňî äîáŕâĺňĺ čńęŕíčňĺ "
-"íŕńňđîéęč ęúě ęîěŕíäíč˙ đĺä, íŕďđ. \"%s <file>\".\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Çŕňâîđč"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Ďĺ÷ŕňŕíĺ íŕ ďđčíňĺđ \"%s\""
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Ďĺ÷ŕňŕíĺ íŕ ďđčíňĺđ \"%s\""
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Ńďčńúę ń ďđčíňĺđíč îďöčč"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "×ĺňĺíĺ íŕ äŕííč îň ďđčíňĺđŕ ..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Ďđĺíîń íŕ íŕńňđîéęŕ íŕ ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:1815
-#, fuzzy, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Ěîćĺňĺ äŕ ęîďčđŕňĺ íŕńňđîéęčňĺ íŕ ďđčíňĺđŕ, ęîčňî ńňĺ čçâúđřčëč\n"
-"çŕ spoller %s íŕ %s, ňĺęóůč˙ spooler. Ö˙ëŕňŕ číôîđěŕöč˙ çŕ íŕńňđîéęčňĺ\n"
-"(čěĺ íĺ ďđčíňĺđ, îďčńŕíčĺ, ěĺńňîďîëîćĺíčĺ, âčä íŕ âđúçęŕňŕ č\n"
-"íŕńňđîéęč ďî ďîäđŕçáčđŕíĺ) ńĺ ďđĺçŕďčńâŕň, íî đŕáîňčňĺ íĺ ńĺ\n"
-"ďđĺőâúđë˙ň.\n"
-"Íĺ âńč÷ęč îďŕřęč ěîăŕň äŕ áúäŕň ďđĺőâúđëĺíč ďî ńëĺäíčňĺ ďđč÷číč:\n"
-
-#: ../../printerdrake.pm_.c:1818
-#, fuzzy
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS íĺ ďîääúđćŕ ďđčíňĺđč íŕ Novell ńúđâúđč čëč ďđčíňĺđč\n"
-"čçďđŕůŕůč äŕííč âúâ ńâîáîäíî-čçăđŕäĺíŕ ęîěŕíäŕ.\n"
-
-#: ../../printerdrake.pm_.c:1820
-#, fuzzy
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ ďîääúđćŕ ńŕěî ëîęŕëíč ďđčíňĺđč, îňäŕëĺ÷ĺíč LPD ďđčíňĺđč\n"
-"č Socket/TCP ďđčíňĺđč.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD č LPRng íĺ ďîääúđćŕ IPP ďđčíňĺđč.\n"
-
-#: ../../printerdrake.pm_.c:1824
-#, fuzzy
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Ęŕňî äîďúëíĺíčĺ, îďŕřęčňĺ íĺ ńúçäŕäĺíč ń ňŕçč ďđîăđŕěŕ\n"
-"čëč \"foomatic-configure\" íĺ ěîăŕň äŕ áúäŕň ďđĺőâúđë˙íč."
-
-#: ../../printerdrake.pm_.c:1825
-#, fuzzy
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Ńúůî ňŕęŕ, ďđčíňĺđč íŕńňđîĺíč ń PPD ôŕéëîâĺ ďđĺäîńňŕâĺíč\n"
-"îň ďđîčçâîäčňĺëčňĺ čě čëč ń îđčăčíŕëíč CUPS äđŕéâĺđč íĺ\n"
-"ěîăŕň äŕ áúäŕň ďđĺőâúđë˙íč."
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Îňáĺëĺćĺňĺ ďđčíňĺđčňĺ, ęîčňî čńęŕňĺ äŕ ďđĺőâúđëčňĺ č öúęíĺňĺ\n"
-"\"Ďđĺőâúđëč\"."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Íĺ ďđĺőâúđë˙é ďđčíňĺđč"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Ďđĺőâúđëč"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Ďđčíňĺđ ń čěĺ \"%s\" âĺ÷ĺ ńúůĺńňâóâŕ â %s.\n"
-"Öúęíĺňĺ \"Ďđĺőâúđëč\", çŕ äŕ ăî ďđĺçŕďčřĺňĺ.\n"
-"Ěîćĺňĺ ńúůî ňŕęŕ äŕ íŕďčřĺňĺ íîâî čěĺ čëč äŕ ďđîďóńíňĺ ďđčíňĺđŕ."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Čěĺňî íŕ ďđčíňĺđŕ ňđ˙áâŕ äŕ ńúäúđćŕ ńŕěî áóęâč, ÷čńëŕ č ďîä÷ĺđňŕâęŕ"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Ďđčíňĺđúň \"%s\" âĺ÷ĺ ńúůĺńňâóâŕ,\n"
-"íŕčńňčíŕ ëč čńęŕňĺ äŕ ďđĺçŕďčřĺňĺ íŕńňđîéęŕňŕ ?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Íîâî čěĺ íŕ ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "Ďđĺőâúđë˙íĺ íŕ %s ..."
-
-#: ../../printerdrake.pm_.c:1878
-#, fuzzy, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Ďđĺőâúđëčëč ńňĺ ďđčíňĺđ ďî ďîäđŕçáčđŕíĺ (\"%s\"),\n"
-"Čńęŕňĺ ëč äŕ ăî îńňŕâčňĺ ďî ďîäđŕçáčđŕíĺ â íîâŕňŕ\n"
-"ďđčíňĺđíŕ ńčńňĺěŕ %s ?"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Îďđĺńí˙âŕíĺ íŕ äŕííčňĺ îň ďđčíňĺđŕ ..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Íŕńňđîéęŕ íŕ îňäŕëĺ÷ĺí ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Ńňŕđňčđŕíĺ ěđĺćŕňŕ ...."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Â ěîěĺíňŕ íŕńňđîéâŕě ěđĺćŕňŕ"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "Ôóíęöčîíŕëíîńňňŕ íŕ ěđĺćŕňŕ íĺ ĺ íŕńňđîĺíŕ"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Ďđîäúëćč áĺç íŕńňîéęŕ íŕ ěđĺćŕňŕ"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-#, fuzzy
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Í˙ěŕřĺ äîńňúď äî ěđĺćŕňŕ č ňŕęúâ íĺ ěîćĺřĺ äŕ áúäĺ\n"
-"óńňŕíîâĺí. Ěîë˙, ďđîâĺđĺňĺ íŕńňđîéęŕňŕ č őŕđäóĺđŕ\n"
-"ńč. Ňîăŕâŕ îďčňŕéňĺ äŕ íŕńňđîčňĺ îňäŕëĺ÷ĺíč˙ ďđčíňĺđ\n"
-"îňíîâî."
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Đĺńňŕđňčđŕíĺ íŕ ďđčíňĺđíŕňŕ ńčńňĺěŕ"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "âčńîęî"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "ďŕđŕíîč÷íî"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Číńňŕëčđŕíĺ íŕ ďđčíňĺđíŕňŕ ńčńňĺěŕ â %s íčâî íŕ ńčăóđíîńň"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Ńňŕđňčđŕíĺ íŕ ďđčíňĺđíŕňŕ ńčńňĺěŕ ďđč ńňŕđňčđŕíĺ"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Ďđîâĺđęŕ íŕ číńňŕëčđŕíč˙ ńîôňóĺđ..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "Čçňđčâŕíĺ íŕ LPRng..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "Čçňđčâŕíĺ íŕ LPD..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Čçáĺđĺňĺ ďđčíňĺđĺí spooler"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Ęî˙ ďđčíňĺđíŕ ńčńňĺěŕ (spooler) čçęŕňĺ äŕ čçďîëçâŕňĺ ?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Íŕńňđîéęŕ íŕ ďđčíňĺđŕ \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Îďöčč íŕ ďđčíňĺđŕ"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "Ďîäăîňâ˙íĺ íŕ PinterDrake ..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Íŕńňđîéęŕ íŕ ďđčíňĺđŕ \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Čńęŕňĺ ëč äŕ íŕńňđîčňĺ ďĺ÷ŕňŕ ?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Ďĺ÷ŕňíŕ ńčńňĺěŕ: "
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Ńëĺäíčňĺ ďđčíňĺđč ńŕ íŕńňđîĺíč.\n"
-"Öúęíĺňĺ íŕ ĺäčí îň ň˙ő, çŕ äŕ ăî đĺäŕęňčđŕňĺ\n"
-"čëč çŕ äŕ ďîëó÷čňĺ číôîđěŕöč˙ çŕ íĺăî, čëč\n"
-"âúđőó \"Äîáŕâč Ďđčíňĺđ\", çŕ äŕ äîáŕâčňĺ íîâ ďđčíňĺđ."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Ńëĺäíčňĺ ďđčíňĺđč ńŕ íŕńňđîĺíč.\n"
-"Öúęíĺňĺ íŕ ĺäčí îň ň˙ő, çŕ äŕ ăî đĺäŕęňčđŕňĺ\n"
-"čëč çŕ äŕ ďîëó÷čňĺ číôîđěŕöč˙ çŕ íĺăî, čëč\n"
-"âúđőó \"Äîáŕâč Ďđčíňĺđ\", çŕ äŕ äîáŕâčňĺ íîâ ďđčíňĺđ."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Íŕńňîéęŕ íŕ ěđĺćŕňŕ"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Íîđěŕëĺí đĺćčě"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Čńęŕňĺ ëč äŕ íŕńňđîčňĺ äđóă ďđčíňĺđ ?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Ďîďđŕâč íŕńňđîéęčňĺ íŕ ďđčíňĺđ"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Ďđčíňĺđ %s: %s %s\n"
-"Ęŕęâî čńęŕňĺ äŕ ďîďđŕâčňĺ ďî ňîçč ďđčíňĺđ ?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "Äŕâŕé !"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Ňčď íŕ âđúçęŕňŕ ęúě ďđčíňĺđŕ"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Čěĺ íŕ ďđčíňĺđŕ, îďčńŕíčĺ, ěĺńňîďîëîćĺíčĺ"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Ďđîčçâîäčňĺë íŕ ďđčíňĺđŕ, ěîäĺë, äđŕéâĺđ"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Ďđîčçâîäčňĺë íŕ ďđčíňĺđŕ, ěîäĺë"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Îďđĺäĺëč ňîçč ďđčíňĺđ çŕ ďîëçâŕíĺ ďî ďîäđŕçáčđŕíĺ"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Îňďĺ÷ŕňâŕíĺ íŕ ňĺńňîâč ńňđŕíčöč"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Čńęŕňĺ ëč äŕ íŕńňđîčňĺ äđóă ďđčíňĺđ ?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Ďđĺěŕőâŕíĺ íŕ ďđčíňĺđŕ"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Čçňđčâŕíĺ íŕ ńňŕđ ďđčíňĺđ \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Ďđčíňĺđ ďî ďîäđŕçáčđŕíĺ"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Ďđčíňĺđúň \"%s\" âĺ÷ĺ ĺ îďđĺäĺëĺí çŕ ďîëçâŕíĺ ďî ďîäđŕçáčđŕíĺ."
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Íŕčńňčíŕ ëč čńęŕňĺ äŕ ďđĺěŕőíĺňĺ ďđčíňĺđŕ \"%s\" ?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Čçňđčâŕíĺ íŕ ďđčíňĺđŕ \"%s\" ..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Proxy íŕńňđîéęŕ"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Äîáđĺ äîřëč â íŕńňđîéęŕňŕ íŕ Proxy.\n"
-"\n"
-"Ňóę ůĺ ěîćĺňĺ äŕ óńňŕíîâčňĺ âŕřčňĺ HTTP č FTP proxy\n"
-"ńúń čëč áĺç ďîňđĺáčňĺëńęî čěĺ č ďŕđîëŕ\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Ěîë˙, ďîďúëíĺňĺ číôîđěŕöč˙ňŕ çŕ HTTP proxy.\n"
-"Îńňŕâĺňĺ ďđŕçíî, ŕęî íĺ čńęŕňĺ HTTP proxy."
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "ďîđň"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "URL ňđ˙áâŕ äŕ ĺ çŕďî÷âŕ ń 'http:'"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Íîěĺđúň íŕ ďîđň ňđ˙áâŕ äŕ ĺ öčôđŕ"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Ěîë˙, ďîďúëíĺňĺ číôîđěŕöč˙ňŕ çŕ FTP proxy.\n"
-"Îńňŕâĺňĺ ďđŕçíî, ŕęî íĺ čńęŕňĺ FTP proxy."
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "URL ňđ˙áâŕ äŕ çŕďî÷âŕ ń 'ftp:'"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Ěîë˙, âúâĺäĺňĺ čěĺ č ďŕđîëŕ çŕ proxy, ŕęî čěŕ.\n"
-"Îńňŕâĺňĺ ďđŕçíî, ŕęî íĺ čńęŕňĺ čěĺ/ďŕđîëŕ"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "ďîňđĺáčňĺëńęî čěĺ"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "ďŕđîëŕ"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "îůĺ âĺäíúć ďŕđîëŕ"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Ďŕđîëčňĺ íŕ ńúâďŕäŕň. Îďčňŕéňĺ ďŕę !"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Íĺ ěîăŕ äŕ ďđčáŕâ˙ ä˙ë ęúě _ôîđěŕňčđŕí_ RAID md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Ôŕéëúň %s íĺ ěîćĺ äŕ áúäĺ çŕďčńŕí"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid ďđîďŕäíŕ"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid ďđîďŕäíŕ (ěîćĺ áč raidtools ëčďńâŕň ?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Í˙ěŕ äîńňŕňú÷íî ä˙ëîâĺ çŕ RAID íčâî %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Ďóńíč ALSA (Advanced Linux Sound Architecture) çâóęîâŕňŕ ńčńňĺěŕ"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacrton - ďĺđčîäč÷íî čçďúëí˙âŕíĺ íŕ ęîěŕíäč ďî đŕçďčńŕíčĺ."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd ńĺ čçďîëçâŕ çŕ íŕáëţäĺíčĺ íŕ áŕňĺđč˙ňŕ č çŕďčńâŕéęč ńňŕňóńŕ ÷đĺç\n"
-"syslog. Ěîćĺ ńúůî äŕ ńĺ čçďîëçâŕ çŕ ńďčđŕíĺ íŕ ěŕřčíŕňŕ, ęîăŕňî áŕňĺđč˙ňŕ ĺ "
-"čçňîůĺíŕ."
-
-#: ../../services.pm_.c:18
-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 ""
-"Ďóńęŕ ęîěŕíäč ďî đŕçďčńŕíčĺ âúâ âđĺěĺ îďđĺäĺëĺíî îň ęîěŕíäŕňŕ at č ďóńęŕ\n"
-"íŕáîđ îň äđóăč, ęîăŕňî íŕňîâŕđĺíîńňňŕ ńďŕäíĺ äîńňŕňú÷íî."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron ĺ ńňŕíäŕđňíŕ UNIX ďđîăđŕěŕ, ęî˙ňî ďĺđčîäč÷íî ďóńęŕ îďđĺäĺëĺíč ďđîăđŕěč\n"
-"ďî đŕçďčńŕíčĺ. vixie cron äîáŕâ˙ ěíîćĺńňâî ďđĺčěóůĺńňâŕ íŕä ňĺçč íŕ ďđîńňč˙\n"
-"UNIX cron, âęëţ÷čňĺëíî ďî-äîáđŕ ńčăóđíîńň č ěîůíč íŕńňđîéâŕůč îďöčč."
-
-#: ../../services.pm_.c:23
-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 äîáŕâ˙ ďîääđúćęŕ íŕ ěčřęŕ â ňĺęńňîâî-áŕçčđŕíčňĺ Linux ďđčëîćĺíč˙ ęŕňî\n"
-"Midnight Commander. Ńúůî ňŕęŕ ďîçâîë˙âŕ áŕçčđŕíčňĺ íŕ ěčřęŕ ęîíçîëč\n"
-"đĺćč-č-ëĺďč îďĺđŕöčč, č âęëţ÷âŕ ďîääđúćęŕ íŕ čçęŕ÷ŕůč ěĺíţňŕ íŕ ęîçîëŕňŕ."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake ďđŕâč ďđîáč íŕ őŕđäóĺđŕ, č ĺâĺíňóŕëíî íŕńňđîéâŕ\n"
-"íîâ/ďđîěĺíĺí őŕđäóĺđ."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache ĺ World Wide Web (WWW) ńúđâúđ. Ňîé ńëóćč äŕ îáđŕáîňâŕ íŕ HTML "
-"ôŕéëîâĺ\n"
-"č CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Internet superserver daemon (÷ĺńňî íŕđč÷ŕí inetd) ďóńęŕ đŕçëč÷íč äđóăč\n"
-"Číňĺđíĺň óńëóăč. Ňîé îňăîâŕđ˙ çŕ ďóńęŕíĺňî íŕ ěíîăî óńëóăč îň đîäŕ íŕ\n"
-"telnet, ftp, rsh č rlogin. Čçęëţ÷âŕíĺňî íŕ inetd čçęëţ÷âŕ âńč÷ęč óńëóăč,\n"
-"çŕ ęîčňî îňăîâŕđ˙."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Âęëţ÷č ôčëňđčđŕíĺňî íŕ ďŕęĺňč çŕ Linux ˙äđŕ ńĺđč˙ 2.2, çŕ\n"
-"íŕńňđîęŕ íŕ çŕůčňíŕňŕ ńňĺíŕ, s cel çŕůčňŕâŕ íŕ ěŕřčíŕňŕ âč îň\n"
-"ěđĺćîâč ŕňŕęč."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Ňîçč ďŕęĺň çŕđĺćäŕ ěŕđęčđŕíŕňŕ ęëŕâčŕňóđíŕ íŕđĺäáŕ â /etc/sysconfig/"
-"keyboard.\n"
-"Ň˙ ěîćĺ äŕ áúäĺ čçáđŕíŕ ń číńňđóěĺíňŕ kbdconfig. Ňđ˙áâŕ äŕ îńňŕâčňĺ "
-"ňîâŕâęëţ÷ĺíî çŕ ďîâĺ÷ĺňî ěŕřčíč."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Ŕâňîěŕňč÷íî đĺăĺíĺđčđŕíĺ íŕ header-čňĺ íŕ ŕäđîňî, â /boot çŕ\n"
-"/usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Ŕâňîěŕňč÷íî çŕńč÷ŕíĺ č íŕńňđîéęŕ íŕ őŕđäóĺđŕ ďđč ńňŕđňčđŕíĺ."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf ďîí˙ęîăŕ óđĺćäŕ čçâúđřâŕíĺňî íŕ đŕçëč÷íč çŕäŕ÷č\n"
-"ďđč ńňŕđňčđŕíĺ çŕ ďîääđúćęŕ íŕ ńčńňĺěíŕňŕ íŕńňđîéęŕ."
-
-#: ../../services.pm_.c:43
-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 äŕ đŕáîňč íîđěŕëíî. Ňîé ďđîńňî ĺ\n"
-"ńúđâúđ, ęîéňî îďđĺäĺë˙ đŕáîňčňĺ çŕ ďĺ÷ŕň íŕ ďđčíňĺđ(ŕ/čňĺ)."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual Server ńĺ čçďîëçâŕ çŕ čçăđŕćäŕíĺ íŕ âčńîęîďđîčçâîäčňĺëĺí\n"
-"č äîáđĺ äîńňúďĺí ńúđâúđ."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) ĺ Domain Name Server (DNS), ęîéňî ńĺ čçďîëçâŕ äŕ ďđĺâúđíĺ\n"
-"čěĺňî íŕ őîńňŕ äî IP ŕäđĺń."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Ěîíňčđŕ č äĺěîíňčđŕ âń˙ęŕęâč Network File System (NFS), SMB (LAN\n"
-"Manager/Windows), č NCP (NetWare)."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Ŕęňčâčđŕ/äĺŕęňčâčđŕ âńč÷ęč ěđĺćîâč číňĺđôĺéńč, íŕńňđîĺíč äŕ ńĺ ďóńęŕň\n"
-"ďđč ńňŕđňčđŕíĺ íŕ ěŕřčíŕňŕ."
-
-#: ../../services.pm_.c:52
-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 ěđĺćč.\n"
-"Ňŕçč óńëóăŕ îńčăóđ˙âŕ ôóíęöčîíŕëíîńňňŕ íŕ NFS ńúđâúđŕ, ęîéňî ńĺ íŕńňđîéâŕ\n"
-"÷đĺç ôŕéëŕ /etc/exports."
-
-#: ../../services.pm_.c:55
-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 ôŕéëîâĺňĺ."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Ŕâňîěŕňč÷íî âęëţ÷âŕíĺ íŕ numlock ęëŕâčřŕ ďîä ęîíçîëŕ č\n"
-"XFree ďđč ńňŕđňčňŕíĺ."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Ďîääđúćęŕ íŕ OKI 4w č ńúâěĺńňčěč win-ďđčíňĺđč."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA ďîääúđćęŕňŕ îáčęíîâĺííî ďîääúđćŕ íĺůŕ ęŕňî ethernet č ěîäĺěč â\n"
-"laptop-č. Ňîâŕ í˙ěŕ äŕ ńĺ ńňŕđňčđŕ ďđĺäč äŕ áúäĺ íŕńňđîĺí, ňŕęŕ ÷ĺ ĺ\n"
-"ďî-äîáđĺ äŕ ˙ čěŕňĺ číńňŕëčđŕíŕ íŕ ěŕřčíč, ęîčňî íĺ ńĺ íóćäŕ˙ň îň íĺ˙."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"portmapper ńĺ ńďđŕâ˙ ń RPC âđúçęč, ęîčňî ńĺ čçďîëçâŕň îň ďđîňîęîëč ęŕňî\n"
-"NFS č NIS. portmap ńúđâúđŕ ňđ˙áâŕ äŕ ĺ ďóńíŕň íŕ ěŕřčíč, ęîčňî đŕáîň˙ň ęŕňî\n"
-"ńúđâúđ çŕ ďđîňîęîëč, ęîčňî ńĺ íóćäŕ˙ň äŕ čçďîëçâŕň RPC ěĺőŕíčçúě."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix ĺ Main Transport Agent (MTA), ęîéňî ĺ ďđîăđŕěŕ ęî˙ňî ďđĺíŕń˙\n"
-"ďîřŕ îň ěŕřčíŕ íŕ ěŕřčíŕ."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Çŕďŕçâŕ č âúçńňŕíîâ˙ňŕ ďîňîęŕ íŕ ńčńňĺěíŕ ĺíňđîďč˙ çŕ ďî-ăîë˙ěî ęŕ÷ĺńňâî\n"
-"íŕ ďđîčçâîëíî ăĺíĺđčđŕíĺ íŕ ÷čńëŕ."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Ńâúđćč ÷čńňč äđŕéâĺđč ń áëîęîâč óńňđîéńňâŕ (ęŕňî ä˙ëîâĺ\n"
-"íŕ ňâúđäč˙ äčńę), çŕ óďîňđĺá˙ňŕ îň ďđčëîćĺíč˙ ęŕňî Oracle"
-
-#: ../../services.pm_.c:71
-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 ""
-"touted äĺěîíŕ ďîçâîë˙âŕ ňŕáëčöŕ çŕ IP đóňčđŕíĺ ŕâňîěŕňč÷íî îáíîâ˙âŕíŕ ÷đĺç\n"
-"RIP ďđîňîęîëŕ. Äîęŕňî RIP ĺ řčđîęî čçďîëçâŕíŕ çŕ ěŕëęč ěđĺćč, çŕ ďî-ńëîćíč\n"
-"ďđîňîęîëč çŕ đóňčđŕíĺ ńŕ íóćíč çŕ ńëîćíč ěđĺćč. "
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat ďđîňîęîëŕ ďîçâîë˙âŕ íŕ ěđĺćîâčňĺ ďîňđĺáčňĺëč äŕ čçâëč÷ŕň\n"
-"ďŕđŕěĺňđčňĺ íŕ âúçěîćíîńňčňĺ çŕ âń˙ęŕ ěŕřčíŕ íŕ ěđĺćŕňŕ."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"rusers ďđîňîęîëŕ ďîçâîë˙âŕ íŕ ěđĺćîâčňĺ ďîňđĺáčňĺëč äŕ ďđîâĺđ˙âŕň ęîé ĺ\n"
-"âë˙çúë íŕ äđóăŕ îňăîâŕđ˙ůŕňŕ ěŕřčíŕ."
-
-#: ../../services.pm_.c:78
-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 ďđîňîęîëŕ ďîçâîë˙âŕ íŕ îňäŕëĺ÷ĺíč ďîňđĺáčňĺëč äŕ ńĺ ńäîáč˙ň ńúń ńďčńúę\n"
-"íŕ âńč÷ęč ďîňđĺáčňĺëč âëĺçëč íŕ ěŕřčíŕ ń đŕáîňĺů rwho äĺěîí (ďîäîáĺí íŕ "
-"finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Ďóńíęŕíĺ çâóęîâŕňŕ ńčńňĺěŕ íŕ ěŕřčíŕňŕ âč"
-
-#: ../../services.pm_.c:81
-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 ĺ ďđîăđŕěŕ ęî˙ňî ěíîăî äĺěîíč čçďîëçâŕň äŕ çŕďŕçâŕň ńúîáůĺíč˙ â\n"
-"đŕçëč÷íč ńčńňĺěíč ôŕéëîâĺ (ëîăîâĺ). Äîáđĺ ĺ ďîńňî˙ííî äŕ ˙ čěŕňĺ đŕáîňĺůŕ."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Çŕđĺćäŕíĺ äđŕéâĺđč çŕ âŕřčňĺ USB óńňđîéńňâŕ."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Ńňŕđňčđŕ X Font Server (ňîâŕ ĺ çŕäúëćčňĺëíî, çŕ äŕ ňđúăíĺ XFree)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Čçáčđŕ óńëóăčňĺ, ęîčňî ňđ˙áâŕ äŕ ńĺ ďóńíŕň ďđč ďóńęŕíĺ íŕ ěŕřčíŕňŕ"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Ďĺ÷ŕňŕíĺ"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Číňĺđíĺň"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Ďîäĺë˙íĺ íŕ ôŕéëîâĺ"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "Ńčńňĺěŕ"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Îňäŕëĺ÷ĺíŕ ŕäěčíčńňđŕöč˙"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Ńúđâúđ Áŕçč-äŕííč"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Óńëóăč: %d ŕęňčâčđŕíč îň %d đĺăčńňđčđŕíč"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Óńëóăč"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "ńňŕđňčđŕíĺ"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "ńďđ˙íŕ"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Óńëóčăč č äĺěîíč"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Í˙ěŕ äîďúëíčňĺëíŕ číôîđěŕöč˙\n"
-"çŕ ňŕçč óńëóăŕ, ńúćĺë˙âŕě."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Ďđč çŕđĺćäŕíĺ"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Ńúńňî˙íčĺ"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Ńĺęňîđ"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Ďđîňîęîë çŕ îńňŕíŕëč˙ ńâ˙ň"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Číňĺđíĺň äîńňúď"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Ěóëňčěĺäč˙ - Ăđŕôčęŕ"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Đŕçđŕáîňęŕ"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Ęîíňđîëĺí öĺíňúđ"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Ěđĺćîâ číňĺđôĺéń"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "Őîńň íŕ SMB ńúđâúđ"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Čăđč"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Ĺęńďĺđňíŕ"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-#, fuzzy
-msgid "MandrakeStore"
-msgstr "çŕäúëćčňĺëĺí"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Íĺ ěîăŕ äŕ đŕç÷ĺňŕ ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ, ďđĺęŕëĺíî ĺ ďîâđĺäĺíŕ :(\n"
-"Ůĺ ńĺ îďčňŕě äŕ ďđîäúëćŕ äŕ đŕç÷čńňâŕě ëîřčňĺ ä˙ëîâĺ"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Ăđĺřęŕ !"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Íĺ ěîăŕ äŕ íŕěĺđ˙ íóćíŕ ęŕđňčíęŕ `%s'."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Íŕńňđîé÷čę íŕ ŕâňîěŕňč÷íŕ čńíňŕëŕöč˙"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Íŕńňđîéęŕ íŕ ŕâňîěŕňč÷íčňĺ ńňúďęč"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Ěîë˙, čçáĺđĺňĺ çŕ âń˙ęŕ ńňúďęŕ, äŕëč ůĺ ńĺ ďđĺčăđŕĺ ęŕňî ďđč číńňŕëŕöč˙ňŕ, "
-"čëč ůĺ áúäĺ đú÷íŕ"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Ďîçäđŕâëĺíč˙ !"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Äčńęĺňŕňŕ ĺ óńďĺříî ńúçäŕäĺíŕ.\n"
-"Ńĺăŕ ěîćĺňĺ äŕ ďđĺčăđŕĺňĺ číńňŕëŕöč˙ňŕ."
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Číńňŕëčđŕé"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Äîáŕâ˙íĺ íŕ ďîňđĺáčňĺë"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Äŕ ďđĺěŕőíŕ ëč loopback ôŕéëŕ ?"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Ëîř backup-ôŕéë"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Ëîř backup-ôŕéë"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Ëîř backup-ôŕéë"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Čçáîđ íŕ ďŕęĺňč"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Čçňđčâŕíĺ íŕ îďŕřęŕňŕ"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Ďđĺěŕőíč Windows(TM)"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Ěîë˙, îďčňŕéňĺ îňíîâî"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Ěîë˙, îďčňŕéňĺ îňíîâî"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "îůĺ âĺäíúć ďŕđîëŕ"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN âđúçęŕ"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Čçáĺđĺňĺ âđúçęŕ ęúě ďđčíňĺđŕ"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Ěîë˙, čçáĺđĺňĺ ďîäđĺćäŕíĺ íŕ ęëŕâčŕňóđŕňŕ."
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Ěîë˙, öúęíĺňĺ íŕ íîńčňĺë˙"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Ëîř backup-ôŕéë"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Ëîř backup-ôŕéë"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Ěđĺćîâ číňĺđôĺéń"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Čńęŕňĺ ëč îďňčěčçŕöč˙ íŕ äčńęîâĺňĺ ?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Čńęŕňĺ ëč îďňčěčçŕöč˙ íŕ äčńęîâĺňĺ ?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-#, fuzzy
-msgid "What"
-msgstr "Ĺäčí ěîěĺíň"
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "Wheel"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "Wheel"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Îďöčč íŕ ěîäóëŕ:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Ôŕéëîâč ńčńňĺěč"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Îďöčč"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Ěîë˙, čçáĺđĺňĺ ńĺđčĺí ďîđň ęúě ęîéňî ńâúđçŕí ěîäĺěúň âč."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Ëîř backup-ôŕéë"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Ëîř backup-ôŕéë"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Âúçńňŕíîâč îň äčńęĺňŕ"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Äđóăŕ"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Číńňŕëčđŕíĺ íŕ ńčńňĺěŕňŕ"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Âúçńňŕíîâč îň ôŕéë"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Âúçńňŕíîâč îň ôŕéë"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Ęëčĺíňńęŕ"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Ďîěîů"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- Ďđĺäčřĺí"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Ńúńňî˙íčĺ"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Ëîř backup-ôŕéë"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Âúçńňŕíîâč îň ôŕéë"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Ňĺęńň"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Ďŕęĺňč çŕ číńňŕëčđŕíĺ"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Ëîř backup-ôŕéë"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Ëîř backup-ôŕéë"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Ëîř backup-ôŕéë"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Çŕďŕçč âúâ ôŕéë"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Íŕńňđîéęŕ"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Ôŕéëîâč ńčńňĺěč"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Číńňŕëŕöč˙ňŕ íŕ %s ďđîâŕëĺíŕ. Ďî˙âč ńĺ ńëĺäíŕňŕ ăđĺřęŕ:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "%s íĺ ĺ íŕěĺđĺíî"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Ăîňîâî"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Ôîđěŕňčđŕé äčńęĺňŕňŕ"
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Ďîäăîňâ˙ě číńňŕëŕöč˙ňŕ"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-#, fuzzy
-msgid "Restart XFS"
-msgstr "ńňŕđňčđŕé ăî"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "îăđŕíč÷č"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëîâĺ"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-#, fuzzy
-msgid "Uninstall Fonts"
-msgstr "Äĺčíńňŕëčđŕě ďŕęĺňŕ"
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Ě˙ńňî íŕ ěîíňčđŕíĺ"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Čçáĺđĺňĺ ä˙ëîâĺňĺ, ęîčňî čńęŕňĺ äŕ ôîđěŕňčđŕňĺ"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Îôčń"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Îňęŕç"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Ďđčíňĺđ"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Číńňŕëčđŕíĺ íŕ ńčńňĺěŕňŕ"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Čçáĺđĺňĺ ôŕéë"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Ďđĺěŕőâŕíĺ íŕ ďđčíňĺđŕ"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
-msgid "Initials tests"
-msgstr "Ńňŕđňîâî ńúîáůĺíčĺ"
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Í˙ěŕňĺ ěđĺćîâ ŕäŕďňĺđ!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Číńňŕëčđŕé"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Í˙ěŕňĺ ěđĺćîâ ŕäŕďňĺđ!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Čçőîä îň číńňŕëŕöčîííŕňŕ ďđîăđŕěŕ"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Ńďîäĺë˙íĺ íŕ âđúçęŕňŕ ń Číňĺđíĺň"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Ńďîäĺë˙íĺňî íŕ âđúçęŕňŕ ęúě Číňĺđíĺň ĺ âĺ÷ĺ ŕęňčâčđŕíî"
-
-#: ../../standalone/drakgw_.c:139
-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"
-" ěîěĺíňŕ ĺ âęëţ÷ĺíŕ.\n"
-"\n"
-"Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ ?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "čçęëţ÷č"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "îńňŕâč"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "ďđĺíŕńňđîéęŕ"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Čçęëţ÷âŕíĺ íŕ ńúđâúđč ..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Ńďîäĺë˙íĺňî íŕ Číňĺđíĺň âđúçęŕňŕ â ěîěĺíňŕ ĺ čçęëţ÷ĺíî."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Ńďîäĺë˙íĺňî íŕ Číňĺđíĺň âđúçęŕňŕ ĺ čçęëţ÷ĺíî."
-
-#: ../../standalone/drakgw_.c:164
-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"
-" ěîěĺíňŕ ĺ čçęëţ÷ĺíŕ.\n"
-"\n"
-"Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ ?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "âęëţ÷č"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Âęëţ÷âŕíĺ íŕ ńúđâúđč ..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Ńďîäĺë˙íĺňî íŕ Číňĺđíĺň â ěîěĺíňŕ ĺ âęëţ÷ĺíî."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Íŕ ďúň ńňĺ äŕ íŕńňđîčňĺ ęîěďţňúđŕ ńč ňŕęŕ, ÷ĺ äŕ ďîäĺë˙ Číňĺđíĺň âđúçęŕňŕ\n"
-"ńč. Ń ňŕçč âúçěîćíîńň, äđóăč ęîěďţňđč â ëîęŕëíŕňŕ âč ěđĺćŕ ůĺ ěîăŕň äŕ\n"
-"čçďîëçâŕň Číňĺđíĺň âđúçęŕňŕ íŕ ňîçč ęîěďţňúđ.\n"
-"\n"
-"Îňáĺëĺćĺňĺ: ňđ˙áâŕ âč îňäĺëĺí çŕ ňîâŕ ěđĺćîâ ŕäŕďňĺđ, çŕ äŕ óńňŕíîâčňĺ "
-"âúňđĺříŕňŕ ńč ěđĺćŕ (LAN)."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Číňĺđôĺéń %s (čçďîëçâŕů ěîäóë %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Číňĺđôĺéń %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Í˙ěŕňĺ ěđĺćîâ ŕäŕďňĺđ!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Â ńčńňĺěŕňŕ íĺ ĺ îňęđčň ethernet ěđĺćîâ ŕäŕďňĺđ. Ěîë˙, ńňŕđňčđŕéňĺ "
-"číńňđóěĺíňŕ çŕ íŕńňđîéęŕ íŕ őŕđäóĺđ."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Ěđĺćîâ číňĺđôĺéń"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Â ńčńňĺěŕňŕ âč čěŕ ńŕěî ĺäčí íŕńňđîĺí ěđĺćîâ ŕäŕďňĺđ:\n"
-"\n"
-"%s\n"
-"\n"
-"Ńě˙ňŕě äŕ óńňŕíîâ˙ ëîęŕëíŕňŕ âč ěđĺćŕ íŕ ňîçč ŕäŕďňĺđ."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Ěîë˙ čçáĺđĺňĺ ęîé ěđĺćîâ ŕäŕďňĺđ äŕ áúäĺ âęëţ÷ĺí ęúě ëîęŕëíŕňŕ âč ěđĺćŕ."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Ôóíęöčîíŕëíîńňňŕ íŕ ěđĺćŕňŕ íĺ ĺ íŕńňđîĺíŕ"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Ŕâňîěŕňč÷íŕ íŕńňđîéęŕ íŕ CUPS"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Ďîďđŕâč íŕńňđîéęčňĺ íŕ ďđčíňĺđ"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "IP íŕ CUPS ńúđâúđŕ"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Âúçěîćĺí ęîíôčęň ń ŕäđĺńčňĺ â LAN ń íŕńňđîéęŕňŕ íŕ %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Îňęđčňŕ ĺ íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ !"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Âíčěŕíčĺ ! Îňęđčňŕ ĺ íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ. Ěîćĺ äŕ ńĺ íŕëîćč í˙ęŕęâŕ "
-"đú÷íŕ ďîďđŕâęŕ ńëĺä číńňŕëŕöč˙ňŕ."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Íŕńňđîéęŕ ..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Íŕńňđîéâŕůč ńęđčďňîâĺ, číńňŕëčđŕíĺ íŕ ńîôňóĺđ, ńňŕđňčđŕíĺ íŕ ńúđâúđč..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Ďđîáëĺěč ń číńňŕëčđŕíĺňî íŕ ďŕęĺňŕ %s"
-
-#: ../../standalone/drakgw_.c:672
-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:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Óńňŕíîâęŕňŕ âĺ÷ĺ ĺ íŕďđŕâĺíŕ, íî â ěîěĺíňŕ ĺ čçęëţ÷ĺíŕ."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Óńňŕíîâęŕňŕ âĺ÷ĺ ĺ íŕďđŕâĺíŕ č â ěîěĺíňŕ ĺ âęëţ÷ĺíŕ."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Í˙ěŕ íŕńňđîéâŕíî ńďîäĺë˙íĺ íŕ Číňĺđíĺň âđúçęŕňŕ."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Íŕńňđîéęŕ íŕ ńďîäĺë˙íĺňî íŕ Číňĺđíĺň âđúçęŕňŕ"
-
-#: ../../standalone/drakgw_.c:703
-#, 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:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ (%d ŕäŕďňĺđŕ)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Ďđîôčë: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Čçňđîé ďđîôčë ..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Ďđîôčë çŕ čçňđčâŕíĺ:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Íîâ ďđîôčë ..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Čěĺ íŕ ńúçäŕâŕíč˙ ďđîôčë (íîâč˙ň ďđîôčë ńĺ ńúçäŕâŕ ęŕňî ęîďčĺ íŕ ňĺęóůč˙):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Čěĺ íŕ őîńň:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Číňĺđíĺň äîńňúď"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Ňčď: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Číňĺđôĺéń:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Ńúńňî˙íčĺ:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň äîńňúďŕ ..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Íŕńňđîéęŕ íŕ LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Äđŕéâĺđ"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Číňĺđôĺéń"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Ďđîňîęîë"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Ńúńňî˙íčĺ"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Íŕńňîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ ..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Öúęíĺňĺ ňóę, çŕ äŕ ńňŕđňčđŕňĺ ěŕăüîńíčęŕ ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Ěŕăüîńíčę..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Ďđčëîćč"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Ěîë˙, ďî÷ŕęŕéňĺ ... Ďđčëŕăŕíĺ íŕ íŕńňđîéęčňĺ"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Ńâúđçŕí"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Íĺ ńâúđçŕí"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Ńâúđçâŕíĺ ..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Îňâúđçâŕíĺ ..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Í˙ěŕňĺ íŕńňđîĺí číňĺđôĺéń.\n"
-"Íŕńňđîéňĺ ăč ďđĺäč ňîâŕ, ęŕňî öúęíĺňĺ íŕ 'Íŕńňđîéęŕ'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Ŕäŕďňĺđ %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Ńňŕđňčđŕů ďđîňîęîë"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Ďóńíŕň ďđč ńňŕđňčđŕíĺ"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP ęëčĺíň"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "ŕęňčâčđŕé ńĺăŕ"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "äĺŕęňčâčđŕé ńĺăŕ"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Í˙ěŕňĺ Internet âđúçęŕ.\n"
-"Ńúçäŕéňĺ ňŕęŕâŕ, ęŕňî öúęíĺňĺ íŕ 'Íŕńňđîé'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕ"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕ"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Ňčď íŕ âđúçęŕňŕ: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Ďŕđŕěĺňđč"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet ęŕđňŕ"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP ęëčĺíň"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Ęîíňđîëĺí öĺíňúđ"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Čçáĺđĺňĺ číńňđóěĺíňŕ, ęîéňî čńęŕňĺ äŕ čçďîëçâŕňĺ"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Ęŕíŕäńęŕ (Ęâĺáĺę)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "Ĺâđîďŕ"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Čńëŕíäńęŕ"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "Ĺâđîďŕ"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "ńĺđčéíŕ"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "óďîňđĺáŕ: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Ěîë˙, čçáĺđĺňĺ ďîäđĺćäŕíĺ íŕ ęëŕâčŕňóđŕňŕ."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Čńęŕňĺ ëč BackSpace äŕ ďîäŕâŕ Delete íŕ ęîíçîëŕňŕ ?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Ńě˙íŕ íŕ CD-ROM"
-
-#: ../../standalone/livedrake_.c:25
-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 â óńňđîéńňâîňî č íŕňčńíĺňĺ Ok, ęîăŕňî "
-"ńňĺ ăîňîâč.\n"
-"Ŕęî ăî í˙ěŕňĺ, íŕňčńíĺňĺ Îňě˙íŕ, çŕ äŕ čçáĺăíĺňĺ číńňŕëčđŕíĺňî îň ňîçč CD-"
-"ROM."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Íĺ ěîăŕ äŕ ďóńíŕ îáíîâ˙âŕíĺňî !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "ëîăäđĺéę"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Ôŕéë/_Íîâ"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<ęîíňđîë>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Ôŕéë/_Îňâîđč"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<ęîíňđîë>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Ôŕéë/_Çŕďčń"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<ęîíňđîë>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Ôŕéë/Çŕďčřč _Ęŕňî"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Ôŕéë/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Îďöčč"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Îďöčč/Ňĺńň"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ďîěîů"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Ďîěîů/_Çŕ..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "ńúîáůĺíč˙"
-
-#: ../../standalone/logdrake_.c:175
-#, fuzzy
-msgid "Syslog"
-msgstr "ńčńňĺěĺí ëîă"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "ňúđńč"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Číńňđóěĺíň çŕ ďđĺăëĺćäŕíĺ íŕ âŕřčňĺ ëîă ôŕéëîâĺ"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Íŕńňđîéęč"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "ńúâďŕäĺíčĺ"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "íî íĺ ńúâďŕäŕ"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Čçáĺđĺňĺ ôŕéë"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Ęŕëĺíäŕđ"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Ńúäúđćŕíčĺ íŕ ôŕéëŕ"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, fuzzy, c-format
-msgid "please wait, parsing file: %s"
-msgstr "ěîë˙ čç÷ŕęŕéňĺ, ďđŕâ˙ đŕçáîđ íŕ ôŕéë: %s"
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Íŕńňđîéęŕ íŕ LILO/Grub"
-
-#: ../../standalone/logdrake_.c:406
-#, fuzzy
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Äîáđĺ äîřëč â íŕńňđîéęŕňŕ íŕ Proxy.\n"
-"\n"
-"Ňóę ůĺ ěîćĺňĺ äŕ óńňŕíîâčňĺ âŕřčňĺ HTTP č FTP proxy\n"
-"ńúń čëč áĺç ďîňđĺáčňĺëńęî čěĺ č ďŕđîëŕ\n"
-
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache č Pro-ftpd"
-
-#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "shadow"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Čçëĺç"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "číňĺđĺńĺí"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "Ôîđěŕňčđŕíĺ"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Íŕńňđîéęŕ íŕ öâĺňîâĺ"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Çŕďŕçč ęŕňî..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "íĺ ĺ íŕěĺđĺí serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Äŕ ńčěóëčđŕě ëč ňđĺňč áóňîí ?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Čçáĺđĺňĺ ăđŕôč÷íŕ ęŕđňŕ"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Ńňŕđňčđŕůî óńňđîéńňâî"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Çŕůčňíŕ ńňĺíŕ\n"
-"\n"
-"Âĺ÷ĺ ńňĺ íŕńňđîčëč çŕůčňíŕ ńňĺíŕ.\n"
-"Öúęíĺňĺ Íŕńňđîé, çŕ äŕ óńňŕíîâčňĺ ńňŕíäŕđňíŕ çŕůčňíŕ ńňĺíŕ"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Çŕůčňíŕ ńňĺíŕ\n"
-"\n"
-"Öúęíĺňĺ Íŕńňđîé, çŕ äŕ óńňŕíîâčňĺ ńňŕíäŕđňíŕ çŕůčňíŕ ńňĺíŕ"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Čçáîđ íŕ ĺçčę"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Čçáîđ íŕ ęëŕń číńňŕëŕöč˙"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Çŕńč÷ŕíĺ íŕ äčńęîâĺňĺ"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Íŕńňđîéęŕ íŕ ěčřęŕ"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Čçáîđ íŕ ęëŕâčŕňóđŕ"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Ńčăóđíîńň"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Ôŕéëîâč ńčńňĺěč"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëîâĺ"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Ďŕęĺňč çŕ číńňŕëčđŕíĺ"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Číńňŕëčđŕíĺ íŕ ńčńňĺěŕňŕ"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Äîáŕâ˙íĺ íŕ ďîňđĺáčňĺë"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Íŕńňîéęŕ íŕ ěđĺćŕňŕ"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Íŕńňđîéęŕ íŕ óńëóăčňĺ"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Číńňŕëčđŕíĺ íŕ bootloader"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Ńúçäŕâŕíĺ íŕ boot-äčńęĺňŕ"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Íŕńňđîéęŕ íŕ Ő"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Číńňŕëčđŕíĺ íŕ ńčńňĺěŕňŕ"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Čçőîä îň číńňŕëŕöčîííŕňŕ ďđîăđŕěŕ"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Íŕńňđîé÷čę çŕ ěŕëęŕ çŕůčňíŕ ńňĺíŕ\n"
-"\n"
-"Ňîâŕ íŕńňđîéâŕ ďĺđńîíŕëíŕ çŕůčňíŕ ńňĺíŕ çŕ ňŕçč Mandrake Linux ěŕřčíŕ.\n"
-"Çŕ ěîůíî ďîńňâĺňĺíî íŕ çŕůčňŕňŕ đĺřĺíčĺ, ěîëĺ, ďîăëĺäíĺňĺ ńďĺöčŕëčçčđŕíŕňŕ\n"
-"MandrakeSecurity Firewall äčńňđčáóöč˙."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Ńĺăŕ ůĺ âč çŕäŕäĺě âúďđîńč çŕ ňîâŕ, ęúě ęîč óńëóăč áčőňĺ čńęŕëč äŕ\n"
-"ďîçâîëčňĺ íŕ Číňĺđíĺň äŕ ńâúđçâŕ. Ěîë˙, ďîěčńëĺňĺ âíčěŕňĺëíî ďî\n"
-"ňĺçč âúďđîńč, ňúé ęŕňî ńčăóđíîńňňŕ íŕ ęîěďţňúđŕ âč ĺ âŕćíŕ.\n"
-"\n"
-"Ěîë˙, ŕęî â ěîěĺíňŕ íĺ čçďîëçâŕňĺ í˙ęî˙ îň óńëóăčňĺ, çŕůčňĺňĺ ˙.\n"
-"Ěîćĺňĺ äŕ ďđîěĺíčňĺ íŕńňđîéęŕňŕ ďî âń˙ęî âđĺěĺ, ŕęî čńęŕňĺ, ęŕňî\n"
-"ńňŕđňčđŕňĺ îňíîâî ňîâŕ ďđčëîćĺíčĺ !"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Čçďîëçâŕňĺ ëč Web ńúđâúđ íŕ ňŕçč ěŕřčíŕ, ęîéňî čńęŕňĺ öĺëč˙ň Číňĺđíĺň\n"
-"çŕ âčćäŕ ? Ŕęî čçďîëçâŕňĺ, ęîéňî ňđ˙áâŕ äŕ áúäĺ äîńňúďĺí îň ňŕçč ěŕřčíŕ,\n"
-"ěîćĺňĺ ńďîęîéíî äŕ îňăîâîđčňĺ ń Íĺ ňóę.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Čçďîëçâŕňĺ ëč Name ńúđâúđ íŕ ňŕçč ěŕřčíŕ ? Ŕęî íĺ čńęŕňĺ äŕ ďđĺäîńňŕâ˙ňĺ\n"
-"číôîđěŕöč˙ çŕ IP-ňŕ č çîíč íŕ öĺëč˙ Číňĺđíĺň, ěîë˙, îňăîâîđĺňĺ Íĺ.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Čńęŕňĺ ëč äŕ đŕçđĺřčňĺ âőîä˙ůč Secure SHell (SSH) âđúçęč ? Ňîâŕ ĺ\n"
-"çŕěĺńňčňĺë íŕ telnet, ęîéňî ěîćĺňĺ äŕ čçďîëçâŕňĺ çŕ âëčçŕíĺ. Ŕęî â\n"
-"ěîěĺíňŕ čçďîëçâŕňĺ telnet, îďđĺäĺëĺíî ňđ˙áâŕ äŕ ďđĺěčíĺňĺ ęúě SSH.\n"
-"Telnet íĺ ĺ ęđčďňčđŕí -- ňŕęŕ ÷ĺ í˙ęîč ŕňŕęóâŕůč ěîăŕň äŕ îňęđŕäíŕň\n"
-"ďŕđîëŕňŕ âč, ŕęî ăî čçďîëçâŕňĺ. SSH ĺ ęđčďňčđŕí č čçęëţ÷âŕ ňŕęŕâŕ\n"
-"čçäúíęŕ."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Čńęŕňĺ ëč äŕ ďîçâîëčňĺ âőîä˙ůč telnet âđúçęč ?\n"
-"Ňîâŕ ĺ óćŕńíî íĺńčăóđíî, ęŕęňî îá˙ńíčőěĺ â ďđĺäčříč˙ ĺęđŕí. Ńčëíî\n"
-"âč ďđĺďîđú÷âŕěĺ äŕ îňăîâîđčňĺ Íĺ ňóę č äŕ čçďîëçâŕňĺ SSH âěĺńňî\n"
-"telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Čěŕňĺ ëč FTP ńúđâúđ ňóę, ęîéňî ňđ˙áâŕ äŕ ĺ äîńňúďĺí çŕ Číňĺđíĺň ?\n"
-"Ŕęî čěŕňĺ, ńčëíî âč ďđĺďîđú÷âŕěĺ äŕ ăî čçďîëçâŕňĺ çŕ ŕíîíčěíč ňđŕíńôĺđč.\n"
-"Âńč÷ęč ďŕđîëč čçďđŕůŕíč ďî FTP ěîăŕň äŕ áúäŕň îňęđŕäíŕňč îň ŕňŕęóâŕůŕ\n"
-"ëč÷íîńň, ňúé ęŕňî FTP íĺ čçďîëçâŕ ęđčďňîăđŕôč˙ çŕ ďđĺőâúđë˙íĺňî čě.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Čěŕňĺ ëč ďîůĺíńęč ńúđâúđ ňóę ? Ŕęî čçďđŕůŕňĺ ńúîáůĺíč˙ňŕ ńč\n"
-"÷đĺç pine, mutt čëč ęŕęúâňî č äŕ ĺ äđóă ňĺęńňîâ ďîůĺíńęč ęëčĺíň,\n"
-"ěîćĺ áč čěŕňĺ.  ďđîňčâĺí ńëó÷ŕé, ňđ˙áâŕ äŕ çŕůčňčňĺ ňîâŕ.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Čěŕňĺ ëč POP čëč IMAP ńúđâúđ ňóę ? Ňîâŕ ěîćĺ äŕ áúäĺ\n"
-"čçďîëçâŕíî äŕ ďđčţň˙âŕíĺ íŕ íĺ-web-áŕçčđŕíč ďîůĺíńęč ŕęŕóíňč\n"
-"ďđĺç ňŕçč ěŕřčíŕ.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Ń˙ęŕř čçďîëçâŕňĺ 2.2 ˙äđî. Ŕęî ěđĺćîâîňî IP ŕâňîěŕňč÷íî ńĺ\n"
-"îďđĺäĺë˙ îň ęîěďţňúđ ó âŕń čëč â îôčńŕ (äčíŕěč÷íî ďîńňŕâ˙íî),\n"
-"ňđ˙áâŕ äŕ ďîçâîëčě ňîâŕ. Ňŕęúâ ëč ĺ ńëó÷ŕ˙ ?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Âđĺěĺňî íŕ ęîěďţňúđŕ âč ńčíőđîíčçčđŕ ëč ńĺ ń äđóă ęîěďţňúđ ?\n"
-"Ňîâŕ ăëŕâíî ńĺ čçďîëçâŕ â ńđĺäíî-ăîëĺěč Unix/Linux îđăŕíčçŕöčč,\n"
-"çŕ äŕ ńč ńčíőđîíčçčđŕ âđĺěĺňî çŕ çŕďčńâŕíĺ íŕ ńňŕňóńŕ č ňŕęčâŕ đŕáîňč.\n"
-"Ŕęî íĺ ńňĺ ÷ŕńň îň ďî-ăîë˙ě îôčń č íĺ ńňĺ ÷óâŕëč çŕ ňŕęîâŕ íĺůî,\n"
-"ěîćĺ áč íĺ âč ňđ˙áâŕ."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Íŕńňđîéęŕňŕ çŕâúđřĺíŕ. Äŕ çŕďčřĺě ëč ďđîěĺíčňĺ íŕ äčńęŕ ?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Íĺ ěîăŕ äŕ îňâîđ˙ %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Íĺ ěîăŕ äŕ îňâîđ˙ %s çŕ çŕďčń: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Ěîë˙, čç÷ŕęŕéňĺ, ďîäăîňâ˙íĺ íŕ číńňŕëŕöč˙ňŕ"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Ńúđâúđ, Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Ěđĺćîâ ęîěďţňúđ (ęëčĺíň)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS ńúđâúđ, SMB ńúđâúđ, Proxy ńúđâúđ, SSH ńúđâúđ"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Îôčń"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome đŕáîňíŕ ńňŕíöč˙"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Číńňđóěĺíňč çŕ âŕřč˙ Palm Pilot čëč Visor-ŕ âč"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Đŕáîňíŕ ńňŕíöč˙"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Ńúđâúđ, Firewall/Đóňĺđ"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Čěĺ íŕ äîěĺéí č Ěđĺćîâ Číôîđěŕöčîíĺí Ńúđâúđ"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Îôčń ďđîăđŕěč: word-ďđîöĺńîđč (kword, abiword), ňŕáëčöč (kspread, gnumeric), "
-"ďđĺăëĺä íŕ PDF, č ň.í."
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Číńňđóěĺíňč çŕ ŕóäčî: MP3 čëč MIDI ďëĺéúđč, ěčęńĺđč, č ň.í. "
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Ęíčăč č HOTWO-ňŕ çŕ Linux č ńâîáîäíč˙ ńîôňóĺđ"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE đŕáîňíŕ ńňŕíöč˙"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm č ň.í."
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Ěóëňčěĺäč˙ - Âčäĺî"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Íŕáîđ îň číńňđóěĺíňč çŕ ďîůŕ, íîâčíč, web, ôŕéëîâ ňđŕíńôĺđ, č ÷ŕň"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Ńúđâúđ, Áŕçč-äŕííč"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL čëč MySQL ńúđâúđ çŕ áŕçč-äŕííč"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Číńňđóěĺíňč çŕ óëĺńí˙âŕíĺ íŕńňđîéęŕňŕ íŕ ęîěďţňúđŕ âč"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Ěóňčěĺäč˙ - Çâóę"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Číńňđóěĺíňč"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Äîęóěĺíňŕöč˙"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Ęîíçîëíč číńňđóěĺíňč"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix ďîůĺíńęč ńúđâúđ, Inn íîâčíŕđńęč ńúđâúđ"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Číňĺđíĺň ńňŕíöč˙"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Ěóňčěĺäčéíŕ ńňŕíöč˙"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Íŕńňđîéęŕ"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Îůĺ ăđŕôč÷íč desktop-č (Gnome, IceWM)"
-
-#: ../../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:999
-msgid "Graphical Environment"
-msgstr "Ăđŕôč÷íŕ ńđĺäŕ"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache č Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Číńňđóěĺíňč çŕ ńúçäŕâŕíĺ č îďč÷ŕíĺ íŕ CD-ňŕ"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Îôčńíŕ đŕáîňíŕ ńňŕíöč˙"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Ńúđâúđ"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, č ň.í."
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Ăđŕôč÷íč ďđîăđŕěč ęŕňî The Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "FND/NIS"
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Áčáëčîňĺęč çŕ đŕçđŕáîňęŕ íŕ C č C++, ďđîăđŕěč č include ôŕéëîâĺ"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Ěđĺćîâ ęîěďţňúđ, ńúđâúđ"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Ńúđâúđ, Ďîůŕ/Groupware/Íîâčíč"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Čăđŕëíŕ ńňŕíöč˙"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Âčäĺî ďëĺéúđč č đĺäŕęňîđč"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Ěóëňčěĺäč˙ - Ăđŕôčęŕ"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Çŕáŕâíč ďđîăđŕěč: ŕđęŕäíč čăđč, čăđč íŕ ěŕńŕ, ńňđŕňĺăčč č ň.í."
-
-#: ../../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:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Ŕđőčâčđŕřč, ĺěóëŕöč˙, íŕáëţäĺíčĺ"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Ëč÷íč ôčíŕíńč"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Ăđŕôč÷íŕ ńđĺäŕ ń ďîňđĺáčňĺëńęč íŕáîđ îň ďđčëîćĺíč˙ č desktop číńňđóěĺíňč"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Ęëčĺíňč çŕ đŕçëč÷íč ďđîňîęîëč âęëţ÷čňĺëíî SSH"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Číňĺđíĺň gateway"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Ďđîăđŕěč çŕ ďóńęŕíĺ/ďîďđŕâ˙íĺ íŕ çâóę č âčäĺî"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Äđóăč ăđŕôč÷íč desktop-č"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Đĺäŕęňîđč, řĺëîâĺ, ôŕéëîâč číńňđčěĺíňč, ňĺđěčíŕëč"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Ďđîăđŕěč çŕ îáđŕáîňęŕ íŕ ôčíŕíńč, ęŕňî gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Îáđŕáîňęŕ íŕ ëč÷íŕ číôîđěŕöč˙"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Ěóëňčěĺäč˙ - îďč÷ŕíĺ íŕ CD"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Íŕó÷íŕ đŕáîňíŕ ńňŕíöč˙"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Îňęŕç"
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr ""
-#~ "Íĺ ěîăŕ äŕ îńúůĺńňâ˙ äîńňúď äî ěîäóëčňĺ íŕ ˙äđîňî ńúîňâĺňńâŕůč íŕ ˙äđîňî "
-#~ "âč (ôŕéëúň %s ëčďńâŕ)"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Íčęŕęúâ"
-
-#~ msgid "Choose a default printer!"
-#~ msgstr "Čçáĺđĺňĺ ďđčíňĺđ ďî ďîäđŕçáčđŕíĺ"
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Ďđčëŕăŕíĺ/Ďđĺďđî÷čň íŕ ďđčíňĺđčňĺ"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Ńĺăŕ ěîćĺňĺ äŕ ďîäŕäĺňĺ îďöččňĺ ěó ęúě ěîäóëŕ %s."
-
-#~ msgid "mount failed"
-#~ msgstr "ěîíňčđŕíĺňî íĺ óńď˙"
-
-#~ msgid "Low"
-#~ msgstr "Ńëŕáî"
-
-#~ msgid "Medium"
-#~ msgstr "Ńđĺäĺíî"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Í˙ęîč ďîäîáđĺíč˙ çŕ ňîâŕ íčâî íŕ ńčăóđíîńň. Ăëŕâíîňî ĺ, ÷ĺ čěŕ ďîâĺ÷ĺ\n"
-#~ "ďđĺäóďđĺćäĺíč˙ č ďđîâĺđęč çŕ ńčăóđíîńň."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Ěóëňčěĺäč˙"
-
-#~ msgid "Boot mode"
-#~ msgstr "Đĺćčě íŕ ńňŕđňčđŕíĺ"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Ĺęńďĺđňíŕ"
-
-#, fuzzy
-#~ msgid ""
-#~ "To know about the options available for the current printer read either "
-#~ "the list shown below or click on the \"Print option list\" button. %s\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Çŕ äŕ âčäčňĺ ńďčńúę íŕ äîńňúďíčňĺ îďöčč çŕ ňĺęóůč˙ ďđčíňĺđ, čëč ďđî÷ĺňĺňĺ "
-#~ "ńďčńúęŕ ďîęŕçŕí ďî-äîëó čëč öúęíĺňĺ íŕ áóňîíŕ \"Ńďčńúę ń îďöčč çŕ ďĺ÷ŕň"
-#~ "\".\n"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux đŕáîňč ń âđĺěĺ ďî GMT (Âđĺěĺ ďî Ăđčíóč÷)\n"
-#~ "č ăî ďđĺâĺćäŕ â ëîęŕëíî âđĺěĺ â çŕâčńčěîńň îň çîíŕňŕ, ęî˙ňî ńňĺ čçáđŕëč."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Îňâúđćč ńĺ îň Číňĺđíĺň"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Íŕńňđîéęŕ íŕ ěđĺćîâŕňŕ âđúçęŕ (LAN čëč Číňĺđíĺň)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Íŕ ęîé äčńę čńęŕňĺ äŕ ăî ďđĺěĺńňčňĺ ?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Číôîđěŕöč˙"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome đŕáîňíŕ ńňŕíöč˙"
-
-#~ msgid "authentification"
-#~ msgstr "óäîńňîâĺđ˙âŕíĺ"
-
-#~ msgid "user"
-#~ msgstr "ďîňđĺáčňĺë"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache ĺ World Wide Web (WWW) ńúđâúđ. Ňîé ńëóćč äŕ îáđŕáîňâŕ íŕ HTML "
-#~ "ôŕéëîâĺ\n"
-#~ "č CGI."
-
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) ĺ Domain Name Server (DNS), ęîéňî ńĺ čçďîëçâŕ äŕ ďđĺâúđíĺ\n"
-#~ "čěĺňî íŕ őîńňŕ äî IP ŕäđĺń."
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "Ňúđńĺíĺ íŕ äîńňúďíč NFS ńďîäĺëĺíč đĺńóđńč"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "Ňúđńĺíĺ çŕ äîńňúďíč NFS đĺńóđńč íŕ ńúđâúđ %s"
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "Ńęŕíčđŕíĺ íŕ äîńňúďíčňĺ SAMBA ďîäĺëĺíč đĺńóđńč"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "Ńęŕíčđŕíĺ íŕ äîńňúďíčňĺ SAMBA ďîäĺëĺíč đĺńóđńč íŕ ńúđâúđ %s"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Čçőîä"
-
-#~ msgid "Removable media"
-#~ msgstr "Ńěĺí˙ĺě íîńčňĺë"
-
-#~ msgid "Active"
-#~ msgstr "Ŕęňčâčđŕé"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Íĺ"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Ďđčíňĺđ îň ěîäĺëŕ \"%s\", ĺ íŕěĺđĺí íŕ "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Ëîęŕëíî ďĺ÷ŕňŕůî óńňđîéńňâî"
-
-#~ msgid "Printer Device"
-#~ msgstr "Ďĺ÷ŕňŕůî óńňđîéńňâî"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "Ëčďńâŕ čěĺ íŕ óńňđîéńňâî/ôŕéë !"
-
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Ďđčíňĺđ(č) íŕ îňäŕëĺ÷ĺí(č) CUPS ńúđâúđ(č)"
-
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Ďđčíňĺđ(č) íŕ îňäŕëĺ÷ĺí(č) ńúđâúđ(č)"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Ńčńňĺěŕ"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Äđóăŕ"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Ěîë˙, čçáĺđĺňĺ ďîäđĺćäŕíĺ íŕ ęëŕâčŕňóđŕňŕ."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Ěîë˙, öúęíĺňĺ íŕ íîńčňĺë˙"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Âčä: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Ëîř backup-ôŕéë"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Íŕńňđîéęŕ íŕ Ő"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Ďĺ÷ŕňŕůî óńňđîéńňâî"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Îňě˙íŕ"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ok"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Çŕňâîđč"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Ńňŕđňčđŕíĺ íŕ âđúçęŕňŕ ...."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Çŕňâŕđ˙íĺ íŕ âđúçęŕňŕ âč ..."
-
-#~ 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."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Ńčńňĺěŕňŕ â ěîěĺíňŕ íĺ ĺ ńâúđçŕíŕ."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Čçáĺđĺňĺ ăîëĺěčíŕňŕ, ęî˙ňî čńęŕňĺ äŕ číńňŕëčđŕňĺ"
-
-#~ msgid "Total size: "
-#~ msgstr "Îáůŕ ăîëĺěčíŕ: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Ěîë˙, čç÷ŕęŕéňĺ, "
-
-#~ msgid "Total time "
-#~ msgstr "Îáůŕ ďđîäúëćčňĺëíîńň "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Äŕ čçďîëçâŕě ëč ńĺăŕříŕňŕ íŕńňđîéęŕ íŕ X11 ?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Ęúäĺ ĺ ńâúđçŕí âŕřč˙ ďđčíňĺđ \n"
-#~ "(çŕáĺëĺćęŕ: /dev/lp0 ĺ ĺęâčâŕëĺíňíî íŕ LPT1) ?\n"
-
-#~ msgid "%s"
-#~ msgstr "%s"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr "Âíčěŕíčĺ, ěđĺćîâč˙ň ŕäŕďňĺđ âĺ÷ĺ ĺ íŕńňđîĺí. Ůĺ ăî ďđĺíŕńňđî˙."
-
-#~ msgid "New"
-#~ msgstr "Íîâ"
-
-#~ msgid "Remote"
-#~ msgstr "Îňäŕëĺ÷ĺí"
-
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr ""
-#~ "Ěîë˙, öúęíĺňĺ íŕ áóňîíŕ ďî-ăîđĺ\n"
-#~ "\n"
-#~ "Čëč čçďîëçâŕéňĺ \"Íîâ\""
-
-#~ msgid "Use \"New\""
-#~ msgstr "Čçďîëçâŕéňĺ \"Íîâ\""
-
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr "Ŕęî ńďčńúęúň ďî-ăîđĺ íĺ ńúäúđćŕ čńęŕíč˙ ĺëĺěĺíň, âúâĺäĺňĺ ăî ňóę:"
-
-#~ msgid "Shared resource"
-#~ msgstr "Ďîäĺëĺíč đĺńóđńč"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "..... (%s), áúäĺňĺ ďî-ňî÷ĺí\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (ďî ďîäđŕçáčđŕíĺ ĺ %s)"
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Âŕřč˙ň čçáîđ ? (ďî ďîäđŕçáčđŕíĺ %s, âúâĺäĺňĺ 'none' çŕ íčęîé)"
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "íĺ ěîăŕ äŕ îňâîđ˙ /etc/sysconfig/autologin çŕ ÷ĺňĺíĺ: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Čńęŕňĺ ëč äŕ đĺńňŕđňčđŕě ěđĺćŕňŕ ?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Ńúăëŕńíč ëč ńňĺ ?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Íŕ ďúň ńúě äŕ đĺńňŕđňčđŕě ěđĺćîâîňî óńňđîéńňâî:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr ""
-#~ "Íŕ ďúň ńúě äŕ đĺńňŕđňčđŕě ěđĺćîâîňî óńňđîéńňâî %s. Ńúăëŕńíč ëč ńňĺ ?"
-
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Îńâĺí ŕęî íĺ ńňĺ ńčăóđíč â îáđŕňíîňî, îáčęíîâĺíč˙ čçáîđ ĺ \"/dev/hda\"\n"
-#~ "(ďúđâč âîäĺůî IDE äčńę) čëč \"/dev/sda\" (ďúđâč SCSI äčńę)."
-
-#~ msgid ""
-#~ "The following printers are configured.\n"
-#~ "You can add some more or modify the existing ones."
-#~ msgstr ""
-#~ "Ńëĺäíčňĺ ďđčíňĺđč ńŕ íŕńňđîĺíč.\n"
-#~ "Ěîćĺňĺ äîáŕâčňĺ îůĺ čëč äŕ ďđîěĺíčňĺ ńúůĺńňâóâŕůčňĺ."
-
-#~ msgid ""
-#~ "\n"
-#~ "If you continue, I will shut down your %s environnement"
-#~ msgstr ""
-#~ "\n"
-#~ "Ŕęî ďđîäúëćčňĺ, ůĺ ńďđŕ %s ńđĺäŕňŕ âč"
-
-#~ msgid ""
-#~ "\n"
-#~ "Warning:\n"
-#~ "Applying the changes while running may crash your X environnement."
-#~ msgstr ""
-#~ "\n"
-#~ "Âíčěŕíčĺ:\n"
-#~ "Ďđčëŕăŕéęč íŕ ďđîěĺíčĺ ďî âđĺěĺ íŕ đŕáîňŕ ěîćĺ äŕ ńúńčďĺ X ńđĺäŕňŕ âč."
-
-#~ msgid "%s is already in use"
-#~ msgstr "Ĺňčęĺňúň %s ńĺ čçďîëçâŕ âĺ÷ĺ"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(ěîćĺ äŕ ďđč÷číč çŕăóáŕ íŕ äŕííč)"
-
-#~ msgid "A command line must be entered!"
-#~ msgstr "Ňđ˙áâŕ äŕ âúâĺäĺňĺ ęîěŕíäĺí đĺä !"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Íŕńňđîéęŕ íŕ ADSL"
-
-#~ msgid "Adapter"
-#~ msgstr "Ŕäŕďňĺđ"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Äîáŕâč ě˙ńňî íŕ ďŕęĺňčňĺ"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Ńëĺä ôîđěŕňčđŕíĺ íŕ âńč÷ęč ä˙ëîâĺ,"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Ěîäĺě Alcatel"
-
-#~ 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"
-#~ "ůĺ ěîćĺňĺ ëč äŕ ăî đŕáĺđĺňĺ č îňăîâîđčňĺ?"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Ŕâňîěŕňč÷íî číńňŕëčđŕíĺ îň ôëîďč"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Ŕâňîěŕňč÷íč çŕâčńčěîńňč"
-
-#~ msgid "Available packages"
-#~ msgstr "Íŕëč÷íč ďŕęĺňč"
-
-#~ 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')"
-
-#~ msgid "Boot style configuration"
-#~ msgstr "Íŕńňđîéęŕ íŕ íŕ÷číŕ íŕ ńňŕđňčđŕíĺ"
-
-#~ msgid "CUPS starting"
-#~ msgstr "Ńňŕđňčđŕíĺ íŕ CUPS"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Íĺ ěîćĺ äŕ čçďîëçâŕňĺ supermount ďđč âčńîęî íčâî íŕ ńčăóđíîńň"
-
-#~ msgid "Category"
-#~ msgstr "Ęŕňĺăîđč˙"
-
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ "×ŕň (IRC čëč ěîěĺíňíč ńúîáůĺíč˙) ďđîăđŕěč ęŕňî xchat, licq, gaim č "
-#~ "číńňđóěĺíňč çŕ ňđŕíńôĺđ íŕ ôŕéëîâĺ"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Ďđîâĺđ˙âŕě çŕâčńčěîńňčňĺ"
-
-#~ msgid "Choice"
-#~ msgstr "Čçáîđ"
-
-#~ msgid "Choose"
-#~ msgstr "Čçáĺđč"
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Čçáĺđĺňĺ ĺçčęúň íŕ ęëŕâčŕňóđŕňŕ âč îň ńďčńúęŕ ďî-äîëó"
-
-#~ msgid "Collapse all"
-#~ msgstr "Čç÷čńňč âńč÷ęî"
-
-#~ msgid "Color depth options"
-#~ msgstr "Îďöčč çŕ äúëáî÷číŕ íŕ öâĺňŕ"
-
-#~ msgid "Command line"
-#~ msgstr "Ęîěŕíäĺí đĺä"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Číńňđóěĺíňč çŕ ęîěóíčęŕöč˙"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Ńúäúđćŕíčĺňî íŕ íŕńňđîéâŕůč˙ ôŕéë íĺ ěîćĺ äŕ áúäĺ đŕçáđŕíî."
-
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Íŕńňđîéęŕ íŕ Lilo/Grub"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Íŕńňđîéęŕ íŕ LILO/GRUB"
-
-#~ msgid "Configure local network"
-#~ msgstr "Íŕńňîéęŕ íŕ ëîęŕëíŕňŕ ěđĺćŕ"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕňŕ / Íŕńňđîéęŕ íŕ ëîęŕëíŕňŕ ěđĺćŕ"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Íŕńňđîéęŕ íŕ ÷ŕńîâŕ çîíŕ"
-
-#~ msgid "Configure..."
-#~ msgstr "Íŕńňđîé ..."
-
-#~ msgid "Confirm Password"
-#~ msgstr "Ďîňâúđćäĺíčĺ íŕ ďŕđîëŕňŕ"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Ńâúđçâŕíĺ ęúě Číňĺđíĺň "
-
-#~ msgid "Connection Time: "
-#~ msgstr "Âđĺěĺ íŕ âđúçęŕňŕ: "
-
-#~ msgid "Connection complete."
-#~ msgstr "Ńâđúçâŕíĺňî čçâúđřĺíî."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Ńâúđçâŕíĺňî íĺ óńď˙.\n"
-#~ "Ďđîâĺđĺňĺ íŕńňđîéęŕňŕ â Mandrake Control Center."
-
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Timeout íŕ âđúçęŕňŕ (â ńĺę) [ áĺňŕ, íĺ ĺ âęŕđŕíî ]"
-
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Íĺ ěîćŕő äŕ îďđĺäĺë˙ \"%s\" çŕ ďîëçâŕíĺ ďî ďîäđŕçáčđŕíĺ !"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Ńúçäŕâŕíĺ íŕ boot-äčńęĺňŕ"
-
-#~ 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"
-#~ "ńďŕńčňĺ ńčńňĺěŕňŕ áĺç ďđĺčíńňŕëŕöč˙."
-
-#~ msgid "Customized"
-#~ msgstr "Ńďĺöčŕëčçčđŕíŕ"
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "×ĺřęŕ (Ďđîăđŕěčńňč)"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "Ńúđâúđ, DNS/DHCP "
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (čëč ADSL) âđúçęŕ"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Ęëčĺíňč č ńúđâúđ íŕ áŕçč äŕííč (MySQL č PostgreSQL)"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Runlevel ďî ďîäđŕçáčđŕíĺ"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Đŕçđŕáîňęŕ íŕ C/C++"
-
-#~ msgid "Development, Database"
-#~ msgstr "Đŕçđŕáîňęŕ, Áŕçč-äŕííč"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr "Đŕçđŕáîňęŕ, Číňĺăđčđŕíŕ ńđĺäŕ"
-
-#~ msgid "Development, Standard tools"
-#~ msgstr "Đŕçđŕáîňęŕ, Ńňŕíäŕđňíč číńňđóěĺíňč"
-
-#~ msgid "Directory"
-#~ msgstr "Äčđĺęňîđč˙"
-
-#~ msgid "Disable"
-#~ msgstr "Čçęëţ÷č"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Čçęëţ÷âŕíĺ íŕ Číňĺđíĺň âđúçęŕ"
-
-#~ msgid "Disable network"
-#~ msgstr "Čçęëţ÷âŕíĺ íŕ ěđĺćŕňŕ"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Îňâúđçâŕíĺ îň Číňĺđíĺň "
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Îňâúđçâŕíĺňî îň Číňĺđíĺň čçâúđřĺíî."
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Îňâúđçâŕíĺňî îň Číňĺđíĺň íĺ óńď˙."
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Čńęŕňĺ ëč äŕ ńúçäŕě ŕâňîěŕňč÷íî číńňŕëčđŕůŕ äčńęĺňŕ çŕ Linux đĺďëčęŕöč˙?"
-
-#~ msgid "ECI modem"
-#~ msgstr "Ěîäĺě ECI"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Čçęŕđâŕíĺ ńňđŕíčöŕňŕ ńëĺä ďĺ÷ŕň ?"
-
-#~ msgid "Enable"
-#~ msgstr "Âęëţ÷č"
-
-#~ msgid "Enable network"
-#~ msgstr "Âęëţ÷âŕíĺ íŕ ěđĺćŕňŕ"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Çŕäĺéńňâŕíĺ Num Lock-ŕ ďđč çŕđĺćäŕíĺ"
-
-#~ 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 ""
-#~ "Âń˙ęŕ îďŕřęŕ çŕ ďĺ÷ŕň (ęúäĺňî ńĺ íŕńî÷âŕň đŕáîňčňĺ çŕ ďĺ÷ŕň) ńĺ íóćäŕĺ\n"
-#~ "îň čěĺ (îáčęíîâĺíî lp) č spool-äčđĺęňîđč˙ ńâúđçâŕíŕ ń íĺ˙. Ęîĺ\n"
-#~ "čěĺ íŕ äčđĺęňîđč˙ äŕ áúäĺ čçďîëçâŕíî çŕ ňŕçč îďŕřęŕ č ęŕę ńĺ ńâúđçŕí "
-#~ "ďđčíňĺđŕ ?"
-
-#~ 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 ""
-#~ "Âńĺęč ďđčíňĺđ ńĺ íóćäŕĺ îň čěĺ (íŕďđčěĺđ, \"lp\").\n"
-#~ "Äđóăč ďŕđŕěĺňđč ęŕňî îďčńŕíčĺ íŕ ďđčíňĺđŕ čëč ěĺńňîďîëîćĺíčĺňî ěó ěîăŕň "
-#~ "äŕ\n"
-#~ "áúäŕň îďđĺäĺëĺíč. Ęŕęâî čěĺ äŕ áúäĺ čçďîëçâŕíî çŕ ňîçč ďđčíňĺđ č\n"
-#~ "ęŕę ĺ ńâúđçŕí ňîé ?"
-
-#~ msgid "Expand all"
-#~ msgstr "Đŕçřčđč âńč÷ęî"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Äîďúëíčňĺëíč GhostScript îďöčč"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Äîďúëíčňĺëíč îďöčč çŕ ňĺęńň"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Ńúđâúđ, Ôŕéëîâ/Ďđčíňĺđĺí/Samba"
-
-#~ msgid "Find Package"
-#~ msgstr "Íŕěĺđč ďŕęĺň"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Íŕěĺđč ďŕęĺň ńúäúđćŕů ôŕéë"
-
-#~ msgid "Finding leaves"
-#~ msgstr "Íŕěčđŕíĺ íŕ ëčńňŕňŕ"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Íŕěčđŕíĺňî íŕ ëčńňŕ îňíĺěŕ ěŕëęî âđĺěĺ"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Ďúđâč DNS ńúđâúđ"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Ďîďđŕâęŕ íŕ stair-stepping ňĺęńň ?"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Çŕ FTP č HTTP, ůĺ ňđ˙áâŕ äŕ äŕäĺňĺ ě˙ńňî çŕ hdlist\n"
-#~ "Ňî ňđ˙áâŕ äŕ ďđčëč÷ŕ íŕ URL-ňî îňăîđĺ"
-
-#~ msgid "Format all"
-#~ msgstr "Ôîđěŕňčđŕé âńč÷ęî"
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "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 "
-#~ "ěŕřčíŕ\n"
-#~ "(čëč íŕ Unix ěŕřčíŕ čçďîëçâŕůŕ SMB ďđîňîęîë), čçáĺđĺňĺ \"SMB/Windows "
-#~ "95/98/NT\"."
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Äŕéňĺ čěĺ (íŕďđ.: `extra', `commercial')"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Ďđĺěŕőâŕíĺ íŕ çŕďčńŕ %s"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Îáđŕáîňęŕ íŕ ăđŕôčęŕ"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Ęŕę čńęŕňĺ äŕ ńĺ ńâúđćĺňĺ ęúě Číňĺđíĺň ?"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Íŕěĺđĺő ISDN ęŕđňŕ:\n"
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Ŕęî íĺůî íĺ ĺ íŕđĺä ń íŕńňđîéęŕňŕ íŕ X, čçďîëçâŕéňĺ ňĺçč îďöčč çŕ\n"
-#~ "ďđŕâčëíŕ íŕńňđîéęŕ íŕ X Window ńčńňĺěŕňŕ."
-
-#~ 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"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Ŕęî íĺ ńňĺ ńčăóđíč äŕëč číôîđěŕöč˙ňŕ ďî-ăîđĺ ĺ â˙đíŕ\n"
-#~ "čëč ŕęî íĺ çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, â˙đíŕ číôîđěŕöč˙\n"
-#~ "ěîćĺ äŕ áúäĺ âçĺňŕ îň Číňĺđíĺň äîńňŕâ÷čęŕ âč. Ŕęî íĺ âúâĺäĺňĺ číôîđěŕöč˙ "
-#~ "çŕ\n"
-#~ "DNS (name server), ň˙ ůĺ áúäĺ âçĺňŕ îň Číňĺđíĺň äîńňŕâ÷čęŕ âč ďî âđĺěĺ "
-#~ "íŕ\n"
-#~ "ńâúđçâŕíĺ."
-
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Ŕęî čěŕňĺ âńč÷ęč CD-ňŕ îň ńďčńúęŕ ďî-ăîđĺ, íŕňčńíĺňĺ Ok. Ŕęî í˙ěŕňĺ\n"
-#~ "íčňî ĺäíî îň ňĺçč CD-ňŕ, íŕňčńíĺňĺ Îňě˙íŕ. Ŕęî âč ëčďńâŕň í˙ęîč CD-ňŕ, "
-#~ "čçęëţ÷ĺňĺ ăč,\n"
-#~ "č íŕňčńíĺňĺ Ok."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Ŕęî ďđĺäďî÷čňŕňĺ äŕ čçďîëçâŕňĺ ăđŕôč÷íî âëčçŕíĺ, čçáĺđĺňĺ \"Äŕ\". Â\n"
-#~ "ďđîňčâĺí ńëó÷ŕé, čçáĺđĺňĺ \"Íĺ\"."
-
-#~ 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 ""
-#~ "Ŕęî ůĺ čçďîëçâŕňĺ proxy ńúđâúđč, ěîë˙, íŕńňđîéňĺ ăč ńĺăŕ. Ŕęî íĺçíŕĺňĺ,\n"
-#~ "ďîďčňŕéňĺ ěđĺćîâč˙ ŕäěčíčńňđŕňîđ čëč Číňĺđíĺň äîńňŕâ÷čęŕ ńč."
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Ŕęî čńęŕňĺ äđóăč ĺçčöč (îńâĺí ňîçč, ęîéňî čçáđŕőňĺ ďđĺäč\n"
-#~ "íŕ÷ŕëîňî íŕ číńňŕëŕöč˙ňŕ), ęîčňî äŕ áúäŕň äîńňúďíč ńëĺä číńňŕëŕöč˙ňŕ, "
-#~ "ěîë˙, čçáĺđĺňĺ\n"
-#~ "ăč îň ńďčńúęŕ ďî-ăîđĺ. Ŕęî čńęŕňĺ äŕ ăč čçáĺđĺňĺ âńč÷ęč, ďđîńňî čçáĺđĺňĺ "
-#~ "\"Âńč÷ęč\"."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Ŕęî čńęŕňĺ äŕ ěîćĺňĺ äŕ ďĺ÷ŕňŕňĺ, ěîë˙, čçáĺđĺňĺ ńčńňĺěŕ çŕ ďĺ÷ŕň "
-#~ "čçěĺćäó\n"
-#~ "CUPS č LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS ĺ íîâŕ, ěîůíŕ č ăúâęŕâŕ ńčńňĺěŕ çŕ ďĺ÷ŕň çŕ Unix ńčńňĺěč (CUPS\n"
-#~ "ďđîčçëčçŕ îň \"Îáůŕ Unix Ďŕ÷ŕňíŕ Ńčńňĺěŕ\"). Ňîâŕ ĺ ńčńňĺěŕňŕ çŕ ďĺ÷ŕň ďî "
-#~ "ďîäđŕçáčđŕíĺ â\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR ĺ ńňŕđŕňŕ ńčńňĺěŕ çŕ ďĺ÷ŕň, čçďîëçâŕíŕ ďđĺäčříčňĺ Mandrake Linux "
-#~ "äčńňđčáóöčč.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî í˙ěŕňĺ ďđčíňĺđ, öúęíĺňĺ \"Íčęŕęúâ\"."
-
-#~ 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 "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Ŕęî čńęŕňĺ äŕ ńâúđćčňĺ ęîěďţňúđŕ ńč ęúě Číňĺđíĺň čëč ęúě\n"
-#~ "ëîęŕëíŕ ěđĺćŕ, ěîë˙, čçáĺđĺňĺ ďîäőîä˙ůŕňŕ îďöč˙. Ěîë˙, âęëţ÷ĺňĺ "
-#~ "óńňđîéńňâîňî\n"
-#~ "ďđĺäč äŕ čçáĺđĺňĺ ďîäőîä˙ůŕňŕ îďöč˙, çŕ äŕ ďîçâîëčňĺ íŕ DrakX äŕ ăî "
-#~ "çŕńĺ÷ĺ ŕâňîěŕňč÷íî.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî í˙ěŕňĺ íčęŕęâŕ âđúçęŕ ęúě Číňĺđíĺň čëč ęúě ëîęŕëíŕ ěđĺćŕ, čçáĺđĺňĺ\n"
-#~ "\"Čçęëţ÷âŕíĺ íŕ ěđĺćŕňŕ\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî čńęŕňĺ äŕ íŕńňđîčňĺ ěđĺćŕňŕ ďî-ęúńíî, ńëĺä číńňŕëŕöč˙ňŕ, čëč ńňĺ "
-#~ "ďđčęëţ÷čëč ń íŕńňđîéęŕňŕ íŕ ěđĺćŕňŕ, čçáĺđĺňĺ \"Ăîňîâî\"."
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ "Ŕęî ADSL ěîäĺěúň âč ĺ Alcatel, čçáĺđĺňĺ Alcatel. Číŕ÷ĺ, čçáĺđĺňĺ ECI."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Ŕęî ěîäĺěúň âč ĺ âúířĺí, ěîćĺ, âęëţ÷ĺňĺ ăî ńĺăŕ, çŕ äŕ ďîçâîëčňĺ íŕ DrakX "
-#~ "äŕ ăî çŕńĺ÷ĺ ŕâňîěŕňč÷íî."
-
-#~ msgid ""
-#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
-#~ "select\n"
-#~ "\"LDAP\" (or \"NIS\") as authentication. If you don't know, ask your "
-#~ "network\n"
-#~ "administrator.\n"
-#~ "\n"
-#~ "If your computer is not connected to any administrated network, you may "
-#~ "want to\n"
-#~ "choose \"Local files\" for authentication."
-#~ msgstr ""
-#~ "Ŕęî ěđĺćŕňŕ âč čçďîëçâŕ LDAP (čëč NIS) ďîđîňęîë çŕ ŕóňîđčçŕöč˙, čçáĺđĺňĺ\n"
-#~ "\"LDAP\" (čëč \"NIS\") çŕ ŕóňîđčçŕöč˙. Ŕęî íĺ çíŕĺňĺ, ďîďčňŕéňĺ ěđĺćîâč˙ "
-#~ "ńč\n"
-#~ "ŕäěčíčńňđŕňîđ.\n"
-#~ "\n"
-#~ "Ŕęî ęîěďţňúđúň âč íĺ ĺ ńâúđçŕí ęúě ŕäěčíčńňđčđŕíŕ ěđĺćŕ, ěîćĺ áč ůĺ "
-#~ "čńęŕňĺ\n"
-#~ "äŕ čçáĺđĺňĺ \"Ëîęŕëíč ôŕéëîâĺ\" çŕ ŕóňîđčçŕöč˙."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Ŕęî ěđĺćŕňŕ âč čçďîëçâŕ NIS, čçáĺđĺňĺ \"Čçďîëçâŕé NIS\". Ŕęî íĺ çíŕĺňĺ,\n"
-#~ "ďîďčňŕéňĺ ěđĺćîâč˙ ŕäěčíčńňđŕňîđ."
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "Â ęî˙ ńňđŕíŕ ńĺ íŕěčđŕňĺ ?"
-
-#~ msgid "Installed packages"
-#~ msgstr "Číńňŕëčđŕíč ďŕęĺňč"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Číňĺđíĺň Číńňđóěĺíňč"
-
-#~ msgid "Internet/Network access"
-#~ msgstr "Číňĺđíĺň/Ěđĺćîâ äîńňúď"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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"
-#~ "äčńęŕ), ęîéňî ńúäúđćŕ boot ńĺęňîđŕ. Čçáĺđĺňĺ \"/dev/hda\", îńâĺí ŕęî íĺ\n"
-#~ "ńňĺ ńčăóđíč â äđóăî.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Čç÷ŕęâŕíĺ ďđĺäč ńňŕđňčđŕíĺ íŕ ďîäđŕçáčđŕůč˙ ńĺ îáđŕç: Îďđĺäĺë˙ "
-#~ "äĺńĺňčňĺ\n"
-#~ "îň ńĺęóíäŕňŕ, ęîčňî çŕđĺćäŕůŕ ďđîăđŕěŕ äŕ čç÷ŕęŕ ďđĺäč ďóńęŕíĺňî íŕ "
-#~ "ďúđâč˙\n"
-#~ "îáđŕç. Ďîëĺçíî ĺ çŕ ńčńňĺěč, ęîčňî ńňŕđňčđŕň îň äčńęŕ âĺäíŕăŕ ńëĺä "
-#~ "âęëţ÷âŕíĺ\n"
-#~ "íŕ ęëŕâčŕňóđŕňŕ. Çŕđĺćäŕůŕňŕ ďđîăđŕěŕ íĺ ÷ŕęŕ, ŕęî \"delay\" ĺ\n"
-#~ "ďđîďóńíŕň čëč ĺ íóëŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Âčäĺî đĺćčě: Ňîâŕ îďđĺäĺë˙ ňĺęńňîâč˙ VGA đĺćčě, ęîéňî äŕ áúäĺ čçáđŕí\n"
-#~ "ďđč íŕ÷ŕëíî çŕđĺćäŕíĺ. Âúçěîćíč ńŕ ńëĺäíčňĺ ńňîéíîńňč:\n"
-#~ " * normal: čçáčđŕ îáčęíîâĺí 80x25 ňĺęńňîâ đĺćčě.\n"
-#~ "\n"
-#~ " * <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 ĺ íîđěŕëíŕ."
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ "Ëîęŕëíŕňŕ ěđĺćŕ âĺ÷ĺ ĺ íŕńňđîĺíŕ.\n"
-#~ "Čńęŕňĺ ëč äŕ:"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Äîďúëíčňĺëíč"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Äîďúëíčňĺëíč âúďđîńč"
-
-#~ msgid "Modify printer"
-#~ msgstr "Ďîďđŕâč ďđčíňĺđ"
-
-#~ msgid "Name of queue"
-#~ msgstr "Čěĺ íŕ îďŕřęŕ"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Čěĺ íŕ ńúçäŕâŕíč˙ ďđîôčë:"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Íŕáëţäŕâŕíĺ íŕ ěđĺćŕňŕ"
-
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Ěđĺćîâ ďđčíňĺđ 1 (eth0):"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Í˙ěŕ CDROM (í˙ěŕ íčůî â /mnt/cdrom)"
-
-#~ msgid "No match"
-#~ msgstr "Í˙ěŕ ńúâďŕäĺíč˙"
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Íĺ áĺřĺ îňęđčň ěîäĺě. Ěîë˙, ďîńî÷ĺňĺ ńĺđčéíč˙ ďîđň, ęúě ęîéňî ĺ ńâúđçŕí.\n"
-#~ "\n"
-#~ "\n"
-#~ "Çŕ číôîđěŕöč˙, ďúđâč˙ň ńĺđčĺí ďîđň (íŕđč÷ŕí \"COM1\" ďîä Microsoft\n"
-#~ "Windows) ńĺ íŕđč÷ŕ \"ttyS0\" ďîä Linux."
-
-#~ msgid "No more match"
-#~ msgstr "Í˙ěŕ ďîâĺ÷ĺ ńúâďŕäĺíč˙"
-
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Ńĺăŕ ĺ âđĺěĺ äŕ íŕńňđîčňĺ X Window System, ęî˙ňî ĺ ˙äđîňî íŕ \n"
-#~ "GNU/Linux GUI (Ăđŕôč÷ĺí Ďîđĺáčňĺëńęč Číňĺđôĺéń). Çŕ ňŕçč öĺë ňđ˙áâŕ äŕ\n"
-#~ "íŕńňđîčňĺ âčäĺîęŕđňŕňŕ č ěîíčňîđŕ ńč. Ďî-ăîë˙ěŕňŕ ÷ŕńň îň ńňúďęčňĺ ńŕ\n"
-#~ "ŕâňîěŕňčçčđŕíč, ňŕęŕ ÷ĺ đŕáîňŕňŕ âč ěîćĺ áč ůĺ ńĺ ńúńňîč ńŕěî îň "
-#~ "ďđîâĺđęŕ\n"
-#~ "ęŕęâî ĺ íŕďđŕâĺíî č ďđčĺěŕíĺňî íŕ íŕńňđîéęčňĺ :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęîăŕňî íŕńňđîéęŕňŕ çŕâúđřč, X ůĺ áúäĺ ńňŕđňčđŕí (îńâĺí ŕęî íĺ óęŕćĺňĺ íŕ\n"
-#~ "DrakX äŕ íĺ ăî ďđŕâč), çŕ äŕ ďđîâĺđčňĺ äŕëč íŕńňđîéęčňĺ âč óńňđîéâŕň. "
-#~ "Ŕęî\n"
-#~ "íĺ âč óńňđîéâŕň, ěîćĺňĺ äŕ ńĺ âđúůŕňĺ č äŕ ăč ďđîěĺí˙ňĺ, ęîëęîňî ďúňč âč\n"
-#~ "ĺ íĺîáőîäčěî."
-
-#~ 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 ""
-#~ "Ńĺăŕ, ńëĺä ęŕňî Číňĺđíĺň âđúçęŕňŕ âč ĺ íŕńňđîĺíŕ,\n"
-#~ "ęîěďţňúđúň âč ěîćĺ äŕ áúäĺ íŕńňđîĺí íŕ ńďîäĺë˙ Číňĺđíĺň âđúçęŕňŕ ńč.\n"
-#~ "Îňáĺëĺćĺňĺ: çŕ ňîâŕ âč ňđ˙áâŕ óńňŕíîâĺí îňäĺëĺí ěđĺćîâ ŕäŕďňĺđ, çŕ äŕ "
-#~ "óńňŕíîâčňĺ âúňđĺříŕňŕ ńč ěđĺćŕ (LAN).\n"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Áđîé ńňđŕíčöč çŕ čçőîäíč ńňđŕíčöč"
-
-#~ msgid "Opening your connection..."
-#~ msgstr "Îňâŕđ˙íĺ íŕ âđúçęŕňŕ âč ..."
-
-#~ msgid "Other countries"
-#~ msgstr "Äđóăč ńňđŕíč"
-
-#~ msgid "Package"
-#~ msgstr "Ďŕęĺňŕ"
-
-#~ msgid "Paper Size"
-#~ msgstr "Đŕçěĺđ íŕ őŕđňč˙ňŕ"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Čçáĺđĺňĺ ďđĺäďî÷čňŕí ĺçčę çŕ číńňŕëŕöč˙ č ńčńňĺěíî čçďîëçâŕíĺ."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "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"
-#~ "Ůĺ ěîćĺňĺ äŕ čçďđîáâŕňĺ íŕńňđîéęŕňŕ â ńëĺäâŕůŕňŕ ńňúďęŕ č äŕ ˙ ńěĺíčňĺ, "
-#~ "ŕęî íĺ đŕáîňč ęŕęňî ňđ˙áâŕ."
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Ěîë˙, čçďđŕňĺňĺ ńëĺäíŕňŕ číôîđěŕöč˙"
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Ěîë˙, âęëţ÷ĺňĺ ěîäĺěŕ ńč č čçáĺđĺňĺ ďîäőîä˙ůč˙."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " 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"
-#~ "\n"
-#~ " * Čěĺ íŕ ďđčíňĺđ: ďî ďîäđŕçáčđŕíĺ, ďĺ÷ŕňíč˙ spooler čçďîëçâŕ \"lp\" "
-#~ "ęŕňî čěĺ íŕ ďđčíňĺđ. Ňŕęŕ ÷ĺ ňđ˙áâŕ äŕ čěŕňĺ\n"
-#~ "ďđčíňĺđ íŕđĺ÷ĺí \"lp\".\n"
-#~ " Ŕęî čěŕňĺ ńŕěî ĺäčí ďđčíňĺđ, ěîćĺňĺ äŕ čçďîëçâŕňĺ í˙ęîëęî čěĺíŕ çŕ "
-#~ "íĺăî. Ňđ˙áâŕ ńŕěî äŕ ăč îňäĺëčňĺ ń pipe\n"
-#~ " ńčěâîëŕ (\"|\"). Ňŕęŕ ÷ĺ, ŕęî ďđĺäďî÷čňŕňĺ ďî-ńěčńëĺíî čěĺ, ěîćĺňĺ "
-#~ "äŕ ăî ńëîćčňĺ ďúđâî, íŕďđ. \"My printer|lp\".\n"
-#~ " Ďđčíňĺđúň ńúäúđćŕů \"lp\" â čěĺňî(ŕňŕ) ńč ůĺ ńĺ ďîëçâŕ ďî "
-#~ "ďîäđŕçáčđŕíĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Îďčńŕíčĺ: Ňîâŕ ĺ íĺçŕäúëćčňĺëíî, íî ěîćĺ äŕ ĺ ďîëĺçíî, ŕęî čěŕ "
-#~ "í˙ęîëęî ďđčíňĺđŕ ńâúđçŕíč ęúě ęîěďţňúđŕ âč čëč ŕęî\n"
-#~ " đŕçđĺřŕâŕňĺ äîńňúď äî íĺăî íŕ äđóăč ęîěďţňđč.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ěĺńňîďîëîćĺíčĺ: ŕęî čńęŕňĺ äŕ äŕäĺňĺ číôîđěŕöč˙ çŕ ěĺńňîďîëîćĺíčĺňî\n"
-#~ " íŕ ďđčíňĺđŕ ńč, íŕďđŕâĺňĺ ăî ňóę (ěîćĺňĺ äŕ íŕďčřĺňĺ ęŕęâîňî ńč "
-#~ "čńęŕňĺ,\n"
-#~ " íŕďđčěĺđ \"2-đč ĺňŕć\").\n"
-
-#~ msgid "Press next to continue."
-#~ msgstr "Íŕňčńíĺňĺ Ńëĺäâŕů, çŕ äŕ ďđîäúëćčňĺ."
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Ďĺ÷ŕňŕé ňĺęńňŕ ęŕňî PostScript ?"
-
-#~ msgid "Profile "
-#~ msgstr "Ďđîôčë "
-
-#~ msgid "Provider dns 1"
-#~ msgstr "1-âč DNS íŕ äîńňŕâ÷čęŕ"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "2-đč DNS íŕ äîńňŕâ÷čęŕ"
-
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, áčáëčîňĺęč, číńňđóěĺíňč"
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Ńęîđîńň íŕ ďđčĺěŕíĺ: "
-
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Ďđĺíŕńňđîé čçďîëçâŕéęč ěŕăüîńíčę ..."
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Reload"
-#~ msgstr "Ďđĺçŕđĺćäŕíĺ"
-
-#~ msgid "Remote queue"
-#~ msgstr "Îňäŕëĺ÷ĺíî čěĺ íŕ îďŕřęŕ"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Ëčďńâŕ čěĺ íŕ îďŕřęŕňŕ !"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Îáúđíč đĺäŕ íŕ ńňđŕíčöčňĺ"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Äĺńĺí/Ë˙â úăúë â ňî÷ęč (1/72 íŕ čí÷)"
-
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 ĺ bootloader çŕ SPARC: ňoé ěîćĺ äŕ ńňŕđňčđŕ\n"
-#~ "GNU/Linux čëč ęî˙ äŕ ĺ äđóăŕ îďĺđŕöčîííŕ ńčńňĺěŕ, ńúůĺńňâóâŕůŕ íŕ "
-#~ "ęîěďţňúđŕ âč.\n"
-#~ "Îáčęíîâĺííî, ňĺçč äđóăč îďĺđŕöčîííč ńčńňĺěŕ ńĺ çŕńč÷ŕň č číńňŕëčđŕň\n"
-#~ "ďđŕâčëíî. Ŕęî ňîâŕ íĺ ńňŕâŕ ďđč âŕń, ěîćĺňĺ äŕ äîáŕâ˙ňĺ çŕďčńč íŕ đúęŕ â\n"
-#~ "ňîçč ĺęđŕí. Ăëĺäŕéňĺ äŕ čçáĺđĺňĺ âĺđíč ďŕđŕěĺňđč.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ěîćĺ äŕ íĺ čńęŕňĺ äŕ äŕâŕňĺ äîńňúď äî ňĺçč îďĺđŕöčîííč ńčńňĺěč íŕ íčęîé,\n"
-#~ "â ęîéňî ńëó÷ŕé ěîćĺňĺ äŕ čçňđčĺňĺ ńúîňâĺňíčňĺ çŕďčńč. Íî â ňŕęúâ ńëó÷ŕé,\n"
-#~ "ůĺ ńĺ íóćäŕĺňĺ îň boot-äčńęĺňŕ, çŕ äŕ ăč ńňŕđňčđŕňĺ !"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Ăëŕâíčňĺ îďöčč íŕ SILO ńŕ:\n"
-#~ " - bootloader číńňŕëŕöč˙: ďîęŕçâŕ, ęúäĺňî čńęŕňĺ äŕ ďîńňŕâčňĺ "
-#~ "číôîđěŕöč˙ňŕ\n"
-#~ "íĺîáőîäčěŕ çŕ ńňŕđňčđŕíĺňî íŕ GNU/Linux. Îńâĺí ŕęî íĺ çíŕĺňĺ ňî÷íî ęŕęâî\n"
-#~ "ďđŕâčňĺ, čçáĺđĺňĺ \"Ďúđâč ńĺęňîđ íŕ óńňđîéńňâîňî (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Čç÷ŕęâŕíĺ ďđĺäč ńňŕđňčđŕíĺ íŕ ďîäđŕçáčđŕůč˙ ńĺ îáđŕç: Îďđĺäĺë˙ "
-#~ "äĺńĺňčňĺ\n"
-#~ "îň ńĺęóíäŕňŕ, ęîčňî çŕđĺćäŕůŕ ďđîăđŕěŕ äŕ čç÷ŕęŕ ďđĺäč ďóńęŕíĺňî íŕ "
-#~ "ďúđâč˙\n"
-#~ "îáđŕç. Ďîëĺçíî ĺ çŕ ńčńňĺěč, ęîčňî ńňŕđňčđŕň îň äčńęŕ âĺäíŕăŕ ńëĺä ęŕňî\n"
-#~ "ńĺ âęëţ÷č ęëŕâčŕňóđŕňŕ. Çŕđĺćäŕůŕňŕ ďđîăđŕěŕ íĺ ÷ŕęŕ, ŕęî \"delay\" ĺ\n"
-#~ "ďđîďóńíŕň čëč ĺ íóëŕ."
-
-#~ msgid "Sciences"
-#~ msgstr "Íŕóęč"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Íŕó÷íč ďđčëîćĺíč˙"
-
-#~ msgid "Search"
-#~ msgstr "Ňúđńč"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Âňîđč DNS ńúđâúđ"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Čçáĺđĺňĺ âđúçęŕ ęúě îňäŕëĺ÷ĺíč˙ ďđčíňĺđ"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Čçáĺđĺňĺ đŕçěĺđŕ, ęîéňî čńęŕňĺ äŕ číńňŕëčđŕě"
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Čçáĺđĺňĺ:\n"
-#~ "\n"
-#~ " - Ńďĺöčŕëčçčđŕíŕ: Ŕęî ńňĺ äîńňŕňú÷íî çŕďîçíŕň ń GNU/Linux, ůĺ ěîćĺňĺ äŕ "
-#~ "čçáĺđĺňĺ\n"
-#~ " ăëŕâíîňî ďđĺäíŕçíŕ÷ĺíčĺ íŕ ěŕřčíŕňŕ ńč. Âčćňĺ ďî-äîëó çŕ "
-#~ "ďîäđîáíîńňč.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ĺęńďĺđňíŕ: Ňîâŕ ďđĺäďîëŕăŕ, ÷ĺ ńňĺ íŕ \"ňč\" ń GNU/Linux č čńęŕňĺ äŕ\n"
-#~ " íŕďđŕâčňĺ âčńîęî ńďĺöčŕëčçčđŕíŕ číńňŕëŕöč˙. Ęŕęňî č â "
-#~ "\"Ńďĺöčŕëčçčđŕíč˙\"\n"
-#~ " číńňŕëŕöčîíĺí ęëŕń, ůĺ ěîćĺňĺ äŕ čçáĺđĺňĺ óďîňđĺáŕňŕ íŕ ńčńňĺěŕňŕ "
-#~ "ńč.\n"
-#~ " Íî ěîë˙, ěîë˙, ÍĹ ČÇÁČĐŔÉŇĹ ŇÎÂŔ, ÎŃÂĹÍ ŔĘÎ ÍĹ ÇÍŔĹŇĹ ĘŔĘÂÎ ĎĐŔÂČŇĹ!"
-
-#~ msgid "Selected size %d%s"
-#~ msgstr "Čçáĺđĺňĺ ăîëĺěčíŕ %d%s"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Ńęîđîńň íŕ čçďđŕůŕíĺ: "
-
-#~ msgid "Show only leaves"
-#~ msgstr "Ďîęŕćč ńŕěî ëčńňŕňŕ"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Ńëîâŕřęŕ (Ďđîăđŕěčńňč)"
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ "Ńúćĺë˙âŕě, íŕńňđîéęŕňŕ íŕ ďîůŕňŕ îůĺ íĺ ĺ âúâĺäĺíŕ. Áúäĺňĺ ňúđďĺëčâč."
-
-#~ msgid "Sort by"
-#~ msgstr "Ńîđňčđŕé ďî"
-
-#~ msgid "Spool directory"
-#~ msgstr "Spool-äčđĺęňîđč˙"
-
-#~ msgid "Spooler: "
-#~ msgstr "Spooler: "
-
-#~ msgid "Statistics"
-#~ msgstr "Ńňŕňčńňčęč"
-
-#~ msgid "Test the mouse here."
-#~ msgstr "Čçďđîáâŕéňĺ ěčřęŕňŕ ńč ňóę."
-
-#~ msgid ""
-#~ "The Mandrake Linux spreads among several CDROMs. It may be that drakX "
-#~ "has\n"
-#~ "selected packages on another CDROM than the installation CDROM, and when "
-#~ "it\n"
-#~ "needs that you put another one into the drive, it will eject the current "
-#~ "CDROM\n"
-#~ "and ask you for another one."
-#~ msgstr ""
-#~ "Mandrake Linux ĺ đŕçďîëîćĺí íŕ í˙ęîëęî CDROM-ŕ. Ěîćĺ äŕ ńĺ îęŕćĺ, ÷ĺ "
-#~ "DrakX\n"
-#~ "ĺ čçáđŕë ďŕęĺňč íŕ CDROM, đŕçëč÷ĺí îň číńňŕëŕöčîííč˙ CDROM, č, ęîăŕňî ěó\n"
-#~ "ďîňđ˙áâŕ äŕ ăî ńëîćčňĺ â óńňđîéńňâîňî, ňîé ůĺ čçęŕđŕ ňĺęóůč˙ CDROM č ůĺ "
-#~ "âč\n"
-#~ "ďîčńęŕ äđóă."
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň äĺčíńňŕëčđŕíč"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Ňîçč ńňŕđňîâ ńęđčďň ńĺ îďčňâŕ äŕ çŕđĺäč ěîäóëč usb ěčřęŕňŕ âč."
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Çŕ ďî-ńčăóđíŕ ńčńňĺěŕ, ňđ˙áâŕ äŕ čçáĺđĺňĺ \"Čçďîëçâŕé shadow ôŕéë\"\n"
-#~ "č \"Čçďîëçâŕé MD5 ďŕđîëč\"."
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Ďđĺâęëţ÷âŕíĺ ěĺćäó Číńňŕëčđŕí č Íŕëč÷ĺí"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Ăîđĺí/Äîëĺí úăúë â ňî÷ęč (1/72 íŕ čí÷)"
-
-#~ msgid "Tree"
-#~ msgstr "Äúđâî"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Äŕ ńĺ îďčňŕě ëč äŕ îňęđč˙ ěîäĺě ?"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL íŕ äčđĺęňîđč˙ňŕ ńúäúđćŕůŕ RPM"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Îďöčč çŕ Uniprint äđŕéâĺđ"
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Íĺđŕçďîçíŕň íŕńňđîéâŕů ôŕéë"
-
-#~ msgid "Update location"
-#~ msgstr "Îáíîâč ě˙ńňîňî"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Îáíîâ˙âŕíĺ íŕ RPM áŕçŕňŕ"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Čçďîëçâŕé MD5 ďŕđîëč"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Čçďîëçâŕé diskdrake"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Čçďîëçâŕé shadow ôŕéë"
-
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "Äîáđĺ äîřëč â Ěŕăüîńíčęŕ çŕ ěđĺćîâŕ íŕńňđîéęŕ.\n"
-#~ "Ęîč ęîěďîíĺíňč čńęŕňĺ äŕ íŕńňđîčňĺ ?\n"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Ęŕęâî ňúđń˙ň?"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "Çŕ ęŕęâî ńĺ óďîňđĺá˙âŕ ńčńňĺěŕňŕ âč ?"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Ęŕęâŕ ďđîăđŕěŕ çŕ íŕ÷ŕëíî çŕđĺćäŕíĺ čńęŕňĺ äŕ čçďîëçâŕňĺ?"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Ęîé ôŕéë ňúđńčňĺ?"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Ęîé ďŕęĺň ňúđń˙ň"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "Ęúě ęîé ńĺđčĺí ďîđň ĺ ńâúđçŕíŕ ěčřęŕňŕ âč ?"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Ń îňäŕëĺ÷ĺí CUPS ńúđâúđ, íĺ âč ńĺ íŕëŕăŕ äŕ íŕńňđîéâŕňĺ ęŕęúâňî\n"
-#~ "č äŕ áčëî ďđčíňĺđ ňóę; ďđčíňĺđčňĺ ńŕěč ůĺ áúäŕň çŕńĺ÷ĺíč,\n"
-#~ "îńâĺí ŕęî í˙ěŕňĺ ńúđâúđ íŕ äđóăŕ ěđĺćŕ; â ďîńëĺäíč˙ ńëó÷ŕé,\n"
-#~ "ůĺ ňđ˙áâŕ äŕ ďđĺäîńňŕâčňĺ IP ŕäđĺń č ĺâĺíňóŕëíî ďîđň íŕ\n"
-#~ "CUPS ńúđâúđŕ."
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Çŕďčřč /etc/fstab"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Äŕ, îňďĺ÷ŕňŕé ASCII ňĺńňîâŕ ńňđŕíčöŕ"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Äŕ, îňďĺ÷ŕňŕé PostScript ňĺńňîâŕ ńňđŕíčöŕ"
-
-#~ msgid ""
-#~ "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"
-#~ msgstr ""
-#~ "Ěîćĺňĺ äŕ čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň íŕ ńčńňĺěŕňŕ ńč. Ěîë˙, îáúđíĺňĺ ńĺ "
-#~ "ęúě đúęîâîäńňâîňî çŕ\n"
-#~ "číôîđěŕöč˙. Íŕęđŕňęî, ŕęî íĺ çíŕĺňĺ ęŕęâî äŕ čçáĺđĺňĺ, îńňŕâĺňĺ ňîâŕ ďî "
-#~ "ďîäđŕçáčđŕíĺ.\n"
-
-#~ 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 čëč Microsoft Windows ěđĺćŕ)."
-
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Ěîćĺňĺ äŕ číńňŕëčđŕňĺ ęđčďňîăđŕôńęč ďŕęĺňč, ŕęî Číňĺđíĺň âđúçęŕňŕ âč ĺ\n"
-#~ "íŕňđîĺíŕ ęŕęňî ňđ˙áâŕ. Ďúđâî čçáĺđĺňĺ îăëĺäŕëĺí ńŕéň, îň ęúäĺňî čçęŕňĺ äŕ "
-#~ "čçňĺăë˙ňĺ\n"
-#~ "ďŕęĺňč, ńëĺä ňîâŕ ěŕđęčđŕéňĺ ďŕęĺňčňĺ çŕ číńňŕëčđŕíĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Îňáĺëĺćĺňĺ, ÷ĺ ňđ˙áâŕ äŕ čçáĺđĺňĺ îăëĺäŕëĺí ńŕéň č ęđčďňîăđŕôńęč ďŕęĺňč,\n"
-#~ "ńúîáđŕçíî âŕřĺňî çŕęîíîäŕňĺëńňâî."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "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"
-#~ "äŕ čçęëţ÷č í˙ęîč äđóăč ďŕęĺňč, ęîčňî çŕâčń˙ň îň íĺăî."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ root ďŕđîëŕňŕ íŕ Mandrake Linux ńčńňĺěŕňŕ.\n"
-#~ "Ďŕđîëŕňŕ ňđ˙áâŕ äŕ áúäĺ âúâĺäĺäŕ äâŕ ďúňč çŕ ďđîâĺđęŕ, ÷ĺ ďŕđîëčňĺ ńŕ "
-#~ "čäĺíňč÷íč.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root ĺ ńčńňĺěíč˙ň ŕäěčíčńňđŕňîđ čëč ĺäčíńňâĺíč˙ ďîňđĺáčňĺë, íŕ ęîéňî ĺ "
-#~ "ďîçâîëĺíî\n"
-#~ "äŕ ďîďđŕâ˙ íŕńňđîéâŕůčňĺ ôŕéëîâĺ. Çŕňîâŕ čçáĺđĺňĺ ďŕđîëŕňŕ âíčěŕňĺëíî.\n"
-#~ "Íĺďîçâîëĺíŕ óďîňđĺáŕ íŕ root ŕęŕóíňŕ ěîćĺ äŕ áúäĺ čçęëęţ÷čňĺëíî îďŕńíî çŕ "
-#~ "öĺëîńňňŕ\n"
-#~ "íŕ ńčńňĺěŕňŕ, äŕííčňĺ č č äđóăčňĺ ńčńňĺěč ńâúđçŕíč ęúě íĺ˙.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ďŕđîëŕňŕ ňđ˙áâŕ äŕ ĺ ńěĺńčöŕ îň ŕçáó÷íč ńčěâîëč č äŕ ĺ äúëăŕ íŕé-ěŕëęî 8\n"
-#~ "ńčěâîëŕ. Íčęîăŕ íĺ ňđ˙áâŕ äŕ ńč ˙ çŕďčńâŕňĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Íĺ ďđŕâĺňĺ ďŕđîëŕňŕ ďđĺęŕëĺíî äúëăŕ čëč ńëîćíŕ, âúďđĺęč ňîâŕ: ňđ˙áâŕ äŕ "
-#~ "ěîćĺňĺ\n"
-#~ "äŕ ˙ çŕďîěíčňĺ áĺç ěíîăî óńčëč˙."
-
-#~ 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 ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ čçáĺđĺňĺ í˙ęîč äîďúëíčňĺëíč îďöčč çŕ ńčńňĺěŕňŕ ńč.\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)."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Ńĺăŕ ěîćĺňĺ äŕ ďîńî÷čňĺ âđĺěĺâŕňŕ çîíŕ ńďđ˙ěî ěĺńňîćčâĺĺíĺňî ńč."
-
-#~ 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"
-#~ "çŕ äŕ čçáĺđĺňĺ äđóă äđŕéâĺđ."
-
-#~ 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.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are installing on an Apple machine with a 1-button mouse, you "
-#~ "will\n"
-#~ "be given the opportunity to define some keyboard keys to emulate the 2nd\n"
-#~ "and 3rd mouse buttons. This will allow you to be able to access the "
-#~ "full\n"
-#~ "functionality of the mouse in both the Linux console and the X Window "
-#~ "GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have an ADB mouse, please select USB, as the Linux kernel will "
-#~ "take\n"
-#~ "care of mapping your mouse hardware correctly."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ čçďđîáâŕňĺ ěčřęŕňŕ ńč. Čçďîëçâŕéňĺ áóňîíčňĺ č ęîëĺëöĺňî, "
-#~ "çŕ\n"
-#~ "äŕ ďđîâĺđčäŕ äŕëč íŕńňđîéęčňĺ ńŕ íŕđĺä. Ŕęî íĺ ńŕ, öúęíĺňĺ íŕ \"Îňęŕç\", "
-#~ "çŕ\n"
-#~ "äŕ čçáĺđĺňĺ äđóă äđŕéâĺđ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî číńňŕëčđŕňĺ íŕ Apple ěŕřčíŕ ń ĺäíîáóňîííŕ ěčřęŕ, ůĺ čěŕňĺ âúçěîćíîńň "
-#~ "äŕ\n"
-#~ "îďđĺäĺëčňĺ ęëŕâčřč îň ęëŕâčŕňóđŕňŕ, äŕ ńčěóëčđŕň 2-đč č 3-ňč áóňîí íŕ\n"
-#~ "ěčřęŕňŕ. Ňîâŕ ůĺ âč äŕäĺ äîńňúď äî ďúëíŕňŕ ôóíęöčîíŕëíîńň íŕ ěčřęŕňŕ â "
-#~ "Linux\n"
-#~ "ęîíçîëŕňŕ, č â X Windows GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî čěŕňĺ ADB ěčřęŕ, ěîë˙, čçáĺđĺňĺ USB, ňúé ęŕňî Linux ˙äđîňî ůĺ ńĺ "
-#~ "ďîăđčćč\n"
-#~ "äŕ čçďîëçâŕ ěčřęŕňŕ ęŕęňî ňđ˙áâŕ."
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "Ěîćĺňĺ äŕ îďđĺäĺëčňĺ íŕďđŕâî URI çŕ äîńňúď äî ďđčíňĺđŕ ń CUPS."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"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 ŕäđĺń: ŕęî íĺ çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, "
-#~ "ďîďčňŕéňĺ ěđĺćîâčĺ ńč ŕäěčíčńňđŕňîđ.\n"
-#~ " Íĺ ňđ˙áâŕ äŕ âúâĺćäŕňĺ IP ŕäđĺń, ŕęî čçáĺđĺňĺ îďöč˙ňŕ \"Ŕâňîěŕňč÷íî IP"
-#~ "\", ďî-äîëó.\n"
-#~ "\n"
-#~ " * Ěđĺćîâŕ ěŕńęŕ: \"255.255.255.0\" îáčęíîâĺííî ĺ äîáúđ čçáîđ. Ŕęî íĺ "
-#~ "çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, ďîďčňŕéňĺ ěđĺćîâč˙ ńč "
-#~ "ŕäěčíčńňđŕňîđ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ŕâňîěŕňč÷íî IP: Ŕęî ěđĺćŕňŕ âč čçďîëçâŕ BOOTP čëč DHCP ďđîňîęîë, "
-#~ "čçáĺđĺňĺ ňŕçč îďöč˙. Ŕęî ĺ čçáĺđŕíŕ, íĺ ńĺ íóćäŕĺňĺ\n"
-#~ " îň ńňîéíîńň çŕ \"IP ŕäđĺń\". Ŕęî íĺ çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî "
-#~ "ňđ˙áâŕ äŕ âúâĺäĺňĺ, ďîďčňŕéňĺ ěđĺćîâč˙ ńč ŕäěčíčńňđŕňîđ."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ ńúçäŕäĺňĺ ĺäčí čëč ďîâĺ÷ĺ \"îáčęíîâĺíč\" ďîňđĺáčňĺëńęč\n"
-#~ "ŕęŕóíňč, ęŕňî ďđîňčâîďîëîćíîńň íŕ \"ďđčâčëĺăčđîâŕíč˙\" ďîňđĺáčňĺëńęč\n"
-#~ "ŕęŕóíň \"root\". Ěîćĺňĺ äŕ ńúçäŕäĺňĺ ďî ĺäčí čëč ďîâĺ÷ĺ çŕ âńĺęč, ęîéňî\n"
-#~ "áčőňĺ čńęŕëč äŕ ďîëçâŕ ęîěďţňúđŕ âč. Îňáĺëĺćĺňĺ ÷ĺ âńĺęč ŕęŕóíň ůĺ čěŕ\n"
-#~ "ńâîčňĺ ďđĺäďî÷čňŕíč˙ (ăđŕôč÷íŕ ńđĺäŕ, ďđîăđŕěíč íŕńňđîéęč č ň.í.)\n"
-#~ "č äŕ íŕńňđîč ńâî˙ňŕ \"Home\" äčđĺęňîđč˙, ęúäĺňî äŕ çŕďčńâŕ ňĺçč\n"
-#~ "ńâîč ďđĺäďî÷čňŕíč˙.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ďúđâî ńúçäŕéňĺ ŕęŕóíň çŕ ńĺáĺ ńč. Äŕćĺ č äŕ ńňĺ ĺäčíńňâĺíč˙ň ďîňđĺáčňĺë,\n"
-#~ "čçďîëçâŕíĺňî íŕ ŕäěčíčńňđŕňîđńęč˙ ŕęŕóíň çŕ âńĺęčäíĺâíŕ óďîňđĺáŕ ĺ "
-#~ "îďŕńíî.\n"
-#~ "\n"
-#~ "\n"
-#~ "Çŕňîâŕ âëčçŕéňĺ ń ďîňđĺáčňĺëńęč˙ ńč ŕęŕóíň â ńčńňĺěŕňŕ č, ńŕěî ŕęî âč ńĺ\n"
-#~ "íŕëîćč, čçďîëçâŕéňĺ ŕäěčíčńňđŕňîđńęč˙ ŕęŕóíň."
-
-#~ 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 "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ dialup îďöččňĺ. Ŕęî íĺ çíŕĺňĺ\n"
-#~ "čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, ďîäőîä˙ůŕ číôîđěŕöč˙ ěîćĺ äŕ áúäĺ "
-#~ "âçĺňŕ\n"
-#~ "îň Číňĺđíĺň äîńňŕâ÷čęŕ âč. Ŕęî íĺ âúâĺäĺňĺ číôîđěŕöč˙ çŕ DNS (name "
-#~ "server)\n"
-#~ "ňóę, ňŕçč číôîđěŕöč˙ ůĺ áúäĺ âçĺňŕ Číňĺđíĺň äîńňŕâ÷čęŕ âč ďî âđĺěĺ íŕ\n"
-#~ "ńâúđçâŕíĺ."
-
-#~ 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 ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ îďöččňĺ çŕ íŕáčđŕíĺ. Ŕęî íĺ ńňĺ ńčăóđíč,\n"
-#~ "ďđŕâčëíŕ číôîđěŕöč˙ ěîćĺňĺ äŕ ďîëó÷čňĺ îň Číňĺđíĺň äîńňŕâ÷čęŕ ńč."
-
-#~ 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 ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ čěĺňî íŕ őîńňŕ ńč. Ŕęî íĺ çíŕĺňĺ\n"
-#~ "čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, ďîďčňŕéňĺ ěđĺćîâč˙ ńč ŕäěčíčńňđŕňîđ."
-
-#~ 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"
-#~ "íĺ çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, îńňŕâĺňĺ ăî ďđŕçíî."
-
-#~ 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 ""
-#~ "Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ čěĺňî íŕ őîńňŕ ńč, ŕęî âč ňđ˙áâŕ. Ŕęî íĺ\n"
-#~ "çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî ňđ˙áâŕ äŕ âúâĺäĺňĺ, ń ďđŕâčëíŕ "
-#~ "číôîđěŕöč˙\n"
-#~ "ěîćĺňĺ äŕ ńĺ ńäîáčĺňĺ îň Číňĺđíĺň äîńňŕâ÷čęŕ ńč."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺňĺ ńŕ ěŕđęčđŕňĺ ăđóďŕ ďŕęĺňč, ęî˙ňî čńęŕňĺ äŕ\n"
-#~ "číńňŕëčđŕňĺ čëč îáíîâčňĺ.\n"
-#~ "\n"
-#~ "DrakX ůĺ ďđîâĺđč äŕëč čěŕňĺ äîńňŕňú÷íî ě˙ńňî çŕ číńňŕëčđŕíĺňî čě. Ŕęî "
-#~ "í˙ěŕňĺ,\n"
-#~ "ňîé ůĺ âč ďđĺäóďđĺäč çŕ ňîâŕ. Ŕęî čńęŕňĺ äŕ ďđîäúëćčňĺ âúďđĺęč ňîâŕ, ůĺ "
-#~ "ďđîäúëćč\n"
-#~ "číńňŕëŕöč˙ňŕ íŕ âńč÷ęč ěŕđęčđŕíč ăđóďč, íî ůĺ ďđîďóńíĺ ďî-ěŕëîâŕćíčňĺ "
-#~ "ďŕęĺňč.\n"
-#~ "Â äúíîňî íŕ ńďčńúęŕ ěîćĺňĺ äŕ ěŕđęčđŕňĺ îďöč˙ňŕ \"Číäčâčäóŕëĺí čçáîđ íŕ "
-#~ "ďŕęĺňč\";\n"
-#~ "â ňîçč ńëó÷ŕé, ůĺ ňđ˙áâŕ äŕ îáőîäčňĺ ďîâĺ÷ĺ îň 1000 ďŕęĺňŕ ..."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "\t* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ "\t at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ "\t will then have a complete collection of software installed in order "
-#~ "to compile, debug and format source code,\n"
-#~ "\t or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ "\t SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ "\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Ńĺăŕ ňđ˙áâŕ äŕ îďđĺäĺëčňĺ ďđĺäíŕçíŕ÷ĺíčĺňî íŕ ěŕřčíŕňŕ ńč. Âúçěîćíîńňčňĺ "
-#~ "ńŕ:\n"
-#~ "\n"
-#~ "\t* Đŕáîňíŕ ńňŕíöč˙: ňîâŕ ĺ čäĺŕëíč˙ čçáîđ, ŕęî âúçíŕěĺđ˙âŕňĺ äŕ "
-#~ "čçďîëçâŕňĺ ěŕřčíŕňŕ ńč ăëŕâíî çŕ ĺćĺäíĺâíŕ óďîňđĺáŕ â\n"
-#~ "\t îôčńŕ čëč ó äîěŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Đŕçđŕáîňęŕ: ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ ěŕřčíŕňŕ ńč ăëŕâíî çŕ "
-#~ "đŕçđŕáîňęŕ íŕ ńîôóĺđ, ňîâŕ ĺ äîáúđ čçáîđ.\n"
-#~ "\t Ňîăŕâŕ ůĺ čěŕňĺ číńňŕëčđŕí ďúëĺí íŕáîđ îň ńîôňóĺđ, çŕ äŕ ęîěďčëčđŕňĺ, "
-#~ "îňęđčâŕňĺ áúăîâĺ č ôîđěŕňčđŕňĺ čçőîäĺí ęîä,\n"
-#~ "\t čëč äŕ ńúçäŕâŕňĺ ńîôóĺđíč ďŕęĺňč.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Ńúđâúđ: ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ ňŕçč ěŕřčíŕ çŕ ńúđâúđ, ňîâŕ ĺ "
-#~ "äîáđč˙ň čçáîđ. Âęëţ÷âŕ ôŕéëîâ ńúđâúđ\n"
-#~ "\t (NFS čëč SMB), ńúđâúđ çŕ ďĺ÷ŕň (Unix-ńęč čëč Microsoft Windows-ńęč), "
-#~ "ńúđâúđ çŕ ŕóňîđčçŕöč˙ (NIS), ńúđâúđ çŕ\n"
-#~ "\t áŕçč-äŕííč č ň.í.. Ęŕňî ňŕęúâ, íĺ î÷ŕęâŕéňĺ číńňŕëčđŕíč ęŕęâčňî č äŕ "
-#~ "ĺ řŕđčíčč (KDE, GNOME, č ň.í.)."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Ńĺăŕ ňđ˙áâŕ äŕ îďđĺäĺëčňĺ ďđĺäíŕçíŕ÷ĺíčĺňî íŕ ěŕřčíŕňŕ ńč. Âúçěîćíîńňčňĺ "
-#~ "ńŕ:\n"
-#~ "\n"
-#~ "* Đŕáîňíŕ ńňŕíöč˙: ňîâŕ ĺ čäĺŕëíč˙ čçáîđ, ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ "
-#~ "ěŕřčíŕňŕ ńč ăëŕâíî çŕ ĺćĺäíĺâíŕ óďîňđĺáŕ â\n"
-#~ " îôčńŕ čëč ó äîěŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Đŕçđŕáîňęŕ: ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ ěŕřčíŕňŕ ńč ăëŕâíî çŕ "
-#~ "đŕçđŕáîňęŕ íŕ ńîôóĺđ, ňîâŕ ĺ äîáúđ čçáîđ.\n"
-#~ " Ňîăŕâŕ ůĺ čěŕňĺ číńňŕëčđŕí ďúëĺí íŕáîđ îň ńîôňóĺđ, çŕ äŕ ęîěďčëčđŕňĺ, "
-#~ "îňęđčâŕňĺ áúăîâĺ č ôîđěŕňčđŕňĺ čçőîäĺí ęîä,\n"
-#~ " čëč äŕ ńúçäŕâŕňĺ ńîôóĺđíč ďŕęĺňč.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Ńúđâúđ: ŕęî âúçíŕěĺđ˙âŕňĺ äŕ čçďîëçâŕňĺ ňŕçč ěŕřčíŕ çŕ ńúđâúđ, ňîâŕ ĺ "
-#~ "äîáđč˙ň čçáîđ. Âęëţ÷âŕ ôŕéëîâ ńúđâúđ\n"
-#~ " (NFS čëč SMB), ńúđâúđ çŕ ďĺ÷ŕň (Unix-ńęč čëč Microsoft Windows-ńęč), "
-#~ "ńúđâúđ çŕ ŕóňîđčçŕöč˙ (NIS), ńúđâúđ çŕ\n"
-#~ " áŕçč-äŕííč č ň.í.. Ęŕňî ňŕęúâ, íĺ î÷ŕęâŕéňĺ číńňŕëčđŕíč ęŕęâčňî č äŕ ĺ "
-#~ "řŕđčíčč (KDE, GNOME, č ň.í.)."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Ńĺăŕ ěîćĺňĺ äŕ čçáĺđĺňĺ ďđčíňĺđ îň ńďčńúęŕ ďî-ăîđĺ."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Ňđ˙áâŕ äŕ ďđčĺěĺňĺ óńëîâč˙ňŕ íŕ ëčöĺíçŕ ďî-ăîđĺ, çŕ äŕ ďđîäúëćč "
-#~ "číńňŕëŕöč˙ňŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Öúęíĺňĺ \"Ďđčĺěč\", ŕęî ńňĺ ńúăëŕńíč ń óńëîâč˙ňŕ ěó.\n"
-#~ "\n"
-#~ "\n"
-#~ "Öúęíĺňĺ \"Îňęŕćč\", ŕęî íĺ ńňĺ ńúăëŕńíč ń óńëîâč˙ňŕ ěó. Číńňŕëŕöč˙ňŕ ůĺ "
-#~ "ďđčęëţ÷č áĺç ďđîě˙íŕ íŕ íŕńňî˙ůŕňŕ\n"
-#~ "íŕńňđîéęŕ."
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Ňđ˙áâŕ äŕ âúâĺäĺňĺ í˙ęŕęâŕ číôîđěŕöč˙ ňóę.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Čěĺ íŕ ďđčíňĺđ: ďî ďîäđŕçáčđŕíĺ, ďĺ÷ŕňíč˙ spooler čçďîëçâŕ \"lp\" "
-#~ "ęŕňî čěĺ íŕ ďđčíňĺđ. Ňŕęŕ ÷ĺ ňđ˙áâŕ äŕ čěŕňĺ\n"
-#~ "ďđčíňĺđ íŕđĺ÷ĺí \"lp\".\n"
-#~ " Ŕęî čěŕňĺ ńŕěî ĺäčí ďđčíňĺđ, ěîćĺňĺ äŕ čçďîëçâŕňĺ í˙ęîëęî čěĺíŕ çŕ "
-#~ "íĺăî. Ďđîńňî ňđ˙áâŕ äŕ ăč îňäĺëčňĺ ń pipe\n"
-#~ " ńčěâîëŕ (\"|\"). Ňŕęŕ ÷ĺ, ŕęî ďđĺäďî÷čňŕňĺ ďî-ńěčńëĺíî čěĺ, ěîćĺňĺ "
-#~ "äŕ ăî ńëîćčňĺ ďúđâî, íŕďđ. \"My printer|lp\".\n"
-#~ " Ďđčíňĺđúň ńúäúđćŕů \"lp\" â čěĺňî(ŕňŕ) ńč, ůĺ ńĺ ďîëçâŕ ďî "
-#~ "ďîäđŕçáčđŕíĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Spool äčđĺęňîđč˙: ňîâŕ ĺ äčđĺęňîđč˙ňŕ, ęúäĺňî ńĺ ńúőđŕí˙âŕň đŕáîňčňĺ "
-#~ "çŕ ďĺ÷ŕň. Îńňŕâĺňĺ ńňîéíîńňňŕ\n"
-#~ " ďî ďîäđŕçáčđŕíĺ, îńâĺí ŕęî íĺ çíŕĺňĺ ęŕęâî äŕ čçďîëçâŕňĺ\n"
-#~ "\n"
-#~ "\n"
-#~ " * Âđúçęŕ ęúě ďđčíňĺđ: Ŕęî ďđčíňĺđúň âč ĺ ôčçč÷ĺńęč ńâúđçŕí ęúě "
-#~ "ęîěďţňúđŕ âč, čçáĺđĺňĺ \"Ëîęŕëĺí ďđčíňĺđ\".\n"
-#~ " Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ íŕěčđŕů ńĺ íŕ îňäŕëĺ÷ĺíŕ Unix ěŕřčíŕ, "
-#~ "čçáĺđĺňĺ \"Îňäŕëĺ÷ĺí LPD ďđčíňĺđ\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ íŕěčđŕů ńĺ íŕ îňäŕëĺ÷ĺíŕ Microsoft "
-#~ "Windows ěŕřčíŕ (čëč íŕ Unix ěŕřčíŕ ďîëçâŕůŕ SMB\n"
-#~ " ďđîňîęîë), čçáĺđĺňĺ \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ íŕěčđŕů ńĺ íŕ NetWare ěđĺćŕ, čçáĺđĺňĺ "
-#~ "\"NetWare\".\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "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."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Ńčńňĺěŕňŕ âč ůĺ ńĺ đĺńňŕđňčđŕ.\n"
-#~ "\n"
-#~ "Ńëĺä ęŕňî đĺńňŕđňčđŕ, âŕřŕňŕ íîâŕ Mandrake Linux ńčńňĺěŕ ůĺ ńĺ çŕđĺäč\n"
-#~ "ŕâňîěŕňč÷íî. Ŕęî čńęŕňĺ äŕ ďóńíĺňĺ äđóăŕ ńúůĺńňâóâŕůŕ îďĺđŕöčîííŕ "
-#~ "ńčńňĺěŕ,\n"
-#~ "ďđî÷ĺňĺňĺ äîďúëíčňĺëíčňĺ číńňđóęöčč."
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "âńč÷ęč äŕííč âúđőó ň˙ő ůĺ áúäŕň çŕăóáĺíč"
-
-#~ 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"
-#~ "Ęŕňî ö˙ëî, íĺ î÷ŕęâŕéňĺ äŕ čçďîëçâŕňĺ ěŕřčíŕňŕ ńč çŕ íĺůî äđóăî, îńâĺí çŕ "
-#~ "ńúđâúđ.Á˙őňĺ ďđĺäóďđĺäĺí."
-
-#~ msgid "cannot fork: "
-#~ msgstr "íĺ ěîăŕ äŕ ńĺ îňäĺë˙: "
-
-#~ msgid "default"
-#~ msgstr "ďî ďîäđŕçáčđŕíĺ"
-
-#~ msgid "don't use pppoe"
-#~ msgstr "íĺ čçďîëçâŕé PPPOE"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr "Őîđčçîíňŕëíŕ äîáđĺ-čçăëĺćäŕůŕ aurora"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (âŕćĺí)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (äîáúđ)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (ěíîăî äîáúđ)"
-
-#~ msgid "loopback"
-#~ msgstr "loopback"
-
-#~ msgid "not connected"
-#~ msgstr "íĺ ńâúđçŕí"
-
-#~ msgid "received: "
-#~ msgstr "ďîëó÷ĺíč: "
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake ĺ â đĺćčě íŕ ``ěŕëęî ďŕěĺň''.\n"
-#~ "Ůĺ ďóńíŕ îňíîâî rpmdrake, çŕ äŕ đŕçđĺřŕ ňúđńĺíĺňî íŕ ôŕéëîâĺ"
-
-#~ msgid "sent: "
-#~ msgstr "čçďđŕňĺíč: "
-
-#~ msgid "using module"
-#~ msgstr "čçďîëçâŕíĺ íŕ ěîäóë"
-
-#~ msgid "vertical traditional aurora"
-#~ msgstr "Îáčęíîâĺíŕ âĺđňčęŕëíŕ aurora"
-
-#~ msgid "yellow pages"
-#~ msgstr "ćúëňč ńňđŕíčöč"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
deleted file mode 100644
index f210d9039..000000000
--- a/perl-install/share/po/br.po
+++ /dev/null
@@ -1,12284 +0,0 @@
-# DrakX e Brezhoneg.
-# Copyright (C) 1999-2002 MandrakeSoft
-# Thierry Vignaud <tvignaud@mandrakesoft.com>, 1999-2002
-# JaĂą-Mai Drapier <jan-mai.drapier@mail.dotcom.fr>, 1999-2000
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX 8.2\n"
-"POT-Creation-Date: 2002-06-13 15:54+0200\n"
-"PO-Revision-Date: 2002-01-28 22:41GMT\n"
-"Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
-"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Configure all heads independently"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:244
-msgid "Use Xinerama extension"
-msgstr "Implijit Xinemara"
-
-#: ../../Xconfigurator.pm_.c:247
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Kefluniadur hep ken kartenn \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:250
-#, fuzzy
-msgid "Multi-head configuration"
-msgstr "o lenn ar c'hefluniadur"
-
-#: ../../Xconfigurator.pm_.c:251
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Graphics card"
-msgstr "Kartenn c'hrafek"
-
-#: ../../Xconfigurator.pm_.c:263
-msgid "Select a graphics card"
-msgstr "Diuzit ur gartenn c'hrafek"
-
-#: ../../Xconfigurator.pm_.c:287
-msgid "Choose a X server"
-msgstr "Dibabit ur servijer X"
-
-#: ../../Xconfigurator.pm_.c:287
-msgid "X server"
-msgstr "servijer X"
-
-#: ../../Xconfigurator.pm_.c:294
-msgid "Choose a X driver"
-msgstr "Dibabit ur sturier X"
-
-#: ../../Xconfigurator.pm_.c:294
-msgid "X driver"
-msgstr "Sturier X"
-
-#: ../../Xconfigurator.pm_.c:361 ../../Xconfigurator.pm_.c:367
-#: ../../Xconfigurator.pm_.c:417 ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:364
-#, fuzzy
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Pe seurt enmont a vennit ouzhpennaĂą"
-
-#: ../../Xconfigurator.pm_.c:375
-#, 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:377 ../../Xconfigurator.pm_.c:410
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:379 ../../Xconfigurator.pm_.c:412
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s gant 3D"
-
-#: ../../Xconfigurator.pm_.c:387 ../../Xconfigurator.pm_.c:401
-#, 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:389 ../../Xconfigurator.pm_.c:403
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:398
-#, 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:418
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:422
-msgid "XFree configuration"
-msgstr "Staliadur XFree86"
-
-#: ../../Xconfigurator.pm_.c:497
-msgid "Select the memory size of your graphics card"
-msgstr "Diuzit ment memor ho kartenn c'hrafek"
-
-#: ../../Xconfigurator.pm_.c:551
-msgid "Choose options for server"
-msgstr "Dibabit dibarzhoĂš ar servijer"
-
-#: ../../Xconfigurator.pm_.c:575
-msgid "Choose a monitor"
-msgstr "Dibabit ur skramm"
-
-#: ../../Xconfigurator.pm_.c:575
-msgid "Monitor"
-msgstr "Skramm"
-
-#: ../../Xconfigurator.pm_.c:578
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"An div arventenn dreistpouezus a zo ar feur freskaat a-serzh, da lavaret eo "
-"ar\n"
-"feur ma vez freskaet ar skramm a-bezh, ha pouezusuc'h c'hoazh ar feur "
-"kempredaĂą\n"
-"a-led, da lavaret eo ar feur ma vez diskwelet linennoĂš skubaĂą.\n"
-"\n"
-"HOLLBOUEZHUS eo deoc'h na spisaat ur seurt skramm gant ur feur kempredaĂą\n"
-"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:585
-msgid "Horizontal refresh rate"
-msgstr "Feur freskaat a-led"
-
-#: ../../Xconfigurator.pm_.c:586
-msgid "Vertical refresh rate"
-msgstr "Feur freskaat a-serzh"
-
-#: ../../Xconfigurator.pm_.c:623
-msgid "Monitor not configured"
-msgstr "Skramm ket kefluniet"
-
-#: ../../Xconfigurator.pm_.c:626
-msgid "Graphics card not configured yet"
-msgstr "Kartenn c'hrafek ket kefluniet c'hoazh"
-
-#: ../../Xconfigurator.pm_.c:629
-msgid "Resolutions not chosen yet"
-msgstr "SpisterioĂš ket dibabet c'hoazh"
-
-#: ../../Xconfigurator.pm_.c:647
-msgid "Do you want to test the configuration?"
-msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-
-#: ../../Xconfigurator.pm_.c:651
-#, fuzzy
-msgid "Warning: testing this graphics card may freeze your computer"
-msgstr "Da ziwall : arvarus eo amprouiù ar gartenn c'hrafek-maù"
-
-#: ../../Xconfigurator.pm_.c:654
-msgid "Test of the configuration"
-msgstr "AmprouiĂą ar c'hefluniadur"
-
-#: ../../Xconfigurator.pm_.c:693 ../../Xconfigurator.pm_.c:705
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"klaskit kemmaĂą arventennoĂš 'zo"
-
-#: ../../Xconfigurator.pm_.c:693 ../../Xconfigurator.pm_.c:705
-msgid "An error occurred:"
-msgstr "C'hoarvezet eo ur fazi :"
-
-#: ../../Xconfigurator.pm_.c:734
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Kuitaat e %d eilenn"
-
-#: ../../Xconfigurator.pm_.c:745
-msgid "Is this the correct setting?"
-msgstr "Ha reizh eo ar c'hefluniadur ?"
-
-#: ../../Xconfigurator.pm_.c:754
-msgid "An error occurred, try to change some parameters"
-msgstr "C'hoarvezet eo ur fazi, klaskit kemmaĂą arventennoĂš 'zo"
-
-#: ../../Xconfigurator.pm_.c:825
-msgid "Resolution"
-msgstr "Spister"
-
-#: ../../Xconfigurator.pm_.c:877
-msgid "Choose the resolution and the color depth"
-msgstr "Dibabit ar spister ha donder al livioĂš"
-
-#: ../../Xconfigurator.pm_.c:879
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Kartenn c'hrafek : %s"
-
-#: ../../Xconfigurator.pm_.c:880
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servijer XFree86 : %s"
-
-#: ../../Xconfigurator.pm_.c:894 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr "Dilec'hiaĂą"
-
-#: ../../Xconfigurator.pm_.c:894 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:701
-#: ../../my_gtk.pm_.c:1034 ../../my_gtk.pm_.c:1056
-#: ../../standalone/drakbackup_.c:2288 ../../standalone/drakbackup_.c:2359
-#: ../../standalone/drakbackup_.c:2375
-msgid "Ok"
-msgstr "Mat eo"
-
-#: ../../Xconfigurator.pm_.c:896 ../../network/netconnect.pm_.c:173
-#: ../../printerdrake.pm_.c:2473 ../../standalone/drakfloppy_.c:146
-#: ../../standalone/draknet_.c:275 ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mod mailh"
-
-#: ../../Xconfigurator.pm_.c:897
-msgid "Show all"
-msgstr "Diskouez pep tra"
-
-#: ../../Xconfigurator.pm_.c:942
-msgid "Resolutions"
-msgstr "SpisterioĂš"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Reizhadur ar stokellaoueg : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Seurt logodenn : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Trobarzhell al logodenn : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Skramm : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "KempredA-led ar skramm : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "FreskA-serzh ar skramm : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1518
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Kartenn c'hrafek : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Graphics card identification: %s\n"
-msgstr "Anavezoud kartenn c'hrafek : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Memor c'hrafek : %s ko\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Donder liv: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Spister: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1525
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Servijer XFree86 : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1526
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Sturier XFree86 : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1544
-msgid "Preparing X-Window configuration"
-msgstr "O prientiĂą kefluniadur X-Window"
-
-#: ../../Xconfigurator.pm_.c:1564
-msgid "What do you want to do?"
-msgstr "Petra a vennit ober ? "
-
-#: ../../Xconfigurator.pm_.c:1569
-msgid "Change Monitor"
-msgstr "KemmaĂą ar skramm"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Graphics card"
-msgstr "KemmaĂą ar gartenn c'hrafek"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Change Server options"
-msgstr "KemmaĂą dibarzhoĂš ar servijer"
-
-#: ../../Xconfigurator.pm_.c:1574
-msgid "Change Resolution"
-msgstr "KemmaĂą ar spister"
-
-#: ../../Xconfigurator.pm_.c:1575
-msgid "Show information"
-msgstr "Diskouez titouroĂš"
-
-#: ../../Xconfigurator.pm_.c:1576
-msgid "Test again"
-msgstr "AmprouiĂą adarre"
-
-#: ../../Xconfigurator.pm_.c:1577 ../../printerdrake.pm_.c:2476
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Kuitaat"
-
-#: ../../Xconfigurator.pm_.c:1585
-#, fuzzy, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr "Derc'hel ar c'hefluniadur IP o ren"
-
-#: ../../Xconfigurator.pm_.c:1606
-msgid "Graphical interface at startup"
-msgstr "X pa loc'her"
-
-#: ../../Xconfigurator.pm_.c:1607
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(XFree) upon booting.\n"
-"Would you like XFree to start when you reboot?"
-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:1613
-#, 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:1628
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 liv (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil liv (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil liv (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milion a livioĂš (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliard a livioĂš (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mo pe vuioc'h"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA standard, 640x480 da 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Gour-VGA, 800x600 da 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Kenglotus 8514, 1024x768 da 87 Hz pebeilet (800x600 ebet)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-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:133
-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:134
-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:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "G-VGA talm uhel, 1024x768 da 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-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:137
-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:138
-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:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Skramm a c'hell ober 1600x1200 da 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Skramm a c'hell ober 1600x1200 da 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Rann gentaĂą ar parzhadur loc'haĂą"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Rann gentaĂą ar bladenn (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Staliadur SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Pelec'h e mennit staliaĂą ar c'harger loc'haĂą ?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Staliadur LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO gant meuziad skrid"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO gant meuziad c'hrafek"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Loc'haĂą abaoe DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "DibarzhoĂš pennaĂą ar c'harger loc'haĂą"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "C'harger loc'haĂą da implijout"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Staliadur c'harger loc'haĂą"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Trobarzhell loc'haĂą"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ne da ket en-dro gant BIOSoĂš kozh)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Fetis"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "fetis"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Mod video"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Gedvezh kent loc'haĂą ar skeudenn dre ziouer"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1087 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:710 ../../printerdrake.pm_.c:808
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Tremenger"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1088
-msgid "Password (again)"
-msgstr "Tremenger (adarre)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Strishaat dibarzhoĂš al linenn urzhiaĂą"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "strishaat"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "SkaraĂą /tmp bep ma loc'her"
-
-#: ../../any.pm_.c:183
-#, 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:185
-msgid "Enable multi profiles"
-msgstr "Aotren lies trolinenn"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Roit ment ar memor vev e Mo"
-
-#: ../../any.pm_.c:191
-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:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1143
-#: ../../install_steps_interactive.pm_.c:1082
-msgid "Please try again"
-msgstr "Klaskit adarre mar plij"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1082
-msgid "The passwords do not match"
-msgstr "An tremegerioĂš ne glot ket"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr ""
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr ""
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr ""
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "RK dre ziouer"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Setu da heul an enmontoĂš liesseurt.\n"
-"Gallout a rit ouzhpennaĂą lod pe gemmaĂą a re a zo."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:741
-#: ../../standalone/drakbackup_.c:850 ../../standalone/drakfont_.c:790
-#: ../../standalone/drakfont_.c:827
-msgid "Add"
-msgstr "OuzhpennaĂą"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Graet"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "KemmaĂą"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Pe seurt enmont a vennit ouzhpennaĂą"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:884
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "ReizhiadoĂš (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "ReizhiadoĂš (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "ReizhiadoĂš (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Skeudenn"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Gwrizienn"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "OuzhpennaĂą"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Lenn-skrivaĂą "
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Taolenn"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Arvarus"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Skridennad"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Dre ziouer"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Ment an Initrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "N'ev ket video"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Dilemel an enmont"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Berzet eo ar skridennadoĂš goullo"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Ret eo deoc'h kaout ur parzhadur disloaĂą"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "En implij eo ar skridennad-se endeo"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Kavet etrefas %s %s"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Hag un all hoc'h eus ?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Hag un etrefas %s bennak a zo ganeoc'h ?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1033
-msgid "No"
-msgstr "Ket"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1033
-msgid "Yes"
-msgstr "Ya"
-
-#: ../../any.pm_.c:661
-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:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "O staliaĂą ur sturier evit kartenn %s %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(mollad %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Pe sturier %s a zlefen amprouiĂą ?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"E degouezhoĂš 'zo, ar sturier %s en deus ezhomm titouroĂš ouzhpenn evit mont\n"
-"en-dro reizh, daoust ma da en-dro mat hepto peurvuiaĂą. Ha mennout a rit "
-"spisaat\n"
-"dibaboĂš ouzphenn evitaĂą, pe aotren d'ar sturier amprouiĂą ho penvek evit\n"
-"an titouroĂš en deus ezhomm ? A-wechoĂš, amprouiĂą a c'hell sac'haĂą un "
-"urzhiataer,\n"
-"hogen ne raio reuz ebet."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "EmbrouiĂą"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Spisait dibarzhoĂš"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"BremaĂą e c'hellit pourvezaĂą e zibarzhoĂš d'ar mollad %s.\n"
-"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboĂš.\n"
-"Da skouer, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "DibarzhoÚ ar mollad :"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"KargaĂą ar mollad %s a zo sac'het.\n"
-"Mennout a rit klask adarre gant arventennoĂš all ?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(ouzhpennet %s endeo)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Re eeun eo an tremeger"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Roit un anv arveriad mar plij"
-
-#: ../../any.pm_.c:776
-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:777
-msgid "This user name is already added"
-msgstr "En implij eo an anv arveriad-se endeo"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "OuzhpennaĂą un arveriad"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Skrivit un arveriad\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Aotren an arveriad"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Anv gwirion"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:709
-#: ../../printerdrake.pm_.c:807
-msgid "User name"
-msgstr "Anv arveriad"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Arlun"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Autologin"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-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:833
-msgid "Choose the default user:"
-msgstr "Dibabit ar arveriad dre ziouer"
-
-#: ../../any.pm_.c:834
-#, fuzzy
-msgid "Choose the window manager to run:"
-msgstr "Dibabit ar benveg a vennit staliaĂą"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Diuzit ar yezh da implijout, mar plij."
-
-#: ../../any.pm_.c:851
-msgid ""
-"Mandrake Linux can support multiple languages. Select\n"
-"the languages you would like to install. They will be available\n"
-"when your installation is complete and you restart your system."
-msgstr "Gallout a rit dibab yezhoĂš all hag a vo hegerz goude staliaĂą"
-
-#: ../../any.pm_.c:865 ../../install_steps_interactive.pm_.c:689
-#: ../../standalone/drakxtv_.c:78
-msgid "All"
-msgstr "An holl"
-
-#: ../../any.pm_.c:957
-msgid "Allow all users"
-msgstr "AotreiĂą an holl dud"
-
-#: ../../any.pm_.c:957
-msgid "Custom"
-msgstr "PersonelaĂą"
-
-#: ../../any.pm_.c:957
-msgid "No sharing"
-msgstr "N'ev ket lodaĂą"
-
-#: ../../any.pm_.c:967 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"Bremanaet e tle bezaĂą ar pabak-maĂą\n"
-"Ha sur oc'h e mennit e ziuzaĂą ?"
-
-#: ../../any.pm_.c:970
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr ""
-
-#: ../../any.pm_.c:978 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:984
-msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:998 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:564
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:702 ../../my_gtk.pm_.c:705 ../../my_gtk.pm_.c:1034
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1588
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2279 ../../standalone/drakbackup_.c:2300
-#: ../../standalone/drakbackup_.c:2321 ../../standalone/drakbackup_.c:2339
-#: ../../standalone/drakbackup_.c:2387 ../../standalone/drakbackup_.c:2407
-#: ../../standalone/drakbackup_.c:2426 ../../standalone/drakfloppy_.c:235
-#: ../../standalone/drakfloppy_.c:384 ../../standalone/drakfont_.c:768
-#: ../../standalone/drakgw_.c:598 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:527
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "NullaĂą"
-
-#: ../../any.pm_.c:998
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:1000
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1037
-msgid "Welcome To Crackers"
-msgstr "Bezit deuet mat, preizherien !"
-
-#: ../../any.pm_.c:1038
-msgid "Poor"
-msgstr "Paour"
-
-#: ../../any.pm_.c:1039 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Skouer"
-
-#: ../../any.pm_.c:1040
-msgid "High"
-msgstr "Uhel"
-
-#: ../../any.pm_.c:1041
-#, fuzzy
-msgid "Higher"
-msgstr "Uhel"
-
-#: ../../any.pm_.c:1042
-msgid "Paranoid"
-msgstr "Ankeniet"
-
-#: ../../any.pm_.c:1045
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Ret eo implijout al live-maĂą gant evezh. Ober a ra d'ho reizhiad bezaĂą\n"
-"aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un ardivink\n"
-"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziĂą dre dremenger."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Gweredekaet eo bremaĂą an tremenger, hogen dierbedet eo c'hoazh an implij en "
-"ur rouedad"
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Setu al live surentez standard a vez erbedet evit un urzhiataer a vo "
-"implijet\n"
-"evit kevreaĂą evel arval ouzh ar Genrouedad. BremaĂą ez eus gwiriadennoĂš "
-"surentez."
-
-#: ../../any.pm_.c:1050
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1051
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which can "
-"accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Gant al live surentez-maĂą e teu posupl implijout ar reizhiad-maĂą evel ur "
-"servijer.\n"
-"Uhel a-walc'h eo bremaĂą ar surentez evit implijout ar reizhiad evel ur "
-"servijer\n"
-"o tigemer kevreadennoĂš a-berzh arvaloĂš niverus."
-
-#: ../../any.pm_.c:1054
-#, fuzzy
-msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
-msgstr ""
-"Kemer a reomp arc'hweloĂš al live 4, hogen bremaĂą eo peurserret ar reizhiad.\n"
-"Arc'hweloĂš surentez a zo en o muiaĂą"
-
-#: ../../any.pm_.c:1059
-msgid "Please choose the desired security level."
-msgstr "Dibabit al live surentez"
-
-#: ../../any.pm_.c:1062
-msgid "Security level"
-msgstr "Live surentez"
-
-#: ../../any.pm_.c:1064
-msgid "Use libsafe for servers"
-msgstr "Implijit libsafe gant ar servijer"
-
-#: ../../any.pm_.c:1065
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-#: ../../any.pm_.c:1067
-msgid "Security user (login or email)"
-msgstr ""
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:354
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Degemer mat e %s, an dibaber reizhiad oberian~ !\n"
-"\n"
-"Dibabit an dibaber reizhiad pe\n"
-"gortozit %d eilennoĂš\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:910
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Degemer mat e GRUB an dibaber reizhiad oberia¤ !"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:913
-#, 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"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:916
-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"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:919
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "urzhiado— kent loc'ha¤, pe 'c' evit ul linenn-urzhia¤."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:922
-#, 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:926
-msgid "not enough room in /boot"
-msgstr ""
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1026
-msgid "Desktop"
-msgstr "Gorretaol"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1028
-msgid "Start Menu"
-msgstr "Meuziad LaĂąsaĂą"
-
-#: ../../bootloader.pm_.c:1047
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Pelec'h e mennit staliaĂą ar c'harger loc'haĂą ?"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "N'ev ket skoazell.\n"
-
-#: ../../bootlook.pm_.c:62
-#, fuzzy
-msgid "Boot Style Configuration"
-msgstr "Kefluniadur goude staliaĂą"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
-#: ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Restr"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
-#: ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Restr/_Kuitaat"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
-#: ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr ""
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:92
-#, fuzzy
-msgid "NewStyle Monitor"
-msgstr "Skramm"
-
-#: ../../bootlook.pm_.c:93
-#, fuzzy
-msgid "Traditional Monitor"
-msgstr "KemmaĂą ar skramm"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr ""
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Lilo/grub mode"
-msgstr "Anv domani"
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Yaboot mode"
-msgstr "Trobarzhell loc'haĂą"
-
-#: ../../bootlook.pm_.c:104
-#, fuzzy, c-format
-msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr "Lugerezh ar voullerez"
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1457
-#: ../../standalone/drakbackup_.c:1468 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "KefluniaĂą"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr ""
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the graphical environment when your system starts"
-msgstr ""
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr ""
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2431 ../../standalone/drakbackup_.c:3335
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:537
-#: ../../standalone/drakfont_.c:658 ../../standalone/drakfont_.c:721
-#: ../../standalone/drakfont_.c:766 ../../standalone/draknet_.c:109
-#: ../../standalone/draknet_.c:141 ../../standalone/draknet_.c:297
-#: ../../standalone/draknet_.c:436 ../../standalone/draknet_.c:522
-#: ../../standalone/draknet_.c:565 ../../standalone/draknet_.c:666
-#: ../../standalone/logdrake_.c:520
-msgid "OK"
-msgstr "YA"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "Go"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "Ko"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "Mo"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "To"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d munutennoĂš"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 munutenn"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d eilenn"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "N'hellan ouzpennaĂą parzhadur ebet ken"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Gallout a rit dibab yezhoĂš all hag a vo hegerz goude staliaĂą"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
-msgid "France"
-msgstr "Gall"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
-msgid "Belgium"
-msgstr "Beljik"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Tchek"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Alaman"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Gres"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Norvegek"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Suis"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
-msgid "Italy"
-msgstr "Italian"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "a-steud"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
-msgid "United States"
-msgstr "Amerika"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Gwarezit ho roadoĂš da gentaĂą mar plij"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:899
-#: ../../diskdrake/interactive.pm_.c:908 ../../diskdrake/interactive.pm_.c:962
-msgid "Read carefully!"
-msgstr "Lennit aketus !"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"M'emaoc'h e soĂąj implijout aboot, taolit evezh leuskel un egor dieub (2048 "
-"rann\n"
-"a zo a-walc'h) e deroĂš ar bladenn"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Fazi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Skoazeller"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Dibabit un obererezh"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Ur mell barzhadur FAT hoc'h eus\n"
-"(implijet gant MicroSoft Dos/Windows peurliesaĂą).\n"
-"AliaĂą a ran ouzoc'h adventaĂą ar parzhadur-se\n"
-"(klikit warni, da c'houde klikit war \"AdventaĂą\")"
-
-#
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Klikit war ur parzhadur mar plij"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "MunudoĂš"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "marc'haĂą sac'het"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "DisloaĂą"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1058
-msgid "Empty"
-msgstr "Goullo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:933
-msgid "Other"
-msgstr "All"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Seurt ar reizhiadoÚ restroÚ :"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "KrouiĂą"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Seurt"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Grit kentoc'h gant ``%s''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Dilemel"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Implijit ``Divarc'haĂą'' da gentaĂą"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, 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/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Dibabit un parzhadur"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Dibabit un parzhadur all"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Kuitaat"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Tremen er mod mailh"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Tremen er mod boas"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Dizober"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Kenderc'hel evelato ?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Kuitaat hep enrollaĂą"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Kuitaat hep skrivaĂą an daolenn barzhaĂą ?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Ac'hubiĂą ent emgefreek"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "SkaraĂą an holl"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "DinoiĂą ar bladenn galet"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Ac'hubet eo an holl barzhadurioĂš kentaĂą renk"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "N'hellan ouzpennaĂą parzhadur ebet ken"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Evit kaout muioc'h a barzhadurioĂš, lamit unan evit ma c'hellot krouiĂą ur "
-"parzhadur astennet mar plij"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "SkrivaĂą an daolenn barzhaĂą"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Taolenn barzhaĂą saveteerezh"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Taolenn barzhaĂą saveteerezh"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Taolenn barzhaĂą saveteerezh"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Emvarc'haĂą ar skoroĂš lem/laka"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Diuzit ar restr"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"N'eo ket heĂąvel ment an daolenn barzhaĂą gwarezet\n"
-"Kenderc'hel memestra ?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Ho evezh"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Lakait ur bladennig el lenner\n"
-"Kollet e vo holl roadoĂš ar bladennig-se"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "O klask assevel an daolenn barzhaĂą"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "Diskouez titouroĂš"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:535
-#: ../../diskdrake/interactive.pm_.c:562 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Poent marc'haĂą"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-#, fuzzy
-msgid "Options"
-msgstr "Parzhadur"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:629
-msgid "Resize"
-msgstr "AdventaĂą"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:682
-msgid "Move"
-msgstr "Dilec'hiaĂą"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "FurmadiĂą"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Marc'haĂą"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "OuzhpennaĂą da RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "OuzhpennaĂą da LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Divarc'haĂą"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Lemel diwar RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Lemel diwar LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "KemmaĂą RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Implij da saveteiĂą"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "KrouiĂą ur parzhadur nevez"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Rann kregiù : "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:781
-msgid "Size in MB: "
-msgstr "Ment e Mo : "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:782
-msgid "Filesystem type: "
-msgstr "Seurt ar reizhiad restroÚ : "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1042
-#: ../../diskdrake/interactive.pm_.c:1116
-msgid "Mount point: "
-msgstr "Poent marc'haù : "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Dibarzh : "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "O furmadiĂą ar restr saveteiĂą %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "KemmaĂą seurt ar parzhadur"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-#, fuzzy
-msgid "Which filesystem do you want?"
-msgstr "Pe seurt parzhadur a vennit ?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:533
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Pelec'h e mennit marc'haĂą ar restr saveteiĂą %s ?"
-
-#: ../../diskdrake/interactive.pm_.c:534 ../../diskdrake/interactive.pm_.c:561
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Pelec'h e mennit marc'haĂą an drobarzhell %s ?"
-
-#: ../../diskdrake/interactive.pm_.c:540
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-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/interactive.pm_.c:585
-msgid "Computing FAT filesystem bounds"
-msgstr "O jediĂą bevennoĂš ar reizhiad restroĂš FAT"
-
-#: ../../diskdrake/interactive.pm_.c:585 ../../diskdrake/interactive.pm_.c:644
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Oc'h adventaĂą"
-
-#: ../../diskdrake/interactive.pm_.c:617
-#, fuzzy
-msgid "This partition is not resizeable"
-msgstr "Pe seurt parzhadur a vennit ?"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "All data on this partition should be backed-up"
-msgstr "Mat e vije gwareziĂą holl roadoĂš ar parzhadur-se"
-
-#: ../../diskdrake/interactive.pm_.c:624
-#, 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/interactive.pm_.c:629
-msgid "Choose the new size"
-msgstr "Dibabit ar ment nevez"
-
-#: ../../diskdrake/interactive.pm_.c:630
-msgid "New size in MB: "
-msgstr "Ment nevez e Mo : "
-
-#: ../../diskdrake/interactive.pm_.c:683
-msgid "Which disk do you want to move it to?"
-msgstr "Da beseurt pladenn e mennit dilec'hiaĂą ?"
-
-#: ../../diskdrake/interactive.pm_.c:684
-msgid "Sector"
-msgstr "Rann"
-
-#: ../../diskdrake/interactive.pm_.c:685
-msgid "Which sector do you want to move it to?"
-msgstr "Da beseurt rann e mennit dilec'hiaĂą ?"
-
-#: ../../diskdrake/interactive.pm_.c:688
-msgid "Moving"
-msgstr "O tilec'hiaĂą"
-
-#: ../../diskdrake/interactive.pm_.c:688
-msgid "Moving partition..."
-msgstr "O tilec'hiaĂą ur parzhadur..."
-
-#: ../../diskdrake/interactive.pm_.c:705
-msgid "Choose an existing RAID to add to"
-msgstr "Dibabit da be RAID ouzhpennaĂą"
-
-#: ../../diskdrake/interactive.pm_.c:706 ../../diskdrake/interactive.pm_.c:724
-msgid "new"
-msgstr "nevez"
-
-#: ../../diskdrake/interactive.pm_.c:722
-msgid "Choose an existing LVM to add to"
-msgstr "Dibabit da be LVM ouzhpennaĂą"
-
-#: ../../diskdrake/interactive.pm_.c:727
-msgid "LVM name?"
-msgstr "Anv LVM?"
-
-#: ../../diskdrake/interactive.pm_.c:767
-msgid "This partition can't be used for loopback"
-msgstr "N'heller ket implijout ar parzhadur-maĂą evit saveteiĂą"
-
-#: ../../diskdrake/interactive.pm_.c:779
-msgid "Loopback"
-msgstr "SaveteiĂą"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "Loopback file name: "
-msgstr "Anv ar restr saveteiù : "
-
-#: ../../diskdrake/interactive.pm_.c:785
-#, fuzzy
-msgid "Give a file name"
-msgstr "Anv gwirion"
-
-#: ../../diskdrake/interactive.pm_.c:788
-msgid "File already used by another loopback, choose another one"
-msgstr "Restr implijet gant ur saveteiĂą all endeo, dibabit unan all"
-
-#: ../../diskdrake/interactive.pm_.c:789
-msgid "File already exists. Use it?"
-msgstr "Ar restr a zo endeo. E implijout ?"
-
-#: ../../diskdrake/interactive.pm_.c:812
-msgid "Mount options"
-msgstr "DibarzhoĂš marc'haĂą"
-
-#: ../../diskdrake/interactive.pm_.c:819
-msgid "Various"
-msgstr "A bep sort"
-
-#: ../../diskdrake/interactive.pm_.c:882 ../../standalone/drakfloppy_.c:104
-msgid "device"
-msgstr "trobarzhell"
-
-#: ../../diskdrake/interactive.pm_.c:883
-msgid "level"
-msgstr "live"
-
-#: ../../diskdrake/interactive.pm_.c:884
-msgid "chunk size"
-msgstr "ment diaoz"
-
-#: ../../diskdrake/interactive.pm_.c:899
-msgid "Be careful: this operation is dangerous."
-msgstr "Bezit war evezh : arvarus eo an obererezh-maù."
-
-#: ../../diskdrake/interactive.pm_.c:914
-#, fuzzy
-msgid "What type of partitioning?"
-msgstr "Peseurt moullerez hoc'h eus ?"
-
-#: ../../diskdrake/interactive.pm_.c:932
-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 ""
-"Ma zigarezit na asantiĂą krouiĂą /boot ken pell war ar bladenn (war ur granenn "
-"> 1024).\n"
-"Pe e implijit LILO ha ne daio ket en-dro, pe ne rit ket ha n'hoc'h eus ket "
-"ezhomm a /boot"
-
-#: ../../diskdrake/interactive.pm_.c:936
-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 ""
-"Lec'hiet eo ar parzhadur hoc'h eus diuzet da ouzphennaĂą evel gwrizienn (/) "
-"en tu-hont\n"
-"d'ar 1024vet kranenn eus ar bladenn galet, ha n'hoc'h eus ket a barzhadur /"
-"boot.\n"
-"Ma vennit implijout ar merour loc'haĂą LILO, taolit pled da ouzhpennaĂą ur "
-"parzhadur /boot"
-
-#: ../../diskdrake/interactive.pm_.c:942
-msgid ""
-"You've selected a software RAID partition as root (/).\n"
-"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:962
-#, 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/interactive.pm_.c:966
-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/interactive.pm_.c:977
-#, 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/interactive.pm_.c:979
-msgid "Formatting"
-msgstr "O furmadiĂą"
-
-#: ../../diskdrake/interactive.pm_.c:980
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "O furmadiĂą ar restr saveteiĂą %s"
-
-#: ../../diskdrake/interactive.pm_.c:981
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "O furmadiĂą ar parzhadur %s"
-
-#: ../../diskdrake/interactive.pm_.c:992
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid sac'het"
-
-#: ../../diskdrake/interactive.pm_.c:992
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "KrouiĂą ur parzhadur nevez"
-
-#: ../../diskdrake/interactive.pm_.c:993
-#, c-format
-msgid ""
-"Directory %s already contains data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "KrouiĂą ur parzhadur nevez"
-
-#: ../../diskdrake/interactive.pm_.c:1008
-#, c-format
-msgid "Copying %s"
-msgstr "AdskrivaĂą %s"
-
-#: ../../diskdrake/interactive.pm_.c:1012
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "SpisterioĂš"
-
-#: ../../diskdrake/interactive.pm_.c:1022
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1043
-#: ../../diskdrake/interactive.pm_.c:1102
-msgid "Device: "
-msgstr "Trobarzhell : "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Lizher ar bladenn DOS : %s (diwar varteze hepken)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1056
-#: ../../diskdrake/interactive.pm_.c:1120
-msgid "Type: "
-msgstr "Seurt : "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-msgid "Name: "
-msgstr "Anv: "
-
-#: ../../diskdrake/interactive.pm_.c:1060
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "O kregiù : rann %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "Size: %s"
-msgstr "Ment: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s rann"
-
-#: ../../diskdrake/interactive.pm_.c:1065
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Kranenn %d da granenn %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-msgid "Formatted\n"
-msgstr "Furmadet\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-msgid "Not formatted\n"
-msgstr "Ket furmadet\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-msgid "Mounted\n"
-msgstr "Marc'het\n"
-
-#: ../../diskdrake/interactive.pm_.c:1069
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1071
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Restr(oÚ) saveteiù : %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1072
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Parzhadur loc'het dre ziouer\n"
-" (evit loc'haĂą MS-DOS, ket evit lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1074
-#, c-format
-msgid "Level %s\n"
-msgstr "Live %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1075
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Ment diaoz %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "PladennoĂš RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1078
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Anv ar restr saveteiù : %s"
-
-#: ../../diskdrake/interactive.pm_.c:1081
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1084
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1103
-#, c-format
-msgid "Size: %s\n"
-msgstr "Ment: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1104
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Mentoniezh : %s kranenn, %s penn, %s rann\n"
-
-#: ../../diskdrake/interactive.pm_.c:1105
-msgid "Info: "
-msgstr "TitouroĂš: "
-
-#: ../../diskdrake/interactive.pm_.c:1106
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "PladennoĂš LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1107
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Seurt taolenn barzhaù : %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1108
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "war bus %d Nn %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1122
-#, fuzzy, c-format
-msgid "Options: %s"
-msgstr "Parzhadur"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Seurt ar reizhiad restroÚ : "
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1142
-#, fuzzy, c-format
-msgid "This encryption key 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Ăą)"
-
-#: ../../diskdrake/interactive.pm_.c:1143
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "An tremegerioĂš ne glot ket"
-
-#: ../../diskdrake/interactive.pm_.c:1146
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1147
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "KemmaĂą seurt ar parzhadur"
-
-#
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a medium"
-msgstr "Klikit war ur parzhadur mar plij"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "Servijer DNS"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "furmadiĂą er seurt %s eus %s a zo sac'het"
-
-#: ../../fs.pm_.c:548
-#, 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:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "fazi en ur zivarc'haù %s : %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "eeun"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "gant /usr"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "servijer"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr ""
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "PoentoĂš marc'haĂą a rank kregiĂą gant /"
-
-#: ../../fsedit.pm_.c:478
-#, 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:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr ""
-
-#: ../../fsedit.pm_.c:486
-msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
-msgstr ""
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr ""
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Fazi en ur zigeriù %s evit skrivaù : %s"
-
-#: ../../fsedit.pm_.c:697
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"C'hoarvezet ez eus ur fazi - n'eus bet kavet trobarzhell reizh ebet a-benn "
-"krouiĂą reizhiadoĂš restroĂš nevez warni. Gwiriit abeg ar gudenn-maĂą en ho "
-"ardivinkaj mar plij "
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "N'hoc'h eus parzhadur ebet !"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-#, fuzzy
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"BremaĂą e c'hellit diuz pe servijoĂš a vennit e vije laĂąset pa loc'her.\n"
-"Pa zeu ho logodenn war un draez, ul lagadenn skoazell a zeuio war wel hag\n"
-"a zisplego pal ar servij-se.\n"
-"\n"
-"Bezit aketuz-kenaĂą el lankad-maĂą ma vennit implijout ho ardivink evel ur\n"
-"servijer : mennout a rit emichaùs chom hep loc'haù kement servij n'ho peus "
-"ket\n"
-"c'hoant."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-
-#: ../../help.pm_.c:404
-#, fuzzy
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr "Gortozit mar plij"
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: ../../help.pm_.c:544
-#, fuzzy
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Gortozit mar plij."
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-#, fuzzy
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-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:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (the LInux LOader) ha Grub a zo kargerien loc'haù : barrek int da "
-"loc'haĂą\n"
-"pe Linux pe forzh pe reizhiad korvoiĂą all bezaĂąt war ho urzhiataer.\n"
-"PeurvuiaĂą, ar reizhiadoĂš korvoiĂą all-se a vez dinoet ha staliet reizh.\n"
-"Ma n'eo ket kont evel-hen, gallout a rit ouzhpennaĂą un enmont gant an dorn\n"
-"er skramm-maĂą. Taolit pled da zibab an arventennoĂš reizh.\n"
-"\n"
-"\n"
-"Gallout a rafec'h ivez mennout na lakaat hegerz hini ebet eus ar reizhiadoĂš\n"
-"korvoiĂą-se, neuze n'hoc'h eus ken nemet dilemel an enmontoĂš a zegouezh. "
-"Hogen\n"
-"neuze e vo ret deoc'h kaout ur bladennig loc'haĂą evit loc'haĂą anezho."
-
-#: ../../help.pm_.c:722
-#, fuzzy
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Ret eo deoc'h menegiĂą pelec'h e mennit\n"
-"lec'hiaĂą an titouroĂš ret evit loc'haĂą Linux.\n"
-"\n"
-"\n"
-"Nemet ma ouifec'h resis ar pezh a rit, dibabit \"Rann gentaĂą\n"
-"ar bladenn (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "N'hellaĂą ket implijout ar skignaĂą hep domani NIS"
-
-#: ../../install_any.pm_.c:794
-#, fuzzy, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Lakait ur bladennig el lenner %s"
-
-#: ../../install_any.pm_.c:798
-msgid "This floppy is not FAT formatted"
-msgstr ""
-
-#: ../../install_any.pm_.c:810
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-
-#: ../../install_any.pm_.c:832 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Fazi en ur lenn ar restr %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Ret eo deoc'h kaout ur parzhadur gwrizienn.\n"
-"Evit se, krouit ur parzhadur (pe glikit war unan a zo c'hoazh).\n"
-"Da c'houde dibabit an ober ``Poent marc'haĂą'' ha lakait anezhaĂą da `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Ret eo deoc'h kaout ur parzhadur disloaĂą"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"N'hoc'h eus ket a barzhadur disloaĂą\n"
-"\n"
-"Kenderc'hel evelato ?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Ret eo deoc'h kaout ur parzhadur disloaĂą"
-
-#: ../../install_interactive.pm_.c:90
-#, fuzzy
-msgid "Use free space"
-msgstr "Implij da saveteiĂą"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:100
-#, fuzzy
-msgid "Use existing partitions"
-msgstr "O furmadiĂą parzhadurioĂš"
-
-#: ../../install_interactive.pm_.c:102
-#, fuzzy
-msgid "There is no existing partition to use"
-msgstr "O klask assevel an daolenn barzhaĂą"
-
-#: ../../install_interactive.pm_.c:109
-#, fuzzy
-msgid "Use the Windows partition for loopback"
-msgstr "Implij da saveteiĂą"
-
-#: ../../install_interactive.pm_.c:112
-#, fuzzy
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Pe barzhadur a vennit implijout evit lakaat Linux4Win ?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Dibabit ar mentoĂš"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Ment ar parzhadur gwrizienn e Mo : "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Ment ar parzhadur disloaù e Mo : "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:128
-#, fuzzy
-msgid "Which partition do you want to resize?"
-msgstr "Pe seurt parzhadur a vennit ?"
-
-#: ../../install_interactive.pm_.c:130
-#, fuzzy
-msgid "Resizing Windows partition"
-msgstr "O jediĂą bevennoĂš ar reizhiad restroĂš FAT"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:136
-msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
-msgstr ""
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"HO EVEZH !\n"
-"\n"
-"Ezhomm en deus DrakX adventaĂą ho parzhadur Windows bremaĂą. Bezit war "
-"evezh :\n"
-"arvarus eo an obererezh-se. Ma n'hoc'h eus ket graet c'hoazh, gwelloc'h e\n"
-"vije deoc'h seveniĂą da gentaĂą scandisk (ha diouzh ret seveniĂą defrag) war "
-"ar\n"
-"parzhadur-se, ha gwareziĂą ho roadoĂš. Pa vezit sur, gwaskit \"Mat eo\""
-
-#: ../../install_interactive.pm_.c:147
-#, fuzzy
-msgid "Which size do you want to keep for Windows on"
-msgstr "Da beseurt rann e mennit dilec'hiaĂą ?"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "parzhadur %s"
-
-#: ../../install_interactive.pm_.c:155
-#, fuzzy, c-format
-msgid "FAT resizing failed: %s"
-msgstr "AdventaĂą ent emgefreek sac'het"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partition to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Chetan an holl planedenn"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Chetan Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:182
-#, fuzzy, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Goude adventaĂą ar parzhadur %s e vo kollet holl roadoĂš ar parzhadur-se"
-
-#: ../../install_interactive.pm_.c:190
-#, fuzzy
-msgid "Custom disk partitioning"
-msgstr "O furmadiĂą parzhadurioĂš"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Implijit fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, fuzzy, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-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:226
-#, 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:242
-#, fuzzy
-msgid "I can't find any room for installing"
-msgstr "N'hellan ouzpennaĂą parzhadur ebet ken"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:251
-#, fuzzy, c-format
-msgid "Partitioning failed: %s"
-msgstr "Seurt taolenn barzhaù : %s\n"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "O laĂąsaĂą ar rouedad"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "O tizenaouiĂą ar rouedad"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Degouezhet ez eus ur fazi, hogen n'ouzon ket e veraĂą naet.\n"
-"Kendalc'hit war ho mar."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Poent marc'haĂą doubl %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Degemer e %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Lenner pladennig hegerz ebet"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "O kregiĂą gant al lankad `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Renkad staliaĂą"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-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:228
-#, 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:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ma vennit staliaĂą nebeutoc'h eget ar ment-se,\n"
-"diuzit an dregantad a bakadoĂš a vennit staliaĂą.\n"
-"\n"
-"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:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"N'eus egor war ho pladenn nemet evit %d%% eus ar pakadoĂš-se.\n"
-"\n"
-"Ma vennit staliaĂą nebeutoc'h eget se,\n"
-"diuzit an dregantad a bakadoĂš a vennit staliaĂą.\n"
-"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:241
-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:243
-msgid "Percentage of packages to install"
-msgstr "Dregantad a bakadoĂš da staliaĂą"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:675
-msgid "Package Group Selection"
-msgstr "Diuzadenn strollad pakadoĂš"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:690
-msgid "Individual package selection"
-msgstr "Diuz pakadoĂš unan hag unan"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:615
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Ment hollek : %d / %d Mo"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Pakad siek"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Anv : %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Stumm : %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Ment : %d Ko\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Talvoudegezh : %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-#, 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:422
-#, 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:423
-#, 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:435
-msgid "You can't select/unselect this package"
-msgstr "N'hellit ket diuz/andiuz ar pakad-maĂą"
-
-#: ../../install_steps_gtk.pm_.c:447
-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:449
-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:453
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Bremanaet e tle bezaĂą ar pabak-maĂą\n"
-"Ha sur oc'h e mennit e ziuzaĂą ?"
-
-#: ../../install_steps_gtk.pm_.c:457
-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:462
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "StaliaĂą"
-
-#: ../../install_steps_gtk.pm_.c:466
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "EnrollaĂą war bladennig"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Diuz pakadoĂš unan hag unan"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "DistaliaĂą"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:525
-msgid "Choose the packages you want to install"
-msgstr "Dibabit ar pakadoĂš a vennit staliaĂą"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:757
-msgid "Installing"
-msgstr "O staliaĂą"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "O vrasjediĂą"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Amzer a chom"
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation..."
-msgstr "Gortozit mar plij, o prientiĂą ar staliadur"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pakad"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "O staliaĂą ar pakad %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:781
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Aotren"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:781
-#, fuzzy
-msgid "Refuse"
-msgstr "AdventaĂą"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:782
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Kemmit ho Cd-Rom!\n"
-"\n"
-"Lakait el lenner ar Cd-Rom warnaĂą an diketenn \"%s\" mar plij ha gwaskit Mat "
-"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:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:794
-#: ../../install_steps_interactive.pm_.c:798
-msgid "Go on anyway?"
-msgstr "Kenderc'hel evelato ?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:794
-msgid "There was an error ordering packages:"
-msgstr "Ur fazi a zo bet en ur rummaù pakadoÚ :"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:798
-msgid "There was an error installing packages:"
-msgstr "Ur fazi a zo bet en ur staliaù ar pakadoÚ :"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Ur fazi a zo bet"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. 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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1017
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Stokellaoueg"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-
-#: ../../install_steps_interactive.pm_.c:207
-#, fuzzy
-msgid "Here is the full list of keyboards available"
-msgstr "stokellaoueg"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Pe renkad staliaĂą a fell deoc'h ?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "StaliaĂą/Bremanaat"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Hag ur staliadur pe ur bremanadur eo ?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Erbedet"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Mailh"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Bremanaat"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Bremanaat pakadoĂš hep ken"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Porzh al logodenn"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-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:281
-msgid "Buttons emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "O kefluniaĂą kartennoĂš PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "KefluniaĂą IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "No partition available"
-msgstr "parzhadur hegerz ebet"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Dibabit at poentoĂš marc'haĂą"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, fuzzy, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"N'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:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"Ne c'hellas ket DiskDrake lenn ent reizh an daolenn barzhaĂą.\n"
-"Kendalc'hit war ho mar !"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "Parzhadur gwrizienn kavet ebet"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Parzhadur gwrizienn"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Pehini eo parzhadur gwrizienn (/) ho reizhiad ?"
-
-#: ../../install_steps_interactive.pm_.c:411
-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:435
-msgid "Choose the partitions you want to format"
-msgstr "Dibabit ar parzhadur a vennit furmadiĂą"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "GwiriaĂą ar bloc'hoĂš siek ?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "O furmadiĂą parzhadurioĂš"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "O krouiĂą hag o furmadiĂą ar restr saveteiĂą %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Ket a-walc'h a zisloaĂą evit peurstaliaĂą, kreskit anezhaĂą mar plij"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages..."
-msgstr "O klask ar pakadoĂš hegerz"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade..."
-msgstr "O kavout pakadoĂš da vremanaat"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, fuzzy, c-format
-msgid ""
-"Your system does not have 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:538
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:541
-msgid "Load from floppy"
-msgstr "Assevel adalek ar pladennig"
-
-#: ../../install_steps_interactive.pm_.c:543
-msgid "Loading from floppy"
-msgstr "AssevelaĂą adalek ar pladennig"
-
-#: ../../install_steps_interactive.pm_.c:543
-msgid "Package selection"
-msgstr "Diuzadenn pakadoĂš"
-
-#: ../../install_steps_interactive.pm_.c:548
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "Lakait ur bladennig el lenner %s"
-
-#: ../../install_steps_interactive.pm_.c:560
-msgid "Save on floppy"
-msgstr "EnrollaĂą war bladennig"
-
-#: ../../install_steps_interactive.pm_.c:628
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:641
-#, fuzzy
-msgid "Type of install"
-msgstr "Dibabit pakadoĂš da staliaĂą"
-
-#: ../../install_steps_interactive.pm_.c:642
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:645
-msgid "With X"
-msgstr "Gant X"
-
-#: ../../install_steps_interactive.pm_.c:647
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:648
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:732
-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 ""
-"M'hoc'h eus an holl CDoĂš er roll a-is, gwaskit Mat eo.\n"
-"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:737
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom skridennet \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:757
-msgid "Preparing installation"
-msgstr "O prientiĂą ar staliadur"
-
-#: ../../install_steps_interactive.pm_.c:766
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"O staliaĂą ar pakad %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:812
-msgid "Post-install configuration"
-msgstr "Kefluniadur goude staliaĂą"
-
-#: ../../install_steps_interactive.pm_.c:818
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Lakait ur bladennig el lenner %s"
-
-#: ../../install_steps_interactive.pm_.c:824
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-
-#: ../../install_steps_interactive.pm_.c:844
-msgid ""
-"You now have the opportunity to download encryption software.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Tu zo deoc'h bremaĂą ezkargaĂą meziantoĂš gouestlet d'ar rinegouriezh.\n"
-"\n"
-"HO EVEZH :\n"
-"\n"
-"Abalamour m'eo disheĂąvel ar pennaennoĂš meur o talvezout evit ar meziantoĂš-"
-"maĂą hervez\n"
-"gwiraouriezhoĂš disheĂąvel, ret eo d'an arval ha/pe arveriad en diwezh ar "
-"meziantoĂš-maĂą\n"
-"gwiriaĂą eo aotreet da ezskargaĂą, mirout ha/pe implijout ar meziantoĂš-maĂą\n"
-"gouez d'al lezennoĂš en e/he gwiraouriezh.\n"
-"\n"
-"Ouzhpenn an arval ha/pe arveriad en diwezh a rank bezaĂą war evezh chom hep "
-"terriĂą\n"
-"lezennoĂš e/he gwiraouriezh. Ma c'hoarvezfe gant an arval ha/pe arveriad\n"
-"en diwezh na zoujaĂą ouzh termenoĂš lezennoĂš o talvezout, e telezfe kastizoĂš\n"
-"kriz.\n"
-"\n"
-"E nep degouezh ne vo dalc'het Mandrakesoft nag e oberatourien na/pe e "
-"bourvezerien\n"
-"atebek eus nep gaou dibar, ameeun pe zarvoudus a c'hoarvezfe (ha pa vefe\n"
-"zoken e-touez traoĂš all koll gounid, arsav aferioĂš, koll roadoĂš kenwerzhel "
-"ha\n"
-"kolloĂš arc'hant all, hag atebegezh pe zigoll diouzh an dro da vezaĂą paeet\n"
-"da heul ur barnadeg) o tont diouzh implij, perc'hennaĂą, pe zoken ezkargaĂą\n"
-"ar meziantoĂš-maĂą, a c'hellfe an arval ha/pe arveriad en diwezh bezaĂą\n"
-"grataet goude bezaĂą sinet an emglev-maĂą.\n"
-"\n"
-"\n"
-"Evit forzh pe c'houlenn a-zivout an emglevioĂš-se, darempredit mar plij\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"SUA"
-
-#: ../../install_steps_interactive.pm_.c:883
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been released after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:898
-#, fuzzy
-msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr "O taremprediĂą ar melezour evit kaout roll ar pakadoĂš hegerz"
-
-#: ../../install_steps_interactive.pm_.c:903
-msgid "Choose a mirror from which to get the packages"
-msgstr "Dibabit ur melezour da dapout ar pakadoĂš diwarnaĂą"
-
-#: ../../install_steps_interactive.pm_.c:912
-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:939
-msgid "Which is your timezone?"
-msgstr "Pe seurt a vo ho takad-eur ?"
-
-#: ../../install_steps_interactive.pm_.c:944
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "Ha war GMT eo lakaet ho eurier periantel ?"
-
-#: ../../install_steps_interactive.pm_.c:945
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:952
-msgid "NTP Server"
-msgstr "Servijer NTP"
-
-#: ../../install_steps_interactive.pm_.c:986
-#: ../../install_steps_interactive.pm_.c:994
-#, fuzzy
-msgid "Remote CUPS server"
-msgstr "Steud a-bell"
-
-#: ../../install_steps_interactive.pm_.c:987
-#, fuzzy
-msgid "No printer"
-msgstr "Moullerez lec'hel"
-
-#: ../../install_steps_interactive.pm_.c:1004
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Hag un all hoc'h eus ?"
-
-#: ../../install_steps_interactive.pm_.c:1006
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1008
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1013 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Evit diverriĂą"
-
-#: ../../install_steps_interactive.pm_.c:1016
-msgid "Mouse"
-msgstr "Logodenn"
-
-#: ../../install_steps_interactive.pm_.c:1018
-msgid "Timezone"
-msgstr "Takad-eur"
-
-#: ../../install_steps_interactive.pm_.c:1019 ../../printerdrake.pm_.c:2279
-#: ../../printerdrake.pm_.c:2357
-msgid "Printer"
-msgstr "Moullerez"
-
-#: ../../install_steps_interactive.pm_.c:1021
-msgid "ISDN card"
-msgstr "Kartenn ISDN"
-
-#: ../../install_steps_interactive.pm_.c:1024
-#: ../../install_steps_interactive.pm_.c:1026
-msgid "Sound card"
-msgstr "Kartenn son"
-
-#: ../../install_steps_interactive.pm_.c:1028
-msgid "TV card"
-msgstr "Kartenn pellwel"
-
-#: ../../install_steps_interactive.pm_.c:1066
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1094
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1067
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1103
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1068
-#: ../../install_steps_interactive.pm_.c:1090
-msgid "Local files"
-msgstr "RestroĂš lec'hel"
-
-#: ../../install_steps_interactive.pm_.c:1077
-#: ../../install_steps_interactive.pm_.c:1078 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "TermeniĂą tremenger root"
-
-#: ../../install_steps_interactive.pm_.c:1079
-msgid "No password"
-msgstr "Tremenger ebet"
-
-#: ../../install_steps_interactive.pm_.c:1084
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutaĂą)"
-
-#: ../../install_steps_interactive.pm_.c:1090 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Dilesadur"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "Dilesadur"
-
-#: ../../install_steps_interactive.pm_.c:1099
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1100
-msgid "LDAP Server"
-msgstr "Servijer LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1106
-msgid "Authentication NIS"
-msgstr "Dilesadur NIS"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "NIS Domain"
-msgstr "Domani NIS"
-
-#: ../../install_steps_interactive.pm_.c:1108
-msgid "NIS Server"
-msgstr "Servijer NIS"
-
-#: ../../install_steps_interactive.pm_.c:1143
-#, fuzzy
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Ur bladenn loc'haĂą neuziet a ro un tu da loc'haĂą ho reizhiad Linux hep "
-"bezaĂą\n"
-"dindan beli ar c'harger loc'haĂą boas. Talvoudus eo ma ne mennit ket staliaĂą "
-"LILO\n"
-"(pe grub) war ho reizhiad, pe ma skarzh ur reizhiad oberiaĂą LILO, pe ma ne\n"
-"da ket en-dro LILO war ho kefluniadur periantel. Ur bladenn loc'haĂą neuziet\n"
-"a c'hell ivez bezaĂą implijet gant ar skeudenn saveteiĂą Mandrake, en ur "
-"aesaat an\n"
-"assevel pa vefec'h sac'het grevus. Mennout a rit krouiĂą ur bladenn loc'haĂą "
-"evit\n"
-"ho reizhiad ?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "First floppy drive"
-msgstr "Lenner pladennig kentaĂą"
-
-#: ../../install_steps_interactive.pm_.c:1160
-msgid "Second floppy drive"
-msgstr "Eil lenner pladennig"
-
-#: ../../install_steps_interactive.pm_.c:1161 ../../printerdrake.pm_.c:1851
-msgid "Skip"
-msgstr "Tremen e-biou"
-
-#: ../../install_steps_interactive.pm_.c:1166
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Ur bladenn loc'haĂą neuziet a ro un tu da loc'haĂą ho reizhiad Linux hep "
-"bezaĂą\n"
-"dindan beli ar c'harger loc'haĂą boas. Talvoudus eo ma ne mennit ket staliaĂą "
-"LILO\n"
-"(pe grub) war ho reizhiad, pe ma skarzh ur reizhiad oberiaĂą LILO, pe ma ne\n"
-"da ket en-dro LILO war ho kefluniadur periantel. Ur bladenn loc'haĂą neuziet\n"
-"a c'hell ivez bezaĂą implijet gant ar skeudenn saveteiĂą Mandrake, en ur "
-"aesaat an\n"
-"assevel pa vefec'h sac'het grevus. Mennout a rit krouiĂą ur bladenn loc'haĂą "
-"evit\n"
-"ho reizhiad ?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1172
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1180
-msgid "Sorry, no floppy drive available"
-msgstr "Ho tigarez, lenner pladennig hegerz ebet"
-
-#: ../../install_steps_interactive.pm_.c:1184
-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:1188
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Lakait ur bladennig el lenner %s"
-
-#: ../../install_steps_interactive.pm_.c:1191
-msgid "Creating bootdisk..."
-msgstr "O krouiĂą ar bladenn loc'haĂą"
-
-#: ../../install_steps_interactive.pm_.c:1198
-msgid "Preparing bootloader..."
-msgstr "O prientiĂą ar c'harger loc'haĂą"
-
-#: ../../install_steps_interactive.pm_.c:1209
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1215
-msgid "Do you want to use aboot?"
-msgstr "Mennout a rit implijout aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1218
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Fazi en ur staliaĂą aboot,\n"
-"klask rediaĂą ar staliadur zoken ma tistruj ar parzhadur kentaĂą ?"
-
-#: ../../install_steps_interactive.pm_.c:1225
-msgid "Installing bootloader"
-msgstr "StaliaĂą ar c'harger loc'haĂą"
-
-#: ../../install_steps_interactive.pm_.c:1231
-#, 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:1239
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1283
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-
-#: ../../install_steps_interactive.pm_.c:1287
-msgid "Creating auto install floppy..."
-msgstr "O krouiĂą ur bladennig staliaĂą emgefreek"
-
-#: ../../install_steps_interactive.pm_.c:1298
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"LankadoĂš 'zo n'int ket peurc'hraet.\n"
-"\n"
-"Mennout a rit kuitaat da vat bremaĂą ?"
-
-#: ../../install_steps_interactive.pm_.c:1309
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Gourc'hemennoĂš, peurc'hraet eo ar staliadur.\n"
-"Lamit ar bladenn loc'haĂą ha gwaskit enkas evit adloc'haĂą.\n"
-"\n"
-"\n"
-"Evit titouroĂš war palastroĂš hegerz evit stumm-maĂą Mandrake Linux,\n"
-"sellit ouzh ar meneger fazioĂš hegerz e \n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"TitouroĂš war gefluniaĂą ho reizhiad a zo hegerz e rannbennad Goude\n"
-"StaliaĂą Sturier ofisiel an Arveriad Mandrake Linux."
-
-#: ../../install_steps_interactive.pm_.c:1326
-#, fuzzy
-msgid "Generate auto install floppy"
-msgstr "O krouiĂą ur bladennig staliaĂą emgefreek"
-
-#: ../../install_steps_interactive.pm_.c:1328
-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:1333
-msgid "Automated"
-msgstr "Emgefreek"
-
-#: ../../install_steps_interactive.pm_.c:1333
-#, fuzzy
-msgid "Replay"
-msgstr "AdkargaĂą"
-
-#: ../../install_steps_interactive.pm_.c:1336
-#, fuzzy
-msgid "Save packages selection"
-msgstr "Diuz pakadoĂš unan hag unan"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Staliadur Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> etre elfennoĂš | <Esaouenn> a ziuz | <F12> skramm a heul "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu mank"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Dibabit ur restr"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Barek"
-
-#: ../../interactive.pm_.c:315
-#, fuzzy
-msgid "Basic"
-msgstr "Diazez"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Gortozit mar plij"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Dibab fall, klaskit adarre\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Ho tibab ? (%s dre ziouer)"
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Ho tibab ? (%s dre ziouer)"
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Nozel `%s': %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button?"
-msgstr "Mennout a rit implijout SILO ?"
-
-#: ../../interactive_stdio.pm_.c:103
-msgid " enter `void' for void entry"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Ho tibab ? (%s dre ziouer)"
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:197 ../../keyboard.pm_.c:228
-msgid "Czech (QWERTZ)"
-msgstr "Tchek (QWERTZ)"
-
-#: ../../keyboard.pm_.c:198 ../../keyboard.pm_.c:230
-msgid "German"
-msgstr "Alaman"
-
-#: ../../keyboard.pm_.c:199
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:200 ../../keyboard.pm_.c:237
-msgid "Spanish"
-msgstr "Spagnol"
-
-#: ../../keyboard.pm_.c:201 ../../keyboard.pm_.c:238
-msgid "Finnish"
-msgstr "Finnek"
-
-#: ../../keyboard.pm_.c:202 ../../keyboard.pm_.c:239
-msgid "French"
-msgstr "Gall"
-
-#: ../../keyboard.pm_.c:203 ../../keyboard.pm_.c:264
-msgid "Norwegian"
-msgstr "Norvegek"
-
-#: ../../keyboard.pm_.c:204
-msgid "Polish"
-msgstr "Polonek"
-
-#: ../../keyboard.pm_.c:205 ../../keyboard.pm_.c:272
-msgid "Russian"
-msgstr "Rusiek"
-
-#: ../../keyboard.pm_.c:207 ../../keyboard.pm_.c:274
-msgid "Swedish"
-msgstr "Svedek"
-
-#: ../../keyboard.pm_.c:208 ../../keyboard.pm_.c:289
-msgid "UK keyboard"
-msgstr "Stokellaoueg RU"
-
-#: ../../keyboard.pm_.c:209 ../../keyboard.pm_.c:290
-msgid "US keyboard"
-msgstr "Stokellaoueg SUA"
-
-#: ../../keyboard.pm_.c:211
-#, fuzzy
-msgid "Albanian"
-msgstr "Ukrainiek"
-
-#: ../../keyboard.pm_.c:212
-msgid "Armenian (old)"
-msgstr "Armeniek (kozh)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Armenian (typewriter)"
-msgstr "Armeniek (skriverez)"
-
-#: ../../keyboard.pm_.c:214
-msgid "Armenian (phonetic)"
-msgstr "Armeniek (soniadel)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjanek (latin)"
-
-#: ../../keyboard.pm_.c:221
-msgid "Belgian"
-msgstr "Belgian"
-
-#: ../../keyboard.pm_.c:222
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Armeniek (soniadel)"
-
-#: ../../keyboard.pm_.c:223
-msgid "Bulgarian (BDS)"
-msgstr "Bulgarek (BDS)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasilek (ABNT-2)"
-
-#: ../../keyboard.pm_.c:225
-#, fuzzy
-msgid "Belarusian"
-msgstr "Bulgarek"
-
-#: ../../keyboard.pm_.c:226
-msgid "Swiss (German layout)"
-msgstr "Suis (reizhadur alaman)"
-
-#: ../../keyboard.pm_.c:227
-msgid "Swiss (French layout)"
-msgstr "Suis (reizhadur gall)"
-
-#: ../../keyboard.pm_.c:229
-msgid "Czech (QWERTY)"
-msgstr "Tchek (QWERTY)"
-
-#: ../../keyboard.pm_.c:231
-msgid "German (no dead keys)"
-msgstr "Alaman (stokell marv ebet)"
-
-#: ../../keyboard.pm_.c:232
-msgid "Danish"
-msgstr "Danek"
-
-#: ../../keyboard.pm_.c:233
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:234
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norvegek)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Svedek)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Estonian"
-msgstr "Estoniek"
-
-#: ../../keyboard.pm_.c:240
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Jorjiek (reizhadur \"Rusiek\")"
-
-#: ../../keyboard.pm_.c:241
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Jorjiek (reizhadur \"Latin\")"
-
-#: ../../keyboard.pm_.c:242
-msgid "Greek"
-msgstr "Gresian"
-
-#: ../../keyboard.pm_.c:243
-msgid "Hungarian"
-msgstr "Hungarian"
-
-#: ../../keyboard.pm_.c:244
-msgid "Croatian"
-msgstr "Kroatek"
-
-#: ../../keyboard.pm_.c:245
-msgid "Israeli"
-msgstr "Israelian"
-
-#: ../../keyboard.pm_.c:246
-msgid "Israeli (Phonetic)"
-msgstr "Israelian (soniadel)"
-
-#: ../../keyboard.pm_.c:247
-#, fuzzy
-msgid "Iranian"
-msgstr "Ukrainiek"
-
-#: ../../keyboard.pm_.c:248
-msgid "Icelandic"
-msgstr "Islandek"
-
-#: ../../keyboard.pm_.c:249
-msgid "Italian"
-msgstr "Italian"
-
-#: ../../keyboard.pm_.c:251
-msgid "Japanese 106 keys"
-msgstr ""
-
-#: ../../keyboard.pm_.c:254
-#, fuzzy
-msgid "Korean keyboard"
-msgstr "Reizhadur Stokellaoueg RU"
-
-#: ../../keyboard.pm_.c:255
-msgid "Latin American"
-msgstr "Amerikan Latin"
-
-#: ../../keyboard.pm_.c:256
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituaniek AZERTY (kozh)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituaniek AZERTY (nevez)"
-
-#: ../../keyboard.pm_.c:259
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituaniek QUERTY \"linenn sifroĂš\""
-
-#: ../../keyboard.pm_.c:260
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituaniek QUERTY \"soniadel\""
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Latvian"
-msgstr "TitouroĂš"
-
-#: ../../keyboard.pm_.c:262
-msgid "Macedonian"
-msgstr "Makedonia"
-
-#: ../../keyboard.pm_.c:263
-msgid "Dutch"
-msgstr "Hollandek"
-
-#: ../../keyboard.pm_.c:265
-msgid "Polish (qwerty layout)"
-msgstr "Polonek (reizhadur qwerty)"
-
-#: ../../keyboard.pm_.c:266
-msgid "Polish (qwertz layout)"
-msgstr "Polonek (reizhadur qwerty)"
-
-#: ../../keyboard.pm_.c:267
-msgid "Portuguese"
-msgstr "Portugalek"
-
-#: ../../keyboard.pm_.c:268
-msgid "Canadian (Quebec)"
-msgstr "Kanadian (Kebek)"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "Rusiek (Yawerty)"
-
-#: ../../keyboard.pm_.c:271
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "Rusiek (Yawerty)"
-
-#: ../../keyboard.pm_.c:273
-msgid "Russian (Yawerty)"
-msgstr "Rusiek (Yawerty)"
-
-#: ../../keyboard.pm_.c:275
-msgid "Slovenian"
-msgstr "Slovek"
-
-#: ../../keyboard.pm_.c:276
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovakek (QWERTZ)"
-
-#: ../../keyboard.pm_.c:277
-msgid "Slovakian (QWERTY)"
-msgstr "Slovakek (QWERTY)"
-
-#: ../../keyboard.pm_.c:279
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "Yougoslaviek (reizhadur latin)"
-
-#: ../../keyboard.pm_.c:281
-#, fuzzy
-msgid "Tamil"
-msgstr "Taolenn"
-
-#: ../../keyboard.pm_.c:282
-msgid "Thai keyboard"
-msgstr "Stokellaoueg Thai"
-
-#: ../../keyboard.pm_.c:284
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Stokellaoueg Thai"
-
-#: ../../keyboard.pm_.c:285
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turkek (hengounel doare \"F\")"
-
-#: ../../keyboard.pm_.c:286
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turkek (arnevez doare \"Q\")"
-
-#: ../../keyboard.pm_.c:288
-msgid "Ukrainian"
-msgstr "Ukrainiek"
-
-#: ../../keyboard.pm_.c:291
-msgid "US keyboard (international)"
-msgstr "Stokellaoueg SUA (etrevroadel)"
-
-#: ../../keyboard.pm_.c:292
-#, fuzzy
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Lituaniek QUERTY \"linenn sifroĂš\""
-
-#: ../../keyboard.pm_.c:293
-msgid "Yugoslavian (latin)"
-msgstr "Yougoslaviek (latin)"
-
-#: ../../keyboard.pm_.c:301
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:302
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:303
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:304
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:305
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:306
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:307
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:308
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:309
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Marc'haĂą kelc'hiek %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr ""
-
-#: ../../modules.pm_.c:832
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Logodenn Sun"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Logodenn rummel PS2 rodellek"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Logodenn Kensington Thinking"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 nozelenn"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Logodenn rummel 2 nozelenn"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Rummel"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Rodel"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "a-steud"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Logodenn rummel 3 nozelenn"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech doare CC"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "Doare MM"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logodenn Logitech (a-steud, seurt C7 kozh)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "Logodenn bus"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 nozelenn"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 nozelenn"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "ebet"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Logodenn ebet"
-
-#: ../../mouse.pm_.c:499
-#, fuzzy
-msgid "Please test the mouse"
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../mouse.pm_.c:500
-#, fuzzy
-msgid "To activate the mouse,"
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "FIÑV HO RODELL !"
-
-#: ../../my_gtk.pm_.c:666
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:701
-msgid "Finish"
-msgstr "Disoc'h"
-
-#: ../../my_gtk.pm_.c:701 ../../printerdrake.pm_.c:1590
-msgid "Next ->"
-msgstr "A heul ->"
-
-#: ../../my_gtk.pm_.c:702 ../../printerdrake.pm_.c:1588
-msgid "<- Previous"
-msgstr "<- Diaraog"
-
-#: ../../my_gtk.pm_.c:1034
-msgid "Is this correct?"
-msgstr "Ha reizh eo ?"
-
-#: ../../my_gtk.pm_.c:1098 ../../services.pm_.c:222
-msgid "Info"
-msgstr "TitouroĂš"
-
-#: ../../my_gtk.pm_.c:1119
-msgid "Expand Tree"
-msgstr "Astenn ar wezenn"
-
-#: ../../my_gtk.pm_.c:1120
-msgid "Collapse Tree"
-msgstr "PlegaĂą ar wezenn"
-
-#: ../../my_gtk.pm_.c:1121
-msgid "Toggle between flat and group sorted"
-msgstr "GwintaĂą etre kompez ha rummet dre strollad"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-#, fuzzy
-msgid "Connect to the Internet"
-msgstr "Anv ar gevreadenn"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "implijit dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "implijit pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "implijit pptp"
-
-#: ../../network/ethernet.pm_.c:37
-#, fuzzy
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr "Pe seurt parzhadur a vennit ?"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:248
-#, fuzzy
-msgid "Choose the network interface"
-msgstr "Dibabit ar ment nevez"
-
-#: ../../network/ethernet.pm_.c:93
-#, 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."
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "kartenn rouedad kavet ebet"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
-msgid "Configuring network"
-msgstr "KefluniaĂą ar rouedad"
-
-#: ../../network/ethernet.pm_.c:203
-#, fuzzy
-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 ""
-"Roit ho anv ostiz mar plij.\n"
-"Un anv peurzoareet a zlefe bezaĂą hini o ostiz,\n"
-"evel ``mabenveg.mastal.makomp.com''.\n"
-"Gallout a rit ivez reiĂą chomlec'h IP an dreuzell m'hoc'h eus unan"
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
-msgid "Host name"
-msgstr "Anv an ostiz"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:179
-#: ../../network/netconnect.pm_.c:206 ../../network/netconnect.pm_.c:229
-#: ../../network/netconnect.pm_.c:237
-#, fuzzy
-msgid "Network Configuration Wizard"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../network/isdn.pm_.c:22
-#, fuzzy
-msgid "External ISDN modem"
-msgstr "Mailh"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:22
-#, fuzzy
-msgid "What kind is your ISDN connection?"
-msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "o lenn ar c'hefluniadur"
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "o lenn ar c'hefluniadur"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Kefluniadur ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
-msgstr ""
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "AmprouiĂą ar c'hefluniadur"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:189
-#, fuzzy
-msgid "Which protocol do you want to use?"
-msgstr "Pe seurt parzhadur a vennit ?"
-
-#: ../../network/isdn.pm_.c:199
-#, fuzzy
-msgid "What kind of card do you have?"
-msgstr "Peseurt moullerez hoc'h eus ?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Dilaoskel"
-
-#: ../../network/isdn.pm_.c:210
-#, fuzzy
-msgid "Continue"
-msgstr "Kenderc'hel evelato ?"
-
-#: ../../network/isdn.pm_.c:216
-#, fuzzy
-msgid "Which is your ISDN card?"
-msgstr "Pehini eo ho takad-eur ?"
-
-#: ../../network/isdn.pm_.c:235
-msgid ""
-"I have detected an ISDN PCI card, but I don't know its type. Please select a "
-"PCI card on the next screen."
-msgstr ""
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "DibarzhoĂš sifrennaĂą"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Anv ar gevreadenn"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-#, fuzzy
-msgid "Phone number"
-msgstr "Niverenn bellgomz"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Anv ereaĂą"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Diazezet war ur skrid"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Diazezet war un dermenell"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Anv ar domani"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Servijer DNS kentaĂą (da zilenn)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Eil servijer DNS (da zilenn)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr "KefluniaĂą ur rouedad"
-
-#: ../../network/netconnect.pm_.c:34
-#, fuzzy
-msgid "You are currently connected to internet."
-msgstr "Da beseurt pladenn e mennit dilec'hiaĂą ?"
-
-#: ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr "Anv ar gevreadenn"
-
-#: ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid "You are not currently connected to Internet."
-msgstr "Da beseurt pladenn e mennit dilec'hiaĂą ?"
-
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
-msgid "Connect"
-msgstr "Anv ar gevreadenn"
-
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
-msgid "Disconnect"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "KefluniaĂą ur rouedad"
-
-#: ../../network/netconnect.pm_.c:50
-#, fuzzy
-msgid "Internet connection & configuration"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "KefluniaĂą ur rouedad"
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr "KefluniaĂą ur rouedad"
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:256
-#: ../../network/netconnect.pm_.c:276 ../../network/tools.pm_.c:63
-msgid "Network Configuration"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-
-#: ../../network/netconnect.pm_.c:171
-#, fuzzy
-msgid "Choose the profile to configure"
-msgstr "Dibabit ar ment nevez"
-
-#: ../../network/netconnect.pm_.c:172
-msgid "Use auto detection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:179 ../../printerdrake.pm_.c:145
-msgid "Detecting devices..."
-msgstr "O tinoiĂą trobarzhelloĂš..."
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-#, fuzzy
-msgid "Normal modem connection"
-msgstr "KefluniaĂą ur rouedad"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-#, fuzzy, c-format
-msgid "detected on port %s"
-msgstr "Poent marc'haĂą doubl %s"
-
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
-#, fuzzy
-msgid "ISDN connection"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
-#, c-format
-msgid "detected %s"
-msgstr "kavoutet %s"
-
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
-#, fuzzy
-msgid "ADSL connection"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
-#, c-format
-msgid "detected on interface %s"
-msgstr "kavoutet war %s"
-
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Cable connection"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
-#, fuzzy
-msgid "LAN connection"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
-msgid "ethernet card(s) detected"
-msgstr "kartenn(oĂš) ethernet kavoutet"
-
-#: ../../network/netconnect.pm_.c:206
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "Dibabit ar benveg a vennit staliaĂą"
-
-#: ../../network/netconnect.pm_.c:230
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:231
-#, fuzzy
-msgid "Internet connection"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../network/netconnect.pm_.c:237
-#, fuzzy
-msgid "Do you want to start the connection at boot?"
-msgstr "Mennout a rit implijout aboot ?"
-
-#: ../../network/netconnect.pm_.c:251
-#, fuzzy
-msgid "Network configuration"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../network/netconnect.pm_.c:252
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:256
-#, fuzzy, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:270
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:271
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration."
-msgstr ""
-
-#: ../../network/network.pm_.c:293
-msgid ""
-"WARNING: this device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-
-#: ../../network/network.pm_.c:298
-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 ""
-"Skrivit ar c'hefluniadur IP evit ar benveg-maĂą mar plij.\n"
-"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/network.pm_.c:308 ../../network/network.pm_.c:309
-#, c-format
-msgid "Configuring network device %s"
-msgstr "O kefluniaĂą an drobarzhell rouedad %s"
-
-#: ../../network/network.pm_.c:309
-#, fuzzy, c-format
-msgid " (driver %s)"
-msgstr "Servijer XFree86 : %s\n"
-
-#: ../../network/network.pm_.c:311 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "Chomlec'h IP"
-
-#: ../../network/network.pm_.c:312 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Maskl rouedad"
-
-#: ../../network/network.pm_.c:313
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:313
-msgid "Automatic IP"
-msgstr "IP emgefreek"
-
-#: ../../network/network.pm_.c:314
-#, fuzzy
-msgid "Start at boot"
-msgstr "KrouiĂą ur bladennig loc'haĂą"
-
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:714
-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/network.pm_.c:365
-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 ""
-"Roit ho anv ostiz mar plij.\n"
-"Un anv peurzoareet a zlefe bezaĂą hini o ostiz,\n"
-"evel ``mabenveg.mastal.makomp.com''.\n"
-"Gallout a rit ivez reiĂą chomlec'h IP an dreuzell m'hoc'h eus unan"
-
-#: ../../network/network.pm_.c:370
-msgid "DNS server"
-msgstr "Servijer DNS"
-
-#: ../../network/network.pm_.c:371
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:373
-msgid "Gateway device"
-msgstr "Trobarzhell an dreuzell"
-
-#: ../../network/network.pm_.c:385
-#, fuzzy
-msgid "Proxies configuration"
-msgstr "Kefluniadur goude staliaĂą"
-
-#: ../../network/network.pm_.c:386
-msgid "HTTP proxy"
-msgstr "Proksi HTTP"
-
-#: ../../network/network.pm_.c:387
-msgid "FTP proxy"
-msgstr "Proksi FTP"
-
-#: ../../network/network.pm_.c:388
-msgid "Track network card id (useful for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:391
-msgid "Proxy should be http://..."
-msgstr "http://... a zlefe bezaĂą ar proksi"
-
-#: ../../network/network.pm_.c:392
-msgid "Proxy should be ftp://..."
-msgstr "ftp://... a zlefe bezaĂą ar proksi"
-
-#: ../../network/tools.pm_.c:41
-#, fuzzy
-msgid "Internet configuration"
-msgstr "KefluniaĂą ar proksioĂš"
-
-#: ../../network/tools.pm_.c:42
-#, fuzzy
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-
-#: ../../network/tools.pm_.c:46 ../../standalone/draknet_.c:197
-#, fuzzy
-msgid "Testing your connection..."
-msgstr "KefluniaĂą ur rouedad"
-
-#: ../../network/tools.pm_.c:56
-#, fuzzy
-msgid "The system is now connected to Internet."
-msgstr "Da beseurt pladenn e mennit dilec'hiaĂą ?"
-
-#: ../../network/tools.pm_.c:57
-msgid "For security reason, it will be disconnected now."
-msgstr ""
-
-#: ../../network/tools.pm_.c:58
-#, fuzzy
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr "Anv ar gevreadenn"
-
-#: ../../network/tools.pm_.c:82
-#, fuzzy
-msgid "Connection Configuration"
-msgstr "KefluniaĂą ar proksioĂš"
-
-#: ../../network/tools.pm_.c:83
-msgid "Please fill or check the field below"
-msgstr ""
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ kartenn"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Memor kartenn (DMA)"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO kartenn"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_0 kartenn"
-
-#: ../../network/tools.pm_.c:89 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 kartenn"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr ""
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:615
-#, fuzzy
-msgid "Provider phone number"
-msgstr "Niverenn bellgomz"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "DibarzhoĂš ar voullerez (da zilenn)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "DibarzhoĂš ar voullerez (da zilenn)"
-
-#: ../../network/tools.pm_.c:95
-#, fuzzy
-msgid "Choose your country"
-msgstr "Dibabit ho stokellaoueg"
-
-#: ../../network/tools.pm_.c:96 ../../standalone/draknet_.c:620
-#, fuzzy
-msgid "Dialing mode"
-msgstr "Anv domani"
-
-#: ../../network/tools.pm_.c:97 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "Anv ar gevreadenn"
-
-#: ../../network/tools.pm_.c:98 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Anv ar gevreadenn"
-
-#: ../../network/tools.pm_.c:99 ../../standalone/draknet_.c:618
-#, fuzzy
-msgid "Account Login (user name)"
-msgstr "Poent marc'haĂą"
-
-#: ../../network/tools.pm_.c:100 ../../standalone/draknet_.c:619
-#, fuzzy
-msgid "Account Password"
-msgstr "Tremenger"
-
-#: ../../network/tools.pm_.c:118
-msgid "United Kingdom"
-msgstr ""
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "marc'haù sac'het : "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr ""
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions."
-msgstr ""
-"Un toull a zo en ho taolenn barzhaĂą hogen n'hellan ket e implijout.\n"
-"FiĂąval ar parzhadurioĂš kentaĂą derez evit ma vo an toull stok ouzh ar "
-"parzhadurioĂš astennet eo an diskoulm"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Assevel adalek ar restr %s sac'het %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Restr gwareziĂą siek"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Fazi en ur skrivaĂą er restr %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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:24
-msgid "must have"
-msgstr "a rankfec'h kaout"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "a-bouez"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "brav-tre"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "brav"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "marteze"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Moullerez lec'hel"
-
-#: ../../printer.pm_.c:48
-#, fuzzy
-msgid "Remote printer"
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Steud a-bell"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:736
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "lpd a-bell"
-
-#: ../../printer.pm_.c:51
-#, fuzzy
-msgid "Network printer (TCP/Socket)"
-msgstr "DibarzhoĂš ar voullerez NetWare"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Servijer moullaĂą"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:740
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "Trobarzhell ar voullerez"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2733
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "MoullerezioĂš lec'hel"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Moullerezio* a-bell"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", Mouluriez USB \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Fazi en ur skrivaĂą er restr %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1138
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(mollad %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP ar servijer SMB"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2394
-#: ../../printerdrake.pm_.c:2405 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2673 ../../printerdrake.pm_.c:2700
-#: ../../printerdrake.pm_.c:2870 ../../printerdrake.pm_.c:2872
-msgid " (Default)"
-msgstr " (Dre ziouer)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Diuzit lugerezh ar voullerez"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Penaos eo luget ar voullerez ?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2457
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Kefluniadur"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2458
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Steud a-bell"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "Er furmad 1.2.3.4 e tlefe bezaĂą ar chomlec'h IP"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:864
-msgid "The port number should be an integer!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:87
-#, fuzzy
-msgid "CUPS server IP"
-msgstr "IP ar servijer SMB"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:857
-#, fuzzy
-msgid "Port"
-msgstr "Paour"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Kefluniadur goude staliaĂą"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "AmprouiĂą ar porzhioĂš"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2440
-#: ../../printerdrake.pm_.c:2559
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Moullerez lec'hel"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Moullerez lec'hel"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Dilesadur"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "Poent marc'haĂą doubl %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "Moullerez USB \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Trobarzhell ar voullerez"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "N'ev ket Moullerez lec'hel!\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Trobarzhell ar voullerez"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "KefluniaĂą ar proksioĂš"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart P100 or 1315 or an "
-"HP LaserJet 2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:484
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "O staliaĂą ar pakad %s"
-
-#: ../../printerdrake.pm_.c:489
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:507
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "O staliaĂą ar pakad %s"
-
-#: ../../printerdrake.pm_.c:519
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:536
-msgid "Making printer port available for CUPS..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:546 ../../printerdrake.pm_.c:1020
-#: ../../printerdrake.pm_.c:1134
-msgid "Reading printer database..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote lpd Printer Options"
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"A-benn implijout ur steud moulaĂą lpd a-bell, ret eo deoc'h\n"
-"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:628
-#, fuzzy
-msgid "Remote host name"
-msgstr "Anv an ostiz a-bell"
-
-#: ../../printerdrake.pm_.c:629
-#, fuzzy
-msgid "Remote printer name"
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../printerdrake.pm_.c:632
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "Anv an ostiz a-bell"
-
-#: ../../printerdrake.pm_.c:636
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Anv an ostiz a-bell"
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "DibarzhoĂš moullaĂą SMB (Windows 9x/NT)"
-
-#: ../../printerdrake.pm_.c:705
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Evit moullaĂą war ur voullerez SMB eo ret deoc'h pourvezaĂą\n"
-"anv an ostiz SMB (Ho evezh ! DisheĂąvel e c'hell bezaĂą diouzh\n"
-"e anv ostiz TCP/IP !) ha marteze chomlec'h IP ar servijer moullaĂą,\n"
-"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:706
-msgid "SMB server host"
-msgstr "Anv ar servijer SMB"
-
-#: ../../printerdrake.pm_.c:707
-msgid "SMB server IP"
-msgstr "IP ar servijer SMB"
-
-#: ../../printerdrake.pm_.c:708
-msgid "Share name"
-msgstr "Anv rannet"
-
-#: ../../printerdrake.pm_.c:711
-msgid "Workgroup"
-msgstr "Strollad labour"
-
-#: ../../printerdrake.pm_.c:718
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:722
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:727
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:728
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:738
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:741
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:803
-msgid "NetWare Printer Options"
-msgstr "DibarzhoĂš ar voullerez NetWare"
-
-#: ../../printerdrake.pm_.c:804
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Evit moullaĂą war ur voullerez NetWare eo ret deoc'h pourvezaĂą anv ar\n"
-"servijer moullaĂą NetWare (Ho evezh ! DisheĂąvel e c'hell bezaĂą diouzh e\n"
-"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:805
-msgid "Printer Server"
-msgstr "Servijer moullaĂą"
-
-#: ../../printerdrake.pm_.c:806
-msgid "Print Queue Name"
-msgstr "Anv ar steud moullaĂą"
-
-#: ../../printerdrake.pm_.c:811
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:815
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "DibarzhoĂš ar voullerez NetWare"
-
-#: ../../printerdrake.pm_.c:855
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:856
-msgid "Printer host name"
-msgstr "Anv ar voullerez"
-
-#: ../../printerdrake.pm_.c:860
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "DibarzhoĂš ar voullerez"
-
-#: ../../printerdrake.pm_.c:889 ../../printerdrake.pm_.c:891
-#, fuzzy
-msgid "Printer Device URI"
-msgstr "Trobarzhell ar voullerez"
-
-#: ../../printerdrake.pm_.c:890
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:905
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1006
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Name of printer"
-msgstr "Anv ar moullerez"
-
-#: ../../printerdrake.pm_.c:1008
-#, fuzzy
-msgid "Description"
-msgstr "Spisait dibarzhoĂš"
-
-#: ../../printerdrake.pm_.c:1009
-#, fuzzy
-msgid "Location"
-msgstr "TitouroĂš"
-
-#: ../../printerdrake.pm_.c:1023
-msgid "Preparing printer database..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1114
-#, fuzzy
-msgid "Your printer model"
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../printerdrake.pm_.c:1115
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1120 ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "The model is correct"
-msgstr "Ha reizh eo ?"
-
-#: ../../printerdrake.pm_.c:1121 ../../printerdrake.pm_.c:1122
-#: ../../printerdrake.pm_.c:1125
-#, fuzzy
-msgid "Select model manually"
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../printerdrake.pm_.c:1141
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../printerdrake.pm_.c:1142
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "Peseurt moullerez hoc'h eus ?"
-
-#: ../../printerdrake.pm_.c:1143
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1146
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1222
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "KefluniaĂą ar modem"
-
-#: ../../printerdrake.pm_.c:1223
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1266 ../../printerdrake.pm_.c:1293
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "KefluniaĂą ar proksioĂš"
-
-#: ../../printerdrake.pm_.c:1267
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1294
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1510
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1519
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1523
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1528
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1567
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Ha mennout a rit amprouiĂą moullaĂą skrid ?"
-
-#: ../../printerdrake.pm_.c:1584
-#, fuzzy
-msgid "Test pages"
-msgstr "AmprouiĂą ar porzhioĂš"
-
-#: ../../printerdrake.pm_.c:1585
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1589
-#, fuzzy
-msgid "No test pages"
-msgstr "Ya, moullit an div bajenn arnod"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Print"
-msgstr "Moullerez"
-
-#: ../../printerdrake.pm_.c:1592
-#, fuzzy
-msgid "Standard test page"
-msgstr "Diorren"
-
-#: ../../printerdrake.pm_.c:1595
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "O voullaĂą pajenn(oĂš) skrid..."
-
-#: ../../printerdrake.pm_.c:1600
-#, fuzzy
-msgid "Photo test page"
-msgstr "O voullaĂą pajenn(oĂš) skrid..."
-
-#: ../../printerdrake.pm_.c:1604
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "O voullaĂą pajenn(oĂš) skrid..."
-
-#: ../../printerdrake.pm_.c:1612 ../../printerdrake.pm_.c:1749
-msgid "Printing test page(s)..."
-msgstr "O voullaĂą pajenn(oĂš) skrid..."
-
-#: ../../printerdrake.pm_.c:1637
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Pajenn(oĂš) arnod zo bet kaset d'an diaoul moullaĂą.\n"
-"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
-"Stad ar moullaù :\n"
-"%s\n"
-"\n"
-"Ha mont a ra en-dro reizh ?"
-
-#: ../../printerdrake.pm_.c:1641
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Pajenn(oĂš) arnod zo bet kaset d'an diaoul moullaĂą.\n"
-"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
-"Ha mont a ra en-dro reizh ?"
-
-#: ../../printerdrake.pm_.c:1648
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1669 ../../printerdrake.pm_.c:2735
-#, fuzzy
-msgid "Raw printer"
-msgstr "Moullerez lec'hel"
-
-#: ../../printerdrake.pm_.c:1687
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1689
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:1708
-#: ../../printerdrake.pm_.c:1718
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1695 ../../printerdrake.pm_.c:1734
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1698
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1705 ../../printerdrake.pm_.c:1715
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1710 ../../printerdrake.pm_.c:1720
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1723
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1727
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1731
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1740 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:1747 ../../printerdrake.pm_.c:1748
-#: ../../printerdrake.pm_.c:2719 ../../standalone/drakbackup_.c:743
-#: ../../standalone/drakbackup_.c:2448 ../../standalone/drakfont_.c:580
-#: ../../standalone/drakfont_.c:792
-#, fuzzy
-msgid "Close"
-msgstr "Logodenn USB"
-
-#: ../../printerdrake.pm_.c:1743 ../../printerdrake.pm_.c:1755
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "O tizenaouiĂą ar rouedad"
-
-#: ../../printerdrake.pm_.c:1744 ../../printerdrake.pm_.c:1756
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "O tizenaouiĂą ar rouedad"
-
-#: ../../printerdrake.pm_.c:1746
-#, fuzzy
-msgid "Print option list"
-msgstr "DibarzhoĂš ar voullerez"
-
-#: ../../printerdrake.pm_.c:1768
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1775
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1797 ../../printerdrake.pm_.c:2224
-#: ../../printerdrake.pm_.c:2488
-msgid "Reading printer data..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1817 ../../printerdrake.pm_.c:1845
-#: ../../printerdrake.pm_.c:1880
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "KefluniaĂą ar proksioĂš"
-
-#: ../../printerdrake.pm_.c:1818
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1821
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1823
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1827
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1828
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1832
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1833 ../../printerdrake.pm_.c:1850
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1846
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1854
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1859
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1867
-#, fuzzy
-msgid "New printer name"
-msgstr "Moullerez lec'hel"
-
-#: ../../printerdrake.pm_.c:1870
-#, c-format
-msgid "Transferring %s..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1881
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1890
-msgid "Refreshing printer data..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1898 ../../printerdrake.pm_.c:1969
-#: ../../printerdrake.pm_.c:1981
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "KefluniaĂą ar voullerez"
-
-#: ../../printerdrake.pm_.c:1899
-#, fuzzy
-msgid "Starting network..."
-msgstr "KefluniaĂą ur rouedad"
-
-#: ../../printerdrake.pm_.c:1933 ../../printerdrake.pm_.c:1937
-#: ../../printerdrake.pm_.c:1939
-#, fuzzy
-msgid "Configure the network now"
-msgstr "KefluniaĂą ur rouedad"
-
-#: ../../printerdrake.pm_.c:1934
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Skramm ket kefluniet"
-
-#: ../../printerdrake.pm_.c:1935
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1938
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "KefluniaĂą ar rouedad"
-
-#: ../../printerdrake.pm_.c:1971
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1972
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1982
-#, fuzzy
-msgid "Restarting printing system..."
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../printerdrake.pm_.c:2020
-#, fuzzy
-msgid "high"
-msgstr "Uhel"
-
-#: ../../printerdrake.pm_.c:2020
-#, fuzzy
-msgid "paranoid"
-msgstr "Ankeniet"
-
-#: ../../printerdrake.pm_.c:2021
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2022
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2054
-msgid "Starting the printing system at boot time"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2055
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2078 ../../printerdrake.pm_.c:2116
-#: ../../printerdrake.pm_.c:2146 ../../printerdrake.pm_.c:2179
-#: ../../printerdrake.pm_.c:2284
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2120
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2150
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2208
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Diuzit lugerezh ar voullerez"
-
-#: ../../printerdrake.pm_.c:2209
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Pe seurt parzhadur a vennit ?"
-
-#: ../../printerdrake.pm_.c:2242
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "KefluniaĂą ar voullerez"
-
-#: ../../printerdrake.pm_.c:2255
-#, fuzzy
-msgid "Installing Foomatic..."
-msgstr "O staliaĂą ar pakad %s"
-
-#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2351
-#: ../../printerdrake.pm_.c:2736 ../../printerdrake.pm_.c:2806
-msgid "Printer options"
-msgstr "DibarzhoĂš ar voullerez"
-
-#: ../../printerdrake.pm_.c:2321
-msgid "Preparing PrinterDrake..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2338 ../../printerdrake.pm_.c:2893
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "KefluniaĂą ar voullerez"
-
-#: ../../printerdrake.pm_.c:2358
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Mennout a rit kefluniaĂą ur voullerez ?"
-
-#: ../../printerdrake.pm_.c:2370
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2418
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Moullerez"
-
-#: ../../printerdrake.pm_.c:2422
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Setu da heul ar steudadoĂš moullaĂą.\n"
-"Gallout a rit ouzhpennaĂą lod pe gemmaĂą a re a zo."
-
-#: ../../printerdrake.pm_.c:2423
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Setu da heul ar steudadoĂš moullaĂą.\n"
-"Gallout a rit ouzhpennaĂą lod pe gemmaĂą a re a zo."
-
-#: ../../printerdrake.pm_.c:2449
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2467
-#, fuzzy
-msgid "Change the printing system"
-msgstr "KefluniaĂą ur rouedad"
-
-#: ../../printerdrake.pm_.c:2472 ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Normal Mode"
-msgstr "Boas"
-
-#: ../../printerdrake.pm_.c:2628 ../../printerdrake.pm_.c:2678
-#: ../../printerdrake.pm_.c:2887
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-
-#: ../../printerdrake.pm_.c:2714
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "KefluniaĂą ar modem"
-
-#: ../../printerdrake.pm_.c:2716
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-
-#: ../../printerdrake.pm_.c:2720
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2780
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2784
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../printerdrake.pm_.c:2728 ../../printerdrake.pm_.c:2799
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2729 ../../printerdrake.pm_.c:2800
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2810
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2815
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2824
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2833
-#, fuzzy
-msgid "Print test pages"
-msgstr "O voullaĂą pajenn(oĂš) skrid..."
-
-#: ../../printerdrake.pm_.c:2743 ../../printerdrake.pm_.c:2835
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-
-#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2837
-#, fuzzy
-msgid "Remove printer"
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../printerdrake.pm_.c:2789
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../printerdrake.pm_.c:2813
-#, fuzzy
-msgid "Default printer"
-msgstr "Moullerez lec'hel"
-
-#: ../../printerdrake.pm_.c:2814
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2818 ../../printerdrake.pm_.c:2821
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2822
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2827 ../../printerdrake.pm_.c:2830
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2831
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2839
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-
-#: ../../printerdrake.pm_.c:2841
-#, fuzzy, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-#, fuzzy
-msgid "Proxy configuration"
-msgstr "Kefluniadur goude staliaĂą"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-#, fuzzy
-msgid "port"
-msgstr "Paour"
-
-#: ../../proxy.pm_.c:44
-#, fuzzy
-msgid "Url should begin with 'http:'"
-msgstr "http://... a zlefe bezaĂą ar proksi"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr ""
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "ftp://... a zlefe bezaĂą ar proksi"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-#, fuzzy
-msgid "login"
-msgstr "Belgian"
-
-#: ../../proxy.pm_.c:82
-#, fuzzy
-msgid "password"
-msgstr "Tremenger"
-
-#: ../../proxy.pm_.c:84
-#, fuzzy
-msgid "re-type password"
-msgstr "Tremenger ebet"
-
-#: ../../proxy.pm_.c:88
-#, fuzzy
-msgid "The passwords don't match. Try again!"
-msgstr "An tremegerioĂš ne glot ket"
-
-#: ../../raid.pm_.c:35
-#, 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:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "N'hellan ket skrivaĂą e %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid sac'het"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid sac'het (raidtools a vank emichaĂąs ?)"
-
-#: ../../raid.pm_.c:152
-#, 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:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, ur steuĂąvaer urzhiadoĂš mareadek."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"servijout a ra apmd evit evezhiaĂą stad an daspugner hag he enrollaĂą dre "
-"syslog.\n"
-"Gallout a ra ivez servijout da lazhaĂą an ardivink pa vez izel an daspugner."
-
-#: ../../services.pm_.c:18
-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 ""
-"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
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"Ur goulev standard UNIX eo cron evit seveniĂą goulevioĂš diouzh c'hoant an\n"
-"arveriaded da goulzoĂš mareadek steuĂąvaet. vixie cron a ouzhpenn kalzig a "
-"arc'hweloĂš\n"
-"d'ar cron UNIX diazez, en o zouez surentez ha dibarzhoĂš kefluniaĂą gwelloc'h."
-
-#: ../../services.pm_.c:23
-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 a zegas implij al logodenn d'an arloadoĂš Linux mod-skrid evel\n"
-"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
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:414
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Ur servijer evit ar Gwiad Bedel eo Apache. Implijet e vez evit servijaĂą\n"
-"restroĂš HTML ha CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"An diaoul gourservijer kenrouedad (anvet inetd ordinal) a loc'h ur\n"
-"bochad a servijoĂš kenrouedad all diouzh an ezhomm. E karg loc'haĂą meur a "
-"servijoĂš\n"
-"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:33
-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:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Ar pakad-maĂą a garg ar stokellaoueg diuzet evel termenet e\n"
-"/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:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: ../../services.pm_.c:43
-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 ""
-"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:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-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:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-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:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Oberia/Dizoberia an holl etrefasoĂš rouedad kefluniet da laĂąsaĂą\n"
-"da vare al loc'haĂą."
-
-#: ../../services.pm_.c:52
-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 a zo ur c'homenad brudet evit rannaĂą restroĂš dre rouedadoĂš TCP/IP.\n"
-"Ar servij-maĂą a bourvez arc'hweloĂš ur servijer NFS, a vez kefluniaet dre ar\n"
-"restr /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-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:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"SkoraĂą PCMCIA a zegas an tu da implijonut traoĂš evel ethernet ha modemoĂš\n"
-"e urzhiataeroĂš hezoug. Ne vo ket kroget hep bezaĂą bet kefluniet, rak-se eo "
-"diarvar\n"
-"e staliaĂą war ardivinkoĂš n'o deus ket ezhomm anezhaĂą."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Ar c'hartenner porzhioĂš a vera kevreadennoĂš RPC, a zo implijet gant\n"
-"komenadoĂš evel NFS ha NIS. Ar servijer kartenn-porzhioĂš a rankfe mont en-"
-"dro\n"
-"war ardivinkoĂš anezho servijerien komenadoĂš a implij ar reizhiad RPC."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Ur Gwazour Treuzdougen Postel eo Postfix, a zo ar goulev a\n"
-"zilech posteloĂš etre un ardivink hag un all."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Enroll hag assav poul dizurzh ar reizhiad evit genel niveroĂš\n"
-"dargouezhek gant gwelloc'h perzhded."
-
-#: ../../services.pm_.c:69
-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:71
-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 ""
-"An diaoul routed a ro an tu da vremanaat ent emgefreek an taolenn henchaĂą\n"
-"IP dre ar c'homenad RIP. Tra ma vez implijet aliesig RIP war rouedadoĂš "
-"bihan,\n"
-"ezhomm a zo komenadoĂš henchaĂą kemplezhoc'h evit rouedadoĂš rouestlet."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-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:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-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:78
-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 ""
-"Ar c'homenad rwho a bourchas da implijerien a-bell roll an holl arveriaded a "
-"zo\n"
-"kevreet ouzh un ardivink ma da en-dro warnaĂą an diaoul rwhod (heĂąvel ouzh "
-"finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr ""
-
-#: ../../services.pm_.c:81
-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 a zo ur gwazerezh ma enroll drezaĂą an diaouled niverus o "
-"c'hemennadoĂš\n"
-"e kerzhlevrioĂš liesseurt ar reizhiad. Ur mennozh mat eo seveniĂą ingal syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: ../../services.pm_.c:84
-#, 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:110 ../../services.pm_.c:152
-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"
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Moullerez"
-
-#: ../../services.pm_.c:123
-#, fuzzy
-msgid "Internet"
-msgstr "dedennus"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:923
-#, fuzzy
-msgid "System"
-msgstr "Reizhiad/Diazez"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "StlennvonioĂš"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "trobarzhell"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "running"
-msgstr "Ho evezh"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "stopped"
-msgstr "OuzhpennaĂą"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr ""
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-
-#: ../../services.pm_.c:224
-#, fuzzy
-msgid "On boot"
-msgstr "Gwrizienn"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Meuziad LaĂąsaĂą"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Rann"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "AmprouiĂą ar c'hefluniadur"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "dedennus"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Liesvedia"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Diorren"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Anv ar gevreadenn"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Etrefas arveriad/X"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "Anv ar servijer SMB"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "C'hoarioĂš"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "O staliaĂą pakadoĂš..."
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"N'hellaĂą ket lenn ho taolenn barzhaĂą, re vrein eo evidon :(\n"
-"Klask a rin kenderc'hel en ur ziverkaĂą ar parzhadurioĂš siek"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Fazi!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Kefluniadur goude staliaĂą"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Kefluniadur goude staliaĂą"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:83
-#, fuzzy
-msgid "Creating auto install floppy"
-msgstr "O krouiĂą ur bladennig staliaĂą emgefreek"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Gourc'hemennoĂš!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "StaliaĂą"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "OuzhpennaĂą un arveriad"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "O furmadiĂą ar restr saveteiĂą %s"
-
-#: ../../standalone/drakbackup_.c:438
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:439
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:443
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:465
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:544 ../../standalone/drakbackup_.c:591
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:592 ../../standalone/drakbackup_.c:656
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Restr gwareziĂą siek"
-
-#: ../../standalone/drakbackup_.c:604
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Restr gwareziĂą siek"
-
-#: ../../standalone/drakbackup_.c:605
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:655
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Restr gwareziĂą siek"
-
-#: ../../standalone/drakbackup_.c:663
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-msgid ""
-"\n"
-" FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:676
-#, fuzzy
-msgid " Error during mail sending. \n"
-msgstr "Fazi en ur lenn ar restr %s"
-
-#: ../../standalone/drakbackup_.c:717 ../../standalone/drakbackup_.c:728
-#: ../../standalone/drakbackup_.c:739 ../../standalone/drakfont_.c:788
-#, fuzzy
-msgid "File Selection"
-msgstr "Diuzadenn strollad pakadoĂš"
-
-#: ../../standalone/drakbackup_.c:744
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:779
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:780
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:781
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:782
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:783
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:784
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:801
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-
-#: ../../standalone/drakbackup_.c:828
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:829 ../../standalone/drakbackup_.c:853
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:851 ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Lemel ar steudad"
-
-#: ../../standalone/drakbackup_.c:889
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../standalone/drakbackup_.c:928
-#, fuzzy
-msgid "Users"
-msgstr "Anv arveriad"
-
-#: ../../standalone/drakbackup_.c:954
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:957
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../standalone/drakbackup_.c:962
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Klaskit adarre mar plij"
-
-#: ../../standalone/drakbackup_.c:972
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Klaskit adarre mar plij"
-
-#: ../../standalone/drakbackup_.c:978
-#, fuzzy
-msgid "Remember this password"
-msgstr "Tremenger ebet"
-
-#: ../../standalone/drakbackup_.c:1042 ../../standalone/drakbackup_.c:2038
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/drakbackup_.c:1049 ../../standalone/drakbackup_.c:2046
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Diuzit lugerezh ar voullerez"
-
-#: ../../standalone/drakbackup_.c:1075 ../../standalone/drakbackup_.c:2879
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1078 ../../standalone/drakbackup_.c:2883
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-
-#
-#: ../../standalone/drakbackup_.c:1084 ../../standalone/drakbackup_.c:2895
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Klikit war ur parzhadur mar plij"
-
-#: ../../standalone/drakbackup_.c:1090 ../../standalone/drakbackup_.c:2901
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1096
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-
-#: ../../standalone/drakbackup_.c:1102
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1143
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Restr gwareziĂą siek"
-
-#: ../../standalone/drakbackup_.c:1146
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1152 ../../standalone/drakbackup_.c:1193
-#: ../../standalone/drakbackup_.c:2003
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1185 ../../standalone/drakbackup_.c:1995
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:2009
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Restr gwareziĂą siek"
-
-#: ../../standalone/drakbackup_.c:1257
-#, fuzzy
-msgid "Network"
-msgstr "Taolenn"
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1287 ../../standalone/drakbackup_.c:1291
-#: ../../standalone/drakbackup_.c:1295
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1288 ../../standalone/drakbackup_.c:1292
-#: ../../standalone/drakbackup_.c:1295
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1289 ../../standalone/drakbackup_.c:1293
-#: ../../standalone/drakbackup_.c:1295
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1290 ../../standalone/drakbackup_.c:1294
-#: ../../standalone/drakbackup_.c:1295
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1302
-#, fuzzy
-msgid "Use daemon"
-msgstr "Anv arveriad"
-
-#: ../../standalone/drakbackup_.c:1307
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-
-#: ../../standalone/drakbackup_.c:1313
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Diuzit ar yezh da implijout, mar plij."
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Implijout gwelladur ar bladenn galet ?"
-
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Rouedad/Diaouled"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1359
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1401
-msgid "What"
-msgstr "Petra"
-
-#: ../../standalone/drakbackup_.c:1406
-msgid "Where"
-msgstr "Pelec'h"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "When"
-msgstr "Pa"
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "More Options"
-msgstr "DibarzhoÚ ar mollad :"
-
-#: ../../standalone/drakbackup_.c:1435 ../../standalone/drakbackup_.c:2791
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../standalone/drakbackup_.c:1453
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-
-#: ../../standalone/drakbackup_.c:1455
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1466
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1530
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-
-#: ../../standalone/drakbackup_.c:1531
-#, fuzzy
-msgid "Backup system"
-msgstr "KefluniaĂą reizhiadoĂš restroĂš"
-
-#: ../../standalone/drakbackup_.c:1532
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1535
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1617
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1618
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1620
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1622
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1624
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1625
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1626
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Parzhadur"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1629
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1631
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1633
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1743
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1745
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1776
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1777
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1876
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../standalone/drakbackup_.c:1894
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1912
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1962
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Restr gwareziĂą siek"
-
-#: ../../standalone/drakbackup_.c:1964
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../standalone/drakbackup_.c:1992
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Restr gwareziĂą siek"
-
-#: ../../standalone/drakbackup_.c:2073
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Assevel adalek ar pladennig"
-
-#: ../../standalone/drakbackup_.c:2075
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2133
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../standalone/drakbackup_.c:2135
-#, fuzzy
-msgid "Other Media"
-msgstr "All"
-
-#: ../../standalone/drakbackup_.c:2141
-#, fuzzy
-msgid "Restore system"
-msgstr "StaliaĂą ar reizhiad"
-
-#: ../../standalone/drakbackup_.c:2142
-#, fuzzy
-msgid "Restore Users"
-msgstr "AdaozaĂą adalek ar restr"
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Restore Other"
-msgstr "AdaozaĂą adalek ar restr"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2149
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2150
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2207
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2215
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Neuziet"
-
-#: ../../standalone/drakbackup_.c:2256 ../../standalone/drakbackup_.c:2281
-#: ../../standalone/drakbackup_.c:2302 ../../standalone/drakbackup_.c:2323
-#: ../../standalone/drakbackup_.c:2341 ../../standalone/drakbackup_.c:2373
-#: ../../standalone/drakbackup_.c:2389 ../../standalone/drakbackup_.c:2409
-#: ../../standalone/drakbackup_.c:2428 ../../standalone/drakbackup_.c:2450
-#: ../../standalone/drakfont_.c:578
-msgid "Help"
-msgstr "Skoazell"
-
-#: ../../standalone/drakbackup_.c:2259 ../../standalone/drakbackup_.c:2286
-#: ../../standalone/drakbackup_.c:2305 ../../standalone/drakbackup_.c:2326
-#: ../../standalone/drakbackup_.c:2344 ../../standalone/drakbackup_.c:2392
-#: ../../standalone/drakbackup_.c:2412 ../../standalone/drakbackup_.c:2431
-msgid "Previous"
-msgstr "Diaraog"
-
-#: ../../standalone/drakbackup_.c:2261 ../../standalone/drakbackup_.c:2328
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "EnrollaĂą"
-
-#: ../../standalone/drakbackup_.c:2307
-#, fuzzy
-msgid "Build Backup"
-msgstr "Restr gwareziĂą siek"
-
-#: ../../standalone/drakbackup_.c:2346 ../../standalone/drakbackup_.c:3023
-#, fuzzy
-msgid "Restore"
-msgstr "AdaozaĂą adalek ar restr"
-
-#: ../../standalone/drakbackup_.c:2394 ../../standalone/drakbackup_.c:2414
-#: ../../standalone/drakbackup_.c:2435
-msgid "Next"
-msgstr "A heul"
-
-#: ../../standalone/drakbackup_.c:2468
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2489
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2512
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Dibabit pakadoĂš da staliaĂą"
-
-#: ../../standalone/drakbackup_.c:2540
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2563
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Diuzit ar yezh da implijout, mar plij."
-
-#: ../../standalone/drakbackup_.c:2584
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Diuzit ar yezh da implijout, mar plij."
-
-#: ../../standalone/drakbackup_.c:2606
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Diuzit ar yezh da implijout, mar plij."
-
-#: ../../standalone/drakbackup_.c:2628
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2649
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2729
-#, fuzzy
-msgid "Backup system files"
-msgstr "Restr gwareziĂą siek"
-
-#: ../../standalone/drakbackup_.c:2731
-#, fuzzy
-msgid "Backup user files"
-msgstr "Restr gwareziĂą siek"
-
-#: ../../standalone/drakbackup_.c:2733
-#, fuzzy
-msgid "Backup other files"
-msgstr "Restr gwareziĂą siek"
-
-#: ../../standalone/drakbackup_.c:2735 ../../standalone/drakbackup_.c:2766
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2757
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2761
-#, fuzzy
-msgid "Sending files..."
-msgstr "EnrollaĂą er restr"
-
-#: ../../standalone/drakbackup_.c:2831
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2889
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../standalone/drakbackup_.c:2907
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2913
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-
-#: ../../standalone/drakbackup_.c:2979
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../standalone/drakbackup_.c:3010
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Kefluniadur"
-
-#: ../../standalone/drakbackup_.c:3014
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Kefluniadur"
-
-#: ../../standalone/drakbackup_.c:3018
-#, fuzzy
-msgid "Backup Now"
-msgstr "KefluniaĂą reizhiadoĂš restroĂš"
-
-#: ../../standalone/drakbackup_.c:3043
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3094
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3124
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3132
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3171
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3197 ../../standalone/drakbackup_.c:3272
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-"Copyright (C) 2001 MandrakeSoft gant DUPONT Sebastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3199 ../../standalone/drakbackup_.c:3274
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3213
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3251
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3260
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3288
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Staliadur %s a zo sac'het. Degouezhet eo ar fazi a heul :"
-
-#: ../../standalone/drakfloppy_.c:64
-msgid "usage: drakfloppy\n"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:68
-#, fuzzy
-msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/drakfloppy_.c:69
-#, fuzzy
-msgid "Module name"
-msgstr "DibarzhoÚ ar mollad :"
-
-#: ../../standalone/drakfloppy_.c:69
-#, fuzzy
-msgid "Size"
-msgstr "Ment: %s"
-
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
-#, fuzzy
-msgid "drakfloppy"
-msgstr "Assevel adalek ar pladennig"
-
-#: ../../standalone/drakfloppy_.c:91
-#, fuzzy
-msgid "boot disk creation"
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
-msgid "default"
-msgstr "dre ziouer"
-
-#: ../../standalone/drakfloppy_.c:115
-#, c-format
-msgid "DrakFloppy Error: %s"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:126
-#, fuzzy
-msgid "kernel version"
-msgstr "KefluniaĂą ar proksioĂš"
-
-#: ../../standalone/drakfloppy_.c:132
-#, fuzzy
-msgid "General"
-msgstr "Rummel"
-
-#: ../../standalone/drakfloppy_.c:137
-#, fuzzy
-msgid "Expert Area"
-msgstr "Mod mailh"
-
-#: ../../standalone/drakfloppy_.c:140
-msgid "mkinitrd optional arguments"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:141
-#, fuzzy
-msgid "Add a module"
-msgstr "OuzhpennaĂą un arveriad"
-
-#: ../../standalone/drakfloppy_.c:161
-#, fuzzy
-msgid "force"
-msgstr "Dilec'hiaĂą"
-
-#: ../../standalone/drakfloppy_.c:162
-msgid "if needed"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:163
-msgid "omit scsi modules"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:164
-msgid "omit raid modules"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:200
-#, fuzzy
-msgid "Remove a module"
-msgstr "EilpennaĂą urzh ar pajennoĂš"
-
-#: ../../standalone/drakfloppy_.c:222
-msgid "Output"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:234
-msgid "Build the disk"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:422
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:427
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:429
-#, c-format
-msgid "Unable to fork: %s"
-msgstr ""
-
-#: ../../standalone/drakfloppy_.c:433
-#, c-format
-msgid ""
-"Unable to close properly mkbootdisk: \n"
-" %s \n"
-" %s"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:230
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:232
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:254
-#, fuzzy
-msgid "no fonts found"
-msgstr "%s ket kavet"
-
-#: ../../standalone/drakfont_.c:262 ../../standalone/drakfont_.c:304
-#: ../../standalone/drakfont_.c:353 ../../standalone/drakfont_.c:413
-#: ../../standalone/drakfont_.c:422 ../../standalone/drakfont_.c:448
-#: ../../standalone/drakfont_.c:460 ../../standalone/drakfont_.c:473
-#, fuzzy
-msgid "done"
-msgstr "Graet"
-
-#: ../../standalone/drakfont_.c:266
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:302
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:305
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:328
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:351
-#, fuzzy
-msgid "Fonts copy"
-msgstr "FurmadiĂą ar bladennig"
-
-#: ../../standalone/drakfont_.c:354
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "O prientiĂą ar staliadur"
-
-#: ../../standalone/drakfont_.c:358
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:362
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:369 ../../standalone/drakfont_.c:385
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:373 ../../standalone/drakfont_.c:389
-#: ../../standalone/drakfont_.c:409
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:378 ../../standalone/drakfont_.c:393
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:400
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:404
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:417
-msgid "Restart XFS"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:458 ../../standalone/drakfont_.c:468
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:470
-#, fuzzy
-msgid "xfs restart"
-msgstr "strishaat"
-
-#: ../../standalone/drakfont_.c:477 ../../standalone/drakfont_.c:761
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:551
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "FurmadiĂą parzhadurioĂš"
-
-#: ../../standalone/drakfont_.c:566
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Uninstall Fonts"
-msgstr "O tistaliaĂą ar RPMoĂš"
-
-#: ../../standalone/drakfont_.c:571
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Kefluniadur"
-
-#: ../../standalone/drakfont_.c:573
-#, fuzzy
-msgid "Font List"
-msgstr "Poent marc'haĂą"
-
-#: ../../standalone/drakfont_.c:740
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Dibabit ar parzhadur a vennit furmadiĂą"
-
-#: ../../standalone/drakfont_.c:744
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:748
-#, fuzzy
-msgid "StarOffice"
-msgstr "Burev"
-
-#: ../../standalone/drakfont_.c:752
-msgid "Abiword"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:756
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Moullerez"
-
-#: ../../standalone/drakfont_.c:793
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:829
-#, fuzzy
-msgid "Install List"
-msgstr "StaliaĂą ar reizhiad"
-
-#: ../../standalone/drakfont_.c:859
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:896
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-#, fuzzy
-msgid "Selected All"
-msgstr "Diuzit ar restr"
-
-#: ../../standalone/drakfont_.c:898
-#, fuzzy
-msgid "Remove List"
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../standalone/drakfont_.c:915 ../../standalone/drakfont_.c:935
-msgid "Initials tests"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:916
-msgid "Copy fonts on your system"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:917
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:918
-#, fuzzy
-msgid "Post Install"
-msgstr "StaliaĂą"
-
-#: ../../standalone/drakfont_.c:936
-msgid "Remove fonts on your system"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:937
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Dilezel ar staliadur"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:196
-#, fuzzy
-msgid "Internet Connection Sharing"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/drakgw_.c:122
-msgid "Sorry, we support only 2.4 kernels."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:134
-msgid "Internet Connection Sharing currently enabled"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:135
-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 ""
-
-#: ../../standalone/drakgw_.c:139
-#, fuzzy
-msgid "disable"
-msgstr "Taolenn"
-
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
-msgid "dismiss"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
-#, fuzzy
-msgid "reconfigure"
-msgstr "KefluniaĂą X"
-
-#: ../../standalone/drakgw_.c:142
-#, fuzzy
-msgid "Disabling servers..."
-msgstr "O tinoiĂą trobarzhelloĂš..."
-
-#: ../../standalone/drakgw_.c:150
-#, fuzzy
-msgid "Internet connection sharing is now disabled."
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/drakgw_.c:159
-msgid "Internet Connection Sharing currently disabled"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:160
-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 ""
-
-#: ../../standalone/drakgw_.c:164
-#, fuzzy
-msgid "enable"
-msgstr "Taolenn"
-
-#: ../../standalone/drakgw_.c:171
-msgid "Enabling servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:176
-#, fuzzy
-msgid "Internet connection sharing is now enabled."
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/drakgw_.c:197
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:223
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:224
-#, fuzzy, c-format
-msgid "Interface %s"
-msgstr "dedennus"
-
-#: ../../standalone/drakgw_.c:232
-msgid "No network adapter on your system!"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:233
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:239
-msgid "Network interface"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:240
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:249
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:267
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Skramm ket kefluniet"
-
-#: ../../standalone/drakgw_.c:268
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:273
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Kefluniadur goude staliaĂą"
-
-#: ../../standalone/drakgw_.c:274
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "KefluniaĂą ar modem"
-
-#: ../../standalone/drakgw_.c:276
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:288
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:293
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:294
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "IP ar servijer SMB"
-
-#: ../../standalone/drakgw_.c:295
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:302
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:313
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:321
-#, fuzzy
-msgid "Firewalling configuration detected!"
-msgstr "o lenn ar c'hefluniadur"
-
-#: ../../standalone/drakgw_.c:322
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:329
-#, fuzzy
-msgid "Configuring..."
-msgstr "KefluniaĂą IDE"
-
-#: ../../standalone/drakgw_.c:330
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:366
-#, fuzzy, c-format
-msgid "Problems installing package %s"
-msgstr "O staliaĂą ar pakad %s"
-
-#: ../../standalone/drakgw_.c:549
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:566
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:567
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:568
-#, fuzzy
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/drakgw_.c:573
-#, fuzzy
-msgid "Internet connection sharing configuration"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/drakgw_.c:580
-#, 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:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "marc'haù sac'het : "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Anv an ostiz : "
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Seurt : "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Treuzell : "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "KefluniaĂą servijoĂš"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Kefluniadur"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Driver"
-msgstr "Servijer"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Meuziad LaĂąsaĂą"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "KefluniaĂą ur rouedad"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Skoazeller..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "AmprouiĂą ar c'hefluniadur"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Anv ar gevreadenn"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "Kefluniadur"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Bevaat"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Bevaat"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Anv ar gevreadenn"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Treuzell"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:51
-msgid "Setting security level"
-msgstr "O termeniĂą al live surentez"
-
-#: ../../standalone/draksec_.c:57
-#, fuzzy
-msgid "Setting security user"
-msgstr "O termeniĂą al live surentez"
-
-#: ../../standalone/drakxconf_.c:47
-#, fuzzy
-msgid "Control Center"
-msgstr "Anv ar gevreadenn"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Dibabit ar benveg a vennit staliaĂą"
-
-#: ../../standalone/drakxtv_.c:55
-msgid ""
-"XawTV isn't installed!\n"
-"\n"
-"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
-"module in \"/etc/modules\") nor installed xawtv, please send the\n"
-"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
-"with subject \"undetected TV card\".\n"
-"\n"
-"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Kanadian (Kebek)"
-
-#: ../../standalone/drakxtv_.c:72
-msgid "USA (broadcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:73
-msgid "China (broadcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:73
-msgid "Japan (broadcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:73
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:74
-msgid "East Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:74
-#, fuzzy
-msgid "France [SECAM]"
-msgstr "Gall"
-
-#: ../../standalone/drakxtv_.c:74
-#, fuzzy
-msgid "Ireland"
-msgstr "Islandek"
-
-#: ../../standalone/drakxtv_.c:74
-msgid "West Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:75
-#, fuzzy
-msgid "Australia"
-msgstr "a-steud"
-
-#: ../../standalone/drakxtv_.c:75
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:76
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:77
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:113
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:115
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:116
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:120
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:128
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:131
-#, fuzzy
-msgid "There was an error while scanning for TV channels"
-msgstr "Ur fazi a zo bet en ur staliaù ar pakadoÚ :"
-
-#: ../../standalone/drakxtv_.c:132
-msgid "XawTV isn't installed!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:135
-msgid "Have a nice day!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:136
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:148
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:149
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
-
-#: ../../standalone/livedrake_.c:24
-#, fuzzy
-msgid "Change Cd-Rom"
-msgstr "KemmaĂą ar spister"
-
-#: ../../standalone/livedrake_.c:25
-#, 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 ""
-"Kemmit ho Cd-Rom!\n"
-"\n"
-"Lakait el lenner ar Cd-Rom warnaĂą an diketenn \"%s\" mar plij ha gwaskit Mat "
-"eo da c'houde.\n"
-"Ma n'emaĂą ket ganeoc'h gwaskit NullaĂą evit chom hep staliaĂą ar Cd-Rom-se."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr ""
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:516
-msgid "logdrake"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-#, fuzzy
-msgid "/File/_New"
-msgstr "RestroÚ :\n"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Restr/_EnrollaĂą"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Restr/-"
-
-#: ../../standalone/logdrake_.c:108
-#, fuzzy
-msgid "/_Options"
-msgstr "Parzhadur"
-
-#: ../../standalone/logdrake_.c:109
-#, fuzzy
-msgid "/Options/Test"
-msgstr "Parzhadur"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr ""
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Anv arveriad"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "AmprouiĂą ar porzhioĂš"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "Syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-#, fuzzy
-msgid "search"
-msgstr "Klask"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:191
-#, fuzzy
-msgid "matching"
-msgstr "O vrasjediĂą"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:196
-#, fuzzy
-msgid "Choose file"
-msgstr "Dibabit un obererezh"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:211
-#, fuzzy
-msgid "Content of the file"
-msgstr "Anv ar gevreadenn"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, fuzzy, c-format
-msgid "please wait, parsing file: %s"
-msgstr "O prientiĂą ar staliadur"
-
-#: ../../standalone/logdrake_.c:407
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "KefluniaĂą ar proksioĂš"
-
-#: ../../standalone/logdrake_.c:408
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:416
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:419
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:420
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:421
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:424
-#, fuzzy
-msgid "service setting"
-msgstr "dedennus"
-
-#: ../../standalone/logdrake_.c:425
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:435
-#, fuzzy
-msgid "load setting"
-msgstr "O furmadiĂą"
-
-#: ../../standalone/logdrake_.c:436
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:449
-#, fuzzy
-msgid "alert configuration"
-msgstr "KefluniaĂą ar proksioĂš"
-
-#: ../../standalone/logdrake_.c:450
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:493
-#, fuzzy
-msgid "Save as.."
-msgstr "Meuziad LaĂąsaĂą"
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "serial_usb kavet ebet\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Kendarvan an trede nozelenn ?"
-
-#: ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#: ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "O tinoiĂą trobarzhelloĂš..."
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Diuzit ur gartenn c'hrafek"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Trobarzhell loc'haĂą"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "o lenn ar c'hefluniadur"
-
-#: ../../standalone/tinyfirewall_.c:44
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "o lenn ar c'hefluniadur"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Dibabit ho yezh"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Diuzit renkad ar staliadur"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "DinoiĂą ar bladenn galet"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "KefluniaĂą al logodenn"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Dibabit ho stokellaoueg"
-
-#: ../../steps.pm_.c:19
-#, fuzzy
-msgid "Security"
-msgstr "rodellek"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "KefluniaĂą reizhiadoĂš restroĂš"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "FurmadiĂą parzhadurioĂš"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Dibabit pakadoĂš da staliaĂą"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "StaliaĂą ar reizhiad"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "OuzhpennaĂą un arveriad"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "KefluniaĂą ur rouedad"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "KefluniaĂą servijoĂš"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "StaliaĂą ar c'harger loc'haĂą"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "KrouiĂą ur bladennig loc'haĂą"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "KefluniaĂą X"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "StaliaĂą ar reizhiad"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Dilezel ar staliadur"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Fazi en ur zigeriù %s evit skrivaù : %s"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "o lenn ar c'hefluniadur"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Gortozit mar plij, o prientiĂą ar staliadur"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer (client)"
-msgstr "DibarzhoĂš ar voullerez NetWare"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Burev"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Gnome Workstation"
-msgstr "TitouroĂš"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Workstation"
-msgstr "TitouroĂš"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "KDE Workstation"
-msgstr "TitouroĂš"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - Video"
-msgstr "Liesvedia"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Database"
-msgstr "StlennvonioĂš"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Tools to ease the configuration of your computer"
-msgstr "Mennout a rit amprouiĂą ar c'hefluniadur ?"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - Sound"
-msgstr "Liesvedia"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Teuliadur"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet station"
-msgstr "KefluniaĂą ar proksioĂš"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia station"
-msgstr "Liesvedia"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Kefluniadur"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Office Workstation"
-msgstr "TitouroĂš"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Servijer"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer server"
-msgstr "DibarzhoĂš ar voullerez NetWare"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Game station"
-msgstr "Teuliadur"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - Graphics"
-msgstr "Liesvedia"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-
-#: ../../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:999
-msgid "Personal Finance"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet gateway"
-msgstr "dedennus"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - CD Burning"
-msgstr "Liesvedia"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Scientific Workstation"
-msgstr "TitouroĂš"
-
-#~ msgid "Complete (%dMB)"
-#~ msgstr "Boas (%dMo)"
-
-#~ msgid "Minimum (%dMB)"
-#~ msgstr "BihanaĂą (%d Mo)"
-
-#~ msgid "Recommended (%dMB)"
-#~ msgstr "Erbedet (%dMo)"
-
-#~ msgid "CDROM / DVDROM"
-#~ msgstr "CDROM / DVDROM"
-
-#, fuzzy
-#~ msgid "Utilities"
-#~ msgstr "MavegoĂš/Skrid"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Marc'haĂą"
-
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Ebet"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Dibabit ar ment nevez"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "DibarzhoĂš ar voullerez lpd a-bell"
-
-#~ msgid "You may now provide options to module %s."
-#~ msgstr "BremaĂą e c'hellit pourvezaĂą e zibarzhoĂš d'ar mollad %s"
-
-#~ msgid "mount failed"
-#~ msgstr "marc'haĂą sac'het"
-
-#~ msgid "Low"
-#~ msgstr "Izel"
-
-#~ msgid "Medium"
-#~ msgstr "Etre"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Nebeut a wellaenoĂš evit al live surentez-maĂą, an hini pouezusaĂą eo bezaĂą\n"
-#~ "muioc'h a evezhiadennoĂš hag a wiriadennoĂš surentez."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Liesvedia"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Mailh"
-
-#, fuzzy
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "BremaĂą e c'hellit diuz ho takad-eur diouzh al lec'h ma chomit ennaĂą.\n"
-#~ "\n"
-#~ "\n"
-#~ "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."
-
-#, fuzzy
-#~ msgid "Connect to Internet"
-#~ msgstr "Anv ar gevreadenn"
-
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Anv ar gevreadenn"
-
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "KefluniaĂą ur rouedad"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Da beseurt pladenn e mennit dilec'hiaĂą ?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Dibabit ar pakadoĂš a vennit staliaĂą, mar plij."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "TitouroĂš"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "TitouroĂš"
-
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "Anv arveriad"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Ur servijer evit ar Gwiad Bedel eo Apache. Implijet e vez evit servijaĂą\n"
-#~ "restroĂš HTML ha CGI."
-
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) a zo ur Servijer AnvioĂš Domani (DNS) a zo implijet evit\n"
-#~ "amdreiĂą anvioĂš ostiz e chomlec'hioĂš IP."
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#~ msgid "Active"
-#~ msgstr "Bevaat"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Ur voullerez, doare \"%s\", zo bet dinoet war "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Trobarzhell voullerez lec'hel"
-
-#~ msgid "Printer Device"
-#~ msgstr "Trobarzhell ar voullerez"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Dibabit ar ment a vennit staliaĂą"
-
-#~ msgid "Total size: "
-#~ msgstr "Ment hollek : "
-
-#~ msgid "Please wait, "
-#~ msgstr "Gortozit mar plij,"
-
-#~ msgid "Total time "
-#~ msgstr "Amzer hollek"
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Implijout ar c'hefluniadur o ren evit X11 ?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Ouzh pe drobarzhell eo luget ho moullerez \n"
-#~ "(taolit evezh /dev/lp0 a zo kevatal da LPT1:) ?\n"
-
-#~ msgid "New"
-#~ msgstr "Nevez"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Amsklaer (%s), bezit spisoc'h\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr "? (%s dre ziouer)"
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Ho tibab ? (%s dre ziouer, skrivit `none' evit hini ebet)"
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Dibabit ar reizhadur a glot gant ho stokellaoueg er roll a-us"
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Diuzit :\n"
-#~ "\n"
-#~ " - Neuziet : Ma 'z oc'h kustumet a-walc'h gant GNU/Linux, tu vo neuze "
-#~ "deoc'h\n"
-#~ " dibab an implij pennaĂą evit ho ardivink. Sellit a-is evit munudoĂš.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mailh : Ma 'z oc'h en ho pleud gant GNU/Linux ha mennet da seveniù\n"
-#~ " ur staliadur neuziet-tre. Evel evit ar renkad staliaĂą \"Neuziet\" e "
-#~ "vo\n"
-#~ " tu deoc'h diuz an implij evit hor reizhiad.\n"
-#~ " Hogen mar plij, NA ZIBABIT KET SE NEMET MA OUZIT PEZH EMAOC'H OC'H "
-#~ "OBER !"
-
-#, fuzzy
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "\t* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ "\t at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ "\t will then have a complete collection of software installed in order "
-#~ "to compile, debug and format source code,\n"
-#~ "\t or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ "\t SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ "\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "An dibaboĂš liessek evit implij ho ardivink (en ur c'houlakaat neuze hoc'h "
-#~ "eus\n"
-#~ "dibabet pe \"Neuziet\" pe \"Mailh\" da renkad staliaĂą) a zo evel a-"
-#~ "heul :\n"
-#~ "\n"
-#~ " - Boas : dibabit se ma 'z oc'h mennet da implijout ho ardivink dreist-"
-#~ "holl\n"
-#~ " evit un implij pemdeziek (labour burev, aozerezh grafikoĂš hag all). "
-#~ "Na\n"
-#~ " c'hortozit ket e vije staliaet nep kempuner, maveg diorren h.a.\n"
-#~ "\n"
-#~ " - Diorren : evel m'hen diskouez an anv. Dibabit se ma 'z oc'h mennet "
-#~ "da\n"
-#~ " implijout ho ardivink dreist-holl evit diorren meziantoĂš. Neuze ho po "
-#~ "un\n"
-#~ " heuliad klok a meziantoĂš staliet a-benn kempunaĂą, dizraenaĂą ha "
-#~ "furmadiĂą\n"
-#~ " kod tarzh, pe grouiĂą pakadoĂš meziantel.\n"
-#~ "\n"
-#~ " - Servijer : dibabit se m'eo gouestlet an ardivink a stalhit Mandrake "
-#~ "Linux\n"
-#~ " warnaĂą da vezaĂą impliet evel servijer. ur servijer restroĂš (NFS pe "
-#~ "SMB),\n"
-#~ " ur servijer moullaĂą (moullaĂą diouzh komenad Unix lp (line printer) pe "
-#~ "zoare\n"
-#~ " Windows SMB), ur servijer dilesadur (NIS), ur servijer stlennvon hag "
-#~ "all.\n"
-#~ " Da heul, na c'hortozit staliadur tamm kinkladur ebet (KDE, "
-#~ "GNOME...).\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Gallout a rit bremaĂą diuz ar strollad pakadoĂš a vennit\n"
-#~ "staliaĂą pe vremanaat.\n"
-#~ "\n"
-#~ "DrakX a glasko neuze hag-eĂą hoc'h eus egor a-walc'h evit staliaĂą an holl "
-#~ "anezho.\n"
-#~ "Ma n'hoc'h eus ket, e kemenno deoc'h. Ma vennit kenderc'hel evelato, e "
-#~ "seveno staliadur\n"
-#~ "an holl strolladoĂš diuzet hogen e laosko pakadoĂš 'zo dezho nebeutoc'h a\n"
-#~ "dalvoudegezh. E traoĂą ar roll e c'hellit diuz an dibarzh\n"
-#~ "\"Diuz pakadoĂš unan hag unan\" ; en degouezh-se e vo ret deoc'h furchal\n"
-#~ "a-dreuz tremen 1000 pakad..."
-
-#, fuzzy
-#~ 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 ""
-#~ "Gallout a rit bremaĂą skrivaĂą dibarzhoĂš sifrennaĂą. Ma n'oc'h ket sur "
-#~ "petra\n"
-#~ "skrivaĂą, an titouroĂš reizh ho po digant ho PMG."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Skrivit :\n"
-#~ "\n"
-#~ " - Chomlec'h IP : m'eo dianav deoc'h, goulennit digant merour ho "
-#~ "rouedad.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Rouedmaskl : \"255.255.255.0\" a zo peurvuiaù un dibab mat. M'hoc'h "
-#~ "eus\n"
-#~ "douetaĂąs, goulennit digant merour ho rouedad.\n"
-#~ "\n"
-#~ "\n"
-#~ " - IP emgefreek : Ma ra ho rouedad gant ar c'homenad bootp pe dhcp, "
-#~ "diuzit \n"
-#~ "an dibarzh-se. Ma vez diuzet, n'eus ezhomm talvoud ebet er \"Chomlec'h IP"
-#~ "\".\n"
-#~ "M'hoc'h eus douetaĂąs, goulennit digant merour ho rouedad.\n"
-
-#, 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 ""
-#~ "Ma implij ho rouedad NIS, diuzit \"Implijout NIS\". Ma ne ouzit ket, "
-#~ "goulennit\n"
-#~ "digant merour ho rouedad."
-
-#~ 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 ""
-#~ "Gallout a rit bremaĂą skrivaĂą dibarzhoĂš sifrennaĂą. Ma n'oc'h ket sur "
-#~ "petra\n"
-#~ "skrivaĂą, an titouroĂš reizh ho po digant ho PMG."
-
-#~ 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 ""
-#~ "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."
-
-#, fuzzy
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "StaliaĂą pakadoĂš rinegouriezh a c'hellit m'eo bet kefluniet reizh ho\n"
-#~ "kevreadenn ouzh ar Genrouedad. Dibabit da gentaĂą ur melezour a vennit "
-#~ "ezkargaĂą\n"
-#~ "pakadoĂš diwarnaĂą ha da c'houde diuzit ar pakadoĂš da staliaĂą.\n"
-#~ "\n"
-#~ "Taolit evezh e rankit diuz ar melezour hag ar rinegouriezh hervez al\n"
-#~ "lezennoĂš o ren du-se."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "BremaĂą e c'hellit krouiĂą unan pe vuioc'h a gont(oĂš) arveriad \"boutin\",\n"
-#~ "dre enebiez ouzh ar gont arveriad \"dreistwiriet\", root hec'h anv. "
-#~ "Gallout\n"
-#~ "a rit krouiĂą unan pe vuioc'h a gont(oĂš) evit kement den a fell deoc'h\n"
-#~ "aotren da implijout an urzhiataer. Taolit evezh pep kont arveriad he\n"
-#~ "devo he dibarzhoĂš dezhi (endro grafikel, kefluniadur ar goulevioĂš,\n"
-#~ "h.a.) hag he renkell \"Er-gĂŞr\" dezhi, ma vo enrollet an dibarzhoĂš-se\n"
-#~ "enni.\n"
-#~ "\n"
-#~ "\n"
-#~ "Da gentaĂą holl, krouit ur gont evidoc'h-chwi ! Ha pa vefec'h arveriad "
-#~ "nemetaĂą\n"
-#~ "an ardivink, ARABAT deoc'h ereaĂą evel root evit implij pemdeziek ar "
-#~ "reizhiad : \n"
-#~ "arvarus-kenaĂą eo a-fet surentez. Ur fazi stokell a zo a-walc'h evit "
-#~ "lakaat\n"
-#~ "boud ho reizhiad.\n"
-#~ "\n"
-#~ "\n"
-#~ "Gant se, gwelloc'h vije deoc'h ereaĂą ouzh ar reizhiad en ur implijout ar\n"
-#~ "gont arveriad ho po krouet amaĂą, hag ereaĂą evel root evit kefridioĂš a\n"
-#~ "vererezh ha trezerc'hel hepken."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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"
-#~ "ur bladenn galet) a zo enni ar rann loc'haĂą. Nemet ma ouifec'h a-zevri\n"
-#~ "ez eo disheĂąvel, dibabit \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Gedvezh a-raok loc'haù ar skeudenn dre ziouer : a spisa an niver a\n"
-#~ "zekvet eilennoĂš a rankfe gortoz ar c'harger loc'haĂą kent loc'haĂą ar "
-#~ "skeudenn\n"
-#~ "gentaĂą. Talvoudus eo war reizhiadoĂš a loc'h diouzhtu adalek ar bladenn "
-#~ "galet\n"
-#~ "goude bezaĂą enaouet ar stokellaoueg. Ne gortoz ket ar c'harger loc'haĂą "
-#~ "m'eo\n"
-#~ "disoĂąjet \"gedvezh\" pe dermenet da mann.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mod video : a spisa ar mod skrid VGA a rankfe bezaù diuzet pa "
-#~ "loc'her.\n"
-#~ "An talvoudoÚ a heul a zo hegerz :\n"
-#~ " * boas : a ziuz ar mod skrid 80x25 boas.\n"
-#~ " * <niver> : a implij ar mod skrid a zegouezh."
-
-#, fuzzy
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "BremaĂą eo poent kefluniaĂą ar reizhiad X Window, a zo kraonienn\n"
-#~ "EGA (Etrefas Grafikel Arveriad) Linux. Evit ar c'hefridi-se, ret eo\n"
-#~ "deoc'h kefluniaĂą ho kartenn grafek hag ho skramm. Emgefreek eo ar bras\n"
-#~ "eus al lankadoĂš-se, evelato, neuze gwiriaĂą pezh a zo bet graet hag\n"
-#~ "asantiĂą d'ar c'hefluniadur a zlefe bezaĂą ho labour :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Pa 'z eo graet ar c'hefluniaĂą, laĂąset e vo X (nemet ma c'houlennit\n"
-#~ "digant DrakX chom hep hen ober) e seurt ma c'hellit gwiriaĂą ha\n"
-#~ "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."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "M'eo siek un dra bennak en ho kefluniadur X, implijit an dibarzhoĂš-se\n"
-#~ "a-benn kefluniaĂą reizh ar reizhiad X Window."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Ma kavit gwelloc'h implijout un ereadur grafikel, diuzit \"Ya\". Mod "
-#~ "all,\n"
-#~ "diuzit \"Ket\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "EmaĂą ho reizhiad war-nes adloc'haĂą.\n"
-#~ "\n"
-#~ "Goude adloc'haĂą, kargaĂą a raio ho reizhiad Mandrake Linux nevez ent "
-#~ "emgefreek.\n"
-#~ "Ma vennit loc'haĂą ur reizhiad korvoiĂą all, lennit ar gourc'hemennoĂš "
-#~ "ouzhpenn\n"
-#~ "mar plij."
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "SkrivaĂą /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "FurmadiĂą an holl"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Goude furmadiĂą an holl barzhadurioĂš,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "kollet e vo holl roadoĂš war ar parzhadurioĂš-se"
-
-#~ msgid "Reload"
-#~ msgstr "AdkargaĂą"
-
-#~ msgid "Remote queue"
-#~ msgstr "Steud a-bell"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Ya, moullit ur bajenn arnod ASCII"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Ya, moullit ur bajenn arnod PostScript"
-
-#~ msgid "Paper Size"
-#~ msgstr "Ment ar paper"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Stlepel ar bajenn goude moullaĂą ?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "DibarzhoĂš ar sturier Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "DibarzhoĂš donder liv"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "MoullaĂą skrid evel PostScript ?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Kempenn an efed-diri ?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Niver a bajennoĂš dre bajenn ziskas"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "MarzoĂš DehoĂš/Kleiz e poentoĂš (1/72 ur meudad)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "MarzoĂš Krec'h/TraoĂą e poentoĂš (1/72 ur meudad)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "DibarzhoĂš GhostScript ouzhpenn"
-
-#~ msgid "Extra Text options"
-#~ msgstr "DibarzhoĂš skrid ouzhpenn"
-
-#~ 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 ""
-#~ "Pep steud moullaĂą (m'eo kaset an dleadoĂš moullaĂą davetaĂą) en deus\n"
-#~ "ezhomm un anv (lp alies) hag ur renkell spool kevret gantaĂą. Pe anv\n"
-#~ "ha renkell a zo da implijout evit ar steud-maĂą ha penaos eo luget ar "
-#~ "voullerrez ?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Anv ar steud"
-
-#~ msgid "Spool directory"
-#~ msgstr "Renkell ar spool"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Evit sevel ur reizhiad suroc'h, gwelloc'h deoc'h diuz \"Implijout ur "
-#~ "restr kuzhet\"\n"
-#~ "hag \"Implijout tremegerioĂš MD5\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Ma implij ho rouedad NIS, diuzit \"Implijout NIS\". Ma ne ouzit ket, "
-#~ "goulennit\n"
-#~ "digant merour ho rouedad."
-
-#~ msgid "yellow pages"
-#~ msgstr "pajennoĂš melen"
-
-#~ 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."
-
-#~ 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 "Choice"
-#~ msgstr "Dibab"
-
-#~ 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 "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Configure timezone"
-#~ msgstr "KefluniaĂą an takad-eur"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(a c'hell breinaĂą roadoĂš)"
-
-#~ 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 "Customized"
-#~ msgstr "Neuziet"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Implijout ur restr kuzhet"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Implijout tremegerioĂš MD5"
-
-#~ msgid "Package"
-#~ msgstr "Pakad"
-
-#~ msgid "Tree"
-#~ msgstr "Gwezenn"
-
-#~ msgid "Sort by"
-#~ msgstr "RummaĂą dre"
-
-#~ msgid "Category"
-#~ msgstr "Rummad"
-
-#~ 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 "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 "Checking dependencies"
-#~ msgstr "O wiriaĂą sujedigezhioĂš"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Ar pakadoĂš a-heul a zo war-nes bezaĂą distaliet"
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Pe bakad a glask"
-
-#~ 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 "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 ?"
-
-#~ 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 ""
-#~ "Kement parzhadur a zo bet nevez termenet a zle bezaĂą furmadet a-benn\n"
-#~ "e implijout (furmadiĂą a dalvez krouiĂą ur reizhiad restroĂš). Er poent-se,\n"
-#~ "e c'hellit mennout adfurmadiĂą parzhadurioĂš 'zo o vezaĂą endeo evit "
-#~ "diverkaĂą\n"
-#~ "ar roadoÚ a zo enno. Ho evezh : n'eo ket ret adfurmadiù parzhadurioÚ o\n"
-#~ "vezaĂą endeo, dreist-holl ma 'z eus enno restroĂš pe roadoĂš a vennit "
-#~ "derc'hel.\n"
-#~ "SkouerioĂš dibar eo /home ha /usr."
-
-#~ 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 ""
-#~ "EmaĂą ar pakadoĂš diuzet o vezaĂą staliaet bremaĂą. Un nebeut munut\n"
-#~ "e zlefe padout an obererezh-se nemet m'ho pije dibabet bremanaat\n"
-#~ "ur reizhiad o vezaĂą, en degouezh-se e c'hell kemer muioc'h a amzer\n"
-#~ "zoken a-raok na grogfe ar bremanaat."
-
-#~ msgid "Forget the changes?"
-#~ msgstr "DisoĂąjal ar c'hemmoĂš"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Peseurt eo ho logodenn ?"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "SpisterioĂš emgefreek"
-
-#~ 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 ""
-#~ "A-benn kavout ar spisterioĂš hegerz e klaskin meur a hini.\n"
-#~ "C'hwildaĂą a raio ho skramm...\n"
-#~ "Gallout a rit e tizenaouiĂą ma fell deoc'h, klevet a rit ur bip pa vo echu"
-
-#~ 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?"
-#~ msgstr ""
-#~ "Klask kavout ar spisterioĂš hegerz a c'hellan (da sk. 800x600).\n"
-#~ "A-wechoĂš, evelato, e c'hell sac'haĂą an ardivink.\n"
-#~ "Mennout a rit klask ?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "Mod reizh ebet kavet\n"
-#~ "Klaskit gant ur gartenn video pe ur skramm all"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Klask ent emgefreek ar spisterioĂš"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Logodenn Apple ADB"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Logodenn Apple ADB (2 nozelenn)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Logodenn Apple ADB (3 nozelenn pe vuioc'h)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Logodenn Apple ADB "
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Logodenn Apple USB (2 nozelenn)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Logodenn Apple USB (3 nozelenn pe vuioc'h)"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "Logodenn bus ATI"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Logodenn bus Microsoft"
-
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logodenn bus Logitech"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "Logodenn USB (3 nozelenn pe vuioc'h)"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Stumm 2.1A pe uheloc'h (a-steud)"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (a-steud)"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (a-steud)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (a-steud)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Logodenn rummel (a-steud)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Kenglotus Microsoft (a-steud)"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Logodenn rummel 3 nozelenn (a-steud)"
-
-#~ msgid "nfs mount failed"
-#~ msgstr "marc'haĂą NFS sac'het"
-
-#~ msgid "Cryptographic"
-#~ msgstr "Rinegouriezh"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Ha mennout a rit kefluniaĂą ur rouedad lec'hel evit ho reizhiad ?"
-
-#~ msgid "Show less"
-#~ msgstr "Diskouez nebeutoc'h"
-
-#~ msgid "Show more"
-#~ msgstr "Diskouez muioc'h"
-
-#~ msgid "tie"
-#~ msgstr "frondenn"
-
-#~ msgid "brunette"
-#~ msgstr "duardez"
-
-#~ msgid "girl"
-#~ msgstr "plac'h"
-
-#~ msgid "woman-blond"
-#~ msgstr "meleganez"
-
-#~ msgid "automagic"
-#~ msgstr "emhud"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Petra eo reizhadur ho stokellaoueg ?"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Klask kavout kartennoĂš PCMCIA ?"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Klask kavout trobarzhelloĂš %s ?"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr ""
-#~ "Ha mennout a rit kefluniaĂą ur gevreadenn gervel dre modem evit ho "
-#~ "reizhiad ?"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Klask kavout trobarzhelloĂš PCI ?"
-
-#~ msgid "Searching root partition."
-#~ msgstr "O klask ar parzhadur gwrizienn."
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr "%s : N'eo ket ur parzhadur gwrizienn, diuzit un all mar plij."
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr ""
-#~ "Dibabit ur parzhadur d'ober anezhaĂą ho parzhadur gwrizienn, mar plij."
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "N'hoc'h eus ket a-walc'h a egor evit Lnx4win !"
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U Mo"
-
-# 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
-#
-# '¤' is the 'ù' (ntilde) in cp437 encoding.
-# '\227' is the 'Ăš' (ugrave) in cp437 encoding.
-#
-#~ 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 ""
-#~ "Degemer mat e LILO, an dibaber reizhiad oberia¤ !\n"
-#~ "\n"
-#~ "Evit rolla¤ an dibabo— aotreet, stokit <TAB>.\n"
-#~ "\n"
-#~ "Evit karga¤ unan anezho, skrivit e anv ha stokit <ENKAS> pe c'hortozit %d "
-#~ "eilenn evit al loc'ha¤ dre ziouer.\n"
-#~ "\n"
-
-# 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 ""
-#~ "Degemer mat e SILO, an dibaber reizhiad oberian~ !\n"
-#~ "\n"
-#~ "Evit rollan~ an dibabou aotreet, stokit <TAB>.\n"
-#~ "\n"
-#~ "Evit kargan~ unan anezho, skrivit e anv ha stokit <ENKAS> pe c'hortozit %"
-#~ "d eilenn evit al loc'han~ dre ziouer.\n"
-#~ "\n"
-
-#~ msgid "SILO main options"
-#~ msgstr "DibarzhoĂš pennaĂą SILO"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Setu da heul enmontoĂš a vez e SILO.\n"
-#~ "Gallout a rit ouzhpennaĂą lod pe gemmaĂą a re a zo."
-
-#~ msgid "This label is already in use"
-#~ msgstr "War implij eo ar skridennad-se endeo"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "Staliadur SILO zo sac'het. Degouezhet eo ar fazi a heul :"
-
-#~ 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 a glasko da gentaĂą kavout unan pe vuioc'h a azasaer SCSI PCI.\n"
-#~ "Ma gav anezhaĂą (pe anezho) ha ma oar pe sturier(ien) implijout, e (o)\n"
-#~ "enlakaat a raio ent emgefreek.\n"
-#~ "\n"
-#~ "\n"
-#~ "M'eo ho azasaer SCSI ur gartenn ISA, pe m'eo ur gartenn PCI hogen\n"
-#~ "ne oar ket DrakX pe sturier implijout evit ar gartenn-se, pe n'hoc'h eus\n"
-#~ "tamm azasaer SCSI ebet, goulennet e vo diganeoc'h neuze hag-eĂą hoc'h\n"
-#~ "eus unan pe get. Ma n'hoc'h eus hini, eilgeriit \"Ket\". M'hoc'h eus\n"
-#~ "unan pe vuioc'h, eilgeriit \"Ya\". Ur roll sturierien a zeuio neuze\n"
-#~ "war wel, a vo ret deoc'h diuz unan anezho.\n"
-#~ "\n"
-#~ "\n"
-#~ "Goude m'ho po diuzet ar sturier, DrakX a c'houlenno ma vennit spisaat\n"
-#~ "dibarzhoĂš evitaĂą. Da gentaĂą, klaskit leuskel ar sturier amprouiĂą\n"
-#~ "ar periant : peurliesaù e da mat en-dro.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ma ne ra ket, na zisoĂąjit ket an titouroĂš war ho periant a c'hellit\n"
-#~ "kavout en ho teuliadur pe digant Windows (m'hoc'h eus hemaĂą war ho\n"
-#~ "reizhiad), evel m'eo aliet gant ar sturlevr staliaĂą. An dibarzhoĂš a\n"
-#~ "vo ret deoc'h pourvezaĂą d'ar sturier eo a zo e kaoz."
-
-#~ msgid "Shutting down"
-#~ msgstr "O tizenaouiĂą"
-
-#~ msgid "useless"
-#~ msgstr "diezhomm"
-
-#~ 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 ""
-#~ "Dibabit \"StaliaĂą\" ma n'eus ket a stumm kent Linux bet staliaet,\n"
-#~ "pe ma vennit implijout meur a stumm pe a zasparzhadenn.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dibabit \"Bremanaat\" ma vennit hizivaat ur stumm kent Mandrake Linux :\n"
-#~ "5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-#~ "2000\n"
-#~ "pe 7.0 (Air)."
-
-#~ 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 "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/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 Hardware Support"
-#~ msgstr "Etrefas arveriad/MeraĂą ardivinkaj X"
-
-#~ msgid "Utilities/Archiving"
-#~ msgstr "MavegoĂš/Diellerezh"
-
-#~ msgid "Utilities/System"
-#~ msgstr "MavegoĂš/Reizhiad"
-
-#~ 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 "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/Fonts/True type"
-#~ msgstr "Reizhiad/NodrezhoĂš/True Type"
-
-#~ msgid "System/Libraries"
-#~ msgstr "Reizhiad/Mezarc'hioĂš"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
deleted file mode 100644
index c406f3c6f..000000000
--- a/perl-install/share/po/bs.po
+++ /dev/null
@@ -1,12336 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# Vedran Ljubovic <vljubovic@smartnet.ba>, 2001
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-02-28 20:49GMT\n"
-"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
-"Language-Team: Bosnian <prijevodi@lugbih.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "KonfiguriĹĄi sve glave odvojeno"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Koristi Xinerama ekstenziju"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "KonfiguriĹĄi samo karticu \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Multi-head konfiguracija"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"VaĹĄ sistem podrĹžava konfiguraciju viĹĄe glava.\n"
-"Šta želite učiniti?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafička karta"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Izaberite grafičku kartu"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Izaberite X server"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Izaberite X drajver"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X drajver"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Koju konfiguraciju XFree Ĺželite imati?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"VaĹĄa kartica moĹže imati podrĹĄku za 3D hardversko ubrzanje ali samo sa\n"
-"XFree %s. VaĹĄu karticu podrĹžava XFree %s koji moĹže imati bolju podrĹĄku za 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "VaĹĄa kartica moĹže imati podrĹĄku za 3D hardversko ubrzanje sa XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"VaĹĄa kartica moĹže imati podrĹĄku za 3D hardversko ubrzanje sa XFree %s,\n"
-"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s sa EKSPERIMENTALNIM 3D hardverskim ubrzanjem"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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ĹĄa kartica moĹže imati podrĹĄku za 3D hardversko ubrzanje sa XFree %s,\n"
-"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR.\n"
-"VaĹĄu karticu podrĹžava XFree %s koji moĹže imati bolju podrĹĄku za 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installation display driver)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfiguracija"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Izaberite veličinu memorije vaše grafičke karte"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Izaberite opcije za server"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Izaberite monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Dva kritična parametra su brzina vertikalnog osvježenja, što je brzina\n"
-"kojom se cijeli ekran osvjeĹžava, i najvaĹžnije brzina horizontalne\n"
-"sinhronizacije, ĹĄto je brzina kojm se prikazuju skan-linije.\n"
-"\n"
-"VEOMA JE VAŽNO da ne navedete tip monitora čiji je sinhronizacioni\n"
-"raspon izvan mogućnosti vašeg monitora: time možete oštetiti monitor.\n"
-" Ako niste sigurni, izaberite najmanju opciju."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Brzina horizontalnog osvjeĹžavanja"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Brzina vertiaklnog osvjeĹžavanja"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor nije konfigurisan"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafička karta još uvijek nije konfigurisana"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Rezolucije joĹĄ nisu odabrane"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Želite li testirati konfiguraciju?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Upozorenje: testiranje ove grafičke karte može zalediti računar"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Testiranje konfiguracije"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probajte izmjeniti neke parametre"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "DoĹĄlo je do greĹĄke"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "NapuĹĄtam za %d sekundi"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Da li je ovo ispravna vrijednost?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "DoĹĄlo je do greĹĄke, probajte izmjeniti neke parametre"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Rezolucija"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Izaberite rezoluciju i dubinu boja"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Grafička karta: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "JoĹĄ"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspertni mod"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "PrikaĹži sve"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezolucije"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Raspored tastature: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Tip miĹĄa: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Uređaj miša: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitor HorizSync: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitor VertRefresh: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Grafička karta: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikacija grafičke karte: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Grafička memorija: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Dubina boja: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Rezolucija: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 server: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 drajver: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pripremam X-Window konfiguraciju"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Šta želite učiniti?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Izmjena Monitora"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Izmjena Grafičke kartice"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Izmjena Server opcija"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Izmjena Rezolucije"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "PrikaĹži informacije"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Testiraj ponovo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Izlaz"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"ZadrĹžati izmjene?\n"
-"Trenutna konfiguracija je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X u startanju"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Mogu podesiti vaš računar da automatski pokrene X nakon boota.\n"
-"Želite li da se X pokrene kada bootate?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Molimo izvrĹĄite logout i zatim koristitite Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 boja (8 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 hiljada boja (15 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 hiljada boja (16 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliona boja (24 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milijarde boja (32 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB ili viĹĄe"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standardna VGA, 640x480 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Kompatibilna, 1024x768 na 87 Hz sa preplitanjem (bez 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 na 87 Hz sa preplitanjem, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor koji može postići 1600x1200 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor koji može postići 1600x1200 na 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Prvi sektor boot particije"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Prvi sektor diska (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO instalacija"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Gdje Ĺželite smjestiti bootloader?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/grub instalacija"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO sa tekstualnim menijem"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO sa grafičkim menijem"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Bootanje iz DOS/Windowsa (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Glavne opcije bootloadera"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Bootloader koji ćete koristiti"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Bootloader instalacija"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Boot uređaj"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ne radi na starim BIOSima)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Kompaktno"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "kompaktno"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Video mod"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Čekanje prije bootanja default preslike"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Ĺ ifra"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Ĺ ifra (ponovo)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Ograniči opcije komandne linije"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "ograniči"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Čisti /tmp prilikom svakog boota"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Precizna veličina RAMa ako je potrebno (pronađeno %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Omogući više profila"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Navedite veličinu rama u MB"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Opcija ``Ograniči opcije komandne linije'' je beskorisna bez šifre"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Molimo pokuĹĄajte ponovo"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Ĺ ifre se ne poklapaju"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Init Poruka"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Otvori čekanje firmware-a"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Kernel Boot Timeout"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Omogući boot sa CDa?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Omogući boot sa OFa?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Default OS?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Navedene su razne stavke.\n"
-"Možete dodati nove ili promjeniti postojeće."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Dodaj"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Gotovo"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Izmjeni"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Koju vrstu stavke Ĺželite dodati?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Ostali OSi (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Ostali OSi (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Ostali OSi (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Preslika"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Append"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Čitaj-piši"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabela"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Nesigurno"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Labela"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Default"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd-veličina"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "NoVideo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Ukloni stavku"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Prazna labela nije dozvoljena"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Morate navesti image kernela"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Morate navesti root particiju"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Ova labela je već u upotrebi"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Pronađeno %s %s interfejsa"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Imate li neki drugi?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Imate li ijedan %s interfejs?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Ne"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Da"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Pogledaj hardware info"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instaliram drajver za %s karticu %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Koji %s drajver ću pokušati?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"U nekim slučajevima, %s drajver treba imati dodatne informacije za\n"
-"ispravan rad, iako on obično radi dobro i bez njih. Želite li navesti neke\n"
-"ekstra opcije za njega ili dozvoliti drajveru da ispita vaš računar za sve\n"
-"informacije koje mu trebaju? Povremeno, ispitivanje može zaglaviti računar,\n"
-"ali ne bi trebalo izazvati nikakvu ĹĄtetu."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Ispitivanje"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Navedi opcije"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Sada moĹžete navesti opcije za modul %s.\n"
-"Obratite paĹžnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sada moĹžete navesti opcije za modul %s. Opcije su u formatu ``ime=vrijednost "
-"ime2=vrijednost2 ...''.\n"
-"Na primjer, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcije modula"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Učitavanje modula %s nije uspjelo.\n"
-"Želite li probati opet sa drugim parametrima?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "pristup X programima"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "pristup rpm alatima"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "dozvoli \"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "pristup administrativnim datotekama"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(već dodan %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Ova ĹĄifra je previĹĄe jednostavna"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Molimo navedite korisničko ime"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Korisničko ime smije sadržati samo mala slova, brojeve, `-' i `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Ovo korisničko ime je već dodano"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Dodaj korisnika"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Unesite korisnika\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Prihvati korisnika"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Pravo ime"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Korisničko ime"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikona"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Autologin"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Mogu podesiti vaš računar da automatski prijavi jednog korisnika.\n"
-"Želite li koristiti ovu mogućnost?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Izaberite default korisnika:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Izaberite window manager koji će se pokretati:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Molimo izaberite jezik koji ćete koristiti."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Možete izabrati i druge jezike koji će biti dostupni nakon instalacije"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Svi"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Dozvoli svim korisnicima"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Ručno izaberi"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Bez dijeljenja"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Paket %s treba biti instaliran. Da li ga Ĺželite instalirati?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Možete eksportovati koristeći NFS ili Sambu. Koji želite"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Nedostaje obavezan paket %s"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Odustani"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "Pokreni userdrake"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"Dijeljenje po-korisniku koristi grupu \"fileshare\". \n"
-"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "DobrodoĹĄli u Crackers"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "LoĹĄ"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standard"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Visok"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "ViĹĄi"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoičan"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Ovaj nivo treba koristiti pažljivo. On čini vaš sistem lakšim za upotrebu,\n"
-"ali vrlo osjetljivim: ne smije biti korišten za računar koji je spojen na\n"
-"druge ili na Internet. Nema pristupa ĹĄifrom."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Šifra je sada aktivirana, ali korištenje za mrežni računar još nije "
-"preporučeno."
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Ovo je standardna sigurnost koja je preporučena za računar koji će biti "
-"koriĹĄten za spajanje na Internet kao klijent."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Već postoje određena ograničenja, a više automatskih provjera se pokreće "
-"svaku noć."
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
-"server.\n"
-"Sigurnost je sada dovoljno visoka za upotrebu sistema kao servera koji "
-"prima\n"
-"konekcije sa mnogo klijenata. Napomena: ako je vaš računar samo klijent na "
-"Internetu, moĹžda je bolje da izaberete niĹži nivo."
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Baziran na prethodnom nivou, ali sada je sistem potpuno zatvoren.\n"
-"Sigurnosne osobine na maksimumu."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Izaberite nivo sigurnosti"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Nivo sigurnosti"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Koristi libsafe za servere"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Biblioteka koja brani od napada \"buffer overflow\" i \"format string\"."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Dobro doĹĄli u %s izbornik operativnog sistema!\n"
-"\n"
-"Izaberite operativni sistem na listi gore ili\n"
-"sačekajte %d sekundi do default boota.\n"
-"\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Dobro doĹĄli u GRUB izbornik operativnog sistema!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Koristite tipke %c i %c za izbor jedne od stavki."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Pritisnite enter za bootanje izabranog OSa, 'e' za editovanje"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "komandi prije bootanja, ili 'c' za komandnu liniju."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Osvjetljene stavke će biti bootane automatski za %d sekundi."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "nema dovoljno prostora u /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Desktop"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Start Menu"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Ne moĹžete instalirati bootloader na %s particiju\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "pomoć još nije implementirana.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Konfiguracija stila boota"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Datoteka"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Datoteka/_Izlaz"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>I"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "NewStyle Categorizing Monitor"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "NewStyle Monitor"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Tradicionalni Monitor"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Tradicionalni Gtk+ Monitor"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Pokreni Aurora-u prilikom boota"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub mod"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot mod"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Trenutno koristite %s kao boot manager.\n"
-"Kliknite na Konfiguriši kako bi se pokrenuo čarobnjak za podešavanje."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "KonfiguriĹĄi"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Sistem mod"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Pokreni X-Window sistem na startu"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Ne, ne Ĺželim da se autologiram"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Da, Ĺželim da se autologiram sa ovim (korisnik, desktop)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "ne mogu otvoriti /etc/inittab za čitanje: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minuta"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minuta"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekundi"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Ne mogu napraviti screenshot prije particioniranja"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Francuska"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Kostarika"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "Belgija"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Češka"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Njemačka"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Grčka"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "NorveĹĄka"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Ĺ vedska"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Nizozemska"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Italija"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Austrija"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "SAD"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Molimo najprije napravite backup vaĹĄih podataka"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Pročitajte pažljivo!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Ako planirate koristiti aboot, budite paĹžljivi i ostavite slobodnog prostora "
-"(2048 sektora je dovoljno)\n"
-"na početku diska"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "GreĹĄka"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Čarobnjak"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Izaberi akciju"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Imate jednu veliku FAT particiju\n"
-"(koju najvjerovatnije koristi MicroSoft Dos/Windows).\n"
-"Predlažem da najprije promjenite veličinu te particije\n"
-"(kliknite na nju, zatim na \"Promjeni veličinu\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Molimo kliknite na particiju"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detalji"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Prazno"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Ostalo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Tipovi file sistema:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Kreiraj"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tip"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Koristite ``%s'' umjesto toga"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "ObriĹĄi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Najprije koristite ``Demontiraj''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Nakon promjene tipa particije %s, svi podaci na ovoj particiji će biti "
-"izgubljeni"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Izaberi particiju"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Izaberi drugu particiju"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Izlaz"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Prebaci u ekspertni mod"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Prebaci u normalni mod"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "PoniĹĄti"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Svejedno nastavljate?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Izlaz bez spaĹĄavanja"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Izlazite bez pisanja tabele particija?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Želite li spasiti izmjene /etc/fstab"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Auto alokacija"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "ObriĹĄi sve"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Informacije o hard disku"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Sve primarne particije su u upotrebi"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Ne mogu dodati viĹĄe particija"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Da biste imali joĹĄ particija, molimo pobriĹĄite jednu kako bi se mogla "
-"kreirati extended particija"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Snimi tabelu particija"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Vrati tabelu particija"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Spasi tabelu particija"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Ponovo učitaj tabelu particija"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Automatsko montiranje izmjenjivog medija"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Izaberite datoteku"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Backup tabela particija nema istu veličinu\n"
-"Ipak nastavljate?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Upozorenje"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Ubacite disketu u jedinicu\n"
-"Svi podaci na toj disketi će biti izgubljeni"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "PokuĹĄavam da spasim tabelu particija"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Detaljne informacije"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Tačka montiranja"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Opcije"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Promjeni veličinu"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "PremjeĹĄtanje"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatiraj"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Montiraj"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Dodaj na RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Dodaj na LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Demontiraj"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Ukloni sa RAIDa"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Ukloni sa LVMa"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Modificiraj RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Koristi za loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Napravi novu particiju"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Početni sektor: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Veličina u MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Tip datotečnog sistema: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Tačka montiranja: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Preference: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Ukloniti loopback datoteku?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Izmjena tipa particije"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Koji datotečni sistem želite?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Prebacujem sa ext2 na ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Gdje Ĺželite montirati loopback datoteku %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Gdje želite montirati uređaj %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Ne mogu izmjeniti tačku montiranja jer se ova particija koristi za "
-"loopback.\n"
-"Najprije uklonite loopback"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Izračunavam granice FAT filesistema"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Mijenjam veličinu"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Ovoj particiji ne možete mijenjati veličinu"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Svi podaci na toj particiji bi trebali biti backupovani"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Nakon promjene veličine particije %s, svi podaci na njoj će biti izgubljeni"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Izaberite novu veličinu"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Nova veličina u MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Na koji disk je Ĺželite premjestiti?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Na koji sektor je Ĺželite premjestiti?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "PremjeĹĄtam"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "PremjeĹĄtam particiju..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Izaberite postojeći RAID na koji ćete dodati"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "novi"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Izaberite postojeći LVM na koji ćete dodati"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "Naziv LVMa?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Ova particija se ne moĹže koristiti za loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Naziv loopback datoteke: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Dajte naziv datoteke"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Datoteku već koristi drugi loopback, izaberite drugo ime"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Datoteka već postoji. Želite li je koristiti?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Opcije montiranja"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Razni"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "uređaj"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "nivo"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "veličina chunka"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Budite oprezni: ova operacija je opasna"
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Koju vrstu particioniranja?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Žalim, ali ipak neću prihvatiti kreiranje /boot particije ovdje (na cilindru "
-">1024).\n"
-"Ili ćete koristiti LILO i stvar neće raditi, ili nećete koristiti LILO pa "
-"vam ne treba ni /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Particija koju ste izabrali da dodate kao root (/) je fizički locirana "
-"iznad\n"
-"1024og cilindra hard diska, tako da nemate /boot particiju.\n"
-"Ako planirate koristiti LILO boot manager, pazite da dodate /boot particiju"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Izabrali ste softversku RAID particiju kao root (/).\n"
-"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
-"Pazite da dodate /boot particiju"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Tabela particija za uređaj %s će biti zapisana na disk!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr ""
-"Biće potrebno da rebootate prije nego što izmjene mogu stupiti na snagu"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Nakon formatiranja particije %s, svi podaci na toj particiji će biti "
-"izgubljeni"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formatiram"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formatiram loopback datoteku %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formatiram particiju %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Sakrij datoteke"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Prebaci datoteke na novu particiju"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"Direktorij %s već sadrži neke podatke\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "PremjeĹĄtam datoteke na novu particiju"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Kopiram %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Uklanjam %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "particija %s je od sada poznata kao %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Uređaj: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS slovo uređaja: %s (pretpostavka)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tip: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Ime: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Početak: sector %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Veličina: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektora"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cilindar %d do %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formatirana\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Nije formatirana\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Montirana\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Loopback datoteka(e):\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Particija koja se boota po defaultu\n"
-" (za MS-DOS boot, ne za lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Nivo %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Veličina chunka %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-diskovi %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Naziv loopback datoteke: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Postoji mogućnost da je ova\n"
-"particija Driver particija, vjerovatno\n"
-"biste je trebali ostaviti na miru.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Ova posebna Bootstrap\n"
-"particija je za\n"
-"dvojni boot vaĹĄeg sistema.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Veličina: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-diskovi %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Tip tabele particija: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "na busu %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Opcije: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Ključ za kodiranje datotečnog sistema"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Izaberite vaš ključ za kodiranje datotečnog sistema"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Ova ĹĄifra je previĹĄe jednostavna (mora biti duga najmanje %d karaktera)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "Ĺ ifre se ne poklapaju"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Ĺ ifra"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Ĺ ifra (joĹĄ jednom)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Promjeni tip"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Molimo kliknite na medij"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "TraĹži servere"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatiranje %s nije uspjelo"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Ne znam kako formatirati %s tipa %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "montiranje particije %s u direktoriju %s nije uspjelo"
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck nije uspio, izlazni kod %d ili signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "greĹĄka u demontiranju %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "jednostavno"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "sa /usr"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "server"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Ne moĹžete koristiti JFS za particije manje od 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Ne moĹžete koristiti ReiserFS za particije manje od 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Tačke montiranja moraju počinjati sa /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Već postoji particija sa tačkom montiranja %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Ne možete koristiti LVM logički volumen za tačku montiranja %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Ovaj direktorij treba ostati unutar korijenskog file sistema"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Potreban vam je pravi file sistem (ext2, reiserfs) za ovu tačku montiranja\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Ne možete koristiti kriptovani datotečni sistem za tačku montiranja %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Nema dovoljno prostora za auto-alokaciju"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Nemam ĹĄta da radim"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "GreĹĄka u otvaranju %s za pisanje: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Došlo je do greške - nije pronađen nijedan ispravan uređaj na kojem se mogu "
-"kreirati novi file sistemi. Molimo provjerite vaš hardware i pronađite uzrok "
-"greĹĄke"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Nemate nijednu particiju!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"Mandrake Linux instalacija se prostire na nekoliko CDova. DrakX zna da li "
-"je\n"
-"neki paket smješten na drugom CDu i on će izbaciti trenutni CD i zamoliti "
-"vas\n"
-"da ubacite neki drugi po potrebi."
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if the machine is to be used for programming, choose "
-"the\n"
-"desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\" Installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server.\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wishto connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Sada moĹžete izabrati koje servise Ĺželite pokretati prilikom boota.\n"
-"\n"
-"Ovdje su predstavljeni svi servisi koji su dostupni u trenutnoj\n"
-"instalaciji. Pregledajte ih pažljivo i isključite sve one koji nisu "
-"potrebni\n"
-"prilikom boota.\n"
-"\n"
-"Kada izaberete servis dobićete kratki tekst koji objašnjava taj servis\n"
-"Ipak, ako niste sigurni da li je servis koristan ili ne, sigurnije je da ne\n"
-"mijenjate predloĹženi izbor.\n"
-"\n"
-"!! Budite vrlo paĹžljivi sa ovim korakom ako namjeravate koristiti vaĹĄ "
-"računar\n"
-"kao server: vjerovatno ne Ĺželite da pokrenete neke servise koji vam ne\n"
-"trebaju. Molimo vas da zapamtite da pojedini servisi mogu biti opasni\n"
-"ako su aktivni na serveru. Općenito, izaberite samo one servise koji vam\n"
-"stvarno trebaju. !!"
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working internet connection for this feature to function. It\n"
-"will actually install on your machine a time server that can be optionally\n"
-"used by other machines on your local network."
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the boot loader, DrakX will rewrite the boot sector "
-"(MBR)\n"
-"of your main disk (unless you are using another boot manager) so that you\n"
-"can start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Na ovom mjestu trebate izabrati gdje Ĺželite instalirati Linux Mandrake\n"
-"operativni sistem na vašem hard disku. Ako je disk prazan ili ako postojeći\n"
-"operativni sistem koristi sav prostor na njemu, potrebno je da ga\n"
-"particionirate. U biti, particioniranje hard diska predstavlja logičko\n"
-"organiziranje kako bi se stvorio prostor za instaliranje vaĹĄeg novog\n"
-"Mandrake Linux sistema.\n"
-"\n"
-"Pošto su efekti particioniranja obično nepovratni, particioniranje može\n"
-"biti zastrašujuće i stresno ako ste neiskusan korisnik. Srećom, postoji\n"
-"čarobnjak koji pojednostavljuje taj proces. Prije započinjanja, molimo\n"
-"konsultirajte priručnik i nemojte žuriti.\n"
-"\n"
-"Ako instalirate koristeći Ekspertni mod, ući ćete u DiskDrake, Mandrake\n"
-"Linux alat za particioniranje, koji vam omogućava da fino podesite vaše\n"
-"particije. Pogledajte priručnik, poglavlje o DiskDrake-u. Na instalacionom\n"
-"sučelju možete koristiti čarobnjake kao što je opisano tamo, klikajući na\n"
-"dugme Čarobnjak.\n"
-"\n"
-"Ako su particije već definirane (tokom neke ranije instalacije ili pomoću\n"
-"nekog drugog alata za particioniranje), sve ĹĄto trebate jeste da ih "
-"izaberete\n"
-"za instalaciju vaĹĄeg Linux sistema.\n"
-"\n"
-"Ako particije nisu već definirane, trebate ih kreirati koristeći čarobnjak.\n"
-"Ovisno o konfiguraciji vaĹĄeg hard diska, moĹže biti dostupno nekoliko\n"
-"mogućnosti:\n"
-"\n"
-" * Koristi slobodan prostor: jednostavno vodi na automatsko particioniranje\n"
-"vašeg praznog diska (diskova). Neće biti postavljana nikakva daljnja "
-"pitanja.\n"
-"\n"
-" * Koristi postojeću particiju: čarobnjak je detektovao jednu ili više "
-"postojećih\n"
-"Linux particija na vaĹĄem hard disku. Ako ih Ĺželite zadrĹžati, izaberite ovu\n"
-"opciju.\n"
-"\n"
-" * Koristi slobodan prostor na Windows particiji: ako je na vaĹĄem hard\n"
-"disku instaliran Microsoft Windows koji je zauzeo sav slobodan prostor,\n"
-"moraćete napraviti nešto slobodnog prostora za Linux. To možete učiniti\n"
-"brišući vašu Microsoft Windows particiju zajedno sa podacima (vidi opcije\n"
-"\"Pobriši čitav disk\" ili \"Ekspertni mod\") ili možete promjeniti veličinu "
-"vaĹĄe\n"
-"Microsoft Windows particije. Promjena veličine se može izvršiti bez gubitka\n"
-"podataka. Ova mogućnost je preporučena ako namjeravate koristiti i Linux\n"
-"Mandrake i Microsoft Windows na istom računaru.\n"
-"\n"
-" Prije izbora ove opcije, molimo da imate na umu da će veličina vaše\n"
-"Microsoft Windows particije biti manja nego trenutno. To znači da će "
-"Microsoft\n"
-"Windows prijavljivati da imate manje prostora za smjeĹĄtaj podataka ili "
-"instaliranje\n"
-"novog softwarea.\n"
-"\n"
-" * Pobriši čitav disk: ako želite da obrišete sve podatke i sve particije\n"
-"koje su prisutne na vaĹĄem hard disku i umjesto njih postavite vaĹĄ novi "
-"Linux\n"
-"Mandrake sistem, moĹžete izabrati ovu opciju. Budite oprezni sa ovom\n"
-"mogućnošću, jer nećete moći poništiti vaš izbor nakon potvrde.\n"
-"\n"
-" !! Ako izaberete ovu opciju, svi podaci na vašem disku će biti "
-"izgubljeni. !!\n"
-"\n"
-" * Ukloni Windows: ovo će jednostavno pobrisati sve na disku i početi od\n"
-"početka, particionirajući ga. Svi podatci na vašem disku će biti "
-"izgubljeni.\n"
-"\n"
-" !! Ako izaberete ovu opciju, svi podaci na vašem disku će biti "
-"izgubljeni. !!\n"
-"\n"
-" * Ekspertni mod: ako želite da ručno particionirate vaš hard disk, "
-"izaberite ovu\n"
-"opciju. Budite oprezni - to je moćan, ali i opasan izbor. Vrlo lako možete\n"
-"izgubiti sve vaĹĄe podatke. Zato nemojte birati ovu opciju sem ako ste "
-"sigurni\n"
-"ĹĄta radite."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated install as the partitioning\n"
-"step (and only this one) remains interactive.\n"
-"\n"
-" * \"Automated\". Fully automated install: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section at our web site.\n"
-"\n"
-" * \"Save packages selection\"(*): saves the packages selection as made\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the driver and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Sve particije koje su upravo definisane moraju biti formatirane kako bi se\n"
-"mogle koristiti (formatiranje znači kreiranje datotečnog sistema). \n"
-"\n"
-"U ovom trenutku možda ćete poželjeti da reformatirate neke već postojeće\n"
-"particije kako biste pobrisali podatke koje sadrže. Ako želite to učiniti, "
-"molim\n"
-"takođe izaberite te particije koje želite da formatirate.\n"
-"\n"
-"Molim obratite pažnju da nije neophodno formatirati sve postojeće "
-"particije.\n"
-"Morate reformatirati particije koje sadrĹže operativni sistem (kao ĹĄto su\n"
-"\"/\", \"/usr\" ili \"var\") ali ne morate reformatirati particije koje "
-"sadrĹže\n"
-"podatke koje želite zadržati (tipično /home).\n"
-"\n"
-"Molimo da paĹžljivo izaberete particije. Nakon formatiranja, svi podaci na\n"
-"odabranim particijama će biti pobrisani i nećete biti u mogućnosti da ih\n"
-"povratite.\n"
-"\n"
-"Kliknite na OK kada budete spremni za formatiranje particija.\n"
-"\n"
-"Kliknite na Odustani ako Ĺželite da izaberete druge particije za instalaciju\n"
-"vaĹĄeg novog Linux-Mandrake operativnog sistema.\n"
-"\n"
-"Kliknite na Napredno da izaberete particije koje Ĺželite provjeriti radi\n"
-"loĹĄih blokova."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"VaĹĄ novi Linux-Mandrake operativni sistem se trenutno intalira. Ovisno o\n"
-"broju paketa koje želite instalirati i brzini vašeg računara, ova operacija\n"
-"bi mogla trajati nekoliko minuta ali i značajno duže.\n"
-"\n"
-"Molim da imate strpljenja."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bug-fixes may\n"
-"have been fixed, and security issues solved. To allow you to benefit from\n"
-"this updates you are now proposed to download them from the internet.\n"
-"Choose \"Yes\" if you have a working internet connection, or \"No\" if you\n"
-"prefer to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearer to you. Then a packages selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package or \"Cancel\" to abort."
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Prije nego što nastavimo, trebate pažljivo pročitati uvjete licence. Ona\n"
-"pokriva cijelu Mandrake Linux distribuciju, pa ako se ne slaĹžete sa svim\n"
-"uvjetima u njoj, kliknite na dugme Odbij, što će automatski završiti "
-"instalaciju.\n"
-"Da biste nastavili sa instalacijom, kliknite na dugme Prihvati."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"At this point, you need to choose what partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have been already\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second, \"sda\" for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive.\n"
-"\n"
-" * \"Auto allocate\": this option allows you to automatically create Ext2\n"
-"and swap partitions in free space of your hard drive.\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step.\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk.\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail.\n"
-"\n"
-" * \"Reload partition table\": discards all changes and load your "
-"initial\n"
-"partitions table.\n"
-"\n"
-" * \"removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning.\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes.\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(Type, options, format) and gives more information.\n"
-"\n"
-" * \"Done\": when you have finished partitioning your hard drive, this will\n"
-"save your changes back to disc.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the chapter ext2fs from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"\"bootstrap\" partition of at least 1MB which will be used by the yaboot\n"
-"boot loader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"More than one Microsoft Windows partition has been detected on your hard\n"
-"drive. Please choose the one you want to resize in order to install your\n"
-"new Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr ""
-"Molimo da imate strpljenja. Ova operacija moĹže potrajati nekoliko minuta."
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"DrakX sada mora znati da li Ĺželite obaviti podrazumjevanu instalaciju\n"
-"(\"Preporučeno\") ili želite da imate veću kontrolu (\"Ekspert\"). Takođe\n"
-"imate izbor između instalacije novog ili unaprijeđenja postojećeg\n"
-"Mandrake Linux sistema. \n"
-"\n"
-" * \"Instaliraj\" Potpuno briĹĄe raniji sistem. U stvari, ovisno o tome\n"
-"šta trenutno sadrži vaš računar, možda ćete moći zadržati neke stare\n"
-"particije (Linux i druge) bez ikakvih izmjena.\n"
-"\n"
-" * \"Unaprijedi\" Ova klasa instalacije vam omogućuje da jednostavno\n"
-"unaprijedite pakete trenutno instalirane na vaĹĄem Mandrake Linux sistemu.\n"
-"Ona zadrĹžava trenutne particije vaĹĄih hard diskova kao i postavke "
-"korisnika.\n"
-"Svi drugi koraci instalacije ostaju dostupni kao i u običnoj instalaciji.\n"
-"\n"
-" * \"Unaprijedi samo pakete\" Ova potpuno nova klasa vam omogućuje da\n"
-"unaprijedite postojeći Mandrake Linux sistem pri čemu ćete sačuvati svu\n"
-"sistemsku konfiguraciju bez izmjena. Dodavanje novih paketa trenutnoj\n"
-"instalaciji je također moguće.\n"
-"\n"
-"Unaprijeđenja bi trebala raditi fino za Mandrake Linux sisteme počevši\n"
-"od verzije \"8.1\".\n"
-"\n"
-"Ovisno o vašem poznavnaju GNU/Linuxa, molim izaberite jedan od sljedećih\n"
-"načina za instalaciju ili update vašeg Mandrake Linux operativnog sistema:\n"
-"\n"
-" * Preporučeno: ako nikada niste instalirali GNU/Linux operativni sistem,\n"
-"izaberite ovo. Instalacija će biti veoma jednostavna i biće vam postavljeno\n"
-"svega par pitanja.\n"
-"\n"
-" * Ekspert: ako imate dobro znanje GNU/Linuxa, moĹžete odabrati ovu klasu\n"
-"instalacije. Ekspertna instalacija vam omogućuje da obavite visoko "
-"prilagođenu\n"
-"instalaciju. Odgovor na neka pitanja moĹže biti vrlo teĹžak ako nemate dobro\n"
-"poznavanje GNU/Linuxa, zato nemojte birati ovo sem ako znate ĹĄta radite."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you will not even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the grey star corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales click the \"OK\" button to continue."
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"By default, DrakX assumes you have a two-button mouse and will set it up\n"
-"for third-button emulation. DrakX will automatically know whether it is a\n"
-"PS/2, serial or USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the list provided.\n"
-"\n"
-"If you choose a mouse other than the default you will be presented with a\n"
-"mouse test screen. Use the buttons and wheel to verify that the settings\n"
-"are good. If the mouse is not working correctly press the space bar or\n"
-"[Return] to \"Cancel\" and choose again."
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Molimo izaberite ispravan port. Na primjer, \"COM1\" port pod MS\n"
-"Windowsom se zove \"ttyS0\" pod GNU/Linuxom."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if onlynfor "
-"one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"LILO and grub are boot loaders for GNU/Linux. This stage, normally, is\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Boot loader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the boot loader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\").\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose - in the boot loader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a boot loader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general boot-loader parameters, you are\n"
-"presented the list of boot options that will be available at boot time.\n"
-"\n"
-"If there is another operating system installed on your machine, it will be\n"
-"automatically added to the boot menu. Here, you can choose to fine-tune the\n"
-"existing options. Select an entry and click \"Modify\" to modify or remove\n"
-"it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Morate navesti gdje Ĺželite smjestiti informacije koje su potrebne za\n"
-"bootanje GNU/Linuxa.\n"
-"\n"
-"Izaberite \"Prvi sektor na disku (MBR)\" sem ako znate tačno šta radite."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control "
-"Centernand clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX sada pronalazi sve IDE uređaje prisutne na vašem računaru. Također\n"
-"će pretražiti sistem za jednu ili više PCI SCSI kartica. Ako SCSI kartica "
-"bude\n"
-"pronađena, DrakX će automatski instalirati odgovarajući drajver.\n"
-"\n"
-"Budući da pronalaženje hardware-a ponekad ne uspjeva pronaći neki dio\n"
-"hardware-a, DrakX će pitati za potvrdu da li imate SCSI karticu ili ne.\n"
-"Kliknite Da ako znate da postoji SCSI kartica instalirana na vaĹĄem "
-"računaru.\n"
-"Biće vam predstavljena lista SCSI kartica koje možete izabrati. Kliknite Ne\n"
-"ako nemate nikakav SCSI hardware. Ako niste sigurni, moĹžete pregledati "
-"listu\n"
-"hardware u vašem računaru tako što ćete izabrati \"Vidi hardware info\" i "
-"kliknuti\n"
-"na OK. PretraĹžite listu hardware-a i zatim kliknite na dugme OK kako bi se\n"
-"vratili na pitanje o SCSI-ju.\n"
-"\n"
-"Ako morate ručno odabrati adapter, DrakX će vas pitati da li želite navesti\n"
-"neke opcije za njega. Trebate dopustiti DrakXu da ispita hardware za\n"
-"neke opcije specifične za tu karticu. Ovo obično radi dobro.\n"
-"\n"
-"Ako DrakX ne može ispitati opcije koje trebaju biti proslijeđene, moraćete\n"
-"ručno navesti opcije za drajver. Molimo pogledajte Priručnik za korištenje\n"
-"/User Guide/ (poglavlje 3, sekcija \"Prikupljanje informacija o vaĹĄem "
-"hardveru\")\n"
-"za napomene o pribavljanju ovih informacija iz hardverske dokumentacije,\n"
-"sa web stranice proizvođača (ako imate internet pristup) ili iz Microsoft\n"
-"Windowsa (ako ga imate na vaĹĄem sistemu)."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the root partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or \"/\" for your Linux installation.\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot is a boot loader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful as\n"
-"to choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message that is displayed before the boot\n"
-"prompt.\n"
-"\n"
-" * Boot Device: indicate where you want to place the information required "
-"to\n"
-"boot to GNU/Linux. Generally, you setup a bootstrap partition earlier to\n"
-"hold this information.\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected.\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose \"C\" for CD\n"
-"at the first boot prompt.\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose \"N\" for "
-"Open\n"
-"Firmware at the first boot prompt.\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may - or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in.\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard.\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time.\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time.\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated to it."
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Izaberite hard disk koji Ĺželite obrisati kako biste instalirali vaĹĄu novu "
-"Mandrake\n"
-"Linux particiju. Budite pažljivi, svi podaci koji se nalaze na njemu će "
-"biti\n"
-"izgubljeni i neće se moći vratiti!"
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "Morate također formatirati i %s"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Izabrali ste sljedeći server (servere): %s\n"
-"\n"
-"\n"
-"Ovi serveri su aktivirani automatski. Oni nemaju nikakvih poznatih "
-"sigurnosnih\n"
-"problema, ali možda će biti pronađeni neki novi. U tom slučaju, morate ih\n"
-"unaprijediti što prije bude moguće.\n"
-"\n"
-"\n"
-"Da li zaista Ĺželite instalirati ove servere?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Ne mogu koristiti broadcast bez NIS domene"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Ubacite FAT formatiranu disketu u jedinicu %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Ova disketa nije FAT (DOS/Windows) formatirana"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Da koristite ovaj izbor spaĹĄenih paketa, bootajte instalaciju sa ``linux "
-"defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Greška u čitanju datoteke %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Neki dio hardware-a na vašem računaru zahtjeva ``posjedovane'' drajvere za "
-"rad.\n"
-"Možete naći više podataka o njima na: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Morate imati root particiju.\n"
-"Za ovo, kreirajte particiju (ili kliknite na neku od postojećih).\n"
-"Zatim izaberite ``Tačka montiranja'' i postavite ga na `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Morate imati swap particiju"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Nemate nijednu swap particiju\n"
-"\n"
-"Svejedno nastavi?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Morate imati FAT particiju montiranu na /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Koristi slobodan prostor"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Koristi postojeću particiju"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Nema nijedne postojeće particije za upotrebu"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Koristi Windows particiju za loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Koju particiju Ĺželite koristiti za Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Izaberite veličine"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Veličina root particije u MB:"
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Veličina swap particije u MB:"
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Koristi slobodan prostor na Windows particiji"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Kojoj particiji želite promjeniti veličinu?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Izračunavam granice Windows datotečnog sistema"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"FAT resizer ne moĹže izmjeniti vaĹĄu particiju, \n"
-"došlo je do sljedeće greške: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"VaĹĄa Windows particija je previĹĄe fragmentirana, molimo prvo pokrenite "
-"``defrag'' "
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"UPOZORENJE!\n"
-"\n"
-"DrakX će sada promjeniti veličinu vaše Windows particije. Budite pažljivi, "
-"ova\n"
-"operacija je opasna. Ako to već niste uradili, najprije napustite "
-"instalaciju,\n"
-"pokrenite scandisk pod Windowsom (opcionalno pokrenite defrag), zatim\n"
-"ponovo pokrenite instalaciju. Također biste trebali spasiti sve podatke.\n"
-"Kada ste sigurni, kliknite na Ok."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Koju veličinu želite da sačuvate za windows na"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "particiji %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT promjena veličine nije uspjela: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Ne postoji nijedna FAT particija za promjenu veličine ili upotrebu za "
-"loopback (ili nije ostalo dovoljno prostora)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Pobriši čitav disk"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Ukloni Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Imate viĹĄe od jednog hard diska, na koji Ĺželite instalirati linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"SVE postojeće particije i podaci na njima će biti izgubljeni na disku %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Ručno particioniranje diska"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Koristi fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Sada moĹžete particionirati %s.\n"
-"Kada zavrĹĄite, ne zaboravite spasiti sa `w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Nemate dovoljno slobodnog prostora na vaĹĄoj Windows particiji"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Ne mogu naći dovoljno prostora za instalaciju"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX Particioni čarobnjak je našao sljedeća rješenja:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Particioniranje nije uspjelo: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Pokrećem mrežu"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Zaustavljam mreĹžu"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"DoĹĄlo je do greĹĄke, ali ne znam kako da je rijeĹĄim fino.\n"
-"Nastavite na vlastiti rizik."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Dvostruka tačka montiranja %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Neki bitni paketi nisu ispravno instalirani.\n"
-"Ili je neispravan vaš cdrom uređaj ili vaš cdrom medij.\n"
-"Provjerite cdrom na instaliranom računaru koristeći \"rpm -qpl Mandrake/RPMS/"
-"*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Dobro doĹĄli u %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Nema pogodne disketne jedinice"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Prelazim na korak `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"VaĹĄ sistem ima nizak nivo resursa. MoĹžda imate neki problem sa instalacijom\n"
-"Mandrake Linuxa. Ako se ovo desi, moĹžete pokuĹĄati tekstualnu instalaciju. Za "
-"ovo,\n"
-"pritisnite `F1' prilikom bootanja na CDROMu, zatim unesite `text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Klasa instalacije"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Molimo izaberite jednu od sljedećih klasa instalacije:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ukupna veličina grupa koje ste izabrali je otprilike %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ako želite da instalirate manje od ove veličine,\n"
-"izaberite procenat paketa koje Ĺželite instalirati.\n"
-"\n"
-"Nizak procenat će instalirati samo one najbitnije pakete;\n"
-"procenat 100%% će instalirati sve izabrane pakete."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Na disku imate mjesta samo za %d%% ovih paketa.\n"
-"\n"
-"Ako Ĺželite da instalirate manje od ovoga,\n"
-"izaberite procenat paketa koje Ĺželite da instalirate.\n"
-"Nizak procenat će instalirati samo one najbitnije pakete;\n"
-"procenat %d%% će instalirati najveći mogući broj paketa."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-"Na idućem koraku ćete biti u mogućnosti da ih izaberete nešto preciznije."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procenat paketa za instalaciju"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Izbor grupe paketa"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Izbor pojedinačnih paketa"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Ukupna veličina: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Neispravan paket"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Ime: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Verzija: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Veličina: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Značaj: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Ne moĹžete izabrati ovaj paket jer nema dovoljno prostora za njega"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Sljedeći paketi će biti instalirani"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Sljedeći paketi će biti uklonjeni"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Ne možete izabrati/isključiti ovaj paket"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Ovo je obavezan paket, ne može biti isključen"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Ne možete isključiti ovaj paket. On je već instaliran"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Ovaj paket mora biti unaprijeđen\n"
-"Jeste li sigurni da ga želite isključiti?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Ne možete isključiti ovaj paket. On mora biti unaprijeđen"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Automatski prikaĹži izabrane pakete"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Instalacija"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Učitaj/Spasi na disketu"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "OsvjeĹžavam izbor paketa"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Minimalna instalacija"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Izaberite pakete koje Ĺželite instalirati"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Instaliram"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Procjenjujem"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Preostalo vremena "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Molimo sačekajte, pripremam instalaciju"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d paketa"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Instaliram paket %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Prihvati"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Odbij"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Promjenite vaĹĄ CD-ROM!\n"
-"\n"
-"Molimo ubacite CD označen sa \"%s\" u vaš CD-ROM uređaj i pritisnite Ok kad "
-"ste spremni.\n"
-"Ako ga nemate, pritisnite Odustani da biste izbjegli instaliranje sa ovog CD-"
-"ROMa."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Svejedno nastavi?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Došlo je do greške pri naručivanju paketa:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "DoĹĄlo je do greĹĄke kod instaliranja paketa:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "DoĹĄlo je do greĹĄke"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "Da li zaista Ĺželite napustiti instalaciju?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Licencni ugovor"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Tastatura"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Molimo izaberite izgled vaĹĄe tastature."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Ovdje je puna lista svih dostupnih tastatura"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Koju klasu instalacije Ĺželite?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Instaliraj/Unaprijedi"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Da li je ovo instalacija ili update?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Preporučeno"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Ekspert"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Unaprijedi"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Unaprijedi samo pakete"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Molimo izaberite vrstu vaĹĄeg miĹĄa."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Port miĹĄa"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Molimo izaberite na kojem serijskom portu je spojen vaĹĄ miĹĄ."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Emulacija tipki"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emulacija 2 dugmeta"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emulacija 3 dugmeta"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "PodeĹĄavam PCMCIA kartice..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "PodeĹĄavam IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "nema dostupnih particija"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Pretražujem particije da nađem tačke montiranja"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Izaberite tačke montiranja"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ne mogu pročitati vašu tabelu particija, previše je oštećena za mene :(\n"
-"Mogu pokušati da pobrišem loše particije (SVI PODACI će biti izgubljeni!).\n"
-"Drugo rješenje je da onemogućim DrakX da mijenja tabelu particija.\n"
-"(greĹĄka je %s)\n"
-"\n"
-"SlaĹžete li se sa gubitkom svih particija?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake nije uspio ispravno pročitati tabelu particija.\n"
-"Nastavljate na vlastiti rizik!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Nema dovoljno slobodnog prostora za 1 MB bootstrap! Instalacija će "
-"nastaviti, ali da biste bootali vaĹĄ sistem, morate kreirati bootstrap "
-"particiju u DiskDrake-u"
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Nije pronađena nijedna root particija radi unaprjeđivanja"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Root particija"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Ĺ ta je root particija (/) vaĹĄeg sistema?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Moraćete rebootati da bi izmjene tabele particija stupile na snagu"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Izaberite particije koje Ĺželite formatirati"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Provjeri loĹĄe blokove?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formatiram particije"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Kreiram i formatiram datoteku %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr ""
-"Nemam dovoljno swap prostora da dovrĹĄim instalaciju, molimo dodajte joĹĄ"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "TraĹžim dostupne pakete"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Pronalazim pakete za unaprjeđenje"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Vaš sistem nema dovoljno preostalog prostora za instalaciju ili unaprjeđenje "
-"(%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Potpuna (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimalna (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Preporučena (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Molimo izaberite učitaj ili spasi izbor paketa na disketu.\n"
-"Format je isti kao i diskete koje generiĹĄe auto_install"
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Vrati sa diskete"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Vraćam sa diskete"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Izbor paketa"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Ubacite disketu koja sadrĹži izbor paketa"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Spasi na disketu"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Izabrana veličina je veća od slobodnog prostora"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Vrsta instalacije"
-
-#: ../../install_steps_interactive.pm_.c:672
-#, fuzzy
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Niste izabrali nijednu grupu paketa\n"
-"Molimo izaberite minimalnu instalaciju koju Ĺželite"
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "Sa X-om"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "Sa osnovnom dokumentacijom (preporučeno)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Ako imate sve CDe na listi, kliknite na Ok.\n"
-"Ako nemate nijedan od ovih CDova, kliknite na Odustani.\n"
-"Ako nedostaju samo neki CDovi, isključite ih, zatim kliknite na Ok."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM pod oznakom \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Pripremam instalaciju"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Instaliram paket %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Post-instalacijsko podeĹĄavanje"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Molimo ubacite disketu Update Modula u jedinicu %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Sada imate mogućnost da dobavite sa interneta unaprijeđene pakete koji\n"
-"su izaĹĄli nakon ĹĄto je distribucija objavljena.\n"
-"\n"
-"Dobićete sigurnosne ispravke ili ispravke bugova, ali prethodno je potrebno\n"
-"da podesite Internet konekciju.\n"
-"\n"
-"Da li želite instalirati unaprjeđenja ?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Kontaktiram Mandrake Linux web stranicu da bih saznao listu dostupnih mirrora"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Kontaktiram mirror da bih saznao listu dostupnih paketa"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Koja je vaĹĄa vremenska zona?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Hardverski sat podeĹĄen na GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP server"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Udaljeni CUPS server"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Nema štampača"
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "Imate li ISA zvučnu karticu?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-"Pokrenite \"sndconfig\" poslije instalacije kako biste podesili vašu zvučnu "
-"karticu"
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Nije otkrivena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Ukratko"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "MiĹĄ"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Vremenska zona"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Štampač"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDN kartica"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Zvučna kartica"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV kartica"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Lokalne datoteke"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Podesite root ĹĄifru"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Bez ĹĄifre"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr ""
-"Ova ĹĄifra je previĹĄe jednostavna (mora biti duga najmanje %d karaktera)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autentikacija"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Autentikacijski LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAP Server"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "Autentifikacija NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS domen"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS server"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Prva disketna jedinica"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Druga disketna jedinica"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Preskoči"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, fuzzy, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-"\n"
-"\n"
-"(PAŽNJA! Vi koristite XFS za vaťu root particiju,\n"
-"pravljenje boot diskete na 1.44 Mb disketi vjerovatno neće\n"
-"raditi, poĹĄto XFS traĹži veoma velik drajver)."
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Žao mi je, nema dostupne disketne jedinice"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
-"Izaberite disketnu jedinicu koju Ĺželite koristiti da napravite boot disketu"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Ubacite disketu u %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Pravim boot disketu"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Pripremam bootloader"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Izgleda da imate OldWorld ili Unknown računar,\n"
-" yaboot bootloader neće raditi kod vas.\n"
-"Instalacija će se nastaviti, ali ćete\n"
-" morati koristiti BootX za bootanje vašeg računara"
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Da li Ĺželite koristiti aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"GreĹĄka u instaliranju aboota, \n"
-"da li da pokušam nasilnu instalaciju čak i ako to uništi prvu particiju?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Instaliram bootloadera"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Možda ćete trebati promjeniti vaš Open Firmware boot uređaj\n"
-" da biste aktivirali bootloader. Ako ne vidite upit bootloadera\n"
-" prilikom bootanja, drĹžite Command-Option-O-F prilikom boota\n"
-" i unesite:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Zatim kucajte: shut-down\n"
-"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Ubacite praznu disketu u jedinicu %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Pravim auto instalacijsku disketu"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Neki koraci nisu dovrĹĄeni.\n"
-"\n"
-"Da li zaista želite izaći sada?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Čestitamo, instalacija je završena.\n"
-"Uklonite boot medij i pritisnite return za reboot.\n"
-"\n"
-"\n"
-"Za informacije o ispravkama koje su dostupne za ovu verziju Mandrake "
-"Linuxa,\n"
-"pogledajte Errata koja je dostupna na:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Informacije o podeĹĄavanju vaĹĄeg sistema su dostupne u poglavlju\n"
-"\"nakon instalacije\" vašeg Zvaničnog Mandrake Linux priručnika za upotrebu."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Napravi auto instalacijsku disketu"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"Ova auto instalacija moĹže biti potpuno automatizovana ako Ĺželite,\n"
-"u kojem slučaju će preuzeti hard disk!!\n"
-"(ovo je namjenjeno za instaliranje na drugi računar).\n"
-"\n"
-"Možda ćete željeti radije ponoviti instalaciju.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automatizovano"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Ponovi"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Spasi izbor paketa"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux instalacija %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> između elemenata | <Space> vrši izbor | <F12> idući ekran "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu nedostaje"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "nedostaje consolehelper"
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Izaberi datoteku"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Napredno"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Osnovno"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Molimo sačekajte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "ProĹĄiri stablo"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Smanji stablo"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Prekidač između ravnog i grupnog sortiranja"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "PogreĹĄan izbor, pokuĹĄajte ponovo\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "VaĹĄ izbor? (podrazumjevano %s)"
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Stavke koje morate popuniti:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "VaĹĄ izbor? (0/1, podrazumjevano %s)"
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Dugme '%s': %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "Da li Ĺželite kliknuti na ovo dugme?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "VaĹĄ izbor? (podrazumjevano '%s' %s)"
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Postoji mnogo stvari od kojih moĹžete izabrati (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Molimo unesite prvi broj od deset koji Ĺželite izmjeniti,\n"
-"ili samo pritisnite Enter za nastavak.\n"
-"VaĹĄ izbor?"
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Primjetite, label je promjenjena:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Ponovo poĹĄalji"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Češka (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Njemačka"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Ĺ panska"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Finska"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Francuska"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "NorveĹĄka"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Poljska"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Ruska"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Ĺ vedska"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "UK tastatura"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "US tastatura"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Albanska"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armenska (stara)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armenska (pisaća mašina)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armenska (fonetska)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "AzerbejdĹžanska (latinica)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgijska"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "Bugarska (fonetska)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "Bugarska (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazilska (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Bjeloruska"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Švicarska (Njemački izgled)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Ĺ vicarska (Francuski izgled)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Češka (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Njemačka (bez mrtvih tipki)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Danska"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (NorveĹĄka)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Ĺ vedska)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estonska"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Gruzijska (\"Ruski\" izgled)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Gruzijska (\"Latinični\" izgled)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Grčka"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Mađarska"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Hrvatska"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Izraelska"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Izraelska (Fonetska)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iranska"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandska"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italijanska"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japanska 106 tipki"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Korejanska tastatura"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latino-Američka"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litvanska AZERTY (stara)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litvanska AYERTY (nova)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litvanska \"red brojeva\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litvanska \"fonetska\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "Latvijska"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Makedonska"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Holandska"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Poljska (qwerty)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Poljska (qwertz)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugalska"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Kanadska (Kvebek)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Rumunska (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Rumunska (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Ruska (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slovenačka"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovačka (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovačka (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Srpska (ćirilica)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "Tamilska"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Tajlandska tastatura"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Tadžička tastatura"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turska (tradicionalni \"F\" model)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turska (moderni \"Q\" model)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukrajinska"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "US tastatura (međunarodna)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vjetnamska \"red brojeva\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslavenska (latinično)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr "Desna Alt tipka"
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr "Obje Shift tipke istovremeno"
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr "Control i Shift tipka istovremeno"
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr "CapsLock tipka"
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl i Alt tipke istovremeno"
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt i Shift tipke istovremeno"
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr "\"Meni\" tipka"
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr "Lijeva \"Windows\" tipka"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr "Desna \"Windows\" tipka"
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "KruĹžno montiranje %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Najprije ukloni logičke volumene\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"PCMCIA podrĹĄka za 2.2 kernele viĹĄe ne postoji. Molim koristite 2.4 kernel."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Mouse"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Opšti PS2 Miš sa kotačem"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 dugme"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "OpĹĄti miĹĄ sa 2 dugmeta"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "OpĹĄti"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Kotač"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "serijski"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "OpĹĄti miĹĄ sa 3 dugmeta"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (serijski, stari C7 tip)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 dugmeta"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 dugmeta"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "nijedan"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Bez miĹĄa"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Molimo testirajte miĹĄ"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Da biste aktivirali miĹĄa,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "POMJERITE VAŠ KOTAČ!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Kraj"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Sljedeći ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Prethodni"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Da li je ovo ispravno?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Spoji se na Internet"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Najčešći način za konekciju sa adsl-om je pppoe.\n"
-"Neke konekcije koriste pptp, a vrlo rijetke koriste dhcp.\n"
-"Ako ne znate, izaberite 'koristi pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "koristi dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "koristi pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "koristi pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Koji dhcp klijent Ĺželite koristiti?\n"
-"Podrazumjevani je dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Nije pronađen ethernet mrežni adapter na vašem sistemu.\n"
-"Ne mogu podesiti ovu vrstu konekcije."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Izaberite mreĹžni interface"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Molimo izaberite koji mreĹžni adapter Ĺželite koristiti za spajanje na Internet"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "nije pronađena mrežna kartica"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "PodeĹĄavam mreĹžu"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Molimo unesite naziv vašeg računara ako ga znate.\n"
-"Neki DHCP serveri traĹže hostname kako bi radili.\n"
-"Naziv vašeg računara bi trebao biti puno-kvalifikovani naziv,\n"
-"kao ĹĄto je ``mojcomp.mojlab.mojafirma.com''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Host name"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Čarobnjak za podešavanje mreže"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Vanjski ISDN modem"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Interna ISDN kartica"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Koje je vrste vaĹĄa ISDN konekcija?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Koju ISDN konfiguraciju Ĺželite?\n"
-"\n"
-"* Stara konfiguracija koristi isdn4net. On sadrži moćne alate,\n"
-" ali ga je teĹĄko podesiti i nije standardiziran.\n"
-"\n"
-"* Novu konfiguraciju je lakĹĄe razumjeti, standardnija je,\n"
-" ali ima manje alata.\n"
-"\n"
-"Preporučujemo light konfiguraciju.\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Nova konfiguracija (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Stara konfiguracija (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "PodeĹĄavanje ISDNa"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Izaberite vaĹĄeg providera.\n"
-" Ako nije na listi, izaberite Nije na listi"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Evropski protokol"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Evropski protokol (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protokol za ostatak svijeta"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protokol za ostatak svijeta \n"
-" bez D-kanala (iznajmljene linije)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Koji protokol Ĺželite koristiti?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Koju vrstu kartice imate?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Ne znam"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Ako imate ISA karticu, vrijednosti na idućem ekranu bi trebale biti "
-"ispravne.\n"
-"\n"
-"Ako imate PCMCIA karticu, moraćete znati IRQ i IO vaše kartice.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Prekid"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Nastavak"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Koja je vaĹĄa ISDN kartica ?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Otkrio sam neku ISDN PCI karticu, ali ne znam tip. Molimo izaberite neku PCI "
-"karticu na idućem ekranu."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Nije pronađena nijedna ISDN PCI kartica. Molimo izaberite jednu na idućem "
-"ekranu."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Molimo izaberite na koji serijski port je nakačen vaš modem."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Opcije dialupa"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Naziv konekcije"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Broj telefona"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Login ID"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Skripta"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Terminal"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Ime domena"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Prvi DNS server (opcionalno)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Drugi DNS server (opcionalno)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"MoĹžete se diskonektovati ili prekonfigurisati vaĹĄu konekciju."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"MoĹžete prekonfigurisati vaĹĄu konekciju."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Trenutno ste spojeni na Internet."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"MoĹžete se spojiti na Internet ili prekonfigurisati vaĹĄu konekciju."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Trenutno niste konektovani na Internet."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Konektuj me"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Prekini konekciju"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Podesi konekciju"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Internet konekcija & podeĹĄavanje"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Sada ćemo podesiti konekciju %s."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Sada ćemo podesiti konekciju %s.\n"
-"\n"
-"\n"
-"Pritisnite OK za nastavak."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "PodeĹĄavanje mreĹže"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Pošto radite mrežnu instalaciju, vaša mreža je već podešena.\n"
-"Kliknite na Ok da zadrĹžite tu konfiguraciju ili Odustani za podeĹĄavanje vaĹĄe "
-"Internet & MreĹžne konekcije.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Dobro došli u Čarobnjak za podešavanje mreže\n"
-"\n"
-"Sada ćemo podesiti vašu internet/mrežnu konekciju.\n"
-"Ako ne želite da koristite automatsko prepoznavanje, isključite opciju.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Izaberite profil za podeĹĄavanje"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Koristi auto prepoznavanje"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Prepoznajem uređaje..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Normalna modemska konekcija"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "detektovan na portu %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN konekcija"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "detektovan %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ADSL konekcija"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "detektovan na interfejsu %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Kablovska konekcija"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "otkrivena kablovska konekcija"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "LAN konekcija"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "prepoznata ethernet kartica(e)"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Izaberite konekciju koju Ĺželite podesiti"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Podesili ste nekoliko načina za konekciju na Internet.\n"
-"Izaberite jedan od njih koji ćete koristiti.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Internet konekcija"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Da li Ĺželite pokrenuti konekciju prilikom boota?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "PodeĹĄavanje mreĹže"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "Potrebno je restartovati mreĹžu"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"DoĹĄlo je do problema prilikom restartovanja mreĹže:\n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Čestitamo, podešavanje mreže i interneta je završeno.\n"
-"\n"
-"Sada će ova konfiguracija biti primjenjena na vaš sistem.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Nakon što je to gotovo, preporučujemo da restartujete vaš X\n"
-"okoliš kako bi se izbjegao problem sa promjenom naziva računara."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"DoĹĄlo je do problema prilikom podeĹĄavanja.\n"
-"Provjerite vašu konekciju pomoću net_monitor ili mcc. Ako vaša konekcija ne "
-"radi, moĹžete ponovo pokrenuti podeĹĄavanje"
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"UPOZORENJE: Ovaj uređaj je prethodno podešen za konekciju na Internet.\n"
-"Samo prihvatite kako bi ovaj uređaj ostao podešen.\n"
-"Izmjena polja ispod će prepisati ovu konfiguraciju."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Molimo unesite IP konfiguraciju za ovaj računar.\n"
-"Svaka stavka bi trebala biti unesena kao IP adresa u decimalnoj notaciji\n"
-"razdvojenoj tačkama (npr. 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Podešavam mrežni uređaj %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (drajver %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP adresa"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Netmask"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Automatska IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresa treba biti u formatu 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Molimo unesite naziv vašeg računara ako ga znate.\n"
-"Naziv vašeg računara bi trebao biti puno-kvalifikovani naziv,\n"
-"kao ĹĄto je ``mojcomp.mojlab.mojafirma.com''.\n"
-"Možete također unijeti IP adresu gateway-a ako ga imate"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS server"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (tj. %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Gateway uređaj"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Konfiguracija proxija"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Otkrij id mreĹžne karte (korisno za laptope)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy treba biti http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy treba biti ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Internet konfiguracija"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Da li se Ĺželite pokuĹĄati spojiti na Internet sada?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Probavam vaĹĄu konekciju..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Sistem je sada spojen na Internet."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Iz sigurnosnih razloga, sada će biti odspojen."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Izgleda da sistem nije spojen na Internet.\n"
-"Probajte promjeniti postavke vaĹĄe konekcije."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "PodeĹĄavanje konekcije"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Molimo ispunite ili provjerite polje ispod"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ kartice"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Memorija kartice (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO kartice"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_0 kartice"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 kartice"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Vaš lični broj telefona"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Naziv provajdera (npr. provajder.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Broj telefona provajdera"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Provider dns 1 (opcionalno)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Provider dns 2 (opcionalno)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Izaberite vaĹĄu drĹžavu"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Način biranja broja"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Brzina konekcije"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Timeout konekcije (u sek.)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Login naloga (korisničko ime)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Ĺ ifra naloga"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "montiranje nije uspjelo: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Extended particije nisu podrĹžane na ovoj platformi"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Imate rupu u vaĹĄoj tabeli particija li je ja ne mogu upotrijebiti.\n"
-"Jedino rjeĹĄenje je da pomjerite vaĹĄe primarne particija kako bi rupa bila "
-"pored extended particija"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Povratak iz datoteke %s nije uspio: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "LoĹĄa backup datoteka"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "GreĹĄka u pisanju datoteke: %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"NeĹĄto loĹĄe se deĹĄava na vaĹĄem disku. \n"
-"Test integriteta podataka nije uspio. \n"
-"To znači će da pisanje bilo čeka na disk rezultirati smećem"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "obavezno"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "vaĹžno"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "vrlo fino"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "fino"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "moĹžda"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Lokalni štampač"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Udaljeni štampač"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Štampač na udaljenom CUPS serveru"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Štampač na udaljenom lpd serveru"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Mrežni štampač (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Štampač na SMB/Windows 95/98/NT serveru"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Štampač na NetWare serveru"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Unesite URI uređaja štampača"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Spoji zadatak na komandu"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Nepoznat model"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Lokalni štampači"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Udaljeni štampači"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " na paralelnom portu \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", USB štampač \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", višenamjenski uređaj na paralelnom portu \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", višenamjenski uređaj na USBu"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", višenamjenski uređaj na HP JetDirect"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", višenamjenski uređaj"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", ĹĄtampa u %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "na LPD serveru \"%s\", štampač \"%s\""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP host \"%s\", port %s"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "na Windows serveru \"%s\", share \"%s\""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "na Novell serveru \"%s\", štampač \"%s\""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", koristeći komandu %s"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Sirovo ĹĄtampanje (Bez drajvera)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(na %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(na ovom računaru)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Na CUPS serveru \"%s\""
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Default)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Izaberi konekciju štampača"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Kako je štampač povezan na računar?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Ovdje ne morate podešavati štampače na udaljenim CUPS serverima;\n"
-"ovi štampači će biti automatski prepoznati."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-msgid "CUPS configuration"
-msgstr "PodeĹĄavanje CUPSa"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-msgid "Specify CUPS server"
-msgstr "Navedite CUPS server"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"Da biste dobili pristup štampačima na udaljenim CUPS serverima u vašoj "
-"lokalnoj mreĹži, ne morate podeĹĄavati niĹĄta; CUPS serveri automatski "
-"informišu vaš računar o svojim štampačima. Svi štampači koji su trenutno "
-"poznati vašem računaru su izlistani u odjeljku \"Udaljeni štampači\" glavnog "
-"prozora Printerdrake-a. Ako vaĹĄ CUPS server nije u lokalnoj mreĹžu, morate "
-"unijeti IP adresu CUPS servera i eventualno broj porta kako biste dobili "
-"informacije o štampačima sa servera, inače ostavite ova polja praznim."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP adresa treba biti u formatu 192.168.1.20"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Broj porta treba biti cijeli broj!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP CUPS servera"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Port"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Automatska konfiguracija CUPSa"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Prepoznajem uređaje ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Testiraj portove"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Dodaj novi štampač"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Dobro došli u Čarobnjak za podešavanje štampača\n"
-"\n"
-"Ovaj čarobnjak vam omogućuje da instalirate lokalne ili udaljene štampače "
-"koji će biti korišteni sa ovog računara, a također i sa drugih računara na "
-"mreĹži.\n"
-"\n"
-"On će od vas tražiti sve potrebne informacije kako bi štampač bio podešen, a "
-"vama omogućen pristup svim dostupnim drajverima, opcijama drajvera i vrstama "
-"konekcije štampača."
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Lokalni štampač"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Dobro došli u Čarobnjak za podešavanje štampača\n"
-"\n"
-"Ovaj čarobnjak će vam pomoći da instalirate vaš(e) štampač(e) koji su "
-"povezani na ovaj računar.\n"
-"\n"
-"Molim uključite štampač(e) na ovom računaru i uključite ih. Kliknite na "
-"dugme \"Dalje\" kada budete spremni, a na \"Odustani\" ako ne Ĺželite da "
-"podesite vaše štampače sada.\n"
-"\n"
-"Obratite pažnju da neki računari mogu krahirati tokom automatskog "
-"prepoznavanja štampača. Isključite opciju \"Automatski prepoznaj štampače\" "
-"ako je ovo slučaj kod vas. Koristite \"Ekspertni mod\" printerdrake-a ako "
-"želite da podesite štampanje na udaljenom štampaču a printerdrake ga ne "
-"izlista automatski."
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Automatski prepoznaj štampače"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"Čestitamo, vaš štampač je sada instaliran i podešen!\n"
-"\n"
-"Možete štampati koristeći komandu \"Štampaj\" u vašoj aplikaciji (obično se "
-"nalazi u meniju \"Datoteka).\n"
-"\n"
-"Ako želite dodati, ukloniti ili promjeniti ime štampača, ili ako želite "
-"promjeniti neke podrazumjevane postavke (ulazni put papira, kvaliteta "
-"štampe...), izaberite opciju \"Štampač\" u \"Hardware\" sekciji Mandrake "
-"Kontrolnog centra."
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Automatsko prepoznavanje štampača"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake može automatski prepoznati štampače koji su spojeni lokalno "
-"putem paralelne ili USB veze, ali zapamtite da na nekim sistemima automatsko "
-"prepoznavanje MOŽE ZALEDITI VAŠ SISTEM, ŠTO MOŽE VODITI DO OŠTEČENJA "
-"DATOTEČNIH SISTEMA! Zato ovo radite NA VAŠU ODGOVORNOST!\n"
-"\n"
-"Da li zaista želite da vaši štampači budu prepoznati automatski?"
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Koristi auto prepoznavanje"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Ručno podesite štampač"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "Detektovan %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Štampač na paralelnom portu \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "USB štampač \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Nije pronađen nijedan lokalni štampač! Ako želite ručno instalirati štampač, "
-"unesite ime uređaja / ime datoteke na ulaznu liniju (Paralelni portovi: /dev/"
-"lp0, /dev/lp1, ..., ekvivalentno LPT1:, LPT2:, ..., prvi USB štampač: /dev/"
-"usb/lp0, drugi USB štampač: /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Morate unijeti naziv uređaja ili datoteke!"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Nije pronađen nijedan lokalni štampač!\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Mrežni štampači mogu biti instalirani samo nakon završetka instalacije. "
-"Izaberite \"Hardware\" i zatim \"Štampač\" u Mandrake Kontrolnom centru."
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Da instalirate mrežne štampače, kliknite na \"Odustani\", prebacite na "
-"\"Ekspert mod\" i kliknite ponovo na \"Dodaj novi štampač\"."
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"Sljedeći štampač je prepoznat automatski: ako to nije onaj koji želite "
-"podesiti, uneiste naziv uređaja / naziv datoteke u ulaznu liniju"
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"Ovo je lista svih automatski prepoznatih štampača. Molimo izaberite štampač "
-"koji želite podesiti ili unesite naziv uređaja / naziv datoteke na ulaznu "
-"liniju"
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-"Sljedeći štampač je prepoznat automatski. Podešavanje štampača će raditi "
-"potpuno automatski. Ako vaš štampač nije ispravno prepoznat ili ako želite "
-"sami podesiti štampač, uključite \"Ručno podešavanje\"."
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Ovo je lista svih automatski prepoznatih štampača. Molim odaberite štampač "
-"koji želite podesiti. Podešavanje štampača će raditi potpuno automatski. Ako "
-"vaš štampač nije ispravno prepoznat ili ako želite sami podesiti štampač, "
-"uključite \"Ručno podešavanje\"."
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Molimo izaberite port na koji je vaš štampač povezan ili unesite naziv "
-"uređaja / naziv datoteke na ulaznoj liniji"
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Molimo izaberite na koji port je priključen vaš štampač."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Paralelni portovi: /dev/lp0, /dev/lp1, ..., ekvivalentno sa LPT1:, "
-"LPT2:, ..., prvi USB štampač: /dev/usb/lp0, drugi USB štampač: /dev/usb/"
-"lp1, ...)."
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Morate izabrati ili unijeti štampač / uređaj!"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Ručno podešavanje"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-"Da li je vaš štampač višenamjenski uređaj od HPa (OfficeJet, PSC, "
-"PhotoSmart, LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "Instaliram HPOJ paket..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Provjeravam uređaj i podešavam HPOJ ..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Instaliram SANE paket..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Skeniram na vašem HP višenamjenskom uređaju"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "Omogućujem CUPSu port štampača ..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Čitam bazu podataka o štampačima ..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Opcije udaljenog lpd štampača"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Da biste koristili udaljeni lpd štampač, morate dati ime računara za printer "
-"server i ime štampača na tom serveru."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Ime udaljenog računara"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Ime udaljenog štampača"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Ime udaljenog računara nedostaje!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Ime udaljenog štampača nedostaje!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opcije SMB (Windows 9x/NT) štampača"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Da biste štampali na SMB štampač, morate dati ime SMB računara (Pažnja! Ono "
-"može biti različito od TCP/IP imena!) i eventualno IP adresu print servera, "
-"kao i share naziv štampača kojem želite pristupiti i korisničko ime, šifru i "
-"informacije o radnoj grupi."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "SMB server ime"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "SMB server IP"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Share naziv"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Radna grupa"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Treba biti dato ili ime servera ili IP adresa servera!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Naziv samba share-a nedostaje!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Opcije NetWare štampača"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Da biste štampali na NetWare štampač, trebate dati naziv NetWare print "
-"servera (Pažnja! Ono može biti različito od njegovog TCP/IP imena!) kao i "
-"naziv reda za štampu na štampaču kojem želite pristupiti i eventualno "
-"korisničko ime i šifru."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Printer Server"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Naziv reda za ĹĄtampu"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "NCP naziv servera nedostaje!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "NCP naziv reda nedostaje!"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/socket opcije štampača"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Da biste štampali na TCP ili socket štampač, morate dati hostname štampača i "
-"opcionalno broj porta. Na HP JetDirect serverima broj porta je obično 9100, "
-"na ostalim serverima on može varirati. Pogledajte priručnik vašeg hardware-a."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Hostname štampača"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Hostname štampača nedostaje!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "URI uređaja štampača"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Možete dati direktno URI za pristup štampaču. URI mora zadovoljavati ili "
-"CUPS ili Foomatic specifikacije. Obratite paĹžnju da nisu svi tipovi URIja "
-"podrĹžani od svih spoolera."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Trebate unijeti ispravan URI!"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Svakom štampaču treba dati ime (npr. \"stampac\"). Polja Opis i Lokacija "
-"nije potrebno popuniti. Oni su komentari za korisnike."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Naziv štampača"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Opis"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Lokacija"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Pripremam bazu podataka o štampačima..."
-
-#: ../../printerdrake.pm_.c:1112
-msgid "Your printer model"
-msgstr "Model vašeg štampača"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Printerdrake je uporedi ime modela koje je dobijeno od automatskog "
-"prepoznavanja štampača sa modelima koji su navedeni u njegovoj bazi podataka "
-"kako bi našao najbliži. Ovaj izbor možda nije tačan, pogotovo ako vaš "
-"štampač uopšte nije naveden u bazi. Stoga provjerite da li je izbor ispravan "
-"i ako je tako kliknite \"Model je ispravan\", u suprotnom kliknite "
-"\"Izaberite model ručno\" kako biste ručno izabrali vaš model štampača na "
-"sljedećem ekranu.\n"
-"\n"
-"Za vaš štampač Printerdrake je našao:\n"
-"\n"
-"%s"
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-msgid "The model is correct"
-msgstr "Model je ispravan"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-msgid "Select model manually"
-msgstr "Izaberite model ručno"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Izbor modela štampača"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Koji model štampača imate?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Molim provjerite da li je Printerdrake izvrĹĄio ispravno automatsko "
-"prepoznavanje modela vašeg štampača. Potražite ispravan model na listi ako "
-"kursor stoji na pogrešnom modelu ili na \"Raw štampač\"."
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Ako štampač nije naveden, izaberite kompatibilan (pogledajte uputstva za "
-"štampač) ili sličan."
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "PodeĹĄavanje OKI winprinter-a"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Sada podešavate OK laserski winprinter. Ovi štampači\n"
-"koriste jedan poseban komunikacijski protokol i stoga rade samo kada su "
-"spojeni na prvom paralelnom portu. Ako je vaš štampač spojen na neki drugi "
-"port ili na print server molimo spojite štampač na prvi paralelni port prije "
-"nego što odštampate testnu stranicu. Inače štampač neće raditi. Drajver će "
-"ignorisati vaĹĄe podeĹĄenje tipa konekcije."
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "PodeĹĄavanje Lexmark inkjet-a"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Inkjet drajveri za štampu koje obezbjeđuje Lexmark podržavaju samo lokalne "
-"štampače, a ne i štampače na udaljenim računarima ili print serverima. "
-"Molimo spojite vaš štampač na lokalni port ili ga podesite na računaru na "
-"koji je spojen."
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-"Da biste mogli ĹĄtampati sa vaĹĄim Lexmark inkjetom na ovoj konfiguraciji, "
-"potrebni su vam inkjet drajveri za štampu koje obezbjeđuje Lexmark (http://"
-"www.lexmark.com/). Idite na US stranicu i kliknite na dugme \"Drivers\". "
-"Zatim izaberite vaĹĄ model a zatim \"Linux\" kao operativni sistem. Drajveri "
-"dolaze u vidu RPM paketa ili shell skripte sa interaktivnom grafičkom "
-"instalacijom. Ne morate obaviti ovu konfiguraciju na grafičkom interfejsu. "
-"Odustanite odmah nakon licencnog ugovora. Zatim odĹĄtampaje stranice za "
-"poravnavanje glava sa \"lexmarkmaintain\" i podesite opcije poravnanja glave "
-"pomoću ovog programa."
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Podrazumjevane opcije štampača\n"
-"\n"
-"Trebate provjeriti da su veličina papira i tip tinte (ako je dostupno) "
-"ispravno podeĹĄeni. Obratite paĹžnju da za voma veliku kvalitetu / rezoluciju "
-"ĹĄtampa moĹže postati znatno sporija."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Opcija %s mora biti cijeli broj!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Opcija %s mora biti broj!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Opcija %s izvan raspona!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Da li želite da podesite ovaj štampač (\"%s\")\n"
-"kao podrazumjevani štampač?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Testna stranica"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Molimo izaberite testne stranice koje ćete štampati.\n"
-"PaĹžnja: foto testna stranica moĹže traĹžiti dosta vremena za ĹĄtampu a na "
-"laserskim štampačima sa malo memorije možda neće nikad ni izaći. U većini "
-"slučajeva dovoljno je odštampati standardnu testnu stranicu."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Nijedna testna strana"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Ĺ tampaj"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Standardna testna strana"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Alternativna testna strana (Letter)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Alternativna testna strana (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Foto testna strana"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "Nemoj ĹĄtampati testnu stranicu"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Ĺ tampam testnu stranicu..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Testna stranica je poslana štampaču.\n"
-"Može potrajati određeno vrijeme dok štampač krene.\n"
-"Status ĹĄtampanja:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Testna stranica je poslana štampaču.\n"
-"Može potrajati određeno vrijeme dok štampač krene.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "Da li je radilo ispravno?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Sirovi štampač"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Za ĹĄtampanje datoteke sa komandne linije (terminalski prozor) moĹžete "
-"koristiti ili komandu \"%s <datoteka>\" ili grafički alat za štampu: \"xpp "
-"<datoteka>\" ili \"kprinter <datoteka>\". Grafički alati vam omogućuju da "
-"jednostavno odaberete štampač i izmjenite podešenja opcija.\n"
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Ove komande možete također koristiti u polju \"Komanda za štampu\" u "
-"dijalozima za ĹĄtampu mnogih aplikacija, ali ovdje ne morate navesti ime "
-"datoteke jer tu datoteku obezbjeđuje sama aplikacija.\n"
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"Komanda \"%s\" također omogućava izmjenu opcija za pojedinačni zadatak "
-"ĹĄtampe. Jednostavno dodajte Ĺželjena podeĹĄenja na komandnu liniju, npr. \"%s "
-"<datoteka>\". "
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"Za listu opcija koje su dostupne za trenutni štampač ili pročitajte listu "
-"koja je data ispod ili kliknite na dugme \"Lista opcija za ĹĄtampu\".%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Ovo je lista mogućih opcija za štampu za trenutni štampač:\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Za ĹĄtampanje datoteke sa komandne linije (terminalski prozor) koristite "
-"komandu \"%s <datoteka>\".\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Ovu komandu također možete koristiti u polju \"Komanda za štampu\" u "
-"dijalozima za ĹĄtampu mnogih aplikacija. Ovdje nije potrebno navesti naziv "
-"datoteke jer tudatoteku obezbjeđuje sama aplikacija.\n"
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Za listu opcija koje su dostupne za trenutni štampač kliknite na dugme "
-"\"Lista opcija za ĹĄtampu\"."
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Za ĹĄtampanje datoteke sa komandne linije (terminalski prozor) koristite "
-"komandu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Možete također koristiti grafički interfejs \"xpdq\" za podešavanje opcija i "
-"upravljanje zadacima ĹĄtampe.\n"
-"Ako koristite KDE okruĹženje radne povrĹĄine imate \"dugme za paniku\". To je "
-"ikona na radnoj površini čiji je naziv \"ZAUSTAVI štampač!\", koja "
-"zaustavlja sve zadatke ĹĄtampe odmah kada kliknete na nju. Ovo je korisno "
-"npr. u slučaju zaglavljivanja papira.\n"
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Komande \"%s\" i \"%s\" također omogućavaju izmjenu opcija za pojedinačni "
-"zadatak ĹĄtampe. Jednostavno dodajte Ĺželjena podeĹĄenja na komandnu liniju, "
-"npr. \"%s <datoteka>\".\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zatvori"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Ĺ tampam/skeniram na \"%s\""
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Štampam na štampač \"%s\""
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Lista opcija za ĹĄtampu"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Vaš HP višenamjenski uređaj je automatski konfigurisan kako bi mogao "
-"skenirati. Sada možete skenirati sa komandne linije pomoću komande "
-"\"scanimage\" (\"scanimage -d hp:%s\" kako biste naveli scanner ako imate "
-"više od jednog) ili koristeći grafičke okoline \"xscanimage\" ili \"xsane\". "
-"Ako koristite GIMP, možete također skenirati koristeći odgovarajuću stavku u "
-"meniju \"File\"/\"Acquire\". Za viĹĄe informacija, pogledajte joĹĄ i \"man "
-"scanimage\" i \"man sane-hp\" na komandnoj liniji.\n"
-"\n"
-"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Vaš HP višenamjenski uređaj je automatski konfigurisan kako bi mogao "
-"skenirati. Sada možete skenirati sa komandne linije pomoću komande \"ptal-hp "
-"%s scan ...\". Skeniranje putem grafičkog interfejsa ili iz GIMPa još nije "
-"podržano za vaš uređaj. Više informacija možete naći u datoteci\"/usr/share/"
-"doc/hpoj-0.8/ptal-hp-scan.html\" na vašem računaru. Ako imate HP LaserJet "
-"1100 ili 1200, moĹžete skenirati samo ako ste instalirali opciju za "
-"skeniranje.\n"
-"\n"
-"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Čitam podatke o štampaču..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Premještanje konfiguracije štamapča"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Možete kopirati konfiguraciju štampača koju ste napravili za spooler %s u % "
-"s, vaš trenutni spooler. Svi podaci o konfiguraciji (naziv štampača, opis, "
-"lokacija, tip konekcije kao i podrazumjevane opcije) će biti preuzeti, ali "
-"zadaci štampe neće biti prebačeni.\n"
-"Svi redovi ne mogu biti prebačeni zbog sljedećih razloga:\n"
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS ne podržava štampače na Novell serverima ili štampačekoji šalju podatke "
-"u komandama slobodnog oblika.\n"
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ podržava samo lokalne štampače, udaljene LPD štampačei Socket/TCP "
-"štampače.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD i LPRng ne podržavaju IPP štampače.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Pored toga, redovi koji nisu kreirani ovim programom ili sa \"foomatic-"
-"configure\" ne mogu biti premjeĹĄteni."
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Također štampači konfigurisani sa PPD datotekama koje su osigurali njihovi "
-"proizvođači ili sa vlastitim CUPS drajverima ne mogu biti prebačeni."
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Označite štampače koje ćete prebacivati i kliknite na \n"
-"\"Prebaci\"."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Nemoj prebacivati štampače"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Prebaci"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Štampač pod imenom \"%s\" već postoji pod %s: \n"
-"Kliknite na \"Prebaci\" da to prepiĹĄete.\n"
-"Možete također unijeti novo ime ili preskočiti ovaj štampač."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Naziv štampača bi se trebao sastojati od slova, brojeva i donje linije"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Štampač \"%s\" već postoji,\n"
-"da li sigurno Ĺželite prepisati ovu konfiguraciju?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Novo ime štampača"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "Prebacujem %s ..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Prebacili ste vaš bivši podrazumjevani štampač (\"%s\"),Da li će to također "
-"biti podrazumjevani štampač podnovim sistemom štampe %s?"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Osvježavam podatke o štampaču..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Podešavanje udaljenog štampača"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Pokrećem mrežu..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Sada podesite mreĹžu"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "MreĹžna funkcionalnost nije podeĹĄena"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Sada ćete podesiti udaljeni štampač. Ovo zahtjeva aktivan pristup mreži, ali "
-"vaĹĄa mreĹža joĹĄ uvijek nije podeĹĄena. Ako Ĺželite nastaviti bez podeĹĄavanja "
-"mreže, nećete moći koristiti štampač koji sada podešavate. Kako želite da "
-"nastavimo?"
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Nastavi bez podeĹĄavanja mreĹže"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-"PodeĹĄavanje mreĹže koje je napravljeno tokom instalacije sada ne moĹže biti "
-"pokrenuto. Molim provjerite da li će mreža postati dostupna nakon bootanja "
-"sistema i popravite podešenja koristeći Mandrake Kontrolni centar, sekcija "
-"\"Mreža i Internet\"/\"Konekcija\", a zatim podesite štampač, ponovo "
-"koristeći Mandrake Kontrolni centar, sekcija \"Hardver\"/\"Štampač\""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"MreĹžni pristup nije aktivan i nije mogao biti pokrenut. Molimo provjerite "
-"vaĹĄu konfiguraciju i vaĹĄ hardware. Onda ponovo pokuĹĄajte podesiti udaljeni "
-"štampač."
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Restartujem sistem za ĹĄtampu ..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "visok"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "paranoičan"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Instaliram sistem za ĹĄtampu na sigurnosnom nivou: %s"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Sada ćete instalirati sistem za štampu %s na sistemu koji je na sigurnosnom "
-"nivou % s.\n"
-"\n"
-"Ovaj sistem za štampu pokreće demon (pozadinski proces) koji čeka zadatke "
-"štampe i rješava ih. Ovom demonu takođe mogu pristupiti drugi računari putem "
-"mreže, tako da je to moguća tačka napada. Stoga se tek rijetki od odabranih "
-"demona pokreću na ovom sigurnosnom nivou.\n"
-"\n"
-"Da li zaista želite podesiti štampanje na ovom računaru?"
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Pokrećem sistem za štampu tokom boota"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Sistem za štampu (%s) se neće pokrenuti automatski prilikom boota računara.\n"
-"\n"
-"Moguće je da je automatsko pokretanje isključeno prilikom promjene na viši "
-"nivo sigurnosni, pošto je sistem za štampu moguća tačka napada.\n"
-"\n"
-"Da li želite da ponovo uključite automatsko pokretanje sistema za štampu?"
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Provjeravam instalirani software..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "Uklanjam LPRng..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "Uklanjam LPD..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Izaberite spooler štampača"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Koji sistem ĹĄtampanja (spooler) Ĺželite koristiti?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Podešavam štampač \"%s\"..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "Instaliram Foomatic..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Opcije štampača"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "Pripremam PrinterDrake..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-msgid "Configuring applications..."
-msgstr "PodeĹĄavam aplikacije..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Da li Ĺželite podesiti ĹĄtampanje?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Sistem ĹĄtampe: "
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Sljedeći štampači su podešeni. Dvokliknite na štampač da promjenite njegove "
-"postavke; da ga učinite podrazumjevanim štampačem; da vidite informacije o "
-"njemu; ili da učinite štampač na udaljenom CUPS serveru upotrebljivim iz "
-"Star Office/OpenOffice.org-a."
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Sljedeli štampači su podešeni. Kliknite dva puta na neki od njih za izmjenu "
-"postavki; ako ga želite učiniti podrazumjevanim štampačem; ili da biste "
-"vidjeli informacije o njemu."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Osvježi listu štampača (kako bi bili prikazani svi dostupni CUPS štampači)"
-
-#: ../../printerdrake.pm_.c:2464
-msgid "Change the printing system"
-msgstr "Promjenite sistem ĹĄtampe"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Normalni mod"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Želite li podesiti još jedan štampač?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Izmjeni konfiguraciju štampača"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Štampač %s\n"
-"Šta želite da izmjenite na ovom štampaču?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "Uradi!"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Tip konekcije štampača"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Naziv štampača, opis, lokacija"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Proizvođač štampača, model, drajver"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Proizvođač štampača, model"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Podesi štampač kao podrazumjevani"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Dodaj ovaj štampač u Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Ukloni ovaj štampač iz Star/Open Offica"
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Ĺ tampaj testnu stranicu"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Saznaj kako koristiti ovaj štampač"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Ukloni štampač"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Uklanjam stari štampač \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Podrazumjevani štampač"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Štampač \"%s\" je sada podešen kao podrazumjevani štampač."
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Dodajem štampač u Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr "Štampač \"%s\" je uspješno dodan u Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr "Nisam uspio dodati štampač \"%s\" u Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Uklanjam štampač iz Star/Open Offica"
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr "Štampač \"%s\" je uspješno uklonjen iz Star/Open Offica."
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "Nisam uspio ukloniti štampač \"%s\" iz Star/Open Offica."
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Da li želite da uklonite štampač \"%s\"?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Uklanjam štampač \"%s\" ..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "PodeĹĄavanje proxija"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Dobro doĹĄli u alat za podeĹĄavanje proxija.\n"
-"qn Ovdje ćete biti u prilici da podesite vaše http i ftp proxije\n"
-"sa ili bez logina i ĹĄifre\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Molimo popunite informacije o http proxiju\n"
-"Ostavite polja praznim ako ne Ĺželite http proxy"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "port"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "Url treba počinjati sa 'http:'"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Port treba biti broj"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Molimo popunite informacije o ftp proxiju\n"
-"Ostavite polja praznim ako ne Ĺželite ftp proxy"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Url treba počinjati sa 'ftp:'"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Molimo unesite login i ĹĄifru za proxy, ako su potrebni.\n"
-"Ostavite polja praznim ako ne Ĺželite login/ĹĄifru"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "login"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "ĹĄifra"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "ponovo unesite ĹĄifru"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Ĺ ifre se ne poklapaju. PokuĹĄajte opet!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Ne mogu dodati particiju na _formatiran_ RAID md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Ne mogu pisati datoteku %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid nije uspio"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid nije uspio (moĹžda nedostaju raidtools?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Nema dovoljno particija za RAID nivo %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Pokreni ALSA zvučni sistem (Advanced Linux Sound Architecture)"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron periodični pokretač komandi."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd se koristi za nadgledanje statusa baterija i logovanje preko\n"
-"sysloga. Također se može koristiti za gašenje računara kada su baterije "
-"potroĹĄene."
-
-#: ../../services.pm_.c:18
-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 ""
-"Pokreće komande zakazane putem at komande u vrijeme koje je zadato\n"
-"prilikom pokretanja at-a, te pokreće pozadinske komande kada je nizak "
-"prosječni nivo opterećenja."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron je standardan UNIX program koji pokreće programe koje zada korisnik\n"
-"u periodičnim terminima. vixie cron dodaje veći broj mogućnosti osnovnom\n"
-"UNIX cronu, uključujući bolju sigurnost i moćnije opcije za podešavanje."
-
-#: ../../services.pm_.c:23
-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 dodaje podrĹĄku za miĹĄa tekst-baziranim aplikacijama kao ĹĄto je\n"
-"Midnight Commander. On također omogućuje konzolne isjeci/zaljepi operacije\n"
-"pomoću miša i uključuje podršku za pop-up menije na konzoli."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake pokreće probavanje hardware-a i opcionalno konfiguriše\n"
-"novi/izmjenjeni hardware."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache je World Wide Web server. Koristi se za posluĹživanje HTML\n"
-"datoteka i CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Demon za nadgledanje Interneta (obično nazvan inetd) pokreće\n"
-"raznolike druge Internet servise po potrebi. Odgovoran je za pokretanje\n"
-"raznih servisa, kao što su telnet, ftp, rsh i rlogin. Isključivanje inetd-a\n"
-"isključuje sve servise za koje je on nadležan."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Pokrenite filtriranje paketa za Linux kernel seriju 2.2 kako\n"
-"biste postavili firewall i zaštitili vaš računar od mrežnih napada."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Ovaj paket učitava izabranu mapu tastature kao što je podešeno u\n"
-"/etc/sysconfig/keyboarc. Ovo moĹže biti izabrano koriĹĄtenjem kbdconfig\n"
-"programa. Možete ovo ostaviti uključenim na većini računara."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Automatsko regenerisanje kernel zaglavlja u /boot za\n"
-"/usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Automatsko prepoznavanje i podeĹĄavanje hardware-a tokom boota."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf će ponekad obaviti raznolike zadatke tokom boota\n"
-"kako bi se odrĹžala sistemska konfiguracija."
-
-#: ../../services.pm_.c:43
-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 je demon za ĹĄtampu koji je potreban da bi lpr radio ispravno.\n"
-"To je u osnovi server koji dodjeljuje zadatke štampe štampaču/ima."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtuelni Server, koristi se za izgradnju servera visokih performansi\n"
-"i dostupnosti."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) je Domain Name Server (DNS) koji se koristi za pretvaranje "
-"imena računara u IP adrese."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Montira i demontira sve Network File System (NFS), SMB (Lan\n"
-"Manager/Windows) i NCP (NetWare) tačke montiranja."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktivira/deaktivira sve mreĹžne interfejse koji su konfigurisani\n"
-"za pokretanje tokom boota."
-
-#: ../../services.pm_.c:52
-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 je popularan protokol za dijeljenje datoteka preko TCP/IP mreĹža.\n"
-"Ovaj servis omogućuje funkcionalnost NFS servera, koji je podešen putem\n"
-"/etc/exports datoteke."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS je popularan protokol za dijeljenje datoteka preko TCP/IP mreĹža.\n"
-"Ovaj servis omogućuje NFS funkcionalnost zaključavanja datoteka."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Automatski uključuje numlock bravu tipaka pod konzolom i\n"
-"XFree tokom boota."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Podrška za OK 4w i kompatibilne windows štampače"
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA podrška je obično za podržavanje stvari kao što je\n"
-"ethernet i modemi u laptopima. Neće se pokrenuti dok se ne\n"
-"konfiguriše tako da je sigurno imati ga instaliranog na računarima\n"
-"kojima nije potreban."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Portmapper upravlja RPC konekcijama, koje koriste protokoli kao ĹĄto\n"
-"su NFS i NIS. Portmap server mora raditi na računarima koje služe kao\n"
-"serveri za protokole koji koriste RPC mehanizam."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix je Mail Transport Agent, tj. program koji ĹĄalje poĹĄtu sa jednog "
-"računara na drugu."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Spašava i vraća sistemski raspon entropije za veću kvalitetu\n"
-"generisanja slučajnih brojeva."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Dodjeljuje sirove uređaje blokovskim urećajima (kao što su\n"
-"particije hard diska) za upotrebu aplikacijama kao ĹĄto je Oracle"
-
-#: ../../services.pm_.c:71
-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 demon omogućuje da se automatska IP tabela rutiranja podešava\n"
-"preko RIP protokola. Mada se RIP često koristi na malim mrežama, "
-"kompleksniji\n"
-"protokoli rutiranja su potrebni za sloĹžene mreĹže."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat protokol omogućava korisnicima na mreži da dobave\n"
-"mjeru performansi za svaki računar na toj mreži"
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"rusers protokol omogućava korisnicima na mreži da identificiraju\n"
-"ko je prijavljen na ostalim računarima."
-
-#: ../../services.pm_.c:78
-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 protokol omogućava udaljenim korisnicima da dobiju listu svih\n"
-"korisnika prijavljenih na računar na kojem radi rwho demon (slično fingeru)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Pokreće zvučni sistem na vašem računaru"
-
-#: ../../services.pm_.c:81
-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 je pogodnost pomoću koje mnogi demoni zapisuju poruke\n"
-"u razne sistemske dnevnike. Dobra ideja je uvijek imati pokrenuti syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Pokreće drajvere za vaše usb uređaje."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Pokreće X Font Server (ovo je nužno da bi XFree radio)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Izaberite koji servisi se trebaju pokretati automatski prilikom boota"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Ĺ tampa"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Dijeljenje datoteka"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "Sistem"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Udaljena administracija"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Server baze podataka"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Servisi: %d aktiviran za %d registrovan"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Servisi"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "aktivan"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "zaustavljen"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Servisi i demoni"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Nema dodatnih informacija\n"
-"o ovom servisu, izvinite."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Prilikom boota"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Start"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Stop"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Hvala vam ĹĄto ste odabrali Mandrake Linux 8.2"
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr "Dobro doĹĄli u svijet otvorenog izvornog koda"
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-"Uspjeh MandrakeSofta je baziran na principima Slobodnog softvera. VaĹĄ novi "
-"operativni sistem je rezultat zajedničkog rada dijela Linux zajednice širom "
-"svijeta"
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "PridruĹžite se svijetu Slobodnog softvera"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-"Upoznajte Open Source zajednicu i postanite njen član. Učite, podučavajte i "
-"pomozite drugima tako što ćete pristupiti mnogim forumima za diskusiju koje "
-"ćete naći na našim \"Community\" stranicama"
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet i razmjena poruka"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-"Mandrake Linux 8.2 pruĹža najbolji softver za pristup svemu ĹĄto Internet "
-"pruža: Pretražujte web i pregledajte animacije pomoću Mozilla-e i "
-"Konquerora, razmjenjujte email i organizirajte vaše lične podatke pomoću "
-"Evolution i KMail-a, i mnogo drugog"
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedija i grafika"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-"Mandrake Linux 8.2 vam omogućuje da potjerate vaš multimedijalni računar do "
-"krajnjih granica! Koristite najnoviji softver za sluĹĄanje muzike i audio "
-"datoteka, mijenjajte i organizujte vaĹĄe slike i fotografije, gledajte TV i "
-"video-snimke i mnogo drugog"
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Programiranje"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-"Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte moć "
-"GNU gcc kompajlera kao i najboljih razvojnih okolina koje su Open Source"
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Mandrake Kontrolni centar"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-"Mandrake Linux 8.2 Kontrolni centar je jedinstvena lokacija za puno "
-"prilagođavanje i podešavanje vašeg Mandrake sistema"
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "Korisnički okoliš"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-"Mandrake Linux 8.2 nudi vam na izbor 11 različitih grafičkih desktop okolina "
-"i window managera uključujući GNOME 1.4, KDE 2.2.2, Window Maker 0.8 i druge"
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Serverski softver"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-"Pretvorite vaš računar u moćan server sa svega nekoliko klikova mišem: Web "
-"server, email, firewall, file i print server, ..."
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Igre"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-"Mandrake Linux 8.2 pruĹža najbolje Open Source igre - arkadne, akcione, "
-"karte, sportovi, strategije, ..."
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-"Želite li naučiti Linux jednostavno, brzo i besplatno? MandrakeSoft vam nudi "
-"besplatno učenje Linuxa kao i način za testiranje vašeg napretka na "
-"MandrakeCampus-u -- naĹĄem online centru za obuku"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-"Kvalitetna podrĹĄka od strane Linux zajednice i MandrakeSofta nalazi se odmah "
-"iza ugla. A ako ste već Linux veteran, postanite \"Expert\" i dijelite vaše "
-"znanje na naĹĄem web sajtu za podrĹĄku"
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-"Za sve vaĹĄe IT projekte, naĹĄi konsultanti su spremni da analiziraju vaĹĄe "
-"potrebe i ponude prilagođeno rješenje. Iskoristite veliko iskustvo "
-"MandrakeSofta kao proizvođača Linux rješenja kako biste ponudili pravu IT "
-"alternativu za vaĹĄ biznis"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-"Čitav raspon Linux rješenja, kao i posebne ponude za proizvode i "
-"'potrepĹĄtine', dostupni su u naĹĄoj online radnji"
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-"Za viĹĄe informacija o MandrakeSoftovim profesionalnim uslugama i "
-"komercijalnoj ponudi, molimo posjetite sljedeću web stranicu:"
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Instaliram pakete..."
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ne mogu čitati vašu tabelu particija, previše je oštećena za mene :(\n"
-"Pokušaću izbrisati loše particije"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "GreĹĄka!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Ne mogu pronaći potrebnu image datoteku '%s'"
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "PodeĹĄavanje auto instalacije"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Sada ćete podesiti Auto Instalacijsku disketu. Ova opcija je pomalo opasna i "
-"mora biti koriĹĄtena uz paĹžnju.\n"
-"\n"
-"Sa ovom opcijom bićete u mogućnosti da ponovite instalaciju koju ste obavili "
-"na ovom računaru, pri ćemu ćete biti interaktivno upitani za neke korake, "
-"kako biste promjenili njihove vrijednosti.\n"
-"\n"
-"Za maksimalnu sigurnost, particioniranje i formatiranje nikad neće biti "
-"obavljeno automatski, bez obzira ĹĄta izaberete tokom instalacije na ovaj "
-"računar.\n"
-"\n"
-"Da li Ĺželite nastaviti?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Automatska konfiguracija koraka"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Molimo izaberite za svaki korak da li ćete ga ponoviti kao i u vašoj "
-"instalaciji ili će se obaviti ručno"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Dobro doĹĄli.\n"
-"\n"
-"Parametri automatske instalacije su dostupni u odjeljcima lijevo"
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Čestitamo!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Disketa je uspjeĹĄno napravljena.\n"
-"Sada moĹžete ponoviti vaĹĄu instalaciju."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Auto instalacija"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Dodaj stavku"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Ukloniti zadnju stavku"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup IzvjeĹĄtaj \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup IzvjeĹĄtaj o demonima\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Detalji izvjeĹĄtaja\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "ukupno napredak"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "Backup-uj sistemske datoteke..."
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "Datoteke backup-a hard diska..."
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "Backup-uj korisničke datoteke..."
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Napredak backup-a hard diska..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Backup-uj ostale datoteke..."
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"lista datoteka poslana putem FTPa : %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) problem sa FTP konekcijom: Nije bilo moguće poslati vaše backup datoteke "
-"putem FTPa.\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) GreĹĄka tokom slanja poĹĄte. \n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "Izbor datoteka"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr "Izaberite datoteke ili direktorije i kliknite na 'Dodaj'"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Molimo uključite sve potrebne opcije.\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Ove opcije mogu spasiti ili vratiti sve datoteke u vaĹĄem /etc direktoriju.\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Backup sistemskih datoteka. ( /etc direktorij )"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Zaobiđi kritične datoteke (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Sa ovom opcijom bićete u mogućnosti da vratite bilo koju\n"
-" verziju vaĹĄeg /etc direktorija."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr "Molimo izaberite sve korisnike koje želite uključiti u vaš backup."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "Ne uključuj spremnik web preglednika"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Ukloni izabrano"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "Korisnici"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Koristi FTP vezu za backup"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Molimo unesite ime računara ili IP."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-"Molimo unesite direktorij za\n"
-" smještaj backupa na ovom računaru."
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Molimo unesite vaĹĄ login"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Molimo unesite vaĹĄu ĹĄifru"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Zapamti ovu ĹĄifru"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP konekcija"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Sigurna konekcija"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "Koristi CD/DVDROM za backup"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Molimo izaberite vaĹĄ CD prostor"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "Molim uključite ako koristite CDRW medij"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Molim uključite ako želite obrisati vaš CDRW prije"
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Molim izaberite ako želite uključiti\n"
-" instalacijski boot na CDu."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Molim unesite naziv uređaja vašeg CD Writera\n"
-" npr: 0,1,0"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "Koristi traku za backup"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "Molim unesite ime uređaja kojeg ćete koristiti za backup"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Molim unesite maksimalnu veličinu\n"
-" dozvoljenu za Draxbackup"
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Molimo unesite direktorij za spasiti:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Koristi quotu za backup datoteke."
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "MreĹža"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "HardDrive / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "svakog sata"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "dnevno"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "sedmično"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "mjesečno"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "Koristi demon"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"Izaberite vremenski interval\n"
-"između svakog backupa"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"Molim izaberite medij\n"
-"za backup."
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Koristi hard disk sa demonom"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Koristi FTP sa demonom"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Molim budite sigurni da je cron demon aktiviran u vaĹĄim servisima."
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "PoĹĄalji mail izvjeĹĄtaj nakon svakog backupa na :"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "Ĺ ta"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "Gdje"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "Kada"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "ViĹĄe opcija"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "PodeĹĄavanje Drakbackup-a"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Molimo izaberite gdje Ĺželite backupovati"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "na hard disk"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "preko mreĹže"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Molim izaberite ĹĄta Ĺželite backupovati"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "Backup sistema"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "Backup korisnika"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Ručno izaberite korisnika"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Izvori backup-a: \n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- sistemske datoteke:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- korisničke datoteke:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- ostale datoteke:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- spasi na hard disku u direktoriju : %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- spasi na FTPu na računaru : %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t korisničko ime: %s\n"
-"\t\t u direktoriju: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Opcije:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tNe uključuj sistemske datoteke\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tBackupi koriste tar i bzip2\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tBackupi koriste tar i gzip\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- Demon (%s) uključuje :\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t-Hard disk.\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-CDROM.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-MreĹžu preko FTPa.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-MreĹžu preko SSH.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Bez podešavanja, molim kliknite na Čarobnjak ili Napredno.\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Lista podataka za vraćanje:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Lista oštećenih podataka:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "Molimo isključite ili pobrišite ga idući put."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "Backup datoteke su oštećene"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " Svi vaĹĄi izabrani podaci su "
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " uspjeĹĄno spaĹĄeni na %s "
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " Vrati konfiguraciju "
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "OK za vraćanje ostalih datoteka."
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Lista korisnika za vraćanje (samo najsvježiji datum po korisniku je značajan)"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "Vrati sistemske datoteke prije:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "molim izaberite datum za vraćanje"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Koristi hard disk za backup"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Vrati sa hard diska"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "Molim unesite direktorij gdje su smjeĹĄteni backupi"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Izaberite drugi medij za vraćanje"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Drugi medij"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "Vrati sistem"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Vrati korisnike"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Vrati ostalo"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "izaberite stazu za vraćanje (umjesto / )"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Izvrši novi backup prije vraćanja (samo za inkrementalni backup.)"
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Pobriši korisničke direktorije prije vraćanja."
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Vrati sve backupe"
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "Ručno vraćanje"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Pomoć"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "Prethodni"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Spasi"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Izgradi backup"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Vrati"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Sljedeći"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Molimo pokrenite Izgradi backup prije vraćanja...\n"
-" ili provjerite da li je put za spaĹĄavanje ispravan."
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"GreĹĄka tokom sendmaila\n"
-" vaĹĄ mail izvjeĹĄtaj nije poslan\n"
-" Molim podesite sendmail"
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista paketa za instalaciju"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"GreĹĄka tokom slanja datoteke preko FTPa.\n"
-" Molimo ispravite vaĹĄu FTP konfiguraciju."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Molim izaberite podatke za vraćanje..."
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Molim izaberite medij za backup..."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Molim izaberite podatke za backup..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Nije pronađena konfiguraciona datoteka \n"
-"molim kliknite na Čarobnjak ili Napredno."
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "U izradi ... molim sačekajte."
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "Backup sistemskih datoteka"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "Backup korisničkih datoteka"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Backup ostalih datoteka"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Ukupan napredak"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "slanje datoteka putem FTPa"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Ĺ aljem datoteke..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "Lista podataka koji će biti smješteni na CDROM."
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Molim unesite brzinu cd pisača"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Molim unesite naziv uređaja vašeg CD pisača (ex: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Molim uključite ako želite imati instalacioni boot na vašem CDu."
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "Backup-uj sada iz konfiguracijske datoteke"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Pogledaj postavke backupa."
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "Čarobnjak za podešavanje"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "Napredno podeĹĄavanje"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "Backup-uj sada"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-"\n"
-" Neke greĹĄke prilikom slanja poruka moĹže izazvati \n"
-" loše podešen postfix. Ovo možete riješiti tako što ćete\n"
-" podesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Instalacija %sa nije uspjela. Javila se sljedeća greška:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "PretraĹži instalirane fontove"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Isključi instalirane fontove"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "obradi sve fontove"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "nije pronađen nijedan font"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "gotovo"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "ne mogu naći nijedan font na montiranim particijama"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Ponovo izaberi ispravne fontove"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "ne mogu naći nijedan font.\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "PretraĹži fontove na listi instaliranih"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Kopiranje fontova"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "Instalacija True Type fontova"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "molimo sačekajte tokom ttmkfdir..."
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "ZavrĹĄena True Type instalacija"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "Konverzija fontova"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "type1inst kreiranje"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr "Ghostscript referenciranje"
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "ttf fonts konverzija"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "pfm fonts konverzija"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Onemogući privremene datoteke"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "Restartuj XFS"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Onemogući datoteke fontova"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "restart xfs-a"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Prije instaliranja fontova, provjerite da li imate dozvole da ih koristite i "
-"instalirate na va[em sistemu.\n"
-"\n"
-"-Možete instalirati fontove koristeći uobičajen način. U rijetkim "
-"slučajevima, neispravni fontovi mogu zaglaviti vaš X Server."
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "Uvoz fontova"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Preuzmi fontove iz Windowsa"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Deinstaliraj fontove"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Napredne opcije"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Lista fontova"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Izaberite aplikacije koje će podržavati fontove :"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Razni štampači"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Izaberite font datoteku ili direktorij i kliknite na 'Dodaj'"
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Lista instalacije"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "kliknite ovdje ako ste sigurni."
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "ovdje ako ne."
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "NiĹĄta izabrano"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Sve izabrano"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "PobriĹĄi listu"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Probni inicijali"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Kopiraj fontove na sistem"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Instaliraj i konvertuj fontove"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Post Install"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "PobriĹĄi fontove sa mog sistema"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Post Uninstall"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Dijeljenje Internet konekcije"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Dijeljenje Internet konekcije je trenutno aktivno"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Dijeljenje Internet konekcije je već podešeno. Trenutno je\n"
-"aktivno.\n"
-"\n"
-"Ĺ ta Ĺželite uraditi?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "isključi"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "otkaĹži"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "rekonfiguriĹĄi"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Isključujem servere..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Dijeljenje Internet konekcije je sada isključeno."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Dijeljenje Internet konekcije je trenutno neaktivno"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Dijeljenje Internet konekcije je već podešeno. Trenutno je\n"
-"neaktivno.\n"
-"\n"
-"Ĺ ta Ĺželite uraditi?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "uključi"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Uključujem servere..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Dijeljenje Internet konekcije je sada uključeno."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Sada ćete konfigurisati vaš računar za dijeljenje Internet konekcije.\n"
-"Sa ovom opcijom, ostali računari na vašoj lokalnoj mreži će moći koristiti "
-"Internet konekciju ovog računara. \n"
-"\n"
-"Napomena: potreban vam je poseban MreĹžni adapter da biste podesili Lokalnu "
-"mreĹžu (LAN)."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interfejs %s (koristeći modul %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Interfejs %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Nema mreĹžnog adaptera na vaĹĄem sistemu!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Na vašem sistemu nije pronađen nijedan ethernet mrežni adapter. Molimo "
-"pokrenite alat za podeĹĄavanje hardware-a."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "MreĹžni interface"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Trenutno je samo jedan mreĹžni adapter podeĹĄen na vaĹĄem sistemu:\n"
-"\n"
-"%s\n"
-"\n"
-"Sada ću podesiti vašu Lokalnu mrežu sa ovim adapterom."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Molimo izaberite koji mrežni adapter će biti spojen na vašu Lokalnu mrežu."
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Mrežni interfejs je već podešen"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"Upozorenje, mrežni adapter (%s) je već podešen.\n"
-"\n"
-"Da li Ĺželite automatsko ponovno podeĹĄavanje?\n"
-"\n"
-"To možete obaviti ručno, ali morate znati šta radite."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Automatsko ponovno podeĹĄavanje"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "PrikaĹži postavke trenutnog interfejsa"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"Trenutna konfiguracija `%s':\n"
-"\n"
-"MreĹža: %s\n"
-"IP adresa: %s\n"
-"IP atributi: %s\n"
-"Drajver: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Mogu zadržati trenutnu konfiguraciju i pretpostaviti da ste već podesili "
-"DHCP server; u tom slučaju molim provjerite da li sam ispravno pročitao "
-"mrežu C klase koju ćete koristiti na lokalnoj mreži; neću je ponovo podesiti "
-"i neću mijenjati vaše postavke DHCP servera.\n"
-"\n"
-"Ako ne, mogu ponovo podesiti vaĹĄ interfejs i podesiti DHCP server za vas.\n"
-"\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "Lokalna mreĹža C klase"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "IP adresa (ovog) DHCP servera"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Ponovo podesi interfejs i DHCP server"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Lokalna mreĹža se ne zavrĹĄava sa `.0', izlazim."
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Potencijalan konflikt LAN adresa pronađen u trenutnoj konfiguraciji %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Otkrivena konfiguracija firewalla!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Upozorenje! Pronađena je postojeća konfiguracija firewalla. Možda će biti "
-"potrebno neko ručno podešavanje nakon instalacije."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "PodeĹĄavam..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Podešavam skripte, instaliram software, pokrećem servere..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemi tokom instaliranja paketa %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Sve je konfigurisano.\n"
-"Sada možete dijeliti Internet konekciju sa ostalim računarima na vašoj "
-"lokalnoj mreži, koristeći automatsku mrežnu konfiguraciju (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Podešavanje je već završeno, ali je trenutno isključeno."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Podešavanje je već završeno i trenutno je uključeno."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Dijeljenje Internet konekcije nije nikad podeĹĄeno."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "PodeĹĄavanje dijeljenja Internet konekcije"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"DobrodoĹĄli u alat za Dijeljenje Internet konekcije!\n"
-"\n"
-"%s\n"
-"\n"
-"Kliknite na Podesi da pokrenete čarobnjak."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "PodeĹĄavanje mreĹže (%d adaptera)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil:"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "BriĹĄi profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil za brisanje:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novi profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Naziv profila koji će biti kreiran (novi profil je kreiran kao kopija "
-"postojećeg) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostname: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Pristup Internetu"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tip:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfejs:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Molim sačekajte"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Podesi Internet pristup..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "PodeĹĄavanje LANa"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Drajver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfejs"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Podesi Lokalnu mreĹžu..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Kliknite ovdje za pokretanje čarobnjaka ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Čarobnjak..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Primjeni"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Molimo sačekajte... Primjenjujem konfiguraciju"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Konektovan"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nije konektovan"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konektuj se..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Prekini konekciju..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Upozorenje, otkrivena je druga Internet konekcija, moĹžda preko vaĹĄe mreĹže"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemate nijedan podeĹĄen interfejs.\n"
-"Podesite ih prvo klikajući na 'Podesi'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "PodeĹĄavanje LANa"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Boot protokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Pokrenut na bootu"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "pokreni sada"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "zaustavi sada"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Interfejs joĹĄ nije podeĹĄen.\n"
-"Pokrenite čarobnjak za podešavanje u glavnom prozoru"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemate nijednu Internet konekciju.\n"
-"Napravite jednu klikajući na 'Podesi'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "PodeĹĄavanje Internet konekcije"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "PodeĹĄavanje Internet konekcije"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tip konekcije: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet kartica"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "PodeĹĄavanje nivoa sigurnosti"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Kontrolni centar"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Izaberite alat koji Ĺželite koristiti"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "Kanada (kablovska)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (bcast)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "USA (kablovska)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "USA (cable-hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Kina (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japan (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "Japan (kablovska)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Istočna Evropa"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Irska"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "Zapadna Evropa"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Australija"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "Novi Zeland"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "JuĹžna Afrika"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Molim,\n"
-"unesite vaĹĄ tv standard i drĹžavu"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "TV standard :"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Oblast :"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "Pretraga TV kanala je u toku ..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "TraĹžim TV kanale"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "upotreba: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Molimo izaberite izgled vaĹĄe tastature."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Želite li da BackSpace vrati Delete u konzoli?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Promjenite CD-ROM"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Molimo ubacite Instalacioni CD u vaš CD-ROM uređaj i pritisnite Ok kad ste "
-"spremni.\n"
-"Ako ga nemate, pritisnite Odustani da bi se izbjegao live upgrade."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Ne mogu da pokrenem live upgrade !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr "Izmjena je napravljena, ali da bi stupila na snagu morate se odjaviti"
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "PrikaĹži samo za izabrani dan"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/File/_New"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Datoteka/_Otvori"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Datoteka/_Sačuvaj"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Datoteaka/Sačuvaj _kao"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Datoteka/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Opcije"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Opcije/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Pomoć"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Pomoć/_O programu..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "Korisnik"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "Poruke"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "Syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "ObjaĹĄnjenja Mandrake alata"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "pretraĹživanje"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Alat za pregled vaĹĄih logova"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "PodeĹĄavanja"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "matching"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "but not matching"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Izaberi datoteku"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Kalendar"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "SadrĹžaj datoteke"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "Mail/SMS obavijest"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "molim sačekajte, parsiram datoteku: %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "PodeĹĄavanje Mail/SMS obavijesti"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Dobro doĹĄli u aplikaciju za podeĹĄavanje mail/SMSa.\n"
-"\n"
-"Ovdje moĹžete podesiti sistem obavjeĹĄtavanja.\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "postavke servisa"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-"MoĹžete primiti obavjeĹĄtenje ako neki od izabranih servisa prestane raditi"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "postavka opterećenja"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-"Primićete upozorenje ako je opterećenje (system load) veće od ove vrijednosti"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "postavka upozorenja"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "Podesite način na koji će vas sistem obavijestiti"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Sačuvaj kao..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Molimo izaberite vrstu vaĹĄeg miĹĄa."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "nije pronađen serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Emuliraj treće dugme?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "%s je pronađen na %s, podesi ga ?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Izaberite skener"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "Ovaj %s skener nije podrĹžan"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Boot uređaj"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"Ovaj %s skener se mora podesiti iz printerdrake-a.\n"
-"MoĹžete pokrenuti printerdrake iz Mandrake Kontrolnog centra u odjeljku "
-"Hardware."
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "PodeĹĄavanje firewalla"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "PodeĹĄavanje firewalla"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Već ste podesili firewall.\n"
-"Kliknite na Podesi kako bi se izmjenio ili uklonio firewall"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Kliknite na Podesi za podeĹĄavanje standardnog firewalla"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Izaberite svoj jezik"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Izaberite klasu instalacije"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Prepoznavanje hard diska"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "PodeĹĄavanje miĹĄa"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Izaberite vaĹĄu tastaturu"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Sigurnost"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Podešavanje datotečnih sistema"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formatiranje particija"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Izaberite pakete za instalaciju"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Sistem instalacije"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Dodajte korisnika"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "PodeĹĄavanje mreĹže"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "PodeĹĄavanje servisa"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Instalacija bootloadera"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Napravite boot disketu"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "PodeĹĄavanje X"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Instaliraj sistemske update"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Napusti instalaciju"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall podešavač\n"
-"\n"
-"On podešava lični firewall za ovaj Mandrake Linux računar.\n"
-"Za moćnu soluciju posebnog firewalla, molimo pogledajte\n"
-"specijaliziranu MandrakeSecurity Firewall distribuciju."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Sada ćemo vam postaviti pitanja o servisima kojima želite dozvoliti\n"
-"pristup sa Interneta. Molimo razmislite paĹžljivo o ovim pitanjima,\n"
-"jer je sigurnost vašeg računara bitna.\n"
-"\n"
-"Molimo vas, ako trenutno ne koristite neki od ovih servisa, isključite\n"
-"ga firewallom. MoĹžete izmjeniti ove postavke kad god Ĺželite ponovnim\n"
-"pokretanjem ove aplikacije!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut web server na ovom računaru za koji želite da ga\n"
-"cijeli Internet vidi? Ako imate pokrenut webserver kojem ćete pristupati\n"
-"samo sa ovog računara, možete slobodno ovdje odgovoriti NE.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut name server (DNS) na ovom računaru? Ako niste\n"
-"podesili DNS radi davanja informacija o IP i zoni cijelom Internetu, \n"
-"molimo vas odgovorite ne.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Da li Ĺželite da dozvolite ulazne Secure Shell (ssh) konekcije? Ovo\n"
-"je zamjena za telnet koju moĹžete koristiti za prijavu. Ako sada koristite\n"
-"telnet, definitivno trebate preći na ssh. Telnet nije kriptovan, tako\n"
-"da neki napadači mogu ukrasti vašu šifru ako ga koristite. ssh je\n"
-"kriptovan i ne dozvoljava ovo prisluĹĄkivanje."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Da li Ĺželite dozvoliti ulazne telnet konekcije?\n"
-"Ovo je uĹžasno nesigurno, kao ĹĄto je objaĹĄnjeno na prethodnom\n"
-"ekranu. Strogo preporučujemo da odgovorite Ne ovdje i koristite\n"
-"ssh umjesto telneta.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Da li imate pokrenut FTP server za koji želite da je pristupačan sa\n"
-"Interneta? Ako da, onda strogo preporučujemo da ga koristite samo\n"
-"za anonimne transfere. Bilo koju ĹĄifru koja je poslana putem FTPa\n"
-"mogu ukrasti napadači, pošto FTP također ne koristi kriptovanje.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut mail server ovdje? Ako ĹĄaljete poruke\n"
-"kroz pine, mutt ili neki drugi tekst-bazirani mail klijent, onda\n"
-"vjerovatno imate. U suprotnom, trebali biste isključiti ovo \n"
-"firewallom.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut POP ili IMAP server ovdje? Ovo bi\n"
-"bilo koriĹĄteno za smjeĹĄtaj ne-web-baziranih mail naloga\n"
-"za ljude na ovom računaru.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Čini se da koristite 2.2 kernel. Ako je vaša mrežna IP\n"
-"automatski podešena putem računara u vašoj kući ili\n"
-"uredu (dinamički dodjeljena), moramo ovo dozvoliti. Da\n"
-"li je ovo slučaj?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Da li vaš računar sinhronizuje vrijeme sa drugim računarom?\n"
-"Najčešće, ovo se koristi u srednje velikim Unix/Linux organizacijama\n"
-"za sinhronizaciju vremena za pravljenje dnevnika i slično. Ako\n"
-"niste dio većeg ureda i niste čuli za ovo, onda vjerovatno\n"
-"ovo nije slučaj."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"PodeĹĄavanje zavrĹĄeno. MoĹžemo li zapisati ove izmjene na disk?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Ne mogu otvoriti %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ne mogu otvoriti %s za pisanje: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr "Ne, ne treba mi DHCP"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr "Da, treba mi DHCP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr "Ne, ne treba mi NTP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr "Da, treba mi NTP"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr "Nemoj snimiti"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr "Snimi i izađi"
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "Čarobnjak za podešavanje firewalla"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr "Ne (isključi pristup sa interneta)"
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr "Da (dozovoli pristup sa interneta)"
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr "Molim sačekajte... Provjeravam instalirane pakete"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"GreĹĄka prilikom instaliranja paketa : %s i Bastille.\n"
-" Pokušajte ih instalirati ručno."
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Mrežni računar (klijent)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS server, SMB server, Proxy server, ssh server"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Ured"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome Radna stanica"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Alati za vaĹĄ Palm Pilot ili Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Radna stanica"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Firewall/Router"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domain Name i Network Information Server"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Uredski programi: obrada teksta (kword, abiword), tablični alati (kspread, "
-"gnumeric), pdf preglednici itd."
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Alati vezani za zvuk: mp3 ili midi playeri, mixeri itd."
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Knjige i Howto-i na temu Linuxa i Slobodnog Software-a"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE Radna stanica"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, itd."
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedija - Video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Skup alata za mail, news, web, prenos datoteka i chat"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Baze podataka"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL ili MySQL baza podataka"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Alati za lakše podešavanje računara"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedija - Zvuk"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Korisni programi"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentacija"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Alati za konzolu"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix mail server, Inn news server"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internet stanica"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimedijalna stanica"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "PodeĹĄavanje"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Druge grafičke okoline (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"K Desktop Environment, osnovno grafičko okruženje sa izborom pratećih alata"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Grafičko okruženje"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Alati za pravljenje i prĹženje CDova"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Uredska radna stanica"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, itd."
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Grafički programi kao što je Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C i C++ razvojne biblioteke, programi i include datoteke"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Network Computer server"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Mail/Groupware/News"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Stanica za igru"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Video playeri i editori"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedija - Grafika"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Zabavni programi: arkadne igre, igre za tablu, strategije itd."
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Skup alata za čitanje i slanje pošte i news-a (pine, mutt, tin...) i "
-"pregledanje Weba"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhiviranje, emulatori, nadzor"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Lične finansije"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Grafički okoliš sa skupom korisnički orjentisanih aplikacija i alata za "
-"radnu povrĹĄinu"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Klijenti za razne protokole uključujući ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Internet gateway"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programi za pregled i editovanje zvuka i videa"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Ostale grafičke okoline"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editori, ljuske, datotečni alati, terminali"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programi za upravljanje vaĹĄim finansijama, kao ĹĄto je gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Upravljanje ličnim informacijama"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedija - PrĹženje CDa"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Znanstvena radna stanica"
-
-#~ msgid "About"
-#~ msgstr "O programu"
-
-#~ msgid " Help "
-#~ msgstr " Pomoć "
-
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-2,*-r-*"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr ""
-#~ "Ne mogu pristupiti kernel modulima koji odgovaraju vaĹĄem kernelu "
-#~ "(nedostaje datoteka %s)"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Nijedan"
-
-#~ msgid "Choose a default printer!"
-#~ msgstr "Izaberite default štampač!"
-
-#~ msgid ""
-#~ "With remote CUPS servers, you do not have to configure any printer here; "
-#~ "CUPS servers inform your machine automatically about their printers. All "
-#~ "printers known to your machine currently are listed in the \"Default "
-#~ "printer\" field. Choose the default printer for your machine there and "
-#~ "click the \"Apply/Re-read printers\" button. Click the same button to "
-#~ "refresh the list (it can take up to 30 seconds after the start of CUPS "
-#~ "until all remote printers are visible). When your CUPS server is in a "
-#~ "different network, you have to give the CUPS server IP address and "
-#~ "optionally the port number to get the printer information from the "
-#~ "server, otherwise leave these fields blank."
-#~ msgstr ""
-#~ "Sa udaljenim CUPS serverom, ne morate podeĹĄavati nijedan\n"
-#~ "štampač ovdje; CUPS serveri obavještavaju vaš računar automatski\n"
-#~ "o svojim štampačima. Svi štampači koji su trenutno poznati vašem\n"
-#~ "računaru su izlistani u polju \"Podrazumjevani štampač\". Izaberite "
-#~ "podrazumjevani\n"
-#~ "štampač za vaš računar ovdje i kliknite na dugme \"Primjeni/Ponovo\n"
-#~ "pročitaj štampače\". Kliknite na isto dugme za osvježavanje liste (može\n"
-#~ "trajati do 30 sekundi nakon pokretanja CUPSa dok svi udaljeni štampači\n"
-#~ "ne postanu vidljivi). Kada je vaš CUPS server u različitoj mreži, morate "
-#~ "dati\n"
-#~ "IP adresu CUPS servera i eventualno broj porta kako bi se dobavile "
-#~ "informacije\n"
-#~ "o štampačima sa servera, inače ostavite ova polja praznim."
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Primjeni/Ponovo pročitaj štampače"
-
-#~ msgid "Configure printing system"
-#~ msgstr "PodeĹĄavanje sistema ĹĄtampe"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
deleted file mode 100644
index 0663d463f..000000000
--- a/perl-install/share/po/ca.po
+++ /dev/null
@@ -1,14978 +0,0 @@
-# drakX translation to Catalan
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (c) 1999 MandrakeSoft
-# Copyright (c) 1999-2001 Softcatalŕ
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\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:242
-msgid "Configure all heads independently"
-msgstr "Configura tots els capçals independentment"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Utilitza l'extensió Xinerama"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configura només la targeta \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Configuració Multi-head"
-
-#: ../../Xconfigurator.pm_.c:250
-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:261
-msgid "Graphic card"
-msgstr "Targeta grŕfica"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Seleccioneu una targeta grŕfica"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Escolliu un servidor X"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Escolliu un servidor X"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Servidor X"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Quina configuració de l'XFree voleu tenir?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"La vostra targeta pot tenir acceleració 3D de maquinari, perň només amb "
-"l'Xfree %s.\n"
-"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, 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:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "Xfree %s amb acceleració 3D de maquinari"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s,\n"
-"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
-"PENJAR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s amb acceleració 3D de maquinari EXPERIMENTAL"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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:417
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuració de l'XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-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:550
-msgid "Choose options for server"
-msgstr "Escolliu les opcions per al servidor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Escolliu un monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Els dos parŕmetres més importants son la velocitat de refresc vertical, que\n"
-"és la velocitat a quč es refresca tota la pantalla, i el més important, la\n"
-"velocitat de sincronització horitzontal, que és la velocitat a quč es\n"
-"visualitzen les línies d'exploració.\n"
-"\n"
-"És MOLT IMPORTANT que no especifiqueu un tipus de monitor amb un abast\n"
-"de sincronització superior a les possibilitats del vostre monitor, perquč\n"
-"el podríeu fer malbé.\n"
-"En cas de dubte, sigueu conservador amb aquest parŕmetre."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Velocitat de refresc horitzontal"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Velocitat de refresc vertical"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "El monitor no estŕ configurat"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "La targeta grŕfica encara no estŕ configurada"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Encara no s'han escollit les resolucions"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Voleu comprovar la configuració?"
-
-#: ../../Xconfigurator.pm_.c:650
-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:653
-msgid "Test of the configuration"
-msgstr "Comprova la configuració"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"intenteu canviar alguns parŕmetres"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "S'ha produďt un error:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Sortida en %d segons"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "És aquest el parŕmetre corrcte?"
-
-#: ../../Xconfigurator.pm_.c:751
-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:822
-msgid "Resolution"
-msgstr "Resolució"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Escolliu la resolució i la profunditat de color"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Targeta grŕfica: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servidor xFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Més"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "D'acord"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mode expert"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mostra'ls tots"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolucions"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Disposició del teclat: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Tipus de ratolí: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Dispositiu del ratolí: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Sincronització horitzontal del monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Refresc vertical del monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Targeta grŕfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Targeta grŕfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Memňria grŕfica: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Profunditat del color: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Resolució: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Servidor xFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Controlador de l'xFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "S'estŕ preparant la configuració de l'X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Quč voleu fer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Canvia el monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Canvia la targeta grŕfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Canvia les opcions del servidor"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Canvia la resolució"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostra la informació"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Torna-ho a comprovar"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Surt"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Voleu conservar els canvis?La configuració actual és:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X a l'inici"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Puc configurar el vostre ordinador de manera que executi X automŕticament "
-"durant l'arrencada.\n"
-"Voleu que X s'iniciď quan torneu a arrencar l'ordinador?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, 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:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-Enrere"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 colors (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32.768 colors (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65.536 colors (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milions de colors (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4.294 milions de colors (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB o més"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA estŕndard, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-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:132
-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:133
-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:134
-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:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA d'alta freqüčncia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-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:137
-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:138
-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:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor que pot fer 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor que pot fer 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Primer sector de la partició d'arrencada"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Primer sector de la unitat (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Instalˇlació del SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "On voleu instalˇlar el carregador d'arrencada?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Instalˇlació del LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO amb menú de text"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO amb menú grŕfic"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Arrencada des de DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Opcions principals del carregador d'arrencada"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Carregador d'arrencada a utilitzar"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Instalˇlació del carregador d'arrencada"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Dispositiu d'arrencada"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (no funciona en BIOS antics)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Compacte"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "compacte"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Mode de vídeo"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Demora abans d'arrencar la imatge predeterminada"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Contrasenya"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Contrasenya (un altre cop)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Limita les opcions de la línia d'ordres"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "limita"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Buida /tmp en cada arrencada"
-
-#: ../../any.pm_.c:183
-#, 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:185
-msgid "Enable multi profiles"
-msgstr "Habilita perfils múltiples"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Introduďu la mida de la RAM en Mb"
-
-#: ../../any.pm_.c:191
-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:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Si us plau, torneu-ho a intentar"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Les contrasenyes no coincideixen"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Missatge d'inicialització"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Demora de firmware obert"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Temps mŕxim d'arrencada del nucli"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Voleu habilitar l'arrencada des de CD?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Voleu habilitar l'arrencada des d'OF?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "OS per defecte?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Aquestes són les diferents entrades.\n"
-"Podeu afegir-ne algunes més o canviar-ne les existents."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Afegeix"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Fet"
-
-#: ../../any.pm_.c:265
-#, fuzzy
-msgid "Modify"
-msgstr "Modifica el RAID"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Quin tipus d'entrada voleu afegir?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Un altre SO (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Un altre SO (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Un altre SO (Windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Imatge"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Arrel"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Afegeix"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Lectura-escriptura"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Taula"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "No segur"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Etiqueta"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Predeterminat"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd-size"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "NoVideo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Elimina l'entrada"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "No es permet una etiqueta buida"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Heu de tenir una partició d'intercanvi"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Aquesta etiqueta ja estŕ en ús"
-
-# #msgid "Found %s %s interfaces"
-# #msgstr "S'han trobat interfícies %2$s %1$s"
-#: ../../any.pm_.c:656
-#, fuzzy, c-format
-msgid "Found %s %s interfaces"
-msgstr "S'han trobat interfícies %2$s %1$s"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "En teniu una altra?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Teniu alguna interfície %s?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "No"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Sí"
-
-#: ../../any.pm_.c:661
-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:695
-#, 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:696
-#, c-format
-msgid "(module %s)"
-msgstr "(mňdul %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Quin programa de control %s he de provar?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"En alguns casos, el programa de control %s necessita informació addicional\n"
-"per funcionar correctament, tot i que normalment funciona bé sense ella.\n"
-"Voleu especificar opcions addicionals o deixar que el programa de control\n"
-"cerqui al vostre ordinador la informació que necessita? Aquesta recerca\n"
-"podria blocar l'ordinador, perň aixň no causaria cap dany."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Exploració automŕtica"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Especifica les opcions"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ara podeu proporcionar les seves opcions per al mňdul %s.\n"
-"Les opcions estan amb el format ``nom=valor nom2=valor2 ...''.\n"
-"Per exemple, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcions del mňdul:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Ha fallat la cŕrrega del mňdul %s.\n"
-"Voleu tornar-ho a intentar amb altres parŕmetres?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(ja s'ha afegit %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Aquesta contrasenya és massa senzilla"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Si us plau, introduďu un nom d'usuari"
-
-#: ../../any.pm_.c:776
-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:777
-msgid "This user name is already added"
-msgstr "Aquest nom d'usuari ja s'ha afegit"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Afegeix un usuari"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Introduďu un usuari\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Accepta l'usuari"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Nom real"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Nom d'usuari"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Icona"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Entrada automŕtica"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-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:833
-msgid "Choose the default user:"
-msgstr "Escolliu l'usuari per omissió:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Escolliu el gestor de finestres per executar:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Si us plau, trieu un idioma per utilitzar."
-
-#: ../../any.pm_.c:851
-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ó"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Tots"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Afegeix un usuari"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalitzada"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "S'estŕ iniciant el CUPS"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Quins paquets voleu instalˇlar"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancelˇla"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Benvinguts, crackers"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Pobre"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Estŕndard"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Alt"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Alt"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoic"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Aquest nivell s'ha d'utilitzar amb cura. Fa el vostre sistema molt més "
-"fŕcil\n"
-"d'utilitzar, perň també molt sensible: no s'ha d'utilitzar en un ordinador\n"
-"connectat a d'altres o a Internet. No s'hi accedeix mitjançant contrasenya."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Ara, la contrasenya estŕ habilitada, perň l'ús com a ordinador de xarxa "
-"segueix sense ser recomanable."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Aquesta és la seguretat estŕndard recomanada per a un ordinador que\n"
-"s'utilitzarŕ per connectar-se a Internet com a client. Ara hi ha "
-"comprovacions de seguretat."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Amb aquest nivell de seguretat, la utilització d'aquest sistema com a\n"
-"servidor esdevé possible.\n"
-"La seguretat és ara prou alta com per utilitzar el sistema com a servidor\n"
-"que accepti connexions de molts clients. "
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Assumim les característiques del nivell 4, perň ara el sistema estŕ\n"
-"totalment tancat.\n"
-"Les característiques de seguretat estan al mŕxim."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Escolliu el nivell de seguretat"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "S'estŕ establint el nivell de seguretat"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Escolliu les opcions per al servidor"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Benvingut al %s, el selector de sistema operatiu!\n"
-"\n"
-"Trieu un sistema operatiu de la lista superior, o espereu\n"
-"%d segons per arrencar en el sistema operatiu predeterminat.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Benvingut al GRUB, el selector de sistema operatiu!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, 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."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Premeu Intro per arrencar el SO seleccionat, 'e' per editar les"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "ordres prčvies a l'arrencada, o 'c' per obtenir una línia d'ordres."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, 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:944
-msgid "not enough room in /boot"
-msgstr "no hi ha prou espai a /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Escriptori"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Menú Inici"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "On voleu instalˇlar el carregador d'arrencada?"
-
-#: ../../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 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Fitxer"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Fitxer/_Surt"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Monitor de categorització NewStyle"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Monitor NewStyle"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Monitor tradicional"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Monitor Gtk+ tradicional"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Executa l'Aurora durant l'arrencada"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Mode LILO/Grub"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Mode Yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, 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:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Configura"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Mode de sistema"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Executa el sistema X-Window en iniciar"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "No, no vull l'entrada automŕtica"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Sí, vull l'entrada automŕtica amb aquest (usuari, escriptori)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "D'acord"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "no es pot obrir /etc/inittab per a lectura: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "kB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minuts"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minute"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d segons"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "No puc afegir cap més partició"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-"Podeu seleccionar altres idiomes, que quedaran disponibles després de la "
-"instalˇlació"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "França"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Belga"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Alemany"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Grec"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Noruec"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Consulteu"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Italiŕ"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "sčrie"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Si us plau, feu primer una cňpia de seguretat de les vostres dades"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Llegiu-ho atentament!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"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/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Error"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Assistent"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Trieu una acció"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Teniu una partició FAT gran\n"
-"(utilitzada normalment pel DOS/Windows de Microsoft).\n"
-"Suggereixo que primer en canvieu la mida\n"
-"(feu-hi clic i després feu clic a \"Canvia la mida\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Si us plau, feu clic a una partició "
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detalls"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "ha fallat el muntatge"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Intercanvia"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Buit"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Altres"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Tipus de sistema de fitxers"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Crea"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tipus"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Utilitzeu ``%s'' al seu lloc"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Suprimeix"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Utilitzeu primer ``Unmount''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, 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/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Trieu una acció"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Crea una nova partició"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Normal > Expert"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Expert > Normal"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Desfés"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Voleu continuar igualment?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Surt sense desar"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Voleu sortir sense desar la taula de particions?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Voleu comprovar la configuració?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Assigna automŕticament"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Buida-ho tot"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Informació del correu"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "S'utilitzen totes les particions primŕries"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "No puc afegir cap més partició"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Per tenir més particions, suprimiu-ne una per poder crear una partició "
-"ampliada"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Escriu la taula de particions"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Rescata la taula de particions"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Rescata la taula de particions"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Rescata la taula de particions"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Muntatge automŕtic del suport extraďble"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Seleccioneu el fitxer"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"La cňpia de seguretat de la taula de particions no té la mateixa mida\n"
-"Voleu continuar igualment?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Advertčncia"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Inseriu un disquet a la unitat\n"
-"Se'n perdran totes les dades"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "S'estŕ intentant rescatar la taula de particions"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "Informació del correu"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Punt de muntatge"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Opcions"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Canvia la mida"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Mou"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formata"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Munta"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Afegeix al RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Afegeix al LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Desmunta"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Elimina del RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Elimina del LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Modifica el RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Utilitza per a loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Crea una nova partició"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "sector d'inici: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Mida en MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Tipus de sistema de fitxers: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Punt de muntatge: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Preferčncia: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "S'estŕ formatant el fitxer de loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Canvia el tipus de partició"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Quin sistema de fitxers voleu?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "On voleu muntar el fitxer de loopback %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "On voleu muntar el dispositiu %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"No es pot anulˇlar el punt de muntatge, perquč aquesta partició\n"
-"s'utilitza per al loopback. Elimineu primer el loopback"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "S'estan calculant els límits del sistema de fitxers de la FAT"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "S'estŕ canviant la mida"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "No es pot canviar la mida d'aquesta partició"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Cal fer una cňpia de seguretat de totes les dades d'aquesta partició"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Després de canviar la mida de la partició %s, se'n perdran totes les dades"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Escolliu la nova mida"
-
-#: ../../diskdrake/interactive.pm_.c:622
-#, fuzzy
-msgid "New size in MB: "
-msgstr "Mida en MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "A quin disc us voleu desplaçar?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sector"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "A quin sector us voleu desplaçar?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "S'estŕ desplaçant"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "S'estŕ desplaçant la partició..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Escolliu un RAID existent al qual afegir"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "nou"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Escolliu un LVM existent al qual afegir"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "Nom LVM?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Aquesta partició no es pot utilitzar per al loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Nom del fitxer de loopback: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Nom real"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Un altre loopback ja estŕ utilitzant el fitxer, escolliu-ne un altre"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "El fitxer ja existeix. El voleu utilitzar?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-#, fuzzy
-msgid "Mount options"
-msgstr "Opcions del mňdul:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "dispositiu"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "nivell"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "mida del tros"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Aneu amb compte: aquesta operació és perillosa."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Quin tipus de particionament?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Fins al moment no puc acceptar crear el /boot a la unitat (a un cilindre > "
-"1024).\n"
-"O esteu utilitzant LILO, i no funcionarŕ, o no l'esteu utilitzant i no "
-"necessiteu el /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"La partició que heu seleccionat per afegir com a arrel (/) estŕ ubicada "
-"físicament més enllŕ del cilindre nş 1024 del disc dur, i no teniu cap "
-"partició /boot.\n"
-"Si teniu previst utilitzar el gestor d'arrencada LILO, penseu d'afegir una "
-"partició /boot"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Heu seleccionat una partició de programari RAID com a arrel (/).\n"
-"Aixň no ho pot gestionar cap carregador d'arrencada sense una partició /"
-"boot.\n"
-"Per tant, assegureu-vos d'afegir una partició /boot"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "La taula de particions de la unitat %s s'escriurŕ al disc!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr ""
-"Us caldrŕ tornar a arrencar per tal que les modificacions tinguin efecte"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Després de formatar la partició %s, se'n perdran totes les dades"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "S'estŕ formatant"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "S'estŕ formatant el fitxer de loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "S'estŕ formatant la partició %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "l'mkraid ha fallit"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "No hi ha prou espai lliure per assignar noves particions"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "No hi ha prou espai lliure per assignar noves particions"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Resolució: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Dispositiu: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Lletra d'unitat del DOS: %s (només és una suposició)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tipus: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Nom: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Inici: sector %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Mida: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sectors"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cilindre %d a cilindre %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formatat\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Sense formatar\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Muntat\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Fitxer(s) de loopback: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"La partició s'ha arrencat per defecte\n"
-" (per a l'arrencada de l'MS-DOS, no per a LILO)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Nivell %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Mida del tros %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Discs RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Nom del fitxer de loopback: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-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/interactive.pm_.c:1076
-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/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Mida: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometria: %s cilindres, %s capçals, %s sectors\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Informació: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Discs LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Tipus de taula de particions: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "al bus %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Opcions: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Tipus de sistema de fitxers: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key 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)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Les contrasenyes no coincideixen"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "Canvia el tipus de partició"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Si us plau, feu clic a una partició "
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "servidor DNS"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatatge de %s ha fallat"
-
-#: ../../fs.pm_.c:548
-#, 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:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "s'ha produďt un error en muntar %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "senzill"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "servidor"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "No podeu utilitzar el JFS per a particions inferiors a 16 MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Els punts de muntatge han de començar amb una /"
-
-#: ../../fsedit.pm_.c:478
-#, 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:482
-#, 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:484
-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:486
-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:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "No podeu utilitzar un volum lňgic LVM per al punt de muntatge %s"
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "No hi ha prou espai per a l'assignació automŕtica"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, 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:697
-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 ""
-"S'ha produďt un error: no s'han trobat dispositius vŕlids on crear nous "
-"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
-"problema"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "No teniu cap partició!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Aquestes són les particions de Linux existents que s'han detectat a la\n"
-"vostra unitat de disc dur. Podeu conservar les eleccions fetes per "
-"l'assistent,\n"
-"són adequades per a un ús normal. Si les canvieu, heu de definir una "
-"partició\n"
-"root (\"/\"); no escolliu una partició massa petita, o no podreu instalˇlar\n"
-"prou programari. Si voleu emmagatzemar les dades en una altra partició, "
-"també\n"
-"haureu de seleccionar una \"/home\" (només si teniu més d'una partició de\n"
-"Linux).\n"
-"\n"
-"\n"
-"Per a la vostra informació, cada partició estŕ identificada d'aquesta "
-"manera: \"Nom\", \"Capacitat\".\n"
-"\n"
-"\n"
-"\"Nom\" es compon de: \"tipus d'unitat de disc\", \"número d'unitat de disc"
-"\",\n"
-"\"número de la partició\" (per exemple, \"hda1\").\n"
-"\n"
-"\n"
-"\"Tipus d'unitat de disc\" és \"hd\" si la vostre unitat de disc és IDE i "
-"\"sd\"\n"
-"si és SCSI.\n"
-"\n"
-"\n"
-"\"Número de la unitat de disc\" és sempre una lletra després d'\"hd\" o \"sd"
-"\".\n"
-"Amb unitats de disc IDE:\n"
-"\n"
-" * \"a\" significa \"unitat de disc mestre en el controlador IDE primari"
-"\",\n"
-"\n"
-" * \"b\" significa \"unitat de disc esclava en el controlador IDE primari"
-"\",\n"
-"\n"
-" * \"c\" significa \"unitat de disc mestre en el controlador IDE secundari"
-"\",\n"
-"\n"
-" * \"d\" significa \"unitat de disc esclava en el controlador IDE secundari"
-"\".\n"
-"\n"
-"\n"
-"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:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Ara podeu triar quins serveis voleu que s'iniciďn durant l'arrencada.\n"
-"\n"
-"\n"
-"Quan el ratolí passi sobre un element apareixerŕ un petit globus d'ajuda "
-"que\n"
-"explica la finalitat del servei.\n"
-"\n"
-"\n"
-"Aneu especialment amb cura en aquest pas si penseu utilitzar l'ordinador "
-"com\n"
-"a servidor: segurament no us interessarŕ iniciar serveis que no necessiteu.\n"
-"Recordeu que hi ha diversos serveis que poden ser perillosos si s'habiliten\n"
-"en un servidor.\n"
-"En general, seleccioneu només els serveis que realment necessiteu."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Ara és quan heu de decidir en quin lloc del vostre disc dur voleu "
-"instalˇlar\n"
-"el sistema operatiu Mandrake Linux. Si el disc és buit, o si un sistema\n"
-"operatiu existent n'utilitza tot l'espai disponible, us caldrŕ particionar-\n"
-"lo. Bŕsicament, particionar un disc dur consisteix en dividir-lo de manera\n"
-"lňgica per crear espai on instalˇlar el nou sistema Mandrake Linux.\n"
-"\n"
-"\n"
-"Atčs que els efectes d'aquest procés solen ser irreversibles, el "
-"particionament \n"
-"us pot espantar si sou un usuari sense experičncia.\n"
-"Aquest assistent simplifica aquest procés; abans de començar, consulteu el\n"
-"manual i preneu-vos el temps que calgui.\n"
-"\n"
-"\n"
-"Necessiteu, com a mínim, dues particions, una per al sistema operatiu en\n"
-"si i l'altra per a la memňria virtual (anomenada també \"Intercanvi\").\n"
-"\n"
-"\n"
-"Si les particions ja s'han definit (en una instalˇlació anterior o "
-"mitjançant\n"
-"una altra eina de particionament), només caldrŕ que seleccioneu les que "
-"voleu\n"
-"utilitzar per instalˇlar el sistema Linux.\n"
-"\n"
-"\n"
-"Si les particions encara no s'han definit, les heu de crear.\n"
-"Per fer-ho, utilitzeu l'assistent que trobareu més amunt; segons la\n"
-"configuració del vostre disc dur, hi ha diverses solucions possibles:\n"
-"\n"
-"* Utilitzar una partició existent: l'assistent ha detectat al vostre\n"
-"disc dur una o més particions de Linux existents. Si voleu conservar-les,\n"
-"escolliu aquesta opció.\n"
-"\n"
-"\n"
-"* Esborrar completament el disc: si voleu suprimir totes les dades i\n"
-"particions que teniu al disc dur i substituir-les pel sistema Linux-\n"
-"Mandrake, podeu escollir aquesta opció. Aneu amb compte, perň, perquč,\n"
-"un cop la confirmeu, no podreu fer-vos enrere.\n"
-"\n"
-"\n"
-"* Utilitzar l'espai lliure de la partició del Windows: si teniu el "
-"Microsoft\n"
-"Windows instalˇlat al disc dur i n'ocupa tot l'espai diponible, us hi "
-"caldrŕ\n"
-"crear espai lliure per a les dades del Linux. Per fer-ho, podeu suprimir la\n"
-"partició i les dades del Windows (consulteu les opcions \"Esborrar "
-"completament\n"
-"el disc\" o \"Mode expert\") o canviar la mida de la partició del Windows;\n"
-"aquest canvi de mida es pot dur a terme sense cap pčrdua de dades. Aquesta\n"
-"opció és la més recomanable si voleu utilitzar tant el Mandrake Linux com "
-"el\n"
-"Microsoft Windows al mateix ordinador.\n"
-"\n"
-"\n"
-" Abans de decidir-vos per aquesta opció, tingueu en compte que la mida\n"
-"de la partició del Microsoft Windows serŕ més petita que ara. Aixň "
-"significa\n"
-"que tindreu menys espai lliure per emmagatzemar-hi dades o instalˇlar-hi "
-"més\n"
-"programari.\n"
-"\n"
-"\n"
-"* Mode expert: si voleu particionar el disc dur manualment, podeu triar\n"
-"aquesta opció. Aneu amb compte, perquč és molt potent perň també perillosa;\n"
-"podeu perdre fŕcilment totes les dades. Per tant, no trieu aquesta opció "
-"tret\n"
-"que sapigueu exactament quč esteu fent."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-#, fuzzy
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Les particions que s'acaben de definir s'han de formatar per poder-les\n"
-"utilitzar. El formatatge consisteix en crear-hi un sistema de fitxers).\n"
-"\n"
-"\n"
-"En aquest punt, potser voldreu tornar a formatar algunes de les particions\n"
-"existents per eliminar les dades que contenen. Si és així, seleccioneu les\n"
-"particions que voleu formatar.\n"
-"\n"
-"\n"
-"Tingueu en compte que no cal tornar a formatar totes les particions que ja\n"
-"existien; heu de tornar a formatar les particions que contenen el sistema\n"
-"operatiu (com ara \"/\", \"/usr\" o \"/var\"), perň no les que contenen "
-"dades\n"
-"que voleu conservar (habitualment, /home).\n"
-"\n"
-"\n"
-"Aneu amb compte en seleccionar les particions; després del formatatge, "
-"totes\n"
-"les dades s'hauran suprimit i no en podreu recuperar cap.\n"
-"\n"
-"\n"
-"Feu clic a \"D'acord\" quan estigueu a punt per formatar les particions.\n"
-"\n"
-"\n"
-"Feu clic a \"Cancelˇla\" si voleu seleccionar altres particions per "
-"instalˇlar\n"
-"el nou sistema Mandrake Linux."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"El nou sistema operatiu Mandrake Linux s'estŕ instalˇlant. Aquesta\n"
-"operació trigarŕ uns quants minuts (dependrŕ de la mida total que\n"
-"hagueu escollit instalˇlar i de la velocitat del vostre ordinador).\n"
-"\n"
-"Si us plau, tingueu pacičncia."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-#, fuzzy
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Ara és quan heu de decidir quina(es) partició(ns) voleu utilitzar per\n"
-"instalˇlar el sistems Mandrake Linux. Si ja s'han definit les particions "
-"(amb\n"
-"una instalˇlació anterior de GNU/Linux o mitjançant una altra eina de\n"
-"particionament), podeu utilitzar les particiones existents. En cas "
-"contrari,\n"
-"s'han de definir particions al disc dur.\n"
-"\n"
-"\n"
-"Per crear particions, primer heu de seleccionar un disc dur. Podeu "
-"seleccionar\n"
-"el disc que s'ha de particionar fent clic a \"hda\" per a la primera unitat\n"
-"IDE, \"hdb\" per a la segona o \"sda\" per a la primera unitat SCSI, etc.\n"
-"\n"
-"\n"
-"Per particionar el disc dur seleccionat, podeu utilitzar aquestes opcions:\n"
-"\n"
-" * Buidar-ho tot: aquesta opció suprimeix totes les particions que hi ha\n"
-"al disc dur seleccionat.\n"
-"\n"
-"\n"
-" * Assignació automŕtica: aquesta opció us permet crear automŕticament "
-"les\n"
-"particions Ext2 i Intercanvi en l'espai lliure del disc dur.\n"
-"\n"
-"\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 aixň pot fallar.\n"
-"\n"
-"\n"
-" * Desfer: podeu utilitzar aquesta opció per anulˇlar els canvis.\n"
-"\n"
-"\n"
-" * Tornar a carregar: podeu utilitzar aquesta opció si voleu desfer\n"
-"tots els canvis i carregar la taula de particions inicial.\n"
-"\n"
-"\n"
-" * 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"
-"experičncia en particionament.\n"
-"\n"
-"\n"
-" * Restaurar des de disquet: si, en una instalˇlació anterior, vau desar\n"
-"la taula de particions en un disquet, podeu recuperar-la mitjançant aquesta\n"
-"opció.\n"
-"\n"
-"\n"
-" * Desar en disquet: si voleu desar la taula de particions en un disquet\n"
-"per poder-la recuperar, podeu utilitzar aquesta opció. És molt recomanable\n"
-"que l'utilitzeu.\n"
-"\n"
-"\n"
-" * Fet: quan hagueu acabat de particionar el disc dur, utilizeu aquesta\n"
-"opció per desar els canvis.\n"
-"\n"
-"\n"
-"Per a la vostra informació, podeu accedir a qualsevol opció mitjançant el "
-"teclat:\n"
-"moveu-vos per les particions amb la tecles Tab i Fletxa amunt/Fletxa avall.\n"
-"\n"
-"\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\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:513
-#, fuzzy
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"S'ha detectat més d'una partició de Microsoft Windows en la unitat de disc.\n"
-"Si us plau, trieu quina d'elles voleu redimensionar per instalˇlar el nou\n"
-"sistema operatiu Mandrake Linux.\n"
-"\n"
-"\n"
-"Per a la vostra informació, cada partició estŕ identificada d'aquesta "
-"manera; \"Nom Linux\", \"Nom\n"
-"Windows\" \"Capacitat\".\n"
-"\n"
-"\"Nom Linux\" es compon de: \"tipus d'unitat de disc\", \"número d'unitat de "
-"disc\",\n"
-"\"número de la partició\" (per exemple, \"hda1\").\n"
-"\n"
-"\n"
-"\"Tipus d'unitat de disc\" és \"hd\" si la vostre unitat de disc és IDE i "
-"\"sd\"\n"
-"si és SCSI.\n"
-"\n"
-"\n"
-"\"Número de la unitat de disc\" és sempre una lletra després d'\"hd\" o \"sd"
-"\".\n"
-"Amb unitats de disc IDE:\n"
-"\n"
-" * \"a\" significa \"unitat de disc mestre en el controlador IDE primari"
-"\",\n"
-"\n"
-" * \"b\" significa \"unitat de disc esclava en el controlador IDE primari"
-"\",\n"
-"\n"
-" * \"c\" significa \"unitat de disc mestre en el controlador IDE secundari"
-"\",\n"
-"\n"
-" * \"d\" significa \"unitat de disc esclava en el controlador IDE secundari"
-"\".\n"
-"\n"
-"\n"
-"Amb les unitats de disc SCSI, una \"a\" significa \"unitat primŕria de disc"
-"\", una \"b\" significa \"unitat secundŕria de disc\", etc...\n"
-"\n"
-"\"Nom Windows\" és la lletra de la vostra unitat de disc sota Windows (el "
-"primer disc o partició s'anomena \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr ""
-"Si us plau, tingueu pacičncia. Aquesta operació pot trigar diversos minuts."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Escolliu \"Instalˇlació\" si no teniu cap versió anterior de Mandrake Linux\n"
-"instalˇlada a l'ordinador o si voleu utilitzar diversos sistemes operatius.\n"
-"\n"
-"\n"
-"Escolliu \"Actualització\" si voleu actualitzar un versió de Mandrake Linux "
-"que ja estŕ instalˇlada.\n"
-"\n"
-"\n"
-"Segons els vostres coneixements de GNU/Linux, podeu escollir un dels "
-"nivells\n"
-"següents d'instalˇlació o actualització del sistema operatiu Mandrake "
-"Linux:\n"
-"\n"
-"* Recomanada: si mai no heu instalˇlat un sistema operatiu GNU/Linux,\n"
-"escolliu aquest. La instalˇlació serŕ molt fŕcil i només se us faran\n"
-"unes poques preguntes.\n"
-"\n"
-"\n"
-"* Personalitzada: si coneixeu prou el GNU/Linux, podeu escollir l'ús\n"
-"principal (estació de treball, servidor, desenvolupament) del vostre\n"
-"sistema. Haureu de respondre més preguntes que en la instalˇlació\n"
-"\"Recomanada\", de manera que, si escolliu aquest tipus d'instalˇlació,\n"
-"haureu de saber com funciona el GNU/Linux.\n"
-"\n"
-"\n"
-"* Per a experts: si domineu el GNU/Linux, trieu aquest tipus\n"
-"d'instalˇlació. Com en el cas de la instalˇlació \"Personalitzada\"\n"
-"podreu escollir l'ús principal del vostre ordinador (estació de treball,\n"
-"servidor, desenvolupament). Aneu amb molt de compte abans de triar aquest\n"
-"tipus d'instalˇlació; podreu realitzar una instalˇlació altament\n"
-"personalitzada.\n"
-" La resposta a algunes preguntes pot ser molt difícil si no teniu sňlids\n"
-"coneixements de GNU/Linux. Per tant, no escolliu aquest tipus "
-"d'instalˇlació\n"
-"tret que sapigueu quč esteu fent."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-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:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"El LILO (Linux Loader, carregador de Linux) i el Grub són carregadors\n"
-"d'arrencada: poden arrencar el GNU/Linux o qualsevol altre sistema operatiu\n"
-"que tingueu a l'ordinador. Normalment, aquests altres sistemes operatius\n"
-"es detecten i instalˇlen correctament, perň si no és així, podeu afegir-los\n"
-"manualment en aquesta pantalla. Aneu amb compte de triar els parŕmetres\n"
-"correctes.\n"
-"\n"
-"\n"
-"També és possible que no volgueu donar accés a tothom a aquests sistemes\n"
-"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:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Heu d'indicar on voleu situar la informació necessŕria per\n"
-"arrencar el GNU/Linux.\n"
-"\n"
-"\n"
-"Tret que sabeu exactament quč esteu fent, escolliu \"Primer sector\n"
-"de la unitat (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"El DrakX intentarŕ trobar el(s) adaptador(s) SCSI PCI. \n"
-"Si en troba, i sap quin programa de control utilitzar, el(s)\n"
-"instalˇlarŕ automŕticament.\n"
-"\n"
-"\n"
-"Si no teniu cap adaptador SCSI, un adaptador SCSI ISA, o un\n"
-"adaptador SCSI PCI que el DrakX no reconegui, se us demanarŕ si teniu\n"
-"un adaptador SCSI al sistema. Si no en teniu cap, simplement feu clic a \"No"
-"\". Si feu\n"
-"clic a \"Sí\", apareixerŕ una llista de programes de control on podreu\n"
-"seleccionar l'adaptador concret.\n"
-"\n"
-"\n"
-"Si heu hagut de seleccionar l'adaptador manualment, el DrakX us preguntarŕ\n"
-"si voleu indicar opcions per a ell. Convé que deixeu que el DrakX comprovi\n"
-"el maquinari per a les opcions; aixň sol funcionar bé.\n"
-"\n"
-"\n"
-"Si no, us caldrŕ proporcionar les opcions al programa de control. Consulteu\n"
-"el capítol 3 de la Guia de l'usuari, secció \"Informació obtinguda del\n"
-"maquinari\" per saber com treure aquesta informació de la documentació del\n"
-"maquinari, del lloc web del fabricant (si teniu accés a Internet) o del\n"
-"Microsoft Windows (si el teniu al sistema)."
-
-#: ../../help.pm_.c:784
-#, fuzzy
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"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 video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-"\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:830
-#, fuzzy
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware 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:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Escolliu el disc dur que voleu buidar per instalˇlar la nova partició "
-"Linux-\n"
-"Mandrake. Aneu amb compte, se'n perdran totes les dades i no es podran "
-"recuperar."
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Feu clic a \"D'acord\" si voleu suprimir totes les dades i\n"
-"particions que hi ha en aquesta unitat de disc. Aneu amb compte, perquč, un "
-"cop hagueu fet clic a \"D'acord\", no podreu recuperar cap dada ni partició "
-"del disc,\n"
-"incloent las dades de Windows.\n"
-"\n"
-"\n"
-"Feu clic a \"Cancelˇla\" per anulˇlar aquesta operació sense perdre cap "
-"dada\n"
-"ni partició d'aquest disc."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "No es pot utilitzar l'emissió sense un domini NIS"
-
-#: ../../install_any.pm_.c:793
-#, 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:797
-msgid "This floppy is not FAT formatted"
-msgstr "Aquest disquet no estŕ formatat en FAT"
-
-#: ../../install_any.pm_.c:809
-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:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "S'ha produďt un error en llegir el fitxer %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Part del maquinari del vostre ordinador necessita programes de control\n"
-"``registrats'' per poder funcionar. En podeu trobar informació a: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Heu de tenir una partició arrel.\n"
-"Per fer-ho, creeu una partició (o feu clic a una d'existent).\n"
-"Després, trieu l'acció ``Punt de muntatge'' i doneu-li el valor '/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Heu de tenir una partició d'intercanvi"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"No teniu cap partició d'intercanvi\n"
-"\n"
-"Voleu continuar igualment?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Heu de tenir una partició d'intercanvi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Utilitza l'espai lliure"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "No hi ha prou espai lliure per assignar noves particions"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Utilitza la partició existent"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "No existeix cap partició per utilitzar"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Utilitza la particio Windows per al loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Quina partició voleu utilitzar per al Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Escolliu les mides"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Mida de la partició arrel en MB: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Mida de la partició d'intercanvi en MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Utilitza l'espai lliure de la partició de Windows"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "A quina partició voleu canviar la mida?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "S'estan calculant els límits del sistema de fitxers de Windows"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"El redimensionador de la FAT no pot gestionar la vostra partició, \n"
-"s'ha produďt l'error següent: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"La partició de Windows estŕ massa fragmentada; si us plau, executeu "
-"``defrag'' primer"
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"ATENCIÓ!\n"
-"\n"
-"Ara, el DrakX canviarŕ la mida de la vostra partició de Windows. Aneu amb\n"
-"compte: aquesta operació és perillosa. Si encara no ho heu fet, sortiu de "
-"la\n"
-"instalˇlació, executeu l'Scandisk sota Windows (i potser també el Defrag), "
-"i\n"
-"torneu a començar la instalˇlació. Feu també una cňpia de seguretat de les\n"
-"vostres dades.\n"
-"Quan estigueu segur, premeu D'acord."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Quina mida voleu deixar per a la partició de Windows?"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "partició %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Ha fallat la redimensió de la FAT: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"No hi ha particions FAT a quč canviar la mida o per utilitzar-les com a "
-"loopback (o no queda prou espai)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Esborra el disc complet"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Elimina el Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Teniu més d'un disc dur; en quin voleu instalˇlar el Linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Particionament personalitzat de disc"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Utilitza l'fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Ara podeu fer les particions a %s.\n"
-"Quan acabeu, no oblideu desar-les utiltzant `w'"
-
-#: ../../install_interactive.pm_.c:226
-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:242
-msgid "I can't find any room for installing"
-msgstr "No puc trobar espai per a la instalˇlació"
-
-#: ../../install_interactive.pm_.c:246
-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:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Ha fallat el particionament: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "S'estŕ activant la xarxa"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "S'estŕ desactivant la xarxa"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-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:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duplica el punt de muntatge %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Alguns paquets importants no s'han instalˇlat correctament.\n"
-"La vostra unitat de CD-ROM, o bé el CD-ROM, són defectuosos.\n"
-"Comproveu el CD-ROM en un ordinador instalˇlat mitjançant \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Benvingut a %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "No hi ha cap unitat de disquet disponible"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "S'estŕ introduint el pas `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"El vostre sistema estŕ baix de recursos; podeu tenir algun problema en\n"
-"instalˇlar el Mandrake Linux. Si aixň passa, podeu provar d'instalˇlar-lo "
-"en\n"
-"mode text. Per fer-ho, premeu `F1' en arrencar des del CD-ROM i escriviu "
-"`text'"
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Tipus d'instalˇlació"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-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:228
-#, 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:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Si no voleu instalˇlar tants MB, seleccioneu el percentatge de paquets\n"
-"que voleu instalˇlar.\n"
-"\n"
-"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:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Només teniu prou espai al disc per a %d%% d'aquests paquets.\n"
-"\n"
-"Si en voleu instalˇlar menys, seleccioneu el percentatge de paquets\n"
-"que voleu instalˇlar.\n"
-"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:241
-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:243
-msgid "Percentage of packages to install"
-msgstr "Percentatge de paquets per instalˇlar"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Selecció del grup de paquets"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Selecció individual de paquets"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Mida total: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Paquet incorrecte"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Nom: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versió: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Mida: %d kB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Importŕncia: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-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:422
-msgid "The following packages are going to be installed"
-msgstr "Ara s'instalˇlaran els paquets següents"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Ara s'eliminaran els paquets següents"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "No podeu seleccionar/desseleccionar aquest paquet"
-
-#: ../../install_steps_gtk.pm_.c:447
-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:449
-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:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Aquest paquet s'ha d'actualitzar\n"
-"Esteu segur que voleu desseleccionar-lo?"
-
-#: ../../install_steps_gtk.pm_.c:457
-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:462
-msgid "Show automatically selected packages"
-msgstr "Mostra automŕticament els paquets seleccionats"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Instalˇla"
-
-#: ../../install_steps_gtk.pm_.c:466
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "Desa al disquet"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Desa la selecció de paquets"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "Desinstalˇla"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Escolliu els paquets que voleu instalˇlar"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "S'estŕ instalˇlant"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "S'estŕ estimant"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Temps restant "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Si us plau, espereu, s'estŕ preparant la instalˇlació"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d paquets"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "S'estŕ instalˇlant el paquet %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Accepta"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Rebutja"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Canvieu el vostre CD-ROM!\n"
-"\n"
-"Si us plau, inseriu el CD-ROM etiquetat com \"%s\" a la unitat i després\n"
-"premeu D'acord.\n"
-"Si no el teniu, premeu Cancelˇla per no fer la instalˇlació des d'aquest CD-"
-"ROM."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Voleu seguir igualment?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "S'ha produďt un error en ordenar els paquets"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "S'ha produďt un error en instalˇlar els paquets"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Warning\n"
-"\n"
-"Si us plau, llegiu atentament les clŕusules següents. Si no esteu\n"
-"d'acord amb qualsevol d'elles, no esteu autoritzat a instalˇlar\n"
-"els CD següents. Premeu 'Rebutja-ho' per continuar la instalˇlació\n"
-"sense utilitzar aquests CD.\n"
-"\n"
-"\n"
-"Alguns dels components que s'inclouen en aquest CD no estan\n"
-"regits per la llicčncia GPL o acords semblants. Cada un d'aquests\n"
-"components es regeix per les clŕusules i condicions de la seva\n"
-"prňpia llicčncia específica. Si us plau, llegiu atentament i\n"
-"accepteu aquestes llicčncies específiques abans d'utilitzar o\n"
-"redistribuir els components esmentats. En general, aquestes\n"
-"llicčncies impedeixen la transferčncia, duplicació (excepte amb\n"
-"la finalitat de fer-ne cňpies de seguretat), redistribució,\n"
-"enginyeria inversa, deassemblatge, decompilació o modificació del\n"
-"component. Qualsevol violació de l'acord finalitzarŕ immediatament\n"
-"els vostres drets sobre la llicčncia específica. Tret que la\n"
-"llicčncia específica us en garanteixi els drets, normalment no\n"
-"podreu instalˇlar els programes en més d'un sistema, ni adaptar-lo\n"
-"per utilitzar-lo en una xarxa. En cas de dubte, poseu-vos en\n"
-"contacte directament amb el distribuďdor o editor del component.\n"
-"La transferčncia a terceres parts i la cňpia d'aquests components,\n"
-"incloent la documentació, estan normalments prohibides.\n"
-"\n"
-"\n"
-"Tots els drets sobre els components del CD següent pretanyen als\n"
-"seus autors respectius i estan protegits per les lleis de\n"
-"propietat intelˇlectual i de copyright aplicables als programes\n"
-"informŕtics.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "S'ha produďt un error"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Voleu reiniciar la xarxa"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Acord de llicčncia"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Introducció\n"
-"\n"
-"D'ara endavant, hom es referirŕ al sistema operatiu i als diferents\n"
-"components disponibles en la distribució Mandrake Linux com als\n"
-"\"Productes de programari\". Els Productes de programari inclouen,\n"
-"perň no estan restringits a, el conjunt de programes, mčtodes, regles\n"
-"i documentació relativa al sistema operatiu i els diferents\n"
-"components de la distribució Mandrake Linux.\n"
-"\n"
-"\n"
-"1. Acord de llicčncia\n"
-"\n"
-"Si us plau, llegiu atentament aquest document. Aquest document és un\n"
-"acord de llicčncia entre la vostra persona i MandrakeSoft S.A., que\n"
-"s'aplica als Productes de programari. Pel fet d'instalˇlar, duplicar\n"
-"o utilitzar els Productes de programari en qualsevol forma esteu\n"
-"acceptant explícitament, i expressant el vostre acord a, avenir-vos a\n"
-"les clŕusules i condicions d'aquesta Llicčncia. Si no esteu d'acord\n"
-"amb qualsevol part de la Llicčncia, no esteu autoritzat a instalˇlar,\n"
-"duplicar o utilitzar els Productes de programari. Qualsevol intent\n"
-"d'instalˇlar, duplicar o utilitzar els Productes de programari en una\n"
-"forma que no s'adapti a les clŕusules i condicions d'aquesta\n"
-"Llicčncia, és nul i finalitzarŕ els vostres drets sobre la mateixa.\n"
-"En finalitzar-se la Llicčncia, heu de destruir immediatament totes\n"
-"les cňpies dels Productes de programari.\n"
-"\n"
-"\n"
-"2. Garantia limitada\n"
-"\n"
-"Els Productes de programari i documentació adjunta es subministren\n"
-"\"tal com són\", sense cap garantia, fins al punt permés per la llei.\n"
-"MandrakeSoft S.A. no serŕ, sota cap circumstŕncia, i fins al punt\n"
-"permés per la llei, responsable de cap dany especial, incidental ni\n"
-"directe (incloent, sense limitar-se a, els danys per pčrdua de\n"
-"negocis, interrupció de negocis, pčrdues financeres, multes i costes\n"
-"judicials, o qualsevol altre dany que resultin d'un judici, o\n"
-"qualsevol altre pčrdua d'importŕncia) que resulti de l'ús o de la\n"
-"impossibilitat d'utilitzar els Productes de programari, fins i tot si\n"
-"MandrakeSoft S.A. ha estat avisat de la possibilitat que\n"
-"s'esdevinguin aquests danys.\n"
-"\n"
-"RESPONSABILITAT LIMITADA RELATIVA A LA POSSESSIÓ O UTILITZACIÓ DE PROGRAMARI "
-"PROHIBIT EN ALGUNS PAĎSOS\n"
-"\n"
-"Fins al punt permés per la llei, MandrakeSoft S.A. o els seus\n"
-"distribuďdors no seran, sota cap circumstŕncia, responsables de cap\n"
-"dany especial, incidental ni directe (incloent, sense limitar-se a,\n"
-"els danys per pčrdua de negocis, interrupció de negocis, pčrdues\n"
-"financeres, multes i costes judicials, o qualsevol altre dany que\n"
-"resultin d'un judici, o qualsevol altre pčrdua d'importŕncia) que\n"
-"resulti de la possessió i utilització dels components de programari o\n"
-"de la seva descŕrrega des d'un dels llocs de Mandrake Linux, que\n"
-"estiguin prohibides o restringides en alguns paďsos per les lleis\n"
-"locals. Aquesta responsabilitat limitada s'aplica, perň no estŕ\n"
-"limitada a, els potents components criptogrŕfics inclosos als\n"
-"Productes de programari.\n"
-"\n"
-"\n"
-"3. la llicčncia GPL i llicčncies relacionades\n"
-"\n"
-"Els Productes de programari consisteixen en components creats per\n"
-"diferents persones o entitats. La majoria d'aquests components es\n"
-"regeixen per les clŕusules i condicions de la Llicčncia General\n"
-"Pública de GNU, a la qual d'ara endavant hom s'hi referirŕ com a\n"
-"\"GPL\", o de llicčncies similars. la majoria d'aquestes llicčncies\n"
-"us permeten duplicar, adaptar o redistribuir els components que\n"
-"cobreixen. Si us plau, llegiu atentament les clŕusules i condicions\n"
-"de l'acord de llicčncia de cada component abans d'utilitzar-lo.\n"
-"Qualsevol pregunta sobre la lllicčncia d'un component s'ha d'adreçar\n"
-"al seu autor i no a MandrakeSoft.\n"
-"Els programes desenvolupats per MandrakeSoft S.A. es regeixen per la\n"
-"llicčncia GPL.La documentació escrita per MandrakeSoft S.A. estŕ regida per "
-"una\n"
-"llicčncia específica; consulteu la documentació per a més\n"
-"informació.\n"
-"\n"
-"\n"
-"4. Drets sobre la propietat intelˇlectual\n"
-"\n"
-"Tots els drets sobre els components dels Productes de programari\n"
-"pertanyen als seus autors respectius i estan protegits per les lleis\n"
-"de propietat intelˇlectual i de copyright aplicables als programes\n"
-"informŕtics.\n"
-"MandrakeSoft S.A. es reserva els drets de modificar o adaptar els\n"
-"Productes de programari, totalment o parcialment, per tots els\n"
-"mitjans i amb totes les finalitats.\n"
-"\"Mandrake\", \"Mandrake Linux\" i els logotips associats son marques\n"
-"registrades de MandrakeSoft S.A.\n"
-"\n"
-"\n"
-"5. Lleis rectores \n"
-"\n"
-"Si qualsevol part d'aquest acord és declarat nul, ilˇlegal o\n"
-"inaplicable per un tribunal, aquesta part s'exclourŕ del contracte.\n"
-"Seguiu obligat, perň, per les altres seccions aplicables de\n"
-"l'acord.\n"
-"Les clŕusules i condicions d'aquesta Llicčncia es regeixen per les\n"
-"lleis de França.\n"
-"Tots els litigis sobre les clŕusules d'aquesta llicčncia es dirimiran\n"
-"preferiblement fora dels tribunals. Com a últim recurs, el litigi es\n"
-"portarŕ als tribunals competents de París, França.\n"
-"Per a qualsevol tema relacionat amb aquest document, poseu-vos en\n"
-"contacte amb MandrakeSoft S.A.\n"
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Teclat"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Si us plau, selecioneu la disposició del vostre teclat."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Aquesta és la llista completa de teclats disponibles"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Quin tipus d'instalˇlació voleu?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Instalˇla/Actualitza"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Es tracta d'una instalˇlació o d'una actualització?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Recomanada"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Expert"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Actualitza"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Desa la selecció de paquets"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Port del ratolí"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-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:281
-msgid "Buttons emulation"
-msgstr "Emulació dels botons"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emulació del botó 2"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emulació del botó 3"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "S'estan configurant les targetes PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "S'estŕ configurant l'IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "no hi ha particions disponibles"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "S'estan explorant les particions per trobar els punts de muntatge"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Escolliu els punts de muntatge"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"No puc llegir la vostra taula de particions, estŕ massa malmesa per a mi :(\n"
-"Intentaré seguir, buidant les particions incorrectes (es perdran TOTES LES "
-"DADES!).\n"
-"L'altra solució és impedir al DrakX que modifiqui la taula de particions.\n"
-"(l'error és %s)\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"El DiskDrake no ha pogut llegir correctament la taula de particions.\n"
-"Si continueu, és sota la vostra responsabilitat!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "No s'ha trobat cap partició arrel"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Partició arrel"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Quina és la partició arrel (/) del vostre sistema?"
-
-#: ../../install_steps_interactive.pm_.c:411
-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:435
-msgid "Choose the partitions you want to format"
-msgstr "Escolliu les particions que voleu formatar"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Voleu comprovar els blocs incorrectes?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "S'estan formatant les particions"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "S'estŕ creant i formatant el fitxer %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-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:473
-msgid "Looking for available packages"
-msgstr "S'estan cercant els paquets disponibles"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "S'estan cercant els paquets a actualitzar"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Al vostre sistema no li queda prou espai per a la instalˇlació o "
-"actualització (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completa (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Mínima (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomanada (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-#, fuzzy
-msgid "Load from floppy"
-msgstr "Restaura des del disquet"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Loading from floppy"
-msgstr "Restaura des del disquet"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Package selection"
-msgstr "Selecció del grup de paquets"
-
-#: ../../install_steps_interactive.pm_.c:578
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "Inseriu un disquet a la unitat %s"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Desa al disquet"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:671
-#, fuzzy
-msgid "Type of install"
-msgstr "Escolliu el paquet a instalˇlar"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-#, fuzzy
-msgid "With X"
-msgstr "Espera"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Si teniu tots els CD de la llista inferior, feu clic a D'acord.\n"
-"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:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM etiquetat com \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "S'estŕ preparant la instalˇlació"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"S'estŕ instalˇlant el paquet %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Publica la configuració de la instalˇlació "
-
-#: ../../install_steps_interactive.pm_.c:848
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Inseriu un disquet a la unitat %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Inseriu un disquet en blanc a la unitat %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Ara teniu la possibilitat de descarregar programari destinat al xifratge.\n"
-"\n"
-"AVÍS:\n"
-"Degut a diversos requeriments generals aplicables a aquest programari, i\n"
-"imposats per diverses jurisdiccions, el client i/o l'usuari final d'aquest\n"
-"programari s'ha(n) d'assegurar que les lleis de la(es) seva(es)\n"
-"jurisdicció(ns) li(els) permeten descarregar-lo, emmagatzemar-lo i/o\n"
-"utilitzar-lo.\n"
-"\n"
-"A mes, el client i/o l'usuari final ha(n) de tenir especialment en compte\n"
-"que no ha(n) d'infrigir les lleis de la(es) seva(es) jurisdicció(ns). Si\n"
-"el client i/o l'usuari final no respecta(en) les disposicions d'aquestes\n"
-"lleis, pot(den) ser severament sancionat(s).\n"
-"\n"
-"Mandrakesoft i els seus fabricants i/o proveďdors no seran en cap cas\n"
-"responsables de cap dany especial, indirecte o incidental (incloent,\n"
-"perň sense limitar-se a, la pčrdua de beneficis, interrupció del negoci,\n"
-"pčrdua de dades comercials i altres pčrdues econňmiques, i eventuals\n"
-"responsabilitats i idemnitzacions que s'hagin de pagar per sentčncia\n"
-"judicial) derivat de l'ús, la possessió o la simple descŕrrega d'aquest\n"
-"programari, al qual el client i/o l'usuari final pugui(n), eventualment,\n"
-"tenir accés després d'haver signat el present acord.\n"
-"\n"
-"Per a qualsevol consulta relativa a aquest acord, podeu adreçar-vos a \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"S'estŕ contactant amb el mirror per obtenir la llista dels paquets "
-"disponibles"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Escolliu un mirror al qual aconseguir els paquets"
-
-#: ../../install_steps_interactive.pm_.c:940
-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:967
-msgid "Which is your timezone?"
-msgstr "En quina zona horŕria us trobeu?"
-
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "El rellotge del vostre ordinador estŕ regulat a GMT?"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-#, fuzzy
-msgid "NTP Server"
-msgstr "Servidor NIS"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Servidor CUPS remot"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Cap impressora"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "En teniu una altra?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Resum"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Ratolí"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Zona horŕria"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Impressora"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "Targeta XDSI"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Targeta de so"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "Targeta de TV"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-#, fuzzy
-msgid "NIS"
-msgstr "Utilitza el NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-#, fuzzy
-msgid "Local files"
-msgstr "Impressora local"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Contrasenya de 'root'"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Sense contrasenya"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, 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:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autenticació"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "Autenticació"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-#, fuzzy
-msgid "LDAP Server"
-msgstr "Servidor"
-
-#: ../../install_steps_interactive.pm_.c:1134
-#, fuzzy
-msgid "Authentication NIS"
-msgstr "NIS d'autenticació"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "Domini del NIS"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "Servidor NIS"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Un disc d'arrencada personalitzat proporciona una manera d'arrencar el "
-"vostre\n"
-"sistema Linux sense dependre del carregador d'arrencada normal. Aixň és "
-"útil\n"
-"si no voleu instalˇlar el SILO al sistema, o si un altre sistema operatiu\n"
-"elimina el SILO, o si el SILO no funciona amb la vostra configuració de\n"
-"maquinari. Un disc d'arrencada personalitzat també es pot utilitzar amb la\n"
-"imatge de rescat del Mandrake, facilitant molt la recuperació de fallides\n"
-"serioses del sistema.\n"
-"\n"
-"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:1187
-msgid "First floppy drive"
-msgstr "Primera unitat de disquet"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Segona unitat de disquet"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Omet"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Un disc d'arrencada personalitzat proporciona una manera d'arrencar el "
-"vostre\n"
-"sistema Linux sense dependre del carregador d'arrencada normal. Aixň és "
-"útil\n"
-"si no voleu instalˇlar el LILO (o el grub) al sistema, o si un altre sistema "
-"operatiu\n"
-"elimina el LILO, o si el LILO no funciona amb la vostra configuració de\n"
-"maquinari. Un disc d'arrencada personalitzat també es pot utilitzar amb la\n"
-"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?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "No hi ha cap unitat de disquet disponible"
-
-#: ../../install_steps_interactive.pm_.c:1212
-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:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Inseriu un disquet a la unitat %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "S'estŕ creant el disc d'arrencada"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "S'estŕ preparant el carregador d'arrencada"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Voleu utilitzar l'aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"S'ha produďt un error en instalˇlar l'aboot; \n"
-"voleu intentar igualment la instalˇlació encara que aixň destrueixi la "
-"primera partició?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Instalˇla el LILO"
-
-#: ../../install_steps_interactive.pm_.c:1259
-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:1267
-#, fuzzy, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"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:1311
-#: ../../standalone/drakautoinst_.c:81
-#, 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:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "S'estŕ creant el diquet d'instalˇlació automŕtica"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Alguns passos no s'han completat.\n"
-"\n"
-"Segur que voleu sortir ara?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Felicitats! La instalˇlació ha acabat.\n"
-"Traieu el suport d'arrencada i premeu Intro per tornar a arrencar.\n"
-"\n"
-"\n"
-"Trobareu la solució als problemes coneguts d'aquesta versió del\n"
-"Mandrake Linux a la fe d'errates que hi ha a \n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"La informació sobre com configurar el vostre sistema estŕ disponible a\n"
-"l'últim capítol d'instalˇlació de la Guia Oficial de l'Usuari del\n"
-"Mandrake Linux."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Genera un disquet per a la instalˇlació automŕtica"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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:1361
-msgid "Automated"
-msgstr "Automŕtica"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Repeteix"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Desa la selecció de paquets"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Instalˇlació del Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> entre elements | <Espai> selecciona | <F12> pant. següent"
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "El kdesu no hi és"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Trieu una acció"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Avançat"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Si us plau, espereu"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informació"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandeix l'arbre"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Redueix l'arbre"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Commuta entre pla i ordenat per grups"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Elecció incorrecta, torneu-ho a intentar\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "La vostra elecció? (predeterminat %s)"
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "La vostra elecció? (predeterminat %s)"
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Opcions: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "Voleu utilitzar l'aboot?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "La vostra elecció? (predeterminat %s)"
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Txec (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Alemany"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Espanyol"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Finčs"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Francčs"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Noruec"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polončs"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Rus"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Suec"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Teclat RU"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Teclat EU"
-
-#: ../../keyboard.pm_.c:188
-#, fuzzy
-msgid "Albanian"
-msgstr "Iraniŕ"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armeni (antic)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armeni (mŕquina d'escriure)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armeni (fončtic)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjančs (llatí)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belga"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Armeni (fončtic)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Búlgar"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasiler (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Bielorús"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Suís (disposició alemanya)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Suís (disposició francesa)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Txec (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Alemany (sense tecles inoperatives)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Dančs"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (EU)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Noruec)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (EU)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estoniŕ"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgiŕ (disposició \"russa\")"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgiŕ (disposició \"llatina\")"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Grec"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Hongarčs"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Croata"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Israeliŕ"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Israeliŕ (fončtic)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iraniŕ"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandčs"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italiŕ"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japončs de 106 tecles"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Teclat coreŕ"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Espanyol sud-americŕ"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituŕ AZERTY (antic)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituŕ AZERTY (nou)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituŕ \"fila de números\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituŕ \"fončtic\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Ubicació"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Macedoni"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Holandčs"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Polončs (disposició qwerty)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Polončs (disposició qwertz)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugučs"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Canadenc (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "Rus (Yawerty)"
-
-#: ../../keyboard.pm_.c:248
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "Rus (Yawerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Rus (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Eslovč"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Eslovac (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Eslovac (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "Azerbaidjančs (cirílˇlic)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Taula"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Teclat tai"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Teclat tai"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turc (tradicional, model \"F\")"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turc (modern, model \"Q\")"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ucraďnčs"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Teclat EU (internacional)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamita \"fila numčrica\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Iugoslau (llatí/cirílˇlic)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Muntatges circulars %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Elimineu primer els volums lňgics\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Mouse"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Rató de bola PS2 genčric"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 botó"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Generic 2 Button Mouse"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "General"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "De bola"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "sčrie"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Generic 3 Button Mouse"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (sčrie, tipus C7 antic)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 botons"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 botons"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "cap"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Cap ratolí"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Si us plau, comproveu el ratolí."
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Per activar el ratolí,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "MOVEU LA BOLA!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Finčs"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Següent ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Anterior"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Aixň és correcte?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Connecta't a internet"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"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'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "utilitza dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "utilitza pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "utilitza pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Quin client dhcp voleu utilitzar?\n"
-"El predeterminat és dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"No s'ha detectat cap adaptador de xarxa ethernet al sistema.\n"
-"No puc configurar aquest tipus de connexió."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Escolliu la interfície de xarxa"
-
-#: ../../network/ethernet.pm_.c:93
-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."
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "no s'ha trobat cap targeta de xarxa"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "S'estŕ configurant la xarxa"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Si us plau, introduďu el nom del vostre ordinador central, si el sabeu.\n"
-"Alguns servidors DHCP necessiten que aquest nom funcioni.\n"
-"El nom ha de ser complet,\n"
-"com ara ``mybox.mylab.myco.com''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Nom de l'ordinador central"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Assistent de configuració de xarxa"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Mňdem XDSI extern"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Targeta XDSI interna"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Quin tipus de connexió XDSI teniu?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "S'ha detectat la configuració del sistema de tallafocs!"
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "S'ha detectat la configuració del sistema de tallafocs!"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Configuració de l'XDSI"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Seleccioneu el vostre proveďdor.\n"
-" Si no és a la llista, seleccioneu No és a la llista"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol"
-msgstr "Protocol d'arrencada"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Europa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "Resta del món"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Resta del món \n"
-" cap canal D (línies llogades)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Quin protocol voleu utilitzar?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Quin tipus de targeta teniu?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "No sé"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Si teniu una targeta ISA, els valors de la pantalla següent han de ser "
-"correctes.\n"
-"\n"
-"Si teniu una targeta PCMCIA, us en cal saber l'irq i l'io.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Interromp"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Continua"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Quina targeta XDSI teniu ?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"He detectat una targeta PCI XDSI, perň no en conec el tipus. Si us plau, "
-"seleccioneu una targeta PCI a la pantalla següent."
-
-#: ../../network/isdn.pm_.c:244
-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"
-
-#: ../../network/modem.pm_.c:39
-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."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Opcions de marcatge"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Nom de la connexió"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Número de telčfon"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "ID d'entrada"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Basat en script"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Basat en terminal"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Nom de domini"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Primer servidor DNS (opcional)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Segon servidor DNS (opcional)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Podeu desconnectar-vos o tornar a configurar la connexió."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Podeu tornar a configurar la connexió."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Ara mateix esteu connectat a Internet."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Podeu connectar-vos a Internet o tornar a configurar la connexió."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Ara mateix no esteu connectat a Internet."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Connecta"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Desconnecta"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Configura una connexió per cable"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Connexió i configuració d'Internet"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr ""
-"\n"
-"Podeu desconnectar-vos o tornar a configurar la connexió."
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"Podeu desconnectar-vos o tornar a configurar la connexió."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Configuració de xarxa"
-
-#: ../../network/netconnect.pm_.c:139
-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"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"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"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Escolliu el perfil per configurar"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Utilitza la detecció automŕtica"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "S'estan detectant els dispositius..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Connexió normal per mňdem"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "detectat al port %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "Connexió XDSI"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "s'ha detectat %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy
-msgid "ADSL connection"
-msgstr "Connexió LAN"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "detectat a la interfície %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Connexió de cable"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Connexió de cable"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Connexió LAN"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "s'han detectat una o diverses targetes Ethernet"
-
-#: ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "Escolliu l'eina que voleu utilitzar "
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-#, fuzzy
-msgid "Internet connection"
-msgstr "Connexió a Internet compartida"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Voleu iniciar la connexió en arrencar?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Configuració de xarxa"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, 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"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Felicitats, la configuració de xarxa i Internet ha finalitzat.\n"
-"\n"
-"Ara s'aplicarŕ la configuració al sistema.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-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/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\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 accepteu mantenir-lo configurat.\n"
-"Si modifiqueu els camps inferiors, sobreescriureu aquesta configuració."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Si us plau, introduďu la configuració IP d'aquest ordinador.\n"
-"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/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "S'estŕ configurant el dispositiu de xarxa %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (programa de control %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "Adreça IP"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Submŕscara de la xarxa"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "IP automŕtic"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "L'adreça IP ha d'estar amb el format 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Si us plau, introduďu el nom del vostre ordinador central.\n"
-"Aquest nom ha de ser complet, com ara\n"
-"``mybox.mylab.myco.com''.\n"
-"També podeu introduir l'adreça IP de la passarelˇla, si en teniu una"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "servidor DNS"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Dispositiu de la passarelˇla"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Configuració dels proxys"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "Proxy HTTP"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "Proxy FTP"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "El proxy ha de ser http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "El proxy ha de ser ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Configuració d'Internet"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Voleu intentar connectar-vos a Internet ara?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "S'estŕ comprovant la vostra conexió..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Ara, el sistema estŕ connectat a Internet."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Per raons de seguretat, ara es desconnectarŕ."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"No sembla que el sistema estigui connectat a Internet.\n"
-"Intenteu tornar a configurar la connexió."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Configuració de la connexió"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Si us plau, ompliu o marqueu el camp inferior"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "Targeta IRQ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Targeta de memňria (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "Targeta d'E/S"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "Targeta d'E/S_0"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "Targeta d'E/S_1"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "El vostre telčfon particular"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Nom del proveďdor (p.ex. proveidor.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Número de telčfon del proveďdor"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 del proveďdor (opcional)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 del proveďdor (opcional)"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "Escolliu el vostre teclat"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Mode de marcatge"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "Tipus de connexió: "
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Tipus de connexió: "
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Entrada del compte (nom d'usuari)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Contrasenya del compte"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "ha fallat el muntatge: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Aquesta plataforma no suporta particions esteses"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Hi ha un forat a la vostra taula de particions, perň no puc utilitzar-lo.\n"
-"L'única solució és moure les particions primŕries per fer que el forat quedi "
-"contigu a les particions ampliades"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Ha fallat la restauració del fitxer %s: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "S'ha produďt un error en escriure al fitxer %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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:24
-msgid "must have"
-msgstr "ha de tenir"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "important"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "molt bonic"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "bonic"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "potser"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Impressora local"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Impressora remota"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Servidor CUPS remot"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "Servidor lpd remot"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Impressora de xarxa (TCP/sňcol)"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Servidor de la impressora"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "Dispositiu URI d'impressora"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Impressora local"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Impressora remota"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "S'ha produďt un error en escriure al fitxer %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(mňdul %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP del servidor CUPS"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Predeterminat)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Seleccioneu la connexió de la impressora"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Com estŕ connectada la impressora?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-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\"."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Configuració de la LAN"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Servidor CUPS remot"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "L'adreça IP ha d'estar amb el format 1.2.3.4"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-#, fuzzy
-msgid "The port number should be an integer!"
-msgstr "El número de port ha de ser numčric"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP del servidor CUPS"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Port"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Configuració del tipus d'arrencada"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "S'estan detectant els dispositius..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ports de comprovació"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Cap impressora"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Impressora local"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Utilitza la detecció automŕtica"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "s'ha detectat %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Dispositiu URI d'impressora"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Impressora local"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr ""
-"Si us plau, seleccioneu el port sčrie al qual teniu connectat el mňdem."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Dispositiu URI d'impressora"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Configuració"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "S'estŕ instalˇlant el paquet %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "S'estŕ instalˇlant el paquet %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-#, fuzzy
-msgid "Reading printer database ..."
-msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Opcions de la impressora lpd remota"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Per poder utilitzar una cua d'impressió lpd remota, necessiteu proporcionar\n"
-"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:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "Nom de l'ordinador central remot"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:630
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "Nom de l'ordinador central remot"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Nom de l'ordinador central remot"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opcions de la impressora SMB (Windows 9x/NT)"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Per poder imprimir a una impressora SMB, heu d'indicar el nom de\n"
-"l'ordinador central SMB (tingueu en compte que pot ser diferent del seu nom\n"
-"TCP/IP) i possiblement l'adreça IP del servidor d'impressió, així com el "
-"nom\n"
-"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:704
-msgid "SMB server host"
-msgstr "Ordinador central del servidor SMB"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP del servidor SMB"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Nom de compartició"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Grup de treball"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Opcions de la impressora NetWare"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Per poder imprimir a una impressora NetWare, heu de proporcionar el nom del\n"
-"servidor d'impressió NetWare (tingueu en compte que pot ser diferent del "
-"nom\n"
-"TCP/IP del seu ordinador central), així com el nom de la cua d'impressió de\n"
-"la impressora a quč voleu accedir i el nom d'usuari i contrasenya si són\n"
-"necessaris."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Servidor de la impressora"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Nom de la cua d'impressió"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Opcions de la impressora de sňcol"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-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:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "Nom de l'ordinador central de la impressora"
-
-#: ../../printerdrake.pm_.c:858
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "Nom de l'ordinador central de la impressora"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Dispositiu URI d'impressora"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Nom de la impressora"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descripció"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Ubicació"
-
-#: ../../printerdrake.pm_.c:1021
-#, fuzzy
-msgid "Preparing printer database ..."
-msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Aixň és correcte?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:1139
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Connexió de la impressora"
-
-#: ../../printerdrake.pm_.c:1140
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "Quin tipus d'impressora teniu?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Configuració del mňdem"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Configuració d'Internet"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Voleu comprovar la impressió?"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "Ports de comprovació"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-#, fuzzy
-msgid "No test pages"
-msgstr "Sí, imprimeix ambdues pŕgines de prova"
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "Impressora"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Eines estŕndard"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-
-#: ../../printerdrake.pm_.c:1635
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"La(es) pŕgina(es) de prova s'ha(n) enviat al procés d'impressió.\n"
-"Degut a aixň, pot passar un cert temps abans no comenci la impressió.\n"
-"Estat de la impressió:\n"
-"%s\n"
-"\n"
-"Funciona correctament?"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"La(es) pŕgina(es) de prova s'ha(n) enviat al procés d'impressió.\n"
-"Degut a aixň, pot passar un cert temps abans no comenci la impressió.\n"
-"Funciona correctament?"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Cap impressora"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Tanca"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "S'estŕ desactivant la xarxa"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "S'estŕ desactivant la xarxa"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Opcions de la impressora"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Configuració d'Internet"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"El nom de la impressora només pot constar de lletres, números i el carŕcter "
-"de subratllat"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "Cap impressora"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "Configura la impressora"
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "S'estŕ comprovant la vostra conexió..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Configura la xarxa"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "El monitor no estŕ configurat"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "S'estŕ configurant la xarxa"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Quin sistema d'impressió voleu utilitzar?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Alt"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Paranoic"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Quin sistema d'impressió voleu utilitzar?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Seleccioneu la connexió de la impressora"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Quin sistema d'impressió voleu utilitzar?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Configura la impressora"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "S'estŕ instalˇlant el paquet %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Opcions de la impressora"
-
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Configura la impressora"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Voleu configurar una impressora?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-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:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Aquestes són les cues d'impressió següents.\n"
-"Podeu afegir-ne algunes més o canviar-ne les existents."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Configura la xarxa"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Mode normal"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Voleu comprovar la configuració?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Configuració del mňdem"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Voleu comprovar la configuració?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Connexió a Internet compartida"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Connexió de la impressora"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Voleu comprovar la configuració?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Impressora local"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Voleu reiniciar la xarxa"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-#, fuzzy
-msgid "Proxy configuration"
-msgstr "Configuració dels proxys"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr ""
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-#, fuzzy
-msgid "port"
-msgstr "Port"
-
-#: ../../proxy.pm_.c:44
-#, fuzzy
-msgid "Url should begin with 'http:'"
-msgstr "El proxy ha de ser http://..."
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-#, fuzzy
-msgid "The port part should be numeric"
-msgstr "El número de port ha de ser numčric"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "El proxy ha de ser ftp://..."
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-#, fuzzy
-msgid "login"
-msgstr "Entrada automŕtica"
-
-#: ../../proxy.pm_.c:82
-#, fuzzy
-msgid "password"
-msgstr "Contrasenya"
-
-#: ../../proxy.pm_.c:84
-#, fuzzy
-msgid "re-type password"
-msgstr "Sense contrasenya"
-
-#: ../../proxy.pm_.c:88
-#, fuzzy
-msgid "The passwords don't match. Try again!"
-msgstr "Les contrasenyes no coincideixen"
-
-#: ../../raid.pm_.c:35
-#, 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:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "No es pot escriure al fitxer %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "l'mkraid ha fallit"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "l'mkraid ha fallit (potser manquen eines del RAID?)"
-
-#: ../../raid.pm_.c:152
-#, 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:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, un programador d'ordres periňdiques."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"L'apmd s'utilitza per monitoritzar l'estat de la bateria i registrar-lo "
-"mitjançant el registre del sistema.\n"
-"També es pot utilitzar per apagar l'ordinador quan queda poca bateria."
-
-#: ../../services.pm_.c:18
-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 ""
-"Executa les ordres programades per l'ordre 'at' a l'hora que es va\n"
-"especificar en executar 'at', i executa les ordres 'batch' quan la\n"
-"mitjana de cŕrrega és prou baixa."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"El cron és un programa UNIX estŕndard que executa programes determinats\n"
-"per l'usuari en hores programades. El vixie cron afegeix un cert nombre de\n"
-"característiques al cron bŕsic, incloent seguretat millorada i opcions\n"
-"de configuració més potents."
-
-#: ../../services.pm_.c:23
-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 ""
-"El GPM afegeix suport de ratolí a aplicacions Linux basades en text, com ara "
-"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
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"L'Apache és un servidor de World Wide Web. S'utilitza per servir fitxers\n"
-"HTML i CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"El procés superservidor d'Internet (conegut normalment com 'inetd') inicia\n"
-"altres serveis d'Internet a mesura que es van necessitant. És el "
-"responsable\n"
-"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:33
-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:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Aquest paquet carrega el mapa de teclat seleccionat segons s'ha definit\n"
-"a /etc/sysconfig/keyboard. Aixň es pot seleccionar mitjançant la utilitat\n"
-"kbdconfig.\n"
-"Per a la majoria d'ordinadors, s'ha de deixar habilitat."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: ../../services.pm_.c:43
-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 ""
-"L'lpd és el procés d'impressió necessari per a que l'lpr funcioni\n"
-"correctament. Bŕsicament, es tracta d'un servidor que assigna les\n"
-"tasques d'impressió a la(es) impressora(es)."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-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:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-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:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Activa/Desactiva totes les interfícies de xarxa configurades per\n"
-"iniciar-se durant l'arrencada."
-
-#: ../../services.pm_.c:52
-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 ""
-"L'NFS és un popular protocol de compartició de fitxers en xarxes TCP/IP.\n"
-"Aquest servei proporciona la funcionalitat del servidor NFS, que es\n"
-"configura mitjançant el fitxer /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-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:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"El suport PCMCIA serveix normalment per suportar coses com ara l'ethernet\n"
-"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:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"El portmapper gestiona les connexions RPC, que són utilitzades per\n"
-"protocols com ara l'NFS i l'NIS. El servidor portmap s'ha d'estar\n"
-"executant en ordinadors que actuen com a servidors per a protocols que\n"
-"utilitzen el mecanisme RPC."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-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:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-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:69
-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:71
-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 ""
-"El procés 'routed' permet que la taula d'encaminadors IP automŕtics\n"
-"s'actualitzi mitjançant el protocol RIP. Mentre que el RIP s'utilitza\n"
-"ŕmpliament en xarxes petites, les xarxes complexes necessiten protocols\n"
-"d'encaminament més complexs."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-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:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-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:78
-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 ""
-"El protocol rwho permet que els usuaris remots obtinguin una llista\n"
-"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:80
-#, fuzzy
-msgid "Launch the sound system on your machine"
-msgstr "Executa el sistema X-Window en iniciar"
-
-#: ../../services.pm_.c:81
-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 ""
-"El syslog és el sistema que utilitzen molts processos per registrar\n"
-"missatges en diversos fitxers de registre del sistema. És aconsellable\n"
-"executar-lo sempre."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: ../../services.pm_.c:84
-#, 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:110 ../../services.pm_.c:152
-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"
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Impressora"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Mode de sistema"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Opcions de la impressora lpd remota"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Servidor, base de dades"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "dispositiu"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "s'estŕ executant"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "aturat"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Serveis i dimonis"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Malauradament no hi ha més informació\n"
-"sobre aquest servei."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "En arrencar"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Estat:"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Sector"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Resta del món"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Accés a Internet"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimčdia - Grŕfics"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Desenvolupament"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Control Center"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Interfície de la xarxa"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "Ordinador central del servidor SMB"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Jocs"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "expert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-#, fuzzy
-msgid "MandrakeStore"
-msgstr "obligatori"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "S'estŕ instalˇlant el paquet %s"
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"No puc llegir la vostra taula de particions, estŕ massa malmesa per a mi :(\n"
-"Intentaré seguir buidant les particions incorrectes"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Error"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Publica la configuració de la instalˇlació "
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Configuració del tipus d'arrencada"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Felicitats!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Instalˇla"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Afegeix un usuari"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "S'estŕ formatant el fitxer de loopback %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Selecció del grup de paquets"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Elimina la cua"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Elimina el Windows(TM)"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Nom d'usuari"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Si us plau, comproveu el ratolí."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Si us plau, torneu-ho a intentar"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Si us plau, torneu-ho a intentar"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "Sense contrasenya"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Connexió LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Seleccioneu la connexió de la impressora"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Si us plau, selecioneu la disposició del vostre teclat."
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Si us plau, feu clic a una partició "
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Si us plau, comproveu el ratolí."
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Xarxa:"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Nom d'usuari"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Si us plau, trieu un idioma per utilitzar."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Voleu utilitzar l'optimització del disc dur?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Voleu utilitzar l'optimització del disc dur?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-#, fuzzy
-msgid "What"
-msgstr "Espera"
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "De bola"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "De bola"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Opcions del mňdul:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Configuració de xarxa"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-#, fuzzy
-msgid "across Network"
-msgstr "Xarxa:"
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Sistemes de fitxers"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Opcions"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr ""
-"Si us plau, seleccioneu el port sčrie al qual teniu connectat el mňdem."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Configuració de xarxa"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Restaura des del disquet"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Altres"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Instalˇla el sistema"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Restaura des del fitxer"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Restaura des del fitxer"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Personalitzada"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Ajuda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- Anterior"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Estat:"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Restaura des del fitxer"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Text"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Paquets a instalˇlar"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Si us plau, trieu un idioma per utilitzar."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Si us plau, trieu un idioma per utilitzar."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Si us plau, trieu un idioma per utilitzar."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Desa al fitxer"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Si us plau, comproveu el ratolí."
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Configuració de xarxa"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Configuració de xarxa"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Configuració de la LAN"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Configuració de la LAN"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Sistemes de fitxers"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Ha fallat la instalˇlació del %s. S'ha produďt l'error següent:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "no s'ha trobat %s"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Fet"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Formata el disquet"
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "S'estŕ preparant la instalˇlació"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-#, fuzzy
-msgid "Restart XFS"
-msgstr "limita"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "limita"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Formata les particions"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-#, fuzzy
-msgid "Uninstall Fonts"
-msgstr "S'estan desinstalˇlant els RPM"
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuració de la LAN"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Punt de muntatge"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Escolliu les particions que voleu formatar"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Oficina"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Interromp"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Impressora"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Instalˇla el sistema"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Seleccioneu el fitxer"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Impressora remota"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
-msgid "Initials tests"
-msgstr "Missatge d'inicialització"
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "No teniu cap adaptador de xarxa al sistema!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Instalˇla"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "No teniu cap adaptador de xarxa al sistema!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Surt de la instalˇlació"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Connexió a Internet compartida"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "La connexió a Internet compartida estŕ habilitada"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"La configuració de la connexió compartida a Internet ja s'ha dut a terme.\n"
-"Ara estŕ habilitada.\n"
-"\n"
-"Quč voleu fer?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "inhabilita"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "deixa-ho córrer"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "torna a configurar"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "S'estan inhabilitant els servidors..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Ara, la compartició de la connexió a Internet estŕ inhabilitada."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "La connexió a Internet compartida estŕ inhabilitada"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"La configuració de la connexió compartida a Internet ja s'ha dut a terme.\n"
-"Ara estŕ inhabilitada.\n"
-"\n"
-"Quč voleu fer?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "habilita"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "S'estan habilitant els servidors..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Ara, la connexió compartida a Internet estŕ habilitada."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"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."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interfície %s (utilitzant el mňdul %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Interfície %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "No teniu cap adaptador de xarxa al sistema!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-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:243
-msgid "Network interface"
-msgstr "Interfície de la xarxa"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"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"
-"%s\n"
-"\n"
-"Ara configuraré la vostra xarxa d'ŕrea local amb aquest adaptador."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Si us plau, escolliu l'adaptador de xarxa que es connectarŕ\n"
-"a la vostra xarxa d'ŕrea local."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "El monitor no estŕ configurat"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Configuració del tipus d'arrencada"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Configuració del mňdem"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "IP del servidor CUPS"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"S'ha trobat un conflicte potencial d'adreça LAN en la configuració actual de "
-"%s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "S'ha detectat la configuració del sistema de tallafocs!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Atenció! S'ha detectat una configuració existent del sistema de tallafocs. "
-"Potser us caldrŕ fer algun ajustament manual després de la instalˇlació."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "S'estŕ configurant..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"S'estan configurant les seqüčncies, instalˇlant el programari, iniciant els "
-"servidors..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Hi ha hagut problemes en instalˇlar el paquet %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Ja estŕ tot configurat.\n"
-"Ara podeu compartir la connexió a Internet amb altres ordinadors de la "
-"vostra xarxa d'ŕrea local utilitzant la configuració automŕtica de xarxa "
-"(DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-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:690
-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:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "No s'ha configurat mai cap connexió compartida a Internet."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Configuració de la compartició de la connexió a Internet"
-
-#: ../../standalone/drakgw_.c:703
-#, 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:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuració de xarxa (%d adaptadors)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Suprimeix el perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil a suprimir:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Perfil nou..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nom de l'ordinador central: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Accés a Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipus:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Passarelˇla:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Intefície:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Estat:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configura l'accés a Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuració de la LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Programa de control"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfície"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocol"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Estat:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configura la xarxa d'ŕrea local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistent..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplica"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Si us plau, espereu... s'estŕ aplicant la configuració"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Connectat"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Sense connexió"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Connecta..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Desconnecta..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuració de la LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocol d'arrencada"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciat en l'arrencada"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Actiu"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Actiu"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuració de la connexió a Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuració de la connexió a Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipus de connexió: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parŕmetres"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Passarelˇla"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Targeta Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "S'estŕ establint el nivell de seguretat"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Control Center"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Escolliu l'eina que voleu utilitzar "
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Canadenc (Quebec)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "Europa"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Islandčs"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "Europa"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "sčrie"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "sintaxi: keyboarddrake [--expert] [teclat]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Si us plau, selecioneu la disposició del vostre teclat."
-
-#: ../../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?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Canvieu el CD-ROM"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Si us plau, inseriu el CD-ROM d'instalˇlació a la unitat i després\n"
-"premeu D'acord.\n"
-"Si no el teniu, premeu Cancelˇla per evitar la instalˇlació en directe."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "No es pot iniciar l'actualització en directe !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-#, fuzzy
-msgid "Show only for the selected day"
-msgstr "Mostr-ho només per a avui"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Fitxer/_Nou"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Fitxer/_Obre"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Fitxer/_Desa"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Fitxer/_Anomena i desa"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Fitxer/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Opcions"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Opcions/Prova"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ajuda"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Ajuda/_Quant a..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Nom d'usuari"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "missatges"
-
-#: ../../standalone/logdrake_.c:175
-#, fuzzy
-msgid "Syslog"
-msgstr "syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "cerca"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Eina per veure els registres"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Parŕmetres"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "que coincideixin amb"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "perň que no coincideixein amb"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Escolliu el fitxer"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Calendari"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Contingut del fitxer"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "si us plau, espereu, s'estŕ analitzant el fitxer: %s"
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Configuració de la LAN"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache i Pro-ftpd"
-
-#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "ombra"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "interessant"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "s'estŕ formatant"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Configuració"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Anomena i desa..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "no s'ha trobat cap serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Voleu emular el tercer botó?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Seleccioneu una targeta grŕfica"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Dispositiu d'arrencada"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Configuració del sistema de tallafocs"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Configuració del sistema de tallafocs"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Sistema de tallafocs\n"
-"\n"
-"Ja heu configurat un tallafocs.\n"
-"Feu clic a Configura per canviar o eliminar el tallafoc"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Sistema de tallafocs\n"
-"\n"
-"Feu clic a Configura per configurar un tallafocs estŕndard"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Escolliu el vostre idioma"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Tipus d'instalˇlació"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Detecció del disc dur"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Configura el ratolí"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Escolliu el vostre teclat"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Seguretat"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Sistemes de fitxers"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formata les particions"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Paquets a instalˇlar"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Instalˇla el sistema"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Afegeix un usuari"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Configura la xarxa"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Configura els serveis"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Instalˇla el LILO"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Crea un disc d'arrencada"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Configura l'X"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Instalˇla el sistema"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Surt de la instalˇlació"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Configurador del tinyfirewall\n"
-"\n"
-"Amb aixň es configura un tallafocs personal per a aquest ordinador Linux "
-"Mandrake.\n"
-"Per a una potent solució de tallafocs dedicada, consulteu si us plau la "
-"distribució especialitzada MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Ara us farem preguntes sobre els serveis a quč voleu autoritzar que\n"
-"Internet us connecti. Si us plau, penseu-hi a fons perquč la seguretat\n"
-"del vostre ordinador és important.\n"
-"\n"
-"Si us plau, si un moment donat no esteu utilitzant algun d'aquests serveis,\n"
-"desactiveu-ne el tallafocs. Podeu canviar aquesta configuració sempre que\n"
-"vulgueu tornant a executar aquesta aplicació!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Esteu executant un servidor de web en aquest ordinador que necessiteu que\n"
-"pugui veure tothom a Internet? Si esteu executant un servidor de web a quč\n"
-"només ha d'accedir aquest ordinador, aquí podeu respondre tranquilˇlament "
-"NO.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Esteu executant un servidor de noms en aquest ordinador? Si no n'heu\n"
-"configurat cap per proporcionar la IP i la informació de zona a tothom a\n"
-"Internet, si us plau responeu NO.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Voleu autoritzar les connexions Secure Shell (ssh) d'entrada? Es tracta\n"
-"d'una substitució del Telnet que podeu utilitzar per entrar. Si ara esteu\n"
-"utilitzant el Telnet, passeu-vos a l'ssh sense cap mena de dubte; el\n"
-"Telnet no estŕ xifrat, de manera que us poden robar la contrasenya si\n"
-"l'utilitzeu, mentre que l'ssh estŕ xifrat i no permet cap mena d'intercepció."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Voleu autoritzar les connexions Telnet d'entrada?\n"
-"Aixň és tremendament insegur, com hem dit a la pantalla anterior. Us\n"
-"recomanem vivament que respongueu No aquí i que utilitzeu l'ssh en comptes\n"
-"del Telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Esteu executant un servidor d'FTP que necessiteu que sigui accessible a\n"
-"Internet? Si és així, us recomanen vivament que només l'utilitzeu per a\n"
-"transferčncies anňnimes, ja que qualsevol contrasenya que s'envia per FTP\n"
-"pot ser robada, atčs que l'FTP no utilitza xifratge per a la transferčncia\n"
-"de contrasenyes.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Esteu executant un servidor de correu? Si esteu enviant els missatges\n"
-"a través del pine, el mutt o qualsevol altre client de correu basat en\n"
-"text, probablement és així. En cas contrari, desactiveu-ne el tallafocs.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Esteu executant un servidor POP o IMAP? Aixň s'utilitzaria\n"
-"per allotjar comptes de correu dels usuaris, no basats en web,\n"
-"mitjançant aquest ordinador.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Sembla que esteu utilitzant un nucli 2.2. Si l'ordinador de\n"
-"casa o de l'oficina estableix automŕticament la IP de la vostra\n"
-"xarxa (assignació dinŕmica), us cal autoritzar aixň. És aquest el cas?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"El vostre ordinador estŕ sincronitzat pel que fa al temps amb un altre?\n"
-"Normalment, aixň ho utilitzen organitzacions Unix/Linux mitjanes-grans\n"
-"per sincronitzar el temps de les entrades i coses així. Si no sou una part\n"
-"d'una oficina gran i no heu sentit parlar d'aixň, probablement no us trobeu\n"
-"en aquest cas."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"La configuració estŕ completa. Podem desar aquests canvis al disc?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "No es pot obrir %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "No s'ha pogut obrir %s per escriure-hi: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Configuració del sistema de tallafocs"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Si us plau, espereu, s'estŕ preparant la instalˇlació"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Servidor, Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Ordinador de xarxa (client)"
-
-#: ../../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 "Office"
-msgstr "Oficina"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Estació de treball GNOME"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Eines per al Palm Pilot o per al Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Estació de treball"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Servidor, Tallafoc/Encaminador"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Programes d'ofimŕtica: processadors de textos (kword, abiword), gestors de "
-"fulls de cŕlcul (kspread, gnumeric), visualitzadors pdf, etc."
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Eines d'ŕudio: reproductors d'mp3 o midi, mescladors, etc."
-
-#: ../../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:999
-msgid "KDE Workstation"
-msgstr "Estació de treball KDE"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimčdia - Vídeo"
-
-#: ../../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"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Servidor, base de dades"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: ../../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 "Multimedia - Sound"
-msgstr "Multimčdia - So"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitats"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Documentació"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Eines de consola"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Estació d'Internet"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Estació multimčdia"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "Configuració de la LAN"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Més escriptoris grŕfics (Gnome, IceWM)"
-
-#: ../../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:999
-msgid "Graphical Environment"
-msgstr "Entorn grŕfic"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache i Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Eines per crear i gravar CD"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Estació de treball Office"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Servidor"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc."
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Programes grŕfics com ara el Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../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:999
-msgid "Network Computer server"
-msgstr "Servidor d'ordinador de xarxa"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Servidor, Correu/Groupware/Notícies"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Estació de jocs"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Reproductors i editors de vídeo"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimčdia - Grŕfics"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Programes d'entreteniment: acció, jocs de taula, estratčgia, etc."
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Conjunt d'eines per llegir i enviar correu i notícies (pine, mutt, tin...) i "
-"per navegar pel Web"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arxivament, emuladors, monitorització"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Comptabilitat personal"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Entorn grŕfic amb un conjunt d'aplicacions i eines d'escriptori fŕcil "
-"d'utilitzar"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Clients per a diferents protocols, incloent l'ssh"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet gateway"
-msgstr "Accés a Internet"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programes de reproducció/edició de so i vídeo"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Altres escriptoris grŕfics"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editors, intčrprets d'ordres, eines de fitxer, terminals"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programes per gestionar els vostres comptes, com ara el gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Gestió d'informació personal"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimčdia - Gravació de CD"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Estació científica de treball"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Interromp"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Cap"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Escolliu l'usuari per omissió:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Impressora remota"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Ara podeu proporcionar les seves opcions per al mňdul %s."
-
-#~ msgid "mount failed"
-#~ msgstr "ha fallat el muntatge"
-
-#~ msgid "Low"
-#~ msgstr "Baix"
-
-#~ msgid "Medium"
-#~ msgstr "Mitjŕ"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Poques millores per a aquest nivell de seguretat; la principal és que hi "
-#~ "ha\n"
-#~ "més avisos i comprovacions de seguretat."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimčdia"
-
-#~ msgid "Boot mode"
-#~ msgstr "Mode d'arrencada"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Expert"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "El GNU/Linux gestiona l'hora en GMT (Hora de Greenwich) i la\n"
-#~ "tradueix a l'hora local segons la zona horŕria seleccionada."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Connecta't a Internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Desconnecta't d'Internet"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Configura la connexió de xarxa (LAN o Internet)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "A quin disc us voleu desplaçar?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Informació"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Estació de treball GNOME"
-
-#~ msgid "authentification"
-#~ msgstr "autenticació"
-
-#~ msgid "user"
-#~ msgstr "usuari"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "L'Apache és un servidor de World Wide Web. S'utilitza per servir fitxers\n"
-#~ "HTML i CGI."
-
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) és un servidor de noms de domini (DNS) que s'utiilitza\n"
-#~ "per convertir noms d'ordinadors centrals en adreces IP."
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Surt"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Muntatge automŕtic del suport extraďble"
-
-#~ msgid "Active"
-#~ msgstr "Actiu"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "No"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "S'ha detectat una impressora, model \"%s\", a"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Dispositiu de la impressora local"
-
-#~ msgid "Printer Device"
-#~ msgstr "Dispositiu d'impressora"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Servidor CUPS remot"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Servidor CUPS remot"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mode de sistema"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Altres"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Si us plau, selecioneu la disposició del vostre teclat."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Si us plau, feu clic a una partició "
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tipus: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Fitxer de cňpia de seguretat incorrecte"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Configura l'X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Dispositiu d'impressora"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Cancelˇla"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "D'acord"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Tanca"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "toot"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "S'estŕ comprovant la vostra conexió..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "S'estŕ tancant la connexió..."
-
-#~ 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."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Ara, el sistema estŕ desconnectat."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Escolliu la mida que voleu instalˇlar"
-
-#~ msgid "Total size: "
-#~ msgstr "Mida total: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Si us plau, espereu, "
-
-#~ msgid "Total time "
-#~ msgstr "Temps total "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Voleu utilitzar la configuració existent per a X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "A quin dispositiu estŕ connectada la vostra impressora?\n"
-#~ "(tingueu en compte que /dev/lp0 equival a LPT1:)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Compte, l'adaptador de xarxa ja estŕ configurat. El tornaré a configurar."
-
-#~ msgid "New"
-#~ msgstr "Nou"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Elimina"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Si us plau, feu clic a una partició "
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambigüitat (%s), sigueu més precís\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (predeterminat %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "La vostra elecció? (predeterminat %s introduďu `cap' per a cap) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "no es pot obrir /etc/sysconfig/autologin per a lectura: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Voleu reiniciar la xarxa"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Hi esteu d'acord?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ara reiniciaré el dispositiu de xarxa:\n"
-
-#~ 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?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Tret que sapigueu expressament que s'ha d'indicar una altra cosa, "
-#~ "l'elecció\n"
-#~ "habitual és \"/dev/hda\" (el disc IDE mestre primari) o bé \"/dev/sda\"\n"
-#~ "(el primer disc SCSI)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Tipus de connexió: "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Escolliu l'usuari per omissió:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Si us plau, comproveu el ratolí."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr ""
-#~ "Escolliu l'idioma que voleu utilitzar per a la instalˇlació i per a l'ús "
-#~ "del sistema."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Heu d'acceptar els termes de la llicčncia de més amunt per poder "
-#~ "continuar la instalˇlació.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si us plau, feu clic a \"Accepto\" si hi esteu d'acord.\n"
-#~ "\n"
-#~ "\n"
-#~ "Feu clic a \"No accpeto\" si no hi esteu d'acord. La instalˇlació "
-#~ "finalitzarŕ sense modificar la instalˇlació actual."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Escolliu el vostre tipus de teclat de la llista inferior"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Si desitgeu que altres idiomes (a més del que vau triar en\n"
-#~ "iniciar la instalˇlació) estiguin disponibles després de la "
-#~ "instalˇlació,\n"
-#~ "escolliu-los de la llista de més amunt. Si els voleu seleccionar tots,\n"
-#~ "només cal que seleccioneu \"Tots\"."
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Personalitzada: Si esteu familiaritzat amb el Linux, podreu\n"
-#~ "triar l'ús del sistema instalˇlat entre Normal, Desenvolupament o\n"
-#~ "Servidor. Trieu \"Normal\" per a una instalˇlació per a un ús\n"
-#~ "general del vostre ordinador, \"Desenvolupament\" si utilitzareu\n"
-#~ "l'ordinador principalment per a desenvolupament de programari,\n"
-#~ "o \"Servidor\" si voleu instalˇlar un servidor convencional (per\n"
-#~ "a correu, impressions...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Per a experts: Si domineu el GNU/Linux i voleu realitzar una\n"
-#~ "instalˇlació totalment personalitzada, aquest és el vostre\n"
-#~ "tipus d'instalˇlació. Podreu seleccionar l'ús del vostre sistema\n"
-#~ "com a \"Personalitzada\"."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Ara heu de decidir com utilitzareu l'ordinador. Les opcions són:\n"
-#~ "\n"
-#~ "* Estació de treball: l'elecció ideal si penseu utilitzar l'ordinador "
-#~ "bŕsicament per a l'ús quotidiŕ, a la feina o\n"
-#~ " a casa.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Desenvolupament: si penseu utilitzar l'ordinador bŕsicament per a "
-#~ "desenvolupament de programari, aquesta és l'elecció ideal.\n"
-#~ " Tindreu instalˇlada una completa colˇlecció de programari per poder "
-#~ "compilar, depurar i formatar codi font,\n"
-#~ " o crear paquets de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Servidor: si penseu utilitzar l'ordinador com a servidor, aquesta és "
-#~ "l'elecció ideal, ja sigui un servidor de fitxers (NFS o\n"
-#~ " SMB), un servidor d'impressió (tipus Unix o Microsoft Windows), un "
-#~ "servidor d'autenticació (NIS), un servidor\n"
-#~ " de bases de dades, etc. En canvi, no espereu que se us instalˇlin coses "
-#~ "com ara el KDE, el GNOME, etc.)"
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Ara podeu seleccionar el grup de paquets que voleu instalˇlar o "
-#~ "actualitzar.\n"
-#~ "\n"
-#~ "\n"
-#~ "El DrakX comprovarŕ si teniu prou espai per instalˇlar-los tots i, si no, "
-#~ "us\n"
-#~ "ho avisarŕ. Si voleu seguir igualment, continuarŕ amb la instalˇlació de "
-#~ "tots\n"
-#~ "els grups seleccionats perň no n'instalˇlarŕ alguns de menys interčs. Al "
-#~ "final\n"
-#~ "de la llista podeu seleccionar l'opció \"Selecció individual de paquets"
-#~ "\", i\n"
-#~ "en aquest cas haureu de navegar per més de 1.000 paquets..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Ara podeu triar individualment tots els paquets que voleu instalˇlar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Podeu expandir o reduir l'arbre fent clic a les opcions del racó esquerre "
-#~ "de la finestra de paquets.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si preferiu veure els paquets ordenats alfabčticament, feu clic a la "
-#~ "icona\n"
-#~ "\"Commuta entre ordenació plana i per grups\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no voleu ser avisat pel que fa a les dependčncies, feu clic a "
-#~ "\"Dependčncies\n"
-#~ "automŕtiques\". Si ho feu, tingueu en compte que el fet de "
-#~ "desseleccionar\n"
-#~ "un paquet pot causar la desselecció d'altres paquets que en depenen, i "
-#~ "no\n"
-#~ "us n'assabentareu."
-
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Si teniu tots els CD de la llista superior, feu clic a D'acord.\n"
-#~ "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."
-
-#~ 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 "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Si voleu connectar l'ordinador a Internet o a una xarxa local, "
-#~ "seleccioneu\n"
-#~ "l'opció corresponent, perň abans recordeu engegar el dispositiu per tal "
-#~ "que\n"
-#~ "el DrakX el detecti automŕticament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no teniu connexió a Internet ni a cap xarxa local, escolliu "
-#~ "\"Inhabilita el servei de xarxa\".\n"
-#~ "\n"
-#~ "\n"
-#~ "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\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "No s'ha detectat cap mňdem. Si us plau, seleccioneu el port sčrie on estŕ "
-#~ "connectat.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per a la vostra informació, el primer port sčrie (anomenat \"COM1\" en "
-#~ "Microsoft Windows) s'anomena \"ttyS0\" en Linux."
-
-#~ 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 "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Ara podeu introduir les opcions de marcatge. Si no sabeu quč heu "
-#~ "d'introduir,\n"
-#~ "o si no n'esteu segur, podreu aconseguir la informació necessŕria del "
-#~ "vostre\n"
-#~ "proveďdor d'Internet. Si no introduďu aquí la informació del DNS "
-#~ "(servidor de\n"
-#~ "noms), aquesta informació s'obtindrŕ del proveďdor en el moment de "
-#~ "connectar."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Si el mňdem que teniu és extern, engegueu-lo per tal que el DrakX el "
-#~ "detecti automŕticament."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Si us plau, engegueu el mňdem i trieu-ne el correcte."
-
-#~ 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"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Si no esteu segur de si la informació de més amunt és correcta, si no "
-#~ "sabeu\n"
-#~ "quč introduir o si no n'esteu segur, podreu aconseguir la informació\n"
-#~ "necessŕria del vostre proveďdor d'Internet. Si no introduďu aquí la\n"
-#~ "informació del DNS (servidor de noms), aquesta informació s'obtindrŕ del\n"
-#~ "proveďdor en el moment de connectar."
-
-#~ 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 ""
-#~ "Ara podeu introduir el nom del vostre ordinador central. Si no esteu "
-#~ "segur del que hi\n"
-#~ "heu d'introduir, el vostre proveďdor us en donarŕ la informació correcta."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Ara podeu configurar el voste dispositiu de xarxa.\n"
-#~ "\n"
-#~ " * Adreça IP: si no la sabeu, o no n'esteu segur, pregunteu-la a "
-#~ "l'administrador de la xarxa.\n"
-#~ " No heu d'introduir cap adreça IP si més avall seleccioneu l'opció "
-#~ "\"IP automŕtica\".\n"
-#~ "\n"
-#~ " * Mŕscara de la xarxa: Normalment, \"255.255.255.0\" és una bona "
-#~ "elecció. Si no n'esteu segur, consulteu-ho a l'administrador de la "
-#~ "xarxa.\n"
-#~ "\n"
-#~ " * IP automŕtica: si la vostra xarxa utilitza els protocols BOOTP o "
-#~ "DHCP,\n"
-#~ "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."
-
-#~ 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 ""
-#~ "Ara podeu introduir el nom del vostre ordinador central, si cal. Si no "
-#~ "el\n"
-#~ "sabeu, o no esteu segur de quč heu d'introduir, consulteu a "
-#~ "l'administrador de la xarxa."
-
-#~ 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 ""
-#~ "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."
-
-#~ 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 ""
-#~ "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."
-
-#~ 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 ""
-#~ "Si teniu previst utilitzar proxys, configureu-los ara. Si no sabeu si\n"
-#~ "n'utilitzareu, consulteu-ho a l'administrador de la xarxa o al vostre\n"
-#~ "proveďdor."
-
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Podeu instalˇlar el paquet criptogrŕfic si la vostra connexió a Internet\n"
-#~ "s'ha configurat correctament. Escolliu primer una rčpilca des de la qual\n"
-#~ "vulgueu descarregar paquets i després seleccioneu els paquets a "
-#~ "instalˇlar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tingueu en compte que heu de seleccionar la rčplica i els paquets\n"
-#~ "criptogrŕfics segons la vostra legislació."
-
-#~ 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."
-
-#~ 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 ""
-#~ "Podeu configurar una impressora local (connectada al vostre ordinador) o\n"
-#~ "remota (accessible mitjançant una xarxa Unix, Netware o Microsoft "
-#~ "Windows)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Si voleu imprimir, trieu un sistema de impressió entre CUPS i LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "El CUPS és un nou sistema d'impressió, potent i flexible, per a sistemes "
-#~ "Unix\n"
-#~ "(CUPS significa \"Common Unix Printing System\"). És el sistema "
-#~ "d'impressió\n"
-#~ "per defecte en Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "L'LPR és l'antic sistema d'impressió utilitzat en distribucions anteriors "
-#~ "de\n"
-#~ "Mandrake Linux distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no teniu impressora, feu clic a \"Cap\"."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "El GNU/Linux pot treballar amb molts tipus d'impressores, perň cada un\n"
-#~ "d'aquests tipus requereix una configuració diferent.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si teniu la impressora connectada físicament a l'ordinador, seleccioneu\n"
-#~ "\"Impressora local\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba en un ordinador Unix "
-#~ "remot,\n"
-#~ "seleccioneu \"Impressora remota\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba en un ordinador Microsoft\n"
-#~ "Windows remot (o en un ordinador Unix que utilitza el protocol SMB),\n"
-#~ "seleccioneu \"SMB/Windows 95/98/NT\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Si us plau, engegueu la impressora abans de continuar per tal que el "
-#~ "DrakX\n"
-#~ "la pugui detectar.\n"
-#~ "\n"
-#~ "Aquí heu d'introduir algunes dades.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Nom de la impressora: l'spool d'impressió utilitza \"lp\" com a nom "
-#~ "per\n"
-#~ "omissió de la impressora. Per tant, heu de tenir una impressora "
-#~ "anomenada\n"
-#~ "\"lp\".\n"
-#~ " Si només teniu una impressora, podeu donar-li diversos;\n"
-#~ "noms; només cal que els separeu amb el carŕcter \"|\". Per tant,\n"
-#~ "si preferiu un nom més expressiu, l'heu d'indicar en primer lloc\n"
-#~ "(per exemple: \"La meva impressora|lp\").\n"
-#~ " La impressora que contingui \"lp\" al(s) nom(s) serŕ la impressora "
-#~ "per omissió.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Descripció: és opcional, perň pot ser útil si teniu diverses\n"
-#~ "impressores connectades a l'ordinador o si permeteu que altres\n"
-#~ "ordinadors accedeixin a aquesta impressora.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ubicació: si voleu incloure informació sobre la ubicació de la\n"
-#~ "impressora, feu-ho aquí (podeu escriure el que vulgueu, (per exemple,\n"
-#~ "\"2n pis\").\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Aquí heu d'introduir algunes dades.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Nom de la cua: l'spool d'impressió utilitza \"lp\" com a nom per\n"
-#~ "omissió de la impressora. Per tant, heu de tenir una impressora "
-#~ "anomenada\n"
-#~ "\"lp\".\n"
-#~ " Si només teniu una impressora, podeu donar-li diversos;\n"
-#~ "noms; només cal que els separeu amb el carŕcter \"|\". Per tant,\n"
-#~ "si preferiu un nom més expressiu, l'heu d'indicar en primer lloc\n"
-#~ "(per exemple: \"La meva impressora|lp\").\n"
-#~ " La impressora que contingui \"lp\" al(s) nom(s) serŕ la impressora "
-#~ "per omissió.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Directori d'spool: les tasques d'impressió s'emmagatzemen en aquest "
-#~ "directori.Conserveu la opció predeterminada si no sabeu quina utilitzar\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " Si voleu accedir a una impressora que es troba en un ordinador Unix\n"
-#~ "remot, seleccioneu \"Impressora lpd remota\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Si voleu accedir a una impressora que es troba en un ordinador\n"
-#~ "Microsoft Windows remot (o en un ordinador Unix que utilitza el protocol\n"
-#~ "SMB), seleccioneu \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ " Si voleu accedir a una impressora que es troba en una xarxa "
-#~ "NetWare,\n"
-#~ "seleccioneu \"NetWare\".\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "No s'ha detectat la vostra impressora. Si us plau, introduďu el nom del\n"
-#~ "dispositiu a quč estŕ connectada.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per a la vostra informació, la majoria d'impressores estan connectades "
-#~ "al\n"
-#~ "primer port paralˇlel, que s'anomena \"/dev/lp0\" en GNU/Linux i \"LPT1"
-#~ "\"\n"
-#~ "en Microsoft Windows."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Ara heu de seleccionar la vostra impressora a la llista superior."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "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 ""
-#~ "Si us plau, seleccioneu les opcions correctes segons la vostra "
-#~ "impressora;\n"
-#~ "consulteu-ne la documentació si no sabeu quč heu de seleccionar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Podreu comprovar la configuració en el pas següent i modificar-la si no\n"
-#~ "funciona exactament com voleu."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Ara podeu introduir la contrasenya de l'usuari 'root' del vostre\n"
-#~ "sistema Mandrake Linux. Ho heu de fer dos cops per verificar que\n"
-#~ "ambdues introduccions són idčntiques.\n"
-#~ "\n"
-#~ "\n"
-#~ "L'usuari 'root' és l'administrador del sistema, i és l'únic\n"
-#~ "autoritzat per modificar la configuració del sistema; per tant,\n"
-#~ "trieu amb molta cura aquesta contrasenya. L'ús no autoritzat del\n"
-#~ "compte 'root' pot ser extremadament perillós per a la integritat\n"
-#~ "del sistema, per a les seves dades, i per a altres sistema que hi\n"
-#~ "estan connectats.\n"
-#~ "\n"
-#~ "\n"
-#~ "La contrasenya s'ha de crear amb diversos carŕcters alfanumčrics, ha de\n"
-#~ "tenir una llargada mínima de 8 carŕcters, i mai no s'ha d'anotar enlloc.\n"
-#~ "\n"
-#~ "\n"
-#~ "No obstant aixň, no creeu una contrasenya excessivament llarga o\n"
-#~ "complicada: heu de poder recordar-la sense problemes."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Ara podeu crear un o més comptes \"normals\" d'usuari, en\n"
-#~ "contraposició al compte \"privilegiat\", el 'root'. Podeu crear\n"
-#~ "un o més comptes per a cada una de les persones a qui permetreu\n"
-#~ "utilitzar l'ordinador. Tingueu en compte que cada compte d'usuari\n"
-#~ "tindrŕ les seves prňpies preferčncies (entorn grŕfic, parŕmetres\n"
-#~ "del programa. etc.) i el seu propi \"directori inicial\", on\n"
-#~ "s'emmagatzemen aquestes preferčncies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Primer de tot, creeu-vos un compte propi! Encara que sigueu l'únic\n"
-#~ "usuari de l'ordinador, NO us connecteu com a 'root'\n"
-#~ "per a l'ús quotidiŕ del sistema: és un risc de seguretat molt alt.\n"
-#~ "Tot sovint, fer el sistema inutilitzable depčn d'un simple error\n"
-#~ "tipogrŕfic.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per tant, connecteu-vos al sistema amb el compte d'usuari que heu\n"
-#~ "creat, i entreu-hi com a 'root' només per a tasques d'administració\n"
-#~ "i manteniment."
-
-#~ 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 ""
-#~ "És molt recomanable crear un disc d'arrencada. Si no podeu arrencar "
-#~ "l'ordinador,\n"
-#~ "és l'única manera de solucionar-ho sense haver de reinstalˇlar-ho tot."
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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"
-#~ "ex., una partició del disc dur) que conté el sector d'arrencada.\n"
-#~ "Tret que sapigueu expressament que s'ha d'indicar una altra cosa,\n"
-#~ "trieu \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Temps d'espera abans d'arrencar la imatge per defecte: Especifica el\n"
-#~ "temps, en dčcimes de segon, que el carregador d'arrencada ha\n"
-#~ "d'esperar abans de carregar la primera imatge.\n"
-#~ "Aixň és útil en sistemes que arrenquen immediatament des del disc\n"
-#~ "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.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mode de vídeo: Amb aixň s'especifica el mode de text VGA que\n"
-#~ "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"
-#~ "\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."
-
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 ""
-#~ "El SILO és un carregador d'arrencada per a l'SPARC: pot arrencar el\n"
-#~ "GNU/Linux o qualsevol altre sistema operatiu que tingueu a l'ordinador.\n"
-#~ "Normalment, aquests altres sistemes operatius es detecten i instalˇlen\n"
-#~ "correctament, perň si no és així, podeu afegir-los manualment en aquesta\n"
-#~ "pantalla. Aneu amb compte de triar els parŕmetres correctes.\n"
-#~ "\n"
-#~ "\n"
-#~ "També és possible que no volgueu donar accés a tothom a aquests sistemes\n"
-#~ "operatius; en aquest cas podeu suprimir les entrades corresponents, perň\n"
-#~ "aleshores us caldrŕ un disc d'arrencada per poder-los arrencar!"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Les opcions principals del SILO són:\n"
-#~ " - Instalˇlació del carregador d'arrencada: indica on voleu situar la\n"
-#~ "informació necessŕria per arrencar el GNU/Linux. Tret que sapigueu\n"
-#~ "exactament quč esteu fent, seleccioneu \"Primer sector de la unitat\n"
-#~ "(MBR)\".\n"
-#~ " \n"
-#~ "\n"
-#~ " - Temps d'espera abans d'arrencar la imatge per defecte: Especifica el\n"
-#~ "temps, en dčcimes de segon, que el carregador d'arrencada ha\n"
-#~ "d'esperar abans de carregar la primera imatge.\n"
-#~ "Aixň és útil en sistemes que arrenquen immediatament des del disc\n"
-#~ "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."
-
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Ara cal configurar el sistema X Window, que és el nucli del GUI\n"
-#~ "(Interfície grŕfica d'usuari) del GNU/Linux. Per a aixň, heu de\n"
-#~ "configurar la vostra targeta grŕfica i el monitor. No obstant\n"
-#~ "aixň, la majoria d'aquests passos estan automatitzats, així que pot\n"
-#~ "ser que la vostra feina es limiti a verificar quč s'ha fet i a\n"
-#~ "acceptar els parŕmetres :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Quan la configuració hagi acabat s'iniciarŕ X (tret que demaneu al\n"
-#~ "Drakx que no ho faci), i podreu verificar si els parŕmetres us\n"
-#~ "convenen. Si no, podreu tornar enrere i canviar-los tantes vegades\n"
-#~ "com calgui."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Si hi ha algun problema a la configuració X, utilitzeu aquestes opcions\n"
-#~ "per configurar correctament l'X Window System."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Si preferiu utilitzar una entrada grŕfica, seleccioneu \"Sí\". En cas\n"
-#~ "contrari, seleccioneu \"No\"."
-
-#~ msgid ""
-#~ "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"
-#~ msgstr ""
-#~ "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"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Ara, el sistema es tornarŕ a arrencar.\n"
-#~ "\n"
-#~ "Després d'aixň, el sistema Mandrake Linux es carregarŕ\n"
-#~ "automŕticament. Si voleu arrencar un altre sistema operatiu existent,\n"
-#~ "llegiu les instruccions addicionals."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Txec (Programadors)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Eslovac (Programadors)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Nom del perfil a crear:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Escriu a /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formata-ho tot"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Després de formatar totes les particions,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "totes les dades d'aquestes particions s'hauran perdut"
-
-#~ msgid "Reload"
-#~ msgstr "Torna a carregar"
-
-#~ 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?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Configuració de l'ADSL"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "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"
-#~ "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."
-
-#~ msgid "Remote queue"
-#~ msgstr "Cua remota"
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Cua remota"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Nom de domini"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Cap impressora"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Monitorització de la xarxa"
-
-#~ msgid "Profile "
-#~ msgstr "Perfil "
-
-#~ msgid "Statistics"
-#~ msgstr "Estadístiques"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "S'estŕ enviant la velocitat: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "S'estŕ rebent la velocitat: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Tipus de connexió: "
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "S'estŕ establint la connexió a Internet"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "S'estŕ realitzant la desconnexió d'Internet"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "No s'ha pogut realitzar la desconnexió d'Internet"
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "La desconnexió d'Internet ha finalitzat"
-
-#~ msgid "Connection complete."
-#~ msgstr "La connexió ha finalitzat."
-
-#~ 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."
-
-#~ msgid "sent: "
-#~ msgstr "enviat: "
-
-#~ msgid "received: "
-#~ msgstr "rebut: "
-
-#, fuzzy
-#~ msgid "average"
-#~ msgstr "escombraries"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Predeterminat"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "No s'ha pogut interpretar el contingut del fitxer de configuració."
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Fitxer de configuració no reconegut"
-
-#~ msgid "Adapter"
-#~ msgstr "Adaptador"
-
-#~ msgid "Disable network"
-#~ msgstr "Inhabilita el sistema de xarxa"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Inhabilita el sistema de xarxa"
-
-#~ 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 ""
-#~ "Ara podeu provar el ratolí. Utilitzeu els botons i la bola per comprovar "
-#~ "que\n"
-#~ "els parŕmetres són correctes; si no ho són, feu clic a \"Cancelˇla\" per\n"
-#~ "seleccionar un altre controlador."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Connexió per DSL (o ADSL)"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Tanca"
-
-#~ 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."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Sí, imprimeix una pŕgina ASCII de prova"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Sí, imprimeix una pŕgina PostScript de prova"
-
-#~ msgid "Paper Size"
-#~ msgstr "Mida del paper"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Voleu expulsar la pŕgina després de la tasca?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Opcions del programa de control Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "Opcions de profunditat del color"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Voleu imprimir el text com a PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Voleu ajustar el text 'stair-stepping'?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Nombre de pŕgines per pŕgines de sortida"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Marges dret/esquerra en punts (1/72 de polzada)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Marges superior/inferior en punts (1/72 de polzada)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "opcions addicionals del GhostScript"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Opcions addicionals per al text"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Inverteix l'ordre de les pŕgines"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Seleccioneu la connexió de la impressora remota"
-
-#~ 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 ""
-#~ "Cada impressora necessita un nom (p.ex. lp).\n"
-#~ "Es poden definir altres parŕmetres, com ara la descripció de la "
-#~ "impressora\n"
-#~ "o la seva ubicació. Quin nom cal utilitzar per a aquesta impressora, i "
-#~ "com\n"
-#~ "estŕ connectada?"
-
-#~ 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 ""
-#~ "Cada cua d'impressió (a quč s'adrecen les tasques d'impressió) necessita\n"
-#~ "un nom (sovint lp) i un directori d'spool associada amb ell. Quin nom i\n"
-#~ "directori cal utilitzar per a aquesta cua, i com estŕ connectada la "
-#~ "impressora?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Nom de la cua"
-
-#~ msgid "Spool directory"
-#~ msgstr "Directori d'spool"
-
-#~ msgid "Disable"
-#~ msgstr "Inhabilita"
-
-#~ msgid "Enable"
-#~ msgstr "Habilita"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Per habilitar un sistema més segur, seleccioneu \"Utilitza el\n"
-#~ "fitxer d'ombra\" i \"Utilitza les contrasenyes MD5\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Si la vostra xarxa utilitza NIS, seleccioneu \"Utilitza NIS\". Si no ho\n"
-#~ "sabeu, consulteu a l'administrador de la xarxa."
-
-#~ msgid "yellow pages"
-#~ msgstr "pŕgines grogues"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Configuració de la LAN"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "DNS 1 del proveďdor"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "DNS 2 del proveďdor"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Com us voleu connectar a Internet?"
-
-#~ msgid "cannot fork: "
-#~ msgstr "no es pot bifurcar: "
-
-#~ msgid "Configure..."
-#~ msgstr "Configura..."
-
-#~ msgid "Selected size %d%s"
-#~ msgstr "S'ha seleccionat la mida %d%s"
-
-#~ msgid "Opening your connection..."
-#~ msgstr "S'estŕ obrint la connexió..."
-
-#~ 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 "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 "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 "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 "loopback"
-#~ msgstr "loopback"
-
-#~ 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 "Disable Internet Connection"
-#~ msgstr "Inhabilita la connexió a Internet"
-
-#~ msgid "Configure local network"
-#~ msgstr "Configura la xarxa local"
-
-#~ 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 "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 "(may cause data corruption)"
-#~ msgstr "(pot malmetre les dades)"
-
-#~ 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 "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Utilitza les contrasenyes MD5"
-
-#~ msgid "Search"
-#~ msgstr "Cerca"
-
-#~ msgid "Package"
-#~ msgstr "Paquet"
-
-#~ msgid "Tree"
-#~ msgstr "Arbre"
-
-#~ msgid "Sort by"
-#~ msgstr "Ordena per"
-
-#~ msgid "Category"
-#~ msgstr "Categoria"
-
-#~ 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 "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 "Checking dependencies"
-#~ msgstr "S'estan comprovant les dependčncies"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Ara es desinstalˇlaran els paquets següents"
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Quin paquet esteu cercant"
-
-#~ 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 "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 "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"
-
-#~ msgid "Slovakian"
-#~ msgstr "Eslovac"
-
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM d'ipchains amb l'urpmi."
-
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM de dhcp amb l'urpmi."
-
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM de linuxconf amb l'urpmi."
-
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM de bind amb l'urpmi."
-
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr "No s'ha pogut instalˇlar el RPM de caching-nameserver amb l'urpmi"
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Torna a configurar la xarxa local"
-
-#~ msgid ""
-#~ " Introduction\n"
-#~ "\n"
-#~ "The operating system and the different components available in the "
-#~ "Mandrake Linux distribution \n"
-#~ "shall be called the \"Software Products\" hereafter. The Software "
-#~ "Products include, but are not \n"
-#~ "restricted to, the set of programs, methods, rules and documentation "
-#~ "related to the operating \n"
-#~ "system and the different components of the Mandrake Linux distribution.\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., 43, rue d'Aboukir, 75002 Paris - France, 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. 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"
-#~ "Some versions of the Software Products may contain components which are "
-#~ "not governed by the GPL \n"
-#~ "License or similar agreements. Each such component is then governed by "
-#~ "the terms and conditions \n"
-#~ "of its own specific license. Please read carefully and comply with such "
-#~ "specific licenses before \n"
-#~ "you install, use or redistribute the said components. Such licenses will "
-#~ "in general prevent the \n"
-#~ "transfer, duplication (except for backup purposes), redistribution, "
-#~ "reverse engineering, \n"
-#~ "de-assembly, \n"
-#~ "de-compilation or modification of the component. Any breach of agreement "
-#~ "will immediately terminate \n"
-#~ "your rights under the specific license. Unless the specific license terms "
-#~ "grant you such rights, \n"
-#~ "you usually cannot install the programs on more than one system, or adapt "
-#~ "it to be used on a \n"
-#~ "network. \n"
-#~ "In doubt, please contact directly the distributor or editor of the "
-#~ "component. Transfer to third \n"
-#~ "parties or copying of such components including the documentation is "
-#~ "usually forbidden.\n"
-#~ "\n"
-#~ "\n"
-#~ "3. 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,\n"
-#~ "by all means and for all purposes.\n"
-#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
-#~ "MandrakeSoft S.A. All rights \n"
-#~ "are \n"
-#~ "reserved. The duplication is forbidden without prior written consent by "
-#~ "MandrakeSoft S.A.\n"
-#~ "\n"
-#~ "\n"
-#~ "4. Limited Warranty\n"
-#~ "\n"
-#~ "The Software Products and attached documentation are provided \"as is\", "
-#~ "with no warranty, to the \n"
-#~ "extent permitted by law. Should the Software Products be defective, "
-#~ "MandrakeSoft S.A. will at its \n"
-#~ "own will either replace the Software Products, or reimburse the paid "
-#~ "fee.\n"
-#~ "This limited warranty is void if you fail to comply to the "
-#~ "recommendations, instructions and \n"
-#~ "conditions \n"
-#~ "of use listed in the documentation or license agreements of the Software "
-#~ "Products.\n"
-#~ "To the extent permitted by law, MandrakeSoft S.A. will in no "
-#~ "circumstances be liable for any \n"
-#~ "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"
-#~ "judgement, or any other consequential loss) arising out of the use or "
-#~ "inability to use the \n"
-#~ "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 \n"
-#~ "damages for loss of business, interruption of business, financial loss, "
-#~ "legal fees and penalties \n"
-#~ "resulting from a court judgement, or any other consequential loss) "
-#~ "arising out of the possession \n"
-#~ "and \n"
-#~ "use of software components or arising out of downloading software "
-#~ "components from one of \n"
-#~ "Mandrake Linux \n"
-#~ "sites which are prohibited or restricted in some countries by local "
-#~ "laws. This limited liability \n"
-#~ "applies to, but is not restricted to, the strong cryptography components "
-#~ "included in the Software \n"
-#~ "Products.\n"
-#~ "\n"
-#~ "\n"
-#~ "5. Governing Laws \n"
-#~ "\n"
-#~ "If any portion of this agreement is held void, illegal or inapplicable by "
-#~ "a court judgement, 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, \n"
-#~ "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"
-#~ "43, rue d'Aboukir, 75002 Paris - France\n"
-#~ msgstr ""
-#~ " Introducció\n"
-#~ "\n"
-#~ "D'ara endavant, el sistema operatiu i els diferents components que "
-#~ "s'inclouen\n"
-#~ "a la distribució Mandrake Linux s'anomenaran els \"Productes de programari"
-#~ "\".\n"
-#~ "Els Productes de programari inclouen, perň no es limiten a, el conjunt "
-#~ "de\n"
-#~ "programes, mčtodes, regles i documentació relativa al sistema operatiu i "
-#~ "als\n"
-#~ "diferents components de la distribució Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "1. Acord de Llicčncia\n"
-#~ "\n"
-#~ "Si us plau, llegiu aquest document atentament. Aquest document és un "
-#~ "acord\n"
-#~ "de llicčncia entre vós i MandrakeSoft S.A., 43, rue d'Aboukir, 75002 "
-#~ "París,\n"
-#~ "França, que s'aplica als Productes de programari.\n"
-#~ "Pel fet d'instalˇlar, duplicar o utilitzar els Productes de programari, "
-#~ "en \n"
-#~ "qualsevol manera, accepteu i esteu totalment d'acord, de manera "
-#~ "explícita, en\n"
-#~ "sometre-us als termes i condicions d'aquesta Llicčncia. Si no esteu "
-#~ "d'acord amb\n"
-#~ "qualsevol part d'aquesta Llicčncia, no esteu autoritzat a instalˇlar, "
-#~ "duplicar\n"
-#~ "ni utilitzar els Productes de programari. Qualsevol intent d'instalˇlar,\n"
-#~ "duplicar o utilitzar els Productes de programari d'una manera no conforme "
-#~ "als\n"
-#~ "termes i condicions d'aquesta Llicčncia és invŕlid i conclourŕ els "
-#~ "vostres\n"
-#~ "drets sota aquesta Llicčncia. En concloure la Llicčncia, heu de destruir\n"
-#~ "immediatament totes les cňpies dels Productes de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "2. la Llicčncia GPL i Llicčncies relacionades\n"
-#~ "\n"
-#~ "Els Productes de programari són components creats per diferents persones "
-#~ "o\n"
-#~ "entitats. La majoria d'aquests components estan coberts pels termes i\n"
-#~ "condicions de la Llicčncia General Pública de GNU (d'ara endavant \"GPL"
-#~ "\"), o\n"
-#~ "de llicčncies similars. La majoria d'aquestes llicčncies us permeten "
-#~ "utilitzar,\n"
-#~ "duplicar, adaptar o redistribuir els components que cobreixen. Si us "
-#~ "plau,\n"
-#~ "llegiu atentament els termes i condicions de l'acord de llicčncia de "
-#~ "cada\n"
-#~ "component abans d'utilitzar-lo. Qualsevol pregunta sobre un component "
-#~ "s'ha\n"
-#~ "d'adreçar al seu autor i no a MandrakeSoft. Els programes desenvolupats "
-#~ "per\n"
-#~ "MandrakeSoft S.A. estan coberts per la Llicčncia GPL. La documentació "
-#~ "escrita\n"
-#~ "per MandrakeSoft S.A. estŕ coberta per una llicčncia específica. Si us "
-#~ "plau,\n"
-#~ "consulteu la documentació per a més informació. Algunes versions dels "
-#~ "Productes\n"
-#~ "de programari poden incloure components que no estiguin coberts per la\n"
-#~ "Llicčncia GPL o llicčncies similars; en aquest cas, cada un d'aquests\n"
-#~ "components estarŕ cobert pels termes i condicions de la seva prňpia "
-#~ "llicčncia\n"
-#~ "específica. Si us plau, llegiu atentament i respecteu aquestes "
-#~ "llicčncies\n"
-#~ "específiques abans d'instalˇlar, utilitzar o redistribuir els components\n"
-#~ "esmentats. En general, aquestes llicčncies impediran la transferčncia,\n"
-#~ "duplicació (excepte amb la finalitat de fer cňpies de seguretat),\n"
-#~ "redistribució, enginyeria inversa, desensamblatge, decompilació o "
-#~ "modificació\n"
-#~ "del component. Qualsevol ruptura de l'acord conclourŕ immediatament els "
-#~ "vostres\n"
-#~ "drets sota la llicčncia específica. Tret que els termes de la llicčncia\n"
-#~ "específica us ho autoritzin, normalment no podreu instalˇlar els "
-#~ "programes en\n"
-#~ "més d'un sistema ni adaptar-lo per al seu ús en xarxa. Si hi teniu "
-#~ "dubtes,\n"
-#~ "poseu-vos en contacte directament amb el distribuďdor o editor del "
-#~ "component.\n"
-#~ "Normalment, estŕ prohibida la transferčncia a terceres parts i la cňpia\n"
-#~ "d'aquests components, incloent la documentació.\n"
-#~ "\n"
-#~ "\n"
-#~ "3. Drets de propietat intelˇlectual\n"
-#~ "\n"
-#~ "Tots els drets dels components dels Productes de programari pertanyen als "
-#~ "seus\n"
-#~ "autors respectius i estan protegits per la propietat intelˇlectual i les "
-#~ "lleis\n"
-#~ "de copyright aplicables al programari. MandrakeSoft S.A. es reserva els "
-#~ "drets\n"
-#~ "de modificar o adaptar els Productes de programari, ja sigui parcialment "
-#~ "o\n"
-#~ "totalment, per tots els mitjans i per a totes les finalitats. \"Mandrake"
-#~ "\",\n"
-#~ "\"Mandrake Linux\" i els logotips associats son marques registrades de\n"
-#~ "MandrakeSoft S.A. Tots els drets reservats. Es prohibeix la duplicació "
-#~ "sense\n"
-#~ "consentiment previ per escrit de MandrakeSoft S.A.\n"
-#~ "\n"
-#~ "\n"
-#~ "4. Garantia limitada\n"
-#~ "\n"
-#~ "Els Productes de programari i la documentació que s'hi adjunta es "
-#~ "subministren\n"
-#~ "\"tal com són\", sense cap garantia, fins al punt permčs per la llei. En "
-#~ "cas\n"
-#~ "que els Productes de programari siguin defectuosos, MandrakeSoft S.A., a\n"
-#~ "criteri seu, decidirŕ si reemplaça els Productes de programari o si en\n"
-#~ "reemborsa el preu pagat. Aquesta garantia limitada és nulˇla si no "
-#~ "compliu les\n"
-#~ "recomanacions, instruccions i condicions d'ús que s'indiquen a la "
-#~ "documentació\n"
-#~ "o als acords de llicčncia dels Productes de programari. Fins al punt "
-#~ "permčs per\n"
-#~ "la llei, MandrakeSoft S.A. no serŕ, en cap circumstŕncia, responsable de "
-#~ "cap\n"
-#~ "dany especial, incidental, directe o indirecte (incloent, perň sense "
-#~ "limitar-se\n"
-#~ "a, danys per pčrdua de negocis, interrupció de negocis, pčrdues "
-#~ "financeres,\n"
-#~ "honoraris i multes legals que resultin per un judici i qualsevol altre "
-#~ "pčrdua\n"
-#~ "important) que resulti de l'ús o impossibilitat d'utilitzar els Productes "
-#~ "de\n"
-#~ "programari, fins i tot si s'ha notificat a MandrakeSoft S.A. la "
-#~ "possibilitat de\n"
-#~ "que es produeixin aquests danys.\n"
-#~ "\n"
-#~ "RESPONSABILITAT LIMITADA LLIGADA A LA POSESSIÓ O UTILITZACIÓ DE "
-#~ "PROGRAMARI PROHIBIT EN ALGUNES PAĎSOS\n"
-#~ "\n"
-#~ "Fins al put permčs per la llei, MandrakeSoft S.A. i els seus "
-#~ "distribuďdors no\n"
-#~ "seran, sota cap circumstŕncia, responsables de cap dany especial, "
-#~ "incidental,\n"
-#~ "directe o indirecte (incloent, perň sense limitar-se a, danys per pčrdua "
-#~ "de\n"
-#~ "negocis, interrupció de negocis, pčrdues financeres, honoraris i multes "
-#~ "legals\n"
-#~ "que resultin per un judici i qualsevol altre pčrdua important) que "
-#~ "resultin de\n"
-#~ "la possessió i ús de components de programari o de la descŕrrega de "
-#~ "components\n"
-#~ "de programari d'algun dels llocs web de Mandrake Linux que estiguin "
-#~ "prohibits o\n"
-#~ "restringits en alguns paďsos per lleis locals. Aquesta responsabilitat "
-#~ "limitada\n"
-#~ "s'aplica, perň no estŕ restringida a, els potents components de "
-#~ "criptografia\n"
-#~ "inclosos en els Productes de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "5. Lleis aplicables \n"
-#~ "\n"
-#~ "Si qualsevol part d'aquest acord és declarat nul, ilˇlegal o inaplicable "
-#~ "en un\n"
-#~ "judici, aquesta part s'exclou del contracte, perň seguiu obligat per les "
-#~ "altres\n"
-#~ "seccions aplicables de l'acord. Els termes i condicions d'aquesta "
-#~ "Llicčncia\n"
-#~ "estan coberts per les lleis de França. Preferiblement, tots els desacords "
-#~ "sobre\n"
-#~ "els termes d'aquesta Llicčncia es resoldran fora dels tribunals. Com a "
-#~ "últim\n"
-#~ "recurs, el plet es dirimirŕ en els tribunals de París, França.\n"
-#~ "Per a qualsevol pregunta sobre aquest document, poseu-vos en contacte "
-#~ "amb\n"
-#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 París, França.\n"
-
-#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Es pot configurar el vostre ordinador per tal que comparteixi la connexió "
-#~ "a Internet.\n"
-#~ "\n"
-
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "S'ha configurat tot.\n"
-
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Connecta't a Internet amb un mňdem normal"
-
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Connecta't a Internet mitjançant XDSI"
-
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Connecta't a Internet mitjançant DSL (o ADSL)"
-
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Connecta't a Internet mitjançant cable"
-
-#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "Temps (en segons) d'inactivitat després del qual\n"
-#~ "penjarŕ (deixeu-ho en blanc per inhabilitar-ho)."
-
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Alemanya (1TR6)"
-
-#~ msgid "What do you wish to do?"
-#~ msgstr "Quč voleu fer?"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Instalˇla/Rescata"
-
-#~ msgid "Rescue"
-#~ msgstr "Rescata"
-
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Quin tipus de partició voleu?"
-
-#~ 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 Mandrake Linux "
-#~ "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"
-#~ msgstr ""
-#~ "Escolliu \"Instalˇlació\" si no hi ha instalˇlada cap versió anterior de "
-#~ "GNU/Linux,\n"
-#~ "o si voleu utilitzar diverses distribucions o versions.\n"
-#~ "\n"
-#~ "Escolliu \"Rescat\" si voleu rescatar una versió anterior de\n"
-#~ "Mandrake Linux ja instalˇlada.\n"
-#~ "\n"
-#~ "\n"
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Recomanada: Si mai no heu instalˇlat el GNU/Linux,\n"
-#~ " escolliu aquesta opció.\n"
-#~ " - Personalitzada: Si esteu prou familiaritzat amb el GNU/Linux, podeu\n"
-#~ " triar l'ús principal del vostre ordinador. Consulteu-ne els detalls\n"
-#~ " més avall.\n"
-#~ "\n"
-#~ " - Per a experts: S'assumeix que domineu el GNU/Linux i voleu realitzar "
-#~ "una\n"
-#~ " instalˇlació altament personalitzada. Com en el cas del tipus\n"
-#~ " d'instalˇlació \"Personalitzada\", podreu seleccionar l'ús del "
-#~ "vostre\n"
-#~ " sistema.\n"
-#~ " Perň, si us plau, sobretot NO TRIEU AQUESTA OPCIÓ TRET QUE SAPIGUEU "
-#~ "QUČ ESTEU FENT!\n"
-
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux 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 ""
-#~ "En aquest moment podeu decidir quina(es) partició(ns) voleu utilitzar\n"
-#~ "per instalˇlar el sistema Mandrake Linux, si és que ja es va(n)\n"
-#~ "definir (en una instalˇlació anterior del GNU/Linux o mitjançant una\n"
-#~ "altra eina de partició). En altres casos, s'han de definir les\n"
-#~ "particions del disc dur: aquesta operació consisteix en dividir el\n"
-#~ "disc dur de l'ordinador en ŕrees lňgiques separades.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si heu de crear noves particions, utilitzeu \"Assignació\n"
-#~ "automŕtica\" per crear particions per al GNU/Linux de manera automŕtica.\n"
-#~ "Podeu triar el disc on s'hi han de fer les particions fent clic a\n"
-#~ "\"hda\" per a la primera unitat IDE, \"hdb\" per a la segona, o\n"
-#~ "\"sda\" per a la primera unitat SCSI, i així successivament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dues particions habituals són: la partició root (/), que és el punt\n"
-#~ "d'inici de la jerarquia de directoris del sistema de fitxers, i\n"
-#~ "/boot, que conté tots els fitxers necessaris per iniciar el sistema\n"
-#~ "operatiu quan s'arrenca l'ordinador per primer cop.\n"
-#~ "\n"
-#~ "\n"
-#~ "Donat que aquest procés sol ser irreversible, la partició d'un disc\n"
-#~ "és sovint un procés que espanta als usuaris sense experičncia, perň\n"
-#~ "el DiskDrake simplifica molt aquest procés. Consulteu la documentació\n"
-#~ "i preneu-vos tant temps com sigui necessari abans de realitzar la\n"
-#~ "partició.\n"
-#~ "\n"
-#~ "Podeu accedir a qualsevol opció mitjançant el teclat: desplaceu-vos per "
-#~ "les particions amb el tabulador i les fletxes amunt i avall. Quan se "
-#~ "selecciona una partició, podeu utilitzar:\n"
-#~ "\n"
-#~ "- Ctrl-c per crear una nova partició (quan se selecciona una partició "
-#~ "buida)\n"
-#~ "\n"
-#~ "- Ctrl-d per suprimir una partició\n"
-#~ "\n"
-#~ "- Ctrl-m per definir el punt de muntatge\n"
-
-#~ 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 ""
-#~ "Cal formatar les particions que s'acaben de definir per poder-les\n"
-#~ "utilitzar ('formatar' significa 'crear un sistema de fitxers').\n"
-#~ "En aquest punt podeu, si voleu, tornar a formatar particions\n"
-#~ "existents per eliminar les dades que contenen. Nota: no és\n"
-#~ "necessari tornar a formatar les particions existents, especialment\n"
-#~ "si contenen fitxers o dades que voleu conservar.\n"
-#~ "Els directoris que es solen conservar són /home i /usr/local."
-
-#~ 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 ""
-#~ "Ara s'estan instalˇlant els paquets seleccionats. Aquesta operació\n"
-#~ "trigarŕ pocs minuts, tret que hagueu escollit actualitzar un\n"
-#~ "sistema existent; en aquest cas trigarŕ més temps, fins i tot\n"
-#~ "abans que s'iniciď la instalˇlació."
-
-#~ 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"
-#~ "\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"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Si el DrakX no ha pogut trobar el ratolí, o si voleu comprovar quč\n"
-#~ "ha fet, a la part superior apareixerŕ la llista de ratolins.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si esteu d'acord amb els parŕmetres del DrakX, feu clic a 'D'acord'.\n"
-#~ "Si no, escolliu, al menú superior, el tipus de ratolí que us sembli més "
-#~ "semblant al vostre.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si es tracta d'un ratolí sčrie, també us caldrŕ indicar al DrakX a\n"
-#~ "quin port sčrie estŕ connectat."
-
-#~ 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 Mandrake Linux 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 ""
-#~ "Aquesta secció estŕ dedicada a la configuració d'una xarxa local\n"
-#~ "(LAN) o d'un mňdem.\n"
-#~ "\n"
-#~ "Escolliu \"LAN local\" i el DrakX intentarŕ trobar un adaptador\n"
-#~ "Ethernet al vostre ordinador. El sistema trobarŕ i inicialitzarŕ\n"
-#~ "automŕticament els adaptadors PCI.\n"
-#~ "No obstant aixň, si el vostre perifčric és ISA, la detecció\n"
-#~ "no funcionarŕ, i us caldrŕ escollir un programa de control a la\n"
-#~ "llista que apareixerŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Com en el cas dels adaptadors SCSI, podeu deixar que, d'entrada,\n"
-#~ "el programa de control comprovi l'adaptador; si no ho feu així, us\n"
-#~ "caldrŕ especificar les opcions del programa de control que haureu\n"
-#~ "d'anar a buscar a la documentació del vostre maquinari.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si instalˇleu un sistema Mandrake Linux en un ordinador que forma\n"
-#~ "part d'una xarxa existent, l'administrador de la xarxa us haurŕ de\n"
-#~ "facilitar la informació necessŕria (l'adreça IP, la submŕscara de\n"
-#~ "xarxa i el nom de l'ordinador central). Si esteu configurant una\n"
-#~ "xarxa privada, com ara a casa, haureu d'escollir les adreces.\n"
-#~ "\n"
-#~ "\n"
-#~ "Escolliu \"Marcatge amb mňdem\" i es configurarŕ la connexió a\n"
-#~ "Internet amb un mňdem. El DrakX intentarŕ trobar el mňdem, perň,\n"
-#~ "si no se'n surt, us caldrŕ seleccionar el port sčrie al qual estŕ\n"
-#~ "connectat."
-
-#~ 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"
-#~ "\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"
-#~ "\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."
-#~ msgstr ""
-#~ "El GNU/Linux pot treballar amb molts tipus d'impressores. Per a cada\n"
-#~ "un d'aquests tipus, perň, cal una configuració diferent. Tingueu\n"
-#~ "en compte, perň, que l'spooler utilitza 'lp' com a nom d'impressora\n"
-#~ "per defecte, de manera que heu de tenir una impressora amb aquest nom.\n"
-#~ "No obstant aixň, podeu donar diferents noms a una impressora, separant-\n"
-#~ "los amb el carŕcter '|'. D'aquesta manera, si voleu donar-li un nom més\n"
-#~ "aclaridor només us caldrŕ indicar-lo en primer lloc, p.ex. \"La meva\n"
-#~ "impressora|lp\".\n"
-#~ "La impressora que contingui \"lp\" al(s) nom(s) serŕ la impressora per\n"
-#~ "defecte\n"
-#~ "\n"
-#~ "\n"
-#~ "Si la vostra impressora estŕ connectada directament a l'ordinador,\n"
-#~ "seleccioneu \"Impressora local\". Haureu d'indicar a quin port\n"
-#~ "estŕ connectada i seleccionar-ne el filtre corresponent.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba a un ordinador Unix\n"
-#~ "remot, seleccioneu \"lpd remot\". Per poder-la fer funcionar no\n"
-#~ "cal cap nom d'usuari ni contrasenya, perň us caldrŕ saber el nom\n"
-#~ "de la cua d'impressió del servidor remot.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora SMB (és a dir, una impressora\n"
-#~ "que es troba a un ordinador remot amb Windows 9x/NT), per poder-ho\n"
-#~ "fer haureu d'indicar el seu nom SMB (que no és el seu nom TCP/IP)\n"
-#~ "i possiblement la seva adreça IP, nom d'usuari, grup de treball,\n"
-#~ "contrasenya, i, evidentment, el nom de la impressora. El mateix\n"
-#~ "per a una impressora NetWare, perň en aquest cas no us caldrŕ la\n"
-#~ "informació del grup de treball."
-
-#~ 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 ""
-#~ "És molt recomanable que respongueu \"Sí\" aquí. Si més endavant\n"
-#~ "instalˇleu Microsoft Windows, sobreescriurŕ el sector d'arrencada.\n"
-#~ "Tret que hagueu fet el disc d'arrencada com es\n"
-#~ "recomana, ja no podreu tornar a arrencar el GNU/Linux."
-
-#~ msgid "Move your wheel!"
-#~ msgstr "Moveu la bola!"
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Voleu descartar els canvis?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "De quin tipus és el vostre ratolí?"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "Resolucions automŕtiques"
-
-#~ 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 ""
-#~ "Per saber quines resolucions estan disponibles, en provaré algunes.\n"
-#~ "La pantalla parpellejarŕ...\n"
-#~ "Ho podeu desactivar si voleu; sentireu un avís sonor quan estigui llest"
-
-#~ 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?"
-#~ msgstr ""
-#~ "Puc mirar de trobar les resolucions disponibles (p.ex. 800x600).\n"
-#~ "De vegades, perň, aixň pot penjar l'ordinador.\n"
-#~ "Us hi voleu arriscar?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "No s'han trobat modes vŕlids\n"
-#~ "Intenteu-ho amb una altra targeta de vídeo o monitor"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Recerca automŕtica de resolucions"
-
-#~ msgid "dhcpd"
-#~ msgstr "dhcpd"
-
-#~ msgid "pump"
-#~ msgstr "pump"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "dhcp-client"
-#~ msgstr "dhcp-client"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB Mouse"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB Mouse (2 botons)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB Mouse (3 o més botons)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB Mouse"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB Mouse (2 botons)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB Mouse (3 o més botons)"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI Bus Mouse"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft Bus Mouse"
-
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech Bus Mouse"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB Mouse (3 o més botons)"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A o superior (sčrie)"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (sčrie)"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (sčrie)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (sčrie)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Generic Mouse (sčrie)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Compatible Microsoft (sčrie)"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Ratolí Generic de 3 botons (sčrie)"
-
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Ratolí Kensington Thinking (sčrie)"
-
-#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to "
-#~ "internet."
-#~ msgstr ""
-#~ "Necessito configurar el vostre adaptador de xarxa por poder connectar a "
-#~ "Internet."
-
-#~ msgid "nfs mount failed"
-#~ msgstr "ha fallat el muntatge de l'nfs"
-
-#~ msgid "Socket"
-#~ msgstr "Sňcol"
-
-#~ 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 ""
-#~ "El DrakX generarŕ els fitxers de configuració tant per a l'XFree 3.3 com "
-#~ "per a l'Xfree 4.0.\n"
-#~ "Per defecte, s'utilitza el servidor 4.0, tret que no funcioni per a la "
-#~ "vostra targeta.\n"
-#~ "\n"
-#~ "Voleu conservar l'Xfree 3.3?"
-
-#~ msgid "tie"
-#~ msgstr "llaç"
-
-#~ msgid "brunette"
-#~ msgstr "morena"
-
-#~ msgid "girl"
-#~ msgstr "noia"
-
-#~ msgid "woman-blond"
-#~ msgstr "dona-rossa"
-
-#~ msgid "automagic"
-#~ msgstr "automagic"
-
-#~ msgid "Cryptographic"
-#~ msgstr "Criptogrŕfic"
-
-#~ msgid "Take over the hard drive"
-#~ msgstr "Encarrega't del disc dur"
-
-#~ msgid "Do not set up networking"
-#~ msgstr "No configuris la xarxa"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Voleu configurar la xarxa local per al vostre sistema?"
-
-#~ msgid "Have you been provided with a hostname?"
-#~ msgstr "Us han donat un nom d'ordinador central?"
-
-#~ msgid "Show less"
-#~ msgstr "Mostra'n menys"
-
-#~ msgid "Show more"
-#~ msgstr "Mostra'n més"
-
-#~ msgid "URI for Local printer"
-#~ msgstr "URI per a la impressora local"
-
-#~ msgid "URI for Network printer"
-#~ msgstr "URI per a la impressora de xarxa"
-
-#~ msgid "Local Printer Device (URI)"
-#~ msgstr "Dispositiu de la impressora local (URI)"
-
-#~ msgid ""
-#~ "What URI device is your printer connected to\n"
-#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
-#~ msgstr ""
-#~ "A quin dispositiu URI estŕ connectada la vostra impressora?\n"
-#~ "(tingueu en compte que parallel:/dev/lp0 equival a LPT1:)"
-
-#~ msgid "Network Printer Options (URI)"
-#~ msgstr "Opcions de la impressora de xarxa (URI)"
-
-#~ msgid ""
-#~ "Choose the right Device URI for a network printer or a local file. "
-#~ "Examples:\n"
-#~ " file:/path/to/filename.prn\n"
-#~ " http://hostname:631/ipp/port1\n"
-#~ " ipp://hostname/ipp/port1\n"
-#~ " lpq://hostname/queue\n"
-#~ " socket://hostname\n"
-#~ " socket://hostname:9100"
-#~ msgstr ""
-#~ "Seleccioneu l'URI de dispositiu correcte per a una impressora de xarxa o "
-#~ "un fitxer local. Exemples:\n"
-#~ " file:/camí/al/nomdefitxer.prn\n"
-#~ " http://ordinadorcentral:631/ipp/port1\n"
-#~ " ipp://ordinadorcentral/ipp/port1\n"
-#~ " lpq://ordinadorcentral/cua\n"
-#~ " socket://ordinadorcentral\n"
-#~ " socket://ordinadorcentral:9100"
-
-#~ msgid "Local Area Network specification"
-#~ msgstr "Especificació de la xarxa d'ŕrea local"
-
-#~ msgid "You may now decide which class C network to use.\n"
-#~ msgstr "Ara podeu decidir quina xarxa de classe C voleu utilitzar.\n"
-
-#~ msgid "Internet Connection Sharing - setup of %s"
-#~ msgstr "Connexió a Internet compartida: configuració de %s"
-
-#~ msgid ""
-#~ "The following interface is about to be configured:\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Ara es configurarŕ la interfície següent:\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-
-#~ msgid "Everything configured!"
-#~ msgstr "S'ha configurat tot!"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Quina és la disposició del vostre teclat?"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Voleu que intenti trobar targetes PCMCIA?"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Voleu que intenti trobar els dispositius %s?"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr ""
-#~ "Voleu configurar el marcatge amb xarxa per mňdem per al vostre sistema?"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Voleu que intenti trobar dispositius PCI?"
-
-#~ msgid "Searching root partition."
-#~ msgstr "S'estŕ cercant la partició arrel."
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr ""
-#~ "%s: Aquesta partició no és arrel; si us plau, seleccioneu-ne una altra."
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Si us plau, seleccioneu una partició per utilitzar-la com a arrel."
-
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "No teniu cap partició de Windows!"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "No teniu prou espai per al Lnx4win"
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# 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 ""
-#~ "Benvingut al LILO, la utilitat que us permet triar el sistema operatiu!\n"
-#~ "\n"
-#~ "Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
-#~ "\n"
-#~ "Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
-#~ "segons\n"
-#~ "fins a l'arrencada predeterminada.\n"
-
-# 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 ""
-#~ "Benvingut al SILO, la utilitat que us permet triar el sistema operatiu!\n"
-#~ "\n"
-#~ "Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
-#~ "\n"
-#~ "Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
-#~ "segons\n"
-#~ "fins a l'arrencada predeterminada.\n"
-
-#~ msgid "SILO main options"
-#~ msgstr "Opcions principals del SILO"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Aquestes són les entrades següents del SILO.\n"
-#~ "Podeu afegir-ne algunes més o canviar-ne les existents."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Aquesta etiqueta ja estŕ en ús"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "Ha fallat la instalˇlació del SILO. S'ha produďt l'error següent:"
-
-#~ 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 ""
-#~ "En primer lloc, el DrakX intentarŕ trobar un o més adaptadors SCSI\n"
-#~ "PCI. Si en troba, i sap quin(s) programa(es) de control utilitzar,\n"
-#~ "l'inserirŕ o els inserirŕ automŕticament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si el vostre adaptador SCSI és una targeta ISA, o si és PCI perň\n"
-#~ "el DrakX no sap amb quin programa de control ha d'utilitzar-la, o\n"
-#~ "si no teniu cap adaptador SCSI, se us preguntarŕ si en teniu un o\n"
-#~ "no. Si no en teniu cap, respongueu \"No\". Si en teniu un o més,\n"
-#~ "respongueu \"Sí\". Apareixerŕ una llista de programes de control,\n"
-#~ "de la qual n'haureu de triar un.\n"
-#~ "\n"
-#~ "\n"
-#~ "Un cop hagueu triat el programa de control, el DrakX us preguntarŕ\n"
-#~ "si voleu establir-ne les opcions. Primer, perň, deixeu que el\n"
-#~ "programa de control explori el maquinari: normalment funciona bé.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no, no oblideu la informació sobre el vostre maquinari que\n"
-#~ "pugueu aconseguir a la documentació o al Windows (si el teniu al\n"
-#~ "sistema), com aconsella la guia d'instalˇlació. Aquestes són les\n"
-#~ "opcions que haureu de proporcionar al programa de control."
-
-#~ msgid "Shutting down"
-#~ msgstr "S'estŕ tancant l'ordinador"
-
-#~ 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."
-#~ msgstr ""
-#~ "S'han trobat alguns tipus de lletra \"true type\" del Windows a "
-#~ "l'ordinador.\n"
-#~ "Voleu utilitzar-les? Assegureu-vos que esteu autoritzat a utilitzar-les "
-#~ "sota Linux."
-
-#~ msgid "useless"
-#~ msgstr "inútil"
-
-#~ 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 ""
-#~ "Escolliu \"Instalˇla\" si no hi ha instalˇlada cap versió anterior de "
-#~ "Linux,\n"
-#~ "o si voleu utilitzar diverses distribucions o versions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Escolliu \"Actualització\" si voleu actualitzar una versió anterior de\n"
-#~ "Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen) 6.0 (Venus),\n"
-#~ "6.1 (Helios), Gold 2000 o 7.0 (Air)."
-
-#~ msgid ""
-#~ "(a user ``mandrake'' with password ``mandrake'' has been automatically "
-#~ "added)"
-#~ msgstr ""
-#~ "(s'ha afegit automŕticament un usuari ``mandrake'' amb contrasenya "
-#~ "``mandrake'')"
-
-#~ msgid "Do you want to use LILO?"
-#~ msgstr "Voleu utilitzar el LILO?"
-
-#~ 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 ""
-#~ "Ara podeu seleccionar els paquets que voleu instalˇlar.\n"
-#~ "\n"
-#~ "\n"
-#~ "En primer lloc, podeu seleccionar el grup del paquet a instalˇlar\n"
-#~ "o actualitzar. Després, podeu seleccionar més paquets segons la\n"
-#~ "mida total que voleu seleccionar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si treballeu amb el mode expert, podeu seleccionar els paquets\n"
-#~ "individualment.\n"
-#~ "Tingueu en compte, perň, que alguns paquets necessiten que altres\n"
-#~ "també estiguin instalˇlats.\n"
-#~ "Aixň s'anomena 'dependčncia de paquets'. Els paquets que\n"
-#~ "seleccioneu, i els que aquests necessitin, es seleccionaran\n"
-#~ "automŕticament per a la instalˇlació. No és possible instalˇlar un\n"
-#~ "paquet sense instalˇlar-ne tots els dependents."
-
-#~ 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 ""
-#~ "El LILO (el carregador de Linux) pot arrencar el Linux i altres sistemes\n"
-#~ "operatius, que normalment es detecten correctament durant la "
-#~ "instalˇlació.\n"
-#~ "Si veieu que el vostre no s'ha detectat, ara podeu afegir-ne un o més.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no voleu que tothom pugui accedir a algun d'ells, podeu\n"
-#~ "eliminar-lo ara (caldrŕ un disc d'arrencada per arrencar-lo)."
-
-#~ 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 ""
-#~ "Ara que ja heu seleccionat els grups desitjats, seleccioneu \n"
-#~ "quants paquets voleu, ordenant-los des de la instalˇlació mínima \n"
-#~ "fins a la instalˇlació completa de cadascun dels grups seleccionats."
-
-#~ 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"
-#~ msgstr ""
-#~ "Us calen %dMB per a una instalació completa dels grups que heu "
-#~ "seleccionat.\n"
-#~ "Podeu continuar igualment, perň tingueu en compte que no tindreu tots els "
-#~ "paquets"
-
-#~ msgid "Choose other CD to install"
-#~ msgstr "Escolliu un altre CD per instalˇlar"
-
-#~ 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 ""
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Recomanada: Si mai no heu instalˇlat el Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Personalitzada: Si esteu familiaritzat amb el Linux, podreu\n"
-#~ "triar l'ús del sistema instalˇlat entre Normal, Desenvolupament o\n"
-#~ "Servidor. Trieu \"Normal\" per a una instalˇlació per a un ús\n"
-#~ "general del vostre ordinador, \"Desenvolupament\" si utilitzareu\n"
-#~ "l'ordinador principalment per a desenvolupament de programari,\n"
-#~ "o \"Servidor\" si voleu instalˇlar un servidor convencional (per\n"
-#~ "a correu, impressions...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Per a experts: Si domineu el GNU/Linux i voleu realitzar una\n"
-#~ "instalˇlació totalment personalitzada, aquest és el vostre\n"
-#~ "tipus d'instalˇlació. Podreu seleccionar l'ús del vostre sistema\n"
-#~ "com a \"Personalitzada\"."
-
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "S'estan descarregant els paquets criptogrŕfics"
-
-#~ msgid "Setup SCSI"
-#~ msgstr "Configura el SCSI"
-
-#~ msgid "Installation CD Nr %s"
-#~ msgstr "CD d'instalˇlació Nr %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 ""
-#~ "Actualitzeu la imatge de la instalˇlació!\n"
-#~ "\n"
-#~ "Consulteu a l'administrador del sistema o torneu a arrencar per "
-#~ "actualitzar\n"
-#~ "la imatge de la instalˇlació per incloure la imatge en CD-ROM etiquetada "
-#~ "com\n"
-#~ "\"%s\". Premeu D'acord si la imatge s'ha actualitzat o premeu Cancelˇla "
-#~ "per\n"
-#~ "no fer la instalˇlació des d'aquesta imatge en Cd-ROM."
-
-#~ msgid "Which language do you want?"
-#~ msgstr "Quin idioma voleu?"
-
-#~ msgid "Hurt me plenty"
-#~ msgstr "Fes-me molt de mal"
-
-#~ msgid "What usage do you want?"
-#~ msgstr "Quina utilització voleu?"
-
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Instalˇlació o actualització"
-
-#~ msgid "Enter a floppy (all data will be lost)"
-#~ msgstr ""
-#~ "Inseriu un disquet a la unitat\n"
-#~ "(Se'n perdran totes les dades)"
-
-#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr "Ara s'instalˇlaran %d MB. Podeu triar instalˇlar més programes"
-
-#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
-#~ msgstr "S'han escollit massa paquets: %dMB no cap a %dMB"
-
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "Fitxer d'inici rŕpid %s incorrecte (ha fallat %s)"
-
-#~ msgid "Size: %s MB"
-#~ msgstr "Mida: %s MB"
-
-#~ msgid "US Keyboard"
-#~ msgstr "Teclat EU"
-
-#~ msgid "resizing"
-#~ msgstr "s'estŕ canviant la mida"
-
-#~ msgid "changing type of"
-#~ msgstr "s'estŕ canviant el tipus de"
-
-#~ msgid "After %s partition %s,"
-#~ msgstr "Després de %s partició %s,"
-
-#~ msgid "linear"
-#~ msgstr "lineal"
-
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "Lineal (necessari per a algunes unitats SCSI)"
-
-#~ msgid "beginner"
-#~ msgstr "principiant"
-
-#~ msgid "developer"
-#~ msgstr "desenvolupador"
-
-#~ msgid "Password:"
-#~ msgstr "Contrasenya:"
-
-#~ msgid "User name:"
-#~ msgstr "Nom d'usuari:"
-
-#~ msgid ""
-#~ "Failed to create an HTP boot floppy.\n"
-#~ "You may have to restart installation and give ``%s'' at the prompt"
-#~ msgstr ""
-#~ "No s'ha pogut crear un disquet d'arrencada HTP.\n"
-#~ "Potser us caldrŕ reiniciar la instalˇlació i introduir \"%s\" a "
-#~ "l'indicador"
-
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "Cal reiniciar la instalˇlació amb els nous parŕmetres"
-
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "Cal reiniciar la instalˇlació arrencant des del disquet"
-
-#~ msgid ""
-#~ "Enter a floppy to create an HTP enabled boot\n"
-#~ "(all data on floppy will be lost)"
-#~ msgstr ""
-#~ "Introduďu un disquet per una arrencada habilitada per a HTP\n"
-#~ "(es perdran totes les dades del disquet)"
-
-#~ msgid ""
-#~ "Linux does not yet fully support ultra dma 66.\n"
-#~ "As a work-around i can make a custom floppy giving access the hard drive "
-#~ "on ide2 and ide3"
-#~ msgstr ""
-#~ "El Linux encara no suporta completament l'ultra dma 66.\n"
-#~ "Com a alternativa, puc fer un disquet personalitzat que doni accés a tot "
-#~ "el disc dur a ide2 i ide3"
-
-#~ msgid "A entry %s already exists"
-#~ msgstr "Ja existeix una entrada %s"
-
-#~ msgid "Installation CD Nr 1"
-#~ msgstr "CD d'instalˇlació Nr 1"
-
-#~ msgid "Local LAN"
-#~ msgstr "LAN local"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
deleted file mode 100644
index 3b88dd7d4..000000000
--- a/perl-install/share/po/cs.po
+++ /dev/null
@@ -1,12241 +0,0 @@
-# Czech messages for DrakX.
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (C) 1999 MandrakeSoft
-# Vladimír Marek <vlmarek@volny.cz>, 2000
-# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-13 14:25GMT+0100\n"
-"Last-Translator: Radek Vybíral <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.9.5\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigurovat všechny monitory nezávisle"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Použít rozšíření Xinerama"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurovat pouze kartu \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Konfigurace dvou monitorů"
-
-#: ../../Xconfigurator.pm_.c:250
-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:261
-msgid "Graphic card"
-msgstr "Grafická karta"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Zvolte typ vaší grafické karty"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Zvolte X server"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Zvolte ovladač pro X server"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Ovladač pro X"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Které XFree by jste chtěli použít?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Vaše karta podporuje 3D akceleraci, ale pouze s XFree %s.\n"
-"Pokud použijete XFree %s, můžete na druhou stranu dosáhnout lepších výsledků "
-"ve 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, 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:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s s hardwarovou 3D akcelerací"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"S XFree %s může vaše karta využít 3D hardwarové akcelerace.\n"
-" TOTO JE POUZE EXPERIMENTÁLNÍ VERZE, A MŮŽE VÉST K NESTABILITĚ SYSTÉMU."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s s EXPERIMENTÁLNÍ 3D hardwarovou akcelerací"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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"
-"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:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (instalační ovladač pro obrazovku)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Nastavení XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Kolik paměti je na vaší grafické kartě ?"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Zvolte možnosti pro daný X server"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Zvolte typ svého monitoru"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Dva rozhodující parametry jsou: vertikální synchronizační frekvence, což je\n"
-"frekvence, kterou je obnovována celá obrazovka, a frekvence řádkové\n"
-" synchronizace (horiz. sync. rate), což je frekvence jakou jsou zobrazovány\n"
-"jednotlivé mikrořádky (scanline).\n"
-"\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 "
-"jistí\n"
-"zvolte raději typ s nižšími schopnostmi."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Horizontální(řádková) synchronizace"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Vertikální(obrazovková) synchronizace"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor není nastaven"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafická karta ještě není nastavena"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Ještě nejsou zvolena rozlišení"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Chcete si vyzkoušet nastavení?"
-
-#: ../../Xconfigurator.pm_.c:650
-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:653
-msgid "Test of the configuration"
-msgstr "Vyzkoušet nastavení"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"zkuste změnit některé parametry"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Vyskytla se tato chyba:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Test skončí automaticky za %d sekund"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Je to správné nastavení?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Vyskytla se chyba, zkuste změnit některé parametry"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Rozlišení"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Vyberte si rozlišení a barevnou hloubku"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Grafická karta: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Více"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Expertní režim"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ukázat vše"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rozlišení"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Rozložení klávesnice: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Typ myši: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Přípojení myši: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Horizontální frekvence monitoru: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Vertikální frekvence monitoru: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Grafická karta: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikace grafické karty: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Paměť na gr. kartě: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Barevná hloubka: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Rozlišení: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 server: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 ovladač: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Připravuji nastavení X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Co chcete dělat?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Změnit monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Změnit grafickou kartu"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Změnit parametry X Serveru"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Změnit rozlišení"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Zobrazit informace"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Znovu vyzkoušet nastavení X"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Konec"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zachovat změny?\n"
-"Aktuální konfigurace je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "Spouští se X"
-
-#: ../../Xconfigurator.pm_.c:1604
-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"
-"Chcete aby počítač po zapnutí spustil grafický režim?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, 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:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Prosím odhlaste se a pak stiskněte Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 barev (8 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisíc barev (15 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisíc barev (16 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliónů barev (24 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardy barev (32 bitů)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB nebo více"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Klasické VGA, 640x480 při 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 při 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-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:132
-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:133
-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:134
-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:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Vysokofrekvenční SVGA, 1027x768 při 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multifrekvenční který umí 1280x1024 při 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multifrekvenční, který umí 1280x1024 při 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multifrekvenční, který umí 1280x1024 při 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor, který umí 1600x1200 při 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor, který umí 1600x1200 při 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "První sektor zaváděcího diskového oddílu"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "První sektor disku (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Instalace SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Kam chcete nainstalovat zaváděcí program?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Instalace LILO/Grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO s textovou nabídkou"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO s grafickou nabídkou"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Spuštění s DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Základní nastavení zaváděcího programu"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Zaváděcí program"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Instalace zaváděcího programu"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Startovací zařízení"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (nefunguje se starým BIOSem)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Kompaktní"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "kompaktní"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Textový režim"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Prodleva před automatickým spuštěním"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Heslo"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Heslo (podruhé)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Omezení nastavení z příkazové řádky"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "omezení"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Vyčistit /tmp při každém startu"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Pokud je třeba, upřesněte velikost paměti (nalezeno %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Povolit více profilů"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Zadejte velikost paměti v MB"
-
-#: ../../any.pm_.c:191
-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:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Zkuste to znovu, prosím"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Hesla nejsou shodná"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Úvodní zpráva"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Prodleva pro firmware"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Prodleva při spuštění"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Povolit spuštění z CD?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Povolit zavaděč OF?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Výchozí OS?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"Rozhodli jste se nainstalovat zavaděč systému na oddíl.\n"
-"To znamená, že již zavaděč na disku, ze kterého spouštíte systém nějaký je "
-"(např. System Commander).\n"
-"\n"
-"Ze kterého disku spouštíte systém?"
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Tady jsou všechny záznamy.\n"
-"Můžete přidat další nebo změnit stávající."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Přidat"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Hotovo"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Změnit"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Jaký typ záznamu chcete přidat?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Jiný systém (SunOs...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Jiný systém (MacOs...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Jiný systém (Windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Obraz(image)"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Kořenový(root)"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Připojit"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Pro čtení i zápis"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabulka"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Nejistý"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Značka"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Výchozí"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd-velikost"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "Bez Videa"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Odstranit záznam"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Prázdná značka není povolena"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Musíte zadat soubor s jádrem"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Musíte zadat kořenový oddíl"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Tato značka se již používá"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Našel jsem %s %s rozhraní"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Máte ještě nějaké jiné?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Máte nějaké %s rozhraní?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Ne"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Ano"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-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:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instaluji ovladač pro %s kartu %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Který %s ovladač mám zkusit?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"V některých případech potřebuje ovladač %s pro svoji správnou funkci další\n"
-"informace, přestože normálně funguje i bez nich. Chtěli byste zadat\n"
-"nějaké doplňující možnosti, nebo raději necháte ovladač samostatně "
-"prozkoumat\n"
-"hardware vašeho počítače, aby získal informace které potřebuje? Zkoumání\n"
-"hardware může ve vyjímečných případech způsobit zamrznutí počítače, ale "
-"nemělo\n"
-"by v žádném případě způsobit jiné škody."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Automatické prozkoumání"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Zadejte možnosti"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Nyní lze zadat volby pro příslušný modul %s.\n"
-"Pozn.: každá adresa by měla být ve tvaru 0x např. '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Nyní můžete poskytnout modulu %s další parametry.\n"
-"Volby se zadávají ve tvaru ''jméno=hodnota jméno2=hodnota2 ...''.\n"
-"Například, ''io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Volby modulu:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Spuštění modulu %s selhalo.\n"
-"Chcete to zkusit s jinými parametry?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "přístup k programům v X prostředí"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "přístup k rpm nástrojům"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "povolit \"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "přístup k administrativním souborům"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(už byl přidán %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Toto heslo je příliš jednoduché"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Prosím zadejte uživatelské jméno"
-
-#: ../../any.pm_.c:776
-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:777
-msgid "This user name is already added"
-msgstr "Toto uživatelské jméno už bylo přidáno"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Přidat uživatele"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Zadejte uživatele\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Vytvořit uživatele"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Skutečné jméno"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Uživatelské jméno"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikona"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Automatické přihlášení"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Můžu nastavit váš počítač tak, aby automaticky přihlásil vybraného "
-"uživatele.\n"
-"Chcete použít tuto možnost?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Zvolte standardního uživatele :"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Vyberte si, který správce oken má být spouštěn:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Prosím zvolte si jazyk, který chcete používat."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Můžete si zvolit další jazyky, které budou dostupné po instalaci"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Všechno"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Povolit všem uživatelům"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Vlastní"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Nesdílet"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Balíček %s musí být nainstalován. Chcete ho nainstalovat?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Nyní lze provést export přes NFS nebo Samba protokol. Který chcete"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Chybí potřebný balíček %s"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-"Chcete povolit uživatelům, aby si mohli sdílet adresáře ve svém domovském "
-"adresáři?\n"
-"Pokud to povolíte, uživatelům stačí pouze kliknout na \"Sdílet\" v "
-"aplikacích konqueror a nautilus.\n"
-"\n"
-"Lze také provést \"Vlastní\" povolení pro jednotlivé uživatele.\n"
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Zrušit"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "Spustit userdrake"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"Sdílení mezi uživateli používá skupinu \"fileshare\". \n"
-"Uživatele lze do této skupiny přidat pomocí nástroje userdrake."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Dveře dokořán"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Slabá"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standardní"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Vysoká"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "Vyšší"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoidní"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Tato úroveň musí být použita s rozmyslem. Sice můžete snadněji používat "
-"svůj\n"
-"systém, ale na druhou stranu je velmi citlivý: Nesmí být použit pro\n"
-"počítač připojený k Internetu. Pro přihlášení není zapotřebí žádné heslo."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Hesla jsou nyní aktivní, ale stále nedoporučuji použít tento počítač na síti."
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Toto je standardní úroveň zabezpečení pro počítač, který je používán jako "
-"klient pro připojení k internetu."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Existují zde některá omezení a každou noc jsou spuštěny automatické testy."
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"S touto bezpečnostní úrovní je možné používat počítač jako server.\n"
-"Bezpečnost je nyní dostatečná pro server s připojením mnoha klientů.\n"
-"Poznámka: pokud je počítač používán pouze jako klient pro připojení k "
-"Internetu, je lepší zvolit nižší úroveň."
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Tato úroveň má vlastnosti předchozí úrovně, ale systém je úplně uzavřen.\n"
-"Zabezpečení je nastaveno na maximum."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Zvolte si úroveň zabezpečení"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Úroveň zabezpečení"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Použít libsafe pro servery"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Knihovna, které zabraňuje útokům proti přetečení bufferu nebo proti špatnému "
-"formátování řetězců."
-
-# 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)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Vita Vas %s, program pro start operacniho systemu!\n"
-"\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
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Vita Vas GRUB, program pro vyber operacniho systemu"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Pro vyber polozek pouzijte klavesy %c a %c."
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Stisknete ENTER pro start vybraného OS, 'e' pro upravu"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "spoustecich parametru, nebo 'c' pro prikazovou radku."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, 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:944
-msgid "not enough room in /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
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Pracovní plocha"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Nabídka Start"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Zaváděcí program nelze nainstalovat na oddíl %s\n"
-
-#: ../../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 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "_Soubor"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Soubor/_Konec"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>K"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Novější zatříděný monitor "
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Novější monitor"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Tradiční monitor"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Tradiční Gtk+ monitor"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Spustit Auroru při startu"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Režim Lilo/Grub"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Režim Yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Jako správce spouštění nyní používáte %s.\n"
-"Pokud chcete spustit průvodce nastavením, klikněte na Konfigurovat."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Konfigurovat"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Systémový režim"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Spustit X-Window při startu"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Ne, nechci automatické přihlášení"
-
-#: ../../bootlook.pm_.c:150
-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:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "nelze otevřít /etc/inittab pro čtení: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minut(y)"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minuta"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekund"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Nelze provést sejmutí obrazovky před rozdělením disků"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Sejmuté obrazovvky budou dostupné po instalaci v adresáři %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Francie"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "Belgie"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Česká republika"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Německo"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Řecko"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Norsko"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Švédsko"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Nizozemí"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Itálie"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Rakousko"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Spojené státy americké"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Zálohujte si nejdřív svá data, prosím"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Čtěte pozorně!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Jestliže chcete používat aboot, musíte nechat volné místo na začátku disku\n"
-"(2048 sektorů stačí)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Chyba"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Průvodce"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Co uděláte ?"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Máte jeden veliký oddíl FAT\n"
-"(většinou používaný Microsoft Dos/Windows).\n"
-"Doporučuji vám nejprve zmenšit tento oddíl\n"
-"(klepněte na něj a potom na\n"
-"\"Změnit velikost\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Prosím klepněte na oddíl"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detaily"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Žurnálovací FS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOs"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Odkládací (swap)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Prázdný"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Další"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Souborové systémy:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Vytvořit"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Změnit typ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Místo toho použijte ``%s''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Smazat"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Nejprve použijte ``Odpojit''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, 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/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Vyberte oddíl"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Vyberte jiný oddíl"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Konec"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Přepnout se do módu 'expert'"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Přepnout se do módu 'normální'"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Zpět"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Přesto chcete pokračovat?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Konec bez uložení"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Chcete skončit bez zapsání do tabulky oddílů?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Chcete uložit modifikaci souboru /etc/fstab?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Automaticky rozmístit"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Vše smazat"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Informace o hardisku"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Všechny primární oddíly (partitions) jsou používány"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Nemůžu přidat žádný další oddíl"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Abyste mohli mít více oddílů, musíte smazat jeden existující a na jeho "
-"místě\n"
-"vytvořit rozšířený(extended) oddíl"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Uložit tabulku oddílů"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Obnovit tabulku oddílů"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Záchrana tabulky oddílů"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Znovu načíst tabulku oddílů"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Automatické připojování pro vyjímatelná média"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Zvolit soubor"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Záložní tabulka oddílů nemá stejnou velikost\n"
-"Chcete přesto chcete pokračovat?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Varování"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Vložte disketu do mechaniky\n"
-"Všechna data na této disketě budou smazána"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Pokouším se obnovit tabulku oddílů"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Podrobné informace"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Přípojný bod"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Volby"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Změnit velikost"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Přesunout"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formátovat"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Připojit"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Přidat do RAIDu"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Přidat do LVMu"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Odpojit"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Odebrat z RAIDu"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Odebrat z LVMu"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Změnit RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Použít loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Vytvořit nový oddíl"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Počáteční sektor: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Velikost v MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Souborový systém: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Adresář připojení (mount point): "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Nastavení: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Odstranit soubor loopbacku?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Změnit typ oddílu"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Který souborový systém chcete použít?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Přepínám z ext2 na ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Kam chcete připojit loopback %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Kam chcete připojit zařízení %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Nemůžu smazat přípojný bod, protože tento oddíl je používán pro loopback.\n"
-"Odstraňte nejprve loopback"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Počítám hranice souborového systému fat"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Měním velikost"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Na tomto diskovém oddílu nelze měnit velikost"
-
-#: ../../diskdrake/interactive.pm_.c:614
-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/interactive.pm_.c:616
-#, 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/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Zvolte novou velikost"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Nová velikost v MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Na který disk chcete oddíl přesunout?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Na který sektor chcete oddíl přesunout?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Přesouvám"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Přesouvám oddíl..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Zvolte existující RAID pro přidání"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "nový"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Zvolte existující LVM pro přidání"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "Jméno pro LVM?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Tento oddíl nemůže být použit pro loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Název souboru loopbacku:"
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Zadejte jméno souboru"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Soubor už je používán jiným loopbackem, zvolte si jiný"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Soubor už existuje. Mám ho použít?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Volby pro připojení"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Další"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "zařízení"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "úroveň"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "Velikost bloku(chunk)"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Buďte opatrní: tato akce je nebezpečná."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Jaký typ diskového oddílu?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Promiňte, nemůžu povolit vytvoření /boot tak daleko na disku (na cylindru > "
-"1024).\n"
-"Buďto použijete LILO a nebude to fungovat, nebo nepoužijete LILO a tedy "
-"nepotřebujete /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Oddíl který jste zvolili jako kořenový (root - /) je na disku fyzicky za "
-"cylindrem 1024,\n"
-"a přitom nemáte /boot oddíl. Jestliže chcete použít správce bootu (boot "
-"manager),\n"
-"přidejte ještě /boot oddíl"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Zvolili jste softwarovou RAID oddíl jako kořenový oddíl (/).\n"
-"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/interactive.pm_.c:954
-#, 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/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Aby se změny uplatnily budete muset restartovat počítač"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, 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/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formátuji"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formátuji soubor loopbacku %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formátuji oddíl %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Schovat soubory"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Přesunout soubory na nový diskový oddíl"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"Adresář %s již obsahuje nějaká data\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Přesunuji soubory na nový diskový oddíl"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Kopíruji %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Odstraňuji %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "oddíl %s je nyní rozpoznán jako %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Zařízení: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Písmeno v DOSu: %s (jenom odhad)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Typ: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Jméno: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Začátek: sektor %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Velikost: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektorů"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Od cylindru %d do cylindru %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Naformátovaný\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Nenaformátovaný\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Připojený\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Loopback soubor(y): \n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Standardní startovací oddíl\n"
-" (Pro MS-DOS, ne pro LILO)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Úroveň %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Velikost bloku(chunk) %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID disky %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Loopback soubor: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-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/interactive.pm_.c:1076
-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/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Velikost: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometrie: %s cylindrů, %s hlav, %s sektorů\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Informace: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM disky %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Typ tabulky oddílů: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "na sběrnici %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Volby: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Klíč pro kryptovaný souborový systém"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Vyberte si kryptovací klíč pro souborový systém"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Tento klíč je příliš jednoduchý (musí být alespoň %d znaků dlouhý)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "Kryptovací klíče se neshodují"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Kryptovací klíč"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Kryptovací klíč (znovu)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Změnit typ"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Prosím klepněte na zdroj"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Vyhledat servery"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formátování %s skončilo chybou"
-
-#: ../../fs.pm_.c:548
-#, 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:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "připojení oddílu %s v adresáři %s selhalo"
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "selhal běh fsck s návratovým kódem %d nebo signálem %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "chyba odpojování %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "jednoduchý"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "s /usr"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "server"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Nemůžete použít JFS pro oddíl menší než 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Nemůžete použít ReiserFS pro oddíl menší než 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Přípojné body (mount points) musí začínat '/'"
-
-#: ../../fsedit.pm_.c:478
-#, 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:482
-#, 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:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Tento adresář musí kromě kořenového souborového systému zůstat"
-
-#: ../../fsedit.pm_.c:486
-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:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Nelze použít kryptovaný souborový systém na připojený bod %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Není dostatek místa pro automatické rozdělení disku"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Nic nedělat"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Chyba při otevírání %s pro zápis: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"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:720
-msgid "You don't have any partitions!"
-msgstr "Nemáte žádné oddíly!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux je víceuživatelský systém, což znamená, že každý uživatel může "
-"mít\n"
-"své vlastní nastavení, soubory atd. Více se dočtete v \"Příručce uživatele"
-"\".\n"
-"Na rozdíl od uživatele root, který se správcem počítače, uživatelé, kteří "
-"jsou\n"
-"zde vytvořeni, nemají oprávnění měnit nic kromě svých souborů a nastavení.\n"
-"Doporučuje se vytvořit účet pro minimálně jednoho regulérního uživatele.\n"
-"Tento účet se používá na všechny běžné úkoly. Ačkoliv je velmi praktické\n"
-"přihlašovat se každý den jako uživatel Root, je to také velmi nebezpečné!\n"
-"Jedna malá chyba může způsobit to, že celý operační systém nebude funkční.\n"
-"Pokud uděláte chybu jako normální uživatel, můžete přijít o soubory, ale "
-"nepoškodí\n"
-"se celý systém.\n"
-"\n"
-"Jako první zadejte reálné jméno. Není to povinné, takže můžete zadat co "
-"chcete\n"
-"a drakX použije první slovo jako uživatelské jméno, pod kterým se bude "
-"uživatel\n"
-"hlásit do systému. Je možné ho následně změnit. Dále se zadává heslo pro\n"
-"uživatele. Volba hesla pro normální uživatele sice není tak kritická jako\n"
-"pro správce, ale i tak se doporučuje nepodceňovat bezpečnost.\n"
-"\n"
-"Pokud kliknete na \"Přidat uživatele\", můžete tak přidávat uživatelů kolik\n"
-"potřebujete, např. své přátelé, účet pro otce či sestru. Pokud máte všechny\n"
-"uživatele vytvořeny, klikněte na \"Hotovo\". \n"
-"\n"
-"Kliknutím na tlačítko \"Rozšířené\" můžete pro nový účet změnit shell, "
-"který\n"
-"uživatel bude používat (výchozí je bash)."
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Každý oddíl vypsaný níže má: \"Jméno\", \"Velikost\".\n"
-"\n"
-"\"Jméno\" je složeno následovně: \"typ pevného disku\", \"číslo disku\",\n"
-"\"číslo oddílu\". (například \"hda1\").\n"
-"\n"
-"Pokud máte IDE disky, pak je \"typ pevného disku\" \"hd\", pokud máte SCSI,\n"
-"označení bude \"sd\".\n"
-"\n"
-"\"Číslo disku\" je vždy písmeno za \"hd\" nebo \"sd\". Pro IDE disky je "
-"takto:\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"
-"Pro SCSI disky platí, že \"a\" je \"nejmenší SCSI ID\", \"b\" je \"druhé\n"
-"nejmenší SCSI ID\" atd."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"Distribuce Mandrake Linux je složena z několika CD. Instalační program ví,\n"
-"na kterém disku je umístěn jaký soubor a v případě potřeby vysune CD a "
-"vyžádá\n"
-"si výměnu CD za jiné."
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"V této chvíli je možné si vybrat, které programy chcete nainstalovat.\n"
-"Mandrake Linux obsahuje téměř tisíc balíčků s programy a určitě nebudete\n"
-"potřebovat všechny.\n"
-"\n"
-"Pokud instalujete z CDROM, budete nejprve dotázáni na to, jaká CD máte\n"
-"(pouze Expertní režim). Označte ty CD, která máte a která chcete použít \n"
-"pro instalaci. Po výběru klikněte na \"OK\".\n"
-"\n"
-"Balíčky jsou rozděleny do skupin, které odpovídají tomu, jak je nejčastěji\n"
-"počítač používán. Skupiny jsou umístěny do čtyřech sekcí:\n"
-"\n"
-" * \"Pracovní stanice\": pokud plánujete používat počítač převážně na\n"
-"běžnou práci, vyberte si z dalších skupin odpovídající balíčky.\n"
-"\n"
-" * \"Vývoj\": pokud budete na počítači programovat, můžete si z této\n"
-"sekce vybrat další skupiny.\n"
-"\n"
-" * \"Server\": pokud bude počítač provozován jako server, máte možnost\n"
-"vybrat si ty nejběžnější služby, které chcete nainstalovat.\n"
-"\n"
-" * \"Grafická prostředí\": pokud preferujete grafické prostředí, zde je\n"
-"nabídka několika prostředí, ze které si musíte vybrat nejméně jedno,\n"
-"aby bylo možné grafické prostředí nainstalovat.\n"
-"\n"
-"Pokud přejedete myší nad skupinou, objeví se krátký text, který vysvětluje,\n"
-"co je obsahem dané skupiny. Pokud nevyberete při instalaci žádnou skupinu,\n"
-"zobrazí se otázka na instalaci několika typů minimální instalace:\n"
-"\n"
-" * \"Podpora X\" Provede instalaci minimální podpory pro prostředí X-"
-"Window.\n"
-"\n"
-" * \"Se základní dokumentací\" Nainstaluje systém se základními programy a "
-"jejich dokumentací. Tento typ je vhodný pro instalaci serveru.\n"
-"\n"
-" * \"Minimální instalace\" Nainstaluje se opravdu nezbytné minimum aby bylo "
-"možné provozovat Linux z příkazové řádky. Instalace zabere asi 65MB.\n"
-"\n"
-"Pokud zatrhnete volbu \"Vlastní výběr balíčků\", zobrazí se seznam všech\n"
-"balíčků, které je možno nainstalovat. Je to dobré v tom případě, že chcete\n"
-"mít kontrolu nad tím, co se bude instalovat.\n"
-"\n"
-"Pokud jste spustili instalaci v režimu \"Aktualizace\", můžete zrušit výběr\n"
-"daných skupin, čímž zabráníte instalaci nových balíčků. To je užitečné\n"
-"pro případ opravy existujícího systému."
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"V závislosti na tom, zda jste zvolili individuální výbět balíčků, nabídne\n"
-"se stromová struktura, obsahující všechny balíčky organizované do skupin.\n"
-"Při procházení stromu můžete vybrat jednotlivé balíčky nebo celé skupiny.\n"
-"\n"
-"Pokud vyberete balíček nebo skupinu, v pravé části se objeví popis.\n"
-"Pokud máte výběr hotový, klikněte na tlačítko \"Instalovat\", které spustí\n"
-"instalační proces. Doba trvání instalace závisí počtu balíčků a na "
-"rychlosti\n"
-"vašeho počítače. Zbývající čas je zobrazován na obrazovce, takže máte\n"
-"odhad na to, zda si stihnete dát šálek kávy. :-)\n"
-"\n"
-"Pokud mezi vybranými balíčky jsou serverové programy, zobrazí se dotaz na "
-"to,\n"
-"zda opravdu chcete tyto servery nainstalovat. V distribuci Mandrake Linux\n"
-"jsou tyto servery spuštěny při startu systému. I když v době vydání "
-"distribuce\n"
-"nejsou známy žádné bezpečnostní problémy, mohou se vyskytnout později.\n"
-"Pokud nevíte, k čemu jsou určeny některé serverové služby, klikněte na \"Ne"
-"\".\n"
-"Kliknutím na \"Ano\" se dané služby nainstalují a spustí při startu!\n"
-"\n"
-"Volba \"Automatické závislosti\" odstraňuje varovné hlášení, které se "
-"objeví\n"
-"vždy, když vyberete balíček, který má další závislosti a instalační program\n"
-"tak musí vybrat další potřebné balíčky.\n"
-"\n"
-"Malá ikonka diskety umožňuje nahrát již předtím vybraný seznam balíčků.\n"
-"Klikněte na ikonu a vložte disketu s uloženým výběrem. V posledním kroku\n"
-"bude návod, jak si tuto disketu vytvořit."
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"V tomto kroku se provede nastavení připojení k internetu/síti. Pokud chcete\n"
-"připojit svůj počítač k místní síti nebo k internetu, klepněte na \"OK\"\n"
-"a spustí se automatická detekce síťové karty nebo modemu. Pokud tato\n"
-"detekce selže, odznačte při dalším pokusu \"Použít automatickou detekci"
-"\"Pokud nechcete nyní nastavit síť nebo to chcete provést později, "
-"jednoduše\n"
-"klepněte na tlačítko \"Zrušit\".\n"
-"Způsoby připojení jsou: tradiční modem, ISDN modem, ADSL spojení, kabelový\n"
-"modem a konečně klasické připojení do LAN sítě (Ethernet).\n"
-"\n"
-"Ujistěte se, že máte všechny dostupné informace pro připojení od svého\n"
-"poskytovatele připojení nebo od správce sítě. \n"
-"\n"
-"Více informací naleznete v příslušné kapitole v manuálu, nebo můžete systém\n"
-"nainstalovat a použít programy na konfiguraci připojení později.\n"
-"\n"
-"Pokud nemáte žádné připojení k internetu ani k místní síti, klepněte na\n"
-"\"Zrušit\"."
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Nyní si zvolte, které služby mají být spuštěny při startu počítače.\n"
-"\n"
-"Je zde seznam všech služeb, které jsou aktuálně nainstalovány.\n"
-"Prohlédněte si seznam pozorně a zrušte ty, které nepotřebujete spouštět při\n"
-"startu počítače.\n"
-"\n"
-"Pokud přejedete myší nad některou položkou, objeví se malá nápověda\n"
-"s popisem, co daná služba dělá. Pokud přesně nevíte, zda je služba užitečná\n"
-"nebo ne, je lepší ji nechat ve výchozím stavu.\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čí nežádoucího proniknutí do počítače.\n"
-"Takže povolte opravdu jen ty služby, které nezbytně potřebujete."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"GNU/Linux spravuje čas podle GMT (Greenwich Mean Time) a převádí ho na\n"
-"čas podle příslušné vybrané časové zóny. Toto je možné zrušit odznačením\n"
-"volby \"Hodiny nastaveny na GMT\" a tak budou systémové hodiny stejné jako\n"
-"hardwarové. To je dobré v tom případě, že na počítači je jiný operační "
-"systém\n"
-"typu Windows.\n"
-"\n"
-"Volba \"Automatická synchronizace času\" provádí automatické nastavení "
-"hodin\n"
-"připojením se k časovému serveru na internetu. Vyberte si v seznamu ten "
-"server,\n"
-"který je vám nejblíž. Je zamořejmé, že pro správnou funkci musíte mít "
-"fukční\n"
-"připojení k internetu. Na počítač se také nainstaluje časový server, který\n"
-"mohou používat jiné počítače ve vaší lokální síti."
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X Window System (zkráceně X) je srdcem grafického rozhraní GNU/Linuxu,\n"
-"na kterém jsou provozovány grafická prostředí (KDE,Gnome,AfterStep, "
-"WindowMaker)\n"
-"V této sekci se DrakX pokusí nakonfigurovat X automaticky.\n"
-"\n"
-"Existují případy, kdy se automatická detekce nezdaří. Je to v případech, že\n"
-"je daný hardware velmi starý (nebo velmi nový). Pokud se detekce podaří,\n"
-"spustí se grafické prostředí v nejlepším možném rozlišení v závislosti na "
-"monitoru. Proběhne test, kdy se zobrazí okno s otázkou, zda je vše správně\n"
-"zobrazeno.\n"
-"\n"
-"Pokud provádíte \"Expertní\" instalaci, spustí se průvodce konfigurací X "
-"Window. Více informací o průvodci naleznete v odpovídající sekci v manuálu.\n"
-"\n"
-"Pokud při testu nastavení uvidíte zprávu dobře, odpovězte \"Yes\" a "
-"instalace\n"
-"pokračuje dalším krokem.\n"
-"Pokud nic neuvidíte, test automaticky skončí za 10 vteřin a obnoví se\n"
-"obrazovka."
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Může se stát, že při prvním testu nebude zvoleno nejoptimálnější rozlišení\n"
-"(obrazovka je příliš malá, je posunuta doprava či doleva...) V této chvíli "
-"se\n"
-"instalační program dotáže, jaké rozlišení si přejete a nabídne seznam\n"
-"použitelných rozlišení.\n"
-"\n"
-"Pokud se nepodaří X Window korektně spustit, vyberte se z nabídky \"Změnit"
-"\"\n"
-"grafickou kartu, vyberte \"Neznámá karta\" a při otázce na výběr serveru "
-"odpovězte\n"
-"\"FBDev\". Tato volba dovoluje při potížích spustit X Window na všech\n"
-"moderních grafických kartách. Potom \"Znova otestovat\" pro ověření."
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Poslední otázka je na to, zda chcete spustit grafické prostředí při startu.\n"
-"Tato otázka se zobrazí i v případě, že nastavení předtím neotestujete.\n"
-"Je zřejmé, že odpovíte \"Ne\" v případě, že počítač bude pracovat\n"
-"jako server nebo v případě, že se nepodařilo správně nastavit grafickou "
-"kartu."
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"CDROM s distribucí Mandrake Linux má zabudovaný záchranný režim. Můžete ho\n"
-"spustit přímo při spuštění z CD, kdy stisknete klávesu >>F1<< a na "
-"příkazový\n"
-"řádek napíšete >>rescue<<. Pokud počítač neumožňuje bootovat z CD, potom\n"
-"v tomto kroku najdete řešení na následující situace:\n"
-"\n"
-" * pokud používáte zaváděcí program, DrakX přepíše zaváděcí sektor (MBR) na\n"
-"pevném disku (pokud nepoužíváte jiný zaváděcí program) aby umožnil start "
-"buď\n"
-"Windows nebo GNU/Linuxu (pokud máte Windows na počítači nainstalovány).\n"
-"Pokud potřebujete Windows přeinstalovat, instalační program Microsoftu "
-"přepíše\n"
-"zaváděcí sektor a nemáte tak možnost spustit GNU/Linux!\n"
-"\n"
-" * pokud se objeví problémy a není možné spustit GNU/Linux z pevného disku,\n"
-"je disketa jedinou možností, jak systém spustit. Obsahuje základní "
-"systémové\n"
-"nástroje na obnovení systému buď pří výpadku napájení, chybě v hesle nebo\n"
-"z jiných důvodů.\n"
-"\n"
-"Pokud zvolíte tento krok, musíte vložit disketu do mechaniky. Disketa musí\n"
-"být prázdná, nebo na ní mohou být data, která již nepotřebujete. Následně "
-"se\n"
-"provede formát diskety a DrakX celý její obsah přepíše."
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"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 Mandrake Linux. 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"
-"systému Mandrake Linux.\n"
-"\n"
-"Protože rozdělení 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"
-"Pokud máte zvolený Expertní režim, spustil se nástroj na práci s diskem: "
-"Diskdrake, který umožňuje lépe nastavit diskové oddíly. Pokud chcete použít\n"
-"průvodce, klikněte na tlačítko \"Průvodce\".\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"
-"Pokud nejsou definovány žádné diskové oddíly, je nutné je vytvořit.\n"
-"K tomu slouží průvodce, který nabídne několik řešení:\n"
-"\n"
-" * \"Použít volný prostor\": takto se jednoduše automaticky disk(y) rozdělí\n"
-"a již se o nic nemusíte starat.\n"
-"\n"
-" * \"Použít existující oddíly\": průvodce detekoval jeden nebo více "
-"existujících\n"
-"Linuxových oddílů a ty nabídne pro instalaci.\n"
-"\n"
-" * \"Použít volné místo na oddíle s Windows\": pokud máte na disku "
-"nainstalovány\n"
-"Microsoft Windows a zabírají celý disk, je možné tento prostor zmenšit \n"
-"a použít ho pro instalaci. Změna velikost oddílu je provedena bez ztráty "
-"dat.\n"
-"Tento postup je doporučený, pokud chcete na disku provozovat jak systém\n"
-"Linux Mandrake tak i Microsoft Windows.\n"
-"\n"
-" Před touto volbou si uvědomte, že velikost oddílu s Microsoft Windows\n"
-"bude menší než je nyní. To znamená, že budete mít méně místa pro \n"
-"instalaci programů do Microsoft Windows.\n"
-"\n"
-" * \"Zrušit celý disk\": pokud chcete smazat veškerá data a všechny oddíly\n"
-"na disku a použít je pro instalaci systému Mandrake Linux, vyberte toto\n"
-"řešení. Zde postupujte opatrně, po výběru již není možné vzít volbu zpět.\n"
-"\n"
-" !! Pokud zvolíte tuto možnost, všechna data na disku budou ztracena.!!\n"
-"\n"
-" * \"Odstranit Windows\": takto se jednoduše smaže celý disk a bude se "
-"instalovat\n"
-"na celý disk- Všechna data tak budou ztracena.\n"
-"\n"
-" !! Pokud vyberete tuto volbu, veškerá data budou ztracena. !!\n"
-"\n"
-" * \"Expertní režim\": pokud chcete disk rozdělit ručně. Před touto volbou "
-"buďte\n"
-"opatrní, je sice mocná, ale nebezpečná.\n"
-"Nedoporučuje se těm, kteří přesně nevědí, co dělají."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"Nyní je instalace ukončena a operační systém GNU/Linux je připraven k "
-"použití.\n"
-"Klikněte na \"OK\" a systém bude restartován. Potom můžete spustit GNU/Linux "
-"nebo\n"
-"Windows, záleží který preferujete\n"
-"\n"
-"Tlačítko \"Rozšířené\" zobrazí další dvě tlačítka:\n"
-"\n"
-" * Generovat disketu pro automatickou instalaci: vytvoří disketu, se kterou\n"
-"lze celou instalaci opakovat bez zásahu operátora se stejnými volbami,\n"
-"které byly zvoleny při instalaci.\n"
-"\n"
-" Po kliknutí na toto tlačítko se zobrazí další dvě volby:\n"
-"\n"
-" * : Zopakovat: je to částečně automatická instalace, kdy se potvrzuje "
-"krok\n"
-"při rozdělování disků (a pouze tento krok).\n"
-"\n"
-" * : Automaticky: plně automatická instalace, data na pevném disku budou\n"
-"zrušena a disk přepsán.\n"
-"\n"
-" Tato volba je velmi užitečná, když potřebujete nainstalovat větší počet\n"
-"stejných počítačů. Více o této možnosti je na našich WWW stránkách.\n"
-"\n"
-" * Uložit výběr balíčků(*): uloží výběr balíčků, který byl zvolen při "
-"instalaci.\n"
-"Pokud budete instalovat další počítač, vložte disketu do mechaniky a "
-"spusťte\n"
-"instalaci, stiskněte [F1] a napište na příkazový řádek >linux defcfg=\"floppy"
-"\"<.\n"
-"\n"
-"(*) Potřebujete disketu formátovanou FAT (Pod Linuxem ji vytvoříte příkazem\n"
-"\"mformat a:\")"
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-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"
-"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"
-"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"
-"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"
-"Pokud je vše připraveno pro formátování, klikněte na \"OK\".\n"
-"\n"
-"Klikněte na \"Zrušit\" pokud chcete vybrat jiné oddíly pro instalaci\n"
-"systému Mandrake Linux.\n"
-"\n"
-"Kliknutím na \"Rozšířené\" můžete vybrat, které oddílz budou otestovány\n"
-"na vadné bloky."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Nyní začne nová instalace operačního systému Mandrake Linux.\n"
-"Tato operace může trvat několik desítek minut (záleží na množství balíčků,\n"
-"které jste si vybrali pro instalaci a rychlosti vašeho počítače).\n"
-"\n"
-"Mějte prosím trpělivost a vyčkejte."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-"Pokaždé, když instalujete Mandrake Linux, je možné, že některé balíčky byly\n"
-"od vydání distribuce aktualizovány. Mohly to být opravy chyb či řešení "
-"možných\n"
-"bezpečnostních problémů. Pokud chcete využít právě této nabídky, je možné\n"
-"je nyní stáhnout z internetu. Zvolte \"Ano\" pokud máte funkční připojení "
-"na\n"
-"internet nebo \"Ne\" pokud budete instalovat aktualizace později.\n"
-"\n"
-"Po zvolení \"Ano\" se zobrazí seznam míst, odkud mohou být aktualizace "
-"získány.\n"
-"Vyberte si nejbližší místo. Následně se objeví stromový seznam balíčků, "
-"který\n"
-"je možno ještě upravit a stisknutím tlačítka \"Instalovat\" se provede "
-"stažení\n"
-"a instalace vybraných balíčků. Akci můžete přerušit klepnutím na \"Zrušit\"."
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Předtím, než budete pokračovat, přečtěte si pozorně podmínky licence. Ty\n"
-"se vztahují k celé distribuci Mandrake Linux a pokud s nimi nesouhlasíte,\n"
-"klikněte na tlačítko \"Odmítnout\". Instalace ihned skončí. Pokud chcete "
-"pokračovat\n"
-"v instalaci, klikněte na tlačítko \"Potvrdit\"."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"Nyní si vyberte úroveň zabezpečení vašeho počítače Je zřejmé, že čím více "
-"je\n"
-"počítač využíván a čím cennější data obsahuje, tím je potřeba zvolit vyšší\n"
-"úroveň. Na druhou stranu, vyšší úroveň znesnadňuje některé obvyklé postupy.\n"
-"Více informací o úrovních bezpečnosti se dočtete v kapitole MSEC v "
-"referenční\n"
-"příručce. \n"
-"Pokud nevíte co vybrat, ponechte výchozí nastavení."
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"V této chvíli je potřebné určit, který(é) oddíl(y) budou použity pro "
-"instalaci\n"
-"systému Mandrake Linux. Pokud byly oddíly již jednou definovány, buď\n"
-"z předchozí instalace GNU/Linux nebo jiným programem na rozdělení disku,\n"
-"je možné použít právě tyto oddíly. Jinak musí být oddíly nově definovány.\n"
-"\n"
-"Pro vytvoření oddílu musíte nejdříve vybrat pevný disk. Klikněte na \n"
-"\"hda\", což je první IDE disk, nebo na \"hdb\", což je druhý disk,\n"
-"případně na \"sda\", což je první SCSI disk.\n"
-"\n"
-"Pro rozdělení vybraného disku můžete použít tyto volby:\n"
-"\n"
-" * \"Vše smazat\": tato volba smaže všechny oddíly na disku.\n"
-"\n"
-" * \"Automaticky rozmístit\": dojde k automatickému vytvoření oddílu pro\n"
-"Ext2 a swap ve volném prostoru disku.\n"
-"\n"
-" * \"Více\": nabídne další možnosti:\n"
-"\n"
-" * \"Uložit tabulku na disketu\": uloží tabulku oddílů na disketu. To je\n"
-"vhodné pro případ poškození tabulky, kdy ji lze z této zálohy obnovit.\n"
-"Doporučujeme využít tuto možnost.\n"
-"\n"
-" * \"Obnovit z diskety\": obnoví tabulku oddílů, která byla již dříve\n"
-"uložena na disketu.\n"
-"\n"
-" * \"Záchrana tabulky oddílů\": pokud je tabulka poškozena, můžete se\n"
-"pokusit ji opravit. Buďte ale opatrní a pamatujte na to, že se to nemusí "
-"vždy\n"
-"podařit.\n"
-"\n"
-" * \"Znovu načíst\": zruší všechny změny a nahraje původní tabulku oddílů.\n"
-"\n"
-" \"připojovat vyjímatelná média\": odznačením této volby způsobí, že při\n"
-"připojování a odpojování vyjímatelných médií jako jsou CD-ROM disky a "
-"floppy\n"
-"disky je nutné použít ručně příkaz mount.\n"
-"\n"
-" * \"Průvodce\": pokud nemáte dobré znalosti o rozdělování disků, použijte\n"
-"tuto volbu, kdy se spustí průvodce.\n"
-"\n"
-" * \"Odvolat\": zruší všechny provedené změny.\n"
-"\n"
-" * \"Přepnout normální/expertní režim\": dovoluje další akce s oddíly\n"
-"(typ oddílu, volby, formátování) a zobrazí další informace.\n"
-" * \"Hotovo\": pokud máte disk rozdělen, uloží se změny na disk.\n"
-"\n"
-"Poznámka: každou volbu je možné zadat také z klávesnice. Mezi oddíly se\n"
-"můžete pohybovat pomocí kláves [Tab] a [Šipka nahoru/šipka dolů].\n"
-"\n"
-"Pokud je vybrán oddíl, lze použít tyto volby:\n"
-"\n"
-" * Ctrl-c pro vytvoření nového oddílu (pokud je vybrán prázdný oddíl);\n"
-"\n"
-" * Ctrl-d pro smazání oddílu;\n"
-"\n"
-" * Ctrl-m pro zadání bodu připojení.\n"
-"\n"
-"Více informací o jednotlivých druzích souborových systémů naleznete\n"
-"v kapitole o ext2fs v \"Referenční příručce\".\n"
-"\n"
-"Pokud instalujete na počítač PPC, je potřeba vytvořit malý oddíl HPFS,\n"
-"tzv. \"bootstrap\" o minimální velikosti 1MB, který bude použit pro zavaděč\n"
-"yaboot. Pokud vytvoříte tento oddíl větší, např. 50 MB, je to dobré místo "
-"pro\n"
-"uložení ramdisku a jádra pro situace záchrany disku."
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Instalační program nalezl na disku více než jeden oddíl s Microsoft "
-"Windows.\n"
-"Prosím vyberte si jeden z nich, který je potřeba zmenšit pro novu instalaci\n"
-"systému Mandrake Linux.\n"
-"\n"
-"Každý oddíl je zobrazen následovně: \"Jméno pro Linux\",\n"
-"\"Jméno pro Windows\", \"Velikost\".\n"
-"\n"
-"\"Jméno pro Linux\" je složeno následovně: \"typ pevného disku\",\n"
-"\"číslo disku\", \"číslo oddílu\". (například \"hda1\").\n"
-"\n"
-"Pokud máte IDE disky, pak je \"typ pevného disku\" \"hd\", pokud máte SCSI,\n"
-"označení bude \"sd\".\n"
-"\n"
-"\"Číslo disku\" je vždy písmeno za \"hd\" nebo \"sd\". Pro IDE disky je "
-"takto:\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"
-"Pro SCSI disky platí, že \"a\" je \"nejmenší SCSI ID\", \"b\" je \"druhé\n"
-"nejmenší SCSI ID\" atd.\n"
-"\n"
-"\"Jméno pro Windows\" je písmeno, které je použito ve Windows\n"
-"(první oddíl nebo disk má písmeno \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Buďte trpěliví. Tato operace může trvat několik minut."
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Nyní se instalační program zeptá na to, zda chcete provést (\"Doporučenou"
-"\")\n"
-"nebo (\"Expertní\") instalaci, která dovoluje větší kontrolu.\n"
-"Také si zde můžete vybrat, zda chcete provést novou instalaci nebo "
-"aktualizaci\n"
-"již existující verze systému Mandrake Linux.:\n"
-"\n"
-" * \"Instalovat\" Kompletně přemaže starou verzi. V závislosti na tom, co "
-"je\n"
-"na daném systému nainstalováno zůstanou jiné oddíly nezměněny.\n"
-"\n"
-" * \"Aktualizovat\" Provede aktualizaci instalovaného systému Mandrake "
-"Linux.\n"
-"Rozdělení disku i veškerá data uživatelů zůstanou zachována. Jinak se "
-"provede\n"
-"téměř čistá instalace.\n"
-"\n"
-" * \"Aktualizovat pouze balíčky\" Provede aktualizaci balíčků z předchozí\n"
-"verze bez dalších změn. Je také možné nainstalovat nové balíčky.\n"
-"\n"
-"Aktualizace je bezproblémová od verze Mandrake Linux 8.1\n"
-"\n"
-"V závislosti na vašich znalostech GNU/Linuxu si můžete vybrat z "
-"následujících\n"
-"úrovní instalace operačního systému Mandrake Linux:\n"
-"\n"
-"* 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"
-"* 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"
-"přesně upravit celou instalaci. Odpovědi na otázky budou velmi těžké pro\n"
-"ty, kteří nemají velmi dobré znalosti GNU/Linuxu.\n"
-"Nevolte tuto volbu, pokud přesně nevíte, co děláte."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Normálně instalační program zvolí správnou klávesnici na základě zvoleného\n"
-"jazyka, takže není potřeba nic v tomto kroku měnit. \n"
-"Může se ale stát, že nemáte klávesnici, která odpovídá vašemu jazyku: "
-"například\n"
-"pokud jste anglicky hovořící Švýcar, stejně chcete mít švýcarskou "
-"klávesnici.\n"
-"Nebo pokud mluvíte anglicky ale žijete v Quebecu, je to stejný případ. V "
-"obou\n"
-"případech se můžete na tento instalační krok a vybrat si odpovídající\n"
-"klávesnici ze seznamu.\n"
-"\n"
-"Pokud máte klávesnici pro jiný jazyk, klikněte na tlačítko \"Více\"\n"
-"a zobrazí se kompletní seznam všech podporovaných rozložení klávesnic."
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Vyberte si prosím vámi preferovaný jazyk, který se bude používat při "
-"instalaci\n"
-"a v celém systému.\n"
-"\n"
-"Tlačítko \"Rozšířené\" umožňuje zvolit další jazyky, které budou také "
-"nainstalovány\n"
-"a můžete je použít v systému. Pokud například na počítači pracují občas "
-"lidé\n"
-"ze Španělska, vyberte angličtinu jako hlavní jazyk a pod tlačítkem "
-"rozšířené\n"
-"zatrhněte volbu \"Španělština\".\n"
-"\n"
-"Pokud máte jazyk vybrán, klikněte na \"OK\" a instalace bude pokračovat\n"
-"dalším krokem."
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"DrakX zjistil, že máte dvou tlačítkovou myš a nastaví emulaci pro třetí "
-"tlačítko.\n"
-"Taky umí rozpoznat, zda je myš PS/2, USB nebo sériová.\n"
-"\n"
-"Pokud chcete zadat jiný typ myši, vyberte odpovídající typ se seznamu.\n"
-"\n"
-"Pokud vyberete jinou myš než ta, která byla detekována, zobrazí se "
-"testovací\n"
-"obrazovka. Zde otestujte jak tlačítka tak i kolečko, zda je nastavení "
-"správné.\n"
-"Pokud myš nepracuje správně, stiskněte mezerník nebo ENTER na \"Zrušit\"\n"
-"a vyberte jiný typ."
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Vyberte prosím správný port. Například \"COM1\" pod MS Windows se\n"
-"v Linuxu jmenuje \"ttyS0\"."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"Následující rozhodnutí je jedním z těch, které ovlivňují celkovou "
-"bezpečnost\n"
-"systému GNU/Linux, tj. volba hesla pro uživatele \"Root\". Root je "
-"administrátorem\n"
-"systému, je odpovědný za provádění aktualizací, přidávání uživatelů a také\n"
-"za celkovou konfiguraci systému. Zkráceně: root může úplně všechno!\n"
-"To je také důvodem, proč se heslo volí takové, aby se nedalo lehce uhodnout\n"
-"a instalační program zkontroluje, zda není příliš jednoduché. Jak vidíte, "
-"je\n"
-"možné mít účet bez hesla, ale velmi důrazně doporučujeme nějaké heslo "
-"zadat,\n"
-"z jednoho důvodu. Nemyslete si, že pokud spustíte GNU/Linux, že nemůžete\n"
-"udělat už žádnou chybu. Uživatel root může nenávratně poškodit celý systém,\n"
-"vymazat potřebné soubory, atd.\n"
-"\n"
-"Zvolené heslo by se mělo skládat ze znaků a číslic a melo by být minimálně "
-"8\n"
-"znaků dlouhé. Také není dobré si ho kamkoliv poznamenávat.\n"
-"\n"
-"Nevolte heslo příliš dlouhé nebo komplikované, bude nutné si jej pamatovat.\n"
-"\n"
-"Heslo se zadává dvakrát pro ověření toho, zda nedošlo k překlepu při prvním\n"
-"pokusu. Tak je možné heslo opravit a zadat dvakrát stejné.\n"
-"\n"
-"V expertním režimu budete dotázáni na to, zda se má použít autentikační\n"
-"server, jako je NIS nebo LDAP.\n"
-"\n"
-"Pokud se ve vaší síti používá protokol LDAP (nebo NIS) pro ověřování\n"
-"uživatelů, vyberte \"LDAP\" (nebo \"NIS\"). Pokud o tom nic nevíte,\n"
-"zeptejte se administrátora sítě.\n"
-"\n"
-"Pokud není počítač připojen do žádné administrované sítě, zvolte\n"
-"\"Lokální soubory\" pro autentikaci."
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"LILO a grub jsou zavaděče systému. Tato část je normálně plně automatická.\n"
-"DrakX analyzuje boot sektor a zachová se podle toho, co nalezne:\n"
-"\n"
-" * pokud nalezne boot sektor Windows, přepíše ho sektorem pro LILO/grub aby\n"
-"bylo možné spouštět jak Windows tak i Linux;\n"
-"\n"
-" * pokud nalezne boot sektor pro LILO nebo grub, tak jej přepíše.\n"
-"\n"
-"Pokud jsou nějaké pochybnosti, je zobrazen dialog s výběrem možností.\n"
-"\n"
-" * \"Jaký spouštěč použít:\" je možné si vybrat:\n"
-"\n"
-" * \"GRUB\": pokud preferujete textovou verzi zavaděče Grub.\n"
-"\n"
-" * \"LILO s grafickou nabídkou\": pokud preferujete LILO s grafickým\n"
-"rozhraním.\n"
-"\n"
-" * \"LILO s textovou nabídkou\": pokud preferujete textové rozhraní.\n"
-"\n"
-" * \"Spouštěcí zařízení\": ve většině případů není nutné měnit výchozí\n"
-"nastavení (\"/dev/hda\"), ale lze nainstalovat zavaděč na druhý disk\n"
-"(\"/dev/hdb\") nebo dokonce na disketu (\"/dev/fd0\").\n"
-"\n"
-" * \"Prodleva přes spuštěním\": pokud zapnete počítač, je tímto časem\n"
-"umožněno uživateli vybrat si jiný systém z nabídky než bude zaveden výchozí\n"
-"systém.\n"
-"\n"
-"!! Vyvarujte se pokusů o to nenainstalovat zavaděč (vybráním volby \"Zrušit"
-"\"),\n"
-"protože by měl existovat způsob, jak spustit Mandrake Linux!\n"
-"Také si dobře rozmyslete, jaké změny zde provádíte !!\n"
-"\n"
-"Kliknutím na tlačítko \"Rozšířené\" se dialog rozšíří o další možnosti,\n"
-"vyhrazené pro znalé uživatele.\n"
-"\n"
-"Mandrake Linux nainstaluje svůj vlastní zavaděč, který dovoluje spouštět\n"
-"vlastní systém stejně jako další operační systémy.\n"
-"\n"
-"Pokud máte jiný operační systém již na počítači, automaticky ho zařadí do\n"
-"nabídky pro spouštění. Zde je možné dále doladit volby, které se předávají "
-"tím,\n"
-"že na danou nabídkou dvakrát poklepete, lze také přidat další nabídku\n"
-"či danou nabídku odebrat. K dalšímu kroku se dostanete kliknutím na \"Hotovo"
-"\"."
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (the LInux LOader) a grub jsou zavaděče systému, které mohou spustit\n"
-"buď GNU/Linux nebo jiný operační systém nainstalovaný na počítači.\n"
-"Ve většině případů jsou tyto systému správně detekovány. Pokud se tak\n"
-"nestane, máte možnost je ručně přidat v této obrazovce. Věnujte opatrnost\n"
-"parametrům, které zadáváte.\n"
-"\n"
-"Pokud nechcete umožnit přístup k těmto operačním systémům komukoliv, můžete\n"
-"je z nabídky odstranit. Ale v tom případě musíte mít spouštěcí disketu, ze\n"
-"které je možné tento operační systém spustit!"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Zde se musíte rozhodnout, kam umístit informace potřebné pro spuštění "
-"systému\n"
-"GNU/Linux.\n"
-"\n"
-"Pokud přesně nevíte co zadat, ponechte \"První sektor na disku (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-"Zde si můžete vybrat tiskový systém, který budete používat. Jiné OS "
-"nabízejí\n"
-"jeden, Mandrake nabízí tři.\n"
-"\n"
-" * \"pdq\" - což znamená 'print, don't queue' a je vhodný tehdy, pokud "
-"nemáte\n"
-"žádné síťové tiskárny. Zvládá pouze několik možností a tisk na něj ze sítě\n"
-"je velmi pomalý. Tuto volbu lze po instalaci změnit spuštěním nástroje "
-"PrinterDrake\n"
-"z řídícího centra Mandrake, pokud kliknete na tlačítko Expert.\n"
-"\n"
-" * \"CUPS\"'Common Unix Printing System' je vynikající v tisku na lokální\n"
-"tiskárny. Je jednoduchý a může fungovat jako klient i server pro klienty z "
-"\"lpd\"\n"
-"systému, takže je s nimi kompatibilní. Je možné nastavit spoustu voleb,\n"
-"ale základní nastavení je velmi jednoduché. Pokud potřebujete emulovat\n"
-"\"lpd\" server, stači spustit démona \"cups-lpd\". Má také grafické "
-"prostředí\n"
-"pro tisk a nastavení tiskárny.\n"
-"\n"
-" * \"lprNG\" - 'line printer daemon New Generation'. Tento systém dokáže to\n"
-"co ostatní, ale umí tisknout na tiskárny připojené k Novell Netware, "
-"protože\n"
-"podporuje IPX protokol a také umí zpracovat přímo tiskové příkazy. Pokud\n"
-"potřebujete tisk na tiskárnách ze sítě Novell nebo tiskový systém bez\n"
-"zvláštní tiskové fronty, vyberte si lprNG.\n"
-"Jinak je preferován CUPS, protože je jednodušší a lépe pracuje v sítích."
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX se nejdříve pokusí najít všechny pevné disky v počítači. Také se "
-"pokusí\n"
-"najít PCI SCSI adaptér(y). Pokud nějaký(é) najde, automaticky nainstaluje\n"
-"správný ovladač.\n"
-"\n"
-"Pokud žádný nanajde, budete dotázáni, zda vůbec máte nějaký SCSI adaptér.\n"
-"Odpovězte \"Ano\" a vyberte si se seznamu adaptérů nebo odpovězte \"Ne\","
-"jestliže žádný adaptér nemáte.\n"
-"Pokud přesně nevíte jaký máte, můžete to zjistit kliknutím na tlačítko\n"
-"\"Zobrazit informace o hardware\".\n"
-"\n"
-"Pokud si vyberete ovladač, DrakX se zeptá, zda pro něj chcete zadat nějaké\n"
-"informace. DrakX se pokusí inicializovat hardware s volbami, které jsou "
-"potřeba.\n"
-"Většinou to funguje dobře.\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 (kapitola 3 "
-"\"Získání\n"
-"informací o hardware\"), kde je popsáno, jak získat tyto informace z "
-"Windows\n"
-"(pokud je máte na počítači), z dokumentace k hardware, nebo z internetové\n"
-"stránky výrobce (pokud máte přístup k internetu."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"Pro yaboot, pro další operační systémy, pro alternativní jádra nebo pro\n"
-"záchranný disk lze zde zadat další parametry.\n"
-"\n"
-"Pro jiné OS je možné zadat pouze název a hlavní oddíl.\n"
-"\n"
-"Pro Linux je několik dalších možností:\n"
-"\n"
-" * Jmenovka: je to jednoduché jméno, které můžete napsat do příkazového\n"
-"řádku pro yaboot pro zvolení daného systému.\n"
-"\n"
-" * Obraz: je to jmého jádra, ze kterého se spustí systém. Typicky je to "
-"vmlinux\n"
-"či obdoba slova vmlinux s příponami.\n"
-"\n"
-" * Root: kořenové zeřízení \"/\" při instalaci Linuxu.\n"
-"\n"
-" * Přidat volby: na počítačích Apple potřebuje jádro další parametry, aby "
-"se\n"
-"správně nastavil hardware pro video, či provedla emulace tlačítek myši\n"
-"na klávesnici, protože myš u počítače Apple nemá druhé a třetí tlačítko.\n"
-"Zde jsou nějaké příklady:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: tato volba je určena moduly, které se musí nahrát do paměti "
-"ještě\n"
-"dříve, než je přístupný spouštěcí oddíl, či v případě opravy systému.\n"
-"\n"
-" * Velikost initrd: výchozí velikost ramdisku je 4,096 bytů. Pokud "
-"potřebujete\n"
-"větší velikost, zadejte sem potřebnou hodnotu.\n"
-"\n"
-" * Read-write: bežně je \"root\" oddíl připojen nejdříve v režimu pouze pro\n"
-"čtení, aby se provedlo otestování systému před tím, než se použije pro běh.\n"
-"Zde je možné toto chování změnit.\n"
-"\n"
-" * Bez grafiky: grafické zařízení na počítačích Apple je někdy "
-"problematické\n"
-"a tak je možné zadat tuto volbu a zvolit nativní podporu.\n"
-"\n"
-" * Výchozí: zvolí tuto položku jako výchozí pro výběr z nabídky, kdy stačí\n"
-"pouze stisknout ENTER a spustí se. Tato položka je označena \"*\" a všechny\n"
-"výběry se zobrazí po stisknutí tlačítka [Tab]."
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot je zavaděč pro počítače MacIntosh. Umožňuje spouštět jak GNU/Linux, "
-"MacOS tak i MacOSX, pokud jsou na počítači nainstalovány. Ve většině\n"
-"případů jsou tyto operační systémy správně detekovány. Pokud nejsou, můžete\n"
-"zde na této obrazovce přidat záznamy ručně. Dejte si ale pozor na správnou\n"
-"volbu parametrů.\n"
-"\n"
-"Yaboot má tyto hlavní volby:\n"
-"\n"
-" * Úvodní hláška: jednoduchá textová zpráva, která je zobrazena před "
-"výzvou.\n"
-"\n"
-" * Spouštěcí zařízení: udává místo, kde jsou informace potřebné pro "
-"spuštění\n"
-"GNU/Linuxu. Obyčejně je to bootstrap oddíl, který byl vytvořen již předtím.\n"
-"\n"
-" * Prodleva pro Firmware: narozdíl od zavaděče LILO jsou zde dvě prodlevy.\n"
-"První prodleva v sekundách umožňuje zvolit mezi spuštěním CD, OF boot,\n"
-"MacOS nebo Linuxu.\n"
-"\n"
-" * Prodleva pro jádro: tato prodleva je podobná prodlevě pro LILO.\n"
-"Udává v násobcích 0,1 vteřiny jak dlouho se čeká, než se zavede \n"
-"výchozí jádro.\n"
-"\n"
-" * Povolit spuštění z CD?: tato volba dovoluje použít \"C\" pro spuštění "
-"CD.\n"
-"\n"
-" * Povolit OF Boot?: tato volba dovoluje použít \"N\" pro spuštění Open "
-"Firm.\n"
-"\n"
-" * Výchozí OS: vyberte výchozí OS, který se spustí po uplynutí prodlevy."
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"Zde jsou shromážděny různé informace, které se vztahují k tomuto počítači.\n"
-"V závislosti na tom, zda je či není přítomen daný hardware, můžete ale\n"
-"nemusíte, vidět tyto položky: \n"
-"\n"
-" * \"Myš\": pokud je zjištěna myš, můžete zde změnit její nastavení.\n"
-"\n"
-" * \"Klávesnice\": kliknutím na tlačítko lze změnit klávesovou mapu.\n"
-"\n"
-" * \"Časové pásmo\": instalační program se pokusí odhadnout časové pásmo na\n"
-"základě vybraného jazyka. To ale nemusí souhlasit, můžete žít v jiné zemi\n"
-"a tak je zde umožněno změnit časovou zónu, ve které se nyní nacházíte.\n"
-"\n"
-" * \"Tiskárna\": Kliknutím na tlačítko \"Bez tiskárny\" se spustí průvodce\n"
-"konfigurací tiskárny.\n"
-"\n"
-" * \"Zvuková karta\": pokud byla při instalaci detekována zvuková karta, je\n"
-"zde zobrazena. Při instalaci není možné nic měnit.\n"
-"\n"
-" * \"TV karta\": pokud byla detekována televizní karta, je zde zobrazena.\n"
-"Při instalaci není možné nic měnit.\n"
-"\n"
-" * \"ISDN karta\": pokud byla detekována ISDN karta, je zde zobrazena.\n"
-"Kliknutím na tlačítko můžete měnit parametry pro tuto kartu."
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Vyberte disk, který chcete smazat pro instalaci Mandrake Linux.\n"
-"Pamatujte na to, že všechna data budou ztracena a nelze jejiž obnovit!"
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"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 smazat všechna data a oddíly na tomto\n"
-"pevném disku. Buďte opatrní, po odkliknutí nelze obnovit žádná dřívější "
-"data\n"
-"ani oddíly a to i pro Windows.\n"
-"\n"
-"Kliknutím na \"Zrušit\" zrušíte tuto operaci bez ztráty dat a oddílů na "
-"disku."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Nelze načíst moduly pro jádro odpovídající instalovanému jádru (chybí "
-"soubor\n"
-"%s), což obecně znamená, že spouštěcí disketa nemá jádro stejné jako má "
-"instalační médium (vytvořte prosím novou spouštěcí disketu)"
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "Musíte také naformátovat %s"
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Nelze použít všesměrové vysílání bez NIS domény"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Vložte naformátovanou disketu do %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Tato disketa není formátována"
-
-#: ../../install_any.pm_.c:809
-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:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Chyba při čtení souboru %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-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 "
-"pracovat.\n"
-"Další informace můžete nalézt na: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-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 '/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Musíte mít odkládací oddíl"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Nemáte odkládací oddíl\n"
-"\n"
-"Chcete přesto pokračovat?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Musíte mít FAT oddíl připojený na /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Použít volné místo"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Není dostatek místa pro vytvoření nového diskového oddílu"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Použít existující oddíl"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Není zde žádný existující oddíl k použití"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Použít Windows oddíl jako loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Který diskový oddíl chcete použít pro Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Zvolte velikosti"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Velikost kořenového oddílu v MB:"
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Velikost odkládacího oddílu v MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Použít volné místo na Windows oddílu"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Na kterém oddílu chcete měnit velikost?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Počítám hranice souborového systému s Windows"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Změnu velikost FAT není možné provést, \n"
-"vyskytla se následující chyba: %s"
-
-#: ../../install_interactive.pm_.c:136
-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\n"
-"program 'defrag'"
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"VAROVÁNÍ!\n"
-"\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"
-"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"
-"stiskněte Ok."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Jakou velikost oddílu chcete nechat pro Windows na"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "diskovém oddílu %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Změna FAT oddílu neuspěla: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Nejsou zde žádné FAT oddíly, které by bylo možné změnit (nebo není dostatek "
-"místa)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Smazat celý disk"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Odstranit Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Máte více než jeden pevný disk, na který chcete instalovat Linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, 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"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Vlastní rozdělení disku"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Použít fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-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áš hardisk %s.\n"
-"Až skončíte, nezapomeňte uložit změny pomocí 'w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Nemáte dostatek volného místa na oddílu s Windows"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Nemůžu najít žádné volné místo pro instalaci"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Průvodce DrakX našel následující řešení:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Vytváření diskových oddílů selhalo: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Startuji síť"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Zastavuji síť"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Stala se chyba, ale nevím, jak jí správně interpretovat.\n"
-"Pokračujte na vlastní riziko."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Zdvojený přípojný bod %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl 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"
-"Zkontrolujete to použitím příkazu \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Vítá vás %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Není dostupná žádná disketová mechanika"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Začínám '%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. 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 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. 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:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Typ instalace"
-
-#: ../../install_steps_gtk.pm_.c:162
-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:228
-#, 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:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Pokud si přejete instalaci na menší prostor než je tento,\n"
-"zvolte si kolik procent balíčků se má nainstalovat.\n"
-"\n"
-"Malý počet procent nainstaluje pouze ty nejdůležitější balíčky, 100%%\n"
-"nainstaluje všechny zvolené."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"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:241
-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:243
-msgid "Percentage of packages to install"
-msgstr "Procent balíčků k instalaci"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Výběr skupiny balíčků"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Výběr jednotlivých balíčků"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Celková velikost: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Špatný balíček"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Jméno: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Verze: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Velikost: %d kB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Důležitost: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-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:422
-msgid "The following packages are going to be installed"
-msgstr "Tyto balíčky budou instalovány"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Tyto balíčky budou odebrány"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Nemůžete vybrat/nevybrat tento balíček"
-
-#: ../../install_steps_gtk.pm_.c:447
-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:449
-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:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Tento balíček musí být obnoven\n"
-"Jste si jisti, že ho nechcete zvolit?"
-
-#: ../../install_steps_gtk.pm_.c:457
-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:462
-msgid "Show automatically selected packages"
-msgstr "Ukázat automaticky vybrané balíčky"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Instalovat"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Uložit/Nahrát na/z disketu/y"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Aktualizuji výběr balíčků"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Minimální instalace"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Vyberte si balíčky, které chcete nainstalovat"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Instaluji"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Odhaduji"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Zbývající čas "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Čekejte prosím, připravuji instalaci"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d balíčků(y)"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Instaluji balíček %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Potvrdit"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Odmítnout"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Vyměňte prosím CD!\n"
-"\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:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Přesto pokračovat?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Stala se chyba při řazení balíčků:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Stala se chyba při instalaci balíčků:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"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šuje vaše práva podle dané licence.\n"
-"I když dané licence dávají nějaká 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 právoplatným\n"
-"vlastníkům podle autorského zákona.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Stala se chyba"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "Chcete opravdu ukončit instalaci?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Souhlas s licencí"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Uvod\n"
-"\n"
-"Operacni system a ruzne casti dostupne v distribuci Mandrake Linux 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 Mandrake Linux.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Klávesnice"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Vyberte si rozložení vaší klávesnice."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Zde je kompletní seznam dostupných klávesnic"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Který typ instalace chcete?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Instalace/Aktualizace"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Je to instalace nebo aktualizace?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Doporučená"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Expertní"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Aktualizovat"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Aktualizovat pouze balíčky"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Vyberte si typ vaší myši."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Připojení myši"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-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š?"
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Emulace tlačítek"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emulace 2 tlačítka"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emulace 3 tlačítka"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Nastavuji PCMCIA karty..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Nastavuji IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "nejsou dostupné žádné diskové oddíly"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Hledám oddíly, které lze připojit"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Zvolte si přípojné(mount) body"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\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"
-"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:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake neuspěl při čtení tabulky oddílů.\n"
-"Pokračujte pouze na vlastní riziko!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Pro bootstrap není potřebné místo o velikosti 1MB! Instalace může pokračovat "
-"ale pro spuštění systému musíte vytvořit bootstrap oddíl pomocí DiskDrake"
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Nebyl nalezen kořenový oddíl pro provedení aktualizace"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Kořenový oddíl"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Který diskový oddíl je kořenový (/) ?"
-
-#: ../../install_steps_interactive.pm_.c:411
-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:435
-msgid "Choose the partitions you want to format"
-msgstr "Zvolte diskové oddíly které chcete naformátovat"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Otestovat na vadné stopy?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formátuji oddíly"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Vytvářím a formátuji soubor %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-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:473
-msgid "Looking for available packages"
-msgstr "Hledám dostupné balíčky"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Vyhledávám balíčky pro aktualizaci"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, 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 aktualizaci (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Kompletní (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimální (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Doporučená (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Vyberte si, zda chcete uložit nebo nahrát výběr balíčků na disketu.\n"
-"Formát výběru je stejný jako formát automaticky generované diskety."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Nahrát z diskety"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Nahrávám z diskety"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Výběr balíčků"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Vložte disketu obsahující výběr balíčků"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Uložit na disketu"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Velikost vybraných balíčků je větší než místo na disku"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Typ instalace"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Nevybrali jste žádnou skupinu balíčků\n"
-"Vyberte si prosím alespoň minimální instalaci"
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "X prostředí"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "Základní dokumentace (doporučeno!)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Opravdu minimální instalace (speciálně bez urpmi)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"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, odznačte je, a zvolte Ok."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM označené \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Připravuji instalaci"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Instaluji balíček %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Nastavení po instalaci"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Vložte prosím spouštěcí disketu do %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Vložte prosím disketu s moduly do %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Nyní si můžete stáhnout šifrovací software.\n"
-"\n"
-"VAROVÁNÍ:\n"
-"\n"
-"Kvůli různým obecným požadavkům a nařízením různých soudních úřadů,\n"
-"vztahujícím se na tento druh software, by se měl zákazník a/nebo koncový\n"
-"uživatel ujistit, zda mu jeho soudní správa umožňuje stáhnout si, uložit\n"
-"a používat tento software.\n"
-"\n"
-"Zákazník a/nebo koncový uživatel by si měl být vědomý toho, že nesmí\n"
-"přestupovat zákony své jurisdikce. Pokud zákazník a/nebo koncový uživatel\n"
-"nebude respektovat ustanovení vztahujících se zákonů, může se vystavit\n"
-"postihu.\n"
-"\n"
-"V každém případě se Mandrakesoft i jeho výrobny a dodavatelé vzdávají\n"
-"jakékoliv zodpovědnosti za přímé i nepřímé škody (včetně ztráty zisků,\n"
-"přerušení podnikání, ztráty obchodních informací, jakožto i jiných "
-"peněžních\n"
-"ztrát a eventuálních postihů, požadavků na odškodnění a žalob) vzniklé\n"
-"vlastnictvím, používáním nebo pouhým stahováním tohoto software, ke kterému\n"
-"může mít zákazník a/nebo nebo koncový uživatel přístup když odsouhlasí\n"
-"tuto dohodu.\n"
-"\n"
-"\n"
-"Pokud máje jakékoliv dotazy vztahující se k této dohodě, kontaktujte prosím\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Nyní máte možnost stáhnout aktualizované balíčky, které byly\n"
-"uvolněny po vydání distribuce.\n"
-"\n"
-"Můžete tak získat bezpečnostní opravy či opravy chyb, ale\n"
-"potřebujete připojení k Internetu.\n"
-"\n"
-"Chcete nainstalovat aktualizace?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Kontaktuji web Mandrake Linux pro získání seznamu dostupných zrcadel"
-
-#: ../../install_steps_interactive.pm_.c:931
-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:940
-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:967
-msgid "Which is your timezone?"
-msgstr "Jaké je vaše časové pásmo?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Hardwarové hodiny nastaveny na GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatická synchronizace času (pomocí NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP Server"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Vzdálený CUPS server"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Bez tiskárny"
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "Máte nějakou zvukovou kartu na ISA sběrnici?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "Pro nastavení zvukové karty spusťte po instalaci \"sndconfig\"."
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Nebyla nalezena zvuková karta. Zkuste spustit po instalaci \"harddrake\"."
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Souhrn"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Myš"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Časová zóna"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Tiskárna"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDN karta"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Zvuková karta"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV karta"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Lokální soubory"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Hlavní(root) heslo"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Bez hesla"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, 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:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Ověření"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Ověření pomocí LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "Základní dn pro LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAP server"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "Ověření pomocí NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS Doména"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS Server"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Pomocí startovací diskety je možné spustit systém Linux bez závislosti na\n"
-"zavaděči systému. To je užitečné třeba v případě, že nechcete instalovat "
-"SILO\n"
-"na počítač, nebo jiný operační systém SILO přepsal nebo SILO nepracuje "
-"správně\n"
-"s hardwarovou konfigurací. Vlastní startovací disketa je také užitečná "
-"tehdy,\n"
-"pokud je potřeba provést opravu systému po předchozím selhání.\n"
-"\n"
-"Pokud chcete vytvořit startovací disketu, vložte disketu do mechaniky\n"
-"a stiskněte \"OK\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "první mechaniky"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "druhé mechaniky"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Přeskočit"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"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?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-"\n"
-"\n"
-"(VAROVÁNÍ! Pro kořenový oddíl používáte XFS, vytvoření \n"
-"spouštěcí diskety bude zřejmě neúspěšné, protože XFS\n"
-"potřebuje velmi velký ovladač)"
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Bohužel není dostupná žádná disketová mechanika"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Zvolte mechaniku, kde chcete vytvořit startovací disketu"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Vložte disketu do %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Vytvářím startovací disketu"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Připravuji zaváděcí program"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Zdá se, že máte nějaký neznámý počítač,\n"
-"na kterém nebude yaboot pracovat.\n"
-"Instalace bude pokračovat, ale budete\n"
-"potřebovat BootX pro spuštění systému."
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Chcete použít aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-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:1253
-msgid "Installing bootloader"
-msgstr "Instaluji zaváděcí program"
-
-#: ../../install_steps_interactive.pm_.c:1259
-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:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"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 %s,\\\\:tbxi\n"
-" Potom zadejte: shut-down\n"
-"Při dalším spuštění už uvidíte prompt."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Vložte prázdnou disketu do %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Vytvářím disketu pro automatickou instalaci"
-
-#: ../../install_steps_interactive.pm_.c:1326
-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:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux 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"
-"\n"
-"Na opravy této instalace systému Mandrake Linux se lze informovat\n"
-"na stránce Errata:\n"
-"\n"
-"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Informace o konfiguraci systému po instalaci jsou dostupné\n"
-"v dané kapitole oficiální uživatelské příručky pro Mandrake Linux."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Vytvořit disketu pro automatickou instalaci"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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:1361
-msgid "Automated"
-msgstr "Automaticky"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Zopakovat"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Uložit výběr jednotlivých balíčků"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux Instalace %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> přepn. mezi prvky | <Space> výběr | <F12> další obraz."
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "chybí kdesu"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "chybí consolehelper"
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Vyberte soubor"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Rozšíření"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Základní"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Prosím počkejte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informace"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Rozbal větev"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sbal větev"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Přepnutí mezi abecedním a skupinovým řazením"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Špatná volba, zkuste to znovu\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Vaše volba? (výchozí %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Položky, které je potřeba vyplnit:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Vaše volba? (0/1, výchozí '%s') "
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Tlačítko '%s': %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "Chcete kliknout na toto tlačítko? "
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Vaše volba? (výchozí '%s'%s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Je zde více voleb, ze kterých je možné si vybrat (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Vyberte si prosím první číslo z výběru, které chcete editovat,\n"
-"nebo stiskněte Enter pro pokračování.\n"
-"Vaše volba? "
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Oznamuji změnu návěští:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Znovu odeslat"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "České (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Německé"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvořák"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Španělské"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Finské"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Francouzské"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norské"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polské"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Ruské"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Švédské"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "UK-Britské"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "US-Americké"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Albánské"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Arménské (staré)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Arménské (psací stroj)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Arménské (foneticky)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Ázerbajdžánské (latinka)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgické"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "Bulharské (foneticky)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "Bulharské (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazilské (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Běloruské"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Švýcarské (Německý styl)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Švýcarské (Francouzský styl)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "České (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Německé (bez mrtvých kláves)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Dánské"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvořák (US) "
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvořák (Norské)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvořák (Švédské) "
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estonské"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Gruzínské (\"Ruské\" rozložení)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Gruzínské (rozložení \"Latin\")"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Řecké"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Maďarské"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Chorvatské"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Izraelské"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Izraelské (foneticky)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Íránské"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandské"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italské"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japonská 106 kláves"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Korejská klávesnice"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latinsko-Americké"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litevské AZERTY (stará)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litevské AZERTY (nová)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litevské \"číselná řada\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litevské \"foneticky\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "Latevské"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Makedonské"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Holandské"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Polské (rozložení QWERTY)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Polské (rozložení QWERTZ)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugalské"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Kanadské (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Rumunské (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Rumunské (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Ruské (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slovinské"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovenské (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovenské (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Srbské (cyrilice)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "Tamilské"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Thajské"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Tadžiská klávesnice"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turecké (tradiční model \"F\")"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turecké (moderní model \"Q\")"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukrajinské"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "US (mezinárodní)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamská \"číselná řada\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslávské (latin)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr "Pravá klávesa Alt"
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr "Obě klávesy Shift současně"
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr "Control a Shift současně"
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr "Klávesa CapsLock"
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl a Alt současně"
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt a Shift současně"
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr "Klávesa \"Menu\""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr "Levá klávesa \"Windows\""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr "Pravá klávesa \"Windows\""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Propletené přípojné body %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Odeberte nejdříve logické disky\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"Podpora PCMCIA již není dostupná pro kernely 2.2. Použijte prosím řadu 2.4."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - myš"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Standardní PS2 myš s kolečkem"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 tlačítko"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Standardní dvoutlačítková myš"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Obecná"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "S kolečkem"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "Sériová"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Standardní třítlačítková myš"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech série CC (sériová)"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (sériová, starý C7 typ)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "Busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 tlačítka"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 tlačítka"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "Žádná"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Bez myši"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Vyzkoušejte prosím, zda funguje myš"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Vyzkoušejte na myši,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "TOČIT KOLEČKEM!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Ukončit"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Další ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Předchozí"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Je to správně?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Připojení k Internetu"
-
-#: ../../network/adsl.pm_.c:20
-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'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "použít dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "použít pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "použít pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Kterého dhcp klienta chcete použít?\n"
-"Standardní je dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Ve vašem počítači nebyl nalezen žádný síťový adaptér.\n"
-"Nemohu nastavit typ spojení."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Zvolte síťové rozhraní"
-
-#: ../../network/ethernet.pm_.c:93
-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 "
-"internetu"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "nebyla nalezena síťová karta"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Nastavuji síť"
-
-#: ../../network/ethernet.pm_.c:203
-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 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/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Jméno počítače"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Průvodce nastavením sítě"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Externí ISDN modem"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Interní ISDN karta"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Jaké je vaše ISDN připojení?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Kterou ISDN konfiguraci preferujete?\n"
-"\n"
-"* Starou, použitou pro isd4net. Ta obsahuje výkonné nástroje,\n"
-" ale je choulostivá na konfiguraci a není standardní.\n"
-"\n"
-"* Novou konfiguraci, snazší pro porozumění, více standardní,\n"
-" ale s méně nástroji.\n"
-"\n"
-"Doporučujeme vybrat si snazší novou konfiguraci.\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Nová konfigurace (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Stará konfigurace (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Nastavení ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Vyberte si svého poskytovatele internetu.\n"
-" Pokud není na seznamu, vyberte si Jiný"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Evropský protokol"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Evropský protokol (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protokol použitý ve zbytku světa"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protokol použitý ve zbytku světa \n"
-" žádný D-kanál (leased lines)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Který protokol chcete použít?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Jaký typ karty máte?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Nevím"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Jestli máte ISA kartu, měly by být hodnoty na následující obrazovce "
-"správné.\n"
-"\n"
-"Jestli máte PCMCIA kartu, musíte znát její IRQ a IO.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Přerušit"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Pokračovat"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Kterou z těchto ISDN karet máte?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Našel jsem ISDN PCI kartu, jejíž typ ale neznám. Prosím zvolte si jednu z "
-"následujícího seznamu PCI karet."
-
-#: ../../network/isdn.pm_.c:244
-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"
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Ke kterému sériovému portu je váš modem připojen?"
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Možnosti vytáčení"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Jméno připojení"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Telefonní číslo"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Přihlašovací jméno"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Podle scénáře"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Pomocí terminálu"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Jméno domény"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "První DNS Server (nepovinný)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Druhý DNS Server (nepovinný)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Můžete se odpojit nebo překonfigurovat připojení."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Můžete překonfigurovat připojení."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "V současnosti jste připojeni k Internetu"
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Nemůžete se připojit k Internetu nebo překonfigurovat připojení."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "V současnosti nejste připojeni k Internetu."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Připojit"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Odpojit"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Nastavit připojení"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Nastavení a připojení k internetu"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Nyní se připravuje konfigurace %s připojení."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Nyní se bude konfigurovat připojení %s.\n"
-"\n"
-"\n"
-"Stiskněte OK pro pokračování."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Nastavení sítě"
-
-#: ../../network/netconnect.pm_.c:139
-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"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"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, odznačte políčko.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Zvolte profil pro nastavení"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Použít autodetekci"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Detekuji zařízení..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Modemové připojení"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "detekováno na portu %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN připojení"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "detekováno %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ADSL připojení"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "detekováno na rozhraní %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Kabelové připojení"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "detekováno kabelové připojení"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Připojení k LAN"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "detekovaná(é) síťová(é) karta(y)"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Zvolte si připojení, které chcete nastavit"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Máte nastaveno více způsobů, jak se připojit k Internetu.\n"
-"Vyberte si jeden, který chcete použít.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Internetové připojení"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Chcete se automaticky připojovat po startu počítače?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Nastavení sítě"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "Je potřebné znovu spustit síť"
-
-#: ../../network/netconnect.pm_.c:252
-#, 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"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Gratulujeme, konfigurace sítě a internetu je ukončena.\n"
-"\n"
-"Konfigurace bude nyní aktivována.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-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/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"Vyskytl se problém během konfigurace.\n"
-"Otestujte připojení k Internetu pomocí net_monitor nebo mcc. Pokud není "
-"spojení funkční, bude potřeba asi znovu načíst konfiguraci"
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\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/network.pm_.c:297
-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 ""
-"Prosím zadejte IP nastavení pro tento počítač.\n"
-"Každá položka musí být zadána jako IP adresa v 'desetinné' formě\n"
-"(například 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Nastavuji síťové zařízení %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (ovladač %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP adresa"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Maska sítě"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Automatická IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-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/network.pm_.c:361
-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 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/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS server"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Brána (např. %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Zařízení brány(gateway)"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Nastavení proxy"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Sledovat id síťové karty (užitečné u notebooků)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy by měla být http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy by měla být ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Nastavení Internetu"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Chcete se nyní pokusit připojit k internetu?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Testuji připojení k internetu..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Počítač je nyní připojen k internetu"
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Z bezpečnostních důvodů bude spojení ukončeno."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Nepodařilo se připojit k Internetu.\n"
-"Pokuste se překonfigurovat dané připojení."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Nastavení připojení"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Prosím vyplňte nebo zkontrolujte následující údaje"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ karty"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "DMA karty"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO karty"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_0 karty"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 karty"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Vaše osobní telefonní číslo"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Jméno poskytovatele (např provider.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Telefonní číslo poskytovatele"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "DNS poskytovatele č.1 (volitelné)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "DNS poskytovatele č.2 (volitelné)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Výběr si zemi"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Typ vytáčení"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Rychlost připojení"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Prodleva připojení (vteřiny)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Váš účet (uživatelské jméno)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Heslo vašeho účtu"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "chyba připojování: "
-
-#: ../../partition_table.pm_.c:664
-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:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Ve tabulce diskových oddílů je mezera, ale nemohu ji použít.\n"
-"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:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Obnova ze souboru %s neuspěla: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Špatný záložní soubor"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Chyba při zapisování do souboru %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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:24
-msgid "must have"
-msgstr "musíte mít"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "důležité"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "nejméně důležité"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "nedůležité"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "může se hodit"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Tiskový Systém pro Unix"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Nové generace"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Démon pro tiskárny"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Tisk bez ukládání do fronty"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Místní tiskárna"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Vzdálená tiskárna"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Tiskárna na vzdáleném CUPS serveru"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Tiskárna na vzdálený lpd serveru"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Síťová tiskárna (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Tiskárna na serveru Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Tiskárna na Netware serveru"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Zadejte URI tiskového zařízení"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Poslat tiskovou úlohu do příkazu"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Neznámý model"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Místní tiskárny"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Vzdálené tiskárny"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " na paralelním portu \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", USB tiskárna \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", multifunkční na paralelním portu \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", multifunkční zařízení na USB"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", multifunkční zařízení na HP JetDirect"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", multifunkční zařízení"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", při tisku na %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "na LPD serveru \"%s\", tiskárna \"%s\""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP hostitel \"%s\", port %s"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "na serveru Windows \"%s\", sdílená jako \"%s\""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "na severu Novell \"%s\", tiskárna \"%s\""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", používá příkaz %s"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Přímý tisk (bez ovladače)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(na %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(na tomto počítači)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Na serveru CUPS \"%s\""
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Výchozí)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Zvolte připojení tiskárny"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Jak je tiskárna připojena?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"V případě vzdáleného CUPS serveru nemusíte nastavovat tiskárny zde,\n"
-"tiskárny budou automaticky detekovány."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-msgid "CUPS configuration"
-msgstr "Nastavení CUPS"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-msgid "Specify CUPS server"
-msgstr "Zadejte CUPS server"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"Při tisku na vzdálený CUPS server v lokální síti není potřeba nic "
-"nastavovat, CUPS server bude automaticky informovat o jeho tiskárnách. "
-"Všechny známé tiskárny pro tento počítač jsou nyní vypsány v poli \"Vzdálené "
-"tiskárny\". v hlavní sekci nástroje Printerdrake. Pokud je CUPS na jiné "
-"síti, musíte pro získání informací zadat IP adresu CUPS serveru a také "
-"případně číslo portu, jinak nechte toto pole prázdné."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Ve většině případů je CUPS automaticky správně nastaven v závislosti na\n"
-"síťovém prostředí tak, aby bylo možné tisknout na tiskárnách umístěných\n"
-"na CUPS serverech v síti. Pokud je nastavení nesprávné, vypněte\n"
-"\"Automatické nastavení pro CUPS\" a editujte soubor /etc/cups/cupsd.conf\n"
-"ručně. Nezapomeňte potom CUPS restartovat (příkaz: \"service cups restart\")."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP adresa musí být ve formátu 192.168.1.20"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Číslo portu musí být celé číslo!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP adresa CUPS serveru"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Port"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Automatické nastavení pro CUPS"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Detekuji zařízení ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Otestovat porty"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Přidat novou tiskárnu"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Vítejte v průvodci nastavením tisku\n"
-"\n"
-"Tento průvodce vám pomůže nainstalovat lokální nebo vzdálené tiskárnu(y), "
-"které je možné následně využít na vzdáleném počítači na síti.\n"
-"\n"
-"Budete dotázáni na všechny potřebné informace pro nastavení tiskárny, můžete "
-"si vybrat se všech tiskových ovladačů a typů připojení tiskárny."
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Místní tiskárna"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Vítejte v průvodci nastavením tisku\n"
-"\n"
-"Tento průvodce vám pomůže nainstalovat tiskárnu(y), která je připojena k "
-"tomuto počítači.\n"
-"\n"
-"Připojte prosím tiskárnu(y) k počítači a zapněte ji. Pokud je vše "
-"připraveno, klikněte na tlačítko \"Další\" nebo na tlačítko \"Zrušit\", "
-"pokud tiskárnu nechcete nyní nastavit.\n"
-"\n"
-"Může se stát, že některé počítače mohou zatuhnout při automatické detekci a "
-"tehdy lze použít \"Expertní režim\" pro instalaci bez automatické detekce. "
-"\"Expertní režim\" použijte také tehdy, pokud chcete nastavit vzdálenou "
-"tiskárnu(y) a printerdrake ji/je automaticky nenabídnul."
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Automatická detekce tiskáren"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"Blahopřejeme, tiskárna je instalována a nastavena!\n"
-"\n"
-"Tisknout z aplikací lze příkazem \"Tisk\" (obyčejně v menu \"Soubor\").\n"
-"\n"
-"Pokud chcete přidat, odebrat, přejmenovat tiskárnu nebo změnit její výchozí "
-"hodnoty (typ zásobníku, kvalita tisku,...), zvolte \"Tiskárna\" v sekci "
-"\"Hardware\" v řídícím centru Mandrake."
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Automatická detekce tiskáren"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake dokáže automaticky detekovat tiskárny připojené přes paralelní "
-"nebo USB rozhraní, ale na některých systémech může automatická detekce "
-"ZMRAZIT SYSTÉM A TAKÉ POŠKODIT SOUBORY! Provádíte to tedy na VLASTNÍ "
-"NEBEZPEČÍ!\n"
-"\n"
-"Chcete opravdu použít automatickou detekci tiskárny?"
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Provést autodetekci"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Nastavit tiskárnu manuálně"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "Detekováno %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Tiskárna na paralelním portu \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "USB tiskárna \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Lokální tiskárna nenalezena! Pro ruční instalaci tiskárny zadejte jméno "
-"zařízení/souboru do políčka (Paralelní porty: /dev/lp0, /dev/lp1,... jsou "
-"ekvivalentní LPT1:, LPT2:, ...,první USB tiskárna: /dev/usb/lp0, druhá USB "
-"tiskárna: /dev/usb/lp1,...)."
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Musíte zadat zařízení nebo jméno souboru!"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Místní tiskárna nenalezena!\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Síťové tiskárny mohou být nainstalovány až po instalaci systému. V řídícím "
-"centru Mandrake vyberte \"Hardware\" a potom \"Tiskárna\"."
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Pro instalaci síťových tiskáren klikněte nejdříve na \"Zrušit\", přejděte do "
-"\"Expertního režimu\" a potom opět klikněte na \"Přidat novou tiskárnu\"."
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"Tyto tiskárny byly automaticky detekovány, pokud není mezi nimi požadovaná "
-"tiskárna, zadejte do políčka jméno zařízení/jméno souboru"
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"Zde je seznam všech automaticky rozpoznaných tiskáren. Vyberte si tiskárnu, "
-"kterou chcete nastavit nebo zadejte do políčka jméno zařízení/jméno souboru"
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-"Byla automaticky detekována tato tiskárna. Konfigurace této tiskárny je plně "
-"automatická. Pokud nebyla tiskárna správně detekována nebo preferujete "
-"vlastní nastavení tisku, zvolte \"Ruční konfigurace\"."
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Tyto tiskárny byly automaticky detekovány. Konfigurace těchto tiskáren je "
-"plně automatická. Pokud nebyla tiskárna správně detekována nebo preferujete "
-"vlastní nastavení tisku, zvolte \"Ruční konfigurace\"."
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Vyberte si port, ke kterému je tiskárna připojena nebo zadejte do políčka "
-"jméno zařízení/jméno souboru"
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Vyberte port, ke kterému je vaše tiskárna připojena."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Paralelní porty: /dev/lp0, /dev/lp1,... je ekvivalentní LPT1:, LPT2:, ...,"
-"první USB tiskárna: /dev/usb/lp0, druhá USB tiskárna: /dev/usb/lp1,...)."
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Musíte vybrat/zadat tiskárnu/zařízení!"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Ruční nastavení"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-"Je vaše tiskárna multifunkční zařízení od HP (OfficeJet, PSC, PhotoSmart "
-"LaserJet 1100/1200/1220/3200/3300 se skenerem)?"
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "Instaluji balíček HPOJ..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Testují zařízení a nastavuji HPOJ..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Instaluji balíček SANE..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Skenování na multifunkčním zařízení od HP"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "Zpřístupňuji tiskový port pro CUPS ..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Načítám databázi tiskáren ..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Možnosti vzdálené lpd tiskárny"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Abyste mohli používat vzdálenou tiskovou frontu lpd, musíte zadat jméno "
-"tiskového serveru a jméno tiskárny, kam má být posílán tisk."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Jméno vzdáleného počítače"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Jméno vzdálené tiskárny"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Chybí jméno vzdáleného počítače!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Chybí jméno vzdálené tiskárny!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Možnosti SMB (Windows 9x/NT) tiskárny"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Abyste mohli tisknout na SMB tiskárně, musíte zadat jméno SMB počítače"
-"(Pozor! To může být odlišné od jeho TCP/IP jména) a možná i IP adresu "
-"tiskového serveru, jméno sdílené tiskárny, vhodné uživatelské jméno, heslo a "
-"informace o pracovní skupině."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Jméno SMB serveru"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP adresa SMB serveru"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Sdílené jméno"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Pracovní skupina"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Musí být zadáno buď jméno serveru nebo jeho IP adresa!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Chybí jméno pro sdílení přes Sambu!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr "BEZPEČNOSTNÍ VAROVÁNÍ!"
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Provádíte nastavení tisku s účtem na systému Windows. Kvůli chybě v klientu "
-"protokolu Samba je heslo při tisku posláno jako čistý text z příkazové "
-"řadky. Je tudíž možné, aby kdokoliv viděl toto heslo na obrazovce když si "
-"zadá příkaz např. \"ps auxwww\".\n"
-"\n"
-"Doporučujeme používat jednu z následujících alternativ (ve všech případech "
-"je dobré mít nastaven přístup pouze z počítačů z lokální sítě, respektivě za "
-"firewalem):\n"
-"\n"
-"Použít účet, který nemá nastaven žádné heslo, jako je \"GUEST\" nebo "
-"speciální účet pouze pro účely tisku. Neodstraňujte ochranu heslem z běžného "
-"účtu nebo dokonce z administrátorského účtu.\n"
-"\n"
-"Nastavte tiskárnu na Windows serveru tak, aby fungovala pod LPD protokolem. "
-"Potom nastavte tisk na této tiskárně pomocí typy spojení \"%s\" v aplikaci "
-"Printerdrake.\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Nastavit na serveru s Windows tiskárnu, která bude přístupná pomocí IPP "
-"protokolu a nastavit tisk z tohoto počítače pomocí spojení \"%s\" v aplikaci "
-"Printerdrake.\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"Připojit tiskárnu k Linux serveru a nechat počítač(e) s Windows pracovat "
-"jako klienty.\n"
-"\n"
-"Chcete opravdu pokračovat v nastavení tiskárny tímto způsobem?"
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Možnosti NetWare tiskárny"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Abyste mohli tisknout na NetWare tiskárně, musíte zadat jméno NetWare "
-"serveru (Pozor! To může být odlišné od jeho jména pro TCP/IP!), jméno "
-"tiskové fronty tiskárny, kterou chcete používat, uživatelské jméno a heslo."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Tiskový server"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Jméno tiskové fronty"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "Chybí jméno pro sdílení přes NCP!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "Chybí jméno tiskové fronty pro NCP!"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "Možnosti tiskárny pro TCP/socket"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Abyste mohli tisknout na TCP nebo socketové tiskárně, musíte zadat jméno "
-"počítače s tiskárnou a volitelně i číslo portu. Pokud máte HP JetDirect, "
-"port je obvykle 9100, jinak se může měnit. Podívejte do manuálu k vašemu "
-"hardware."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Jméno počítače s tiskárnou"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Chybí jméno počítače s tiskárnou!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "URI Tiskového Zařízení"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Zde lze přímo zadat URI pro přístup k tiskárně. URI musí splňovat buď "
-"specifikaci CUPS nebo Foomatic. Taky pamatujte na to, že všechny URI nejsou "
-"podporovány ve všech tiskových správcích."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Musí být zadáno správné URI!"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Každá tiskárna potřebuje jméno (např. \"tiskarna\"). Popis a umístění nemusí "
-"být vyplněny. Jsou to komentáře pouze pro uživatele."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Jméno tiskárny"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Popis"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Umístění"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Načítám databázi tiskáren ..."
-
-#: ../../printerdrake.pm_.c:1112
-msgid "Your printer model"
-msgstr "Model tiskárny"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Printerdrake provedl porovnání modelu tiskárny, který byl zjištěn při auto-"
-"detekci s modelem obsaženým v jeho databázi a nabídnul nejlepší řešení. Tato "
-"volba může být špatná, zvlášť pokud není tiskárna obsažena v databázi. "
-"Zkontrolujte, zda je volba správná a klepněte na \"Zvolený model je správný"
-"\" a pokud není, volte \"Vybrat model ručně\". V další obrazovce potom bude "
-"možné vybrat model tiskárny ručně.\n"
-"\n"
-"Pro vaši tiskárnu Printerdrake nalezl:\n"
-"\n"
-"%s"
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-msgid "The model is correct"
-msgstr "Zvolený model je správný"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-msgid "Select model manually"
-msgstr "Vybrat model ručně"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Výběr modelu tiskárny"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Jaký model tiskárny máte?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Zkontrolujte prosím, zda Printerdrake provedl automatickou detekci modelu "
-"správně. Pokud je vyznačen nesprávný model, můžete ho změnit výběrem ze "
-"seznamu nebo zvolte \"Raw printer\"."
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Pokud není tiskárna v seznamu, vyberte kompatibilní nebo podobný model "
-"(podívejte se do manuálu)"
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "Nastavení pro OKI win-tiskárnu"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Nyní nastavujete laserovou tiskárnu OKI winprinter. Tyto tiskárny používají "
-"velmi specifický komunikační protokol a mohou pracovat pouze pokud jsou "
-"připojeny k prvnímu paralelnímu portu. Pokud je tiskárna připojena na jiný "
-"port, nebo se tiskne přes server, připojte tiskárnu na první paralelní port. "
-"Jinak tisk nebude pracovat. Typ připojení bude ovladač ignorovat."
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Nastavení inkoustové tiskárny Lexmark"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Inkoustové tiskárny dodávané firmou Lexmark podporují pouze tisk na lokální "
-"tiskárně, takže nelze tisknout přes vzdálený server. Prosím připojte "
-"tiskárnu na lokální port nebo ji nastavte na tom počítači, ke kterému bude "
-"připojena."
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-"Aby bylo možné tisknout na inkoustových tiskárnách od firmy Lexmark, je "
-"potřeba mít tiskový ovladač. Na stránce (http://www.lexmark.com/) klikněte "
-"na tlačítko \"Drivers\" a vyberte váš model tiskárny. Potom zvolte Linux "
-"jako operační systém. Ovladače jsou v RPM balíčcích nebo mají interaktivní "
-"instalaci. Tu ale nepotřebujete. Ukončete instalační program ihned po "
-"odsouhlasení licence. Pak můžete nastavit chování tiskové hlavy pomocí "
-"tohoto programu."
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Výchozí nastavení pro tiskárnu\n"
-"\n"
-"Ujistěte se, že typ stránky a typ inkoustu/režim tisku (pokud je) a také "
-"hardwarová konfigurace laserové tiskárny (paměť, duplexní jednotka, externí "
-"podavač) jsou nastaveny správně. Při tisku ve velmi vysoké kvalitě/rozlišení "
-"bude tisk zřejmě pomalejší."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Hodnota %s musí být celé číslo!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Hodnota %s musí být číslo!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Hodnota %s je mimo rozsah!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Chcete opravdu nastavit tiskárnu \"%s\"\n"
-"jako výchozí?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Testovací stránka"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Vyberte si testovací stránku, kterou chcete vytisknout.\n"
-"Poznámka: tisk testovací stránky s fotografií může trvat velmi dlouho nebo "
-"se na tiskárně s málo pamětí nemusí podařit vůbec. Ve většině případů stačí "
-"vytisknout běžnou testovací stránku."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Bez testovací stránky"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Tisk"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Standardní testovací stránka"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Alternativní testovací stránka (letter)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Alternativní testovací stránka (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Testovací stránka s fotografií"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "Netisknout testovací stránku"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Tisknu testovací stránku(y)"
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Zkušební stránka(y) byla(y) poslána(y) na tiskárnu.\n"
-"Může chvilku trvat než začne tisk.\n"
-"Stav tisku:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Zkušební stránka byl poslána na tiskárnu.\n"
-"Může chvilku trvat než začne tisk.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "Proběhl tisk správně ?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Přímý tisk na tiskárnu"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Vytisknout soubor z příkazové řádky (terminálového okna) lze buď příkazem\n"
-"\"%s<soubor>\" nebo přes grafické nástroje: \"xpp <soubor> nebo \"kprinter "
-"<soubor>\". Grafické nástroje umožňují jednoduše vybrat tiskárny a měnit "
-"jejich parametry.\n"
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Tyto příkazy lze nastavit do políčka \"Příkazy tisku\" v dialogu tisku ve "
-"většině aplikací, ale nezadává se zde jméno souboru, které je pokaždé jiné v "
-"závislosti na dané aplikaci.\n"
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"Příkaz \"%s\" dovoluje modifikovat volby pro každou tiskovou úlohu. "
-"Jednoduše zadejte potřebné nastavení do příkazové řádky, např. \"%s<soubor>"
-"\". "
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"Všechny možnosti pro současnou tiskárnu jsou zobrazeny níže, nebo klikněte "
-"na tlačítko \"Možnosti tiskárny\".%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Zde je seznam dostupných voleb pro nastavení tisku pro aktuální tiskárnu:\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Pro vytištění souboru z příkazové řádky (v terminálovém okně) použijte "
-"příkaz \"%s<soubor>\".\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Tento příkaz lze nastavit do políčka \"Příkazy tisku\" v dialogu tisku ve "
-"většině aplikací, ale nezadává se zde jméno souboru, které je pokaždé jiné v "
-"závislosti na dané aplikaci.\n"
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Všechny možnosti tisku pro současnou tiskárnu jsou zobrazeny níže, nebo "
-"klikněte na tlačítko \"Možnosti tiskárny\"."
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Pro vytištění souboru z příkazové řádky (v terminálovém okně) použijte "
-"příkaz \"%s<soubor>\" nebo \"%s<soubor>\".\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Lze také použít grafické rozhraní \"xpdq\" pro nastavení možností a ke "
-"správětiskových úloh.\n"
-"Pokud používáte grafické prostředí KDE, máte na pracovní ploše ikonu,\n"
-"pojmenovanou \"STOP Printer!\", který po kliknutí ihned zastaví "
-"všechnytiskové úlohy. To je vhodné třeba pro případy uváznutí papíru.\n"
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Příkazy \"%s\" a \"%s\" dovolují modifikovat volby pro každou tiskovou "
-"úlohu. Jednoduše zadejte potřebné nastavení do příkazové řádky, např. \"%"
-"s<soubor>\".\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zavřít"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Tisknu/skenuji na \"%s\""
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Tisknu na tiskárnu \"%s\""
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Možnosti tiskárny"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Multifunkční zařízení od HP bylo nastaveno pro možnost skenování. Nyní lze "
-"skenovat příkazem \"scanimage\" (\"scanimage -d hp:%s\" zvolíte požadovaný "
-"skener) z příkazového řádku nebo z grafického prostředí pomocí \"xscanimage"
-"\" nebo \"xsane\". Pokud používáte program GIMP, můžete také skenovat "
-"výběrem z nabídky \"Soubor\"/\"Získat\". Více informací získáte příkazem "
-"\"man scanimage\" a \"man sane-hp\".\n"
-"\n"
-"Nepoužívejte pro toto zařízení \"scannerdrake\"!"
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Multifunkční zařízení od HP bylo nastaveno pro možnost skenování. Nyní lze "
-"skenovat příkazem \"ptal-hp %s scan ...\" z příkazového řádku. Skenování z "
-"grafického prostředí nebo z programu GIMP není zatím na tomto zařízení "
-"podporováno. Více informací naleznete v souboru \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\". Pokud máte HP LaserJet 1100 nebo 1200, lze skenovat "
-"pouze v případě, že máte nainstalovánu podporu pro skenování.\n"
-"\n"
-"Nepoužívejte pro toto zařízení \"scannerdrake\"!"
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Načítám data k tisku ..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Přenést konfiguraci tiskárny"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Konfiguraci tiskárny, kterou jste provedli pro frontu %s lze přenést na "
-"frontu %s, tj. na současnou frontu. Všechna nastavená data (jméno tiskárny, "
-"popis, umístění, typ připojení a další výchozí nastavení) budou přepsána, "
-"ale tiskové úlohy nebudou přeneseny.\n"
-"Ne všechny fronty lze přenést z následujích důvodů:\n"
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS nepodporuje tiskárny na serverech Novell nebo tiskárny, které posílají "
-"data na skupinu příkazů.\n"
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ podporuje pouze místní tiskárny, vzdálené tiskárny LPD a tisk na "
-"tiskárny přes sockety/TCP.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD ani LPRng nepodporují IPP tiskárny.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Tiskové fronty, které nebyly vytvořeny tímto programem nebo přes \"foomatic-"
-"configure\" nelze přenést."
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Také tiskárny používající PPD soubory od jejich výrobců nebo tiskárny s "
-"nativními ovladači pro CUPS nelze přenést."
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Označte tiskárnu, kterou chcete přenést a stiskněte \"Přenést\"."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Nepřenášet tiskárny"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Přenést"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Tiskárna se jménem \"%s\" již na straně %s existuje.\n"
-"Klikněte na \"Přenést\" pro přepsání.\n"
-"Taky můžete napsat nové jméno nebo ji přeskočit."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Jméno fronty může obsahovat pouze písmena, číslice a podtržítko"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Tiskárna se jménem %s již existuje,\n"
-"chcete opravdu přepsat její konfiguraci?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Nové jméno tiskárny"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "Přenáším %s ..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Byla přenesena výchozí tiskárna (\"%s\"). Má se nastavit jako výchozí také "
-"na vzdáleném tiskovém systému %s?"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Občerstvuji tisková data ...."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Nastavení vzdálené tiskárny"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Spouštím síť ...."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Nastavit síť nyní"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "Síť není nastavena"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Nyní začne konfigurace vzdálené tiskárny. To vyžaduje funkční síťové "
-"spojení, ale síť není zatím nastavena. Pokud budete pokračovat bez nastavení "
-"sítě, nebude možné použít tiskárnu, kterou požadujete. Jak chcete pokračovat?"
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Pokračovat bez nastavení sítě"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-"Nastavení sítě provedené při instalaci nelze nyní aktivovat. Zkontrolujte, "
-"zda je síť dostupná po spuštění systému a nastavení opravte v řídícím centru "
-"Mandrake, v sekci \"Síť a Internet\"/\"Připojení\" a následně nastavte "
-"tiskárnu také v řídícím centru v sekci \"Hardware\"/\"Tiskárna\""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Síť nefunguje a nelze ji spustit. Prosím zkontrolujte nastavení hardware. "
-"Pak se opět pokuste provést nastavení vzdálené tiskárny."
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Restartuji tiskový systém ..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "vysoká"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "paranoidní"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Instaluji tiskový systém v bezpečnostní úrovni %s"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Pokoušíte se instalovat tiskový systém %s na počítač, bežící v bezpečností "
-"úrovni %s.\n"
-"\n"
-"Tiskový systém pracuje jako démon (proces na pozadí), který čeká na tiskové "
-"úlohy a zpracovává je. Tento démon je také přístupný ze sítě pro jiné "
-"počítače, takže se může stát předmětem síťového útoku. Proto je vybráno "
-"pouze několik služeb, které jsou v této úrovni spuštěny automaticky při "
-"startu.\n"
-"\n"
-"Chcete opravdu nastavit tiskový systém na tomto počítači?"
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Spustit tiskový systém při startu systému"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Tiskový systém (%s) nebude automaticky spuštěn při startu počítače.\n"
-"\n"
-"Je možné, že volba automatického startu byla vypnuta ve vyšší bezpečnostní "
-"úrovni, protože tiskový systém je potenciální nebezpečí pro síťový útok.\n"
-"\n"
-"Chcete nastavit zpět automatický start tiskového systému?"
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Ověřují nainstalovaný software..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "Odebírám LPRng..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "Odebírám LPD..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Zvolte tiskový systém pro tiskárnu"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Který tiskový systém chcete použít pro tisk?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Nastavuji tiskárnu \"%s\"..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "Instaluji Foomatic ..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Možnosti tiskárny"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "Připravuji PrinterDrake ...."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-msgid "Configuring applications..."
-msgstr "Nastavování aplikací..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Chtěli byste nastavit tiskárnu?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Tiskový systém: "
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Jsou nastaveny následující tiskárny. Dvojitým kliknutím na každou z nich je "
-"možné je modifikovat, nastavit jako výchozí, získat o nich informace nebo je "
-"nastavit na vzdáleném CUPS serveru pro využití v aplikaci Star Office/"
-"OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Jsou nastaveny následující tiskárny. Dvojitým kliknutím na každou z nich je "
-"možné je modifikovat, nastavit jako výchozí nebo o nich získat informace."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "Obnovit seznam tiskáren (pro získání všech vzdálených CUPS tiskáren)"
-
-#: ../../printerdrake.pm_.c:2464
-msgid "Change the printing system"
-msgstr "Změna tiskového systému"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Normání režim"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Chcete nastavit další tiskárnu?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Změnit nastavení tiskárny"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Tiskárna %s\n"
-"Co chcete změnit na této tiskárně?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "Provést!"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Typ připojení pro tiskárnu"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Jméno tiskárny, popis, umístění"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Výrobce tiskárny, model, ovladač"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Výrobce tiskárny, model"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Nastavit tuto tiskárnu jako výchozí"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Přidat tuto tiskárnu do Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Odebrat tiskárnu ze Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Tisk testovací(ch) stránky(nek)"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Nápověda pro tisk na této tiskárně"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Odebrat tiskárnu"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Odebírám starou tiskárnu \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Výchozí tiskárna"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Tiskárna \"%s\" je nyní nastavena jako výchozí."
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Přidávám tiskárnu do Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr "Tiskárna \"%s\" byla úspěšně přidána do Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr "Přidání tiskárny \"%s\" do Star Office/OpenOffice.org se nezdařilo."
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Odebírám tiskárnu ze Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-"Tiskárna \"%s\" byla úspěšně odebrána z aplikace Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "Odebrání tiskárny \"%s\" ze Star Office/OpenOffice.org se nezdařilo."
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Chcete opravdu odebrat tiskárnu \"%s\"?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Odebírám tiskárnu \"%s\" ..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Nastavení proxy"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Vítejte v konfiguračním nástroji pro proxy.\n"
-"\n"
-"Zde nastavujete http a ftp proxy zadáním\n"
-"přiděleného přihlašovacího jména a hesla\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Zadejte prosím hodnoty pro http proxy\n"
-"V případě, že nemáte http proxy, ponechejte prázdné"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "port"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "URL by mělo být 'http:'"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Číslo portu musí být numerické"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Zadejte prosím hodnoty pro ftp proxy\n"
-"V případě, že nemáte ftp proxy, ponechejte prázdné"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "URL by mělo být 'ftp:'"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Pokud je potřeba, zadejte prosím přihlašovací jméno\n"
-"a heslo. Pokud je nepotřebujete, nechte prázdné"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "login"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "heslo"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "heslo znova"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Hesla nejsou shodná. Zkuste to znovu!"
-
-#: ../../raid.pm_.c:35
-#, 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:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Nemůžu zapsat soubor %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid neuspěl"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid neuspěl (možná, že chybí raidtools?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Není dostatek oddílů pro RAID úrovně %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Spustit zvukový systém ALSA (Advanced Linux Sound Architecture)"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron - spouští opakující se akce"
-
-#: ../../services.pm_.c:16
-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."
-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
-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 ""
-"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
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron je standardní Unixový program který spouští uživatelem zadané programy\n"
-"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
-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 přidává do textových programů podporu myši (např pro Midnight "
-"Commander).\n"
-"Může také v konzoli provádět operace 'vyjmi' a 'vlož' a ovládat pop-up menu."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake testuje hardware a umožňuje nový/změněný\n"
-"hardware nastavit"
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr "Apache je WWW server. Je používán k poskytování HTML a CGI souborů."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Internetový superserver démon (nazývaný inetd) spouští mnoho ostatních\n"
-"internetových služeb, tak jak jsou zapotřebí. Odpovídá za start např.\n"
-"telnetu, ftp, rsh a rlogin. Pokud vypnete inetd, vypnete tím i ostatní\n"
-"služby které spouští."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Spustit paketový filtr pro jádra řady 2.2, který chrání počítač\n"
-"proti útokům ze sítě."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Tento balíček nahraje zvolenou mapu klávesnice definovanou\n"
-"v /etc/sysconfig/keyboard. Tu lze vybrat pomocí nástroje kbdconfig.\n"
-"Pro většinu počítačů byste ji měli nechat zapnutou."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Automatická generace hlavičky jádra v adresáři /boot\n"
-"pro soubory /usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Automatická detekce a konfigurace hardware při spuštění."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf provádí různé úkoly při spuštění systému\n"
-"nutné pro správu systémové konfigurace."
-
-#: ../../services.pm_.c:43
-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 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:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual Server používaný pro sestavení vysoce výkonného\n"
-"a dostupného serveru."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) je doménový (DNS) server, který překládá hostitelská jména na "
-"IP adresy."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Připojuje a odpojuje všechny síťové (NFS), SMB (Lan/Windows) a Netware "
-"(NCP)\n"
-"přípojné body (mount points)."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktivuje či deaktivuje všechny síťová rozhraní, která mají nastartovat při\n"
-"startu systému."
-
-#: ../../services.pm_.c:52
-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 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:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-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:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Automaticky nastaví podporu numerické klávesnice v konzoli\n"
-"a v XFree při startu."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Podpora pro OKI 4w a kompatibilní wintiskárny."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"Podpora PCMCIA většinou znamená podporu zařízení jako síťové karty a\n"
-"modemy v laptopech. Nespustí se pokud ji přímo nenastavíte, ale není "
-"problém\n"
-"jí mít nainstalovanou i na počítačích, které ji nepotřebují."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Portmapper spravuje RPC spojení, která jsou používána protokoly jako NFS\n"
-"a NIS. Portmap server 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:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that 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:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-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:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Přiřazuje přímá zařízení blokovým (například diskové oddíly)\n"
-"pro aplikace jako je Oracle"
-
-#: ../../services.pm_.c:71
-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 ""
-"Démon routed umožňuje automaticky obnovovat směrovací tabulku (router "
-"table)\n"
-"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:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Protokol rstat umožňuje uživatelům sítě sledovat vytížení jednotlivých\n"
-"strojů připojených k síti."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Protokol rusers umožňuje uživatelům sítě zjistit kdo je přihlášen na\n"
-"jiném počítači."
-
-#: ../../services.pm_.c:78
-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 ""
-"Protokol rwho umožňuje vzdáleným(remote) uživatelům získat seznam\n"
-"všech uživatelů přihlášených na počítači s démonem rwho (je to podobné\n"
-"službě finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Spustit zvukový systém při startu"
-
-#: ../../services.pm_.c:81
-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 je program pomocí něhož zaznamenává mnoho démonů správy do "
-"systémových\n"
-"log souborů. Je dobré mít spuštěný syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Nahrát ovladače pro usb zařízení."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Startuje X Font Server (to je nezbytné pro běh XFree)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Zvolte si, které služby by měli být automaticky spuštěny při startu"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Tisk"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Sdílení souborů"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "Systém"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Vzdálená administrace"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Databázové servery"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Skužby: aktivováno %d z %d registrovaných"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Služby"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "spuštěno"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "zastaveno"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Služby a démoni"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Nejsou žádné další\n"
-"informace o službě, sorry."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Při spuštění"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Start"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Stop"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Děkujeme vám, že jste si vybrali Mandrake Linux 8.2"
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr "Vítejte do světa Open Source"
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-"Úspěch společnosti MandrakeSoft je založen na principech Svobodného "
-"Software. Tento operační systém je výsledkem spolupráce části celosvětové "
-"Linuxové komunity"
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "Připojte se ke světu Svobodného Software"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-"Chcete vědět více o Open Source komunitě? Stát se také členem? Pokud chcete "
-"sdílet své vědomosti, pomáhat vytvářet nástroje, připojte se do diskuzních "
-"klubů, které najdete na našich stránkách \"Community\""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet a zpracování zpráv"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-"Mandrake Linux 8.2 nabízí ten nejlepší výběr software pro přístup ke všemu, "
-"co nabízí Internet. S pomocí Mozilly a Konquerora můžete prohlížet webové "
-"stránky a animace, ke čtení pošty a zpracování osobních informací lze použít "
-"Evolution a Kmail a využít množství jiných programů"
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimédia a grafika"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-"Mandrake Linux 8.2 dovoluje naplno využít všech multimediálních schopností "
-"počítače! Můžete tak přehrávat různé hudební soubory, editovat či kreslit "
-"obrázky nebo fotografie, sledovat TV a video atd."
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Vývoj"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-"Mandrake Linux 8.2 je vynikající platformou pro vývoj. Můžete využít silný "
-"GNU gcc kompilátor a další prostředky na vývoj Open Source aplikací"
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Řídící centrum Mandrake"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-"Řídící centrum pro Mandrake Linux 8.2 poskytuje výkonné nástroje na správu a "
-"nastavení vašeho počítače"
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "Uživatelská rozhraní"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-"Distribuce Mandrake Linux 8.2 nabízí 11 různých grafických uživatelských "
-"rozhraní, včetně GNOME 1.4, KDE 2.2.2, Window Maker, ..."
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Software pro servery"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-"Váš počítač lze několika kliknutími myši změnit na velmi výkonný server: "
-"webový server, poštovní server, firewall, router, souborový a tiskový server"
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Hry"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-"Mandrake Linux 8.2 nabízí ty nejlepší Open Source hry - arkády, akční, "
-"karetní, sportovní, strategické, ..."
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-"Chcete se dozvědět o Linuxu jednoduchou, rychlou a snadnou cestou? "
-"Poskytujeme zdarma školení Linuxu, stejně jako testy vašich znalostí "
-"prostřednictvím online školícího centra MandrakeCampus"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-"Kvalitní podpora jak Linuxové komunity tak z firmy MandrakeSoft je již k "
-"dispozici! Staňte se \"expertem\" a můžete pomáhat jak dalším uživatelům tak "
-"také podporovat naše stránky"
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-"Naši konzultanti jsou připraveni analyzovat požadavky a nabídnout řešení "
-"všech vašich IT projektů. MandrakeSoft je firma, která má velké zkušenosti "
-"jako vydavatel distribucí a nabízí opravdovou alternativu pro IT řešení v "
-"podniku"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-"Náš elektronický obchod nabízí velké množství Linuxových řešení, speciální "
-"nabídky našeho software a další 'lahůdky'"
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-"Pokud chcete získat více informací o profesionálních službách fy "
-"MandrakeSoft a komerčních nabídkách, podívejte se prosím na níže uvedenou "
-"webovou stránku:"
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Instaluji balíčky..."
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Nemůžu přečíst vaši tabulku oddílů, možná je příliš narušená :(\n"
-"Pokusím se pokračovat v čištění špatných oddílů"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Chyba!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Nemohu najít potřebný soubor '%s ' s obrazem."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Nastavení automatické instalace"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Zde můžete nastavit disketu pro automatickou instalaci. Tato volba je někdy "
-"nebezpečná a měla by se používat s opatrností.\n"
-"\n"
-"Tato disketa dovoluje zopakovat instalaci, která již na tomto počítači byla "
-"provedena s tím, že v některých krocích lze zadat jiné hodnoty.\n"
-"\n"
-"Pro maximální bezpečnost není rozdělování disků ani formátování prováděno "
-"automaticky, i přesto, pokud to při instalaci zvolíte.\n"
-"\n"
-"Chcete pokračovat?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Nastavení automatických kroků"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Vyberte prosím, který z kroků instalace má být proveden automaticky stejně "
-"jako instalační program nebo bude ručně zadán"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Vítejte.\n"
-"\n"
-"Parametry pro automatickou instalaci jsou přístupné v sekci nalevo"
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Gratuluji!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Disketa byla s úspěchem vytvořena.\n"
-"Nyní lze provést znovu instalaci."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Automatická instalace"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Přidat položku"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Odstranit poslední položku"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" Report programu DrackBackup \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Report démonu pro DrackBackup\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Detaily o reportu pro DrackBackup\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "celkový průběh"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "Zálohovat systémové soubory..."
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "Záložní soubory pevného disku..."
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "Zálohovat soubory uživatelů..."
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Průběh zálohování na pevný disk... "
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Zálohovat další soubory..."
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"seznam souborů poslaný na FTP : %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) Problémy FTP spojení: nebylo možné poslat data pro zálohu přes FTP.\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Chyba při posílání pošty. \n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "Výběr souboru"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr "Vyberte soubory nebo adresáře a klikněte na 'Přidat'"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Zvolte prosím všechny volby, které potřebujete.\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr "Tato volba zazálohuje a obnoví všechny soubory v adresáři /etc.\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Zálohovat systémové soubory ( adresář /etc )"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Použít přírůstkovou zálohu (nepřepisovat starší zálohy)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Nezahrnout kritické soubory (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr "Tato volba dovolí obnovit různé verze adresáře /etc."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr "Zvolte prosím všechny uživatele, které chcete zálohovat."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "Nezahrnout cache prohlížeče"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Použít přírůstkovou zálohu (nepřepisovat starší zálohy)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Odstranit vybrané"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "Uživatelé"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Použít FTP připojení pro zálohu"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Zadejte prosím jméno počítače nebo IP."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-"Zadejte adresář, do kterého\n"
-" bude umístěna záloha."
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Zadejte své přihlašovací jméno"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Zadejte své heslo"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Pamatovat si heslo"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP připojení"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Bezpečné připojení"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "Použít pro zálohování CD/DVDROM"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Vyberte si velikost CD média"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "Zvolte pokud používáte CDRW média"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Pokud CDRW médium nejdříve smazat, zatrhněte"
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Pokud chcete mít spouštěcí CD,\n"
-" zatrhněte tuto volbu."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Zadejte jméno vaší vypalovačky CD\n"
-" např.: 1,0,0"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "Použít páskovou jednotku"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "Zadejte jméno zařízení, na které se bude zálohovat"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Zadejte prosím maximální velikost\n"
-" povolenou pro Drakbackup"
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Zadejte adresář, kam bude umístěna záloha:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Použít kvóty pro záložní soubory."
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "Síť"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "Pevný disk / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "každou hodinu"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "každý den"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "každý týden"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "každý měsíc"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "Použít démona"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"Vyberte si interval mezi\n"
-"jednotlivými zálohami"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"Prosím zvolte si\n"
-"médium pro zálohy."
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Použít pro pevný disk démona"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Použít pro síť démona"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Ujistěte se, že mezi službami je přítomen cron démon."
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "Poslat report po záloze mailem na :"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "Co"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "Kde"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "Kdy"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "Další volby"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "Nastavení pro DrakBackup"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Vyberte si, prosím, kam chcete zálohovat."
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "na pevný disk"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "přes síť"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Prosím vyberte si, co chcete zálohovat"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "Zálohovat systém"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "Zálohovat uživatele"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Vybrat uživatele manuálně"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Zdroje pro zálohu:\n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Systémové soubory:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Soubory uživatelů:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Další soubory:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- Uložit na pevný disk do adresáře: %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- Uložit na FTP na počítač: %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t uživatelské jméno: %s\n"
-"\t\t cesta: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Volby:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tNezahrnout systémové soubory\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tZálohování používá tar a bzip2\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tZálohování používá tar a gzip\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- Démon (%s) zahrnuje :\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t-Pevný disk.\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-CDROM.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Sítí přes FTP.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Sítí přes SSH.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Pro první spuštění použijte Průvodce nebo Rozšířené.\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Seznam dat pro obnovení:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Seznam poškozených dat:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "Zrušte tuto volbu při dalším spuštění."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "Záložní soubory jsou poškozené"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " Všechna vybraná data byla "
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " Úspěšně obnoveno na %s "
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " Obnovit konfiguraci "
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "Obnovit také ostatní soubory."
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Seznam uživatelů pro obnovení (od každého bude obnovena pouze poslední "
-"záloha)"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "Zálohovat systémové soubory před:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "Vyberte datum obnovení zálohy"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Použít pro zálohování pevný disk"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Obnovit z pevného disku."
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "Zadejte adresář, kde jsou umístěny zálohy"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Vyberte další médium, kde jsou umístěny zálohy"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Další média"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "Obnovit systém"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Obnovit uživatele"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Obnovit ostatní"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "vyberte cestu pro obnovu (kromě / )"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Provést novou zálohu před obnovou (pouze pro přírůstkovou zálohu)"
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Odebrat adresáře uživatele před obnovou."
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Obnovit všechny zálohy"
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "Vlastní obnova"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Nápověda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "Předchozí"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Uložit"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Vytvořit zálohu"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Obnovit"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Další"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Dříve než budete obnovovat, vytvořte zálohu...\n"
-"nebo ověřte, že daná cesta je správná."
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"Chyba při posílání pošty\n"
-" vámi zvolený report nebyl odeslán\n"
-" Proveďte prosím nastavení sendmailu"
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Seznam balíčků pro instalaci"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Chyba při posílání souborů přes FTP.\n"
-" Prosím opravte nastavení pro FTP."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Prosím zvolte data pro obnovu..."
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Prosím zvolte si médium pro zálohy..."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Zkontrolujte prosím data pro zálohování..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Nebyl nalezen konfigurační soubor, \n"
-"klikněte na Průvodce nebo na Rozšířené."
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "Vyvíjí se... čekejte prosím."
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "Zálohovat systémové soubory"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "Zálohovat uživatelské soubory"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Zálohovat další soubory"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Celkový průběh"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "soubory poslané přes FTP"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Posílám soubory..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "Seznam dat, která budou na CROM."
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Zadejte rychlost vypalovací mechaniky"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Zadejte prosím jméno CD vypalovačky (např.: 1.0.0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Zvolte, pokud chcete mít instalační CD spustitelné."
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "Zálohovat z konfiguračního souboru"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Prohlédnout konfiguraci zálohy."
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "Průvodce konfigurací"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "Rozšířená konfigurace"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "Zálohovat nyní"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-"Popis voleb:\n"
-"\n"
-" V tomto kroku Drakbackup může změnit:\n"
-"\n"
-" - Režim komprese:\n"
-" \n"
-" Pokud zvolíte bzip2, budete mít kompresi\n"
-" lepší než pomocí gzip (okolo 2-10%).\n"
-" Tato volba není zvolena jako výchozí, protože\n"
-" vyžaduje daleko více času (až o 1000% více).\n"
-"\n"
-" - Režim zálohování:\n"
-"\n"
-" Tato volba aktualizuje zálohu, ale není moc zajímavá,\n"
-" protože před aktualizací musíte nejdříve zálohu obnovit.\n"
-" \n"
-"- použití souboru .backupignore:\n"
-"\n"
-" Stejně jako pro cvs, i pro Drakbackup lze uvést seznam\n"
-" souborů v .backupignore, které budou při zálohování ignorovány.\n"
-" např.:\n"
-" \\$> cat .backupignore\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-"\n"
-" Některé chyby při nastavení pošty jsou způsobeny\n"
-" špatnou konfigurací programu postfix. Pro vyřešení\n"
-" nastavte myhostname a mydomain v /etc/postfix/main.cf\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-"popis voleb:\n"
-"\n"
-"- Záloha systémových souborů:\n"
-" \n"
-"\tTato volba zálohuje adresář /etc, který obsahuje všechny\n"
-"\tkonfigurační soubory. Dávejte pozor při obnově na to,\n"
-"\taby se nepřepsaly soubory:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Zálohovat soubory uživatelů:\n"
-"\n"
-"\tTato volba dovoluje vybrat všechny uživatele, které\n"
-"\t\tchcete zálohovat.\n"
-"\tAby se ušetřilo místo na disku, není dobré zahrnout cache\n"
-"\tod prohlížeče.\n"
-"\n"
-" - Zálohovat ostatní soubory:\n"
-"\n"
-"\tTato volba dovolí přidat další data pro zálohování.\n"
-"\tV současnosti není možné při tomto zálohování zvolit\n"
-"\tpřírůstkové zálohování.\t\n"
-"\n"
-" - Přírůstkové zálohování:\n"
-"\n"
-"\tPřírůstkové zálohování je velmi mocný druh zálohování,\n"
-"\tprotože dovoluje zálohovat všechna data pouze poprvé\n"
-"\ta dále se zálohují pouze změny.\n"
-"\tBěhem obnovy tak budete moci zadat, od jakého data se\n"
-"\tmají data obnovit.\n"
-"\tPokud nezvolíte tuto možnost, bude při každé záloze\n"
-"\tpředchozí záloha smazána.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Popis voleb pro obnovu:\n"
-"\n"
-"Bude použita záloha s nejaktuálnějším datem, protože při\n"
-"přírůstkovém zálohování je nutné provádět obnovu jednu\n"
-"za druhou směrem ke starším datům.\n"
-"\n"
-"Pokud nechcete obnovit uživatele, odznačte všechny\n"
-"jeho zaškrtávací políčka.\n"
-"\n"
-"Jinak je možné si vybrat pouze jednoho z nich\n"
-"\n"
-" - Přírůstkové zálohování:\n"
-"\n"
-"\tPřírůstkové zálohování je velmi mocný druh zálohování,\n"
-"\tprotože dovoluje zálohovat všechna data pouze poprvé\n"
-"\ta dále se zálohují pouze změny.\n"
-"\tBěhem obnovy tak budete moci zadat, od jakého data se\n"
-"\tmají data obnovit.\n"
-"\tPokud nezvolíte tuto možnost, bude při každé záloze\n"
-"\tpředchozí záloha smazána.\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-" Tento program je svobodný software; můžete ho šířit a/nebo modifikovat\n"
-" podle specifikace GNU General Public Licence, která byla publikáva\n"
-" Free Software Foundation; buď verze 2, nebo (podle volby) pozdější verze.\n"
-"\n"
-" Tento program je distribuován s nadějí, že bude užitečný,\n"
-" ale BEZ JAKÝCHKOLIV ZÁRUK; BEZ NÁROKU NA PROFIT. Více detailů naleznete\n"
-" v licenci GNU General Public Licence.\n"
-"\n"
-" Kopii GNU General public Licence můžete obdržet buď s tímto programem\n"
-" nebo si o ní můžete napsat na adresu Free Software Foundation, Inc.,\n"
-" 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-"Popis:\n"
-"\n"
-" Drakbackup je nástroj na zálohování systému.\n"
-" Během konfigurace můžete vybrat: \n"
-"\t- Systémové soubory,\n"
-"\t- Soubory uživatelů,\n"
-"\t- Ostatní soubory.\n"
-"\tnebo Celý systém a jiné (jako jsou oddíly s Windows).\n"
-"\n"
-" Drakbackup dovoluje zálohovat na:\n"
-"\t- Pevný disk.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (se spuštěním, záchranou a autoinstalací).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Páskovou jednotku.\n"
-"\n"
-" Drakbackup dovoluje provést obnovu do vybraného adresáře.\n"
-"\n"
-" Jako výchozí jsou umístěny všechny zálohy do adresáře\n"
-" /var/lib/drakbackup \n"
-"\n"
-" Konfigurační soubor:\n"
-"\t/etc/drakconf/drakbackup/drakbackup.conf\n"
-"\n"
-"\n"
-"Postup při obnově:\n"
-"\n"
-" Při provádění obnovy odstraní Drakbackup původní adresář\n"
-" a ověří, že zálohované soubory nejsou poškozeny.\n"
-" Doporučuje se ale provést zálohu těchto dat před provedením\n"
-" obnovy.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-"popis voleb:\n"
-"\n"
-"Buďte opatrní při zálohování na FTP, protože na server je poslána\n"
-"pouze již vytvořená záloha.\n"
-"Je tudíž vhodné nejdříve provést zálohu na disk před tím, než\n"
-"ji pošlete na server.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-"\n"
-"Problémy při obnově:\n"
-"\n"
-"Při obnovování Drakbackup nejdříve ověřuje všechny\n"
-"zálohované soubory.\n"
-"Před tím, než je soubor obnoven, provede Drakbackup výmaz\n"
-"původního souboru, a tak přijdete o všechna data.\n"
-"Buďte proto opatrní a nesnažte se modifikovat zálohovaná\n"
-"data ručně.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-"Popis:\n"
-"\n"
-" Drakbackup je nástroj na zálohování systému.\n"
-" Během konfigurace můžete vybrat \n"
-"\t- Systémové soubory,\n"
-"\t- Soubory uživatelů,\n"
-"\t- Ostatní soubory.\n"
-"\tnebo Celý systém a jiné (jako jsou oddíly s Windows).\n"
-"\n"
-" Drakbackup dovoluje zálohovat na:\n"
-"\t- Pevný disk.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (se spuštěním, záchranou a autoinstalací).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Páskovou jednotku.\n"
-"\n"
-" Drakbackup dovoluje provést obnovu do vybraného adresáře.\n"
-"\n"
-" Jako výchozí jsou umístěny všechny zálohy do adresáře\n"
-" /var/lib/drakbackup \n"
-"\n"
-" Konfigurační soubor:\n"
-"\t/etc/drakconf/drakbackup/drakbackup.conf\n"
-"\n"
-"\n"
-"Postup při obnově:\n"
-"\n"
-" Při provádění obnovy odstraní Drakbackup původní adresář\n"
-" a ověří, že zálohované soubory nejsou poškozeny.\n"
-" Doporučuje se ale provést zálohu těchto dat před provedením\n"
-" obnovy.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Instalace %s neuspěla. Stala se tato chyba:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Hledám instalované fonty"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Odznačit instalované fonty"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "zpracovávám všechny fonty"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "nebyly nalezeny žádné fonty"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "hotovo"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "nelze nalézt žádné fonty v připojeném oddíle"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Znovu vybrat správné fonty"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "nelze nalézt žádný font.\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Hledat fonty mezi instalovanými"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Kopie fontu"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "Instalace fontů True Type"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "čekejte prosím, právě běží ttmkfdir... "
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "Instalace True Type fontů je dokončena"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "Konverze fontů"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "vytvářím type1inst"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr "Odkazy na Ghostscript"
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "konverze ttf fontů"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "konverze pfm fontů"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Ignorovat dočasné soubory"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "Restartovat XFS"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Ignorovat soubory s fonty"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "restart xfs"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Před instalací fontů se ujistěte, že máte potřebná práva na instalací a "
-"používání na systému.\n"
-"\n"
-"- Fonty lze instalovat běžným způsobem. Ve výjimečných případech může špatný "
-"font způsobit zamrznutí X serveru."
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "Zavádění fontů"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Načíst fonty z Windows"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Odinstalovat fonty"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Rozšířené volby"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Seznam fontů"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Zvolte aplikace, které podporují fonty:"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Obecné tiskárny"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Vyberte soubor s fontem nebo adresář a klikněte na 'Přidat'"
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Instalovat seznam"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "klikněte zde, pokud jste si jisti."
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "zde pokud si nejste jisti."
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "Zrušit celý výběr"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Vybrat vše"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "Odebrat seznam"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Úvodní testy"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Kopírovat fonty do systému"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Instalovat & konvertovat fonty"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Poinstalační nastavení"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "Odebrat fonty ze systému"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Nastavení po odebrání"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Sdílení Internetového Připojení"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Sdílení Internetového připojení je zapnuto"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Sdílení internetového připojení už bylo nastaveno.\n"
-"Nyní je povoleno.\n"
-"\n"
-"Co chcete dále dělat?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "vypnout"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "odmítnout"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "překonfigurovat"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Zakazuji servery..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Sdílení Internetového připojení je nyní vypnuto."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Sdílení Internetového připojení je vypnuto"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Internetové sdílení už bylo nastaveno.\n"
-"Nyní je vypnuto.\n"
-"\n"
-"Co chcete dále dělat?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "povolit"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Povoluji servery..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Sdílení Internetového připojení je nyní zapnuto."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Váš počítač bude zkonfigurován pro sdílení připojení na Internet.\n"
-"Tato možnost umožňuje přístup dalších počítačů na lokální síti do Internetu "
-"přes tento počítač.\n"
-"\n"
-"Pozn.: potřebujete vyhrazený síťový adaptér pro nastavení lokální sítě (LAN)."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Rozhraní %s (používá modul %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Rozhraní %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Ve vašem systému není žádný síťový adaptér!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Ve vašem počítači nebyl nalezen žádný síťový adaptér. Spusťte prosím program "
-"pro nastavení hardware."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Síťové rozhraní"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Na vašem systému je nastaveno pouze jedno síťové rozhraní:\n"
-"\n"
-"%s\n"
-"\n"
-"Na tomto adaptéru bude nastavena lokální síť."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Prosím zvolte si, ke kterému síťovému adaptéru bude připojena LAN."
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Síťové rozhraní je již nastaveno"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"Varování, síťový adaptér (%s) je již nastaven.\n"
-"\n"
-"Chcete ho automaticky přenastavit?\n"
-"\n"
-"Lze to také provést ručně, ale musíte vědět, co děláte."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Automatické přenastavení"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "Zobrazit aktuální nastavení rozhraní"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"Aktuální konfigurace pro '%s':\n"
-"\n"
-"Síť: %s\n"
-"IP adresa: %s\n"
-"IP atributy: %s\n"
-"Ovladač: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Mohu zachovat současnou konfiguraci a předpokládám, že máte již nastavený "
-"DHCP server; v takovém případě ověřte, že je správně nastavena lokální síť; "
-"nebude v ní provedena žádná změna a nebude ani změněn DHCP server.\n"
-"\n"
-"Jinak mohu změnit jak rozhraní, tak také přenastavit DHCP server podle "
-"potřeby.\n"
-"\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "Lokální síť"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "Adresa DHCP serveru"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Přenastavení rozhraní a DHCP serveru"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Číslo lokální síě nekončí na .0, zkouším znovu."
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Našel jsem možný konflikt v současném nastavení LAN adresy pro %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Našel jsem existující nastavení firewallu!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Varování! Bylo nalezeno existující nastavení firewallu. Po instalaci může "
-"být zapotřebí nějaká ruční úprava."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Nastavuji..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Nastavuji skripty, instaluji software, startuji servery..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problém s instalací balíčku %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Vše se podařilo nastavit.\n"
-"Nyní lze použít tento počítač pro sdílení připojení k Internetu pro vaši "
-"lokální síť, která používá automatickou konfiguraci sítě (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Nastavení již bylo provedeno, ale nyní je vypnuto."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Nastavení již bylo provedeno, nyní je povoleno."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Není nastaveno žádné sdílení Internetového připojení."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Nastavení sdílení připojení k Internetu"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\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."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Nastavení sítě (%d adaptéry(ů))"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Smazat profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Smazat profil:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nový profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Zadejte jméno vytvářeného profilu (nový profil je vytvořen jako kopie "
-"vybraného) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Jméno počítače: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Přístup na Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Typ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Brána(gateway):"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Rozhraní:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Čekejte prosím"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Nastavuji přístup na Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Nastavení LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Ovladač"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Rozhraní"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Nastavuji lokální síť..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Klikněte pro spuštění průvodce ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Průvodce..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Použít"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Čekejte prosím... Aktivuji konfiguraci"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Připojen"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nepřipojen"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Připojit..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Odpojit..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr "Varování, bylo detekováno jiné připojení k Internetu, zřejmě je to síť"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemáte nakonfigurováno žádné rozhraní.\n"
-"Nastavte jej kliknutím na 'Konfigurovat'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Nastavení LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptér %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protokol o spuštění"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Spustit při startu"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivovat nyní"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivovat nyní"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Toto rozhraní ještě nebylo nastaveno.\n"
-"Spusťte průvodce konfigurací z hlavního okna"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemáte žádné připojení k Internetu.\n"
-"Vytvořte si jej kliknutím na 'Konfigurovat'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfigurace připojení k internetu"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfigurace připojení k internetu"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Typ připojení:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametry"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Brána(gateway)"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernetová karta"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Úroveň zabezpečení"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Řídící centrum"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Zvolte si nástroj, který chcete použít"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "Kanada (kabel)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (bcast)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "USA (kabel)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "USA (cable-hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Čína (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japonsko (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "Japonsko (kabel)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Východní Evropa"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Irsko"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "Západní Evropa"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Austrálie"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "Nový Zéland"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "Jižní Afrika"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Zadejte prosím\n"
-"typ TV normy a zemi"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "Norma TV:"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Oblast :"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "Probíhá vyhledávání TV kanálů ..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "Vyhledávám TV kanály"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr "Nebyla nalezena TV karta!"
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-"V počítači nebyla nalezena žádná TV karta. Zkontrolujte prosím, zda "
-"podporovaná karta je správně zapojena.\n"
-"\n"
-"\n"
-"Databázi hardware lze nalézt na:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "použití: keyboarddrake [--expert] [klávesnice]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Jaké je rozložení vaší klávesnice?"
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Chcete, aby se klávesa BackSpace chovala v konzoli jako Delete?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Vyměnit CD-ROM"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Vložte prosím Instalační CD-ROM do mechaniky a stiskněte Ok.\n"
-"Pokud CD nemáte, stiskněte Zrušit pro přerušení aktualizace systému."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Nelze spustit aktualizaci na běžící systém !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr "Změny jsou provedeny, ale pro aktivaci je nutné provést logout"
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "Zobrazit pouze pro vybraný den"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/_Soubor/_Nový"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Soubor/_Otevřít"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Soubor/_Uložit"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>U"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Soubor/Uložit _jako"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Soubor/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Volby"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Volby/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Nápověda"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Nápověda/_O aplikaci..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-iso8859-2,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-iso8859-2,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "Uživatel"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "Zprávy"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "Syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Vysvětlivky nástrojů Mandrake Linuxu"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "vyhledat"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Nástroj na monitorování logů"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Nastavení"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "shodných"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "neshodných"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Vyberte soubor"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Kalendář"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Obsah souboru"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "Varovné zprávy přes Mail/SMS"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "čekejte prosím, zpracovávám soubor: %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "Nastavení upozornění přes Mail/SMS"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Vítejte v konfiguraci varovných zpráv přes mail/SMS.\n"
-"\n"
-"Zde lze nastavit posílání varovných zpráv.\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "nastavení služeb"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr "Pokud jedna z vybraných služeb nepoběží, obdržíte varovnou zprávu"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "nahrát volby"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Pokud bude hodnota vetší než zadané číslo, obdržíte varovnou zprávu"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "nastavení varování"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "Nastavuje způsob, jakým bude systém posílat varovné hlášky"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Uložit jako..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Jaký je typ vaší myši?"
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "nebylo nalezeno serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Emulovat třetí tlačítko?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "%s nalezeno na %s, chcete ho nastavit?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Zvolte si skener"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "Skener %s není podporován"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-"Scannerdrake nebyl schopen detekovat váš skener %s.\n"
-"Vyberte prosím zařízení, ke kterému je skener připojen"
-
-#: ../../standalone/scannerdrake_.c:96
-msgid "choose device"
-msgstr "vyberte zařízení"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"Skener %s musí být nastaven pomocí nástroje printerdrake.\n"
-"Spustit printerdrake lze z řídícího centra Mandrake v sekci Hardware"
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"Váš skener %s byl nastaven.\n"
-"Nyní lze skenovat dokumenty pomocí aplikace \"XSane\" z nabídky aplikací "
-"Multimédia/Grafika."
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Konfigurace firewallu"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Konfigurace firewallu"
-
-#: ../../standalone/tinyfirewall_.c:79
-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 je již nastaven.\n"
-"Klikněte na Konfigurovat pro změnu nebo odebrání firewallu"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Klikněte na Konfigurovat pro standardní firewall"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Výběr jazyka"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Volba typu instalace"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Detekce hardisků"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Nastavení myši"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Výběr klávesnice"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Bezpečnost"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Souborové systémy"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formátování oddílů"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Výběr balíčků pro instalaci"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Instalace systému"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Přidání uživatele"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Nastavení sítí"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Nastavení služeb"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Zaváděcí program"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Startovací disketa"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Nastavení X"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Aktualizace systému"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Ukončit instalaci"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Konfigurace tinyfirewallu\n"
-"\n"
-"Zde je možné nastavit jednoduchý firewall pro Mandrake Linux.\n"
-"Pro výkonné řešení firewallu použijte specializovanou\n"
-"distribuci MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Nyní budete dotázáni v několika otázkách na služby, které chcete mít\n"
-"přístupné z Internetu. Zamyslete se prosím dobře nad těmito\n"
-"otázkami, protože bezpečnost počítače je důležitá.\n"
-"\n"
-"Pokud nepoužíváte dále vyjmenované služby, zakažte je prosím.\n"
-"Tyto volby lze kdykoliv změnit spuštěním této aplikace!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Potřebujete na tomto počítači web server, který je přístupný\n"
-"z Internetu? Pokud potřebujete webový server přístupný pouze\n"
-"z tohoto stroje, odpovězte na tuto otázku Ne.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Používáte na tomto serveru jmenný server? Pokud ne a nepotřebujete\n"
-"předávat jiným počítačům informace o IP adresách, odpovězte Ne.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Chcete povolit příchozí ssh (Secure Shell) spojení? Ssh je náhrada\n"
-"za telnet, která umožňuje vzdálené přihlášení. Pokud nyní\n"
-"používáte telnet, je velmi vhodné přejít na ssh. Telnet není\n"
-"kryptovaný -- kdokoliv může zjistit heslo, pokud ho při telnetu\n"
-"použijete. Na rozdíl od telnetu je ssh kryptované, takže není\n"
-"možné, aby kdokoliv zjistil heslo."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Chcete povolit příchozí spojení přes telnet?\n"
-"Je to VELMI nebezpečné, tak jak už bylo vysvětleno na předchozí\n"
-"obrazovce. Důrazně doporučujeme odpovědět Ne a použít namísto\n"
-"telnetu ssh.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Chcete použít FTP server, který bude přístupný z Internetu? Pokud ano,\n"
-"je doporučeno jej používat pouze pro anonymní přístup. Protože FTP\n"
-"pro přístup nepoužívá žádné kryptování, je možné, že zaslané heslo může\n"
-"získat kdokoliv, i potenciální útočník.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Používáte mailový server? Pokud posíláte poštu přes klienta pine,\n"
-"mutt nebo jiného textového klienta, tak zřejmě ano. V jiných\n"
-"případech to zakažte na firewallu.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Používáte na tomto serveru POP nebo IMAP? Ty se používají\n"
-"pro přístup lidí k emailovým účtům (ne přes web).\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Používáte jádro verze 2.2. Pokud je síťová IP adresa automaticky\n"
-"přidělena počítači doma nebo v práci (dynamické přidělení),\n"
-"potřebujeme tuto možnost povolit. Je to tento případ?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Bude váš počítač synchronizován s jiným počítačem?\n"
-"Většinou se to používá v organizacích s větším počtem Unix/Linux\n"
-"počítačů pro synchronizaci logování a podobně. Pokud nejste\n"
-"součástí většího celku nebo jste o ničem podobném neslyšeli,\n"
-"synchronizaci nepotřebujete."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfigurace je hotova. Je možné zapsat tyto změny na disk?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Nelze otevřít %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Chyba při otevírání %s pro zápis: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr "Ne, nepotřebuji DHCP"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr "Ano, potřebuji DHCP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr "Ne, nepotřebuji NTP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr "Ano, potřebuji NTP"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr "Neukládat"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr "Uložit & Konec"
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "Průvodce konfigurací firewallu"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr "Ne (zakázat na firewalu)"
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr "Ano (povolit na firewalu)"
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr "Čekejte prosím... ověřuji nainstalované balíčky"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Selhala instalace potřebných balíčků : %s a Bastille.\n"
-" Pokuste se je instalovat ručně."
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Síťový počítač (klient)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS server, SMB server, Proxy server, SSH server"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Kancelář"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Pracovní stanice s Gnome"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Nástroje pro váš Palm Pilot nebo Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Pracovní stanice"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Firewall/Router"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Doménová jména a síťový informační server"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Programy pro kancelář: textové procesory (kword, abiword), tabulkové "
-"procesory (kspread, gnumeric), prohlížeče pdf a další"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Nástroje pro zvuk: přehrávače mp3 a midi, mixéry a další"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Knihy a Howto o Linuxu a Free Software"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Pracovní stanice s KDE"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm a další"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimédia - video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Skupina programů pro mail, newsy, web, přenos souborů a chat"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Databáze"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Databázové servery PostreSQL nebo MySQL"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Nástroje pro snadnou konfiguraci počítače"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimédia - zvuk"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utility"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentace"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Konzolové nástroje"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Poštovní server postfix, server pro news Inn"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internetová stanice"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimédiální stanice"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Nastavení"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Další grafické desktopy Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"K Desktop Environment, základní grafické prostředí s kolekcí doprovodných "
-"nástrojů"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Grafické prostředí"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache a Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Nástroje pro vytváření a vypalování CD"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Kancelářská stanice"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm a další"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Grafické programy jako např. Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Knihovny pro vývoj v C a C++, programy a hlavičkové soubory"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Síťový server"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Pošta/Groupware/News"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Hry"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Přehrávače a editory videa"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimédia - grafika"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Zábavné programy: deskové hry, strategie, atd."
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Kolekce nástrojů pro čtení a posílaní mailů (pine, mutt, tin..) a pro "
-"prohlížení Webu"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivace, emulátory, minitoring"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Správa osobních financí"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Grafické prostředí s uživatelsky přívětivým seskupením aplikací a pracovní "
-"plochou"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Klienti pro různé verze protokolu ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Internetová brána"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programy pro přehrávání/editaci zvuku a videa"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Další grafické desktopy"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editory, shelly, souborové nástroje, terminály"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programy na správu financí jako např. gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Správce osobních informací (PIM)"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimédia - vypalování CD"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Vědecká stanice"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
deleted file mode 100644
index 97fdf158a..000000000
--- a/perl-install/share/po/cy.po
+++ /dev/null
@@ -1,12371 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (c) 1999 MandrakeSoft
-# Dafydd Tomos <dafydd@imaginet.co.uk>, 1999
-# Rhoslyn Prys <rhoslyn.prys@ntlworld.com>, 2002
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-11 12:35-0000\n"
-"Last-Translator: Rhoslyn Prys <rhoslyn.prys@ntlworld.com>\n"
-"Language-Team: Cymraeg/Welsh <cy@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-14\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Ffurfweddu pob pen yn annibynnol"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Defnyddiwch estyniad Xinerama"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ffurfweddu cerdyn \"%s\" (%s) yn unig"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Ffurfweddiad amlben"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Mae eich system yn cynnal ffurfweddiad amlben.\n"
-"Beth hoffech ei wneud?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Cerdyn graffig"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Dewiswch gerdyn graffig"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Dewiswch wasanaethwr X"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Gwasanaethwr X"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Dewiswch yrrwr X"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Gyrrwr X"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Pa ffurfweddiad oXFree hoffech ei gael?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Mae eich cerdyn yn medru cael cefnogaeth cyflymu caledwedd 3D ond dim ond "
-"gyda XFree %s.\n"
-"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
-"yn 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s"
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s gyda cyflymu caledwedd 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
-"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s gyda cyflymu caledwedd 3D ARBROFOL"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Mae eich cerdyn yn medru cael cefnogaeth cyflymu caledwedd 3D ond dim ond "
-"gyda XFree %s.\n"
-"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR.\n"
-"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
-"yn 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (gyrrwr gosod dangoswr)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Ffurfweddiad XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Dewiswch faint y cof eich cerdyn graffeg"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Dewiswch opsiynau ar gyfer y gwasanaethwr"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Dewiswch fonitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Y ddau paramedr pwysig yw'r raddfa adnewyddu fertigol, sef y raddfa mae'r\n"
-"holl sgrin yn cael ei adnewyddu, ac yn fwyaf pwysif y raddfa cydamseru\n"
-"llorweddol, sef y raddfa mae'r llinellau sganio'n cael eu dangos.\n"
-"\n"
-"Mae'r BWYSIG IAWN mad ydych yn enwi monitor gyda graddfa cydamseru\n"
-"sydd tu hwnt i allu eich monitor: mae modd difrodi eich monitor drwy wneud "
-"hynny.\n"
-"Os oes gennych amheuaeth, dewiswch raddfa is."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Graddfa adfywio llorweddol"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Graddfa adfywio fertigol"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor heb ei ffurfweddu"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Cerdyn graffig heb ei ffurfweddu eto"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Cydraniad heb ei ddewis eto"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Ydych chi eisiau profi eich ffurfweddiad?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Rhybydd: gall profi'r cerdyn graffig hwn rewi eich cyfrifiadur"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Profi'r ffurfweddiad"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"ceisiwch newid rhai paramedrau"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Digwyddodd gwall:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Gadael mewn %d eiliad"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ydi'r gosodiad hwn yn gywir?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Digwyddodd gwall, ceisiwch newid rhai paramedrau"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Cydraniad"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Dewiswch y cydraniad a'r dyfnder lliw"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Cerdyn graffeg: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Gwasanaethwr XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Rhagor"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Iawn"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modd Arbennigwr"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Dangos y cyfan"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Cydraniadau"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Gosodiad yr yr allweddell: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Math o lygoden: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Dyfais llygoden: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "HorizSync Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "VertRefresh Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Cerdyn graffeg: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Dynodiad y cerdyn graffeg: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Cof graffeg: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Dyfnder lliw: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Cydraniad: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "GwasanaethwrXFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Gyrrwr XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Yn parataoi cyfluniad X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Beth ydych eisiau ei wneud?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Newid Monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Newid cerdyn Graffeg"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Dewisiadau newid Gwasanaethwr"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Newid Cydraniad"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Dangos gwybodaeth"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Profi eto"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Gadael"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Cadw'r newid?\n"
-"Y ffurfweddiad presenol yw:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X wrth ddechrau"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Hoffwn osod eich cyfrifiadur i gychwyn X yn awtomatig ar ôl cychwyn\n"
-"Hoffech chi X i ddechrau wedi i chi ail-gychwyn?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 lliw (8 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil o liwiau (15 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil o liwiau (16 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliwn o liwiau (24 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 biliwn o liwiau (32 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "16 MB neu fwy"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA safonol, 640x480 ar 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Uwch VGA, 800x600 ar 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Cydnaws a 8514, 1024x768 rhyngleswyd ar 87 Hz (nid 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 rhyngleswyd ar 87Hz, 800x600 ar 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 ar 60 Hz, 640x480 ar 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA di-rygnlesig, 1024x768 ar 60 Hz, 800x600 ar 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA Amledd Uchel, 1024x768 ar 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor sydd yn medru dangos 1600x1200 ar 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor sydd yn medru dangos 1600x1200 ar 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Adran gyntaf o'r rhaniad cychwyn"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Adran gyntaf o'r gyrrwr (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Gosodiad SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Lle ydych chi eisiau gosod y llwythwr cychwyn?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Gosodiad LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO gyda dewislen testun"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "Lilo gyda dewislen graffig"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Cychwyn o DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Prif ddewisiadau Bootloader"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Bootloader ar waith"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Gosodiad Bootloader"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Dyfais cychwyn"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (nid yw'n gweithio gyda hen BIOSau)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Cryno"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "cryno"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Modd fideo"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Oedi cyn cychwyn delwedd rhagosodedig"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Cyfrinair"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Cyfrinair (eto)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Cyfyngu dewisiadau llinell orchymyn"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "cyfyngu"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Glanhau /tmp bob tro fyddwch yn cychwyn"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Union faint o RAM os oes angen (canfod %dMB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Galluogi aml-broffil"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Rhowch maint RAM mewn MB"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Ceisiwch eto"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Nid yw'r cyfrineiriau'n cydfynd"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Neges Init"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Agor Oedi Cadarnwedd"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Goramser cychwyn y cnewyllyn"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Galluogi cychwyn o CD?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Galluogi Cychwyn OF?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Systm Weithredu Rhagosodedig?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"Rydych wedi penderfynnu gosod y llwythwr cychwyn ar raniad\n"
-"Mae hyn yn awgrymu bod gennych lwythwr cychwyn ar ddisg caled eisoes: (ee "
-"System Commander).\n"
-"\n"
-"Gyda pha ddisg ydych chi'n cychwyn?"
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Dyma'r cofnodion gwahanol.\n"
-"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Ychwanegu"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Gorffen"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Newid"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Systwmau Gweithredu eraill (SunOS..)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Systemau Gweithredu Eraill (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Systemau gweithredu Eraill (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Delwedd"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Gwraidd"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Atodi"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Darllen-ysgrifennu"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabl"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Anniogel"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Label"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Rhagosodedig"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Maint intrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "NoVideo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Tynnu cofnod"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Nid yw label gwag yn cael ei ganiatau"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Rhaid enwi delwedd cnewyllyn"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Rhaid pennu rhaniad cyfnewid"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Wedi canfod rhyngwynebau %s %s"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Oes gennych un arall?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Oes gennych rhyngwynebau %s?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Na"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Iawn"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Gweler gwyboadeth am galedwedd"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Gosod gyrrwr ar gyfer cerdyn %s %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modiwl %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Pa yrrwr %s ddylwn drio?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Mewn rhai achosion, mae gyrrwr %s angen gwybodaeth ychwanegol i weithio'n\n"
-"gywir, er fel rheol mae'n gweithio'n iawn hebddo. Hoffech chi enwi'r "
-"dewisiadau\n"
-"ychwanegol ar ei gyfer neu adael i'r gyrrwr archwilio'r peiriant am y "
-"wybodaeth mae\n"
-"ei angen? Weithiau bydd yr archwilio'n atal y peiriant, ond ni ddylai achosi "
-"unrhyw\n"
-"ddifrod"
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Atoholi"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Enwi dewisiadau"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Medrwch ddarparu ddewisiadau i fodiwl %s.\n"
-"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x fel "
-"'0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Medrwch nawr ei ddewis i fodiwl. %s.\n"
-"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
-"e.e, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Dewisiadau modiwl:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Methodd llwytho modiwl %s\n"
-"Hoffech chi drio eto gyda pharamedrau eraill?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "mynediad i raglenni X"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "mynediad i offer rpm"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "caniatáu \"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "mynediad i ffeiliau gweinyddol"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(wedi ychwanegu %s yn barod)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Mae'r cyfrinair yn rhy syml"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Rhowch enw defnyddiwr"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Ychwanegu defnyddiwr"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Rhowch enw defnyddiwr\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Derbyn defnyddiwr"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Enw cywir"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Enw defnyddiwr"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Cragen"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Eicon"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Awtomewngofnodi"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Medraf osod eich cyfrifiadur i fewngofnodi'nawtomatig ar gyfer un "
-"defnyddiwr\n"
-"Hoffech chi wneud hyn?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Dewis y defnyddiwr rhagosodedig:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Dewiswch y rheolwr ffenestr i rhedeg:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Dewiswch iaith i'w defnyddio."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Gallwch ddewis ieithoedd eraill fydd ar gael ar ôl gosod"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Popeth"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Caniatáu pob defnyddiwr"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Arddull"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Dim rhannu"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Medrwch allforio gan ddefnyddio NFS neu Samba. Pa un hoffech chi"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Mae pecyn gorfodol %s ar goll"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Dileu"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "Cychwyn userdrake"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"Mae rhannu yn ôl defnyddiwr yn defnyddio \"rhannu ffeiliau\" grwp.\n"
-"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Croeso i Crackers"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Gwael"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Safonol"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Uchel"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "Uwch"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoia"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Rhaid defnyddio'r lefel hwn a gofal. Mae'n gwneud eich system yn haws ei\n"
-"ddefnyddio ond mae'n sensitif iawn: rhaid peidio ei ddefnyddio fel peiriant "
-"i'w\n"
-"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Mae'r cyfrinair wedi ei alluogi, ond ni argymellir ei ddefnyddio fel "
-"cyfrifiadur rhwydwaith."
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Dyma'r safon sy'n cael ei argymell ar gyfer diogelwch cyfrifiadur fydd yn "
-"cael ei gysylltu â'r Rhyngrwyd fel cleient."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Mae rhai cyfyngiadau, ac mae rhagor o wiriadau awtomatig yn cael eu rhedeg "
-"bob nos"
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Gyda'r lefel diogelwch hwn, mae defnydd y system fel gwasanaethwr yn "
-"bosibl.\n"
-"Mae diogelwch yn ddigon uchel i ddefnyddio'r system fel gwasanaethwr sy'n "
-"derbyn\n"
-"cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw eich "
-"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Wedi ei seilio ar y lefel flaenorol, ond mae'r system yn hollol gaeëdig.\n"
-"Mae nodweddion diogelwch ar eu uchaf."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Dewiswch lefel diogelwch"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Lefel diogelwch"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Defnyddiwch libsafe ar gyfer gwasanaethwyr"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Llyfrgell sy'n diogelu rhag gorlif byffer ac ymosodiadau llinellau fformatio."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Croeso i %s y dewiswrsytemau gweithredu! \n"
-"\n"
-"Dewiswch system weithredu o'r rhestr uchod neu\n"
-"arhoswch %d eiliad am gychwyn rhagosodedig\n"
-"\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Croeso i GRUB, y dewiswr systemau gweithredu!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Defnyddiwch allweddi %c a %c i ddewis pa gofnod i'w amlygu."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Gwasgwch Enter i gychwyn y system weithredu, 'g' i olygu'r"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "gorchmynion cyn cychwyn, neu 'o' am y llinell orchymyn."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Bydd y cofnod wedi ei amlygu'n cychwyn yn awtomatig ymhen %d eiliad."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "dim digon o le yn /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Penbwrdd"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Dewislen Cychwyn"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Nid oes modd gosod y llwythwr cychwyn ar adran %s\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "nid yw cymorth wedi ei weithredu eto.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Ffurfweddu'r Math o Gychwyn"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Ffeil"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Ffeil/_Gadael"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Monitor Categoreiddio Math Newydd"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Monitor Math Newydd"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Monitor traddodiadol"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Monitor Gtk+ Traddodiadol"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Cychwyn Auora wrth gychwyn y cyfrifiadur"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Modd Lilo/grub"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Modd Yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Ryych yn defnyddio %s fel Rheolwr Cychwyn.\n"
-"Cliciwch Ffurfweddu i gychwyn dewin gosod"
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Ffurfweddu"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Modd System"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Cychwyn y system X-Window o'r cychwyn"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Na, tydw i ddim eisiau awto-mewngofnodi"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Iawn, rwyf eisiau awto-mewngofnodi gyda (defnyddiwr, penbwrdd)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "Iawn"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "maethu agor/etc/inittab ar gyfer darllen: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d munud"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 munud"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d eiliad"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Nid wyf yn medru creu lluniau o'r sgrin cyn rhannu"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Bydd lluniau o'r sgrin ar gale ar ôl gosod yn %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Ffrainc"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "Gwlad Belg"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Gweriniaeth Tsiec"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Yr Almaen"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Groeg"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Norwy"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Sweden"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Yr Iseldiroedd"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Yr Eidal"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Awstria"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Yr Unol Daleithiau"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Gwnewch gopi wrth gefn o'ch data yn gyntaf"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Darllenwch yn ofalus!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Os ydych yn bwriadu defnyddio aboot, gofalwch adael lle gwag (2048 sector yn "
-"ddigon)\n"
-"ar ddechrau'r ddisg."
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Gwall"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Dewin"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Dewiswch weithred"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Mae gennych un rhaniad FAT mawr\n"
-"(yn cael ei ddefnyddio gan Microsoft Dos/Windows\n"
-"Awgrymaf eich bod yn newid maint y rhaniad\n"
-"(cliciwch arno, ac yna clicio \"Newid maint\"]"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Cliciwch ar raniad"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Manylion"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "jwrnaleiddiwyd FS?"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Gwag"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Arall"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Mathau ffeil-system:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Creu"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Math"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Defnyddiwch \"%s\" yn lle hynny"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Dileu"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Defnyddiwch \"Dad-osod\" yn gyntaf"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Wedi newid y math o raniad %s bydd yr holl ddata ar y rhaniad yn cael ei "
-"golli"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Dewiswch raniad"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Dewiswch rhaniad arall"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Gadael"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Cyffredinol > Arbennigwr"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Arbennigwr > Cyffredinol"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Dadwneud"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Parhau beth bynnag?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Gorffen heb arbed"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Gorffen heb ysgrifennu y tabl rhaniadau?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Ydych eisiau cadw newidiadau /etc/fstab"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Awto ddynodi"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Clirio i gyd"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Gwybodaeth am y ddisg caled"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Mae pob rhaniad cynradd wedi ei ddefnyddio"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Alla'i ddim ychwanegu unrhyw raniadau ychwanegol"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr "I gael mwy o raniadau, dilëwch un er mwyn gallu creu rhaniad estynedig"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Cadw'r tabl rhaniad"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Adfer y tabl rhaniad"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Achub y tabl rhaniadau"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Ail-lwytho'r tabl rhaniad"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Cyfrwng symudadwy'n awto-osod"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Dewiswch ffeil"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Nid oes gan y tabl rhaniad wrth gefn yr un maint\n"
-"Parhau?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Rhybudd"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Rhowch flopi yn y disg-yrrwr\n"
-"Mi fydd yr holl wybodaeth ar y fflopi yma yn gael ei ddileu"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Yn trio achub y tabl rhaniadau"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Gwybodaeth fanwl"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Pwynt gosod"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Dewisiadau"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Newid maint"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Symud"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Fformatio"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Gosod"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Ychwanegu i RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Ychwanegu i LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Dad-osod"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Tynnu o RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Tynnu o LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Newid RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Defnyddiwch ar gyfer cylchol"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Creu rhaniad newydd"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Sector dechreuol: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Maint mewn MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Math o ffeilsystem: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Pwynt gosod:"
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Dewis"
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Tynnu'r ffeil cylch-ol?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Newid math y rhaniad"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Pa fath o system ffeil ydych chi eisiau?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Newid o ext2 i ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Lle'r hoffech chi odod y ffeil cylch-ol %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Lle ydych am osod dyfais %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Methu dad setio'r pwynt gosod gan fod y rhaniad yn cael ei ddefnyddio ar "
-"gyfer cylch-ol\n"
-"Tynnu'r cylch-ol yn gyntaf"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Cyfrifo ffiniau system ffeiliau FAT"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Newid maint"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Nid oes modd newid maint y rhaniad"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Dylai'r holl ddata ar y rhaniad gael ei ategu"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Ar ôl newid maint rhaniad %s, bydd yr holl ddata ar y rhaniad yma yn cael ei "
-"golli"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Dewiswch y maint newydd"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Maint mewn MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Pa ddisg hoffech chi symud iddo?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sector"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Pa sector hoffech chi symud iddo?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Symud"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Yn symud rhaniad.."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Dewis RAID presennol i ychwanegu iddo"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "newydd"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Dewis LVM presennol i ychwanegu iddo"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "Enw LVM"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Niid oes modd defnyddio'r rhaniad ar gyfer cylch-ol"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Cylch-ol"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Enw ffeil cylch-ol"
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Rhowch enw ffeil"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr ""
-"Mae'r ffeil yn cael ei ddweis eisoes gam gylch-ol arall, dewiswch un arall"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Mae'r ffeil yn bodoli eisoes. Defnyddiwch hwn?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Dewisiadau gosod"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Amrywiol"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "dyfais"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "lefel"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "maint darn"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Byddwch ofalus: mae'r weithred hon yn beryglus"
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Pa fath o rhaniad %s"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Mae'n flin gen i ond ni alla'i dderbyn creu /boot mor bell o ddechrau'r disg "
-"(ar silindr > 1024).\n"
-"Naill ai nad ydych yn defnyddio LILO a ddim angen /boot neu byddwch yn "
-"defnyddio LILO a ni fydd yn gweithio."
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Mae'r rhaniad rydych wedi dewis ychwanegu fel y gwraidd (/) wedi'i leoli yn "
-"bellach na 1024ed silindr eich disg a nid oes gennych rhaniad /boot.\n"
-"Os ydych yn bwriadu defnyddio y rheolwr bwtio LILO, nodwch fe ddylech greu "
-"rhaniad /boot"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Rydych wedi dewis meddalwedd rhannu RAID fel gwraidd (/)\n"
-"Nid oes llwythwr cychwyn yn medru trin hwn heb rhaniad /boot\n"
-"Cofiwch ychwanegu rhaniad /boot"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Mae tabl rhaniad disg-yrrwr %s am gael ei ysgrifennu i'r disg!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Mi fydd angen i chi ail-fwtio cyn i'r newidiadau gymeryd lle"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Wedi fformatio rhaniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Fformatio"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Yn fformatio ffeil cylch-ol %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Yn fformatio rhaniad %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Cuddio ffeiliau"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Symud ffeiliau i'r rhaniad newydd"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"Mae cyfarwyddiadur %s eisoes yn cynnwys peth data\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Symud ffeiliau i'r rhaniad newydd"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Copďo %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Tynnu %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "Mae rhaniad %s yn cael ei alw'n %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Dyfais: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Llythyren disg-yrrwr yn DOS: %s (dim ond dyfalu)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Math: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Enw :"
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Dechrau: sector %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Maint: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sector"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Silindr %d i silindr %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Wedi fformatio\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Heb ei fformatio\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Gosodwyd\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Ffeil(iau) Cylch-ol:\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Y rhaniad i'w bwtio fel rheol\n"
-" (ar gyfer bwt MS-DOS, nid ar gyfer lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Lefel %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Maint darn %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Disg RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Enw ffeil cylch-ol: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Mwy na thebyd rhaniad Gyrrwr\n"
-"yw'r rhaniad hwn. Gwell gadael\n"
-"llonnydd iddo.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Mae'r rhaniad Bootstrap\n"
-"hwn ar gyfer cychwyniad\n"
-"dwbl eich system\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Maint: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometreg: %s silindr, %s pen, %s sector\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Gwybodaeth:"
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Diag LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Math tabl rhaniad: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "ar fws %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Dewisiadau: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Allwedd amgryptio system ffeil : "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Dewiswch eich allwedd amgryptio system ffeiliau"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Mae'r allwedd amgryptio'n rhy syml ( mae'n rhaid bod o leiaf %d nod o hyd)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "Nid yw'r allweddi amgryptio'n cydfynd"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Allwedd amgryptio"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Allwedd amgryptio (eto)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Newid y math"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Cliciwch ar gyfrwng"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Chwiliwch am wasanaethwyr"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "mi fethodd y %s fformatio o %s"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Nid wyf yn gwybod sut i fformatio %s ym math %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "methodd gosod rhaniad %s yng gnhyfeiriadur %s"
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "methodd fdisk gyda cod gadael %d neu arwydd %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "gwall dadosod %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "syml"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "gyda /usr"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "Gwasanaethwr"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Does dim modd defnyddio JFS ar rhaniadau llai na 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Rjhaid i bwyntiau gosod gynnwys / arweiniol"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Mae yna eisoes raniad gyda pwynt gosod %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Dyai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Mae angen gwir system ffeilio (ext2, reiserfs) ar gyfer y pwynt gosod\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Nid oes digon o le ar gyfer awtoddynodi"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Dim i'w wneud"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Gwall wrth agos %s ar gyfer ysgrifennu %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Digwyddodd gwall - ni chanfyddwyd dyfeisiadau dilys i greu systemau ffeil "
-"arnynt. Gwiriwch eich caledwedd am ffynhonell yr anhawster."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Does gennych chi ddim rhaniadau!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"Mae GNU/Linux yn system aml-ddefnyddiwr, ac mae hyn yn golygu bod pob\n"
-"defyddiwr yn medru cael ei ddewisiadau ei hun, ei ffeiliau ei hun ac yn y "
-"blaen.\n"
-"Gallwch ddarllen yr \"User Guide\" i ddysgu mwy. Ond yn anhebyg i \"gwraidd"
-"\", sef\n"
-"y gweinyddwr, ni fydd modd i'r defnyddiwr fyddwch yn eu creu yma'n medru\n"
-"newid dim ond eu ffeiliau a'u ffurfweddiad ei hun. Bydd rhaid i chi greu un\n"
-"defnyddiwr cyffredin ar gyfer chi eich hun. Dyma'r cyfrif ddylech "
-"mewngofnodi\n"
-"iddo ar gyfer defnydd bob dydd. Er ei fod yn ymarferol iawn i fewngofnodi "
-"fel\n"
-"\"root\" gall fod yn beryglus iawn!. Gall y camgymeriad lleiaf olygu nad yw "
-"eic\n"
-"system yn gweithio ragor. Os wnewch chi gamgymeriad mawr fel defnyddiwr\n"
-"cyffredin, byddwch ond yn colli rhywfaint o wybodaeth, ac nid y system "
-"gyfan.\n"
-"Yn gyntaf rhowch eich enw go iawn. Dose dim rhaid, wrth gwrs - mae modd\n"
-"i chi rhoi beth bynnag hoffech chi. Bydd DraX yn cymryd yr enw cyntafa'i roi "
-"yn\n"
-"yr \"Enw defnyddiwr\" Dyma'r enw bydd y defnyddwr hwn yn ei ddefnyddio i\n"
-"fewngofnodi i'r system. Mae modd ei newid. Yna rhowch gyfrinair. Nid yw\n"
-"cyfrianair defnyddiwr cyffredin mor bwysig ag un \"gwraidd\" o safbwynt "
-"diogelwch\n"
-"ond nid yw hynny'n rheswm i'w esgeuluso - wedi'r cyfan mae eich ffeiliau "
-"mewn\n"
-"perygl\n"
-"\n"
-"Os wnewch chi glicio \"Derbyn Defnyddiwr\", bydd modd ychwanegu fanint\n"
-"fynnoch. Ychwanegwch ddefnyddiwr ar gyfer pob un o'ch ffrindiau: eich tad\n"
-"neu eich chwaer, e.e. Ao ôl ychwanegu'r holl ddefnyddwyr, cliciwch \"Gorffen"
-"\".\n"
-"\n"
-"Bydd clicio'r botwm \"Uwch\" yn caniatáu i chi newid y \"gragen\" "
-"rhagosodedig\n"
-"ar gyfer y defnyddiwr hwnnw (bash yw'r rhagosodedig)."
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Dyma'r rhaniadau Linux sydd wedi canfod ar eich disg caled\n"
-"Gallwch gadw'r dewisiadau sydd wedi eu gwneud gan y dewin, mae'n nhw'n iawn\n"
-"ar gyfer y rhanfwyaf o osodiadau. Os ydych am wneud newidiadau, rhaid i chi "
-"ol eiaf\n"
-"ddiffinio rhaniad gwraidd (\"/\"). Peidiwch dewis rhaniad sy'n rhy fach neu "
-"fyddwch\n"
-"yn methu llwytho digon o feddalwedd. Os hoffech gadw eich data ar raniad "
-"arall,\n"
-"bydd angen i chi greu rhaniad ar gyfer \"/home\"( ond dim ond os oes mwy nag "
-"un\n"
-"rhaniad Linux ar gael)\n"
-"Mae pob rhaniad yn cael ei restri fel hyn: \"Enw\", \"Maint\".\n"
-"\n"
-"Mae \"Enw\" yn cael ei drefnu: \"math o ddisg caled\", rhif y disg caled\",\n"
-"\"rhif rhaniad\" (e.e, \"hda1\").\n"
-"\n"
-"\"Math o ddisg caled\" yw \"hdos mai disg caled IDE sydd gennych a\n"
-"\"sd\" os mai SCSI yw'r disg caled.\n"
-"\n"
-"Mae \"Rhif Disg Caled\" yn lythyren ar ôl \"hd\" neu \"sd\". Ar gyfer\n"
-"disg caled IDE mae:\n"
-"\n"
-" * \"a\" yn golygu \"prif ddisg caled ar y rheolwr IDE cyntaf\",\n"
-"\n"
-" * \"b\" yn golygu \"disg caled gwas ar y rheolwr IDE cyntaf\",\n"
-"\n"
-" * \"c\" yn golygu \"prif ddisg caled ar yr ail reolwr IDE\",\n"
-"\n"
-" * \"d\" yn golygu \"disg caled gwas ar yr ail reolwr IDE\".\n"
-"\n"
-"Gyda disgiau caled SCSI, mae \"a\" yn golygu \"ID SCSI isaf \", a \"b\" yn "
-"golygu\n"
-"\"ID SCSI ail isaf\", ag ati."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"Mae gosodiad Mandrake Linux ar gael ar draws nifer o CD-ROM. Mae DrakX\n"
-"yn gwybod os yw pecyn penodol wedi ei leoli ar CD-ROM arall a bydd yn bwrw\n"
-"allan yr CD cyfredol a gofyn am y llall.."
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"Mae'n amser penderfynu pa raglenni rydych am eu gosod ar eich\n"
-"system. Mae yna filoedd o becynnau ar gael ar gyfer Mandrake Linux, ond\n"
-"does dim disgwyl i chi wybod amdanyn nhw i gyd.\n"
-"\n"
-"Os ydych chi'n gwneud gosodiad safonol o'r CD-ROM, bydd gofyn i chi\n"
-"ddweud pa CDau sydd gennych. Gwiriwch labeli'r CDau ac amlygu'r blychau\n"
-"sy'n cyfateb i'r CDau sydd gennych ar gyfer y gosodiad. Cliciwch \"Iawn\"\n"
-"pan ydych yn barod i barhau.\n"
-"\n"
-"Mae'r pecynnau wedi eu didoli yn grwpiau sy'n cyfateb i ddefnydd penodol\n"
-"ar eich peiriant. Mae'r grwpiau wedi eu rhannu yn bedair adran:\n"
-"\n"
-" * \"Man Gwaith\": os ydych yn bwriadu defnyddio eich peiriant fel man\n"
-"gwaith yna dewiswch un o'r grwpiau cyfatebol.\n"
-"\n"
-" * \"Datblygiadol\": os yw'r peiriant yn cael ei ddefnyddio i raglenni, "
-"dewiswch\n"
-" y grwpiau perthnasol\n"
-"\n"
-" * \"Gwasanaethwr\": os ydych am i'r peiriant gael ei ddefnyddio fel\n"
-"gwasanaethwr bydd modd i chi ddewis y gwasanaethau cyffredin rydych am\n"
-"eu cael ar eich peiriant.\n"
-"\n"
-" * \"Amgylchedd Graffigol\": dyma'r lle i ddewis eich amgylchedd graffigol.\n"
-"Rhaid dewis o leiaf un er mwyn cael man gwaith graffigol!\n"
-"\n"
-"Bydd symud cyrchwr y llygoden dros enw grwp yn amlygu esboniad byr am y\n"
-"grwp hwnnw. Os ydych wedi dad-ddewis pob grwp wrth wneud gosodiad\n"
-"arferol ac nid uwchraddiad), bydd dialog yn ymddangos a chynnig\n"
-"dewisiadau amrywiol ar gyfer y gosodiad lleiaf\n"
-"\n"
-" * \"Gyda X\" Gosod y nifer lleiaf o becynnau i gael penbwrdd graffigol\n"
-"i weithio.\n"
-"\n"
-" * \"Gyda dogfennaeth elfennol\" Gosod y system sylfaenol yn ogystal\n"
-"a gwasanaethau elfennol a'u dogfennau. Mae'r gosodiad hwn yn addas\n"
-"ar gyfer gosod gwasanaethwr.\n"
-"\n"
-" * \"Gosodiad bychan iawn\" Gosod y lleiafswm posibl i greu system Linux\n"
-"llinell orchymyn weithredol. Tua 65MB o faint.\n"
-"\n"
-"Mae clicio blwch \"Dewis pecynnau unigol\". yn ddefnyddiol os ydych\n"
-"yn gyfarwydd gyda'r pecynnau sy'n cael eu cynnig neu os ydych eisiau\n"
-"rheolaeth lwyr dros yr hyn sy'n cael ei osod\n"
-"\n"
-"Os ydych wedi cychwyn y gosodiad ym modd \"Diweddaru\", bydd modd i\n"
-" chi ddad-ddewis pob grwp er mwyn osgoi gosod unrhyw becyn newydd.\n"
-"Mae hyn yn ddefnyddiol ar gyfer trwsio neu ddiweddaru system sy'n bod "
-"eisoes.\n"
-" "
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Yn olaf, yn dibynnu ar eich dewis o becynnau unigol, bydd coeden yn cynnwys\n"
-"yr holl becynnau wedi eu dosbarthu yn ôl grwp ac is grwp. Wrth bori'r "
-"goeden,\n"
-"gallwch ddewis grwp cyfan, isgrwp neu becyn unigol.\n"
-"\n"
-"Pryd bynnag fyddwch wedi dewis pecyn ar y goeden, bydd disgrifiad yn\n"
-"ymddangos ar y dde. Pan fyddwch wedi gorffen dewis , cliciwch y botwm\n"
-" \"Gosod\" fydd yn cychwyn y drefn osod. Gan ddibynnu ar gyflymder eich\n"
-"caledwedd a'r nifer o becynnau i'w gosod, gall gymryd peth amser i'w "
-"gwblhau.\n"
-"Bydd amser tan orffen yn cael ei ddangos ar y sgrin er mwyn i chi weld a "
-"oes\n"
-"amser i wneud paned!\n"
-"\n"
-"!! Os oes pecyn gwasanaethwr wedi ei ddewis yn fwriadol neu am ei fod yn "
-"rhan\n"
-"o grwp cyfan, bydd angen i chi gadarnhau eich bod eisiau i'r gwasanaethwyr\n"
-"gael eu gosod. Ym Mandrake Linux mae unrhyw wasanaethwr sydd wedi ei\n"
-"osod yn cael ei gychwyn fel rhagosodiad wrth gychwyn. Hyd yn oed os ydynt\n"
-"yn ddiogel a doedd dim materion pryder pan gafodd y dosbarthiad ei ryddhau,\n"
-"mae'n bosibl i fylchau diogelwch gael eu darganfod wedi i'r fersiwn hwn o\n"
-"Mandrake Linux gael ei gwblhau. Os nad ydych yn gwybod beth mae\n"
-"gwasanaeth arbennig i fod i'w wneud na pham mae wedi ei osod, yna cliciwch\n"
-"\"Na\". Bydd clicio \"Iawn\" yn gosod y gwasanaethau hynny a byddant yn\n"
-"cael eu cychwyn yn ddiofyn drwy ragosodiad!!\n"
-"\n"
-"Mae'r dewis \"Dibyniad Awtomatig\"yn analluogi'r deialog rhybudd sy'n\n"
-"ymddangos bob tro fydd y gosodwr yn dewis pecyn yn awtomatig.\n"
-"Mae hyn yn digwydd am ei fod wedi penderfynu ei fod angen bodloni\n"
-"dibyniad gyda phecyn arall er mwyn cwblhau'r gosodiad yn llwyddiannus\n"
-"\n"
-"Mae'r eicon disg medal bychan ar waelod y rhestr yn caniatáu llwytho'r\n"
-"rhestr pecynnau dewiswyd yn ystod gosodiad blaenorol. Bydd clicio\n"
-"ar yr eicon hwn yn gofyn i chi osod yn y peiriant disg meddal grëwyd ar\n"
-"ddiwedd gosodiad arall. Gwelwch yr ail neges o'r cam diwethaf ar sut i\n"
-"greu disg meddal o'r fath."
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"Dyma eich cyfle i gysylltu gyda'r rhyngrwyd/rhwydwaith.Os hoffech chi\n"
-"gysylltu eich cyfrifiadur i'r Rhyngrwyd neu i rwydwaith lleol, cliciwch\n"
-"\"Iawn\" . Bydd awtoganfod dyfeisiadan rhwwydwaith a modem yn\n"
-"cychwyn. Os yw'r canfod yn methu, dad-diciwch y blwch \"Defnyddiwch\n"
-"awto ganfod\" y tro nesaf. Mae gennych y dewis i beidio ffurfweddi eich\n"
-"rhwydwaith, neu i'w wneud rhywbryd eto. Os fell, cliciwch y botwm \"Diddymu"
-"\".\n"
-"\n"
-"Cysylltiadau posib: modem traddodiadol,modem IDSN, cyswllt ADSL,\n"
-"modem cable ac yn olaf cyswllt LAN syml (Ethernet).\n"
-"\n"
-"Byddwn ni ddim yn mynd i fanylion y ffurfweddiad yma. Gwnewch yn siwr\n"
-"fod gennych yr holl fanylion gan eich darparwr gwasanaeth rhyngrwyd (ISP)\n"
-"neu weinyddwr system\n"
-"\n"
-"Mae modd i chi edrych ar bennawd yn y llawlyfr ar gyswllt a'r Rhyngrwyd am\n"
-"fanylion ffurfweddiad, neu aros nes i'ch system gael ei osod a defnyddio'r\n"
-"rhaglen sydd yno i ffurfweddu eich cyswllt.\n"
-"\n"
-"Os ydych am ffurfweddu eich rhwydwaith yn hwyrach ar ôl y gosodiad neu\n"
-"os ydych wedi gorffen ffurfweddi eich cyswllt a'r rhwydwaith, yna cliciwch\n"
-"\" Diddymu.\"."
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Mae modd i chi ddewis pa wasanaethau rydych am eu cychwyn\n"
-"wrth gychwyn eich cyfrifiadur.\n"
-"\n"
-"Dyma'r holl wasanaethau sydd ar gael gyda'r gosodiad cyfredol. Darllenwch\n"
-"y rhestr yn ofalus a dad-diciwch y rhai nad oes eu hangen bob tro wrth "
-"gychwyn.\n"
-"\n"
-"Mae modd cael esboniad byr am wasanaeth wrth eu dewis. Ond, os nad ydych\n"
-"yn siwr a yw'r gwasanaeth o werth neu beidio, mae'n well cadw at y drefn\n"
-"rhagosodedig\n"
-"\n"
-"!!Mae angen i chi fod yn ofalus iawn os ydych am ddefnyddio eich peiriant\n"
-"fel gwasanaethwr: mwy na thebyg na fyddwch eisiau cychwyn unrhyw\n"
-"wasanaethau nad oes eu hangen. Cofiwch bod cael nifer o wasanaethau\n"
-"wedi eu galluogi ar y gwasanaethwr, fod yn beryglus. Yn gyffredinol,\n"
-"mae'n well dewis dim ond y gwasanaethau mae'n rhaid eu cael.\n"
-"!!"
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr "Mae gGNU/Linux yn rheoli amser drwy GMT (Greenwich Mean Time)"
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X (am X Window System) yw calon rhag wyneb graffigol GNU/Linux\n"
-"y mae pob amgylchedd graffig megis KDE, Gnome, AfterStep\n"
-"WindowMaker ag ati, sydd o fewn Mandrake Linux, yn dibynnu. Yn yr\n"
-"adran hon bydd DrakX yn ceisio ffurfweddu X yn awtomatig.\n"
-"\n"
-"Mae'n anarferol iddo fethu oni bai bod y caledwedd yn hen iawn (neu yn\n"
-"newydd iawn). Os yw'n llwyddo, bydd yn cychwyn X ar y X cydraniad\n"
-"gorau posibl yn ddibynnol ar faint y monitor. Bydd ffenestr yn ymddangos\n"
-"gan ofyn os ydych yn ei weld.\n"
-"\n"
-"Os ydych yn gwneud gosodiad \"Arbenigwr\", byddwch yn defnyddio'r \n"
-"dewin ffurfweddu X. Gwelwch yr adran gyfatebol o'r llawlyfr am ragor o\n"
-"wybodaeth am y dewin.\n"
-"\n"
-"Os ydych yn medru gweld y neges ac ateb \"Iawn\", yna bydd DrakX yn\n"
-"mynd ymlaen i'r cam nesaf. Os nad ydych yn gweld y neges mae'n golygu\n"
-"bod y ffurfweddiad yn anghywir a daw i ben ymhen 10 eiliad, gan adfer y "
-"sgrin."
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Efallai na fyddwch yn fodlon iawn gyda dagosiad ffurfweddiad X y tro\n"
-"cyntaf fyddwch yn ei ddefnyddio (sgrin yn rhy fach, i un ochr, ag ati)\n"
-"Felly mae DrakX yn gofyn i chi os yw'r ffurfweddiad yn iawn. Bydd\n"
-"hefyd yn cynnig ei newid drwy gynnig restr o foddau dilys daeth o hyd\n"
-"iddynt, i chi gael dewis un.\n"
-" \n"
-"Os nad ydych yn medru cael X i weithio, dewiswch \" Newid cerdyn graffig"
-"\",\n"
-"dewiswch \"Cerdyn heb ei restri\", ac yna wrth ddewis gwasanaethwr, dewis\n"
-"\"FBDev\". Mae hwn yn ddewis diogelwch sy'n gweithio gydag unrhyw gerdyn\n"
-"graffig modern. Dewiswch \" Profwch eto\" i fod yn siwr."
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Yn y diwedd bydd gofyn i chi ddewis os ydych am weld rhyngwyneb graffig\n"
-"wrth gychwyn y cyfrifiadur. Sylwch y bydd y cwestiwn hwn yn cael ei ofyn\n"
-"hyd yn oed os nad ydych yn dewis profi'r ffurfweddiad. Yn amlwg, byddwch\n"
-"am ateb \"Na\" os yw eich peiriant i weithredu fel gwasanaethwr, neu os\n"
-"nad oeddech yn llwyddiannus yn cael eich dangosydd i ffurfweddu'n gywir.."
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"Mae gan yr CD-ROM Mandrake Linux modd achub. Gallwch ei gyrraedd drwy\n"
-"gychwyn y peiriant o'r CD-ROM, gwasgu'r fysell >>F1<< o'r cychwyn a theipio\n"
-" >>rescue<<wrth yr anogwr. Ond os nad yw eich cyfrifiadur yn medru cychwyn\n"
-"drwy'r CD-ROM dylech ddod yn ôl i'r cam hwn am gymorth mewn o leiaf dwy "
-"sefyllfa:\n"
-"\n"
-" *wrth lwytho'r llwythwr cychwyn, bydd DrakX yn ailysgrifennu'r adran bwtio "
-"[MBR]\n"
-"ar eich prif ddisg [oni bai eich bod yn defnyddio rheolwr cychwyn arall] fel "
-"eich bod\n"
-"yn medru cychwyn yn Windows neu GNU/Linux [gan gymryd bod gennych Windows\n"
-"ar eich system]. Os fyddwch angen ailosod Windows, bydd proses osod "
-"Microsoft yn\n"
-"ail ysgrifennu'r adran bwtio, ac felly ni fydd modd i chi gychwyn GNU/"
-"Linux!\n"
-"\n"
-" * os oes anhawster yn codi ac nid ydych yn medru cychwyn GNU/Linux o'r "
-"ddisg\n"
-"caled, y ddisg feddal fydd yr unig ffordd i gychwyn GNU/Linux.Mae'n cynnwys\n"
-"nifer dda o offer i adfer y system, gwall teipio anffodus, camdeipio "
-"cyfrinair neu\n"
-"rhesymau eraill\n"
-"\n"
-"Pan fyddwch yn clicio ar y cam hwn, bydd gofyn i chi rhoi disg meddal yn y "
-"gyrrwr.\n"
-"Rhaid i'r ddisg fod yn wag neu fod dim gwahaniaeth colli'r data arno.Does "
-"dim\n"
-"angen ei fformatio gan y bydd DrakX yn ailysgrifennu'r holl ddisg."
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Yn awr mae angen i chi ddewis lle ar eich disg caled i osod eich\n"
-"system weithredu Linux Mandrake. Os yw eich disg caled yn wag neu\n"
-"os oes yna system weithredol eisoes yn cymryd yr holl le sydd ar gael,\n"
-"bydd angen i chi greu rhaniadau arno.Yn y bon, mae rhannu disg caled\n"
-"yn golygu ei rhannu'n rhesymegol i greu lle i osod eich system Mandrake\n"
-"Linux newydd.\n"
-"\n"
-"Gan bo effaith y broses rannu'n ddidroi nôl gall creu rhaniadau fod yn "
-"broses\n"
-"bygythiol a straenus os ydych yn ddefnyddiwr dibrofiad. Yn ffodus, mae na\n"
-"ddewin sy'n symleiddio'r broses. Cyn cychwyn, darllenwch y llawlyfr a\n"
-"cymerwch bwyll.\n"
-"\n"
-"Os ydych yn rhedeg y gosodiad ym modd Arbenigwr, byddwch yn agor\n"
-"DiskDrake, rhaglen rhannu Mandrake Linux, sy'n caniatáu i chi wneud mân\n"
-"newidiadau i'ch rhaniadau. Gw. pennawd DiskDrake yn y llawlyfr. O'r\n"
-"rhyngwyneb gosod, gallwch ddefnyddio'r dewiniaid drwy glicio ar fotwm\n"
-"\"Dewin\" yn y ddeialog.\n"
-"\n"
-"Os oes yna raniadau wedi eu diffinio, un ai o osodiad blaenorol neu\n"
-"gan offeryn rhannu arall, dewiswch y rheini i osod eich system Linux.\n"
-"\n"
-"Os nad oes rhaniadau wedi eu diffinio, bydd angen i chi eu creu gan\n"
-"ddefnyddio'r dewin. Gan ddibynnu ar ffurfweddiad eich disg caled, mae\n"
-"nifer o ddewisiadau ar gael:\n"
-"\n"
-" * \"Defnyddiwch lle gwag\": mae'r dewis hwn yn arwain at greu rhaniadau\n"
-"awtomatig o'ch disg(iau) caled. Bydd dim cwestiynau eraill.\n"
-"\n"
-" * \"Defnyddiwch y rhaniad cyfredol\": mae'r dewin wedi canfod un neu fwy\n"
-"o raniadau Linux cyfredol ar eich disg caled. Os ydych am eu defnyddio,\n"
-"cliciwch y dewis hwn.\n"
-"\n"
-" * \"Defnyddiwch le gwag ar raniad Windows\": os yw Microsoft Windows ar\n"
-"eich disg caled ac yn cymryd y lle i gyd, bydd rhaid i chi greu lle ar gyfer "
-"data\n"
-"Linux. I wneud hynny gallwch ddileu eich rhaniad a data Microsoft Windows\n"
-"(gw. atebion\"Dileu'r ddisg gyfan\" neu \"Modd Arbenigwr) neu ail-lunio "
-"maint\n"
-"rhaniad Microsoft Windows. Mae modd ail lunio maint y rhaniad heb golli "
-"data.\n"
-"Argymhellir gwneud hyn os ydych am ddefnyddio Mandrake Linux a Microsoft\n"
-"Windows ar yr un cyfrifiadur.\n"
-"\n"
-" Cyn gwneud y dewis hwn, cofiwch y bydd maint eich rhaniad Microsoft "
-"Windows\n"
-"yn llai nag yw ar hyn o bryd. Bydd gennych llai o le yn Microsoft Windows i "
-"gadw\n"
-"data neu i osod meddalwedd newydd.\n"
-"\n"
-" * \"Dileu'r holl ddisg\" os ydych am ddileu'r holl ddata a rhaniadau "
-"presennol\n"
-"ar eich disg caled a'u cyfnewid am system Mandrake Linux, yna dewiswch hwn.\n"
-"Byddwch yn ofalus wrth wneud hyn gan na fydd modd troi'n ôl ar ôl "
-"cadarnhau.\n"
-"\n"
-" !! Os ydych yn dewis hwn, byddwch yn colli'r holl ddata ar eich disg. !!\n"
-"\n"
-" * \"Tynnu Windows\": bydd hwn yn dileu popeth o'r disg caled a chychwyn "
-"popeth\n"
-"o'r newydd, gan gynnwys creu rhaniadau newydd. Bydd yr holl ddata ar y ddisg "
-"yn\n"
-"cael ei golli\n"
-"\n"
-" !! Os ydych yn dewis hwn, byddwch yn colli'r holl ddata ar eich disg. !!\n"
-"\n"
-" * \"Modd Arbenigwr\": dewiswch hwn os ydych am rannu'r disg caled\n"
-"gyda llaw. Byddwch ofalus - mae'n ddewis pwerus a pheryglus. Mae modd\n"
-"i chi golli'ch holl ddata. Peidiwch dewis hwn oni bai eich bod yn gwybod "
-"beth\n"
-"ydych yn ei wneud."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"Dyna ni. Mae'r gosodiad wedi ei gwblhau ac mae eich system GNU/Linux\n"
-"yn barod i'w ddefnyddio. Cliciwch \"Iawn\" i ailgychwyn y peiriant. Mae "
-"modd\n"
-"i chi gychwyn GNU/Linux neu Windows, prun bynnag sydd orau gennych\n"
-"(os oes gennych y ddwy system ar eich peiriant), gynted ag y bydd eich\n"
-"peiriant yn ail gychwyn. \n"
-"\n"
-"Mae'r botwm \"Uwch\" yn dangos dau fotwm:\n"
-"\n"
-" *\" creu disg meddal awto-gosod\": i greu disg meddal gosod fydd yn creu\n"
-"gosodiad cyflawn heb gymorth gweithredwr, yn debyg i'r gosodiad sydd\n"
-"newydd ei ffurfweddu.\n"
-"\n"
-"Sylwer bod dau ddewis gwahanol i'w gael wedi clicio'r botwm:\n"
-"\n"
-" *\"Ail chwarae\". Gosodiad rhannol awtomatig gan bod y cam o greu rhaniad\n"
-"yn cael ei hepgor.\n"
-"\n"
-" *Awtomeiddio\".Gosodiad cwbl awtomatig: mae'r disg caled wedi ei\n"
-"ailysgrifennu'n llwyr, a'r holl ddata wedi ei golli.\n"
-"\n"
-"Mae hwn yn nodwedd ddefnyddiol iawn pan yn gosod ar nifer fawr o beiriannau\n"
-"tebyg. Gw. yr adran Auto install ar ein safle gwe.\n"
-"\n"
-" *\"Cadw'r dewis o becynnau\": mae hyn yn cadw'r dewis o becynnau wnaed\n"
-"cynt. Yna wrth wneud gosodiad arall, rhowch ddisg meddal yn y gyrrwr a "
-"rhedeg\n"
-"y gosodiad gan fynd i'r sgrin cymorth drwy wasgu'r fysell [F1], a chyflwyno\n"
-">>linux defcfg=\"disg meddal\"<<.\n"
-"\n"
-"(*) Bydd angen disg meddal wedi ei fformatio fel FAT (i greu un yn GNU/"
-"Linux,\n"
-"teipiwch \"mformat a:\")"
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Rhaid i bob rhaniad sydd newydd eu henwi gael eu fformatio ar gyfer eu\n"
-"defnyddio (mae fformatio'n golygu creu system ffeilio)\n"
-"\n"
-"Efallai y byddwch eisiau ailfformatio rhai rhaniadau presennol i ddileu "
-"data\n"
-"sydd arnynt. Os ydych am wneud hynny, dewiswch y rhaniadau hynny hefyd.\n"
-"\n"
-"Sylwch nad oes angen ailfformatio'r holl raniadau sy'n bodoli eisoes. "
-"Rhaid \n"
-"ailfformatio'r rhaniadau sy'n cynnwys y system weithredu [megis \"/\",\"usr"
-"\"\n"
-"neu \"/var\") ond nid oes rhaid i chi ail fformatio rhaniadau sy'n cynnwys\n"
-"data rydych am ei gadw (e.e. \"/home\").\n"
-"\n"
-"Byddwch ofalus wrth ddewis rhaniadau. Ar ôl fformatio bydd yr holl ddata ar\n"
-"y rhaniadau'n cael eu dileu ac ni fydd modd ei adfer.\n"
-"\n"
-"Cliciwch \"Iawn\" pan ydych yn barod i fformatio rhaniadau.\n"
-"\n"
-"Cliciwch \"Dileu\" os ydych am ddewis rhaniad arall ar gyfer eich gosodiad\n"
-"Mandrake Linux newydd\n"
-"\n"
-"Cliciwch \"Uwch\" os ydych am ddewis rhaniadau i'w gwirio am flociau\n"
-"gwallus ar y ddisg."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Mae eich system weithredu Mandrake Linux newydd yn cael ei osod.\n"
-"Yn dibynnu ar y nifer o becynnau byddwch yn eu gosod a chyflymder\n"
-"eich cyfrifiadur, bydd yn cymryd rhwng ychydig o amser a sbel go lew.\n"
-"\n"
-"Amynedd..."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-"Ar yr adeg pan fyddwch yn gosod Mandrake Linux, mae'n debygol y bydd\n"
-"rhai pecynnau wedi eu diweddaru ers y rhyddhad cychwynnol. Bydd rhai \n"
-"gwallau wedi eu cywiro a materion diogelwch wedi eu datrys. I ganiatáu\n"
-"i chi fanteisio ar hyn mae cynnig i chi eu llwytho i lawr o'r rhyngrwyd.\n"
-"Dewiswch \"Iawn\" os oes gennych gyswllt gweithredol â'r rhyngrwyd,\n"
-"neu \"Na\"os ydych am osod pecynnau mwy diweddar rhywbryd eto.\n"
-"\n"
-"Bydd dewis \"Iawn\" yn dangos rhestr o leoedd o le mae modd derbyn\n"
-"diweddariadau. Dewiswch yr un agosaf atoch. Yna, bydd coeden dewis\n"
-"pecynnau yn ymddangos: Wedi i chi benderfynu ar eich dewis, cliciwch\n"
-"\"Gosod\" i estyn a gosod y pecynnau hynny neu \"Diddymu\" i beidio."
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Cyn parhau dylech ddarllen amodau'r drwydded yn ofalus. Mae'n ymwneud\n"
-"â holl ddosbarthiad Mandrake Linux, ac os nad ydych yn cytuno â'r holl\n"
-"amodau, cliciwch ar fotwm \"Gwrthod\" fydd yn terfynu'r gosodiad yn syth.\n"
-"I barhau gyda'r gosodiad, cliciwch fotwm \"Derbyn\"."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"Yma mae angen dewis lefel diogelwch ar gyfer y peiriant. Fel rheol,\n"
-"y mwyaf agored yw'r peiriant, y mwyaf pwysig yw'r data yr uchaf\n"
-"ddylai'r lefel diogelwch fod. Er hynny, mae diogelwch yn dod ar draul\n"
-"hwylustod. Gw. pennod MSEC yn y \"Reference Manual\" am\n"
-"wybodaeth ar ystyr y lefelau hyn\n"
-"\n"
-"Os nad ydych yn siwr beth i'w ddewis, dewiswch y rhagosodedig."
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Yn awr mae angen i chi ddewis pa raniadau i'w defnyddio ar gyfer gosodiad\n"
-"eich system Mandrake Linux. Os oes rhaniadau wedi eu diffinio eisoes, un\n"
-"ai drwy osodiad blaenorol o GNU/Linux neu gan offeryn rhannu arall, mae\n"
-"modd i chi ddefnyddio'r rhaniadau presennol. Os nad, rhaid i' rhaniadau'r\n"
-"ddisg caled gael eu diffinio.\n"
-"\n"
-"I greu rhaniadau, rhaid yn gyntaf ddewis disg caled. Mae modd dewis disg\n"
-"i'w rannu drwy glicio ar \"hda\" ar gyfer y ddisg IDE cyntaf., \"hdb\" ar\n"
-"gyfer yr ail, \"sda\" ar gyfer y ddisg SCSI cyntaf, ac yn y blaen.\n"
-"\n"
-"I greu'r rhaniad, mae modd defnyddio'r dewisiadau hyn:\n"
-"\n"
-" *\"Clirio'r cyfan\": mae'r dewis hwn yn dileu pob rhaniad ar ddisg.\n"
-"\n"
-" *\"Awto ddynodi\": mae'r dewis hwn yn caniatáu i chi greu'n awtomatig\n"
-"Ext2 a rhaniadau cyfnewid mewn lle gwag ar eich disg.\n"
-"\n"
-" *\"Rhagor\": yn rhoi mynediad i ragor o nodweddion:\n"
-"\n"
-" *\"Cadw'r tabl rhaniad\": mae hwn yn cadw'r tabl rhaniad i ddisg\n"
-"meddal. Mae hyn yn ddefnyddiol ar gyfer adfer tabl rhaniad, os fydd angen\n"
-"\n"
-" \"Adfer y tabl rhaniad\": mae hyn yn caniatáu adfer tabl rhaniad "
-"blaenorol\n"
-"o ddisg meddal.\n"
-"\n"
-" \"Achub y tabl rhaniad\": os yw eich tabl rhaniad wedi ei ddifrodi, mae "
-"modd\n"
-"ceisio ei adfer drwy'r dewis yma. Byddwch ofalus a chofiwch fod modd iddo\n"
-"fethu.\n"
-"\n"
-" \"Ai-lwytho'r tabl rhaniad\": mae hwn yn dileu pob newid ac yn ail "
-"lwytho'r\n"
-"tabl rhaniad gwreiddiol.\n"
-"\n"
-" *\"awto osod cyfrwng symudol\": dad-diciwch y dewis hwn i osod a dad "
-"osod\n"
-"gyda llaw, cyfryngau symudol megis disgiau meddal ac CD-ROMau\n"
-"\n"
-" *\"Dewin\": defnyddiwch y dewis hwn os ydych am ddefnyddio'r dewin i "
-"rannu\n"
-"eich disg caled. Dyma'sydd orau os nad oes gennych wybodaeth sylweddol ar\n"
-"rhannu\n"
-"\n"
-" *\"Dadwneud\": defnyddiwch y dewis hwn i ddileu eich newidiadau\n"
-"\n"
-" *\"Newid o'r modd arferol/arbenigwr\": mae hwn yn caniatáu "
-"gweithredoedd\n"
-"pellach ar raniadau. (Math, dewisiadau, fformat) ac mae'n cynnig mwy o\n"
-" wybodaeth.\n"
-"\n"
-" *\"Gorffen\":pan fyddwch wedi gorffen rhannu eich disg, bydd hwn yn cadw\n"
-" eich newidiadau yn ôl i'r ddisg\n"
-"\n"
-"Sylwer: mae modd cyrraedd y dewisiadau drwy'r bysellfwrdd. Symudwch drwy'r\n"
-" rhaniadau gan ddefnyddio [Tab] a'r saethau [I Fyny/I Lawr].\n"
-"\n"
-"Pan fydd rhaniad wedi ei ddewis, medrwch ddefnyddio:\n"
-"\n"
-" *Ctrl-c i greu rhaniad newydd (pan fo rhaniad gwag yn cael ei ddewis);\n"
-"\n"
-" *Ctrl-d i ddileu rhaniad;\n"
-"\n"
-" *Ctrl-m i greu pwynt gosod;\n"
-"\n"
-"I dderbyn gwybodaeth am yr amrywiol systemau ffeil sydd ar gael, darllenwch "
-"y\n"
-" pennawd ar ext2fs yn y ``Reference Manual''.\n"
-"\n"
-"Os ydych yn gosod ar beiriant PPC, bydd angen i chi greu \"ymlwythwr\" HFS\n"
-" bychan o leiaf 1MB o faint, fydd yn cael ei ddefnyddio gan ymlwythwr "
-"yaboot.\n"
-"Os ydych yn dewis gwneud y rhaniad rhywfaint yn fwy, dyweder tua 50MB, yna\n"
-"gall fod yn le defnyddiol i gadw cnewyllyn sbâr a delweddau ramdisk ar "
-"gyfer\n"
-" sefyllfaoedd cychwyn argyfyngus!"
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Mae mwy nag un rhaniad Microsoft wedi ei ganfod ar eich disg caled.\n"
-"Dewiswch ba un rydych am newid ei faint er mwyn gosod eich\n"
-"system weithredu Mandrake Linux newydd\n"
-"\n"
-"Mae pob rhaniad wedi ei restri fel hyn: \"Enw Linux\", \"Enw Microsoft\",\n"
-"\"Maint\".\n"
-"\n"
-"Mae \"Enw Linux\" wedi ei strwythuro fel hyn: \"math o ddisg caled\", \n"
-"\"rhif y disg caled\", \"rhif y rhaniad\" (e.e., \"hda1\").\n"
-"\n"
-"\"hd\" yw'r \"Math o ddisg caled\" os mai disg caled IDE sydd gennych\n"
-"a \"sd\" yw disg caled SCSI.\n"
-"\n"
-"Llythyren wedi'r \"hd\" neu \"sd\" yw'r \"Rhif disg caled\" bob tro.\n"
-"Gyda disgiau caled IDE:\n"
-"\n"
-" * mae \"a\" yn golygu \"prif ddisg caled ar y rheolydd IDE cyntaf\",\n"
-"\n"
-" * mae \"b\" yn golygu \"ddisg caled gwas ar y rheolydd IDE cyntaf\",\n"
-"\n"
-" * mae \"c\" yn golygu \"prif ddisg caled ar yr ail reolydd IDE\",\n"
-"\n"
-" * mae \"d\" yn golygu \"ddisg caled gwas ar yr ail reolydd IDE\",\n"
-"\n"
-"Gyda disgiau caled SCSI mae \"a\" yn golygu'r \"enw SCSI isaf\", ac mae\n"
-" \"b\" yn golygu'r \"ail enw SCSI isaf\", ag ati.\n"
-"\n"
-"Mae \"Enw Windows\" yn cyfeirio at y llythyren y disg caled o dan\n"
-" Windows (\"C:\" yw'r ddisg neu raniad cyntaf)."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Amynedd... Gall y weithred hon gymryd rhai munudau."
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Mae DrakX am wybod a ydych am wneud gosodiad rhagosodedig.\n"
-"Hwn sy'n cael ei (\"Argymell\") neu a ydych eisiau mwy o reolaeth\n"
-" (\"Arbenigwr\"). Mae gennych hefyd y dewis o wneud gosodiad newydd neu\n"
-" uwchraddio system Mandrake Linux cyfredol.\n"
-"\n"
-" *\"Gosod\" Mae hwn yn dileu'r hen system yn llwyr. Mewn gwirionedd, yn\n"
-"dibynnu ar ffurf eich peiriant, bydd modd cadw rhai hen raniadau (Linux neu\n"
-"eraill) heb eu newid.\n"
-"\n"
-" *\"Uwchraddio\" Mae'r gosodiad yn caniatáu i chi uwchraddio'r pecynnau\n"
-"sydd wedi eu gosod ar eich system Mandrake Linux. Bydd yn cadw'r rhaniadau\n"
-"cyfredol ar eich disg caled yn ogystal â ffurfweddiad defnyddwyr. Mae pob\n"
-"cam ffurfweddiad arall ar gael fel mewn gosodiad arferol.\n"
-"\n"
-" *\"Uwchraddio Pecynnau'n Unig\" Mae hwn yn ddewis newydd i ganiatáu\n"
-"uwchraddio system Mandrake Linux cyfredol tra'n cadw'r holl ffurfweddiad\n"
-"system heb ei newid. Mae ychwanegu pecynnau newydd i'r system hefyd \n"
-"yn bosibl.\n"
-"\n"
-"Dylai'r uwchraddiad weithio gyda systemau Mandrake Linux yn cychwyn\n"
-"o rifyn \"8.1\" \n"
-"\n"
-"Gan ddibynnu ar eich gwybodaeth am GNH/Linux, dewiswch un o'r canlynol:\n"
-"\n"
-" *Argymhellir: dewiswch hwn os nad ydych wedi gosod system weithredu\n"
-"GNU/Linux o'r blaen. Bydd y gosod yn hawdd a bydd ond rhaid i chi ateb\n"
-"rhai cwestiynau\n"
-"\n"
-" *Arbenigwr: os oes gennych wybodaeth drylwyr am GNU/Linux, mae modd\n"
-"i chi ddewis y math yma o osodiad. Bydd hwn yn caniatáu i chi osod y system\n"
-"yn ôl eich gofynion eich hun. Bydd ateb rhai o'r cwestiynau'n anodd os nad\n"
-"oes gennych wybodaeth drylwyr o GNU/Linux, felly peidiwch â dewis hwn os\n"
-" nad ydych yn gwybod beth rydych yn ei wneud."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Fel arfer mae DrakX yn dewis y bysellfwrdd cywir ar eich cyfer ( gan "
-"ddibynnu pa\n"
-" iaith rydych wedi ei ddewis) ac ni fyddwch yn gweld y cam hwn. Er hynny,\n"
-"efallai nad oes gennych fysellfwrdd sy'n cyfateb yn union i'ch iaith: e.e., "
-"os ydych\n"
-"yn Americanwr sy'n siarad Cymraeg, efallai eich bod am gadw eich "
-"bysellfwrdd\n"
-"Americanaidd. Neu os ydych yn siarad Cymraeg ac yn byw yn Hong Kong mae'r\n"
-" un sefyllfa'n codi. Yn y ddwy achos bydd angen i chi fynd yn ôl i'r cam yma "
-"yn y\n"
-" gosodiad a dewis y bysellfwrdd perthnasol o'r rhestr.\n"
-"\n"
-"Cliciwch ar fotwm \"Rhagor\" i dderbyn y rhestr lawn o fysellfyrddau sy'n "
-"cael eu\n"
-" cynnal.\n"
-" "
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Dewiswch eich dewis iaith ar gyfer y gosod a'r defnydd o'r system\n"
-"\n"
-"Bydd clicio ar y botwm \"Uwch\" yn caniatáu i chi ddewis ieithoedd eraill "
-"i'w\n"
-" gosod ar eich peiriant gwaith. Bydd dewis ieithoedd eraill yn gosod "
-"ffeiliau\n"
-" penodol sy'n cynnwys dogfennaeth a rhaglenni yn yr ieithoedd hynny.\n"
-"Er enghraifft, os ydych yn westeiwr ar gyfer defnyddwyr o Sbaen, dewiswch \n"
-" Gymraeg fel y brif iaith yn golwg coeden ac yn yr adran Uwch cliciwch ar "
-"y \n"
-"seren lwyd sy'n cyfateb i \"Spaeneg|Sbaen\". \n"
-"\n"
-"Sylwer bod modd gosod myw nag un iaith. Unwaith i chi ddewis unrhyw \n"
-"leoleiddiad ychwanegol cliciwch y botwm \"Iawn\" i barhau."
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"Drwy ragosodiad mae DrakX yn cymryd bod gennych lygoden dau fotwm a bydd yn "
-"ei osod i efelychu botwm tri. Bydd DrakX yn gwybod yn awtomatig p'un a'i "
-"yw'n lygoden PS/2, cyfresol neu USB.\n"
-"\n"
-" Os hoffech chi bennu math arall o lygoden, dewiswch y math priodol o'r "
-"rhestr.\n"
-"\n"
-"Os byddwch yn dewis llygoden ar wahân i'r rhagosodedig, byddwch yn gweld "
-"ffenestr profi'r llygoden. Defnyddiwch y botymau a'r olwyn i wneud yn siwr "
-"fod y gosodiadau'n gweithio. Os nad yw'r llygoden yn gweithio'n iawn pwyswch "
-"ar y bylchwr neu [Return] i \"Dileu\" a dewis eto."
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Dewiswch y porth cywir. Mae porth \"COM1\" o dan MS Windows yn cael ei alw "
-"yn\n"
-"\"ttyS0\" yn GNU/Linux, e.e."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"Mae hwn yn fan pwysig ynghylch diogelwch eich system GNU/Linux; rhaid\n"
-"rhoi cyfrinair \"root\".\"root\" yw gweinyddwr y system a'r unig un sydd â'r "
-"hawl\n"
-"i wneud diweddariadau, ychwanegu defnyddwyr, newid ffurfweddiad cyffredinol\n"
-"y system, ac yn y blaen. Yn fyr mae \"root\" yn medru gwneud popeth! Dyna\n"
-"pam mae'n rhaid dewis cyfrinair sy'n anodd ei ddyfalu - bydd DrakX yn dweud\n"
-" wrthych os yw'n rhy hawdd. Fel y gwelwch, mae modd peidio gorfod cynnig\n"
-" cyfrinair, ond rydym yn argymell yn erbyn hyn, hyd yn oed am un rheswm:\n"
-" peidiwch â meddwl bod eich systemau gweithredu eraill yn ddiogel rhag\n"
-" camgymeriadau, gan eich bod wedi cychwyn o GNU/Linux. Gan fod \"root\" yn\n"
-" medru goresgyn unrhyw gyfyngiadau a dileu data'n anfwriadol ar bob "
-"rhaniad,\n"
-" drwy fynd at y rhaniadau'n ddi-hid, yna mae'n bwysig ei gwneud hi'n anodd "
-"bod\n"
-" yn \"root\".n\n"
-"Dylai'r cyfrinair fod yn gyfuniad o rifau a llythrennau ac o leiaf 8 nod o "
-"hyd.\n"
-" Peidiwch ysgrifennu'r cyfrinair ar bapur - bydd yn ei gwneud hi'n rhy "
-"hawdd\n"
-" gwanhau'r system.\n"
-"\n"
-"Er hynny, peidiwch â gwneud y cyfrinair yn rhy hir neu gymhleth am fod rhaid "
-"i\n"
-"chi fedri ei gofio heb ormod o drafferth.\n"
-"\n"
-"Ni fydd y cyfrinair yn cael ei ddangos ar y sgrin wrth i chi ei deipio. "
-"Felly bydd\n"
-" rhaid i chi deipio'r cyfrinair ddwywaith i leihau'r siawns o deipio gwall. "
-"Os ydych\n"
-"yn digwydd gwneud yr un gwall teipio ddwywaith, bydd rhaid defnyddio'r "
-"cyfrinair\n"
-" \"anghywir\" i gychwyn y tro cyntaf.\n"
-"\n"
-"Yn y modd arbenigwr, bydd gofyn os fyddwch yn cysylltu â gwasanaethwr\n"
-"dilysu, megis NIS neu LDAPl\n"
-"\n"
-"Os yw eich rhwydwaith yn defnyddio protocol LDAP (neu NIS) ar gyfer dilysu,\n"
-" dewiswch \"LDAP\" (neu \"NIS\") fel dilyswr. Os nad ydych yn gwybod,\n"
-" gofynnwch i'ch gweinyddwr system.\n"
-"\n"
-"Os nad yw eich cyfrifiadur wedi ei gysylltu i unrhyw rwydwaith wedi ei "
-"weinyddu,\n"
-" byddwch angen dewis \"Ffeiliau lleol\" ar gyfer dilysu."
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"Mae LILO a grub yn llwythwyr cychwyn ar gyfer GNU/Linux. Fel rheol\n"
-"mae'r cam yma'n gwbl awtomatig. Mewn gwirionedd mae DrakX yn\n"
-"dadansoddi'r adran gychwyn ac yn gweithredu ar yr hyn mae'n ei ganfod\n"
-"yma:\n"
-" *os yw'n canfod adran gychwyn Windows mae'n gosod adran cychwyn\n"
-"grub/LILO yno yn ei le. Felly bydd modd i chi gychwyn un ai GNU/Linux\n"
-"neu system weithredu arall.\n"
-"\n"
-" *os fydd yn canfod adran gychwyn grub neu LILO, bydd yn gosod un mwy\n"
-"diweddar yn ei le.\n"
-"\n"
-"Os oes amheuaeth, bydd DrakX yn dangos blwch deialog gyda dewisiadau.\n"
-"\n"
-" * \"Llwythwr cychwyn i'w ddefnyddio\": mae gennych dri dewis:\n"
-"\n"
-" * \"GRUB\":os mae'n well gennych grub (dewislen testun)\n"
-"\n"
-" * \"LILO\" gyda dewislen raffigol\": os mae'n well gennych LILO gyda'i\n"
-"rhagwyneb graffigol.\n"
-"\n"
-" * \"LILO\" gyda dewislen raffigol\": os mae'n well gennych rhagwyneb "
-"dewislen\n"
-"testun.\n"
-"\n"
-" * \"Dyfais cychwyn\": yn y rhan fwyaf o achosion ni fyddwch yn newid\n"
-"y rhagosodedig (\"/dev/hda\"), ond os mae'n well gennych, gall y llwythwr\n"
-"cychwyn gael ei osod ar yr ail ddisg caled (\"/dev/hdb\"), neu hyd yn oed "
-"ar\n"
-"ddisg meddal (\"/dev/fd0\")\n"
-" * \"Oedi cyn cychwyn y ddelwedd rhagosodedig\": wrth ail gychwyn y "
-"cyfrifiadur\n"
-"dyma'r oedi sy'n caniatáu i'r defnyddiwr ddewis o fewn y ddewislen llwythwr "
-"cychwyn,\n"
-"llwythwr cychwyn arall yn lle'r un rhagosodedig.\n"
-"\n"
-"!!Gofalwch, os nad ydych yn gosod llwythwr cychwyn, (drwy ddewis \"Diddymu\" "
-"yma),\n"
-"rhaid i chi wneud yn siwr fod gennych fodd i gychwyn eich system Linux "
-"Mandrake.\n"
-"Hefyd, gwnewch yn siwr eich bod yn gwybod beth rydych yn ei wneud cyn newid "
-"y\n"
-"dewisiadau hyn!!\n"
-"\n"
-"Bydd clicio'r botwm \"Uwch\" yn y ddeialog yn cynnig nifer o ddewisiadau "
-"uwch,\n"
-"sydd yn cael eu cadw ar gyfer y defnyddiwr arbenigol.\n"
-"\n"
-"Wedi i chi ffurfweddi baramedrau'r llwythwr cychwyn cyffredinol, bydd rhestr "
-"o\n"
-"ddewisiadau cychwyn sydd ar gael wrth gychwyn, yn cael ei gynnig i chi.\n"
-"\n"
-"Os oes yna system weithredu arall ar eich peiriant, bydd yn cael ei "
-"ychwanegu'n\n"
-"awtomatig i'r ddewislen gychwyn. Yma cewch wneud mân newidiadau i'r "
-"dewisiadau\n"
-"presennol. Dewiswch enw a chliciwch \"Newid\" i'w newid neu ei dynnu;\n"
-"\"Ychwanegu\" i greu enw newydd; a \"Gorffen\" i fynd ymlaen i'r cam nesaf "
-"o'r gosod."
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"Mae LILO (the LInux LOader) a grub yn llwythwyr cychwyn: maent yn medru\n"
-"cychwyn un ai GNU/Linux neu unrhyw system weithredu arall sy'n bresennol\n"
-"ar eich cyfrifiadur. Fel rheol mae'r systemau hyn wedi eu canfod a'u gosod "
-"yn\n"
-"gywir. Os nad yw hyn yn gywir y tro yma, mae modd i chi ychwanegu cofnod\n"
-" gyda llaw ar y sgrin hwn. Byddwch ofalus i ddewis y paramedrau cywir\n"
-"\n"
-"Efallai na fyddwch eisiau rhoi mynediad i'r systemau gweithredu hyn i neb "
-"arall\n"
-"Os felly, gallwch ddileu'r cofnodion perthnasol.Ond bydd rhaid i chi greu "
-"disg\n"
-" cychwyn ar gyfer y systemau gweithredu rheini!"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Rhaid i chi ddangos lle rydych am osod y wybodaeth angenrheidiol i gychwyn\n"
-"GNU/Linux\n"
-"Os nad ydych yn gwybod yn union beth rydych yn ei wneud, dewiswch \"First\n"
-"sector of drive (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-"Yma byddwn yn dewis system argraffu i'ch cyfrifiadur ei ddefnyddio. Efallai\n"
-"bod systemau eraill yn cynnig un i chi, ond mae Mandrake yn cynnig tri.\n"
-"\n"
-" *pdq\" - sy'n golygu \"print, don't queue\", Hwn yw'r dewis os oes gennych "
-"gysylltiad uniongyrchol â'ch argraffydd a'ch bod eisiau medru tynnu allan o "
-"waith argraffu pan mae'r papur wedi mynd yn sownd ac nad oes gennych "
-"argraffyddion wedi eu cysylltu drwy rwydwaith. Mae'n medru trin "
-"rhwydweithiau syml ac mae rhywfaint yn araf ar gyfer rhwydweithiau. Dewiswch "
-"\"pdq\" os mai dyma yw eich tro cyntaf yn GNU/Linux., mae modd i chi newid "
-"eich dewis ar ôl gosod drwy ddefnyddio PrinterDrake o Ganolfan Rheoli "
-"Mandrake a chlicio botwm arbenigwr\n"
-" *\"CUPS\" - \"Common Unix Printing System\". Mae hwn yn wych ar gyfer "
-"argraffu i argraffyddion lleol a hanner ffordd rownd y byd. Mae'n symlach, "
-"yn medru gweithredu fel gwasanaethwr neu cleient ar gyfer yr hen system \"lpd"
-"\",felly mae'n cydweddi â'r systemau sydd wedi mynd o'i flaen. Mae'n gallu "
-"gwneud nifer o driciau, ond mae bron mor syml i'w osod \"pdq\". Os ydych "
-"amgen hwn i efelychu gwasanaethwr \"lpd\", yna rhaid cychwyn daemon \"cups-"
-"lpd\". Mae ganddo wyneb graffigol ar gyfer argraffu neu ddewis dewisiadau "
-"argraffu.\n"
-"\n"
-" *\"lprNG\" - \"line printer daemon New Generation\" Mae'r system yma'n "
-"medru gwneud yn fras yr un pethau a'r lleill, ond mae'n medru argraffu i "
-"argraffyddion ar Novell Network, gan ei fod yn cynnal protocol IPX, ac mae'n "
-"medru argraffu 'n uniongyrchol i orchmynion cragen.. Os oes angen Novell neu "
-"argraffu i orchmynion heb luniad peipen ar wahân, defnyddiwch lprNG. Yn "
-"gyffredinol, mae CUPS yn well am ei fod yn syml ac yn well wrth weithio ar "
-"draws rhwydwaith."
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"Mae DrakX yn canfod unrhyw ddyfais IDE sydd ar eich cyfrifiadur. Bydd yn\n"
-"chwilio am un neu fwy o gardiau SCSI PCI ar eich system. Os oes Cerdyn "
-"SCSI'n cael ei ganfod bydd DrakX yn awtomatig yn gosod y gyrrwr priodol.\n"
-"\n"
-"Oherwydd nad yw canfod caledwedd bob tro'n canfod darn o galedwedd, bydd\n"
-" DrakX yn gofyn i chi gadarnhau os oes cerdyn SCSI PCI yn bresennol. "
-"Cliciwch\n"
-"\"Oes\" os ydych yn gwybod bod cerdyn SCSI wedi ei osod ar eich peiriant. \n"
-"Bydd rhestr o gardiau SCSI'n ymddangos i chi ddewis un. Cliciwch \"Na\" os\n"
-"nad oes gennych galedwedd SCSI. Os nad ydych yn siwr, gallwch edrych ar y\n"
-" rhestr o galedwedd sydd wedi ei ganfod ar eich peiriant drwy ddewis\n"
-" \"Gwybodaeth am galedwedd\" a chlicio \"Iawn\". Edrychwch yn fanwl ar y\n"
-"rhestr a chlicio'r botwm \"Iawn\" i fynd yn ôl i'r cwestiwn rhag wyneb "
-"SCSI.\n"
-"\n"
-"Os ydych wedi pennu eich addaswr gyda llaw, bydd DrakX yn gofyn i chi s\n"
-" ydych am bennu dewisiadau ar ei gyfer. Dylech adael i DrakX ofyn i'r cerdyn "
-"am\n"
-" ddewisiadau penodol i'r cerdyn mae angen i'r caledwedd eu cychwyn. Mae hyn\n"
-"fel rheol yn gweithio'n dda\n"
-"\n"
-"Os nad yw DrakX yn medru holi am y dewisiadau sydd eu hangen, bydd rhaid i\n"
-" chi ddarparu'r dewisiadau gyda llaw. Darllenwch yr ``User "
-"Guide'' (pennod3,\n"
-" adran \"Collecting Information on Your Hardware\") am syniadau ar sut i "
-"gael y\n"
-" paramedrau angenrheidiol o ddogfennau'r caledwedd, o safle gwe'r "
-"gwneuthurwr\n"
-" (os oes gennych gysylltiad â'r Rhyngrwyd) neu oddi wrth Microsoft Windows "
-"(os\n"
-" ydych wedi defnyddio'r caledwedd gyda Windows ar eich system)."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"Mae modd i chi gynnig cofnodion eraill ar gyfer yaboot, un ai systemau\n"
-" gweithredol eraill, cnewyll eraill, neu ddelwedd cychwyn argyfwng.\n"
-"\n"
-"Ar gyfer systemau gweithredu eraill, mae'r cofnod yn cynnwys label a'r "
-"rhaniad\n"
-" root yn unig\n"
-"\n"
-"Ar gyfer LInux, mae yna rhai dewisiadau:\n"
-"\n"
-" *Label:sef yr enw fyddwch yn ei deipio yn anogwr yaboot i ddewis y dewis\n"
-" cychwyn.\n"
-"\n"
-" *Image: hwn fydd enw'r cnewyllyn i'w gychwyn. Fel rheol, vimlinux neu\n"
-"amrywiad ohono gydag estyniad\n"
-"\n"
-" *Root: y ddyfais \"root\" neu \"/\" ar gyfer eich gosodiad Linux.\n"
-"\n"
-" *Append: ar galedwedd Apple, mae dewis atodi cnewyllyn yn cael ei\n"
-" ddefnyddio'n eithaf aml i gynorthwyo cychwyn caledwedd fideo neu i alluogi\n"
-" efelychiad o'r llygoden bysellfwrdd sydd ar goll ar yr ail a'r trydydd "
-"botwm\n"
-"llygoden llygod arferol Apple. Dyma rhai enghreifftiau:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: mae modd defnyddio'r dewis hwn i un ai lwytho'r modiwlau "
-"cychwynnol,\n"
-" cydnabod y ddyfais cychwyn ar gael, neu i lwytho delwedd ramdisg ar gyfer\n"
-" cychwyn argyfwng.\n"
-"\n"
-" * Initrd-size: maint y ddelwedd ramdisg arferol yw 4,096bid. Os ydych "
-"angen\n"
-"dyrannu ramdisg mawr, mae modd defnyddio'r dewis hwn.\n"
-"\n"
-" * Read-write:fel rheol mae'r rhaniad \"root\" yn cael ei agor fel darllern "
-"yn unig, i\n"
-" ganiatáu gwiriad system ffeiliau cyn i'r system ddod yn \"fyw\". Yma mae "
-"modd\n"
-" diystyru'r dewis hwn.\n"
-"\n"
-" * NoVideo: petai caledwedd Apple yn profi i fod yn peri anhawsterau "
-"sylweddol,\n"
-" mae modd i chi ddewis cychwyn mewn modd \"novideo\", gyda chynhaliaeth\n"
-" ffrâm byffer cynhenid\n"
-"\n"
-" * Default: dyma'r cyflwr rhagosodedig, dewiswch hwn drwy bwyso ENTER at\n"
-" anogwr yaboot. Bydd y cofnod hefyd wedi ei amlygu gyda \"*\", os wnewch "
-"chi\n"
-" bwyso ar [Tab] i weld dewisiadau'r cychwyn."
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot yw llwythwr cychwyn ar gyfer caledwedd NewWorld MacIntosh. Mae'n \n"
-"medru cychwyn GNU/Linux, MacOS neu MacOSX os ydynt ar eich peiriant. Fel\n"
-" rheol, mae'r systemau gweithredu hyn yn cael eu canfod yn gywir a'u gosod. "
-"Os\n"
-" nad yw hyn yn digwydd, mae modd i chi ychwanegu eu cofnod gyda llaw ar y\n"
-" sgrin hwn. Byddwch ofalus i ddewis y paramedrau cywir.\n"
-"\n"
-"Prif ddewisiadau Yaboot yw:\n"
-"\n"
-" * Cychwyn Neges: neges testun sym lsy'n cael ei ddangos cyn yr anogwr\n"
-" cychwyn\n"
-"\n"
-" * Cychwyn y Ddyfais: yn dangos lle rydych am osod y wybodaeth "
-"angenrheidiol\n"
-"i gychwyn GNU/Linux. Yn gyffredinol, byddwch wedi creu rhaniad ymlwythwr yn\n"
-" gynt, i ddal y wybodaeth.\n"
-"\n"
-" * Oediad Open Firmware: yn wahanol i LILO, mae yna ddau oediad ar gael "
-"gyda\n"
-" yaboot. Mae'r cyntaf yn cael ei fesur mewn eiliadau a dyma pryd hyn mae "
-"modd\n"
-" dewis rhwng CD, cychwyn OF, MacOS neu Linux\n"
-"\n"
-" * Oediad Cychwyn y Cnewyllyn: mae'r oediad yn debyg i oediad cychwyn LILO.\n"
-"WEdi dewis Linux, bydd oediad o 0.1 eiliad cyn bod eich cnewyllyn "
-"rhagosodedig\n"
-" yn cael ei ddewis.\n"
-"\n"
-" * Galluogi Cychwyn o'r CD?: mae dewis hwn yn caniatáu i chi ddewis \"C\" "
-"am\n"
-"CD ar anogwr y cychwyn cyntaf.\n"
-"\n"
-" * Galluogi Cychwyn OF?: mae dewis hwn yn caniatáu i chi ddewis |\"N\" am\n"
-" Open Firmware ar anogwr y cychwyn cyntaf.\n"
-"\n"
-" * System Weithredu Rhagosodedig: mae modd dewis pa system weithredu fydd\n"
-"yn cychwyn drwy ragosodiad pan ddaw'r Open Firmware i ben."
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"Dyma amrywiol baramedrau ynghylch eich peiriant. Yn ddibynnol ar eich\n"
-"caledwedd, mae'n bosibl i chi weld y rhain, neu beidio\n"
-"\n"
-" *\"Llygoden\": edrychwch ar ffurfweddiad presennol y llygoden a chliciwch "
-"ar y\n"
-" botwm i'w newid os oes angen.\n"
-"\n"
-" *\"Bysellfwrdd\" edrychwch ar ffurfweddiad presennol y bysellfwrdd a "
-"chliciwch\n"
-"ar y\n"
-" botwm i'w newid os oes angen.\n"
-"\n"
-" *\"Cylchfa amser\" Mae DrakX, yn dyfalu eich cylchfa amser o'r iaith "
-"rydych\n"
-" wedi ei dewis. Eto fel gyda bysellfwrdd efallai nad ydych yn y wlad sy'n "
-"cyfateb i'r\n"
-" dewis iaith. Felly, mae'n bosibl y bydd angen i chi glicio ar fotwm "
-"\"Cylchfa\n"
-" amser\" i ffurfweddi'r cloc yn ôl y gylchfa amser rydych ynddi.\n"
-"\n"
-" *\"Argraffydd\": bydd clicio ar y botwm \"Dim argraffydd\" yn agor y dewin\n"
-" ffurfweddi.\n"
-"\n"
-" *\"Cerdyn sain\": os oes cerdyn sain yn cael ei ganfod ar eich system, bydd "
-"yn\n"
-"cael ei ddangos yma. Nid oes modd creu newidiadau adeg y gosodiad.\n"
-"\n"
-" *\"Cerdyn teledu\": os oes cerdyn teledu yn cael ei ganfod ar eich system, "
-"bydd\n"
-" yn cael ei ddangos yma. Nid oes modd creu newidiadau adeg y gosodiad.\n"
-"\n"
-" *\"Cerdyn IDSN\":os oes cerdyn IDSN yn cael ei ganfod ar eich system, bydd\n"
-" yn cael ei ddangos yma. Mae modd clicio ar y botwm i newid y paramedrau\n"
-" cysylltiedig."
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Dewiswch y ddisg galed rydych am ei ddileu er mwy n gosod eich rhaniad\n"
-"Mandrake Linux newydd. Byddwch ofalus, bydd yr holl ddata sydd arno'n\n"
-"cael ei ddileu ac ni fydd modd ei adfer!"
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Cliciwch \"Iawn\" os ydych am ddileu'r holl ddata a rhaniadau sy'n bresennol "
-"ar y disg galed hwn. Byddwch ofalus, wedi i chi glicio \"Iawn\" ni fydd modd "
-"i chi adfer unrhyw ddata na rhaniadau presennol ar y disg caled, gan gynnwys "
-"data Windows.\n"
-"\n"
-"Cliciwch \" Diddymu\" i ddiddymu'r weithred hon heb golli unrhyw ddata a "
-"rhaniadau sy'n bresennol ar y ddisg galed."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Methu cael mynediad i fodiwlau'r cnewyllyn sy'n cyfateb i'ch cnewyllyn chi "
-"(mae ffeil %s ar goll), mae hyn yn golygu, fel arfer, nad yw eich disg "
-"cychwyn yn cydweddu gyda'r cyfrwng Gosod (crëwch ddisg cychwyn meddal newydd)"
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "Rhaid fformatio %s"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Rydych wedi dewis y gwasanaethwr(wyr) canlynol: %s\n"
-"\n"
-"\n"
-"Mae'r gwasanaethwyr canlynol yn cael eu cychwyn drwy ragosodiad. Nid oes "
-"ganddynt unrhyw faterion diogelwch hysbys, ond mae'n bosibl i rai ddod i'r "
-"golwg. Os felly rhaid uwchraddio gynted ag y bo modd\n"
-"\n"
-"Ydych chi wir eisiau gosod y gwasanaethwyr hyn?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Methu defnyddio darlledu heb parth NIS"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Rhowch ddisg meddal wedi ei fformatio i FAT yng ngyrrwr %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Nid yw 'r disg meddal hwn wedi ei fformatio i FAT"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"I ddefnyddio'r dewis o becynnau wedi eu cadw, cychwynnwch y gosodiad gyda "
-"``linux defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Gwall wrth ddarllen ffeil %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Mae peth caledwedd ar eich cyfrifiadur angen gyrwyr \"priodol\" i weithio.\n"
-"Mae rhywfaint o wybodaeth i'w gael amdanynt yn %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Rhaid bod gennych raniad gwraidd.\n"
-"Crëwch raniad (neu glicio ar un presennol)\n"
-"Yna dewiswch weithred \"Pwynt Gosod\" a'i osod i `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Rhaid cael rhaniad cyfnewid"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Nid oes gennych raniad cyfnewid\n"
-"\n"
-"Parhau beth bynnag?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Rhaid bod gennych raniad FAT wedi ei osod yn /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Defnyddiwch le gwag"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nid oes digon o le i ddynodi rhaniadau newydd"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Defnyddiwch y rhaniadau cyfredol"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Nid oes rhaniad cyfredol i'w ddefnyddio"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Defnyddiwch rhaniad Windows ar gyfer cylch-ol"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Pa raniad hoffech chi ei ddefnyddio ar gyfer Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Dewiswch y maint"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Maint rhaniad gwraidd mewn MB :"
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Maint rhaniad cyfnewid mewn MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Defnyddiwch y lle gwag ar raniad Windows"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Pa raniad ydych chi am newid ei faint?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Mesur ffiniau system ffeilio Windows"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Nid yw'r newidiwr maint FAT yn medru trin eich rhaniad.\n"
-"digwyddodd y gwall canlynol: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr "Mae eich rhaniad Windows yn rhy ysgyriog, rhedwch \"defrag\" yn gyntaf"
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"RHYBUDD!\n"
-"\n"
-"Bydd DrakX yn newid maint eich rhaniad Windows. Byddwch\n"
-"ofalus: mae gwneud hyn yn beryglus. Os nad ydych wedi\n"
-"gwneud yn barod, dylech fynd allan o'r gosod, rhedeg scandisk\n"
-"yn Windows (ac os oes modd defrag), yna ail gychwyn y gosodiad.\n"
-"Dylech hefyd wneud copi wrth gefn o'ch data.Pan rydych yn siwr, cliciwch "
-"Iawn."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Pa faint ydych am ei gadw ar gyfer Windows ar"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "rhaniad %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Methodd newid maint FAT: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Nid oes rhaniadau FAT i newid eu maint neu i'w defnyddio fel cylch-ôl (neu "
-"nad oes digon o le ar ôl)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Dileu'r ddisg gyfan"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Tynnu Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Mae gennych fwy nag un disg caled, ar ba un ydych am osod linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Bydd pob rhaniad a'u data yn cael ei ddileu ar yrrwr %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Rhannu disg unigol"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Defnyddiwch fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Medrwch rhannu %s\n"
-"Wedi gorffen, peidiwch anghofio cadw gyda 'w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Does gennych ddim digon o le rhydd ar eich rhaniad Windows"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Methu canfod lle ar gyfer gosod"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Daeth dewin Rhannu DrakX o hyd i'r atebion canlynol:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Methodd rhannu: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Cychwyn y rhwydwaith"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Cau'r rhwydwaith"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Digwyddodd gwall ond wn i ddim sut i ddelio ag ef yn dwt.\n"
-"Mae'n beryglus i barhau."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Pwynt gosod dyblyg %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Methodd rhai pecynnau pwysig a chael eu gosod yn gywir.\n"
-"Un ai mae eich gyrrwr CD-ROM neu eich CD-ROM yn wallus.\n"
-"Gwiriwch y CD-ROM ar gyfrifiadur wedi ei osod gan ddefnyddio \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Croeso i %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Does dim gyrrwr disg meddal ar gael"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Cychwyn cam '%s\"\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Mae eich system yn brin o adnoddau. Efallai y cewch anhawsterau wrth osod\n"
-"Mandrake Linux. Os bydd hynny'n digwydd, gallwch geisio gwneud gosodiad\n"
-"testunol. I wneud hynny, gwasgwch F1 wrth gychwyn ar y CD-ROM ac yna rhoi "
-"'text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Gosod Dosbarth"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Dewiswch un o'r dosbarthiadau canlynol o osodiad::"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Cyfanswm maint y grwpiau rydych wedi eu dewis yw tua %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Os hoffech chi osod llai na'r maint hwn\n"
-"dewiswch canran y pecynnau i'w gosod.\n"
-"\n"
-"Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
-"isel; tra bydd canran o 100% yn llwytho'r holl becynnau."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Dim ond ar gyfer %d%% o'r pecynnau hyn mae gennych le.\n"
-"\n"
-"Os hoffech osod llai na hyn,\n"
-"dewiswch canran y pecynnau rydych am eu gosod.\n"
-"Dim ond y pecynnau pwysicaf fydd yn cael eu gosod gyda chanran\n"
-"isel; tra bydd canran o %d%% yn llwytho'r gymaint o becynnau ag\n"
-"y mae modd."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Dydd modd eu dewis yn fwy penodol yn y cam nesaf."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Cyfanswm y pecynnau i'w gosod"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Dewis y Grwp Pecyn"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Dewis pecynnau unigol."
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Cyfanswm maint: %d/%d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Pecyn gwallus"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Enw: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Fersiwn: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Maint: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Pwysigrwydd: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Nid oes modd i chi ddewis y pecyn hwn - does dim lle ar ol i'w osod"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Mae'r pecynnau canlynol i'w gosod"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Bydd y pecynnau canlynol yn cael eu tynnu"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Does dim modd i chi ddewis/dad-ddewis y pecyn"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Mae hwn yn becyn hanfodol, does dim modd ei ddad-ddewis"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Rhaid i'r pecyn gael ei uwchraddio\n"
-"Ydych chi'n siwr eich bod am ei ddad-ddewis?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Does dim mod dad-ddewis y pecyn hwn. Rhaid ei ddiweddaru"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Dangoswch y pecynnau dewis awtomatig"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Gosodiad"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "LLwytho/Cadw ar ddisg meddal"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Diweddaru'r dewis pecynnau"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Gosodiad lleiaf"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Dewiswch y pecynnau hoffech chi eu gosod"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Gosod"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Amcangyfrif"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Amser yn weddill"
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Arhoswch, paratoi'r gosodiad"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pecyn"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Gosod pecynnau %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Derbyn"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Gwrthod"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Newidiwch eich CD-ROM\n"
-"\n"
-"Rhowch yr CD-ROM sydd wedi ei labeli \"%s\" yn eich gyrrwr a chlicio Iawn\n"
-"Os nad yw gennych, cliciwch Dileu i osgoi gosod o'r CD-ROM hwn."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Mynd yn ein blaen beth bynnag?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Roedd gwall wrth drefnu pecynnau"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Digwyddodd gwall wrth osod pecyn"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-" Rhybudd\n"
-"\n"
-"Darllenwch yr amodau isod yn ofalus. Os ydych yn anghytuno gydag unrhyw\n"
-" ddarn, nid oes caniatâd i chi osod y cyfrwng CD nesaf. Pwyswch 'Gwrthod' i\n"
-" barhau'r gosodiad heb ddefnyddio'r cyfryngau hyn.\n"
-"\n"
-"Nid yw rhai cydrannau ar y CDau canlynol yn cael eu rheoli gan Drwydded GPL\n"
-" neu gytundebau tebyg. Mae'r cydrannau hynny'n cael eu rheoli gan dermau ac\n"
-" amodau ei drwydded benodol ei hun. Darllenwch yn ofalus a chadwch at y\n"
-" trwyddedau penodol cyn defnyddio neu ddosbarthu'r cydrannau hynny.\n"
-"\n"
-"Mae'r trwyddedau hynny'n atal yn gyffredinol, drosglwyddiad, dyblygu (ar "
-"wahân i\n"
-" bwrpas cadw wrth gefn), dosbarthu, cildroi peirianyddol, dadcydosod,\n"
-" dadgrynhoi neu newid y cydrannau. Bydd unrhyw dorri ar yr amodau hyn yn\n"
-"terfynu eich hawl o dan y drwydded benodol. Oni bai ei fod yn rhoi'r hawl i "
-"chi,\n"
-"nid oes modd i chi osod y rhaglenni ar fwy nag un system na'i addasu ar "
-"gyfer\n"
-" defnydd ar rwydwaith. Os oes amheuaeth, cysylltwch yn uniongyrchol â\n"
-"dosbarthwr neu olygydd y cydrannau hynny.\n"
-"Mae trosglwyddo i drydydd parti neu gopďo'r cydrannau hynny gan gynnwys y\n"
-" ddogfennaeth, wedi ei wahardd fel rheol\n"
-"\n"
-"Mae pob hawl i gydrannau'r cyfrwng CD nesaf yn perthyn i' hawduron "
-"perthnasol\n"
-" ac maent wedi eu hamddiffyn drwy gyfreithiau eiddo deallusol a hawlfraint "
-"sy'n\n"
-" berthynol i raglenni meddalwedd.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Digwyddodd gwall"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "Ydych chi wir eisiau gadael y gosodiad?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Cytundeb trwyddedu"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Cyflwyniad\n"
-"\n"
-"Bydd y system weithredu a'r cydrannau gwahanol sydd o fewn dosbarthiad "
-"Mandrake Linux yn\n"
-"cael eu galw yn \"Gynnyrch Meddalwedd\" o hyn ymlaen. Mae'r Cynnyrch "
-"Meddalwedd yn\n"
-"cynnwys, ond heb eu cyfyngu, i'r casgliad o raglenni , dulliau, rheolau a "
-"dogfennau mewn\n"
-"perthynas â'r system weithredu a chydrannau gwahanol dosbarthiad Mandrake "
-"Linux.\n"
-"\n"
-"\n"
-"1. Cytundeb Trwyddedu\n"
-"\n"
-"Darllenwch y ddogfen hon yn ofalus. Mae'r ddogfen hon yn gytundeb trwyddedu "
-"rhyngoch\n"
-"chi â MandrakeSoft S.A,. sy'n berthnasol i'r Cynnyrch Meddalwedd.\n"
-"\n"
-"Wrth osod, dyblygu neu ddefnyddio'r Cynnyrch Meddalwedd mewn unrhyw fodd, "
-"rydych yn\n"
-"amlwg yn derbyn ac yn llawn cytuno i gadw at delerau ac amodau'r Drwydded "
-"hon.\n"
-"Os ydych yn anghytuno ag unrhyw rhan o'r cytundeb, ni chewch ganiatâd i "
-"osod, dyblygu\n"
-"neu ddefnyddio'r Cynnyrch Meddalwedd.\n"
-"Bydd unrhyw ymgais i osod, dyblygu neu ddefnyddio'r Cynnyrch Meddalwedd mewn "
-"modd\n"
-"nad yw'n cyd-fynd â thelerau ac amodau'r Drwydded yn ddi-rym a bydd yn "
-"terfynu eich\n"
-"hawliau o dan y Drwydded hon. Ar ddiwedd y Drwydded, rhaid i chi "
-"ddinistrio'n syth pob\n"
-"copi o'r Cynnyrch Meddalwedd.\n"
-"\n"
-"\n"
-"2. Gwarant Gyfyngedig\n"
-"\n"
-"Mae'r Cynnyrch Meddalwedd a'r ddogfennaeth gysylltiedig yn cael eu darparu "
-"\"fel ag y maent\",\n"
-"heb ddim gwarant, hyd y mae'r gyfraith yn caniatáu.\n"
-"Ni fydd MandrakeSoft S.A. yn gyfrifol, o dan unrhyw amgylchiad, a chyhyd ag "
-"y bydd y gyfraith yn\n"
-"caniatáu, am unrhyw iawn o gwbl, arbennig, damweiniol, uniongyrchol neu "
-"anuniongyrchol (gan\n"
-"gynnwys heb gyfyngu ar iawndal am golli busnes, tarfu ar fusnes, colled "
-"ariannol, costau cyfreithiol,\n"
-"a chosb o ganlyniad i achos llys, neu unrhyw golled o ganlyniad) yn codi o'r "
-"defnydd neu'r anallu i\n"
-"ddefnyddio'r Cynnyrch Meddalwedd, hyd yn oed os yw MandrakeSoft wedi eu "
-"cynghori o'r posibilrwydd\n"
-"o'r fath iawn.\n"
-"\n"
-"CYFRIFOLDEB CYFYNGEDIG YN GYSYLLTIEDIG GYDA'R MEDDIANT NEU'R DEFNYDD O "
-"FEDDALWEDD\n"
-" GWAHARDDEDIG MEWN RHAI GWLEDYDD\n"
-"\n"
-"Ni fydd MandrakeSoft S.A. yn gyfrifol, o dan unrhyw amgylchiad, a chyhyd y "
-"bydd y gyfraith yn caniatáu,\n"
-"i fod yn atebol am unrhyw iawn o gwbl, arbennig, damweiniol, uniongyrchol "
-"neu anuniongyrchol (gan gynnwys\n"
-"heb gyfyngu ar iawndal am golli busnes, tarfu ar fusnes, colled ariannol, "
-"costau cyfreithiol, a chosb o ganlyniad\n"
-"i achos llys, neu unrhyw golled o ganlyniad) yn codi o lwytho i lawr "
-"cydrannau meddalwedd o un o safleoedd\n"
-" Mandrake Linux, sydd wedi eu gwahardd neu eu hatal mewn rhai gwledydd gan "
-"gyfreithiau lleol. Mae'r\n"
-"cyfrifoldeb cyfyngedig hwn yn perthyn i , ond heb ei gyfyngu i'r, cydrannau "
-"cryptograffiaeth cryf sy'n cael\n"
-"eu cynnwys o fewn y Cynnyrch Meddalwedd.\n"
-"3. Trwydded GPL a Thrwyddedau Cysylltiedig\n"
-"\n"
-"Mae'r Cynnyrch Meddalwedd yn cynnwys cydrannau sydd wedi eu creu gan "
-"bersonau a endidau gwahanol.\n"
-"Mae'r rhan fwyaf o'r cydrannau hyn yn cael eu llywodraethu gan dermau ac "
-"amodau Trwydded Gyhoeddus\n"
-"Cyffredinol (General Public Licence (GPL)), GNU, fydd yn cael ei gyfeirio "
-"ato o hyn ymlaen fel \"GPL\", neu\n"
-"drwyddedau cyffelyb.. Mae'r rhan fwyaf o'r trwyddedau'n caniatáu i chi "
-"ddefnyddio, dyblygu, addasu neu\n"
-" ailddosbarthu'r cydrannau maent yn eu cynnwys. Darllenwch delerau ac amodau "
-"trwydded pob cydran cyn\n"
-"eu defnyddio. Dylai pob cwestiwn am drwydded cydran gael ei ofyn i awdur y "
-"gydran ac nid i MandrakeSoft.\n"
-"Mae'r rhaglenni ddatblygwyd gan MandrakeSoft yn cael eu llywodraethu o dan "
-"Drwydded GLP. Mae'r dogfennau\n"
-" ysgrifennwyd gan MandrakeSoft S.A. yn cael eu llywodraethu gan drwydded "
-"benodol. Darllenwch y dogfennau\n"
-"am fwy o fanylion.\n"
-"\n"
-"4. Hawliau Eiddo Deallusol\n"
-"\n"
-"Mae pob hawl cydrannau'r Cynnyrch Meddalwedd yn perthyn i'w hawduron "
-"perthnasol ac wedi eu hamddiffyn\n"
-"gan gyfreithiau eiddo deallusol a hawlfraint sy'n berthnasol i raglenni "
-"meddalwedd. Mae MandrakeSoft yn cadw\n"
-"ei hawl i newid neu addasu ei Gynnyrch Meddalwedd, yn rhannol neu yn gyfan, "
-"drwy unrhyw ddull ac ar gyfer\n"
-"unrhyw bwrpas. Mae \"Mandrake\", \"Mandrake Linux\" a'r logos cysylltiedig "
-"yn nodau masnachol sy'n\n"
-"perthyn i MandrakeSoft S.A.\n"
-"\n"
-"5. Cyfreithiau Llywodraethol\n"
-"Os bydd unrhyw rhan o'r cytundeb hwn yn cael ei ddal yn ddi-rym, "
-"anghyfreithlon neu amherthnasol gan\n"
-"benderfyniad llys, bydd y rhan yma'n cael ei dynnu o'r cytundeb hwn. Byddwch "
-"yn parhau i fod yn rhwymedig\n"
-"i adrannau cymwys o'r cytundeb.\n"
-"Mae telerau ac amodau'r Drwydded hon yn cael eu llywodraethu gan Cyfreithiau "
-"Ffrainc. Mae'n ddymunol y\n"
-"bydd pob anghytundeb ar amodau'r drwydded yn cael eu datrys y tu allan i'r "
-"llys. Fel cam olaf, bydd yranghytundeb yn cael ei drosglwyddo i'r Llysoedd "
-"Barn, Paris - Ffrainc. Am unrhyw gwestiwn ynghylch yddogfen hon cysylltwch â "
-"MandrakeSoft S.A. \n"
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Allweddell"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Dewiswch gynllun eich alweddell"
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Dyma restr lawn o'r allweddellau ar gael"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Pa ddosbarth o osodiad ydych chi ei eisiau?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Gosod/Diweddaru"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Ydi hwn yn osodiad neu diweddariad?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Argymhellwyd"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Arbennigwr"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Diweddaru"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Diweddaru'r pecynnau'n unig"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Dewiswch math eich llygoden"
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Porth Llygoden"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Dewiswch ba borth cyfresol mae eich llygoden wedi cysylltu iddi"
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Efelychiad botymau"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Efelychiad Botwm 2"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Efelychiad Botwm 3"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Ffurfweddu cardiau PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Ffurfweddu IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "dim rhaniadau ar gael"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Sganio rhaniadau i ganfod pwyntiau gosod"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Dewiswch y pwyntiau gosod"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Nid wyf yn medru darllen eich tabl rhaniad, mae'n rhy lygredig. :(\n"
-"Mae modd i mi fynd ymlaen i ddiystyru rhaniadau gwael (Bydd yr\n"
-" HOLL DDATA'n cael ei golli!). Yr ateb arall yw peidio gadael i\n"
-"DrakX newid y tabl rhaniad. (y gwall yw %s)\n"
-"\n"
-"Ydych chi'n cytuno i golli'r holl raniadau?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"Methodd DrakX a darllen y tabl rhaniad yn gywir.\n"
-"Mae'n beryglus parhau!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Nid oes lle rhydd ar gyfer yr ymlwythwr 1MB! Bydd y gosodiad yn parhau, ond "
-"i gychwyn y system bydd rhaid i chi greu rhaniad ymlwythwr yn DiskDrake"
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Ni chanfyddwyd rhaniad gwraidd i wneud diweddariad"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Rhaniad Gwraidd"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Beth yw'r rhaniad gwraidd (/) ar eich system?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Bydd angen i chi ail gychwyn cyn i'r newidiadau yn eich tabl rhaniad ddigwydd"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Dewiswch y rhaniadau rydych am eu fformatio"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Gwirio blociau gwallus?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Yn fformatio rhaniadau"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Creu a fformatio ffeil %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Dim digon o le cyfnewid i gyflawni'r gosodiad, ychwanegwch rhagor"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Chwilio am y pecynnau sydd ar gael"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Canfod pecynnau i'w uwchraddio"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Nid oes gan eich system ddigon o le ar ôl ar gyfer gosodiad neu uwchraddiad "
-"(%d> %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Cwblhawyd (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Lleiafswm (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Argymhellwyd (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Dewiswch llwytho neu ddewis cadw pecyn ar ddisg meddal.\n"
-"Mae'r fformat yr un ar ddisgiau meddal wedi eu cynhyrchu drwy auto_install."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Llwytho o o ddisg meddal"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Llwytho o ddisg meddal"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Dewis pecynnau"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Rhowch ddisg meddal yn cynnwys dewis pecynnau yn y peiriant"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Cadw ar ddisg meddal"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Mae'r maint ddewiswyd yn fwy na'r lle ar gael"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Math o osodiad"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Nid ydych wedi dewis unrhyw grwpiau o becynnau.\n"
-"Dewiswch y gosodiad lleiaf rydych ei eisiau"
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "Gyda X"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "Gyda dogfennaethelfennol (argymhellir!)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Gosodiad bychan iawn (yn arbennig dim urpmi)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Os yw'r holl CDau sydd yn y rhestr gennych, cliciwch Iawn.\n"
-"Os nad oes gennych un ohonynt, Cliciwch Diddymu.\n"
-"Os mae dim ond rhai CDau sydd ar goll, yna cliciwch Iawn."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom wedi ei labelu \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Paratoi'r gosodiad"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Gosod pecyn %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Ffurfweddiad ôl osod"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Rhowch y disg meddal Diweddaru Modiwlau yng ngyrrwr %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Mae'n awr yn bosibl i chi lwytho meddalwedd i lawr ar gyfer amgryptio.\n"
-"\n"
-"RHYBUDD:\n"
-"\n"
-"Oherwydd gofynion cyffredinol amrywiol yn berthynol i'r meddalwedd hyn ac "
-"yn\n"
-" cael eu gosod gan amrywiol awdurdodau cyfreithiol, dylai cwsmeriaid a/neu\n"
-" ddefnyddwyr terfynol wneud yn siwr fod y cyfreithau yn eu hawdurdod "
-"cyfreithiol\n"
-" yn caniatáu iddynt lwytho i lawr, cadw a/neu ddefnyddio'r feddalwedd.\n"
-"\n"
-"Yn ogystal, dylai cwsmeriaid a/neu ddefnyddwyr terfynol fod yn arbennig o\n"
-" ymwybodol i beidio â thorri cyfraith eu hawdurdod cyfreithiol. Petai "
-"defnyddwyr\n"
-" a/neu ddefnyddwyr terfynol yn peidio parchu darpariaeth y cyfreithiau\n"
-" gweithredadwy, yna byddant yn derbyn cosb ddifrifol.\n"
-"\n"
-"Ni fydd MandrakeSoft na'i gwneuthurwyr a/neu ddarparwyr, o dan unrhyw\n"
-" amod, fod yn gyfrifol am unrhyw ddifrod, arbennig, anuniongyrchol na\n"
-"damweiniol o gwbl (gan gynnwys, ond heb ei gyfyngu i golli elw, ymyrraeth "
-"ar\n"
-" fusnes, colli data masnachol na cholledion ariannol eraill, nag ymatebion\n"
-" terfynol a digollediad i'w dalu yn sgil penderfyniad llys) yn codi o "
-"ddefnydd,\n"
-" eiddo, neu'r unig lwytho i lawr y feddalwedd, i'r hyn y gall y cwsmer a/"
-"neu'r\n"
-" defnyddiwr terfynol gael mynediad iddo yn y pen draw wedi llofnodi'r "
-"cytundeb\n"
-" presennol.\n"
-"\n"
-"\n"
-"Am unrhyw ymholiadau yn berthnasol i'r cytundebau hyn, cysylltwch â:\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Mae'n bosibl i chi llwytho i lawr y pecynnau diweddaraf sydd wedi eu ryddhau "
-"ers i'r dosbaerthiad fod ar gael.\n"
-"\n"
-"Medrwch gael atgyweiriadau diogelwch a gwallau ond mae'n rhaid i\n"
-"chi fod wedi cysyllu â'r Rhyngrwyd i barhau.\n"
-"\n"
-"Ydych chi am osod y diweddariadau?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Cysylltu â'safle Mandrake Linux i estyn rhestr o'r drychau sydd ar gael"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Dewiswch ddrych lle mae modd estyn y pecynnau"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Cysylltu â'r drych i estyn y rhestr o becynnau sydd ar gael"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Pa un yw eich parth amser?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Cloc caledwedd wedi ei osod i GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "Gweinydd NTP"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Gwasanaethwr CUPS pell"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Nid oes argraffydd"
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "A oes gennych gerdyn sain ISA?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "Rhedwch \"sndconfig\" wedi'r gosodiad i ffurfweddu'ch cerdyn sain"
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Crynodeb"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Llygoden"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Cylchfa amser"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Argraffydd"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "Cerdyn ISDN"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Cerdyn sain"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "Cerdyn Teledu"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Ffeiliau lleol"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Gosod cyfrinair gwraidd"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Dim cyfrinair"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Mae'r cyfrinair yn rhy syml ( rhaid iddo fod o leiaf %d nod o hyd)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Dilysu"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Dilysu LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "Sail dn LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "Gwasanaethwr LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "Dilysu LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "Parth NIS"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "Gwasanaethwr NIS"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Mae disg cychwyn yn darparu ffordd o gychwyn eich system Linux heb ddibynnu\n"
-"ar lwythwr cychwyn arferol. Mae hyn yn ddefnyddiol os ydych am osod SILO ar\n"
-"eich system, neu mae system weithredu arall wedi tynny SILO, neu nad yw "
-"SILO'n\n"
-"gweithio gyda eich ffurfweddiad caledwedd chi. Mae modd defnyddio disg "
-"cychwyn\n"
-" unigol hefyd gyda delwedd achub Mandrake, gan ei gwneud yn llawer haws "
-"adfer o\n"
-" fethiannau systemig sylweddol\n"
-"\n"
-"Os hoffech greu disg cychwyn ar gyfer eich system, rhowch ddisg meddal yn y "
-"gyrrwr\n"
-" cyntaf a chliciwch \"Iawn\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Gyrrwr disg meddal cyntaf"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Ail ddisg meddal"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Hepgor"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Mae'r disg cychwyn addasu yn cynnig ffordd i gychwyn eich system Linux heb\n"
-"ddibynnu ar eich cychwynnwr arferol. Mae hyn yn ddefnyddiol os nad ydych am\n"
-"osod LILO (neu grub) ar eich system, neu bod system weithredu arall yn "
-"dileu\n"
-"LILO, neu nad yw LILO'n gweithio gyda'ch ffurfweddiad caledwedd.\n"
-"Mae modd defnyddio disg cychwyn addasu hefyd gyda delwedd achub Mandrake,\n"
-"gan ei gwneud yn lawer haws adfer methiannau system sylweddol. Hoffech chi\n"
-"greu disg cychwyn ar gyfer eich system?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-"\n"
-"\n"
-"(RHYBUDD! Rydych yn defnyddio XFS ar gyfer eich rhaniad gwraidd,\n"
-"bydd creu disg cychwyn ar ddisg meddal 1.44Mb'n debygol o fethu,\n"
-"oherwydd mae XFS yn gofyn am yrrwr mawr iawn)."
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Nid oes gyrrwr disg meddal ar gael"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Dewiswch y gyrrwr disg meddal i'w ddefnyddio i greu disg cychwyn"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Rhowch ddisg meddal yn %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Creu disg cychwyn"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Paratoi llwythwr cychwyn"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Mae'n ymddangos fod gennychbeiriant OldWorld\n"
-"neu Anhysbys ac ni fydd llwythwr cychwyn yaboot\n"
-"yn gweithio ar eich cyfer\n"
-"Bydd y gosodiad yn parhau ond bydd\n"
-"rhaid defnyddio BootX i gychwyn\n"
-"eich peiriant."
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Ydych chi eisiau defnyddio aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Gwall gosod aboot, \n"
-"ceisiwch orfodi gosodiad hyd yn oed os yw hynny'n dinistrio'r rhaniad cyntaf?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Gosod llwythwr cychwyn"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Methodd gosod llwythwr cychwyn. Digwyddodd y gwall canlynol:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Efallai bydd angen i chi newid eich dyfais cychwyn Open Firmware\n"
-"i alluogi'r llwythwr cychwyn. Os nad ydych yn gweld anogwr y llwythwr\n"
-"cychwyn wrth ail gychwyn, gwasgwch Command-Option-O-F wrth ail\n"
-"gychwyn a theipiwch: setenv boot-device %s,\\\\:tbxi\n"
-"\n"
-" Yna teipiwch: shut-down\n"
-"Wrth gychwyn eto dylech weld anogwr y llwythwr cychwyn."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Rhowch ddisg meddal yng ngyrrwr %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Creu disg meddal awto gosod"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Nid yw rhai camau wedi eu cwblhau.\n"
-"\n"
-"Ydych chi wir eisiau gorffen?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Llongyfarchiadau, mae'r gosodiad wedi ei gwblhau.\n"
-"Tynnwch y cyfrwng cychwyn a gwasgu Return i ail gychwyn.\n"
-"\n"
-"\n"
-"Am wybodaeth am gywiriadau sydd ar gael ar gyfer y rhyddhad hwn o Mandrake\n"
-"Linux, cysylltwch a'r atodiad, sydd i'w gael yn:\n"
-"\n"
-"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Mae gwybodaeth ar ffurfweddu eich system ar gael ym mhenawdau ôl osod\n"
-"yr Official Mandrake Linux User's Guide."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Creu disg meddal awto gosod"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"Mae modd awtomeiddio'r awto gosod, os hoffech\n"
-"chi, yn yr achos hwnnw bydd yn cymryd drosod y\n"
-"disg caled!!\n"
-"(mae hyn ar gyfer gosod ar flwch arall).\n"
-"\n"
-"Efallai byddai'n well gennych ai osod y gosodiad.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Awtomeiddwyd"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Ail chwarae"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Cadw'r dewis becynnau"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Gosodiad %s Mandraks Linux"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> rhwng elfennau | <Space> yn dewis | <F12> y sgrin nesaf "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu ar goll"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "consolehelper ar goll"
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Dewis ffeil"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Uwch"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Elfennol"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Arhoswch"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Gwybodaeth"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Estyn y goeden"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Cau'r goeden"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Dewis gwael, ceisiwch eto\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Eich dewis? (rhagosodedig %s)"
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Gwybodaeth i'w gyflawyno:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Eich dewis? (0/1, rhagosodedig %s)"
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Botwm '%s'.%s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "Ydych chi eisiau clicio ar y botwm hwn?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Eich dewis? (rhagosodedig `%s'%s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Mae yna lawer i ddewis o (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Dewiswch y rhif cyntaf o'r amrediad 10 rydych am ei olygu,\n"
-"neu wasgwch Enter i barhau.\n"
-"Eich dewis?"
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=>Hysbysiad, mae label wedi newid:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Ail-gyflwyno"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Tsiec (QWERTY)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Almaeneg"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Spaenaidd"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Ffinaidd"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Ffrengig"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norwyaidd"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Pwylaidd"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Rwsiaidd"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Swedaidd"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Bysellfwrdd DG"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Bysellfwrdd UDA"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Albaniaidd"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armenaidd (hen)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armenaidd (teipiadur)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armenaidd (ffonetig)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjan (lladin)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgaidd"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "Bwlgaraidd (ffonetig)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "Bwlgaraidd (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasilaidd (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Belarusaidd"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Swisaidd (gosodiad Almaenig)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Swisaidd (gosodiad Ffrengig)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Tsiec (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Almaenaidd (dim bysellau marw)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Danaidd"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (UDA)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norwyaidd)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Swedaidd)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estonaidd"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgaidd (gosodiad \"Rwsiaidd\")"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgaidd (gosodiad \"Lladinaidd\")"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Groegaidd"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Hwngaraidd"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Croataidd"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Israelaidd"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Israelaidd (Ffonetig)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iranaidd"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Eislandaidd"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Eidalaidd"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Siapaëaidd 106 bysell"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Bysellfwrdd Coreaidd"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Lladin America"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lithuenaidd AZERTY (hen)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lithuenaidd AZERTY (newydd)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lithuenaidd \"rhes rhif\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lithuenaidd \"ffonetig\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "Latfiaidd"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Macedonaidd"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Isalmaenaidd"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Pwylaidd (gosodiad qwerty)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Pwylaidd (gosodiad qwerty)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portiwgalaidd"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Canada (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Romanaidd (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Romanaidd (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Rwsiaidd (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slfenaidd"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slofacaidd (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovacaidd (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Serbaidd (cyrilig)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "Tamil"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Bysellfwrdd Thai"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Bysellfwrdd Tajig"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Twrcaidd (model traddodiadol \"F\")"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Twrcaidd (model modern \"Q\")"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Wcranaidd"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Bysellfwrdd UDA (rhyngwladol)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Fietnamëaidd \"rhes rhifol\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Iwgoslafaidd (lladin)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr "Bysell Alt dde"
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr "Y ddwy fysell Shift gyda'i gilydd"
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr "Bysellau Control a Shift gyda'i gilydd"
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr "Bysell CapsLock"
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Bysellau Ctrl ac Alt gyda'i gilydd"
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr "Bysellau Alt a Shift gyda'i gilydd"
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr "Bysell \"Dewislen\""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr "Bysell \"Windows\" chwith"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr "Bysell \"Windows\" de"
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Gosodiadau cylch %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"Nid oes cefnodgaeth PCIMA yn bodoli bellach ar gyfer cnewyllyn 2.2. "
-"Defnyddiwch cnewyllyn 2.4"
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Llygoden - Sun"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Llygoden Olwyn PS Generig"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 botwm"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Llygoden 2 Fotwm Generig"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generig"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Olwyn"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "cyfresol"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Llygoden 3 Botwm Generig"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Systemau Llygoden"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Llygoden Logitech (cyfresol, hen fath C7)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 fotwm"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 botwm"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "dim"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Dim llygoden"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Profwch y llygoden"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "I ysgogi'r llygoden,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "SYMUDWCH YR OLWYN!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Gorffen"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Nesaf ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Cynt"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Ydi hyn yn gywir?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Cysylltu â'r We"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Y ffordd mwyaf cyffredin i gysylltu â adsl yw pppoe\n"
-"Mae rhai cysylltiadau'n defnyddio pptp, a rhai dhcp.\n"
-"Os nad ydych yn gwybod pa un, dewiswch pppoe."
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "usb Alcatel Speedtouch"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "defnyddiwch dhccp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "defnyddiwch pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "defnyddiwch pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Pa gleient dhcp ydych chi eisiau ei ddefnyddio?\n"
-"dhcpcd yw'r rhagosodedig"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system.\n"
-"Nid wyf yn medru gosod y math yma o gysylltiad."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Dewiswch rhag wyneb y rhwydwaith"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Dewiswch pa addaswr rhwydwaith hoffech ei ddefnyddio i gysylltu â'r Rhyngrwyd"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "heb ganfod cerdyn rhwydwaith"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Ffurfweddu'r rhwydwaith"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Rhowch eich enw gwesteiwr os ydych yn gwybod\n"
-"beth ydyw Mae rhai gwasanaethwyr angen gwybod\n"
-"yr enw gwesteiwr i weithio. Dylai eich enw gwesteiwr\n"
-"fod yn enw cymhwysol llawn megis \"fymlwch.fynesg.fyco.com\""
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Enw gwesteiwr"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Dewin Ffurfweddu'r Rhwydwaith"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Modem IDSN Allanol"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Cerdyn ISDN mewnol"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Pa fath o gysylltiad IDSN?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Pa ffurfweddiad IDSN sy'n well gennych?\n"
-"\n"
-"* Mae'r Hen ffurfweddiad yn defnyddio isdn4net. Mae'n\n"
-" cynnwys offer pwerus ond mae'n anodd ei ffurfweddi ac nid\n"
-"yw'n safonol. \n"
-"\n"
-" *Mae'r ffurfweddiad Newydd yn haws i'w ddeall, yn fwy safonol\n"
-" ond mae ganddo llai o offer.\n"
-"\n"
-"Rydym yn argymell y ffurfweddiad ysgafn.\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Ffurfweddiad newydd (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Hen ffurfweddiad (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Ffurfweddiad ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Dewiswch eich darparwr.\n"
-"Os nad yw ar eich rhestr, dewiswch Heb ei Restri"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Protocol Ewrop"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Protocol Ewrop (EDSSI)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protocol ar gyfer gweddill y byd"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protocol ar gyfer gweddill y byd\n"
-" dim D-Channel (llinell les)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Pa brotocol ydych chi eisiau ei ddefnyddio?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Pa fath o gerdyn sydd gennych?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Dim syniad"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Os oes gennych gerdyn, dylai'r gwerthoedd ar y sgrin nesaf fod yn gywir.\n"
-"\n"
-"Os oes gennych gerdyn PCMCIA, rhaid i chi wybod irq ac io eich cerdyn.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Peidio"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Parhau"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Pa un yw eich cerdyn IDSN?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Rwyf wedi canfod cerdyn IDSN, ond nid wyf yn gwybod pa fath. Dewiswch un "
-"cerdyn PCI ar y sgrin nesaf."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Heb ganfod cerdyn PCI ISDN. Dewiswch un o'r sgrin nesaf."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Dewiswch ba borth cyfresol mae eich modem wedi cysylltu iddo."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Dewisiadau cyswllt ffôn"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Enw'r cysylltiad"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Rhif ffôn"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Dynodiad Mewngofnodi"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Seiliedig ar sgript"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Seiliedig ar derfynnell"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Enw parth"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Gwasanaethwr DNS Cyntaf (dewisol)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Ail Wasanaethwr DNS (dewisol)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Medrwch ddatgysylltu neu ailffurfweddu eich cyswllt"
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Medrwch ailffurfweddu eich cysylltiad"
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Rydych wedi eich cysylltu â'r rhyngrwyd."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Medrwch gysylltu â'r Rhyngrwyd neu ailffurfweddu eich cyswllt"
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Nid ydych wedi eich cysylltu â'r rhyngrwyd."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Cysylltu"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Dadgysylltu"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Ffurfweddu'r gysylltiad"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Cysylltiad â'r rhyngrwyd a'i ffurfweddiad "
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Rydym am ffurfweddu cysylltiad %s"
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Rydym yn awr yn mynd i ffurfweddu cysylltiad %s.\n"
-"\n"
-"\n"
-"Pwyswch Iawn i barhau."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Ffurfweddiad y Rhwydwaith"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Am eich bod yn gosod eich rhwydwaith, mae eich rhwydwaith eisoes wedi ei "
-"ffurfweddu\n"
-"Cliciwch Iawn i gadw eich ffurfweddiad, neu ddileu i ail ffurfweddi eich "
-"cysylltiad Rhyngrwyd a Rhwydwaith.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Croeso i Ddewin Ffurfweddu'r Rhwydwaith\n"
-"\n"
-"Rydym ar fin ffurfweddi eich cysylltiad rhyngrwyd/rhwydwaith.\n"
-"Os nad ydych am ddefnyddio awto ganfod, dad-diciwch y blwch dewis.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Dewiswch broffil i'w ffurfweddu"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Defnyddio awto ganfod"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Canfod dyfeisiadau..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Cysylltiad modem arferol"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "canfyddwyd ar borth %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "Cysylltiad ISDN"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "canfyddwyd %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "Cysylltiad ADSL"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "canfyddwyd ar rhyngwyneb %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Cysylltiad cebl"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "canfyddwyd cysylltiad cebl"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "cysylltiad LAN"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "cerdyn ethernet wedi ei ganfod"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Dewiiwch y math o gysylltiad rydych am ei ffurfweddu"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Rydych wedi ffurfweddu nifer o ffyrdd i gysylltu â'r Rhyngrwyd.\n"
-"Dewiswch ba un rydych am ei ddefnyddio.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Cysylltiad â'r Rhyngrwyd"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Ydych chi eisiau agor y cysylltiad wrth gychwyn y cyfrifiadur?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Ffurfweddiad y rhwydwaith"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "Rhaid ail gychwyn y rhwydwaith"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Digwyddodd gwall wrth ail gychwyn y rhwydwaith:\n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Llongyfarchiadau, mae ffurfweddiad y rhwydwaith a'r Rhyngrwyd wedi gorffen\n"
-"Bydd y ffurfweddiad yn cael ei osod ar eich system\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Wedi i hyn gael ei wneud rydym yn argymell eich bod yn a'i gychwyn "
-"amgylchedd X i osgoi unrhyw anawsterau'n perthyn i enwau gwesteiwr.\n"
-"."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"Digwyddod anhawsterau yn ystod y ffurfweddiad.\n"
-"Profwch eich cysylltiad drwy net_monitor neu mcc. Os nad yw eich cysylltiad "
-"yn gweithio, efallai y byddwch eisiau ailgychwyn y ffurfweddiad"
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"Rhybudd!! Cafodd y ddyfais hon ei ffurfweddu o'r blaen i gysylltu â'r "
-"Rhyngrwyd.\n"
-"Derbyniwch y cynnig i gadw'r ddyfais wedi ei ffurfweddi.\n"
-"Bydd newid y meysydd islaw'n newid y ffurfweddiad."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Rhowch ffurfweddiad IP ar gyfer y peiriant hwn\n"
-"Dylai pob eitem ei roi fel cyfeiriad IP nodiant collnod degymol\n"
-"(e.e.1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Ffurfweddu dyfais rhwydwaith %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (gyrrwr %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "Cyfeiriad IP"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Netmask"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "IP awtomatig"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Rhowch eich enw gwesteiwr.\n"
-"Dylai eich enw gwesteiwr fod yn enw gwesteiwr llawn gymwys.\n"
-"megis \"fymlwch.fynesg.fyngho.com\".\n"
-"Medrwch hefyd gynnig eich cyfeiriad IP os oes gennych un"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "Gwasanaethwr DNS"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Mynedfa (e.e. %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Dyfais mynedfa"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Ffurfweddiad dirprwyon"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "Dirprwy HTTP"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "Dirprwy FTP"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Dilynnwch cyfernod cerdyn rhwydwaith (defnyddiol ar gyfer gliniadur)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Dylai dirprwyon fod yn gyfanrif!"
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Dylai rhif porth fod yn ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Ffurfweddiad rhyngrwyd"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Hoffech chi gysylltu â'r Rhyngrwyd nawr?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Profi eich cysylltiad..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Mae'r system wedi cysylltu â'r Rhyngrwyd."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Am resymau diogelwch, bydd yn cael ei ddatgysylltu."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Nid yw'n ymddangos i'ch system gysylltu â'r rhyngrwyd.\n"
-"Ailffurfweddwch eich cysylltiad."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Ffurfweddiad y Cysylltiad"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Llanwch neu diciwch y maes islaw"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ y cerdyn"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Cof Cerdyn (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO'r Cerdyn"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_O y cerdyn"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 y cerdyn"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Eich rhif ffôn personol"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Enw darparwr (eng. darparwr.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Rhif ffôn y darparwr"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Dns 1 y darparwr (dewisol)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Dns 2 y darparwr (dewisol)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Dewiswch eich gwlad"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Modd deialu"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Cyflymder y cysylltiad"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Oediad yn y cysylltiad (mewn eiliadau)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Mewngofnod Cyfrif (enw defnyddiwr)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Cyfrinair y Cyfrif"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "maethodd y gosodiad"
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Nid yw'r rhainad estynedig yncael ei gynnal ay y platfform hwn"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Mae gennych dwll yn nhabl eich rhaniad ond nid wyf yn medru ei ddefnyddio\n"
-"Yr unig ateb yw i symud eich rhaniadau cynradd fel bo'r twll nesaf at y "
-"rhaniadau estynedig "
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Methodd adfer o ffeil %s: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Ffeil wrth gefn gwallus"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Gwall wrth ysgrifennu i ffeil %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Mae rhywbeth gwael yn digwydd ar eich disg.\n"
-"Mae prawf i fesur ei gyfanrwydd wedi methu. \n"
-"Nid oes gwerth ysgrifennu i'r ddisg"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "rhaid cael"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "pwysig"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "hyfryd iawn"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "hyfryd"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "efallai"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Argraffydd lleol"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Argraffydd pell"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Argraffydd ar wasanaethwr CUPS pell"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Argraffydd ar wasanaethwr lpd pell"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Argraffydd rhwydwaith (TCP/Soced)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Argraffydd ar wasanaethwr NetWare"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Rhowch URI dyfais argraffydd"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Peipio'r gwaith i orchymyn"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Model anhysbys"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Argraffyddion Lleol"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Argraffyddion Pell"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " ar borth paralel \\/\"%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", argraffydd USB \\/\"%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", dyfais amlbwrpas ar borth paralel \\/\"%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", dyfais amlbwrpas ar USB"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", dyfais amlbwrpas ar HP JetDirect"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ",dyfais amlbwrpas"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", argraffu i %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "ar wasanaethwr LPD \"%s\", argraffydd \"%s\""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "ar wasanaethwr Windows \"%s\", rhannu \"%s\""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "ar wasanaethwr Novell \"%s\", argraffydd \"%s\""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", defnyddio gorchymyn %s"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Argraffydd crai (dim gyrrwr)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(ar %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(ar y peiriant hwn)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Ar wasanaethwr CUPS \"%s\""
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr "(Rhagosodedig)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Dewiswch Gysylltiad Argraffydd"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Sut mae'r argraffydd wedi ei gysylltu?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Nid oes angen ffurfweddu argraffyddion ar wasanaethwyr CUPS pell: byddant yn "
-"cael eu canfod yn awtomatig."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-msgid "CUPS configuration"
-msgstr "Furfweddiad CUPS"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-msgid "Specify CUPS server"
-msgstr "Enwch wasanaethwr CUPS"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"Gyda gwasanaethwyr CUPS nid oes rhaid i chi ffurfweddu unrhyw argraffydd "
-"yma; mae gwasanaethwyr CUPS yn eich hysbysu'n awtomatig am eu "
-"hargraffyddion. Mae'r holl argraffyddion cyfredol sy'n hysbys i'ch peiriant "
-"yn cael eu rhestri yn adran \"Argraffyddyddion Pell\" prif ffenestr "
-"Printerdrake. Pan nad yw eich gwasanaethwr CUPS yn eich rhwydwaith lleol, "
-"rhaid rhoi i'r gwasanaethwr CUPS gyfeiriad IP ac yn ddewisol rhif y porth i "
-"dderbyn gwybodaeth am yr argraffydd gan y gwasanaethwr, neu gadewch y "
-"meysydd yn wag."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Fel rheol, mae CUPS yn cael ei ffurfweddu'n awtomatig yn ôl amgylchedd eich "
-"rhwydwaith, fel bo modd i chi gael mynediad at yr argraffyddion ar "
-"wasanaethwr CUPS yn eich rhwydwaith lleol. Os nad yw hyn yn gweithio'n iawn, "
-"diffoddwch \"Ffurfweddiad CUPS awtomatig\" a golygwch eich ffeil /etc/cups/"
-"cupsd.conf gyda llaw. Peidiwch anghofio ailgychwyn CUPS eto (gorchymyn: "
-"\"service cups restart\")."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "Dylai cyfeiriad IP edrych fel 192.168.1.20"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Dylai rhif porth fod yn gyfanrif!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP gwasanaethwr CUPS"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Porth"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Furfweddiad CUPS Awtomatig"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Canfod dyfeisiadau..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Profwch y pyrth"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Ychwanegu argraffydd newydd"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-" Croeso i'r Dewin Gosod Argraffydd\n"
-"\n"
-"Mae'r dewin yn caniatáu i chi osod argraffyddion lleol neu bell i'w "
-"defnyddio o'r peiriant hwn a hefyd gan argraffyddion eraill ar eich "
-"rhwydwaith.\n"
-"\n"
-"Bydd yn gofyn am yr holl wybodaeth angenrheidiol i osod yr argraffydd a bydd "
-"yn rhoi mynediad i'r holl yrwyr argraffyddion sydd ar gael, dewisiadau "
-"gyrwyr a mathau o gysylltiadau argraffyddion."
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Argraffydd Lleol"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Croeso i Ddewin Gosod Argraffydd\n"
-"\n"
-"Bydd y dewin yn eich cynorthwyo i osod eich argraffydd(ion) sy'n "
-"gysylltiedig â'r cyfrifiadur hwn.\n"
-"Cysylltwch yr argraffydd(ion) i'r cyfrifiadur a'i(u) troi mlaen. Cliciwch "
-"\"Nesaf\" pan rydych yn barod, ac ar \"Diddymu\"pan nad ydych am osod eich "
-"argraffydd(ion) ar hyn o bryd.\n"
-"\n"
-"Sylwch fod rhai cyfrifiaduron yn medru methu yn ystod awto ganfod "
-"argraffydd, diffoddwch \"Awto ganfod argraffyddion\" i osod argraffydd heb "
-"awto ganfod. Defnyddiwch \"Modd Arbenigwr\" printdrake pan fyddwch am osod "
-"argraffydd pell os nad yw printerdrake yn ei restri'n awtomatig."
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Awto ganfod argraffyddion"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"Llongyfarchiadau, mae eich argraffydd wedi ei osod a'i ffurfweddu!\n"
-"\n"
-"Os ydych am ychwanegu, tynnu neu ailenwi argraffydd, neu os ydych am newid y "
-"gosodiadau dewis rhagosodedig (mewnflwch papur, ansawdd y printiad,...0, "
-"dewiswch \"Argraffydd\" yn adran \"Caledwedd\" Canolfan Rheoli Mandrake."
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Awto ganfod Argraffyddion"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Mae Printerdrake yn medru awto ganfod eich argraffyddion paralel ac USB "
-"lleol, ond sylwch fod awto ganfod yn MEDRU RHEWI EICH SYSTEM AC ARWAIN AT "
-"SYSTEMAU FFEIL LLWGR! Gwnewch hyn AR EICH MENTER EICH HUN!\n"
-"\n"
-"Ydych eisiau i'ch argraffydd gael ei awto ganfod?"
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Defnyddio awto ganfod"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Gosod argraffydd gyda llaw"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "Canfyddwyd %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Argraffydd ar borth paralel \\/\"%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "Argraffydd USB \\/\"%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Heb ganfod argraffydd lleol! I osod argraffydd gyda llaw, rhowch enw'r "
-"ddyfais /enw ffeil ar y llinell mewnbwn (Porth Paralel: /dev/lp0, /"
-"dev/,...., cyfatebol i LPT1:, LPT2,..., argraffydd USB 1af: /dev/usb/lp0, "
-"ail argraffydd USB: /dev/usb/lp1,...)."
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Rhaid cynnig enw dyfais neu ffeil!"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Heb ganfood argraffydd lleol!\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Dim ond ar ôl cwblhau'r gosodiad mae modd gosod argraffyddion rhwydwaith. "
-"Dewiswch \"Caledwedd\" ac yna \"Argraffydd\" yng Nghanolfan Rheoli Mandrake"
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"I osod argraffyddion rhwydwaith, cliciwch \"Diddymu\", trowch i \"Modd "
-"Arbenigwr\", clicio \"Ychwanegu argraffydd newydd\" eto."
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"Cafodd yr argraffydd canlynol ei awto ganfod, os nad hwn yw'r un rydych am "
-"ei ffurfweddu, rhowch enw dyfais/enw ffeil ar y llinell mewnbwn."
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"Dyma restr o'r holl argraffyddion gafodd eu awto ganfod. Dewiswch yr "
-"argraffydd rydych am ei osod neu rhowch enw dyfais/ffeil yn y llinell "
-"mewnbwn."
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-"Cafodd yr argraffydd hwn ei awto ganfod. Bydd ffurfweddi'r argraffydd yn "
-"digwydd yn awtomatig. Os na chafodd eich argraffydd ei ganfod yn gywir neu "
-"byddai'n well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
-"\"Ffurfweddiad gyda Llaw\"."
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Dyma restr o'r holl argraffyddion gafodd eu awto ganfod. Dewiswch yr "
-"argraffydd rydych am ei osod. Bydd ffurfweddu'r argraffydd yn digwydd yn "
-"awtomatig. Os na chafodd eich argraffydd ei ganfod yn gywir neu byddai'n "
-"well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
-"\"Ffurfweddiad gyda Llaw\"."
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Dewiswch y porth y mae eich argraffydd wedi cysylltu iddo neurhowch enw "
-"dyfais/ffeil ar y ninell mewnbwn"
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Dewiswch y porth mae'r argraffydd wedi cysylltu iddo."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Pyrth paralel: /dev/lp0, /dev/lp1, ..., yn cyfateb i LPT1:, LPT2:, ..., "
-"argraffydd USB cyntaf: /dev/usb/lp0, ail argraffydd USB : /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Rhaid dewis/rhoi argraffydd/dyfais!"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Ffurfweddiad gyda llaw"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-"A yw eich argraffydd yn ddyfais amlbwrpas gan HP (OfficeJet, PSC, "
-"PhotoSmart LaserJet 1100/1200/1220/3200/3300 gyda sganiwr)"
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "Gosod pecynnau HPOJ"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Gwirio a ffurfweddu dyfais HPOJ..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Gosod pecynnau SANE"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Sganio eich dyfais HP aml bwrpas"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "Gwneud porth argraffydd ar gael ar gyfer CUPS"
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Darllen cronfa ddata argraffydd..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Dewisiadau Argraffydd lpd Pell"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"I ddefnyddio argraffydd lpd pell, rhaid darparu enw gwesteiwr gwasanaethwr "
-"yr argraffydd ac enw'r argraffydd ar y gwasanaethwr hwnnw."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Enw gwesteiwr pell"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Enw'r argraffydd pell"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Mae enw'r gwesteiwr pell ar goll!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Mae enw'r argraffydd pell ar goll!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Dewisiadau Argraffydd SMB (Windows 9x/NT)"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"I argraffu i argraffydd SMB, rhaid darparu enw gwesteiwr SMB (Sylwer! Mi all "
-"fod yn wahanol i'w enw gwesteiwr TCP/IP!) ac o bosibl cyfeiriad IP'r "
-"gwasanaethwr argraffu, yn ogystal â'r enw rhannu ar gyfer yr argraffydd "
-"rydych am gael mynediad iddo ac unrhyw enw defnyddiwr, cyfrinair a "
-"gwybodaeth am grwp gwaith perthynol."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Gwasanaethwr gwesteiwr SMB"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP Gwasanaethwr SMB"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Rhannu enw"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Grwp gwaith"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Rhaid rhoi un ai enw'r gwasanaethwr neu IP'r gwasanaethwr!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Mae enw rhannu Samba ar goll!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Dewisiadau Argraffydd NetWare"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"I argraffu ar argraffydd NetWare, rhaid i chi rhoi enw gwasanaethwr argraffu "
-"NetWare (Sylwer! gall fod yn wahanol i'w enw gwesteiwr TCP/IP) yn ogystal "
-"â'r rhes waith argraffu am yr argraffydd rydych am gael mynediad iddo ac "
-"unrhyw enw defnyddiwr a chyfrinair perthnasol."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Gwasanaethwr Argraffydd"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Enw Rhes Argraffu"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "Mae enw gwasanaethwr NCP ar goll!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "Mae enw rhes NCP ar goll"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "Dewisiadau Argraffydd TCP/Soced"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"I argraffu i argraffydd TCP neu soced, rhaid i chi ddarparu enw gwesteiwr yr "
-"argraffydd ac yn ddewisol rhif y porth. Ar wasanaethwyr HP JetDirect rhif y "
-"porth, fel rheol, yw 9100, gall amrywio ar wasanaethwyr eraill. Gweler "
-"llawlyfr eich caledwedd"
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Enw'gwesteiwr yr argraffydd"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Mae enw'r gwesteiwr argraffu ar goll!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "URI Dyfais Argraffu"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Medrwch enwi'n benodol URI i gael mynediad i'r argraffydd. Rhaid i'r URI "
-"gyflawni manylyn un ai CUPS neu Foomatic. Sylwer nad yw pob math o URI cyn "
-"cael eu cynnal gan bob sbwlydd ."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Rhaid cynnig URI dilys!"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Mae pob argraffydd angen enw (e.e. \"argraffydd\". Nid oes angen llanw "
-"meysydd Disgrifiad a Lleoliad. Lle ar gyfer sylwadau'r defnyddiwr sydd yma."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Enw'r argraffydd"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Disgrifiad"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Lleoliad"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Paratoi cronfa ddata argraffydd..."
-
-#: ../../printerdrake.pm_.c:1112
-msgid "Your printer model"
-msgstr "Model eich argraffydd"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Mae Printerdrake wedi cymharu'r enw model yn sgil yr awto ganfod gyda'r "
-"modelau sy'n cael eu rhestri yn ei gronfa ddata i gael y cydweddiad gorau. "
-"Gall y dewis fod yn anghywir, yn arbennig os nad yw eich argraffydd yn cael "
-"ei enwi yn y gronfa ddata. Felly, edrychwch i weld â yw'r dewis yn gywir a "
-"chliciwch \"Model cywir\" os yw ac os nad yw, cliciwch \" Dewiswch y model "
-"gyda llaw\" fel bo modd i chi ddewis eich argraffydd gyda llaw ar y sgrin "
-"nesaf.\n"
-"\n"
-"Ar gyfer eich argraffydd mae Printerdrake wedi canfod\n"
-"\n"
-"%s"
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-msgid "The model is correct"
-msgstr "Mae'r model yn gywir"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-msgid "Select model manually"
-msgstr "Dewiswch y model gyda llaw"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Dewis model yr argraffydd"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Pa fath o argraffydd sydd gennych?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Gwiriwch os yw Printerdrake wedi awto ganfod eich argraffydd yn gywir. "
-"Chwiliwch am y model cywir pan fo'r cyrchwr yn sefyll ar y model anghywir "
-"neu ar \"Argraffydd bras\"."
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Nid yw eich argraffydd wedi ei rhestri, dewiswch un cyfatebol (gw. llawlyfr "
-"eich argraffydd) neu un tebyg."
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "Ffurfweddiad OKI winprinter "
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Rydych yn ffurfweddu winprinter laser OKI. Mae'r argraffydd hwn\n"
-"yn defnyddio protocol cyfathrebu arbennig. Dim ond trwy eu cysylltu â'r "
-"porth paralel cyntaf mae modd cael yr argraffydd hwn i weithio. Pan fo eich "
-"argraffydd wedi ei gysylltu i borth arall neu i flwch gwasanaethwr argraffu, "
-"cysylltwch yr argraffydd i'r porth paralel cyntaf cyn argraffu tudalen "
-"brawf. Os na wnewch chi hynny, ni fydd yr argraffydd yn gweithio. Bydd eich "
-"gosodiad ynghylch ymath o gysylltiad yn cael ei anwybyddu gan y gyrrwr."
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Ffurfweddiad inkjet Lexmark"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Mae'r gyrwyr argraffydd inkjet sydd wedi eu darparu gan Lexmark yn cynnal "
-"argraffyddion lleol, yn unig. Cysylltwch eich argraffydd i borth lleol neu "
-"ffurfweddwch ef i'r peiriant mae'n gysylltiedig ag ef."
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-"I fedru argraffu gyda eich argraffydd inkjet Lexmark a'r ffurfweddiad hwn, "
-"bydd angen gyrwyr argraffydd inkjet sydd wedi eu darparu gan Lexmark (http://"
-"www.lexmark.com/). Ewch i'w safle yn yr UDA a chliciwch ar y botwm \"Drivers"
-"\". Yna dewiswch eich model ac yna \"Linux\" fel system weithredu. Mae'r "
-"gyrwyr yn dod fel pecynnau RPM neu sgriptiau cragen gyda gosodiad graffigol "
-"rhyngweithiol. Nid oes angen i chi wneud y ffurfweddiad drwy'r wyneb "
-"graffigol. Diddymwch yn syth wedi'r cytundeb trwyddedu. Yna argraffwch "
-"dudalennau'r alinio'r pen argraffu gyda \"lexmarkmaintain\" a newid "
-"gosodiadau aliniad y pen gyda'r rhaglen."
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Gosodiadau rhagosodedig yr argraffydd\n"
-"\n"
-"Dylech wneud yn siwr fod maint y dudalen a'r modd math inc/argraffu (os ar "
-"gael) a hefyd bod ffurfweddiad caledwedd argraffyddion laser (cof, uned "
-"ddeublyg, blychau papur ychwanego) wedi eu gosod yn gywir. Sylwer bod fod "
-"argraffiad ansawdd/cydraniad uchel iawn yn medru arafu'r argraffu'n "
-"sylweddol.."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Rhaid i ddewis %s fod yn gyfanrif"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Rhaid i ddewis %s fod yn rhif!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Dewis %s allan o amrediad!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Ydych chi am osod argraffydd (\"%s\")\n"
-"fel yr argraffydd rhagosodedig?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Tudalennau prawf"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Dewiswch y tudalennau prawf rydych am eu hargraffu\n"
-"Sylwer: gall y dudalen brawf llun camera gymryd cryn dipyn o amser cyn cael "
-"ei argraffu ac ar argraffydd laser heb lawer o gof mae'n bosibl na ddaw o "
-"gwbl. Yn y rhan fwyaf o achosion, mae'r prawf tudalen safonol yn ddigonol."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Dim tudalennau prawf"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Argraffu"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Tudalen prawf safonnol"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Prawf tudalen arall (Llythyr)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Prawf tudalen arall (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Tudalen prawf llun"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "Peidiwch argraffu tudalennau prawf"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Argraffu tudalen(nau) prawf..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Mae tudalennau prawf wedi eu hanfon i'r argraffydd.\n"
-"Gall gymryd amser cyn i'r argraffydd gychwyn.\n"
-"Statws argraffu:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Mae tudalen(nau) prawf wedi eu hanfon at yr argraffydd.\n"
-"Gall gymryd amser cyn i'r argraffydd gychwyn.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "A weithiodd hwnnw'n iawn?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Argraffydd bras"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"I argraffu ffeil o'r linell orchymyn (ffenestr derfynnell) mae modd "
-"defnyddio un ai'r gorchymyn \"%s <file>\" neu offeryn argraffu graffigol: "
-"\"xpp <file>\" neu \"kprinter <file>\". Mae'r offeryn graffigol yn caniatáu "
-"chi ddefnyddio'r argraffydd ac i newid gosodiadau dewis yn hawdd.\n"
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Mae modd defnyddio'r gorchmynion hyn ym maes \"Gorchmynion Argraffu\" y "
-"deialogau argraffu mewn nifer o raglenni, ond yma nid ydynt yn darparu'r "
-"enw ffeil am fod y ffeil i'r argraffydd yn cael ei ddarparu gan y rhaglen.\n"
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"Mae'r gorchymyn \"%s\" hefyd yn caniatau i newid y gosodiadau dewis ar gyfer "
-"tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r llinell "
-"gorchymyn, e.e \"%s <file>\". "
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"Er mwyn cael gwybodaeth am y dewisiadau sydd ar gael ar gyfer yr argraffydd "
-"cyfredol darllenwch un ai'r rhestr isod neu cliciwch ar y botwm \"Rhestr "
-"dewis argraffu\"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Dyma restr o'r dewisiadau argraffu sydd ar gael ar gyfer yr argraffydd "
-"presennol:\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch "
-"orchymyn \"%s <file>\".\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Mae modd defnyddio'r gorchymyn hwn ym maes \"Gorchymyn argraffu\" deialog "
-"nifer o raglenni. Ond peidiwch â rhoi'r enw ffeil yma oherwydd bod y ffeil "
-"i'w argraffu wedi ei ddarparu gan y rhaglen.\n"
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"I edrych ar y rhestr o'r dewisiadau sydd ar gael ar gyfer yr argraffydd "
-"cyfredol cliciwch ar fotwm \"Rhestr dewisiadau argraffu\"."
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch y "
-"gorchymyn \"%s <file>\" or \"%s <file>\".\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Mae modd hefyd i ddefnyddio rhag wyneb graffigol \"xpdq\" i osod dewisiadau "
-"a thrin gwaith argraffu.\n"
-"\n"
-"Os ydych yn defnyddio KDE fel amgylchedd pen bwrdd mae gennych \"botwm "
-"argyfwng\", eicon ar y pen bwrdd, wedi ei labelu \"Atal yr Argraffydd!\", "
-"fydd yn stopio 'r holl waith argraffu'n syth pan fyddwch yn ei glicio. Mae "
-"hyn yn ddefnyddiol pan fydd y papur wedi mynd yn sownd, ag ati.\n"
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Mae'r gorchmynion \"%s\" a \"%s\" hefyd yn caniatáu newid y gosodiadau dewis "
-"ar gyfer tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r "
-"llinell gorchymyn, e.e \"%s <file>\".\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Cau"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Argraffu/Sganio ar \"%s\""
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Argraffu ar argraffydd \"%s\""
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Rhestr ddewis argraffu"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Mae eich dyfais aml bwrpas HP wedi cael ei ffurfweddu'n awtomatig i fedru "
-"sganio. Mae modd i chi sganio gyda \"scanimage\" (\"scanimage -d hp:%s\" i "
-"bennu pa un os oes gennych fwy nag un) o'r llinell orchymyn neu gyda rhag "
-"wynebau graffigol \"xscanimage\" neu \"xsane\". Os ydych yn defnyddio GIMP, "
-"medrwch sganio hefyd, drwy ddewis y man priodol yn y ddewislen \"Ffeil\"/"
-"\"Cipio\". Galwch hefyd \"man scanimage\" a \"man sane-hp\" ar y linell "
-"orchymyn i dderbyn mwy o wybodaeth.\n"
-"\n"
-"Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Mae eich dyfais aml bwrpas HP wedi cael ei ffurfweddu'n awtomatig i fedru "
-"sganio. Medrwch sganio o'r llinell orchymyn gyda \"ptal-hp %s scan ...\".. "
-"Nid yw sganio drwy gyfrwng rhyng wyneb graffigol na GIMP yn cael ei gynnal "
-"eto ar gyfer eich dyfais. Mae rhagor o wybodaeth i'w gael yn ffeil \"/usr/"
-"share/doc/hpoj-0.8/ptal-hp-scan.html\" ar eich system. Os oes gennych HP "
-"LaserJet 1100 neu 1200 yna dim ond os oes gennych y dewis sganio wedi ei "
-"osod mae modd sganio.\n"
-"Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Darllen data argraffydd..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Mae modd i chi gopďo ffurfweddiad yr argraffydd fel wnaethoch o yspwlydd %s "
-"i %s eich yspwlydd cyfredol. Bydd yr holl ddata ffurfweddi (enw argraffydd, "
-"disgrifiad, lleoliad, math o gysylltiad a gosodiadau dewis rhagosodedig) yn "
-"cael eu trosi, ond ni fydd y gwaith argraffu'n cael eu trosi.\n"
-"Ni fydd yr holl waith argraffu'n cael eu trosi, am y rhesymau canlynol:\n"
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"Nid yw CUPS yn cefnogi argraffyddion ar wasanaethwyr Novell neu "
-"argraffyddion sy'n anfon data mewn gorchymyn ffurf -rhydd.\n"
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"Mae PDQ yn cynnal argraffyddion lleol, LDP pell, a Socket/TCP, yn unig.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "Nid yw LPD na LPRng yn cynnal argraffyddion IPP.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Yn ogystal, nid oes modd trosglwyddo rhesi grewyd gan y rhaglen hon na "
-"\"foomatic-configure\"."
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Hefyd nid oes modd trosglwyddo argraffyddion ffurfweddwyd gyda ffeiliau PPD "
-"ddarparwyd gan eu gwneuthurwyr na gyrrwyr CUPS brodorol."
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Nodwch yr argraffydd rydych am ei drosglwddo a chliciwch\n"
-"\"Trosglwyddo\"."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Peidio trosglwyddo argraffydd"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Trosglwyddo"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Mae argraffydd o'r enw \"%s\" yn bodoli eisoes yn %s.\n"
-"Cliciwch \"Trosglwyddo\" i ysgrifennu drosto.\n"
-"Mae modd i chi osod enw newydd arno neu ei hepgor."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"Dylai enw'r argraffydd gynnwys llythrennau, rhifau a'r tanlinellu, yn unig"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Mae argraffydd \"%s\" yn bodoli eisoes,\n"
-"ydych chi wir eisiau ailysgrifennu ei ffurfweddiad?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Enw'r argraffydd newydd"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "Trosglwyddo %s..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Rydych wedi trosglwyddo eich argraffydd rhagosodedig blaenorol rhagosodedig "
-"(\"%s\"). A ddylai fod yn argraffydd rhagosodedig y system argraffu newydd %"
-"s ?"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Adnewyddu data'r argraffydd..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Ffurfweddiad argraffydd pell"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Cychwyn y rhwydwaith..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Ffurfweddwch y rhwydwaith"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "Nid yw swyddogaethau'r rhwydwaith wedi ei ffurfweddu"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Ydych chi am ffurfweddi argraffydd pell. Mae hyn angen mynediad ar "
-"rwydwaith, ond nid yw eich rhwydwaith wedi ei ffurfweddu eto. Os ydych am "
-"fynd ymlaen heb ffurfweddiad rhwydwaith, ni bydd modd i chi ddefnyddio'r "
-"argraffydd rydych yn ei ffurfweddu ar hyn o bryd. Beth ydych am ei wneud?"
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Mynd yn eich blaen heb ffurfweddu'r rhwydwaith"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-"Nid oes modd cychwyn y ffurfweddiad rhwydwaith wnaed yn ystod y gosodiad. "
-"Gwiriwch p'un ai yw'r rhwydwaith yn darparu mynediad ar ôl cychwyn eich "
-"system a chywiro'r ffurfweddiad gan ddefnyddio Canolfan Rheoli Mandrake, "
-"adran \"Rhwydwaith a'r Rhyngrwyd\"/\"Cysylltiad\", ac yna gosod yr "
-"argraffydd, eto gan ddefnyddio Canolfan Rheoli Mandrake, adran \"Caledwedd\"/"
-"\"Argraffydd\""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Nid oedd mynediad i'r rhwydwaith yn rhedeg ac nid oedd modd ei gychwyn. "
-"Gwiriwch eich ffurfweddiad a'ch caledwedd. Yna ceisiwch ail ffurfweddi eich "
-"argraffydd."
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Ailgychwyn system argraffu..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "uchel"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "Paranoia"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Gosod system argraffu yn lefel diogelwch %s"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Rydych ar fin gosod system argraffu %s ar system sy'n rhedeg lefel diogelwch "
-"%s. \n"
-"\n"
-"Mae'r system yn rhedeg daemon (proses gefndirol) sy'n aros am waith argraffu "
-"ac yna yn eu trin. Mae'r daemon hefyd yn gyraeddadwy gan beiriannau pell "
-"drwy'r rhwydwaith ac felly'n bwynt ymosod. Felly, dim ond ychydig o "
-"ddaemonau sy'n cael eu cychwyn yn rhagosodedig, ar y lefel diogelwch hwn.\n"
-"\n"
-"Ydych chi wir eisiau ffurfweddu argraffu ar y peiriant hwn?"
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Cychwyn y system argraffu wrth gychwyn y cyfrifiadur"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Ni fydd system argraffu (%s) yn cychwyn yn awtomatig pan fydd y peiriant yn "
-"cael ei gychwyn.\n"
-"\n"
-"Mae'n bosibl fod y cychwyn awtomatig wedi ei ddiffodd wrth newid i lefel "
-"diogelwch uwch, am fod a system argraffu'n bwynt tebygol ar gyfer "
-"ymosodiadau.\n"
-"\n"
-"Ydych chi am i'r cychwyn awtomatig gael ei droi ymlaen eto?"
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Gwirio'r meddalwedd sydd wedi ei osod..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "Tynnu LPRng..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "Tynnu LPD..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Dewiswch Sbwlydd Argraffydd"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Pa system argraffu(sbwlydd) ydych chi am ei ddefnyddio?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Ffurfweddu argraffydd \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "Gosod Foomatic..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Dewisiadau argraffydd"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "Paratoi PrinterDrake..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-msgid "Configuring applications..."
-msgstr "Ffurfweddi'u rhaglenni"
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Hoffech chi ffurfweddu argraffu?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "System argraffu."
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Mae'r argraffyddion canlynol wedi eu ffurfweddu. Cliciwch ar un i newid ei "
-"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth "
-"amdano; neu i wneud argraffydd CUPS pell ar gael ar gyfer Star Office/"
-"OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Mae'r argraffyddion canlynol wedi eu ffurfweddi. Cliciwch ar un i newid ei "
-"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth amdano."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Adnewyddu rhestr argraffyddion (dangos pob argraffydd CUPS pell sydd ar gael)"
-
-#: ../../printerdrake.pm_.c:2464
-msgid "Change the printing system"
-msgstr "Newidiwch y system argraffu"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Modd Arferol"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Ydych chi eisiau ffurfwedu argraffydd arall?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Newid ffurfweddiad yr argraffydd"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Argraffydd %s\n"
-"Beth ydych am ei newid ar yr argraffydd hwn?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "Gwna!!"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Math o gyswllt argraffydd"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Enw'r argraffydd, disgrifiad, lleoliad"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Gwneuthurwr yr argraffydd, model, gyrrwr"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Gwneuthurwr yr argraffydd, model"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Gosod yr argraffydd fel y rhagosodedig"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Ychwanegwchyr argraffydd hwn i Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Tynnwch yr argraffydd hwn o Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Argraffu tudalennau prawf"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Gwybod sut i ddefnyddio'r argraffydd"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Tynnu argraffydd"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Tynnu hen argraffydd \"%s\"..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Argraffydd rhagosodedig"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Mae argraffydd \"%s\" wedi ei osod fel yr argraffydd rhagosodedig."
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Ychwanegu argraffydd i Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-"Mae argraffydd \"%s\" wedi ei ychwanegu'n llwyddiannus i Star Office/"
-"OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-"Wedi methu ag ychwanegu argraffydd \"%s\" i Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Tynnu'r argraffydd o Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-"Cafodd argraffydd \"%s\" ei dynnu'n llwyddiannus o Star Office/OpenOffice."
-"org."
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "Methwyd â thynnu argraffydd \"%s\" o Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Ydych chi wir eisiau tynnu argraffydd \"%s\""
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Tynnu argraffydd \"%s\"..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Ffurfweddu dirprwy"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Croeso i'r gwasanaeth ffurfweddu 'r dirprwy.\n"
-"\n"
-"Yma bydd modd i chi osod eich dirprwyon http a ftp gyda\n"
-"neu heb mewngofnod a chyfrinair\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Rhowch y wybodaethar gyfer dirprwyo http\n"
-"Gadewch hwn yn wag os nad ydych eisiau dirprwy http"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "porth"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "Dylai'r URL ddechrau gyda \"http:\""
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Dylai'r rhan porth fod yn rhifol"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Llanwxh y gwybodaeth dirprwy ftp\n"
-"Gadewch yn wag os nad ydych eisiau dirprwy ftp"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Dylai'r URL ddechrau gyda 'ftp:'"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Rhowch mewngofnod a chyfrinair dirprwyol, os oes angen.\n"
-"Gadwech yn wag os nad ydych am gael mewngofnod a chyfrinair"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "mewngofnodi"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "cyfrinair"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "aildeipiwch y gyfrinair"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Nid yw'r cyfrineiriau'n cydweddi. Rhowch gynnig arall arni!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Methu ychwanegu rhaniad to_formatted_RAID md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Methu ysgrifenu ffeil %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "methodd mkraid"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "methodd mkraid (efallai bod raidtools ar goll)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Dim digon o raniadau ar gyfer RAID lefel %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Cychwynnwch system sain ALSA (Pensaernďaeth Sain Linux Uwch)"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron trefnydd gorchymyn cyfnodol"
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"Mae apmd yn cael ei ddefnyddio i fonitro statws y batri a \n"
-"mewngofnodi drwy syslog. Mae modd ei ddefnyddio i gau'r \n"
-"peiriant pan mae'r batri'n isel."
-
-#: ../../services.pm_.c:18
-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 ""
-"Mae'n rhedeg gorchmynion wedi eu trefnu gan y gorchymyn at ar amser wedi \n"
-"ei bennu pan oedd at yn rhedeg, gan rhedeg gorchmynion swp pan fydd \n"
-"cyfartaledd y llwyth yn ddigon isel."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"Mae cron yn rhaglen safonnol yn UNIX sy'n rhedeg rhaglenni sydd wedi eu \n"
-"pennu gan y defnyddiwr ar adegau penodol. Mae vixie cron yn ychwanegu \n"
-"nifer o ychwanegiadau i'r UNIX cron sylfaenol, yn cynnwys gwell diogelwch \n"
-"a dewisiadau ffurfweddu mwy pwerus."
-
-#: ../../services.pm_.c:23
-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 ""
-"Mae GPM yn ychwanegu cefnogaeth ar gyfer llygoden i raglenni testun Linux \n"
-"megis, Midnight Commander. Mae hefyd yn caniatáu gweithrediadau torri a \n"
-"gludo consol llygoden, gan gynnwys cefnogaeth ar gyfer bryslenni yn y "
-"consol. "
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"Mae HardDrake yn rhedeg archwiliwr caledwedd, a gall yn ôl \n"
-"eich dewis, ffurfweddu caledwedd newydd neu sydd wedi newid."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Mae Apache yn wasanaethwr y We Fyd Eang. Mae'n cael ei ddefnyddio "
-"iwasanaethu ffeiliau HTML a CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Mae daemon uwchwasanaethwr rhyngrwyd (inetd) yn cychwyn nifer\n"
-"o wasanaethau rhyngrwyd eraill, yn ôl y galw. Mae'n gyfrifol am gychwyn\n"
-"nifer o wasanaethau, gan gynnwys telnet, ftp, rsh a rlogin. Mae analluogi \n"
-"inetd yn analluogi'r holl wasanaethau mae'n gyfrifol amdanynt."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Cychwyn hidlydd pecynnau ar gyfer cnewyllyn cyfres Linux 2.2 \n"
-"i greu mur gwarchod i amddiffyn eich peiriant rhag ymosodiadau \n"
-"o'r rhwydwaith."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Mae'r pecyn hwn yn llwytho'r map bysellfwrdd rydych wedi \n"
-"ei ddewis fel yn /etc/sysconfig/keyboard. Mae modd dewis \n"
-"hwn wrth ddefnyddio'r rhaglen wasanaethu kbdconfig. \n"
-"Dylech adael hwn wedi ei alluogi ar gyfer y rhanfwyaf o beiriannau."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Ailgreu awtomatic pennawd y cnewyllyn yn /boot ar\n"
-"gyfer /usr/include/linux{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Canfod a ffurfweddu awtomatic caledwedd wrth gychwyn y cyfrifiadur."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr "Bydd Linuxconf yn trefnu ar adegau i gyflawnu amrywiol"
-
-#: ../../services.pm_.c:43
-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 ""
-"Mae lpd yn ddaemon argraffu sy'n angenrheidiol i lpr weithio\n"
-"Mae'n wasanaethwr sy'n cyflafareddu gwaith argraffu i\n"
-"argraffydd (ion)."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Mae Gwasanaethwr Rhith Linux yn cael ei ddefnyddio i adeiladu \n"
-"gwasanaethwyr cyflym a chyraeddadwy."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"mae'r enwyd (BIND) yn Wasanaethwr Enw Parth (DNS) sy'n cael ei ddefnyddio i "
-"gydrannu enwau gwestai i'r cyfeiriadau IP."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Yn gosod a dadosod pob System Ffeil y Rhwydwaith (NFS), SMB\n"
-"(Rheolwr Rhwydwaith/Windows), a phwyntiau gosod NCP (NetWare) ."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Cychwyn/Gorffen pob rhyngwyneb rhwydwaith sydd wedi eu \n"
-"ffurfweddu i gychwyn wrth gychwyn y peiriant."
-
-#: ../../services.pm_.c:52
-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 ""
-"Mae NFS yn brotocol poblogaidd ar gyfer rhannu ffeiliau ar draws "
-"rhwydweithiau TCP/IP.\n"
-"Mae'r gwasanaeth yn darparu ffwythiannaeth gwasanaethwr NFS, sy;n cael ei "
-"ffurfweddu\n"
-"drwy'r ffeil /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"Mae NFS yn brotocol poblogaidd ar gyfer rhannu ffeiliau \n"
-"ar draws rhwydweithiau TCP/IP. Mae'r gwasanaeth hwn \n"
-"yn darparu'r gallu i gloi ffeiliau NFS."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Cychwyn clo allweddell numlock yn awtomatig yn consol \n"
-"ac XFree wrth gychwyn y peiriant."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Cynnal OKI 4w ac argraffyddion windows cyffelyb."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"Mae cynhaliaeth PCMICA fel rheol ar gyfer cynnal pethau fel \n"
-"ethernet a modem mewn gliniadur. Ni fydd yn cychwyn heb ei \n"
-"ffurfweddu i wneud hynny, felly mae'n ddiogel ei gael ar beiriannau \n"
-"sydd ddim ei angen."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Mae'r mapiwr porth (portmapper) yn rheoli cysylltiadau RPC, \n"
-"sy'n cael eu defnyddio gan brotocolau fel NFS a NIS. Rhaid i wasanaethwr "
-"porthmap\n"
-"redeg ar beiriannau sy'n gweithredu fel gwasanaethwyr ar gyfer protocolau "
-"sy'n\n"
-"gwneud defnydd o fecanwaith RPC."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Mae Postfix yn Asiant Cludo E-bost (MTA), sef rhaglen sy'nsymud e-bost o un "
-"peiriant i'r llall."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Bydd yn cadw ac adfer system pwll entropi ar gyfer cynhyrchu rhif \n"
-"hap o ansawdd uchel."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr "Dynodi dyfeisiadau"
-
-#: ../../services.pm_.c:71
-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 ""
-"Mae'r daemon llwybrydd yn caniatáu i'r tabl llwybrydd IP awtomatig \n"
-"ddiweddaru drwy gyfrwng y protocol RIP. Tra bo RIP'n cael ei \n"
-"ddefnyddio'n eang ar rhwydweithiau bach, mae angen protocolau \n"
-"llwybrydd mwy cymleth ar gyfer rhwydweithiwu cymleth."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Mae'r protocol rstat yn caniatáu i ddefnyddwyr rhwydwaith \n"
-"i adennill metric perfformaid unrhyw beiriant ar y rhwydwaith."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Mae protocol ruser yn caniatáu i ddefnyddwyr ar rwydwaith i adnabod\n"
-"pwy arall sydd wedi mewngofnodi ar beirianau eraill sy'n ymateb."
-
-#: ../../services.pm_.c:78
-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 ""
-"Mae'r protocol rwho'n caniatáu i ddefnyddwyr pell gael rhestr o'r \n"
-"holl ddefnyddwyr sydd wedi mewngofnodi ar beiriant sy'n rhedeg \n"
-"daemon rwho (yn debyg i fysedd)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Cychwyn y system sain ar eich peiriant"
-
-#: ../../services.pm_.c:81
-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 yw'r modd mae llawer o daemonau'n defnyddio i gofnodi \n"
-"negeseuon i ffeiliau cofnod systemau. mae'n syniad da io rhedeg \n"
-"syslog bob tro."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Llwytho'r gyrrwyr ar gyfer eich dyfeisiau usb."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Yn cychwyn Gwasanaethwr Ffont X (mae hyn yn orfodol i XFree i redeg).."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-"Dewiswch pa wasanaethau ddylai gael eu cychwyn yn awtomatig wrth gychwyn y "
-"cyfrifiadur"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Argraffu"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Rhyngrwyd"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Rhannu Ffeiliau"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "System"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Gweinyddu Pell"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Gwasanaethwr Cronfa Ddata"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Gwasanaethau: %d wedi eu cychwyn ar gyfer %d wedi eu cofrestri"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Gwasanaethau"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "rhedeg"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "ataliwyd"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Gwasanaethau a daemonau"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr "Dim gwybodaeth ychwanegol am y gwasanaeth hwn."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Cychwyn"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Cychwyn"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Aros"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Diolch am ddewis Mandrake Linux 8.2"
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr "Croeso i fyd Cod Agored"
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-"Mae llwyddiant MandrakeSoft yn seiliedig ar egwyddor Meddalwedd Rhydd. Mae "
-"eich system weithredu newydd yn ganlyniad gwaith cydweithredol ar ran y "
-"Gymuned Linux byd-eang"
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "Ymunwch â byd Meddalwedd Rhydd"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-"Dewch i adnabod y gymuned Cod Agored a dewch yn aelod. Dysgwch, addysgwch a "
-"chynorthwywch eraill drwy ymuno yn y grwpiau trafod niferus sydd i'w cael yn "
-"ein tudalennau gwe \"Cymuned\""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Y Rhygnrwyd a Negesu"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-"Mae Mandrake Linux 8.2 yn cynnig y feddalwedd orau i gael mynediad i bopeth "
-"sydd gan y Rhyngrwyd i'w gynnig. Syrffiwch y we a gwyliwch animeddiadau gyda "
-"Mozilla a Konqueror, cyfnewidiwch e-bost a threfnu eich gwybodaeth gyda "
-"Evolution a Kmail, a llawr iawn rhagor. "
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Amlgyfrwng a Graffigau"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-"Mae Mandrake Linux 8.2 yn caniatáu i chi wthio eich cyfrifiadur aml-gyfrwng "
-"i'r eithaf! Defnyddiwch y feddalwedd ddiweddaraf i chwarae ffeiliau "
-"cerddoriaeth a sain, golygu a threfnu eich delweddau a lluniau, gwylio "
-"teledu a fideo, a llawer iawn mwy"
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Datblygiad"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-"Mandrake Linux 8.2 yw'r platfform datblygu gorau. Darganfyddwch rym grynhowr "
-"gcc GNU yn ogystal ag amgylcheddau datblygiadol Cod Agored gorau oll"
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Canolfan Rheoli Mandrake"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-"Canolfan Rheoli Mandrake Linux 8.2 yw'r lleoliad canolog ar gyfer llunio a "
-"ffurfio eich system Mandrake"
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "Rhyngwynebau defnyddwyr"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-"Mae Mandrake Linux 8.2 yn darparu 11 amgylchedd penbwrdd graffigol a "
-"rheolwyr ffenestri gwahanol i ddewis ohonynt gan gynnwys Gnome 1.4, KDE "
-"2.2.2., Window Maker 0.8, a'r gweddill"
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Meddalwedd Gwasanethwyr"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-"Trowch eich peiriant i fod yn wasanaethwr pwerus gydag ychydig gliciau ar "
-"eich llygoden: gwasanaethwyr gwe, e-bost, mur gwarchod, llwybrydd, "
-"gwasanaethwr ffeil ac argraffu..."
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Gemau"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-"Mae Mandrake Linux 8.2 yn darparu'r gemau Cod Agored gorau - arcęd, antur, "
-"cardiau, chwaraeon, strategaeth..."
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-"Hoffech chi ddysgu Linux yn syml, yn gyflym, ac am ddim? Mae MandrakeSoft yn "
-"darparu hyfforddiant ar Linux, yn ogystal â ffordd i fesur eich cynnydd, yn "
-"MandrakeCampus - ein canolfan hyfforddiant ar-lein"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-"Mae cefnogaeth werthfawr gan Gymuned Linux, a chan MandrakeSoft i'w gael yn "
-"hwylus. Ac os ydych yn hen law ar Linux, cewch fod yn \"Arbenigwr\" a rhannu "
-"eich gwybodaeth ar ein safle cefnogi"
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-"Ar gyfer eich holl brojectau TG, mae ein hymgynghorwyr ar gael i ddadansoddi "
-"eich anghenion a chynnig atebion unigryw i chi. Medrwch fanteisio ar brofiad "
-"eang MandrakeSoft fel cynhyrchydd Linux i ddarparu ateb TG gwell i'ch busnes."
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-"Mae amrediad eang o ddarpariaeth Linux, yn ogystal â chynigion arbennig ar "
-"gynnyrch a 'difyrrwch', ar gael ar-lein yn ein e-siop"
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-"Am ragor o wybodaeth ar Wasanaethau Profesiynol a chynigion masnachol "
-"MandrakeSoft, gwelwch y dudalen we ganlynol:"
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Gosod pecynnau..."
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Methu darllen eich tabl rhaniadau. Mae'n rhy lwgr i mi :[\n"
-"Af ymlaen i flancio rhaniadau gwael"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Gwall!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Methu canfod ffeil delwedd angenrheidiol '%s'."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Ffurfweddwr Awto-Osod"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Rydych ar fin ffurfweddu disg meddal Gosod Awtomatig. Mae'r nodwedd hwn "
-"braidd yn beryglus a dylid ei ddefnyddio gyda gofal.\n"
-"\n"
-"Gyda'r hodwedd hwn, bydd modd ailchwarau'r gosodiad ar y cyfrifiadur, gan "
-"eich holi'n rhyngweithiol ar gyfer rhai cammau, er mwyn newid eu "
-"gwerthoedd.\n"
-"\n"
-"Ydych chi eisiau parhau?\n"
-"?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "FFurfweddiad Camau Awtomatig"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Dewiswch ar gyfer pob cam a fydd yn ail chwarae fel eich gosodiad, neu a "
-"fydd gyda llaw"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Croeso\n"
-"\n"
-"Mae paramedrau'r awto osod i'w cael yn yr adran ar y chwith"
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Llongyfarchiadau!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Mae'r disg meddal wedi ei gynhyrchu'n llwyddiannus. \n"
-"Medrwch ail chwarae eich gosodiad."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Awto Gosod"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Ychwanegu eitem"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Tynnu'r eitem olaf"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" Adroddiad DrakBackup \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Adroddiad Daemon DrakBackup \n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Manylion Adroddiad DrakBackup \n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "cyfanswm y cynnydd"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "Ffeiliau system wrth gefn"
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "Ffeiliau cadw wrth gefn y Disg Caled"
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn..."
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Cynnydd Disg Caled wrth Gefn..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Cadw wrth gefn ffeiliau eraill..."
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"rhestr ffeil yrrwyd gan FTP: %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth "
-"gefn drwy FTP.\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Gwall wrth anfon e-bost. \n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "Dewis ffeiliau"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr "Dewiswch y ffeiliau neu gyfeiriaduron a chliciwch 'Ychwanegu'"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Gwiriwch pob dewis sydd angen arnoch.\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Mae'r dewisiadau hyn yn medru cadw wrth gefn ac adfer pob ffeil yn eich "
-"cyfeiriadur /etc.\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Cadw wrth gefn ffeiliau System. ( cyfeiriadur /etc )"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Cadw wrth gefn cynyddol (peidio disodli hen ffeiliau wrth gefn)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Peidio cynnwys ffeiliau hanfodol (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Gyda'e dewis hwn medrwch adfer unrhyw fersiwn\n"
-"o'ch cyfeiriadur /etc."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr "Gwiriwch pob defnyddiwr rydych am eu cynnwys yn eich cadw wrth gefn."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "Peidio cynnwys storfa'r porwr"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Defnyddio Cadw wrth Gefn Cynyddol (peidio disodli hen gadw wrth gefn)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Tynnu'r Dewis"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "Defnyddwyr"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Defnyddiwch cysylltiad FTP i gadw wrth gefn"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Rhowch enw'r gwesteiwr neu'r IP"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-"Rhowch y cyfeiriadur i osod y cadw\n"
-"wrth gefn ar y gwesteiwr hwn."
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Rhowch eich mewngofnod"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Rhowch eich cyfrinair"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Cofiwch y cyfrinair"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "Cysylltiad FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Cysylltiad Diogel"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "Defnyddiwch yr CD/DVDROM i gadw wrth gefn"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Dewiswch eich gofod CD"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Gwiriwch os ydych am gynnwys\n"
-" cychwyn gosod ar eich CD"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Rhowch enw dyfais eich Ysgrifennwr CD\n"
-"ex: 0,1,0"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "Defnyddiwch dâp i gadw wrth gefn"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "Rhowch enw dyfais i'w ddefnyddio ar gyfer cadw wrth gefn"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Rhowch y maint mwyaf\n"
-"i'w ganiatáu ar gyfer Drakbackup"
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Defnyddiwch y cwota ar gyfer ffeiliau wrth gefn"
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "Rhwydwaith"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "Disg Caled / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "bob awr"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "bob dydd"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "bob wythnos"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "bob mis"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "Defnyddiwch ddaemon"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"Dewiswch faint o amser\n"
-"fydd rhwng pob cadw wrth gefn"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"Dewiswch y cyfrwng ar\n"
-"gyfer cadw wrth gefn..."
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Defnyddiwch y Disg Caled gyda'i ddaemon"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Defnyddiwch FTP gyda daemon"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-"Gwnewch yn siwr bod daemon cron yn cael ei gynnwys yn eich gwasanaethau"
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "Anfonwch adroddiad e-bost wedi pob cadw wrth gefn i :"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "Beth"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "Lle"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "Pryd"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "Dewisiadau Eraill"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "Ffurfweddiad Drakbackup"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Dewiswch i le rydych am gadw ffeiliau wrth gefn"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "ar Ddisg Caled"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "ar draws Rhwydwaith"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Dewiswch beth rydych am ei gadw wrth gefn"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "System cadw wrth gefn"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "Defnyddwyr Cadw wrth Gwfn"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Dewis defnyddwyr gyda llaw"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Ffynhonell Cadw wrth Gefn:\n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Ffeiliau System: \n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Ffeiliau Defnyddiwr:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Ffeiliau Eraill: \n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"Cadw ar Ddisg caled ar lwybr: %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- Cadw ar FTP ar y gwesteiwr: %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t enw defnyddiwr:%s\n"
-"\t\t ar lwybr: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"-Dewisiadau:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tPeidiwch cynnwys Ffeiliau System\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\t Bydd Cadw wrth gefn yn defnyddio tar a bzip2\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tBydd Cadw wrth Gefn yn defnyddio tar a gzip\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- Daemon (%s) i gynnwys :\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t-Disg Caled.\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-CDROM.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Rhwydwaith drwy FTP.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Rhwydwaith drwy SSH.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Dim ffurfweddiad, cliciwch Dewin neu Uwch.\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Rhestr o ddata i'w adfer:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Rhestr o ddata llwgr:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "Dad-diciwch hwn neu ei dynnu'r tro nesaf."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "Mae'r ffeiliau wrth gefn wedi eu llygru"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " Mae eich dewis data wedi ei "
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " Ei adfer yn Llwyddiannus ar %s "
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " Adfer y Furfweddiad"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "Iawn i adfer ffeiliau eraill"
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Rhestr defnyddwyr i'w adfer ( dim ond y diweddaraf yn ôl y defnyddwyr, sy'n "
-"bwysig )"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "Cadw'r ffeiliau system wrth gefn cyn:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "dewiswch y data i'w adfer"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Defnyddiwch y Ddisg Caled ar gyfer cadw wrth gefn"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Adfer o'r Ddisg Caled."
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "Rhowch y cyfeiriadur lle mae'r ffeiliau wrth gefn yn cael eu cadw"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Dewis cyfrwng arall i adfer ohono"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Cyfrwng Arall"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "Adfer y system"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Adfer Defnyddwyr"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Adfer Arall"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "dewis llwybr arall i adfer ( yn lle / )"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"Gwnewch cadw wrth gefn newydd cyn adfer ( ar gyfer cadw wrth gefn cynyddol "
-"yn unig )"
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Tynnu cyfeiriaduron defnyddiwr cyn adfer."
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Adfer pob cadw wrth gefn"
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "Adfer Dewisol"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Cymorth"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "Cynt"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Gorffen"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Adeiladu Cadw wrth Gefn"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Adfer"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Nesaf"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Crëwch gadw wrth gefn cyn ei adfer...\n"
-" neu gwiriwch fod eich llwybr i'w gadw'n gywir."
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"Gwall wrth ddefnyddio sendmail\n"
-" chafodd eich adroddiad e-bost mo'i anfon\n"
-" Ffurfweddwch eich sendmail"
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Rhestr Pecynnau i'w Gosod"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Gwall wrth anfon ffeil drwy FTP.\n"
-" Cywirwch eich ffurfweddiad FTP."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Dewiswch y data i'w adfer..."
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Dewiswch y cyfrwng ar gyfer cadw wrth gefn..."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Dewiswch y data i'w gadw wrth gefn..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Ni chanfyddwyd y ffeil ffurfweddu \n"
-"cliciwch Dewin neu Uwch."
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "O dan ddatblygiad...arhoswch."
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "Ffeiliau System Cadw wrth Gefn"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Cadw'r ffeiliau eraill wrth gefn"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Cyfanswm Cynydd"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "anfon ffeil drwy FTP"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Anfon ffeiliau..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "Rhestr data i'w gynnwys ar CDROM"
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Rhowch gyflymder yr ysgrifennydd CD"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Rhowch enw dyfais eich Ysgrifennydd CD (ex: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Ticiwch os ydych eisiau cynnwys cychwyn gosod ar eich CD."
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "Cadwch wrth Gefn eich ffeiliau ffurfweddu"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Edrych ar Ffurfweddiad Cadw wrth Gefn"
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "Ffurfweddiad y Dewin"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "Ffurfweddiad Uwch"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "Cadw wrth Gefn Nawr"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-"disgrifiad o'r dewisiadau:\n"
-"\n"
-"Yma mae Drakbackup yn caniatáu i chi newid:\n"
-"\n"
-" - Y modd cywasgu:\n"
-" \n"
-" Os wnewch chi glicio cywasgiad bzip2, byddwch yn \n"
-" cywasgu eich data'n well na gzip (tua 2-10%).\n"
-" Nid yw'r dewis wedi ei nodi drwy ragosodiad gan fod\n"
-" angen mwy o amser ar y modd cywasgu hwn (tua 1000% yn fwy).\n"
-"\n"
-"- Y modd diweddaru:\n"
-"\n"
-" Bydd y dewis hwn yn diweddaru eich caw wrth gefn, ond\n"
-" nid yw'r dewis hwn wir yn ddefnyddiol gan fo angen dadgywasgu\n"
-" eich cadw wrth gefn cyn bo modd i chi ei ddiweddaru.\n"
-" \n"
-"- Y modd .backupignore\n"
-" Fel gyda cvs, bydd Drakbackup yn anwybyddu pob cyfeiriad\n"
-" yn ffeiliau .backupignore ym mhob cyfeiriadur.\n"
-" ar wahân i: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr "\n"
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-"disgrifiad o'r dewisiadau:\n"
-"\n"
-"- Ffeiliau system Cadw wrth Gefn\n"
-" \n"
-"\tMae'r dewis hwn yn caniatáu i chi gadw wrth gefn eich\n"
-"\tcyfeiriadur /etc, sy'n cynnwys eich ffeiliau ffurfweddiad.\n"
-"\tByddwch ofalus wrth ei adfer i beidio trosysgrifo:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-"- Ffeiliau Defnyddiwr Cadw wrth Gefn\n"
-"\n"
-"\tMae'r dewis hwn yn caniatáu i chi ddewis pob defnyddiwr\n"
-"\trydych am gadw wrth gefn ar eu cyfer.\n"
-"\tI ddiogelu lle ar ddisg, argymhellir nad ydych yn cadw storfa'r\n"
-"\t porwr.\n"
-" \n"
-"- Cadw Ffeiliau Eraill wrth Gefn\n"
-"\n"
-"\tMae'r dewis hwn yn caniatáu i chi ychwanegu mwy\n"
-"\to ddata i'w gadw. Gyda'r cadw arall wrth gefn nid\n"
-"\tyw'n bosibl ar hyn o bryd i ddewis cadw wrth gefn\n"
-"\tcynyddol.\t\t\n"
-"\n"
-"Cadw wrth Gefn Cynyddol:\n"
-"\n"
-"\tCadw wrth Gefn Cynyddol yw'r dewis mwyaf pwerus.\n"
-"\tMae'r dewis hwn yn caniatáu i chi gadw eich data wrth\n"
-"\tgefn y tro cyntaf ac yna dim ond yr hyn sydd wedi newid.\n"
-"\tYna bydd modd i chi, yn ystod y cam o adfer, adfer eich\n"
-"\tdata o ddyddiad penodol.\n"
-"\tOs nad ydych wedi dewis hwn, bydd yr holl hen ffeiliau\n"
-"\twrth gefn yn cael eu dileu cyn pob cadw wrth gefn. \n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"disgrifad o adfer:\n"
-"\n"
-"Dim ond y ffeiliau mwyaf diweddar fydd yn cael eu defnyddio,\n"
-"oherwydd gyda candw wrth gefn cynyddol mae angen adfer\n"
-"pob cadw hyn yn unigol.\n"
-"\n"
-"Felly os nad ydych am adfer defnyddiwr dad-ddewiswch ei ddewisiadau.\n"
-"\n"
-"Ar wahan i hynny, dim ond un o rhain mae modd ei ddewis\n"
-"\n"
-"Cadw wrth Gefn Cynyddol:\n"
-"\n"
-"\tCadw wrth Gefn Cynyddol yw'r dewis mwyaf pwerus.\n"
-"\tMae'r dewis hwn yn caniatáu i chi gadw eich data wrth\n"
-"\tgefn y tro cyntaf ac yna dim ond yr hyn sydd wedi newid.\n"
-"\tYna bydd modd i chi, yn ystod y cam o adfer, adfer eich\n"
-"\tdata o ddyddiad penodol.\n"
-"\tOs nad ydych wedi dewis hwn, bydd yr holl hen ffeiliau\n"
-"\twrth gefn yn cael eu dileu cyn pob cadw wrth gefn. \n"
-"\\n\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Hawlfraint(H 2001 MandrakeSoft gan DUPONT Sebastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-"Mae'r rhaglen hon yn feddalwedd rhydd; medrwch ei ailddosbarthu\n"
-"a/neu ei newid o dan amodau Trwydded Gyhoeddus Gyffredinol GNU\n"
-"fel sydd wedi ei gyhoeddi gan y Free Software Foundation; un ai fersiwn\n"
-"2 neu (yn ôl eich dewis) unrhyw fersiwn diweddarach.\n"
-"\n"
-" Mae'r rhaglen yn cael ei ddosbarthu yn y gobaith y bydd yn ddefnyddiol,\n"
-" ond HEB UNRHYW WARANT; heb hyd yn oed awgrym o warant o\n"
-" FASNACHEIDDRWYDD nag ADDASRWYDD AR GYFER PWRPAS\n"
-" PENODOL. Gweler Trwydded Gyhoeddus Gyffredinol GNU am fwy o\n"
-" wybodaeth.\n"
-"\n"
-" Dylech fod wedi derbyn copi o Drwydded Gyhoeddus Gyffredinol GNU\n"
-" gyda'r rhaglen; os nad, ysgrifennwch at:\n"
-" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
-"MA 02111-1307, USA"
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-"Disgrifiad:\n"
-"\n"
-" Mae Drakbackup yn cael ei ddefnyddio i cadw\n"
-" eich ffeiliau system wrth gefn.\n"
-" Yn ystod y ffurfweddiad medrwch ddewis:\n"
-"\t- Ffeiliau system,\n"
-"\t-Ffeiliau defnyddwyr,\n"
-"\t-Ffeiliau eraill.\n"
-"\tneu Eich holl system...ac Arall (megis Rhaniadau Windows)\n"
-"\n"
-" Mae Drackbackup yn caniatáu i chi ddefnyddio:\n"
-"\t- Disg Caled.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (gyda awto gychwyn, achub ac awto osod.).\n"
-"\t- FTP.\n"
-"\t- Webdav.\n"
-"\t- Tâp.\n"
-"\n"
-" Mae Drakbackup yn caniatáu i chi adfer eich system i\n"
-" gyfeiriadur o ddewis y defnyddiwr.\n"
-"\n"
-" Yn rhagosodedig bydd ffeiliau wrth gefn yn cael eu cadw yn eich\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Ffeil ffurfweddiad:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Camau wrth adfer:\n"
-" \n"
-" Yn ystod yr adfer bydd Drakbackup yn tynnu\n"
-" eich cyfeiriadur gwreiddiol a gwirio nad yw'r holl \n"
-" ffeiliau wrth gefn wedi eu llygru. Argymhellir i chi \n"
-" gadw wrth gefn cyn adfer.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-"disgrifiad o'r dewisiadau:\n"
-"\n"
-"Byddwch ofalus wrth ddefnyddio cadw wrth gefn ftp, oherwydd\n"
-"dim ond ffeiliau wrth gefn sydd wedi eu hadeiladu sy'n cael eu\n"
-"hanfon at y gwasanaethwr.\n"
-"Felly, rhaid i chi adeiladu eich cadw wrth gefn ar eich disg caled\n"
-"cyn ei anfon i'r gwasanaethwr.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-"\n"
-"Anawsterau Adfer Ffeiliau wrth gefn\n"
-"\n"
-"Yn ystod yr adfer bydd Drakbackup yn gwirio eich holl\n"
-"ffeiliau wrth gefn cyn eu hadfer.\n"
-"Cyn adfer, bydd Drakbackup yn tynnu'r cyfeiriadur\n"
-"gwreiddiol, a byddwch yn colli eich holl ddata. Mae'n\n"
-"bwysig eich bod yn ofalus a pheidio newid y ffeiliau\n"
-"data wrth gefn gyda llaw.\n"
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-"Disgrifiad:\n"
-"\n"
-" Mae Drakbackup yn cael ei ddefnyddio i cadw\n"
-" eich ffeiliau system wrth gefn.\n"
-" Yn ystod y ffurfweddiad medrwch ddewis:\n"
-"\t- Ffeiliau system,\n"
-"\t- Ffeiliau defnyddwyr,\n"
-"\t- Ffeiliau eraill.\n"
-"\tneu Eich holl system...ac Arall (megis Rhaniadau Windows)\n"
-"\n"
-" Mae Drackbackup yn caniatáu i chi ddefnyddio:\n"
-"\t- Disg Caled.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (gyda awto gychwyn, achub ac awto osod.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tâp.\n"
-"\n"
-" Mae Drakbackup yn caniatáu i chi adfer eich system i\n"
-" gyfeiriadur o ddewis y defnyddiwr.\n"
-"\n"
-" Yn rhagosodedig bydd ffeiliau wrth gefn yn cael eu cadw yn eich\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Ffeil ffurfweddiad:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Camau wrth Adfer:\n"
-" \n"
-" Yn ystod yr adfer bydd Drakbackup yn tynnu\n"
-" eich cyfeiriadur gwreiddiol a gwirio nad yw'r holl \n"
-" ffeiliau wrth gefn wedi eu llygru. Argymhellir i chi \n"
-" gadw wrth gefn cyn adfer.\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Mae gosod %s wedi methu. Digwyddodd y gwall canlynol:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Chwilio am ffontiau wedi eu gosod"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Tynnu ffontiau wedi eu gosod"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "pob ffont"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "heb ganfod ffontiau"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "gorffen"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "methu canfod unrhyw ffont yn eich rhaniad gosodedig"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Ailddewis y ffontiau cywir"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "methu cnafod unrhyw ffontiau.\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Chwilio am ffontiau yn y rhestr gosod"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Copďo ffontiau"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "Gosod ffontiau True Type"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "arhoswch yn ystod ttmkfdir..."
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "Wedi gosod True Type"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "Trosiad ffontiau"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "adeiladu math 1inst"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr "cyfeirio Ghostscript"
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "trosi ffontiau ttf "
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "trosi ffontiau pfm"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Llethu ffeiliau dros dro"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "Ail gychwyn XFS"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Llethu ffeiliau Ffontiau"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "ail gychwyn xfs"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Cyn gosod unrhyw ffontiau, gwnewch yn siwr bod gennych yr hawl i'w defnyddio "
-"a'u gosod ar eich system.\n"
-"\n"
-"- Medrwch osod y ffontiau yn y dull arferol. Mewn achosion prin, gall "
-"ffontiau ffug rewi eich Gwasanaethwr X"
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "Mewnforio Ffontiau"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Estyn Ffontiau Windows"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Dad osod Ffontiau"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Dewisiadau Uwch"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Rhestr Ffontiau"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Dewiswch y rhaglenni fydd yn cynnal ffontiau:"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Argraffyddion Generig"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Dewiswch ffeil neu gyfeiriadur y ffont a chlicio 'Ychwanegu'"
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Gosod Rhestr"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "cliciwch yma os ydych yn siwr."
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "yma os nad."
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "Dad ddewis Popeth"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Dewis Popeth"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "Rhestr Tynnu"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Prawf Init"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Copďo'r ffontiau ar eich system!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Gosod a throsi ffontiau"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Wedi'r Gosod"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "Tynnu ffontiau oddi ar eich system!"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Wedi'r dad osod"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Rhannu Cysylltiad â'r Rhyngrwyd"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Mae Rhannu Cysylltiad â'r Rhyngrwyd wedi ei alluogi"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Mae gosodiad rhannu cysylltiad a'r Rhyngrwyd wedi ei gyflawni. \n"
-"Mae wedi ei alluogi. \n"
-"\n"
-"Beth hoffech ei wneud?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "dymunol"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "gwrthod"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "ailffurfweddu"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Analluogi gwasanaethwyr..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Mae rhannu cysylltiad â'r Rhyngrwyd wedi ei analluogi."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Mae Rhannu Cysylltiad a'r Rhyngrwyd wedi ei analluogi"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Mae gosodiad rhannu cysylltiad a'r Rhyngrwyd wedi ei gyflawni. \n"
-"Mae wedi ei analluogi. \n"
-"\n"
-"Beth hoffech ei wneud?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "galluogi"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Galluogi gwasanaethwyr..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Mae rhannu cysylltiad â'r Rhyngrwyd wedi ei alluogi."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Rydych ar fin ffurfweddu eich cyfrifiadur i rannu ei cysylltiad Rhyngrwyd\n"
-"Gyda'r nodwedd hwn bydd cyfrifiaduron eraill ar eich rhwydwaith lleol yn "
-"medru rhannu cyswllt rhyngrwyd y\n"
-"cyfrifiadur hwn.\n"
-"\n"
-"Sylwer: bydd angen Addasydd Rhwydwaith un-pwrpas i greu Rhwydwaith Lleol "
-"(LAN)."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Rhyngwyneb %s (gan ddefnyddio modiwl %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Rhagwyneb %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Nid oes addasydd rhwydwaith ar eich system!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system. Rhedwch "
-"yr offeryn ffurfweddu caledwedd."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Rhyngwyneb rhwydwaith"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Dim ond un addasydd rhwydwaith wedi ei ffurfweddu sydd ar eich system\n"
-"\n"
-"%s\n"
-"\n"
-"Rwyf ar fin gosod eich Rhwydwaith Lleol gyda'r addasydd hwnnw.."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Dewiswch ba addasyddion rhwydwaith fydd yn cael eu cysylltu â'ch Rhwydwaith "
-"Lleol."
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Mae rhag wyneb y rhwydwaith wedi ei ffurfwedu eisoes"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"Rhybudd, mae'r addaswr rhwydwaith (%s) wedi ei ffurfweddu eisoes.\n"
-"\n"
-"Ydych chi eisiau ail ffurfweddiad awtomatig?\n"
-"\n"
-"Medrwch ei wneud gyda llaw ond mae'n rhaid i chi wybod beth ydych yn ei "
-"wneud."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Ail ffurfweddiad awtomatig"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "Dangoswch y ffurfweddiad rhag wyneb cyfredol"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"Ffurfweddiad presennol '%s':\n"
-"\n"
-"Rhwydwaith: %s\n"
-"Cyfeiriad IP: %s\n"
-"Priodweddau IP: %s\n"
-"Gyrrwr: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Medraf gadw eich ffurfweddiad cyfredol a chymryd eich bod eisoes wedi gosod "
-"gwasanaethwr DHCP. Os felly, dilyswch fy mod wedi darllen y rhwydwaith "
-"dosbarth C rydych yn ei ddefnyddio fel eich rhwydwaith lleol, yn gywir. Ni "
-"fyddaf yn ei newid na chyffwrdd â ffurfweddiad eich gwasanaethwr DHCP.\n"
-"\n"
-"Neu, medraf ail ffurfweddu eich rhag wyneb ac (ail)ffurfweddi gwasanaethwr "
-"DHCP ar eich cyfer.\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "Rhwydwaith Lleol Dosbarth C"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "Gwasanaethwr DHCP IP (Hwn)"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Ail ffurfweddi rhag wyneb a gwasanaethwr DHCP"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Nid yw'r Rhwydwaith Leol yn terfynnu gyda '.0', tynnu allan."
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Canfuwyd gwrthdaro posib yng nghyfeiriad LAN ffurfweddiad presennol %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Wedi canfod ffurfweddiad mur gwarchod!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Rhybudd! Mae ffurfweddiad mur gwarchod wedi ei ganfod. Efallai bydd angen "
-"atgyweirio gyda llaw ar ôl y gosodiad."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Ffurfweddu..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Ffurfweddio sgriptiau, gosod meddalwedd, cychwyn gwasanaethwyr..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Anhawster wrth osod pecyn %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Mae popeth wedi ei ffurfweddu\n"
-"Gallwch rannu cysylltiad â'r Rhyngrwyd gyda chyfrifiaduron eraill ar eich "
-"Rhwydwaith Lleol gan ddefnyddio ffurfweddiad rhwydwaith awtomatig (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei anallluogi ar hyn o bryd."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei allluogi ar hyn o bryd."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Nid oes Rhannu Cysylltiad â'r Rhyngrwyd wedi eu ffurfweddu o'r blaen."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Ffurfweddiad rhannu cysylltiad â'r Rhyngrwyd"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Croeso i'r Gwasanaeth Rhannu Cysylltiad â'r Rhyngrwyd\n"
-"\n"
-"%s\n"
-"\n"
-"Cliciwch Ffurfweddu i gychwyn y dewin gosod."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Ffurfweddiad y rhwydwaith (%d addasydd)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Proffil:"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Proffl dileu"
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Proffil i'w ddileu:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Proffil newydd..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Enw'r proffil i'w greu ( mae'r proffil newydd yn cael ei greu fel copi o'r "
-"un cyfredol):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Enw gwesteiwr:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Mynediad i'r Rhyngrwyd"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Math: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Mynedfa:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Rhyngwyneb:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Statws"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Arhoswch"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Ffurfweddu Mynediad i'r We..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Ffurfweddiad y Rhwydwaith Lleol"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Gyrrwr"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Rhyngwyneb"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Stad"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Ffurfweddu'r Rhwydwaith Lleol..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Cliciwch yma i gychwyn y dewin ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Dewin..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Gosod"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Arhoswch...Gosod y ffurfweddiad"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Wedi cysylltu"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Heb gysylltu"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Cysylltu..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Dadgysylltu..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
-"defnyddio eich rhwydwaith."
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nid oes gennych unrhyw rhagwynebau wedi\n"
-"eu ffurfweddio. Ffurfweddwch nhw'n gyntaf\n"
-"drwy glicio ar 'Ffurfweddu'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Ffurfweddiad Rhwydwaith Lleol (LAN)"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Addasydd %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocol Cychwyn"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Cychwyn y peiriant"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Cleient DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "cychwyn nawr"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "dad weithredu nawr"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Nid yw'r rhag wyneb hwn wedi ei ffurfweddu eto.\n"
-"Cychwynnwch y dewin ffurfweddi yn y brif ffenestr."
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nid oes gennych cysylltiad â'r rhyngrwyd.\n"
-"Crëwch un drwy glicio ar 'Ffurfweddu'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Ffurfweddiad cysylltiad â'r Rhyngrwyd"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Ffurfweddu Cysylltiad â'r Rhyngrwyd"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Math o gyswllt:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Paramedrau"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Mynedfa"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Cerdyn Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cleient DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Gosod y lefel diogelwch"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Canolfan Rheoli"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Dewiswch yr offeryn rydych am ei ddefnyddio"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "Canada (cabl)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "UDA (bcast)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "UDA (cabl)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "UDA (cable-hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Tseina (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Siapan (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "Siapan (cable)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Dwyrain Ewrop"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Iwerddon"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "Gorllewin Ewrop"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Awstralia"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "Zeland Newydd"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "De Affrica"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Yr Ariannin"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr "Rhowch eich safon teledu a gwlad"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "Safon Teledu:"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Ardal:"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "Wrthi'n sganio am sianeli Teledu ..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "Sganio am Sianel Teledu"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "defnydd: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Dewiswch gynllun alweddell"
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Ydych chi eisiau i'r Backspace ddychwelyd Dileu yny consol?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Newid CD-Rom"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Rhowch y CD Gosod yn eich gyrwr a chlicio Iawn ar ôl gorffen\n"
-"Os nad yw gennych, cliciwch Dileu i osgoi diweddaru."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Methu cychwyn diweddariad byw!!! \n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-"Mae'r newid wedi ei gyflawni, ond i fod yn effeithiol mae'n rhaid i chi "
-"allgofnodi"
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "Dangos ar y diwrnod penodol yn unig"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Ffeil/_Newydd"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Ffeil/_Agor"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/File/_Cawd"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/File/Cawd _fel"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Ffeil/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Dewisiadau"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Dewisiadau/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Cymorth"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Cymorth/_Ynghylch..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "Defnyddiwr"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "Negeseuon"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "Syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Esboniadau Offer Mandrake"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "chwilio"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Offeryn i fonitro eich cofnodion"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Gosodiadau"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "cydweddu"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "ond heb fod yn cydweddu"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Dewis ffeil"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Calendr"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Cynnwys y ffeil"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "Rhybudd E-bost/SMS"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "arhoswch, dosbarthu ffeil: %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "Rhybudd ffurfweddiad E-bost/SMS"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Croeso i'r gwasanaeth ffurfweddu e-bost/SMS\n"
-"\n"
-"Yma bydd modd i chi osod y system rhybuddio.\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "gosodiad gwasanaeth"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr "Byddwch yn derbyn rhybudd os na fydd un o'r gwasanaethu hyn yn rhedeg"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "gosodiad llwyth"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Byddwch yn derbyn rhybudd os yw'r llwyth yn uwch na'r gwerth hwn"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "ffurfweddiad rhybudd"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "Ffurfweddiwch y ffordd mae'r system yn eich rhybuddio"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Cadw fel..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Dewiswch math eich llygoden"
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "neb ganfod serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Efelychu'r trydydd botwm?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "Wedi canfod %s ar %s, ei ffurfweddi?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Dewiswch sganiwr"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "Nid yw sganiwr %s yn cael ei gynnal"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Dyfais cychwyn"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"Rhaid i sganiwr %s gael ei ffurfweddu gan printerdrake.\n"
-"Medrwch gychwyn printerdrake o adran Galedwedd Canolfan Rheoli Mandrake"
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Ffurfweddiad Mur Gwarchod"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Ffurfweddiad Mur Gwarchod"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Mur Gwarchod\n"
-"\n"
-"Rydych eisoes wedi gosod mur gwarchod\n"
-"Cliciwch Ffurfweddu i newid neu dynnu'r mur gwarchod"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Mur gwarchod\n"
-"\n"
-"Cliciwch Ffurfweddu i osod mur gwarchod safonnol"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Dewis eich iaith"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Dewis dosbarth gosod"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Canfod disg caled"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Ffurfweddu llygoden"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Dewis eich allweddell"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Diogelwch"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "System ffeil gosod"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Fformatio rhaniadau"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Dewis pecynnau i'w gosod"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "System osod"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Ychwanegu defnyddiwr"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Ffurfweddu rhwydwaith"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Ffurfweddu gwasanaethau"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Gosod llwythwr cychwyn"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Creu disg cychwyn"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Ffurfweddu X"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Diweddariadau system gosod"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Gadael gosod"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"ffurfweddiadur tinyfirewall\n"
-"\n"
-"Mae hwn yn ffurfweddu mur gwarchod personol ar gyfer y peiriant \n"
-"Mandrake Linux hwn. Am fur gwarchod pwrpasol pwerus, \n"
-"edrychwch ddosbarthiad arbennigol MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Byddwn nawr yn gofyn cwestiynnau am wasanaethau'r hoffech eu \n"
-"caniatáu i'r Rhyngrwyd gysylltu â hwy. Meddyliwch yn ofalus am y \n"
-"cwestiynnau, mae diogelwch eich cyfrifiadur yn bwysig.\n"
-"\n"
-"Os nad ydych yn defnyddio un o'r gwasanaethau hyn \n"
-"gwarchodwch ef. Mae modd newid y ffurfweddiad pryd \n"
-"bynnag hoffech chi drwy ail redeg y rhaglen."
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr gwe ar y peiriant hwn i'r holl\n"
-"Ryngrwyd ei weld? Os ydych yn rhedeg gwasanaethwr gwe\n"
-"sydd ar gyfer y peiriant hwn yn unig, yna atebwch NA.\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr enw ar y peiriant hwn? Os nad ydych wedi\n"
-"gosod un i rhannu gwybodaeth IP a parth i'r holl Ryngrwyd, yna atebwch NA.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Ydych chi am ganiatáu cysylltiadau Secure Shell (ssh)? Mewngofnod\n"
-"posib i gymryd lle telnet yw hwn. Os ydych yn defnyddio telnet, dylech wir \n"
-"newid i ssh. Nid yw telnet wedi ei amgryptio - gall rhai ymosodwyr ddwyn\n"
-"eich cyfrinair. Mae ssh wedi ei amgryptio ac nid yw'n caniatáu i eraill "
-"wrando."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"A ydych am ganiatáu cysylltiadau telnet i mewn?\n"
-"Mae hyn yn erchyll o aniogel, fel soniwyd yn y sgrin diwethaf. Rydym\n"
-" yn argymell yn gryf eich bod yn ateb Na yn fan hyn a defnyddio ssh\n"
-"yn lle telnet\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr FTP sydd angen cysylltiad â'r Rhyngrwyd?\n"
-"Os ydych rydym yn argymell yn gryf eich bod yn ei ddefnyddio ar gyfer\n"
-"trosglwyddiadau anhysbys yn unig. Gall unrhyw gyfrinair sy'n cael ei anfon\n"
-"drwy FTP gael ei ddwyn, gan nad yw FTP'n defnyddio amgryptiad ar gyfer\n"
-"trosglwyddo cyfrineiriau\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr e-bost? Os ydych yn\n"
-"anfon eich negeseuon drwy pine, mutt neu unrhyw gleient testun arall\n"
-"yna mae'n debyg eich bod. Oni bai am hynny, dylech ddiogelu hwn gyda\n"
-"mur gwarchod\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"A ydych yn rhedeg gwasanaethwr POP neu IMAP? Byddai\n"
-"hyn yn cael ei ddefnyddio fel gwestai ar gyfer cyfrifon e-bost\n"
-"nad ydynt yn gysylltiedig a'r we, drwy'r peiriant hwn\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Mae'n ymddangos eich bod yn rhedeg cnewyllyn 2.2 Os\n"
-"yw eich rhwydwaith wedi ei greu'n awtomatig gan gyfrifiadur\n"
-"yn eich cartref neu swyddfa (neilltuad dynamigol) rhaid caniatáu\n"
-"ar gyfer hyn. Ai dyma sut mae hi?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Ydi eich cyfrifiadur yn cydweddi amser gyda cyfrifiadur arall?\n"
-"Fel rheol, mae hyn yn cael ei ddefnyddio gan gyrff Unix/Linux\n"
-"cymhedrol-mawr i gydweddu amser ar gyfer mewngofnodi ag ati.\n"
-"Os nad ydych yn rhan o swyddfa fwy ac heb glywed am hyn, mwy\n"
-"na thebych, nid ydych."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Mae furfweddiad wedi ei gwblhau. Gawn ni ysgrifennu'r newidiadau hyn i "
-"ddisg?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Methu agor %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Methu agor %s ar gyfer ysgrifennu: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr "Nid wyf angen DHCP"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr "Rwyf eisiau DHCP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr "Nid wyf angen NTP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr "Rwyf eisiau NTP"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr "Peidio Cadw"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr "Cadw a Gadael"
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "Dewin Ffurfweddu'r Mur Cadarn"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr "Na ((rhowch hwn tu nôl i fur cadarn rhag y rhyngrwyd)"
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr "Iawn (caniatewch hwn drwy'r mur cadarn)"
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr "Arhoswch,... Gwirio'r pecynnau sydd wedi eu gosod"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Wedi methu gosod y pecynnau angenrheidiol: %s a Bastille.\n"
-" Ceisiwch eu gosod gyda llaw."
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Gwe/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Cyfrifiadur Rhwydwaith (cleient)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-"Gwasanaethwr NFS, gwasanaethwr SMB, gwasanaethwr dirprwyol, gwasanaethwr ssh"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Swyddfa"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Man Gwaith Gnome"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Offer ar gyfer eich Palm PiloT neu eich Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Man Gwaith"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Mur Gwarchod/Llwybrydd"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Enw Parth a gwasanaethwr Gwybodaeth Rhwydwaith"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Rhaglenni swyddfa: prosesydd geiriau (Kword, abiword, taenlenni (kspread, "
-"gnumeric), darllennydd pdf, ag ati"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Offer Sain: mp3 neu chwarewyr midi, cymysgwyr, ag ati"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Llyfrau a Howto's ar Linux a Meddalwedd Rhydd"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Man Gwaith KDE"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ag ati"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Aml-gyfrwng - Fideo"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-"Casgliad o offer ar gyfer e-bost, newyddion, y we, trosglwyddo ffeiliau, a "
-"sgwrsio"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Cronfa Ddata"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Gwasanaethwr cronfa data PostgreSQL neu MySQL"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Offer i wneud ffurfweddu'ch cyfrifiadur yn haws"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Aml-gyfrwng - Sain"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Gwaasanaethau"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dogfennaeth"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Offer y Consol"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Gwasanaethwr e-bost Postfix, gwasanaethwr newyddion Inn"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Man Rhyngrwyd"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Man Aml-gyfrwng"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Ffurfweddiad"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Rhagor o Ben Bwrdd Graffig (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"KDE - Amgylchedd Penbwrdd K, yr amgylchedd graffig sylfaenol gyda chasgliad "
-"o offer"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Amgylchedd Graffig"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Offer i greu a llosgi CDau"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Gweithfan Swyddfa"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Gwasanaethwr"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, ag ati"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Rhaglenni graffeg megis The Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Llyfrgelloedd datblygiadol C a C++, rhaglenni a ffeiliau cynnwys"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Gwasanaethwr Cyfrifiadur Rhwydwaith"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "E-bost/Offer Grwp/Newyddion"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Man chwarae"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Chwarewyr a golygyddion fideo"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Aml-gyfrwng - Graffig"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Rhaglenni difyrrwch: arcęd, byrddau, strategaeth, ag ati"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Casgliad o offer i ddarllen ac anfon e-bost a newyddion (pine, mutt, tin..) "
-"ac i bori'r We"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archifio, efelychwyr, monitro"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Cyllid Personol"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Amgylchedd graffig gyda chasgliad o raglenni ac offer penbwrdd hawdd eu "
-"defnyddio."
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Clientiaid ar gyfer protocolau amrywiol yn cynnwys ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Porth i'r rhyngrwyd"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Chwarae sain a fideo/rhaglenni golygu"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Pen Desg Graffigol Eraill"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Golygyddion, cregyn, offer ffeilio, terfynellau"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Rhaglenni i reoli eich cyllid, megis gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Rheoli Gwybodaeth Bersonol"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Aml-gyfrwng - Llosgi CD"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Gweithfan Gwyddonol"
-
-#~ msgid "About"
-#~ msgstr "Allwedd amgryptio (eto)"
-
-#~ msgid " Help "
-#~ msgstr " Cymorth"
-
-#~ msgid ""
-#~ "XawTV isn't installed ...\n"
-#~ "You should install it.\n"
-#~ " Just type \"urpmi xawtv\""
-#~ msgstr ""
-#~ "Nid yw XawTV wedi ei osod ...\n"
-#~ "Dylech ei osod.\n"
-#~ " Teipiwch \"urpmi xawtv\""
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
deleted file mode 100644
index 6edcd2ac1..000000000
--- a/perl-install/share/po/da.po
+++ /dev/null
@@ -1,12282 +0,0 @@
-# Danish translation of/Dansk oversćttelse af
-# Mandrake Linux DrakX.
-# Copyright (C) 1999-2001 MandrakeSoft
-#
-# In order of activity:
-# 1, Keld Simonsen <keld@dkuug.dk>, 2000-2002
-# 2, Jacob Nordfalk <nordfalk@mobilixnet.dk>, 2001-2002
-# 3, Troels Liebe Bentsen <tlb@iname.com>, 1999-2000
-# 4, Nikolaj Berg Amondsen <mr_nba@get2net.dk>, 2000
-# 5, Jacob Sparre Andersen, <sparre@sslug.dk>, 2000
-# 6, Kenneth Christiansen, <kenneth@ripen.dk>, 2000
-# 7, Jens Burkal <jburkal@get2net.dk>, 1999
-# 8, Mads Stenhuus Hansen <msh@com.dtu.dk>, 1999
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-13 13:04+0100\n"
-"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
-"Language-Team: Danish <dansk@klid.dk>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigurér alle skćrme uafhćngigt"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Brug Xinerama-udvidelse"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurér kun kort \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Flerskćrms-konfiguration"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Dit system understřtter konfiguration af flere skćrme\n"
-"Hvad vil du gřre?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafikkort"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Vćlg et grafikkort"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Vćlg en X-server"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-server"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Vćlg en X-driver"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X-driver"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Hvilken konfiguration af XFree řnsker du?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Dit kort kan have 3D acceleration, men kun med XFree %s.\n"
-"Dit kort er understřttet af XFree %s som kan have bedre understřttelse i 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-"Dit kort kan have 3D hardware accelerations-understřttelse med XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s med 3D hardware acceleration"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Dit kort kan have 3D acceleration understřttelse, men kun med XFree %s,\n"
-"VIGTIGT: Dette er eksperimentelt og kan fĺ din maskine til at lĺse eller gĺ "
-"ned."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s med EKSPERMENTAL 3d hardware acceleration"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Dit kort kan have 3D acceleration understřttelse, men kun med XFree %s.\n"
-"VIGTIGT: Dette er eksperimentelt og kan fĺ din maskine til at lĺse eller gĺ "
-"ned.\n"
-"Dit kort er understřttet af XFree %s som kan have bedre understřttelse i 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installations-skćrmdriver)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfiguration"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Vćlg hukommelsesmćngde for dit grafikkort"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Vćlg server-indstillinger"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Vćlg en skćrmtype"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Skćrm"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"De to kritiske parametre er den lodrette frekvens, som angiver hvor mange "
-"gange (per sekund) hele skćrmbilledet bliver genopfrisket, og (vigtigst af "
-"alt) den vandrette frekvens, som angiver antallet af vandrette linier der "
-"kan tegnes pĺ skćrmen hvert sekund.\n"
-"\n"
-"Det er MEGET VIGTIGT at du ikke angiver en skćrmtype med "
-"opdateringsfrekvenser, der er střrre end din skćrms formĺen: du risikerer at "
-"řdelćgge din skćrm.\n"
-"Hvis du er i tvivl, břr du vćlge en opsćtning, som du med SIKKERHED ved\n"
-"at din skćrm kan klare."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Vandret opdateringsfrekvens"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Lodret opdateringsfrekvens"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Skćrm ikke konfigureret"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafikkort er endnu ikke konfigureret"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Oplřsninger ikke valgt endnu"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Řnsker du at afprřve konfigurationen?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Advarsel: afprřvning af dette grafikkort kan fĺ din maskine til at lĺse"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test konfigurationen"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"prřv at ćndre nogle parametre"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "En fejl opstod:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Vender tilbage om %d sekunder"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Er dette den korrekte indstilling?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "En fejl opstod, prřv at ćndre nogle parametre"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Oplřsning"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Vćlg oplřsning og farvedybde"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Grafikkort: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86-server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mere"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "O.k."
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspert-udgave"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Vis alle"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Oplřsninger"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Tastatur-type: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Muse-type: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Muse-enhed: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Skćrm: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Skćrms vandrette frekvens: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Skćrms lodrette frekvens: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Grafikkort: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Grafikkort identifikation: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Grafik-hukommelse: %s kb\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Farvedybde: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Oplřsninger %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86-server: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 driver: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Forbereder konfiguration af X"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Hvad řnsker du at gřre?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Skift skćrmtype"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Skift grafikkort"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Foretag ćndringer i server-indstillinger"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Skift oplřsning"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Vis information"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Test igen"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Afslut"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Behold ćndringer?\n"
-"Nuvćrende konfiguration er:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "Start X ved systemstart"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Jeg kan sćtte din maskine op til automatisk at starte X ved\n"
-"opstart. Řnsker du at starte X hver gang du genstarter?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Log ind i %s igen for at aktivere ćndringerne"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Log ud og tryk herefter pĺ Ctrl-Alt-Bak"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 farver (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tusinde farver (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tusinde farver (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millioner (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milliarder farver (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mb eller mere"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard-VGA, 640x480 ved 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super-VGA, 800x600 ved 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibel, 1024x768 ved 87 Hz interlaced (ikke 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ved 87 Hz interlaced, 800x600 ved 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Udvidet Super-VGA, 800x600 ved 60 Hz, 640x480 ved 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 ved 60 Hz, 800x600 ved 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hřjfrekvens SVGA, 1024x768 ved 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekvens, som kan klare 1280x1024 ved 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekvens, som kan klare 1280x1024 ved 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekvens, som kan klare 1280x1024 ved 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Skćrm, som kan klare 1600x1200 ved 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Skćrm, som kan klare 1600x1200 ved 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Fřrste sektor af opstartspartition"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Fřrste sektor pĺ disken (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO-installering"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Hvor vil du placere opstartsprogrammet?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/grub-installering"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO med tekstmenu"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO med grafisk menu"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Start fra DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Systemopstarterens hovedindstillinger"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Systemopstarter der skal bruges"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Systemopstarterens installation"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Opstartsenhed"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (virker ikke med gamle BIOS'er)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Kompakt"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "kompakt"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Videoindstilling"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Ventetid fřr opstart af forvalgt styresystem"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Adgangskode"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Adgangskode (igen)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Begrćns kommandolinie-indstillinger"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "begrćns"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Rens /tmp ved hver systemopstart"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Prćcis RAM-mćngde, hvis pĺkrćvet (fandt %d Mb)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Aktivér multiprofiler"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Angiv RAM-střrrelse i Mb"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Indstillingen ``Begrćns kommandolinie-indstillinger'' er intet vćrd uden\n"
-"en adgangskode"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Prřv igen"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Adgangskoderne stemmer ikke overens"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Init-besked"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Ĺben firmwareforsinkelse"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Ventetid fřr kerneopstart"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Skal det vćre muligt at starte fra CD?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Skal det vćre muligt at starte fra OF?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Forvalgt styresystem?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"Du besluttede at installere opstartsindlćseren pĺ en partition.\n"
-"Dette indikerer at du allerede har en opstartsindlćser pĺ disken som du "
-"starter op fra (fx System Commander).\n"
-"\n"
-"Hvilket drev starter du op fra?"
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Her er fřlgende typer indgange.\n"
-"Du kan tilfřje flere eller ćndre de eksisterende."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Tilfřj"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Fćrdig"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Ćndr"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Hvilken type řnsker du at tilfřje"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Andet styresystem (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Andet styresystem (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Andet styresystem (Windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Billede"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Rod"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Vedhćft"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Lćs-skriv"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabel"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Usikker"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Mćrkat"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Forvalgt"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd-střrrelse"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "Ingen video"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Fjern indgang"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Tom mćrkat er ikke tilladt"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Du skal angive en kerne-fil"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Du skal angive en root-partition"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Denne mćrkat er allerede brugt"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Fandt %s %s grćnsesnit"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Har du én til?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Har du nogen %s grćnsesnit?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Nej"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Ja"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Se info for maskinel"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Installerer driver for %s kort %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Hvilken %s driver skal jeg prřve?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"I nogen tilfćlde behřver %s driveren at have ekstra information for at "
-"virke\n"
-"ordentligt, selv om den normalt virker fint uden. Řnsker du at angive "
-"ekstra\n"
-"parametre for den eller tillade driveren at sondere din maskine for\n"
-"den information den behřver? Af og til vil sondering stoppe maskinen, men "
-"burde\n"
-"ikke forĺrsage nogen skader."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Automatisk sondering"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Specificér parametre"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Du kan nu angive parametre til modul %s.\n"
-"Bemćrk at alle adresser břr indtastes med foranstillet 0x, fx '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Du kan nu sćtte parametre til modulet %s.\n"
-"Parametrene er i formatet ``navn=vćrdi navn2=vćrdi2 ...''.\n"
-"F.eks., ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modulindstillinger:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Indlćsning af modul %s mislykkedes.\n"
-"Řnsker du at prřve igen med andre parametre?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "adgang til X-programmer"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "adgang til rpm-vćrktřjer"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "tillad \"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "adgang til administrative filer"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(har allerede tilfřjet %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Adgangskoden er for simpel"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Indtast et brugernavn"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Brugernavnet mĺ kun indeholde smĺ bogstaver, tal, `-' og `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Dette brugernavn eksisterer allerede"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Tilfřj bruger"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Indtast en bruger\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Acceptér bruger"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Rigtige navn"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Brugernavn"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Skal"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikon"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Autologin"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Jeg kan sćtte din maskine op til automatisk at logge en bestemt bruger pĺ.\n"
-"Řnsker du at bruge denne finesse?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Vćlg den forvalgte bruger:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Vćlg den vindueshĺndtering du řnsker at benytte:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Vćlg det sprog, der skal bruges."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr ""
-"Du kan vćlge andre sprog der vil vćre tilgćngelige efter installationen"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Alt"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Tillad alle brugere"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Tilpasset"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Ingen fildeling"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Pakken %s skal vćre installeret. Řnsker du at installere den?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Du kan eksportere med NFS eller Samba. Hvilken vil du bruge"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Krćvet pakke %s mangler"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-"Řnsker du at tillade brugere at eksportere nogle kataloger i deres "
-"hjemmekatalog?\n"
-"Tilladelse af dette vil sćtte brugere i stand til simpelthen at klikke pĺ "
-"'Fildeling' i konqueror og nautilus.\n"
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Annullér"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "Start userdrake"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"Deling per bruger bruger gruppen 'fileshare'. \n"
-"Du kan bruge userdrake til at tilfřje en bruger til denne gruppe."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Velkommen til Crackere"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Ringe"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standard"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Hřj"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "Hřjere"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoid"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Dette niveau skal bruges med omtanke. Det gřr dit system nemmere at bruge, "
-"men er meget sĺrbart: det mĺ ikke bruges til en maskine der er i et netvćrk "
-"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
-"adgangskoder."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Kontrol af adgangskode er nu aktiveret, men brug som netvćrksmaskine er "
-"stadig ikke anbefalet."
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Dette er standard sikkerheds-anbefalingen for en maskine\n"
-" med forbindelse til Internettet som klient. "
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Der er allerede nogle begrćnsninger, og flere automatiske kontroller bliver "
-"křrt hver nat."
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Med dette sikkerhedsniveau kan brug som server komme pĺ tale.\n"
-"Sikkerheden er nu hřj nok til at systemet kan bruges som server som tillader "
-"forbindelser fra mange klienter. Bemćrk: hvis din maskine kun er en klient "
-"pĺ internettet břr du hellere vćlge et lavere niveau."
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Baseret pĺ det foregĺende niveau, men systemet er nu helt lukket.\n"
-"Sikkerhedsfaciliteterne er nu pĺ deres hřjeste niveau."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Vćlg sikkerhedniveau"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Sikkerhedsniveau"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Brug libsafe for servere"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Et bibliotek som beskytter mod angreb via bufferoverlřb og formatstrenge."
-
-# 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)
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Velkommen til %s styresystems-vćlgeren!\n"
-"\n"
-"Vćlg et styresystem i den ovenstĺende liste eller\n"
-"vent %d sekunder for at starte standard.\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 suggested 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Velkommen til GRUB styresystemsvćlgeren!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Brug tasterne %c og %c til at vćlge mellem mulighederne."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Tryk 'enter' for at starte det valgte OS, 'e' for at redigere"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "kommandoerne fřr opstart, eller 'c' for en kommandolinie."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Den fremhćvede mulighed vil blive startet automatisk om %d sekunder."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "Ikke nok plads i /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Skrivebord"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Start-menu"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Du kan ikke installere opstartsindlćseren pĺ en %s-partition\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "endnu er ingen hjćlp implementeret.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Konfiguration af opstartsudseende"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Fil"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Fil/_Afslut"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<kontrol>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Katergoriserende oversigt i ny stil"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Oversigt i ny stil"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Traditionel oversigt"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Traditionel Gtk+-oversigt"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Start Aurora ved opstart"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub modus"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot modus"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Du bruger for řjeblikket % som opstartshĺndterer.\n"
-"Klik pĺ Konfigurér for at starte opsćtnings-vejlederen."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Konfigurér"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Systemmodus"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Start X-vinduessystemet efter opstart"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Nej, jeg řnsker ikke automatisk login"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ja, jeg řnsker automatisk login med denne (bruger, skrivebord)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "kan ikke lćse /etc/inittab: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "Gb"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "Kb"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "Mb"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "Tb"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutter"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minut"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekunder"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Kan ikke lave řjebliksbilleder fřr partitionering"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Řjebliksbilleder vil vćre tilgćngelige efter installation i %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Frankrig"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "Belgien"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Tjekkiet"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Tyskland"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Grćkenland"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Norge"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Sverige"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Holland"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Italien"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Řstrig"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "U.S.A."
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Lav gerne en sikkerhedkopi af dine data fřrst"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Lćs omhyggeligt!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Hvis du planlćgger at bruge Yaboot, skal du huske at efterlade fri plads pĺ\n"
-"begyndelsen af disken (2048 sektorer skulle vćre nok)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Fejl"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Vejleder"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Vćlg handling"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Du har én stor FAT partition.\n"
-"(normalt brugt af Microsoft Dos/Windows).\n"
-"Jeg anbefaler, at du ćndrer střrrelsen pĺ partitionen\n"
-"(klik pĺ den, og klik herefter pĺ \"Střrrelsesćndring\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Klik pĺ en partition"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detaljer"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Journaliserende FS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Tom"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Andet"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Filsystems-typer:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Opret"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Type"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Benyt ``%s'' i stedet"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Slet"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Benyt ``Afmontér'' fřrst"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Efter type-ćndring af partition %s vil alle data pĺ denne partition gĺ tabt"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Vćlg en partition"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Vćlg en ny partition"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Afslut"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Normal -> Ekspert"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Ekspert -> Normal"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Fortryd"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Fortsćt alligevel?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Afslut uden at gemme"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Afslut uden at skrive partitionstabellen?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Řnsker du at gemme /etc/fstab-ćndringerne?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Allokér automatisk"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Slet alt"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Drev-information"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Alle primćre partitioner er brugt"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Kan ikke tilfřje flere partitioner"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"For at du kan fĺ flere partitioner, skal du slette én, sĺ der kan oprettes "
-"en udvidet partition"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Gem partitionstabel"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Genskaber partitionstabel"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Redder partitionstabel"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Genindlćs partitionstabel"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Automontering af flytbare medier"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Vćlg fil"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Kopien af partitionstabellen har ikke samme střrrelse\n"
-"Fortsćt alligevel?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Advarsel"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Indsćt en diskette i diskettedrevet\n"
-"Alle data pĺ disketten vil blive slettet"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Forsřger at redde partitionstabellen"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Detaljeret information"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Monteringssti"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Valg"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Střrrelsesćndring"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Flyt"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatér"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Montér"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Tilfřj til RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Tilfřj til LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Afmontér"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Fjern fra RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Fjern fra LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Ćndr RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Loopback anvendelse"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Opret en ny partition"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Startsektor: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Střrrelse i Mb: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Filsystemstype: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Monteringssti: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Prćference: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Fjern loopback-filen?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Skift partitionstype"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Hvilket filsystem řnsker du at bruge?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Skifter fra ext2 til ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Hvor řnsker du at montere loopback-fil %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Hvor řnsker du at montere partitionen %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Kan ikke fjerne monteringssti, da denne partition bliver brugt til "
-"loopback.\n"
-"Fjern loopback fřrst"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Udregner FAT-filsystemets grćnser"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Ćndrer střrrelsen"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Střrrelsen pĺ denne partition kan ikke ćndres"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Det břr laves en backup af alle data pĺ denne partition"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Efter ćndring af střrrelsen af partition %s vil alle data pĺ denne partition "
-"gĺ tabt"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Vćlg den nye střrrelse"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Ny střrrelse i Mb: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Hvilken disk řnsker du at flytte den til?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Hvilken sektor řnsker du at flytte den til?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Flytter"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Flytter partition..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Vćlg en eksisterende RAID som skal udvides"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "ny"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Vćlg en eksisterende LVM som skal udvides"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "LVM-navn?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Denne partition kan ikke bruges til loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Loopback-filnavn: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Giv et filnavn"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Filen er allerede brugt af en anden loopback, vćlg en anden fil"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Filen findes allerede. Skal den bruges?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Modulindstillinger"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Diverse"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "enhed"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "niveau"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "enhedsstřrrelse"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Vćr forsigtig: denne operation er farlig."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Hvilken slags partitionering?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Jeg kan desvćrre ikke pĺ nuvćrende tidspunkt acceptere at oprette /boot pĺ "
-"drevet (pĺ en cylinder > 1024). Enten benytter du LILO, hvilket ikke vil "
-"fungere, eller du kan undlade at benytte LILO, hvilket vil betyde, at du "
-"ikke har brug for /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Den partition som du har valgt som rod-partition (/) er fysisk placeret ud "
-"over cylinder nr. 1024 pĺ harddisken, og du har ikke lavet nogen /boot "
-"partition. Hvis du řnsker at benytte LILO, skal du oprette en /boot "
-"partition indenfor 1024-cylinder grćnsen."
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Du har valgt en programmeret RAID-partition som rod (/).\n"
-"Ingen systemopstarter kan hĺndtere dette uden en /boot partition.\n"
-"Sĺ vćr omhyggelig med at tilfřje en /boot partition"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Partitionstabellen for disk %s vil nu blive skrevet pĺ disken!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Du skal genstarte maskinen for at aktivere ćndringerne"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Efter formatering af partitionen %s vil alle data pĺ denne partition gĺ tabt"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formaterer"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formaterer loopback-fil %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formaterer partition %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Skjul filer"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Flyt filer til den nye partition"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"Katalog %s indeholder allerede nogen data\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Flytter filer til den nye partition"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Kopierer %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Fjerner %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "partition %s er nu kendt som %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Enhed: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS-drevbogstav: %s (bare et gćt)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Type: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Navn: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Start: sektor %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Střrrelse: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektorer"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cylinder %d til %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formateret\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Ikke formateret\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Monteret\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Loopback-fil(er):\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partition som opstartes som standard\n"
-" (gćlder kun MS-DOS-opstart, ikke LILO)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Niveau %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Enhedsstřrrelse %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-diske %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Loopback-filnavn: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Denne partition er nok\n"
-"en driver-partition, du skal\n"
-"sandsynligvis lade den vćre.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Denne specielle Bootstrap-\n"
-"partition er for at\n"
-"dual-boote dit system.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Střrrelse: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Opbygning: %s cylindre, %s hoveder, %s sektorer\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-diske %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Partitionstabel-type: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "pĺ bus %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Valg: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Krypteringsnřgle for filsystem"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Vćlg din krypteringsnřgle for filsystemet"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Denne krypteringsnřgle er for nem at gćtte (skal mindst vćre pĺ %d tegn)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "Krypteringsnřglerne stemmer ikke overens"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Krypteringsnřgle"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Krypteringsnřgle (igen)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Skift type"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Klik pĺ et medie"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Sřg efter servere"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatering af %s mislykkedes"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Ved ikke hvordan man formaterer %s som type %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "montering af partition %s i katalog %s mislykkedes"
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck afsluttet med fejlkode %d eller signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "fejl ved afmontering af %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "simpel"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "med /usr"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "server"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Du kan ikke bruge JFS pĺ partitioner mindre end 16Mb"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Du kan ikke bruge ReiserFS pĺ partitioner mindre end 32Mb"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Monteringsstier skal begynde med /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Der findes allerede en partition med monterings-sti %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Du kan ikke bruge et LVM logisk delarkiv for monteringspunkt %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Dette katalog břr ligge pĺ rod-filsystemet"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Du skal have et rigtigt filsystem (ext2, reiserfs) til dette "
-"monteringspunkt\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Du kan ikke bruge et krypteret filsystem for monteringspunkt %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Ikke nok fri plads til at tildele nye partitioner automatisk"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Ingenting at lave"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Fejl ved ĺbning af %s for skrivning: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Der er opstĺet en fejl - der kunne ikke findes nogen gyldige enheder, hvor "
-"der kan oprettes nye filsystemer. Undersřg din maskine for at finde ĺrsagen "
-"til problemet"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Du har ikke nogen partitioner!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux er et flerbrugersystem, og dette betyder at hver bruger kan have "
-"sine egne prćferencer, sine egne filer og sĺ videre. Du kan lćse "
-"brugervejledningen for at lćre mere.\n"
-"Men i modsćtning til root, som er administratoren, vil brugerne som du "
-"tilfřjer her ikke have lov til at ćndre nogetsomhelst undtagen deres egne "
-"filer og deres egen opsćtning. Du skal oprette i det mindste én almindelig "
-"bruger til dig selv.\n"
-"Dette er den konto som du břr bruge til almindelig brug. Selvom det er meget "
-"praktisk at logge ind som root hver dag, kan det ogsĺ vćre meget farligt!\n"
-"Den mindste fejltagelse kan betyde at dit system ikke vil virke mere. Hvis "
-"du laver en alvorlig fejltagelse som almindelig bruger, vil du kun mĺske "
-"tabe nogen information, men ikke hele systemet.\n"
-"\n"
-"Fřrst skal du indtaste dit rigtige navn. Dette er ikke krćvet, selvfřlgelig "
-"kan du faktisk skrive hvad du vil. DrakX vil sĺ tage det fřrste ord du skrev "
-"i boksen og og overfřre det som brugernavn. Dette er navnet, som denne "
-"bruger skal bruge for at logge ind pĺ systemet. Du kan ćndre dette. Du skal "
-"sĺ indtaste en adgangskode hér. Adgangskoden for en ikke-priviligeret "
-"(normal) bruger er ikke sĺ vigtigt som det for Root fra et sikkerhedsmćssigt "
-"synspunkt, men det er ingen grund til at negligere det alligevel - nĺr det "
-"kommer til stykket er dine filer der er i fare. Hvis du klikker pĺ Acceptér "
-"bruger, kan du tilfřje sĺ mange som du řnsker. Tilfřj en bruger for hver af "
-"dine venner: fx din far og din sřster. Nĺr du har tilfřjet alle de brugere "
-"du řnsker, vćlg da Fćrdig.\n"
-"\n"
-"Klik pĺ Avanceret-knappen lader dig ćndre standard-skal for denne bruger\n"
-"(bash er standard)."
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Ovenfor er listet de eksisterende Linux-partitioner genkendt pĺ din disk. Du "
-"kan beholde valgene gjort af vejlederen, de er velegnede til almindelig "
-"brug. Hvis du ćndrer disse valg skal du i det mindste definere en rod-"
-"partition '/'. Lad vćre med at vćlge en for lille partition, ellers vil du "
-"ikke kunne installere nok programmel. Hvis du řnsker at lagre data pĺ en "
-"separat partition, skal du ogsĺ vćlge en '/home' (kun muligt hvis du har "
-"mere end én Linux-partition). \n"
-"Hver partition er listet som fřlger: 'Navn', 'Kapacitet'.\n"
-"\n"
-"'Navn' er kodet som fřlger: 'drevtype', 'drevnummer', "
-"'partitionsnummer' (for eksempel '/hda1').\n"
-"\n"
-"'drevtype' er 'hd' hvis dit diskdrev er et IDE drev, og 'sd' hvis det er et "
-"SCSI drev.\n"
-"\n"
-"'drevnummer' er altid et bogstav efter 'hd' eller 'sd'. For IDE drev:\n"
-"\n"
-" * 'a' betyder 'hoved-drev pĺ den primćre IDE controller',\n"
-"\n"
-" * 'b' betyder 'slave-drev pĺ den primćre IDE controller',\n"
-"\n"
-" * 'c' betyder 'hoved-drev pĺ den sćkundćre IDE controller',\n"
-"\n"
-" * 'd' betyder 'slave-drev pĺ den sćkundćre IDE controller'.\n"
-"\n"
-"For SCSI drev betyder 'a' det 'fřrste drev', 'b' betyder det 'andet drev', "
-"osv."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"Mandrake Linux installationen er fordelt pĺ flere cdrom-er. DrakX véd om en "
-"valgt pakke ligger pĺ en anden cdrom og vil udskyde den aktuelle cd og bede "
-"dig om at isćtte en anden, om nřdvendigt."
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"Det er nu tid til at angive hvilke pakker du vil installere pĺ dit system. "
-"Der er tusindvis af pakker til dit Mandrake Linux system, og det forventes "
-"ikke at du kender dem allesammen udenad.\n"
-"\n"
-"Hvis du udfřrer en standard-installation fra cdrom vil du fřrst blive bedt "
-"om at angive de cd-er som du har nu (kun i ekspert-version). Tjek navnene pĺ "
-"cd'erne og fremhćv boksene svarende til de cd-er du har liggende for "
-"installationen. Klik O.k. nĺr du er klar til at fortsćtte.\n"
-"\n"
-"Pakkerne er ordnet i grupper svarende til en bestemt anvendelse af din "
-"maskine. Grupperne selv er ordnet i 4 grupper:\n"
-"\n"
-" * 'Arbejdsstation': Hvis din maskine skal bruges som en arbejdsstation, "
-"vćlg da en eller flere af de tilsvarende grupper.\n"
-"\n"
-" * 'Udvikling': hvis maskinen skal bruges til programmering vćlg da de "
-"řnskede grupper.\n"
-"\n"
-" * 'Server': hvis det er planen at maskinen skal vćre en server, er du her i "
-"stand til at vćlge de mest almindelige tjenester, som du řnsker at se "
-"installeret pĺ maskinen.\n"
-"\n"
-" * 'Grafisk miljř': Endelig skal du vćlge foretrukne grafiske miljř. Vćlg "
-"mindst ét, hvis du řnsker at have en grafisk arbejdsstation!\n"
-"\n"
-"Ved flytning af musen over et gruppenavn vises en kort forklarende tekst om "
-"denne gruppe. Hvis du ikke vćlger nogen grupper ved installation (i "
-"modsćtning til opgradering), vil en dialog komme frem som foreslĺr dig "
-"forskellige former for minimal installation: \n"
-"\n"
-" * 'Med X' Installerer de fćrrest mulige pakker for at fĺ en fungerende "
-"grafisk arbejdsstation;\n"
-"\n"
-" * 'Med basal dokumentation' Installerer det basale system plus basale "
-"nytteprogrammer og tilhřrende dokumentation. Denne installation er passende "
-"til at sćtte en server op.\n"
-"\n"
-" * 'Mindst mulige installering' Vil installere den mindst mulige nřdvendigt "
-"for at fĺ et virkende Linux-system kun med kommandolinjer. Denne "
-"installation fylder omkring 65 Mb.\n"
-"\n"
-"Du kan afkrydse boksen 'Individuelt pakkevalg', hvilket er nyttigt, hvis du "
-"kender de tilbudte pakker godt, eller hvis du řnsker at have fuld kontrol "
-"over hvad der skal installeres.\n"
-"\n"
-"Hvis du har startet installationen i 'Opdatering'-tilstand, kan du fravćlge "
-"alle grupper for at undgĺ at installere nogen nye pakker. Dette er nyttigt "
-"ved reparation eller opdatering af det eksisterende system."
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Endelig, afhćngigt af om du valgte at udvćlge individuelle pakker eller ej, "
-"vil du blive prćsenteret for et trć med alle pakker opdelt i grupper og "
-"undergrupper. Under gennembladring af trćet kan du udvćlge hele grupper, "
-"undergrupper eller bare pakker.\n"
-"\n"
-"Hver gang du udvćlger en pakke i trćet vil en beskrivelse fremkomme til "
-"hřjre. Nĺr du har afsluttet dine udvćlgelser, sĺ klik pĺ Installér-knappen. "
-"Sĺ begynder selve installationen. Afhćngig af din maskines hurtighed og "
-"antal pakker som skal installeres kan det tage et stykke tid at gřre "
-"processen fćrdig. Et skřn pĺ tiden det tager for fćrdiggřrelse vises pĺ "
-"skćrmen, sĺ du kan se om der skulle vćre tid til at nyde en kop kaffe.\n"
-"\n"
-"I tilfćldet af at en server-pakke er blevet valgt enten med vilje, eller "
-"fordi den var en del af en hel gruppe, vil du blive spurgt om du virkelig "
-"řnsker at installere disse servere. Under Linux Mandrake bliver installerede "
-"servere startet op ved opstart af maskinen. Selvom de er sikre og ikke har "
-"nogen kendte problemer pĺ udgivelsestidspunktet for distributionen, er det "
-"muligt at sikkerhedshuller opdages efter at denne version af Mandrake Linux "
-"blev fćrdiggjort. Specielt hvis du ikke véd hvad det er for noget, sĺ klik "
-"Nej her. Et klik med Ja her vil installere de nćvnte servere og de vil som "
-"standard blive startet automatisk!\n"
-"\n"
-"Automatiske afhćngigheder-valget deaktiverer simpelthen advarselsdialogen, "
-"som vises hver gang installeringsprogrammet automatisk vćlger en pakke. "
-"Dette sker fordi det er blevet beregnet at den er krćvet for at "
-"tilfredsstille en afhćngighed fra en anden pakke for at kunne fćrdiggćre en "
-"vellykket installation.\n"
-"\n"
-"Det klejne disketteikon i bunden af listen muliggřr indlćsning af en "
-"pakkeliste udvalgt ved en tidligere installation. Klik pĺ denne ikon vil "
-"bede dig om at indsćtte en diskette tidligere frembragt ved slutningen pĺ en "
-"anden installation. Se rĺd nr to i det sidste trin for hvordan en sĺdan "
-"diskette kan laves."
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"Du bliver nu foreslĺet at opsćtte din internet- eller netvćrksopkobling. "
-"Hvis du vil forbinde din maskine til internettet eller til et lokalnetvćrk "
-"sĺ klik pĺ 'O.k.'. Den automatiske opdagelse af netvćrksenheder og modem vil "
-"blive startet. Hvis opdagelsen mislykkes sĺ fjern markering i boksen 'Brug "
-"automatisk detektion' nćste gang. Du kan ogsĺ vćlge at ikke konfigurere "
-"netvćrket, eller gřre det senere; i sĺ tilfćlde skal du bare klikke pĺ "
-"'Annullér'-knappen.\n"
-"\n"
-"Mulige forbindelser er: almindeligt modem, ISDN-modem, ADSL-forbindelse, "
-"kabel-modem, og endelig en simpel LAN-forbindelse (Ethernet).\n"
-"\n"
-"Vi vil ikke her gĺ i detaljer med hver konfiguration. Men forsikr dig om, at "
-"du har alle parametrene fra din internetudbyder eller systemadministrator.\n"
-"\n"
-"Du kan lćse i kapitlet i hĺndbogen omkring internetforbindelser om detaljer "
-"omkring konfigureringen, eller simpelthen vente til dit system er "
-"installeret og sĺ bruge programmet beskrevet dér til at konfigurere din "
-"forbindelse.\n"
-"\n"
-"Hvis du vil konfigurere netvćrket senere efter installationen, eller hvis du "
-"har afsluttet konfigureringen af din netvćrksforbindelse, vćlg da 'Fćrdig'."
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Du kan nu vćlge hvilke tjenester du řnsker skal startes ved opstart af "
-"maskinen.\n"
-"\n"
-"Her prćsenteres alle de tjenester, som er med i den aktuelle installation. "
-"Gennemse dem omhyggeligt og vćlg dem fra som ikke altid er nřdvendige ved "
-"opstarten.\n"
-"\n"
-"Du kan fĺ en kort forklarende tekst om en tjeneste ved at vćlge en bestemt "
-"tjeneste. Hvis du ikke er sikker pĺ om en tjeneste er nyttig eller ej, er "
-"det dog sikrere at bruge den foreslĺede opfřrsel.\n"
-"\n"
-"Vćr specielt varsom pĺ dette trin hvis du planlćgger at bruge maskinen som "
-"server: du vil formentlig řnske ikke at starte nogensomhelst tjeneste op som "
-"du ikke har brug for. Husk at adskillige tjenester kan vćre farlige hvis de "
-"er aktiveret pĺ en server. Vćlg som hovedregel kun de tjenester som du "
-"virkelig behřver."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"GNU/Linux hĺndterer tiden i GMT (Greenwich Mean Time) og oversćtter den til "
-"lokal tid ifřlge den tidszone du har valgt. Det er imidlertid muligt at "
-"deaktivere dette ved at fravćlge 'Maskinens ur sat til GMT' sĺ maskinens ur "
-"er det samme som systemets ur. Dette er nyttigt nĺr maskinen ogsĺ bruges til "
-"andre operativsystemer som Windows.\n"
-"\n"
-"Muligheden 'Automatisk tidssynkronisering' vil automatisk tilpasse uret ved "
-"at forbinde til en ekstern tidsserver pĺ internettet. Vćlg en server der "
-"ligger tćt pĺ dig i listen der prćsenteres. Selvfřlgelig skal du have en "
-"fungerende internetforbindelse for at denne facilitet kan fungere. Den vil "
-"faktisk installere en tidsserver pĺ din maskine, som om řnsket kan bruges af "
-"andre maskiner pĺ dit lokalnetvćrk."
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X (for X-vinduessystem) er hjertet af GNU/Linux' grafiske grćnseflade, "
-"hvilket alle de grafiske miljřer (KDE, Gnome, AfterStep, WindowMaker)...), "
-"som kommer med Mandrake Linux, bygger pĺ. I dette afsnit vil DrakX forsřge "
-"at konfigurere X automatisk.\n"
-"\n"
-"Det er meget sjćldent at dette mislykkes for DrakX, med mindre maskinellet "
-"er meget gammelt (eller meget nyt). Hvis det lykkes, vil DrakX starte X "
-"automatisk med den bedst mulige oplřsning afhćngig af skćrmens střrrelse. Et "
-"vindue vil sĺ komme frem og spřrge om du kan se det.\n"
-"\n"
-"Hvis du laver en ekspert-installering, vil du komme ind i X-konfigurerings- "
-"vejlederen. Se det tilhřrende afsnit af manualen for yderligere oplysning om "
-"denne vejleder.\n"
-"\n"
-"Hvis du kan se beskeden under afprřvningen, og svarer Ja, sĺ vil DrakX "
-"fortsćtte til det nćste trin. Hvis du ikke kan se beskeden, betyder det "
-"simpelthen at konfigurationen var forkert, og testen vil automatisk "
-"afsluttes efter 10 sekunder, og genfremvise skćrmen."
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Mĺske er du ikke sćrligt tilfreds med det fřrste forsřg med X konfigurering "
-"(skćrmen for lille, flyttet til venstre eller hřjre...). Derfor vil DrakX "
-"spřrge dig om konfigurationen passer dig, selvom X starter op korrekt. DrakX "
-"vil ogsĺ foreslĺ ćndringer ved at vise en liste af gyldige tilstande som den "
-"kunne finde, og sĺ bede dig om at vćlge én. \n"
-"Som en sidste udvej, hvis du stadig ikke kan fĺ X til at virke, vćlg da Ćndr "
-"grafikkort, vćlg Ukendt kort, og nĺr du bliver spurgt om hvilken server du "
-"vil have, vćlg da FBDev. Dette er en fejlsikker mulighed som virker med alle "
-"moderne grafikkort. Vćlg derefter Test igen for at vćre sikker."
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Til sidst vil du blive spurgt om du řnsker at se den grafiske grćnseflade "
-"ved opstart. Bemćrk at du vil blive spurgt om dette selvom du har valgt ikke "
-"at afprřve konfigurationen. Selvfřlgelig vil du řnske at svare Nej, hvis din "
-"maskine skal bruges som server, eller hvis ikke lykkedes dig at fĺ skćrmen "
-"konfigureret."
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"Mandrake Linux-cdrommen har en indbygget rednings-tilstand. Du kan fĺ fat i "
-"denne ved at starte op fra cdrommen, trykke 'F1'-tasten ved opstart, og "
-"indtaste 'rescue' ved opstartsledeteksten. Men i tilfćlde af at din maskine "
-"ikke kan starte op fra cdrommen, břr du komme tilbage til dette trin for "
-"hjćlp i mindst to situationer:\n"
-"\n"
-" * ved installering af opstartsindlćseren vil drakX genskrive "
-"opstartssektoren (MBR) pĺ din hoveddisk (medmindre du bruger en anden "
-"opstartshĺndterer) sĺ du kan starte enten Windows eller GNU/Linux (forudsat "
-"du har Windows pĺ dit system). Hvis du har brug for at geninstallere "
-"Windows, vil Microsoft installeringsprocessen overskrive opstartssektoren, "
-"og sĺ vil du ikke vćre i stand til at starte GNU/Linux!\n"
-"\n"
-" * Hvis der opstĺr et problem, og du ikke kan starte GNU/Linux op fra "
-"harddisken, vil denne diskette vćre den eneste mĺde at starte GNU/Linux op "
-"pĺ. Den indeholder et pćnt antal systemvćrktřjer til at genskabe et system "
-"som er gĺet ned pga. strřmsvigt, en uheldig tastefejl, en skrivefejl i en "
-"adgangskode, eller nogen anden ĺrsag.\n"
-"\n"
-"Nĺr du klikker pĺ dette trin, vil du blive bedt om at indsćtte en diskette i "
-"drevet. Disketten du indsćtter skal vćre tom eller kun indeholde data som du "
-"ikke har brug for. Du behřver ikke formatere den, da drakX vil overskrive "
-"hele disketten."
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Nu skal du vćlge hvor pĺ din harddisk du vil installere dit Mandrake Linux-"
-"operativsystem. Hvis disken er tom eller et eksisterende operativsystem "
-"bruger alt pladsen pĺ den, bliver du nřdt til at partitionere den. "
-"Partitionering vil sige at disken deles i logiske dele for at gřre plads til "
-"dit nye Mandrake Linux-system.\n"
-"\n"
-"Da en partitionering normalt ikke kan fortrydes kan det godt vćre "
-"frustrerende og stressende for nybegyndere. Heldigvis er der en vejleder som "
-"forenkler denne proces. Fřr du begynder studér da i manualen og tag den tid "
-"du skal bruge.\n"
-"\n"
-"Hvis du křrer installeringen i ekspert-tilstand kommer du ind i Mandrake "
-"Linux' partitioneringsvćrktřj, DiskDrake. Dette vil lade dig finindstille "
-"dine partitioner. Se kapitlet om DiskDrake i manualen. Fra installations-"
-"grćnsefladen kan du bruge de vejledere som beskrevet her ved at klikke "
-"knappen 'Vejleder' pĺ grćnsefladen.\n"
-"\n"
-"Hvis partitionerne allerede er definerede (fra en tidlige installation eller "
-"fra et andet partitions-vćrktřj), skal du bare vćlge dem for at installere "
-"dit Linux system\n"
-"\n"
-"Hvis partitionerne ikke er lavet endnu, bliver du nřdt til at oprette dem "
-"ved brug af vejlederen. Afhćngig af din disks konfiguration er flere "
-"muligheder tilstede:\n"
-"\n"
-" * 'Brug fri plads': Dette vil simpelthen fřre til en automatisk opdeling af "
-"den ledige diskplads. Du vil ikke blive spurgt om mere.\n"
-"\n"
-" * 'Brug eksisterende partition': vejlederen har fundet en eller flere "
-"eksisterende Linux-partitioner pĺ din harddisk. Hvis du vil bruge dem, sĺ "
-"vćlg denne mulighed.\n"
-"\n"
-" * 'Brug den fri plads pĺ Windows-partitionen': hvis Microsoft Windows er "
-"installeret pĺ din disk og bruger al pladsen, bliver du nřdt til at lave "
-"plads til Linux. For at gřre det kan du slette dine Microsoft Windows "
-"partitioner og data (se \"Slet hele disken\" eller \"Ekspert niveau\" ) "
-"eller ćndre střrrelsen pĺ din Microsoft Windows-partition. "
-"Střrrelsesćndringen kan fortages uden tab af data. Denne lřsning er "
-"anbefalet hvis du vil bruge bĺde Mandrake Linux og Microsoft Windows pĺ "
-"samme maskine.\n"
-"\n"
-" Fřr du vćlger denne lřsning, břr du forstĺ at střrrelsen pĺ din Microsoft "
-"Windows partition vil blive mindre end den er nu. Det betyder at du vil have "
-"mindre fri plads under Microsoft Windows til at gemme din data eller "
-"installere nyt programmel.\n"
-"\n"
-" * 'Slet hele disken': hvis du vil slette alle data pĺ alle partitioner pĺ "
-"denne disk og erstatte dem med dit nye Mandrake Linux-system, kan du vćlge "
-"denne mulighed. Vćr forsigtig med denne lřsning, du vil ikke vćre i stand "
-"til at fortryde dine ćndringer efter at du har sagt ja.\n"
-"\n"
-" !! Hvis du bruger denne mulighed vil alle data pĺ din disk gĺ tabt. !!\n"
-"\n"
-" * 'Fjern Windows': dette vil simpelthen slette alt pĺ disken og begynde fra "
-"en frisk, og partitionere fra ny. Alle data pĺ din disk vil gĺ tabt.\n"
-"\n"
-" !! Hvis du bruger denne mulighed vil alle data pĺ din disk gĺ tabt. !!\n"
-"\n"
-" * 'Ekspert-modus': hvis du vil partitionere disken i hĺnden, kan du vćlge "
-"dette alternativ. Vćr forsigtig fřr du vćlger denne lřsning. Den giver dig "
-"mange muligheder, men er ogsĺ farlig. Du kan meget nemt komme til at slette "
-"alle dine data. Sĺ lad vćre med at vćlge den lřsning med mindre du véd hvad "
-"du gřr."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"Vćrsgo'. Installationen en nu fćrdig og dit GNU/Linux-system er nu klar til "
-"brug. Klik bare O.k. for at genstarte systemet. Du kan starte GNU/Linux "
-"eller Windows, som du foretrćkker det (hvis du har to systemer), sĺ snart "
-"din maskine er startet op igen.\n"
-"\n"
-"Avanceret-knappen viser to ekstra knapper for at:\n"
-"\n"
-" * generere en auto-installeringsdiskette: for at oprette en installerings- "
-"diskette som automatisk vil udfřre en hel installation uden hjćlp fra en "
-"operatřr, magen til den installation du lige har konfigureret.\n"
-"\n"
-" Bemćrk at to forskellige muligheder er tilstede efter klik pĺ knappen:\n"
-"\n"
-" * Genafspil: Dette er en delvist automatiseret installering da "
-"partitioneringstrinnet (og kun dette trin) forbliver interaktiv.\n"
-"\n"
-" * Automatisk: Fuldautomatisk installering: harddisken bliver fuldstćndig "
-"genoverskrevet, alle data forsvinder.\n"
-"\n"
-" Denne facilitet er meget nyttig ved installering af et stort antal ens "
-"maskiner. Se afsnittet om autoinstallering pĺ vores websted.\n"
-"\n"
-" * Gem pakkevalg(*): Gemmer pakkevalget som lavet tidligere. Sĺ nĺr en ny "
-"installering laves, kan disketten indsćttes i drevet og installeringen kan "
-"křres ved at bruge F1 pĺ hjćlpeskćrmen idet der indtastes >>linux defcfg="
-"\"floppy\"<<.\n"
-"\n"
-"(*) Du skal have en diskette formateret til FAT (denne oprettes i GNU/Linux "
-"ved at skive \"mformat a:\")"
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Enhver partition der netop er blevet defineret, skal formateres til brug "
-"(formatering betyder oprettelse af et filsystem).\n"
-"\n"
-"Nu kan du ogsĺ řnske at omformatere nogle allerede eksisterende partitioner "
-"for at slette de data som de indeholder. Hvis du řnsker dette, sĺ markér "
-"ogsĺ de partitioner som du řnsker at formatere.\n"
-"\n"
-"Bemćrk at det ikke er nřdvendigt at omformatere alle allerede eksisterende "
-"partitioner. Det er nřdvendigt at omformatere de partitioner, der indeholder "
-"operativsystemet (sĺsom '/', '/usr' og '/var', men du er ikke nřdt til at "
-"omformatere partitioner som du řnsker at beholde (typisk /home).\n"
-"\n"
-"Vćr forsigtig med valg af partitioner; efter formatering vil alle data vćre "
-"slettede pĺ de valgte partitioner, og du vil ikke kunne redde nogetsomhelst "
-"af det.\n"
-"\n"
-"Klik pĺ 'Ok' nĺr du er klar til at formatere partitioner.\n"
-"\n"
-"Klik pĺ 'Annullér' hvis du řnsker at vćlge andre partitioner til at "
-"installere dit nye Mandrake Linux operativsystem.\n"
-"\n"
-"Klik pĺ 'Avanceret' for at vćlge partitioner som du řnsker at tjekke for "
-"dĺrlige blokke."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Dit nye Mandrake Linux styresystem er i fćrd med at blive installeret. "
-"Afhćngig af det antal pakker, du installerer og hastigheden pĺ din maskine "
-"kan dette tage fra nogen fĺ minutter til en del lćngere tid. \n"
-"Hav venligst tĺlmodighed med dette."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-"Pĺ det tidspunkt hvor du installerer Mandrake Linux er det sandsynligt at "
-"nogen af pakkerne er blevet opdaterede siden den oprindelige udgivelse. "
-"Nogle fejl er mĺske blevet rettet, og sikkerhedsproblemer mĺske lřst. Vi "
-"foreslĺr dig at hente disse ned fra internettet for at disse opdateringer "
-"kan komme dig til gode. Vćlg 'Ja' hvis du har en fungerende internet- "
-"forbindelse eller 'Nej' hvis du foretrćkker at installere opdaterede pakker "
-"senere.\n"
-"\n"
-"Valg af 'Ja' viser en liste af steder hvorfra opdateringer kan hentes. Vćlg "
-"en der er nćr ved dig. Sĺ vil et trć med pakkevalg fremkomme: gennemse "
-"valget og tryk 'Installér' for at modtage og installere den valgte pakke "
-"eller 'Annullér'for at afbryde."
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Fřr du gĺr videre břr du lćse betingelserne i licensen omhyggeligt. Den "
-"omfatter hele Mandrake Linux distributionen, og hvis du ikke er enig i alle "
-"betingelserne i den, sĺ klik pĺ 'Nćgt'-knappen. Det vil řjeblikkeligt "
-"afslutte installationen. For at fortsćtte installationen skal du klikke pĺ "
-"'Acceptér'-knappen."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"Nu er det tid til at vćlge det řnskede sikkerhedsniveau for maskinen. "
-"Hovedreglen er at jo mere kendt maskinen er, og jo vigtigere data er, des "
-"hřjere břr sikkerhedsniveauet vćre. Men et hřjere sikkerhedsniveau vindes "
-"normalt pĺ bekostning af letheden af anvendelsen. Kig i kapitlet MSEC i "
-"referencehĺndbogen for mere information om betydningen af niveauerne.\n"
-"\n"
-"Hvis du ikke véd hvad du skal vćlge, sĺ behold den foreslĺede mulighed."
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Nu skal du vćlge hvor Mandrake Linux skal installeres. Hvis partitionerne "
-"allerede er lavet, enten fra en tidligere installation af GNU/Linux eller "
-"fra et andet partitioneringsvćrktřj), kan du bruge dem. Ellers skal disk-"
-"partitionerne laves fřrst.\n"
-"\n"
-"For at lave partitioner skal du fřrst vćlge en harddisk. Du kan vćlge disken "
-"der skal partitioneres ved at trykke pĺ \"hda\" for den fřrste IDE disk, "
-"\"hdb\" for den anden eller \"sda\" for den fřrste SCSI disk og sĺ videre.\n"
-"\n"
-"For at partitionere den valgte disk kan du bruge disse muligheder:\n"
-"\n"
-" * 'Slet alt': Dette valg sletter alle partitioner pĺ den valgte disk.\n"
-"\n"
-" * 'Allokér automatisk': dette valg tillader dig automatisk at lave Ext2 og "
-"swappartitioner pĺ den fri plads pĺ din disk.\n"
-"\n"
-"* 'Mere': giver adgang til flere faciliteter:\n"
-"\n"
-" * 'Gem partitionstabel': Gemmer din partitionstabel pĺ en diskette. "
-"Nyttigt ved senere redning af partitionstabellen, om nřdvendigt. Det er "
-"stćrkt anbefalet at bruge dette trin.\n"
-"\n"
-" * 'Genskab partitionstabel': lader dig genskabe en tidligere gemt "
-"partitionstabel fra diskette.\n"
-"\n"
-" * 'Red partitionstabel': hvis din partitionstabel er beskadiget, kan du "
-"prřve at redde den med denne mulighed. Vćr forsigtig og husk at det kan slĺ "
-"fejl.\n"
-" * 'Automatisk montering af flytbart medie': fravalg af denne mulighed "
-"vil tvinge brugere til at manuelt montere og afmontere media sĺsom disketter "
-"og cdrommer.\n"
-"\n"
-" * 'Vejleder': Hvis du řnsker at bruge vejlederen til at partitionere din "
-"disk, kan du bruge denne mulighed. Dette anbefales, hvis du ikke har det "
-"store kendskab til partitionering.\n"
-"\n"
-" * 'Fortryd': Du kan bruge denne mulighed for at annullere dine ćndringer.\n"
-"\n"
-" * 'Skift mellem normal og ekspert-version': giver mulighed for flere "
-"handlinger med partitioner (type, valgmuligheder, format) og giver mere "
-"information.\n"
-"\n"
-" * 'Fćrdig': nĺr du er fćrdig med partitionering af din disk, dette vil "
-"skrive ćndringerne tilbage pĺ disken.\n"
-"\n"
-"Bemćrk: du kan nĺ alle mulighederne ved at bruge tastaturet: navigér gennem "
-"partitionerne med Tab og op- og ned-pilene.\n"
-"\n"
-"Nĺr en partition er valgt kan du bruge:\n"
-"\n"
-" * Ctrl-c for at lave en ny partition (Nĺr en tom partition er valgt);\n"
-"\n"
-" * Ctrl-d for at slette en partition;\n"
-"\n"
-" * Ctrl-m for at sćtte et monteringssti.\n"
-"\n"
-"For at fĺ information om de forskellige tilgćngelige filsystemstyper kan du "
-"lćse kapitlet ext2fs i 'Referencemanualen'.\n"
-"\n"
-"Hvis du er i gang med at installere pĺ en PPC-maskine skal du lave en lille "
-"HFS-'bootstrap'-partition pĺ mindst 1MB til Yaboot-systemstarteren. Hvis du "
-"vćlger at lave partitionen en smule střrre, f.eks. 50MB kan den vćre nyttig "
-"til at gemme en ekstra kerne og ramdisk-billede for nřdsituationer ved "
-"opstart."
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Mere end én Microsoft Windows partition er blevet genkendt pĺ dit diskdrev. "
-"Vćlg den som du řnsker at ćndre střrrelse pĺ for at kunne installere dit nye "
-"Mandrake Linux operativsystem.\n"
-"\n"
-"Hver partition er listet som fřlger: 'Linux navn', 'Windows navn', "
-"'Kapacitet'.\n"
-"\n"
-"'Linux navn' er kodet som fřlger: 'drevtype', 'drevnummer', "
-"'partitionsnummer' (for eksempel '/hda1').\n"
-"\n"
-"'drevtype' er 'hd' hvis dit diskdrev er et IDE drev, og 'sd' hvis det er et "
-"SCSI drev.\n"
-"\n"
-"'drevnummer' er altid et bogstav efter 'hd' eller 'sd'. For IDE drev:\n"
-"\n"
-" * 'a' betyder 'hoved-drev pĺ den primćre IDE controller',\n"
-"\n"
-" * 'b' betyder 'slave-drev pĺ den primćre IDE controller',\n"
-"\n"
-" * 'c' betyder 'hoved-drev pĺ den sćkundćre IDE controller',\n"
-"\n"
-" * 'd' betyder 'slave-drev pĺ den sćkundćre IDE controller'.\n"
-"\n"
-"For SCSI drev betyder 'a' det 'fřrste drev', 'b' betyder det 'andet drev', "
-"osv.\n"
-"\n"
-"'Windows navn' er det bogstav som dit drev har under Windows (den fřrste\n"
-"disk eller partition kaldes 'C:')."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Hold ud! Dette kan tage adskillige minutter."
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"DrakX skal nu vide om du vil udfřre en standard-installation ('Anbefalet'), "
-"eller om du řnsker at have střrre kontrol ('Ekspert'). Du kan ogsĺ vćlge om "
-"du řnsker at udfřre en nyinstallering eller en opgradering af et "
-"eksisterende Mandrake Linux-system. \n"
-"\n"
-"* 'Installér' udraderer helt det gamle system. Afhćngigt af hvad der i "
-"řjeblikket er pĺ din maskine vil du dog kunne beholde nogen gamle "
-"partitioner (Linux eller andet) ućndret.\n"
-"\n"
-"* 'Opgradér' Denne installationsklasse tillader simpel opdatering af de "
-"pakker der i řjeblikket er installeret pĺ dit Mandrake Linux-system. Den "
-"beholder de nuvćrende partitioner pĺ dine diskdrev sĺ vel som opsćtningen af "
-"brugere. Alle andre konfigurationstrin forbliver mulige som for almindelig "
-"installation.\n"
-"\n"
-"* 'Opgradér kun pakker' Denne spritnye installationsklasse kan opgradere et "
-"eksisterende Linux Mandrake-system idet al systemkonfiguration beholdes "
-"ućndret. Tilfřjelse af nye pakker til den nuvćrende installation vil ogsĺ "
-"vćre muligt.\n"
-"\n"
-"Afhćngig af din viden om GNU/Linux kan du vćlge et af de fřlgende:\n"
-"\n"
-"* Anbefalet: hvis du aldrig har installeret et GNU/Linux-operativsystem sĺ "
-"vćlg dette. Installationen vil vćre meget nem og du vil kun blive stillet "
-"nogen fĺ spřrgsmĺl.\n"
-"\n"
-"* Ekspert: hvis du har en god viden om GNU/Linux, kan du vćlge denne "
-"installationsklasse. Ekspertinstallationen vil lade dig lave en meget "
-"tilpasset installation. Besvarelse af nogen af spřrgsmĺlene kan vćre meget "
-"svćrt hvis du ikke har sĺ godt et kendskab til GNU/Linux, sĺ lad vćre med at "
-"vćlge dette, medmindre du véd hvad du laver."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Normalt vil drakX have valgt det rigtige tastatur til dig (afhćngigt af "
-"sproget du har valgt) og du vil sĺ ikke se dette trin. Men du har mĺske "
-"ikke et tastatur som svarer nřjagtigt til dit sprog: for eksempel hvis du "
-"er en engelsktalende svejtser, vil du mĺske stadig řnske at dit tastatur "
-"skal vćre et svejtsisk tastatur. Eller hvis du taler engelsk men bor i "
-"Québec, er du mĺske i samme situation. I begge tilfćlde mĺ du gĺ tilbage "
-"til dette installationstrin og vćlge et passende tastatur fra listen.\n"
-"\n"
-"Klik pĺ 'mere'-tasten for at blive prćsenteret for den fulde \n"
-"liste af understřttede tastaturer."
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Vćlg dit foretrukne sprog for brug under installation og pĺ systemet. \n"
-"Der er en Avanceret-knap som lader dig vćlge andre sprog, der installeres "
-"pĺ maskinen. Valg af andre sprog vil installere de sprogspecifikke filer for "
-"systemdokumentation og programmer. Hvis du for eksempel vil bevćrte folk fra "
-"Spanien pĺ din maskine, vćlg da engelsk som hovedsproget i trć-visningen, og "
-"afkryds sĺ i den avancerede afdeling boksen svarende til spansk|Spanien.\n"
-"\n"
-"Bemćrk at flere sprog kan installeres samtidigt. Nĺr du er fćrdig med at "
-"vćlge yderligere sprog, sĺ klik O.k. for at fortsćtte."
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"Normalt antager drakX at du har en to-knapsmus og vil lave en opsćtning hvor "
-"den tredje knap emuleres. DrakX vil automatisk vide om den er PS/2, seriel "
-"eller USB.\n"
-"\n"
-"Hvis du řnsker en anden type mus, vćlg da den rigtige type mus fra den viste "
-"liste.\n"
-"\n"
-"Hvis du vćlger en mus forskellig fra den forvalgte, vil du blive prćsenteret "
-"for en skćrm for museafprřvning. Brug knapperne og hjulet for at efterprřve, "
-"om indstillerne er gode. Hvis musen ikke virker korrekt, tryk da pĺ "
-"mellemrumstangenten eller vognretur for at 'Annullere' og vćlg forfra."
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Vćlg den rigtige port. For eksempel er navnet for COM1-porten under MS "
-"Windows 'ttyS0' under GNU/Linux."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"Dette er den vanskeligste beslutning omkring sikkerheden af dit GNU/Linux- "
-"system: Du skal indtaste din root-adgangskode. Root er systemadministratoren "
-"og er den eneste der har lov til at lave opdateringer, tilfřje brugere, "
-"ćndre i den overordnede systemkonfiguration og sĺ videre. Kort sagt, root "
-"kan gřre alt! Derfor skal du vćlge en adgangskode der er svćr at gćtte - "
-"DrakX vil fortćlle dig hvis det er for nemt. Som víst kan du vćlge ikke at "
-"indtaste en adgangskode, men vi advarer dig pĺ det kraftigste mod dette, om "
-"ikke andet med én begrundelse: tro ikke at fordi du startede GNU/Linux op, "
-"sĺ er dine andre operativsystemer velforvarede. Da root kan overvinde alle "
-"forhindringer og uforvarende slette alle data pĺ partitioner ved sorglřst at "
-"behandle partitionerne selv, er det vigtigt at det er vanskeligt at blive "
-"root.\n"
-"\n"
-"Adgangskoden břr vćre en blanding af bogstaver og tal og mindst 8 tegn "
-"langt. Skriv aldrig en adgangskode ned for root - det gřr det for nemt at "
-"bryde ind i et system.\n"
-"\n"
-"Gřr dog ikke adgangskoden for lang eller kompliceret da du skal vćre i stand "
-"til at huske den uden for stort besvćr.\n"
-"\n"
-"Adgangskoden vil ikke blive vist pĺ skćrmen nĺr du indtaster den. Du skal "
-"derfor indtaste adgangskoden to gange, for at begrćnse risikoen for "
-"tastefejl. Hvis du kommer til at lave den samme tastefejl to gange, vil "
-"denne 'ukorrekte' adgangskode vćre krćvet nĺr du forbinder dig til "
-"systemet.\n"
-"\n"
-"I ekspert-tilstand vil du blive spurgt om du vil koble op til en "
-"autenticerings-server, som NIS eller NDAP.\n"
-"\n"
-"Hvis dit netvćrk bruger LDAP (eller NIS)-protokollen til autentificering, "
-"vćlg da LDAP (eller NIS). Hvis du ikke véd det, sĺ spřrg din "
-"systemadministrator.\n"
-"\n"
-"Hvis din maskine ikke er forbundet til noget administreret netvćrk, řnsker "
-"du nok at vćlge Lokale filer for autentificering"
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"LILO og GRUB er opstartsindlćsere for GNU/Linux. Dette trin er normalt helt "
-"automatiseret. Faktisk vil drakX analysere opstartsektoren pĺ disken og vil "
-"handle ud fra dette, afhćngig af hvad den finder hér:\n"
-"\n"
-" * Hvis den finder en Windows opstartssektor vil den erstatte den med en "
-"GRUB/LILO opstartssektor, sĺ du kan starte GNU/Linux eller et andet "
-"operativsystem;\n"
-"\n"
-" * Hvis den finder en GRUB eller LILO opstartssektor vil den erstatte den "
-"med en ny;\n"
-"\n"
-"Hvis den er i tvivl vil drakX vise en dialog med forskellige muligheder.\n"
-"\n"
-" * 'Opstartsindlćser der bruges': du fĺr her tre muligheder:\n"
-"\n"
-" * 'GRUB': hvis du foretrćkker GRUB (tekstmenu).\n"
-"\n"
-" * 'LILO med grafisk menu': hvis du foretrćkker LILO med "
-"grafikgrćnseflade.\n"
-"\n"
-" * 'LILO med tekstmenu': hvis du foretrćkker LILO med tekstgrćnseflade.\n"
-"\n"
-" * 'Opstartsenhed': I de fleste tilfćlde vil det ikke vćre nřdvendigt at "
-"ćndre standard (/dev/hda), men hvis du foretrćkker det, kan "
-"opstartsindlćseren installeres pĺ det andet diskdrev (/dev/hdb), eller endda "
-"pĺ en diskette (/dev/fd0).\n"
-"\n"
-" * 'Forsinkelse fřr opstart af standardsystem': Ved genstart af maskinen er "
-"dette den tid der gives til brugeren til at vćlge en anden opstartsindgang "
-"end standard i opstartsindlćserens menu.\n"
-"\n"
-"Vćr opmćrksom pĺ at hvis du vćlger ikke at installere en opstartsindlćser "
-"(ved at vćlge 'Annullér' hér), skal du vćre sikker pĺ at du har en anden "
-"mĺde at starte dit Mandrake Linux-system op pĺ! Vćr ogsĺ sikker pĺ hvad du "
-"gřr hvis du ćndrer nogen af tilvalgene her!\n"
-"\n"
-"Et klik pĺ 'Avanceret'-knappen i denne dialog vil tilbyde mange avancerede "
-"muligheder beregnet til ekspertbrugeren.\n"
-"\n"
-"Efter at du har konfigureret de generelle opstartsindlćserparametre, bliver "
-"du presenteret for listen af opstartsmuligheder som vil vćre tilstede ved "
-"opstarten.\n"
-"\n"
-"Hvis der er et andet operativsystem installeret pĺ din maskine, vil det "
-"automatisk blive tilfřjet til opstartsmenuen. Her kan du vćlge at "
-"finindstille de eksisterende muligheder. Vćlg en indgang og klik pĺ 'Ćndr' "
-"for at ćndre eller fjerne den; 'Tilfřj' opretter en ny indgang; og 'Fćrdig' "
-"fortsćtter til det nćste installationstrin."
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (LInux LOaderen) og GRUB er opstartsindlćsere: de kan starte enten GNU/"
-"Linux eller ethvert andet system op, som ligger pĺ din maskine. Normalt "
-"bliver disse andre operativsystemer fundet korrekt og installeret. Hvis "
-"dette ikke er tilfćldet, kan du lave en indgang i hĺnden med denne skćrm. "
-"Vćr omhyggelig med at vćlge de korrekte parametre.\n"
-"\n"
-"Mĺske vil du ikke řnske at give nogensomhelst adgang til disse andre "
-"operativsystemer. I dette tilfćlde kan du slette de tilsvarende indgange. "
-"Men sĺ har du brug for en opstartsdiskette for at starte disse "
-"operativsystemer!"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Det er nřdvendigt at du angiver hvor du řnsker at placere oplysningerne\n"
-"krćvet for at opstarte GNU/Linux.\n"
-"\n"
-"Med mindre du véd prćcist hvad du gřr, břr du vćlge Fřrste sektor pĺ drevet\n"
-"(MBR)."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-"Her vćlger vi et udskrivningssystem som din maskine skal bruge. Andre "
-"styresystemer tilbyder mĺske ét, men Mandrake tilbyder tre.\n"
-"\n"
-" * 'pdq' - som betyder 'print, don't queue' (udskriv, kř ej), er valget, "
-"hvis du har en direkte forbindelse til din printer, og du řnsker at kunne "
-"klare printproblemer med det samme, og du ikke har nogen printere via "
-"netvćrk. Det vil kun behandle meget simple netvćrkstilfćlde, og er lidt "
-"slřvt pĺ netvćrk. Vćlg 'pdq' hvis dette er din jomfrurejse med GNU/Linux. Du "
-"kan ćndre dit valg efter installeringen ved at křre PrinterDrake fra "
-"Mandrakes Kontrolcenter, og klikke pĺ ekspert-knappen.\n"
-"\n"
-" * 'CUPS' - 'Common Unix Printing System' (Fćlles printersystem for Unix) er "
-"fremragende til at udskrive pĺ din lokale printer, og ogsĺ pĺ den, der stĺr "
-"pĺ den anden side af jordkloden. Det er simpelt, og kan virke som en server "
-"eller klient for det bedagede 'lpd'-printsystem, sĺ det er kompatibelt med "
-"de tidligere systemer. Det kan mange finesser, men den basale opsćtning er "
-"nćsten lige sĺ nem som for 'pdq'. Hvis du har brug for at dette efterligner "
-"en 'lpd'-server, skal du aktivere 'cups-lpd'-dćmonen. Det har grafiske "
-"grćnseflader for udskrivning og valg af printermuligheder.\n"
-"\n"
-" * 'lprNG' - 'line printer daemon New Generation' (ny generation af "
-"linjeprinterdćmonen). Dette system kan gřre omtrent det samme som de andre, "
-"men det vil ogsĺ kunne skrive til et Novell netvćrk, fordi det understřtter "
-"IPX-protokollen, og det kan udskrive direkte til skal-kommandoer. Hvis du "
-"har brug for Novell eller udskrivning til kommandoer uden at bruge en "
-"separat kanaliserings-konstruktion, sĺ brug lprNG. Ellers er CUPS at "
-"foretrćkke, da det er simplere og bedre til at fungere over netvćrk."
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX er nu ved at bestemme alle IDE-enheder der er tilstede pĺ din maskine. "
-"Den vil ogsĺ lede efter en eller flere PCI SCSI-kort pĺ dit system. Hvis et "
-"SCSI-kort findes, vil DrakX automatisk installere en driver til det.\n"
-"\n"
-"Da maskineleftersřgningen nogen gange ikke vil finde et stykke udstyr, vil "
-"DrakX alligevel spřrge dig om du har et SCSI-kort installeret i din maskine. "
-"Du vil blive prćsenteret for en liste af SCSI-kort, som du kan vćlge fra. "
-"Svar Nej hvis du ikke har noget SCSI-udstyr. Hvis du ikke er sikker, kan du "
-"ogsĺ tjekke listen over udstyr i din maskine ved at vćlge Se maskinelinfo og "
-"klikke O.k. Undersřg listen over udstyr og klik sĺ pĺ O.k.-knappen for at "
-"vende tilbage til spřrgsmĺlet om SCSI-udstyr.\n"
-"\n"
-"Hvis du mĺtte angive din kort manuelt, vil DrakX spřrge om du vil "
-"specificere nogle indstillingsmuligheder for den. Du břr dog lade DrakX "
-"spřrge udstyret om opsćtningen. Det virker som regel fint. \n"
-"Hvis DrakX ikke kan fĺ oplysninger om indstillinger ud af udstyret, som skal "
-"bruges til opsćtningen, skal du angive opsćtningsinformation til driveren. "
-"Se i brugervejledningen (kapitel 3, underafsnit \"Collective informations on "
-"your hardware\") om hjćlp med at finde informationen i maskinel-"
-"dokumentationen, fra fabrikantens side (hvis du har Internet adgang) eller "
-"fra Microsoft Windows (hvis du brugte dette udstyr med Windows pĺ dit "
-"system)."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"Du kan tilfřje flere valgmuligheder for Yaboot, enten til andre "
-"styresystemer, andre kerner, eller til nřd-opstart.\n"
-"\n"
-"For andre styresystemer bestĺr indgangen blot af et navn og rodpartitionen\n"
-"\n"
-"Der er for Linux nogen fĺ valgmuligheder:\n"
-"\n"
-" * Label: dette er simpelthen navnet som du skal indtaste til ledeteksten "
-"fra Yaboot for at vćlge denne opstartsmulighed.\n"
-"\n"
-" * Image: Dette vil vćre navnet pĺ den kerne der skal opstartes. Typisk "
-"vmlinux eller en variation pĺ vmlinux med en endelse.\n"
-"\n"
-" * Root: root enheden eller \"/\" for din Linux installation.\n"
-"\n"
-" * Append: pĺ Apple udstyr bruges kerne-append muligheden ganske ofte til at "
-"hjćlpe med initialisering af billedudstyr, eller til at aktivere emulering "
-"af museknapper for de ofte manglende knap 2 og knap 3 pĺ musen pĺ en typisk "
-"Apple mus. Det fřlgende er nogle eksempler:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: denne mulighed kan bruges enten til at indlćse de fřrste moduler, "
-"fřr opstartsenheden er tilgćngelig, eller til at indlćse en ramdisk ved "
-"opstart i en nřdsituation.\n"
-"\n"
-" * Initrd-size: den almindelige střrrelse pĺ en ramdisk er generelt 4.096 "
-"byte. Hvis du har brug for at udlćgge en stor ramdisk kan denne mulighed "
-"bruges.\n"
-"\n"
-" * Read-write: normalt bliver rod-partitionen fřrst bragt op skrivebeskyttet "
-"for at muliggřre et filsystemstjek fřr systemet gĺr i luften. Her kan du "
-"tilsidesćtte denne opsćtning.\n"
-"\n"
-" * NoVideo: skulle Apple-billedudstyret vise sig at vćre specielt "
-"problemfyldt kan du vćlge denne mulighed for at starte op i 'novideo'-"
-"tilstand, med indbygget rammebufferunderstřttelse.\n"
-"\n"
-" * Default: vćlger denne indgang som vćrende det normale Linux valg, som "
-"vćlges bare ved at trykke RETUR ved yaboots ledetekst. Denne indgang vil "
-"ogsĺ blive fremhćvet med en '*', hvis du trykker Tab for at se "
-"opstartsvalgene."
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot er en systemstarter til NewWorld MacIntosh-maskinel. Den kan starte "
-"enten GNU/Linux, MacOS eller MacOSX, hvis de er til stede pĺ din maskine. "
-"Sćdvanligvis vil disse andre styresystemer blive korrekt opdaget og "
-"installeret. Hvis dette ikke skulle vćre tilfćldet kan du her tilfřje en "
-"indgang i hĺnden. Vćr omhyggelig med at vćlge de korrekte parametre.\n"
-"\n"
-"Yaboots hovedvalg er:\n"
-"\n"
-" * Init-besked: En enkel tekstbesked som vises fřr valg af opstart.\n"
-"\n"
-" * Opstartsenhed: Angiver hvor du řnsker at placere informationen som er "
-"nřdvendig for at starte GNU/Linux. Du vil generelt have indstillet en "
-"bootstrap-partition tidligere til at have denne information.\n"
-"\n"
-" * Open firmwareforsinkelse: Til forskel fra LILO er der to forsinkelser "
-"mulige med yaboot. Den fřrste forsinkelse bliver mĺlt i sekunder og du kan "
-"ved det punkt vćlge mellem CD, OF-opstart, MacOS eller Linux.\n"
-"\n"
-" * Ventetid fřr kerneopstart: Denne er lig LILO-opstartsforsinkelsen. Efter "
-"at have valgt Linux vil du have denne ventetid gange 0,1 sekunder fřr din "
-"forvalgte kernebeskrivelse bliver valgt.\n"
-"\n"
-" * Aktivér CD-opstart?: Hvis du vćlger dette valg vil du kunne trykke 'C' "
-"for CD ved det fřrste opstartsvalg.\n"
-"\n"
-" * Aktiver OF-opstart?: Hvis du vćlger dette valg vil du kunne trykke 'N' "
-"for 'Open Firmware' ved det fřrste opstartsvalg.\n"
-"\n"
-" * Forvalgt styresystem: Du kan vćlge hvilket forvalgt styresystem der skal "
-"startes nĺr Open Firmwareforsinkelsen er udlřbet."
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"Her prćsenteres forskellige parametre relateret til din maskine. Afhćngig af "
-"dit installerede maskinel vil - eller vil du ikke - se de fřlgende "
-"indgange:\n"
-"\n"
-" * 'Mus': tjek den aktuelle musekonfiguration og klik pĺ knappen for om "
-"nřdvendigt at ćndre den.\n"
-"\n"
-" * 'Tastatur': tjek den aktuelle tastaturkonfiguration og klik pĺ knappen "
-"for om nřdvendigt at ćndre den.\n"
-"\n"
-" * 'Tidszone': DrakX gćtter normalt din tidszone fra det sprog, du har "
-"valgt. Men ogsĺ her, som ved valg af tastatur, er du mĺske ikke i det land "
-"som dit sprog indikerer, sĺ du har mĺske brug for at klikke pĺ 'Tidszone'-"
-"knappen sĺ du kan konfigurere uret svarende til den tidszone du er i.\n"
-"\n"
-" * 'Printer': Et klik pĺ 'Ingen printer'-knappen vil ĺbne vejlederen for "
-"printerkonfigurering.\n"
-"\n"
-" * 'Lydkort': Hvis et lydkort er blevet fundet pĺ dit system, vil det blive "
-"vist her. Ingen ćndringer er mulige pĺ installationstidspunktet.\n"
-"\n"
-" * 'Tv-kort': Hvis et tv-kort er blevet fundet pĺ dit system, vil det blive "
-"vist her. Ingen ćndringer er mulige pĺ installationstidspunktet.\n"
-"\n"
-" * 'ISDN-kort': Hvis et ISDN-kort er blevet fundet pĺ dit system, vil det "
-"blive vist her. Du kan klikke pĺ knappen for at ćndre de tilhřrende "
-"parametre."
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Vćlg det diskdrev som du vil slette for at installere din nye Mandrake Linux "
-"partition. Vćr forsigtig, alle data som er pĺ der, vil gĺ tabt og vil ikke "
-"kunne genskabes!"
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Klik pĺ 'O.k.' hvis du řnsker at slette alle data og pertitioner der ligger "
-"pĺ dette diskdrev. Vćr omhyggelig, efter klik pĺ O.k. vil du ikke vćre i "
-"stand til at redde nogen data eller partitioner, der ligger pĺ dette "
-"diskdrev, inklusive alle Windows data.\n"
-"Klik pĺ 'Annulér' for at anullere denne handling uden at tabe nogen data og "
-"partitioner der er tilstede pĺ dette diskdrev."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Kunne ikke fĺ adgang til kernemoduler svarende til din kerne (fil %s "
-"mangler), dette betyder normalt at din opstartsdiskette ikke stemmer overens "
-"med installationsmediet (lav en nyere opstartsdiskette)"
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "Du skal ogsĺ formatere %s"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Du har valgt fřlgende servere: %s\n"
-"\n"
-"\n"
-"Disse servere er aktiveret som standard. De har ingen kendte "
-"sikkerhedsproblemer, men nogen nye kan blive fundet. I sĺ tilfćlde skal du "
-"opgradere sĺ snart som mulig.\n"
-"\n"
-"\n"
-"Řnsker du virkelig at installere disse servere?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Kan ikke bruge rundkastning uden noget NIS-domćne"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Indsćt en tom diskette i diskette-drev %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Denne diskette er ikke formatteret til FAT"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"For at bruge dette gemte pakkevalg, start installationen op med``linux "
-"defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Fejl ved lćsning af filen %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Noget maskinel pĺ din maskine skal bruge ''proprietćre'' drivere for at "
-"virke.\n"
-"Du kan finde information om dem hos: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Du skal have en rod partition. For at fĺ dette, lav en ny partition (eller "
-"vćlg en eksisterende).\n"
-"Vćlg sĺ kommandoen \"Monterings-sti\" og sćt den til `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Du skal tildele en partition til Swap"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Du har ingen Swap partition\n"
-"\n"
-"Fortsćt alligevel?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Du skal have en FAT-partition monteret under /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Brug fri plads"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Ikke nok fri plads til at tildele nye partitioner"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Brug eksisterende partition"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Der er ingen eksisterende partition der kan bruges"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Brug Windows partitionen til Loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Hvilken partition vil du benytte som Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Vćlg střrrelserne"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Rod-partitions střrrelse i Mb: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Swap-partitions střrrelse i Mb: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Brug den frie plads pĺ Windows-partitionen"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Hvilken partition řnsker du at ćndre střrrelse pĺ?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Udregner Windows-filsystemets grćnser"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Programmet til at ćndre střrrelse pĺ FAT kan ikke behandle din partition, \n"
-"den fřlgende fejl opstod: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr "Din Windows partition er for fragmenteret, křr 'defrag' fřrst"
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"ADVARSEL!\n"
-"\n"
-"DrakX vil nu ćndre střrrelsen pĺ din Windows-partition. Udvis forsigtighed: "
-"denne operation er farlig. Hvis du ikke allerede har gjort det, břr du fřrst "
-"gĺ ud af denne installation, křre scandisk under Windows (og eventuelt "
-"defrag) og sĺ genstarte installationen. Du břr ogsĺ tage en sikkerhedskopi "
-"af dine data. Tryk pĺ Ok, hvis du er helt sikker."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Hvilken střrrelse řnsker du at at beholde Windows pĺ?"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "partition %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT střrrelsesćndring mislykkedes: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Der er ingen FAT-partitioner at ćndre střrrelse pĺ, eller bruge som loopback "
-"(eller ikke nok plads tilbage)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Slet hele disken"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Fjern Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Du har mere end et diskdrev, hvilken řnsker du at installere Linux pĺ?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Alle eksisterende partitioner og deres data vil gĺ tabt pĺ drev %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Brugerdefineret disk-opdeling"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Brug fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Du kan nu partitionere %s.\n"
-"Nĺr du er fćrdig, sĺ husk at gemme med 'w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Du har ikke nok fri plads pĺ din Windows-partition"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Kan ikke finde plads til installering"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX partitionerings-vejlederen fandt de fřlgende lřsninger:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partitionering mislykkedes: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Bringer netvćrket op"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Lukker netvćrket ned"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Der opstod en fejl, men jeg ved ikke hvordan den kan hĺndteres pĺ en\n"
-"pćn mĺde.\n"
-"Fortsćt pĺ eget ansvar!"
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duplikér monterings-sti %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Nogle vigtige pakker blev ikke installeret rigtigt.\n"
-"Enten er dit cdrom-drev eller din cdrom fejlbehćftet.\n"
-"Tjek cdrom'en pĺ en fćrdiginstalleret maskine ved brug af \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Velkommen til %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Intet tilgćngeligt diskettedrev"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Gĺr til trin `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Dit system har kun fĺ resurser. Du kan fĺ problemer med at installere\n"
-"Mandrake Linux. Hvis dette sker, kan du prřve en tekst-baseret installation "
-"i stedet\n"
-"Dette gřres ved at trykke 'F1' ved opstart fra cdrommen, og sĺ skrive 'text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Installationsmetode"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Vćlg en af de fřlgende installations-mĺder:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Den totale střrrelse af de grupper du har valg er cirka %d Mb.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Hvis du řnsker at installere mindre end denne střrrelse,\n"
-"sĺ vćlg procentdelen af pakker som du vil installere.\n"
-"\n"
-"En lav procentdel vil kun installere de vigtigste pakker;\n"
-"en procentdel pĺ 100%% vil installere alle valgte pakker."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Du har kun plads pĺ din disk til %d%% af disse pakker.\n"
-"\n"
-"Hvis du řnsker at installere mindre end denne střrrelse,\n"
-"sĺ vćlg procentdelen af pakker som du vil installere.\n"
-"En lav procentdel vil kun installere de vigtigste pakker;\n"
-"en procentdel pĺ %d%% vil installere sĺ mange pakker som muligt."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-"Du har mulighed for at vćlge dem mere prćcist i nćste installationstrin"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procentandel pakker til installation"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Valg af pakkegrupper"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Individuelt pakkevalg"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Total střrrelse: %d / %d Mb"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Dĺrlig pakke"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Navn: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Version: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Střrrelse: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Vigtighed: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Du kan ikke vćlge denne pakke, da der ikke er nok plads tilbage til at "
-"installere den"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "De fřlgende pakker vil blive installeret"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "De fřlgende pakker vil blive afinstalleret"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Du kan ikke vćlge/fravćlge denne pakke"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Dette er en nřdvendig pakke, den kan ikke vćlges fra"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Du kan ikke fravćlge denne pakke. Den er allerede installeret"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Denne pakke skal opgraderes\n"
-"Er du sikker pĺ at du vil fravćlge den?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Du kan ikke fravćlge denne pakke. Den skal opgraderes"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Vis automatisk valgte pakker"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Installér"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Indlćs/gem pĺ diskette"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Opdaterer pakkevalg"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Minimal installation"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Vćlg pakker som skal installeres"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Installerer"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Beregnes"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Resterende tid "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Vent venligst, forbereder installationen"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pakker"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Installerer pakke %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Acceptér"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Nćgt"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Skift din cdrom!\n"
-"\n"
-"Indsćt cdrom'en med navnet \"%s\" i dit cdrom-drev og tryk pĺ Ok, nĺr det "
-"gjort\n"
-"Hvis du ikke har den sĺ tryk pĺ Annullér, sĺ undgĺs installation fra denne cd"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Fortsćt alligevel?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Der opstod en fejl ved installeringen af pakkerne:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Advarsel\n"
-"\n"
-"Lćs venligst betingelserne nedenfor omhyggeligt. Hvis du ikke er enig i alt "
-"der stĺr, mĺ du ikke installere indholdet af CD-en. Tryk pĺ 'Nćgt' for at "
-"fortsćtte installationen uden disse cdrommer.\n"
-"\n"
-"\n"
-"Visse komponenter pĺ den nćste CD er ikke omfattet af GPL-licensen eller "
-"andre lignende licenser. Hver enkelt komponent er derfor omfattet af de "
-"betingelser der er beskrevet i dets egen licens. Lćs derfor venligst "
-"betingelserne omhyggeligt og fřlg de opstillede betingelser nĺr du bruger og/"
-"eller videredistribuerer komponenterne. Sĺdanne licenser forhindrer normalt "
-"kopiering (sikkerhedskopiering undtaget), videredistribuering, at folk "
-"skiller programmet ad, eller ćndrer i komponenterne. Ethvert brud pĺ "
-"licensen vil řjeblikkeligt fratage dig rettighederne beskrevet i den "
-"specifikke licens. Medmindre licensen giver dig lov hertil, vil det normalt "
-"ikke vćre tilladt at installere programmet pĺ mere end én maskine, eller "
-"bruge det pĺ et netvćrk. Hvis du er i tvivl, sĺ kontakt venligst producenten "
-"af komponenten direkte. Overdragelse til tredjemand eller kopiering af "
-"sĺdanne komponenter inklusive dokumentationen er normalt forbudt.\n"
-"\n"
-"\n"
-"Alle rettigheder til komponenterne pĺ CD-en tilhřrer deres respektive "
-"skabere og er beskyttet af Lov om Ophavsret.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Der er opstĺet en fejl"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "Řnsker du virkelig at forlade installationen?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Licensaftale"
-
-# Mangler
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Introduktion\n"
-"\n"
-"Operativsystemet og de forskellige komponenter tilgćngelige i Mandrake Linux "
-"distributionen vil herefter blive kaldt \"programmelprodukter\". "
-"Programmelprodukterne inkluderer, men er ikke begrćnset til: vćrktřjssćttet, "
-"metoder, regler og dokumentation.\n"
-"\n"
-"\n"
-"1. Licensaftale\n"
-"\n"
-"Lćs venligst dette dokument. Dette dokument er en licensaftale mellem dig "
-"og MandrakeSoft S.A., som gćlder til disse programmelprodukter. Ved at "
-"installere, kopiere eller bruge disse programmelprodukter accepterer du "
-"indirekte og fuldt ud denne licensaftale med dens betingelser og regler. "
-"Hvis du er uenig i nogensomhelst del af denne licens, mister du retten til "
-"at installere, kopiere eller bruge disse programmelprodukter. Hvilket som "
-"helst forsřg pĺ at installere, kopiere eller bruge disse programmelprodukter "
-"pĺ en mĺde som ikke er i overensstemmelse med betingelserne og reglerne i "
-"denne licens er ulovlig og vil betyde at du mister dine rettighedder under "
-"denne licens. Hvis dette sker, skal du med det samme řdelćgge alle kopier "
-"af disse programmelprodukter.\n"
-"\n"
-"\n"
-"2. Begrćnset garanti\n"
-"\n"
-"Disse programmelprodukter og dokumenter leveres \"som de er\", uden nogen "
-"form for garanti efter som hvad lov foreskriver. MandrakeSoft S.A. vil "
-"under ingen omstćndigheder undtagen hvad lov foreskriver vćre ansvarlig for "
-"specielle, tilfćldige, direkte eller indirekte tab af nogen art "
-"(inkluderende uden begrćnsninger, skader ved tab af forretning, "
-"forstyrrelser af forretning, finansielle tab, advokatbistand, erstatninger "
-"som resultat af en retssag eller nogen anden form for tab) opstĺet under "
-"brugen af disse programmelprodukter eller mangel pĺ samme, selv hvis "
-"MandrakeSoft S.A. er blevet gjort opmćrksom pĺ mulighed for sĺdanne "
-"skader.\n"
-"\n"
-"BEGRĆNSET GARANTI MED HENSYN TIL REGLER OM BRUG AF FORBUDT PROGRAMMEL I "
-"VISSE LANDE\n"
-"\n"
-"Udover hvad lov foreskriver vil MandrakeSoft S.A. eller deres distributřrer "
-"under ingen omstćndigheder vćre ansvarlig for tilfćldige, direkte eller "
-"indirekte tab af nogen art (inkluderende uden begrćnsninger skader ved tab "
-"af forretning, forstyrrelser af forretning, finansielle tab, "
-"advokatbistand, erstatninger som resultat af en retssag eller nogen anden "
-"form for tab) opstĺet under hentning eller brugen af dette programmel fra "
-"Mandrake Linux websider som er forbudt i visse lande ved lov. Denne "
-"begrćnsede garanti gćlder, men er ikke begrćnset til, de stćrke "
-"krypteringskomponenter inkluderet i disse programmelprodukter.\n"
-"\n"
-"\n"
-"3. GPL-licensen og relaterede licenser. \n"
-"\n"
-"Dette programmel bestĺr af komponenter lavet af forskellige personer. De "
-"fleste af disse komponenter bliver reguleret efter vilkĺrene og aftalerne i "
-"GNU General Public License, herefter kaldet \"GPL\", eller lignende "
-"licenser. De fleste af disse licenser tillader dig at bruge, kopiere, "
-"tilpasse eller redistribuere komponenterne, de dćkker. Lćs venligst "
-"vilkĺrene og aftalerne i licensaftalen for hver komponent fřr du bruger det. "
-"Spřrgsmĺl angĺende en komponent bedes adresseret til komponentens forfatter "
-"og ikke til MandrakeSoft. Programmerne udviklet af MandrakeSoft S.A. bliver "
-"reguleret efter GPL-licensen. Dokumentationen skrevet af MandrakeSoft S.A. "
-"bliver reguleret efter en specifik licens. Referér venligst til "
-"dokumentationen for yderligere detaljer.\n"
-"\n"
-"\n"
-"4. Intellektuelle rettigheder \n"
-"\n"
-"Alle rettigheder til komponenterne i programmelproduktet tilhřrer deres "
-"respektive forfattere, og er beskyttet af intellektuelle rettigheds- og "
-"ophavsretslove, gćldende for programmel. MandrakeSoft S.A. forbeholder sine "
-"rettigheder til at ćndre eller tilpasse programmelprodukterne, helt eller "
-"delvist, med alle midler og til alle formĺl. \"Mandrake\", \"Mandrake Linux"
-"\" samt de tilhřrende logoer er varemćrker for MandrakeSoft S.A. \n"
-"\n"
-"\n"
-"5. Gćldende love \n"
-"\n"
-"Hvis dele af denne aftale bliver kendt ugyldig, ulovlig eller ubrugelig ved "
-"en domstolsafgřrelse, vil disse dele blive ekskluderet fra denne kontrakt. "
-"Du vil forblive bundet af de andre gćldende dele af aftalen. Vilkĺrene og "
-"aftalerne i denne licens er reguleret under fransk lov. Alle uenigheder "
-"vedrřrende vilkĺrene i denne licens vil fortrinsvist blive lřst udenfor "
-"domstolene. Som en sidste udvej vil uenighederne blive hĺndteret ved den "
-"rette domstol i Paris, Frankrig. Ved spřrgsmĺl omkring dette dokument, "
-"kontakt venligst MandrakeSoft S.A. \n"
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Tastatur"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Vćlg dit tastaturlayout."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Her er den komplette liste over tilgćngelige tastaturer"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Hvilken installations-klasse řnsker du?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Installér/Opdatér"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Er dette en nyinstallation eller en opdatering?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Anbefalet"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Ekspert"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Opgradering"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Opgradér kun pakker"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Vćlg muse-type."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Muse-port"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Vćlg hvilken seriel port din mus er forbundet til."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Emulering af knapper"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emulering af knap 2"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emulering af knap 3"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfigurerer PCMCIA kort..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Konfigurerer IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "ingen ledige partitioner"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Skanner partitioner for at finde monteringspunkter"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Vćlg monterings-stierne"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Jeg kan ikke lćse din partitionstabel, den er for řdelagt for mig :( Jeg kan "
-"forsřge fortsat at udblanke dĺrlige partitioner, ALLE DATA vil gĺ tabt. Den "
-"anden mulighed er at forbyde DrakX at ćndre partitionstabellen. (fejlen er %"
-"s)\n"
-"\n"
-"Er du indforstĺet med at řdelćgge alle partitionerne?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake kunne ikke lćse partitionstabellen korrekt. Fortsćt pĺ eget ansvar!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Det er ikke plads for 1 MB bootstrap! Installationen vil fortsćtte, men for "
-"at starte dit system op, skal du lave en bootstrap partition i DiskDrake"
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Ingen rodpartition fundet til opgradering"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Rod-partition"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Hvilken partition indeholder systemets rod-partition (/)?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Du skal genstarte for at aktivere ćndringerne i partitionstabellen"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Vćlg partitioner der skal formateres"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Led efter beskadigede blokke?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formaterer partitioner"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Opretter og formaterer fil %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Ikke nok swap-plads til at gennemfřre installationen, tilfřj mere"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Leder efter tilgćngelige pakker"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Leder efter pakker som skal opgraderes"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Dit system har ikke nok plads tilbage til en installation eller opgradering "
-"(%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Alting (%dMb)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%d Mb)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Anbefalet (%d Mb)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Vćlg indlćs eller gem pakkevalg pĺ diskette.\n"
-"Formatet er det samme som for auto_install-genererede disketter."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Indlćs fra diskette"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Indlćser fra diskette"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Valg af pakker"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Indsćt en diskette med pakkevalget"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Gem pĺ diskette"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Valgt střrrelse er střrre end tilgćngelig plads"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Installationstype"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Du har ikke valgt nogen gruppe af pakker.\n"
-"Vćlg den minimale installation du řnsker"
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "Med X"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "Med basal dokumentation (anbefalet!)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Virkelig minimal installation (specielt ingen urpmi)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Hvis du har alle cd'erne i listen nedenunder, klik Ok.\n"
-"Hvis du ikke har nogen af disse cd'er, klik Annullér.\n"
-"Hvis kun nogen cd'er mangler, fravćlg dem, og klik sĺ Ok."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cdrom med etikette '%s'"
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Forbereder installationen"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Installerer pakke %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Konfiguration efter installation"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Indsćt opstartsdisketten i diskette-drevet %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Indsćt Opdater moduler-disketten i drev %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Du har nu mulighed for at nedlćse programmel, der bruger kryptering.\n"
-"\n"
-"ADVARSEL:\n"
-"\n"
-"Grundet forskellige krav til programmel der bruger kryptering, og pĺtvunget "
-"af forskellige lokale lovomrĺder, břr kunder og/eller slutbrugere af dette "
-"programmel sikre sig at lokale love fra dit/jeres lokalomrĺde tillader dig/"
-"jer at nedlćse, gemme og/eller bruge dette programmel.\n"
-"\n"
-"Derudover skal kunder og/eller slutbrugere vćre opmćrksomme pĺ ikke at bryde "
-"lokale love fra dit/jeres lokalomrĺde. Skulle en kunde og/eller slutbruger "
-"ikke respektere det lokale omrĺdes love, vil han/de blive udsat for seriřse "
-"sanktioner.\n"
-"\n"
-"Under ingen omstćndigheder kan Mandrakesoft eller deres producenter og/eller "
-"leverandřrer holdes ansvarlig for speciel, indirekte eller tilfćldig skade "
-"(inkluderet, men ikke begrćnset til tab af overskud, forretningsafbrydelser, "
-"tab af kommercielle data og andre pekunićre tab, eventuelle risici og "
-"erstatninger der skal betales i overensstemmelse med retlig beslutning) som "
-"fřlge af brug, besiddelse eller nedlćsning af dette programmel, som kunder "
-"og/eller slutbrugere kunne fĺ adgang til efter at have accepteret denne "
-"aftale.\n"
-"\n"
-"\n"
-"For spřrgsmĺl om denne aftale, vćr venlig at kontakte \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Du har nu mulighed for at hente opdaterede pakker som er blevet udgivet\n"
-"efter distributionen blev gjort tilgćngelig.\n"
-"\n"
-"Du vil fĺ sikkerhedsrettelser eller fejlrettelser, men du skal have en\n"
-"internet-opkobling for at fortsćtte.\n"
-"\n"
-"Řnsker du at installere opdateringerne?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Kontakter Mandrake Linux netsted for at hente listen over tilgćngelige spejle"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Vćlg det spejl hvorfra pakkerne skal hentes"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Kontakter spejlet for at hente listen af tilgćngelige pakker"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Hvad er din tidszone?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Maskin-ur sat til GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatisk tidssynkronisering (ved hjćlp af NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP-server"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Ekstern CUPS server"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Ingen printer"
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "Har du et ISA-lydkort?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "Křr \"sndconfig\" efter installation for at konfigurere dit lydkort"
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Intet lydkort genkendt. Prřv at křre \"harddrake\" efter installation"
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Oversigt"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Mus"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Tidszone"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Printer"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "Internt ISDN-kort"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Lydkort"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV-kort"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Lokale filer"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Sćt root-adgangskode"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Ingen adgangskode"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Dette kodeord er for nemt at gćtte (det skal mindst vćre pĺ %d tegn)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Identifikation"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Autentificering LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP grundlćggende dn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAP-server"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "Autentificering NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS-domćne"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS-server"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"En tilpasset opstartsdiskette lader dig starte Linux systemet op uden at "
-"vćre afhćngig af den normale opstarter. Det kan vćre nyttigt, hvis du ikke "
-"vil installere SILO pĺ dit system - eller hvis et andet operativsystem "
-"fjerner SILO, eller hvis SILO ikke virker med dit maskinel. En tilpasset "
-"opstartsdiskette kan ogsĺ bruges sammen med Mandrakes `rescue image', "
-"hvilket gřr det meget nemmere at reparere systemet i tilfćlde af "
-"systemnedbrud.\n"
-"\n"
-"Hvis du řnsker at lave en opstartsdiskette til dit system, indsćt en "
-"diskette i dit fřrste diskettedrev og tryk 'Ok'."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Fřrste diskette-drev"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Andet diskette-drev"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Spring over"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"En tilpasset opstartsdiskette lader dig opstarte Linux systemet uden at vćre "
-"afhćngig af den normale opstarter. Det kan vćre nyttigt, hvis du ikke vil "
-"installere LILO (eller grub) pĺ dit system - eller hvis et andet "
-"operativsystem fjerner LILO, eller hvis LILO ikke virker med din hardware. "
-"En tilpasset opstartsdiskette kan ogsĺ bruges sammen med Mandrakes `rescue "
-"image', hvilket gřr det meget nemmere at reparere systemet i tilfćlde af "
-"systemnedbrud. \n"
-"Vil du lave en opstartsdiskette til dit system?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-"\n"
-"\n"
-"(ADVARSEL! Du bruger XFS til din root-partition,\n"
-"oprettelse af en opstartsdiskette pĺ en 1.44 Mb diskette vil formentlig\n"
-"mislykkes, fordi XFS krćver en meget stor driver)."
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Der er desvćrre ikke noget tilgćngeligt diskette-drev"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Vćlg det diskette-drev, du vil benytte til at lave boot-disketten"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Indsćt en diskette i %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Oprette opstartsdiskette"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Forbereder opstarter"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Det virker som om du har en OldWorld eller ukendt maskine, yaboot "
-"opstartsindlćseren vil ikke virke for dig. Installationen vil fortsćtte, men "
-"du skal bruge BootX for at starte din maskine."
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Řnsker du at bruge aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Fejl ved installation af aboot, \n"
-"forsřg at gennemtvinge installation selv om dette kan řdelćgge den fřrste "
-"partition?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Installerer systemopstarter"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Installation af opstarter mislykkedes. Den fřlgende fejl opstod:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Du behřver mĺske at ćndre din Ĺben Firmware opstartsenhed for at slĺ "
-"systemstarteren til. Hvis du ikke ser systemstarter-beskeden ved genstart, "
-"sĺ hold Command-Option-O-F nede og indtast:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Skriv sĺ: shut-down\n"
-"Ved nćste opstart burde du se systemstarteren."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Indsćt en tom diskette i drev %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Laver autoinstallations-diskette"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Nogen dele af installationen er ikke fćrdig\n"
-"\n"
-"Er du sikker pĺ du řnsker du at lukke nu?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Tillykke, installationen er fćrdig.\n"
-"Fjern boot-mediet og tryk retur for at genstarte.\n"
-"\n"
-"\n"
-"For information om rettelser til denne udgivelse af Mandrake Linux, se "
-"Errata pĺ:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information om konfigurering af dit system kan du finde i kapitlet om efter-"
-"installation i den Officielle Mandrake Linux Brugervejledning."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Laver autoinstallations-diskette"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"Autoinstallation kan ske fuldautomatisk hvis řnsket. I sĺ tilfćlde vil den "
-"overtage hele harddisken!! (dette er beregnet til at installere pĺ en anden "
-"maskine).\n"
-"\n"
-"Du foretrćkker mĺske at afspille installationen igen\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automatisk"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Afspil igen"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Gem pakke-valg"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux Installation %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> mellem elementer | <Space> vćlger | <F12> nćste skćrm "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu mangler"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "konsolhjćlper mangler"
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Vćlg en fil"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Avanceret"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Basal"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Vent venligst"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Udvid trć"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sammenfold trć"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Skift mellem flad og gruppesorteret"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Dĺrligt valg, prřv igen\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Dit valg? (standard %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Indgange som du skal udfylde:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Dit valg? (0/1, standard '%s') "
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Knap '%s': %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "Řnsker du at klikke pĺ denne knap?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Dit valg? (standard '%s'%s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Der er mange ting at vćlge imellem (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Vćlg det fřrste tal i 10-omrĺdet som du řnsker at redigere,\n"
-"Eller tryk retur for at fortsćtte.\n"
-"Dit valg? "
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Bemćrk, en etikette ćndredes:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Indsend igen"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Tjekkisk (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Tysk"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Spansk"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Finsk"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Fransk"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norsk"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polsk"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Russisk"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Svensk"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Britisk"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Amerikansk"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Albansk"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armensk (gammel)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armensk (skrivemaskine)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armensk (fonetisk)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidiansk (latin)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgisk"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgarsk (fonetisk)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "Bulgarsk (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasiliansk (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Hviderussisk"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Schweizisk (Tysk layout)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Schweizisk (Fransk layout)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Tjekkisk (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Tysk (ingen dřde taster)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Dansk"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (norsk)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (svensk)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estisk"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgisk (russisk layout)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgisk (Latin layout)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Grćsk"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Ungarsk"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Kroatisk"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Israelsk"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Israelsk (Fonetisk)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iransk"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandsk"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italiensk"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japansk 106 taster"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Koreansk tastatur"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latinamerikansk"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litauisk AZERTY (gammel)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litauisk AZERTY (ny)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litauisk \"talrćkke\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litauisk \"fonetisk\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "Lettisk"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Makedonisk"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Hollandsk"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Polsk (polsk layout)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Polsk (polsk layout)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugisisk"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Canadisk (Québec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Russisk (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Russisk (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Russisk (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slovensk"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovakisk (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovakisk (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Serbisk (kyrillisk)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "Tamil"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Thailandsk"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Tajik tastatur"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Tyrkisk (traditionel \"F\" model)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Tyrkisk (moderne \"Q\" model)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukrainsk"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Amerikansk (internaltionalt)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamesisk \"talrćkke\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslavisk (latinsk)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr "Hřjre alt-tast"
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr "Begge taster samtidigt"
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr "Kontrol- og skiftetaster samtidigt"
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr "CapsLock-tast"
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl- og alt-taster samtidigt"
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt og Shift-taster samtidigt"
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr "'Menu'-tast"
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr "Venstre Windows-tast"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr "Hřjre Windows-tast"
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Cirkulćre monteringer %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Fjern de logiske delarkiver fřrst\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"PCMCIA-understřttelse eksisterer ikke lćngere for 2.2-kerner. Brug en 2.4-"
-"kerne."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun-mus"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Standard PS2 mus med hjul"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking-mus"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 knap"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Standard 2-knaps mus"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Standard"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Hjul"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "seriel"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Standard 3-knaps mus"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Serien (seriel)"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Serien"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech mus (seriel, gammel C7 type)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "Busmus"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 knapper"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 knapper"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "ingenting"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Ingen mus"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Test musen"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "For at aktivere musen,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "FLYT PĹ HJULET!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Afslut"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Nćste ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Forrige"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Er dette korrekt?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Lav forbindelse til Internettet"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Den mest almindelige mĺde at forbinde med ADSL er pppoe.\n"
-"Nogen forbindelser bruger pptp, og nogle fĺ bruger DHCP.\n"
-"Hvis du ikke ved noget, vćlg 'brug pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "brug dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "brug pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "brug pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Hvilken DHCP klient řnsker du at bruge?\n"
-"Standard er dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Der blev ikke fundet nogen ethernet netvćrksadapter pĺ dit system.\n"
-"Kan ikke sćtte denne forbindelsetype op."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Vćlg netvćrksgrćnsesnit"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Vćlg hvilken netvćrksadapter du řnsker at bruge til at lave forbindelse til "
-"Internettet med."
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "kunne ikke finde noget netkort"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Konfigurerer netvćrk"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Indtast dit vćrtsnavn hvis du kender det.\n"
-"Nogle DHCP-servere krćver vćrtsnavnet for at fungere.\n"
-"Dit vćrtsnavn břr vćre et fuldt kvalificeret vćrtsnavn,\n"
-"fx 'minpc.mitfirma.dk'."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Vćrtsnavn"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Konfigurér netvćrk"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Eksternt ISDN modem"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Internt ISDN-kort"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Hvad slags type er din ISDN-forbindelse?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Hvilken ISDN-konfigurering foretrćkker du?\n"
-"\n"
-"* Den gamle konfiguration bruger isdn4net. Det har stćrke\n"
-" vćrktřjer, men det er vanskeligt at konfigurere for en nybegynder,\n"
-" og er ikke standardbaseret.\n"
-"\n"
-"' Det nye konfigurationsvćrktřj er enklere at forstĺ,\n"
-" mere standardiseret, men med fćrre vćrktřjer.\n"
-"\n"
-"Vi anbefaler den nye konfiguration.\n"
-"\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Ny konfiguration (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Gammel konfiguration (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN konfiguration"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Vćlg din udbyder.\n"
-" Hvis de ikke er i listen, vćlg Ikke listet"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Europaprotokollen"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Protokol for Europa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protokol for resten af verden"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protokol for resten af verden \n"
-" ingen D-kanal (lejet linje)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Hvilken protokol řnsker du at bruge?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Hvad slags kort har du?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Det ved jeg ikke"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Hvis du har et ISA kort burde vćrdiene i nćste billede vćre rigtige.\n"
-"\n"
-"Hvis du har et PCMCIA kort skal du vide irq og io for kortet.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Afbryd"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Fortsćt"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Hvilket er dit ISDN-kort?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Jeg har opdaget et ISDN PCI-kort, men jeg ved ikke hvilken type. Vćlg et PCI-"
-"kort i nćste skćrmbillede."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Ingen ISDN PCI-kort fundet. Vćlg ét i nćste skćrmbillede."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Angiv hvilken seriel port dit modem er forbundet til."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Opkaldsindstillinger"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Navn pĺ forbindelsen"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Telefonnummer"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Brugernavn"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Skript-baseret"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Terminal-baseret"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Domćnenavn"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Fřrste DNS-server (valgfri)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Anden DNS-server (valgfri)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Du kan lukke forbindelsen til Internettet eller genkonfigurere din "
-"forbindelse."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Du kan genkonfigurere din forbindelse"
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Du har forbindelse til Internettet nu."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Du kan lave forbindelse til Internettet eller omkonfigurere din forbindelse."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Du er ikke forbundet til Internettet nu."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Tilslut"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Afbryd"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Konfigurér forbindelsen"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Internetforbindelse & -konfiguration"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Vi skal nu konfigurere opkoblingen '%s'."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Vi skal nu konfigurere opkoblingen '%s'.\n"
-"\n"
-"\n"
-"Tryk OK for at begynde."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Konfigurér netvćrk"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Da du er i gang med en netvćrksinstallation er dit netvćrk allerede "
-"konfigureret.\n"
-"Klik OK for at beholde din konfiguration, eller annullér for at "
-"omkonfigurere din Internet- og netvćrksforbindelse.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Velkommen til Netvćrkskonfigurations-vejlederen\n"
-"\n"
-"Vi skal til at konfigurere din internet- eller netvćrksforbindelse.\n"
-"Hvis du ikke řnsker at bruge autodetektering, sĺ fravćlg afkrydsningsboksen\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Vćlg profilen der skal konfigureres"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Brug automatisk detektion"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Detekterer enheder..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Normal modemforbindelse"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "Detekteret pĺ port %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN-forbindelse"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "Detekteret %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ADSL opkobling"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "Detekteret pĺ grćnseflade %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Kabelforbindelse"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "Kabelopkobling detekteret"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Lokalnet-konfiguration"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "ethernet-kort detekteret"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Vćlg den opkobling, du řnsker at konfigurere"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Du har konfigureret flere mĺder at koble dig mod internet pĺ.\n"
-"Venligst vćlg den du řnsker at bruger.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Internet opkobling"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Řnsker du at starte din forbindelse ved opstart?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Netvćrks konfiguration"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "Netvćrket skal startes op igen"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Et problem opstod ved genstart af netvćrket: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Tillykke, netvćrks- og internetkonfigurationen er fćrdig.\n"
-"Konfigurationen vil nu blive anvendt pĺ dit system.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Derefter anbefaler vi at du genstarter dit X-miljř for\n"
-"at undgĺ problemer med det ćndrede vćrtsnavn"
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"Problemer indtraf under konfigurationen.\n"
-"Afprřv din forbindelse med net_monitor eller mcc. Hvis din forbindelse ikke "
-"virker, kan du prřve at genstarte konfigurationen."
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"ADVARSEL: Denne enhed er tidligere blevet konfigureret til at lave "
-"forbindelse til Internettet.\n"
-"Ved kun at trykke pĺ OK beholder du den nuvćrende konfiguration.\n"
-"Ćndringer i felterne nedenunder vil overskrive denne konfiguration."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Indtast IP konfigurationen for denne maskine. Hvert felt skal udfyldes\n"
-"med en IP adresse i `dotted-decimal' notation (for eksempel 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigurerer netvćrksenheden %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (drivprogram %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP-adresse"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Netmaske"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Automatisk IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresse skal have formatet 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Indtast domćnenavn, vćrtsnavn og IP adressen for evt. ekstra navne-servere.\n"
-"Dit vćrtsnavn skal vćre et fuldt kvalificeret vćrtsnavn inklusive domćne,\n"
-"f.eks. minpc.mitfirma.dk. Hvis du ikke har nogen ekstra navne-servere,\n"
-"sĺ lad navne-server-felterne vćre blanke."
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS-server"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (fx %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Gateway enhed"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Konfiguration af mellemvćrt (proxy)"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP-proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP-proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Fřlg id for netvćrkskort (nyttigt for bćrbare)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy skal vćre http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy skal vćre ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Internet-konfiguration"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Řnsker du at forsřge at skabe forbindelse til Internettet nu?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Tester din forbindelse..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Systemet er ikke forbundet til Internettet nu."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Af sikkerhedsgrunde vil det blive afbrudt nu."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Det lader ikke til at dit system har forbindelse til Internettet.\n"
-"Prřv at omkonfigurere din forbindelse."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Forbindelses-konfiguration"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Udfyld eller markér feltet nedenunder"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "Kort IRQ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Kort mem (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "Kort IO"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "Kort IO_0"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "Kort IO_1"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Dit personlige telefonnummer"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Navn pĺ udbyder (f.eks. udbyder.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Udbyders telefonnummer"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Udbyder DNS 1 (valgfri)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Udbyder DNS 2 (valgfri)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Vćlg dit land"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Opringningsmĺde"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Opkoblingshastighed"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Opkoblingens tidsudlřb (i sekunder)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Konto-login (brugernavn)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Kodeord for konto"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "montering mislykkedes: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Udvidet partition ikke understřttet pĺ denne platform"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Du har plads tilovers i din partitionstabel, men jeg kan ikke udnytte den.\n"
-"Den eneste lřsning er at flytte dine primćre partitioner, sĺledes at\n"
-"\"hullet\" bliver placeret ved siden af de udvidede partitioner."
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Genskabning fra fil %s mislykkedes: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Fejl i sikkerhedskopien"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Fejl ved skrivning til fil %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Noget slemt sker pĺ dit drev. \n"
-"En test for at tjekke integriteten af data er mislykkedes. \n"
-"Dette betyder at alt pĺ disken vil ende som tilfćldigt snavs"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "skal have"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "vigtigt"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "meget rart"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "rart"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "mĺske"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Dćmon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Lokal printer"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Ekstern printer"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Printer pĺ ekstern CUPS server"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Printer pĺ ekstern lpd server"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Netvćrksprinter (TCP/sokkel)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Printer pĺ SMB/Windows 95/98/NT server"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Printer pĺ en NetWare server"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Indtast en printerenheds-URI"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "kanalisér opgave ind i kommando"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Ukendt model"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Lokale printere"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Eksterne printere"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " pĺ parallelport \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", USB printer \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", multi-funktions-enhed pĺ parallel port \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", multi-funktions-enhed pĺ USB"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", multi-funktions-enhed pĺ HP JetDirect"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", multi-funktions-enhed"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", skriver til %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "pĺ LPD-server \"%s\", printer \"%s\""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP vćrt \"%s\", port %s"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "pĺ Windows-server \"%s\", deling \"%s\""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "pĺ Novell-server \"%s\", printer \"%s\""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", med kommando %s"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Rĺ printer (ingen driver)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(pĺ %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(pĺ denne maskine)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Pĺ CUPS-server '%s'"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Forvalgt)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Vćlg printer-forbindelse"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Hvordan er printeren tilsluttet?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Eksterne CUPS-servere behřver du ikke at konfigurere her: \n"
-"disse printere vil automatisk blive fundet."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-msgid "CUPS configuration"
-msgstr "CUPS-Konfiguration"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-msgid "Specify CUPS server"
-msgstr "Angiv CUPS server"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"Du behřver ikke at konfigurere nogen printere hér for at fĺ adgang til "
-"eksterne CUPS-servere; CUPS-serverne informerer automatisk din maskine "
-"information om deres printere. Alle printere som for řjeblikket er kendt af "
-"din maskine vil vćre opfřrt under \"Eksterne printere\". Nĺr CUPS-serveren "
-"ikke er pĺ dit lokalnetvćrk skal du opgive CUPS-serverens IP-adresse og "
-"eventuelle portnummer for at fĺ printerinformation fra serveren, ellers kan "
-"du lade disse felter vćre blanke."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Normalt bliver CUPS konfigureret automatisk i overensstemmelse med dit "
-"netvćrksmiljř, sĺ du kan fĺ fat i printerne pĺ CUPS-serverne pĺ dit "
-"lokalnetvćrk. Hvis dette ikke virker ordentligt, sĺ deaktivér 'Automatisk "
-"CUPS-konfiguration' og redigér din fil /etc/cups/cupsd.conf selv. Glem ikke "
-"at genstarte CUPS bagefter. (kommando: 'service cups restart')."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP-adressen břr se ud som 192.168.1.20"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Port-nummeret břr vćre et heltal!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "CUPS-serverens IP"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Port"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Automatisk CUPS-konfiguration"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Sřger efter enheder..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Afprřv porte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Tilfřj en ny printer"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Velkommen til vejlederen for printeropsćtning\n"
-"\n"
-"Denne vejleder lader dig installere lokale eller eksterne printere som skal "
-"bruges fra denne maskine, og ogsĺ fra andre maskiner i netvćrket.\n"
-"\n"
-"Den spřrger dig om alle nřdvendige oplysninger til at opsćtte printere og "
-"giver dig adgang til alle tilgćngelige printerdrivere, drivermuligheder og "
-"opkoblingstyper for printere."
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Lokal printer"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Velkommen til vejlederen for printeropsćtning\n"
-"\n"
-"Denne vejleder vil hjćlpe dig med at installere dine printere tilsluttet "
-"denne maskine.\n"
-"\n"
-"Tilslut dine printere til maskinen og tćnd dem. Klik pĺ \"Nćste\" nĺr du er "
-"klar, eller pĺ \"Annullér\" hvis du ikke vil opsćtte dine printere nu.\n"
-"\n"
-"Bemćrk at nogen maskiner kan gĺ ned under den automatiske sřgning efter "
-"printere; slĺ 'Auto-opdagelse af printere' fra for at lave en printer "
-"installation uden auto-sřgning. Brug printerdrakes 'Ekspert-udgave' hvis du "
-"řnsker at opsćtte udskrift pĺ en ekstern printer og Printerdrake ikke lister "
-"denne automatisk."
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Auto-opdagelse af printere"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"Tillykke, din printer er nu installeret og konfigureret!\n"
-"\n"
-"Du kan udskrive med 'Udskriv'-kommandoen i dit program (normalt i 'Filer'-"
-"menuen).\n"
-"\n"
-"Hvis du řnsker at tilfřje, fjerne eller omdřbe en printer, eller hvis du "
-"řnsker at ćndre pĺ standard-indstillingerne (papirbakke, printkvalitet ...), "
-"sĺ vćlg 'Printer' i 'Udstyr'-afsnittet i Mandrake Kontrolcentret."
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Auto-opdagelse af printere"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake er i stand til at automatisk opdage dine lokalt forbundne "
-"parallelle og USB-printere for dig, men bemćrk at pĺ nogen systemer KAN DEN "
-"AUTOMATISKE OPDAGELSE FRYSE DIT SYSTEM OG ENDOG ŘDELĆGGE DINE FILSYSTEMER! "
-"Sĺ gřr det pĺ EGET ANSVAR!\n"
-"\n"
-"Řnsker du virkeligt at fĺ dine printere automatisk opdaget?"
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Udfřr automatisk detektion"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Opsćt printer manuelt"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "Fandt %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Printer pĺ parallel port \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "USB-printer \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Ingen lokal printer fundet! For at installere en printer i hĺnden skal du "
-"indtaste et enhedsnavn/filnavn i inddatalinjen (parallelporte: /dev/lp0, /"
-"dev/lp1 ..., svarende til LPT1:, LPT2: ..., fřrste USB-printer: /dev/usb/"
-"lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Du skal indtaste en enhed eller et filnavn!"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Ingen lokal printer fundet!\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Netvćrksprintere kan kun installeres efter installeringen. Vćlg 'Udstyr' og "
-"dernćst 'Printer' i Mandrake kontrolcentret."
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"For at installere netvćrksprintere skal du klikke pĺ 'Annullér', skifte til "
-"'Ekspert-version' og klikke pĺ 'Tilfřj en ny printer' igen."
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"Den fřlgende printer blev opdaget automatisk. Hvis det ikke er den du řnsker "
-"at opsćtte sĺ indtast et enhedsnavn/filnavn pĺ inddatalinjen"
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"Her er en liste over alle automatisk opdagede printere. Vćlg den printer du "
-"řnsker at opsćtte eller indtast et enhedsnavn/filnavn pĺ inddatalinjen"
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-"Den fřlgende printer blev opdaget automatisk. Konfigurationen af printeren "
-"vil ske fuldstćndigt automatisk. Hvis din printer ikke blev fundet korrekt "
-"eller hvis du foretrćkker en tilpasset printerkonfiguration, sĺ slĺ 'Manuel "
-"konfiguration' til."
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Her er en liste over alle automatisk opdagede printere. Vćlg den printer du "
-"řnsker at opsćtte. Konfigurationen af printeren vil ske fuldstćndigt "
-"automatisk. Hvis din printer ikke blev fundet korrekt eller hvis du "
-"foretrćkker en tilpasset printerkonfiguration, sĺ slĺ 'Manuel konfiguration' "
-"til."
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Angiv hvilken port din printer er forbundet til eller indtast et enhedsnavn/"
-"filnavn pĺ inddatalinjen"
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Angiv hvilken port din printer er forbundet til."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-"(parallelporte: /dev/lp0, /dev/lp1 ..., svarende til LPT1:, LPT2: ..., "
-"fřrste USB-printer: /dev/usb/lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Du skal vćlge eller indtaste en printer/enhed!"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Manuel konfiguration"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-"Er din printer en multi-funktionsenhed fra HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 med skanner)?"
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "Installerer HPOJ-pakke..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Tjekker enhed og konfigurerer HPOJ ..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Installerer SANE-pakke..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Skanner pĺ din HP multi-funktionsenhed"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "Gřr printerport tilgćngelig for CUPS ..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Lćser database over printere ..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Parametre til ekstern lpd"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"For at bruge en ekstern printer, skal du opgive vćrtsnavnet\n"
-"for printerserveren og navnet pĺ printeren pĺ denne server."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Eksternt vćrtsnavn"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Eksternt printernavn"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Eksternt vćrtsnavn mangler"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Det eksterne vćrtsnavn mangler!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT)-printer indstillinger"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"For at skrive til en SMB printer skal du angive vćrtsnavnet pĺ SMB maskinen "
-"(bemćrk at dette navn kan vćre forskelligt fra TCP/IP-navnet!) og muligvis "
-"IP-adressen pĺ printerserveren, sĺ vel som delenavnet for printeren du vil "
-"bruge samt nřdvendig information om brugernavn, adgangskode og arbejdsgruppe."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "SMB-servervćrt"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "SMB-serverens IP"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Dele-navn"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Arbejdsgruppe"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Enten servernavnet eller serverens IP skal angives!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Samba-delenavn mangler!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr "SIKKERHEDSADVARSEL!"
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Du er ved at opsćtte udskrivning til en Windows-konto med adgangskode. "
-"Grundet en fejl i arkitekturen af Sambas klientprogrammel bliver "
-"adgangskoden lagt i klar tekst i Samba-klientens kommandolinje, som bruges "
-"til at sende printjobbet til Windows-serveren. Sĺ det er muligt for enhver "
-"bruger pĺ denne maskine at vise adgangskoden pĺ skćrmen ved at angive "
-"kommandoer som 'ps auxwww'.\n"
-"\n"
-"Vi anbefaler at bruge en af de fřlgende alternativer (i alle tilfćlde skal "
-"du forsikre dig om at kun maskiner fra dit lokalnetvćrk har adgang til din "
-"Windows-server, for eksempel ved hjćlp af en brandmur):\n"
-"\n"
-"Brug en konto uden adgangskode pĺ din Windows-server, sĺsom 'GUEST'-kontoen "
-"eller en speciel konto som kun anvendes til udskrift. Fjern ikke "
-"adgangskodebeskyttelsen fra en personlig konto eller en administrator-"
-"konto.\n"
-"\n"
-"Opsćt din Windows-server sĺ printeren er tilgćngelig under LPD-protokollen. "
-"Opsćt dernćst udskrift fra denne maskine med '%s'-opkoblingstypen i "
-"Printerdrake.\n"
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Opsćt din Windows-server til at gřre printeren tilgćngelig under IPP-"
-"protokollen, og opsćt udskrift fra denne maskine med '%s'-opkoblingstypen i "
-"Printerdrake.\n"
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"Forbind din printer til en Linux-server og lad dine Windows-maskiner "
-"tilslutte sig til den som klienter.\n"
-"\n"
-"Řnsker du virkelig at fortsćtte med at opsćtte din printer som du gřr nu?"
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "NetWare printer-parametre"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"For at skrive til en NetWare printer skal du angive navnet pĺ NetWare "
-"printerserveren (bemćrk at dette navn kan vćre forskelligt fra TCP/IP-"
-"navnet!) sĺvel som křnavnet for den printer du vil benytte samt om "
-"nřdvendigt et brugernavn og en adgangskode."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Printer-server"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Printerkř-navn"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "NCP-servernavn mangler!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "NCP-křnavn mangler!"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Sokkel-printer-parametre"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"For at skrive til en TCP eller sokkel-printer skal du angive vćrtsnavnet pĺ "
-"printeren, og eventuelt portnummer. Pĺ HP JetDirect-servere er portnummeret "
-"normalt 9100, pĺ andre servere varierer det. Tjek manualen for dit udstyr."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "printer-vćrtsnavn"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "printer-vćrtsnavn mangler!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Printer-enheds URI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Du kan direkte opgive URI til printeren. URIen skal vćre i henhold til enten "
-"CUPS- eller Foomatic-standarden. Bemćrk at ikke alle typer URIer "
-"understřttes af alle kř-behandlere."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "En korrekt URI skal opgives!"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Alle printere behřver et navn (f.eks. 'printer').\n"
-"Beskrivelsen og lokaliseringsfelterne behřver ikke \n"
-"udfyldes. De er kommentarer til brugerne."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Navn pĺ printer"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beskrivelse"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Placering"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Forbereder printerdatabase: ..."
-
-#: ../../printerdrake.pm_.c:1112
-msgid "Your printer model"
-msgstr "Din printermodel"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Printerdrake har sammenlignet modelnavnet fra den automatiske genkendelse af "
-"printeren med modellerne listet i dens printerdatabase for at finde den "
-"bedste match. Dette valg kan vćre forkert, isćr nĺr din printer slet ikke er "
-"listet i databasen. Sĺ tjek om valget er korrekt og klik \"Modellen er "
-"korrekt\" hvis den er, og hvis ikke sĺ klik \"Vćlg model manuelt\" sĺ du kan "
-"udvćlge din printermodel manuelt pĺ den nćste skćrm.\n"
-"\n"
-"Som din printer har Printerdrake fundet:\n"
-"\n"
-"%s"
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-msgid "The model is correct"
-msgstr "Modellen er korrekt"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-msgid "Select model manually"
-msgstr "Vćlg model manuelt"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Valg af printermodel"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Hvilken printermodel har du?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Tjek venligst om Printerdrake udfřrte \n"
-"autodetekteringen af din printermodel\n"
-"korrekt. Opsřg den korrekte model i listen\n"
-"nĺr markřren stĺr pĺ en forkert model, eller\n"
-"pĺ 'Rĺ printer'."
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Hvis din printer ikke er listet, sĺ vćlg en kompatibel (se printermanual) "
-"eller en lignende printer."
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "OKI konfiguration af winprinter"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Du konfigurerer en OKI laser-winprinter. Disse printere bruger en meget "
-"speciel kommunikationsprotokol og derfor virker de kun nĺr de er forbundet "
-"til den fřrste parallelle port. Nĺr din printer er forbundet til en anden "
-"port eller til en printserverboks, sĺ forbind printeren til den fřrste "
-"parallelle port fřr du udskriver en prřveside. Ellers vil printeren ikke "
-"virke. Din opsćtning af forbindelsestype vil blive ignoreret af driveren."
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjet konfiguration"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Printerdriverne til inkjet som leveres af Lexmark understřtter kun lokale "
-"printere, ikke printere pĺ eksterne maskiner eller printserverbokse. Forbind "
-"din printer til en lokal port eller konfigurér den pĺ den maskine, den er "
-"forbundet til."
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-"For at kunne udskrive pĺ din Lexmark inkjet fra denne konfigurering skal du "
-"bruge inkjet printerdriverne leveret af Lexmark (http://www.lexmark.com/). "
-"Gĺ til webstedet i USA og klik pĺ 'Drivers'-knappen. Vćlg sĺ din model og "
-"derefter 'Linux' som operativsystem. Driverne kommer som RPM-pakker eller "
-"skal-skripter med interaktiv grafisk installation. Du behřver ikke lave "
-"denne konfiguration via de grafiske grćnseflader. Annullér direkte efter "
-"licensaftalen. Udskriv derefter justeringsider for skrivehovedet med "
-"'lexmarkmaintain', og justér opsćtningen af justeringen af hovedet med dette "
-"program."
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Standardprinterens indstillinger\n"
-"\n"
-"Du břr tjekke at sidestřrrelsen og blćktypen/udskriftstilstanden (hvis til "
-"stede) og ogsĺ konfigurationen af laserprinterudstyr (hukommelse, duplex-"
-"enhed, ekstra bakker) er sat rigtigt. Bemćrk at en meget god "
-"udskriftskvalitet kan gřre udskriften betydeligt langsommere."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Valg %s skal vćre et helt tal!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Valg %s skal vćre et tal!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Valg %s er udenfor omrĺde!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Řnsker du fremover at bruge printeren \"%s\"\n"
-"som standard?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Testsider"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Vćlg testsiderne du řnsker at udskrive.\n"
-"Bemćrk: fototestsiden kan tage ret lang tid at skrive ud, og pĺ "
-"laserprintere med for lidt hukommelse vil den mĺske ikke skrives ud i det "
-"hele taget. Som regel vil det vćre nok at udskrive standard-testsiden."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Ingen testsider"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Udskriv"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Standard testside"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Alternativ testside (letter)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Alternativ testside (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Fototestside"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "Udskriv ikke nogen testsider"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Udskriver testsider..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Testsider er blevet sendt til printeren.\n"
-"Dette kan tage lidt tid fřr printeren starter.\n"
-"Udskrivningsstatus:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Testsider er sendt til printeren.\n"
-"Det kan tage lidt tid fřr printeren starter.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "Fungerer det korrekt?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Rĺ printer"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"For at skrive en fil fra kommandolinjen (terminalvinduet) kan du enten bruge "
-"programmet '%s <fil>' eller et grafisk printervćrktřj: 'xpp <fil>' eller "
-"'kprinter <fil>'. De grafiske vćrktřjer lader dig vćlge printeren og ćndre "
-"indstillingerne pĺ en nem mĺde.\n"
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Disse kommandoer kan du ogsĺ bruge fra 'udskrivningskommando'-feltet i "
-"udskriftsdialogerne i mange programmer, men lad vćre med at angive filnavnet "
-"her, fordi filen der skal udskrives leveres af programmet.\n"
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"'%s'-kommandoen tillader ogsĺ ćndring af indstillingsmulighederne for et "
-"bestemt udskriftsjob. Tilfřj blot de řnskede indstillinger til "
-"kommandolinjen, fx '%s <fil>\". "
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"Hvilke muligheder der er for den aktuelle printer kan du enten lćse pĺ "
-"listen vist nedenfor, eller klikke pĺ knappen 'liste med printermuligheder'%"
-"s.\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Her er en liste over tilgćngelige printmuligheder for den aktuelle printer:\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
-"kommandoen '%s <fil>'.\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Denne kommando kan du ogsĺ bruge fra 'udskrivningskommando'-feltet i "
-"udskriftsdialogerne i mange programmer, men lad vćre med at angive filnavnet "
-"her, fordi filen der skal udskrives leveres af programmet.\n"
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"For at fĺ en liste af tilgćngelige muligheder for den aktuelle printer kan "
-"du klikke pĺ knappen 'Liste med printermuligheder'."
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
-"kommandoen '%s <fil>' eller '%s <fil>'.\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Du kan ogsĺ bruge den grafiske grćnseflade 'xpdq' til at sćtte "
-"valgmuligheder og behandle udskriftsopgaver.\n"
-"Hvis du bruger KDE som skrivebordsmiljř, har du en 'panik-knap', en ikon pĺ "
-"skrivebordet, benćvnt med 'STOP printer!', som stopper alle udskriftsopgaver "
-"řjeblikkeligt nĺr du klikker pĺ den. Dette er fx nyttigt hvis papiret "
-"krřller sammen.\n"
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"'%s'- og '%s'-kommandoerne tillader ogsĺ ćndring af indstillingsmulighederne "
-"for et bestemt udskriftsjob. Tilfřj blot de řnskede indstillinger til "
-"kommandolinjen, fx '%s <fil>'.\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Luk"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Udskriver eller skanner pĺ '%s'"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Udskriver pĺ printeren '%s'"
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Liste med printermuligheder"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Din HP-multifunktionsenhed blev konfigureret automatisk til at kunne skanne. "
-"Nu kan du skanne med 'scanimage' ('scanimage -d hp:%s' for at angive "
-"skanneren hvis du har mere end én) fra kommandolinjen eller med den grafiske "
-"grćnseflade 'xscanimage' eller 'xsane'. Hvis du bruger GIMP kan du ogsĺ "
-"skanne ved at vćlge det passende punkt i menuen 'Filer/Hent'. Brug ogsĺ 'man "
-"scanimage' og 'man sane-hp' pĺ kommandolinjen for at fĺ mere information\n"
-"\n"
-"Brug ikke \"scannerdrake\" pĺ denne enhed!"
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Din HP-multifunktionsenhed blev konfigureret automatisk til at kunne skanne. "
-"Nu kan du skanne med 'ptal-hp %s scan ...' fra kommandolinjen. Skanning via "
-"en grafisk grćnseflade eller fra GIMP er endnu ikke understřttet for din "
-"enhed. Du kan finde mere information i filen \"/usr/share/doc/hpoj-0.8/ptal-"
-"hp-scan.html\" pĺ dit system. Hvis du har en HP LaserJet 1100 eller 1200 kan "
-"du kun skanne nĺr du har skannermuligheden installeret pĺ udstyret.\n"
-"\n"
-"Brug ikke \"scannerdrake\" pĺ denne enhed!"
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Lćser printerdata ..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Overfřr printerkonfiguration"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Du kan kopiere printerkonfigurationen du har sat op for křserveren %s til %"
-"s, din nuvćrende křserver. Al konfigurationsdata (printernavn, beskrivelse, "
-"opkoblingstype og standardindstillinger) bliver overtaget, men ikke "
-"opgaver.\n"
-"Ikke alle křer kan overfřres pĺ grund af:\n"
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS understřtter ikke printere pĺ Novellservere eller printere som sender "
-"dataene ind i en frit-formet kommando.\n"
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ understřtter kun lokale printere, eksterne LPD printere, og Sokkel/TCP "
-"printere.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD og LPRng understřtter ikke IPP printere.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Desuden kan křer lavet med dette program eller \"foomatic -configure\" ikke "
-"overflyttes."
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Printere konfigureret med PPD-filerne, som producenten har lavet, eller med "
-"CUPS egne drivere kan heller ikke overflyttes."
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Vćlg printerene som du vil overflytte og klik\n"
-"\"Overfřr\"."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Overfřr ikke printere"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Overfřr"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"En printer med navnet \"%s\" eksisterer allerede pĺ %s. \n"
-"Klik \"Overfřr\" for at overskrive.\n"
-"Du kan ogsĺ give et nyt printernavn, eller overspringe denne printer."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Navn pĺ printer břr kun indeholde bogstaver, tal og understregen _"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Printeren \"%s\" eksisterer allerede,\n"
-"řnsker du virkelig at overskrive dens konfiguration?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Nyt printernavn"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "Overfřrer %s ..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Du har overfřrt din tidligere standard-printer '%s', skal den ogsĺ vćre "
-"standard-printer under det nye printersystem %s?"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Opfrisker printerdata ..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Konfiguration af en ekstern printer"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Starter netvćrk ..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Konfigurér netvćrket nu"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "Netvćrksfunktionalitet ikke konfigureret"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Du er ved at konfigurere en ekstern printer. Dette krćver en virkende "
-"netvćrksadgang, men dit netvćrk er endnu ikke konfigureret. Hvis du vil "
-"fortsćtte uden en netvćrkskonfiguration, vil du ikke kunne bruge printeren "
-"som du konfigurerer nu. Hvordan řnsker du at fortsćtte?"
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Fortsćt med konfigurering af netvćrk"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-"Netvćrksopsćtningen lavet under installationen kan ikke startes nu. Tjek om "
-"netvćrket bliver tilgćngeligt efter opstart af dit system, og ret "
-"konfigurationen med Mandrake Kontrolcenter, afsnittet 'Netvćrk og internet'/ "
-"'Forbindelse', og konfigurér derefter printeren ogsĺ med Mandrake "
-"Kontrolcenter, afsnittet om 'Maskinel'/'Printer'"
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Netvćrksadgangen křrte ikke og kunne ikke startes. Tjek din konfiguration og "
-"dit udstyr. Prřv derefter at konfigurere din eksterne printer igen."
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Genstarter printsystemet ..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "hřj"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "paranoid"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Installerer et printersystem pĺ sikkerhedsniveauet %s"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Du er ved at installere printsystemet %s pĺ et system křrende pĺ "
-"sikkerhedsniveau %s.\n"
-"\n"
-"Dette printsystem křrer som en dćmon (baggrundsproces) som venter pĺ "
-"printeropgaver og behandler dem. Denne dćmon er ogsĺ tilgćngelig for "
-"eksterne maskiner via netvćrket, og derfor er det et muligt angrebspunkt. "
-"Derfor bliver kun nogle fĺ udvalgte dćmoner startet op som standard i dette "
-"sikkerhedsniveau.\n"
-"\n"
-"Řnsker du virkelig at konfigurere udskrivning pĺ denne maskine?"
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Starter printsystemet ved opstart"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Printsystemet (%s) vil ikke blive startet automatisk, nĺr maskinen startes "
-"op.\n"
-"Det er muligt at den automatiske opstart blev slĺet fra ved ćndring til et "
-"hřjere sikkerhedsniveau, fordi printsystemet er et muligt angrebspunkt.\n"
-"\n"
-"Řnsker du at have den automatiske opstart af printsystemet slĺet til igen?"
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Tjekker installeret programmel..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "Fjerner LPRng..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "Fjerner LPD..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Vćlg printerkř-behandler"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Hvilket printersystem (spooler) řnsker du at bruge?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Konfigurerer printer '%s'..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "Installerer Foomatic..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Printer-muligheder"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "Forbereder PrinterDrake ..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-msgid "Configuring applications..."
-msgstr "Konfigurerer programmer..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Vil du gerne konfigurere udskrivning?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Printsystem: "
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"De fřlgende printere er konfigureret. Dobbeltklik pĺ en printer for at ćndre "
-"dens indstillinger; for at gřre den til standard-printer: for at se "
-"information om den; eller for at gřre en ekstern CUPS-printer tilgćngelig "
-"for Star Office/OpenOffice.org.org."
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"De fřlgende printere er konfigureret. Dobbeltklik pĺ en printer for at ćndre "
-"dens indstillinger, for at gřre den til standard-printer, eller for at se "
-"information om den."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Opfrisk printerliste (for at vise alle tilgćngelige eksterne CUPS-printere)"
-
-#: ../../printerdrake.pm_.c:2464
-msgid "Change the printing system"
-msgstr "Ćndr printsystemet"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Normal udgave"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Řnsker du at konfigurere en anden printer?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Ćndr printerkonfiguration"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Printer %s\n"
-"Hvad řnsker du at forandre pĺ, pĺ denne printer?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "Gřr det!"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Printeropkoblingstype"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Printernavn, beskrivelse, sted"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Printerproducent, model, driver"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Printerproducent, model"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Sćt printeren som standard-printer"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Tilfřj denne printer til Star Office/OpenOffice.org.org"
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Fjern denne printer fra Star Office/OpenOffice.org.org"
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Udskriver testsider"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Véd hvordan denne printer bruges"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Fjern printer"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Fjerner gammel printer \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Standard printer"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Printeren '%s' er nu sat som standard-printer."
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Tilfřjer printer til Star Office/OpenOffice.org.org"
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr "Printeren \"%s\" blev tilfřjet til Star Office/OpenOffice.org.org."
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-"Kunne ikke tilfřje printeren \"%s\" til Star Office/OpenOffice.org.org."
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Fjerner printer fra Star Office/OpenOffice.org.org"
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr "Printeren \"%s\" blev fjernet fra Star Office/OpenOffice.org.org."
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "Kunne ikke fjerne printeren \"%s\" fra Star Office/OpenOffice.org.org."
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Řnsker du virkelig at fjerne printeren \"%s\"?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Fjerner printer \"%s\" ..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Konfiguration af proxy (mellemvćrt)"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Velkommen til programmet for proxy-konfigurering.\n"
-"\n"
-"Her vil du kunne opsćtte dine http- og ftp-proxyer\n"
-"med eller uden brugernavn og adgangskode\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Udfyld venligst oplysningerne om http-proxy\n"
-"Lad det vćre blankt hvis du ikke řnsker en http-proxy"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "port"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "Url burde begynde med 'http:'"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Port-delen břr vćre numerisk"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Udfyld venligst oplysningerne om ftp-proxy\n"
-"Lad det vćre blankt hvis du ikke řnsker en ftp-proxy"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Url burde begynde med 'ftp:'"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Indtast brugernavn og adgangskode pĺ proxy, hvis nřdvendigt.\n"
-"Lad det vćre blankt hvis du ikke řnsker brugernavn/adgangskode"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "brugernavn"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "adgangskode"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "genindtast adgangskode"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Adgangskoderne stemmer ikke overens. Prřv igen!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Kan ikke tilfřje en partition til _formatéret_ RAID md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Kan ikke skrive filen %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid fejlede"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid fejlede (mĺske mangler raidtools?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Ikke nok partitioner til at benytte RAID level %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Start ALSA (Advanced Linux Sound Architecture) lydsystemet"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron en periodisk kommando planlćgger"
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd bruges til at overvĺge batteristatus og skrive log til syslog.\n"
-"Den kan ogsĺ bruges til at lukke maskinen nĺr batteriet er pĺ lav."
-
-#: ../../services.pm_.c:18
-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 ""
-"Křrer planlagte kommandoer med 'at' kommandoen pĺ tiden specificeret da 'at' "
-"blev křrt, og křrer batch kommandoer nĺr den gennemsnitlige systembelastning "
-"er lav nok"
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron er et standard UNIX program der křrer bruger-specifikke programmer pĺ "
-"planlagte tidspunkter. Vixie cron tilfřjer en del forbedringer til den "
-"basale UNIX cron, inklusive bedre sikkerhed og stćrkere "
-"konfigurationsmuligheder."
-
-#: ../../services.pm_.c:23
-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 tilfřjer muse-support til tekst-baserede Linux applikationer sĺsom "
-"Midnight Commander. Den tillader muse-baseret kopiér-og-sćtind operationer "
-"pĺ konsollen og inkluderer support for pop-op-menuer i konsollen."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake křrer en sřgning efter maskinel, og kan konfigurere nyt/ćndret "
-"maskinel."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr "Apache er en webserver. Den bruges til at betjene HTML-filer og CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Internet superserver-dćmonen (kaldet inetd) starter forskellige internet-"
-"tjenester efter behov. Den er ansvarlig for at starte tjenester som telnet, "
-"ftp, rsh og rlogin. Hvis inetd deaktiveres, deaktiveres alle de tjenester, "
-"den er ansvarlig for."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Start pakkefiltrering for Linux kerne 2.2 serien for at opsćtte en brandmur "
-"til at beskytte din maskine mod netvćrksangreb."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Denne pakke indlćser den valgte tastatur-tabel, som valgt i /etc/sysconfig/"
-"keyboard. Dette kan vćlges i kbdconfig programmet. Dette břr vćre slĺet til "
-"pĺ de fleste maskiner."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Automatisk regenerering af kernehoved i /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "automatisk opdagelse og konfigurering af maskinel ved opstart."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf vil nogen gange arrangere udfřrelse af forskellige opgaver ved "
-"opstart for at vedligeholde systemkonfigurationen."
-
-#: ../../services.pm_.c:43
-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 er printer-dćmonen som er nřdvendig for at lpr virker.\n"
-"Den er basalt en server der hĺndterer udskrifts-opgaver."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtuel Server, brugt til at bygge en server med hřj ydelse og\n"
-"tilgćngelighed."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) er en domćne-navneserver (DNS) der bruges til opslag af IP-"
-"adresser for vćrtsnavne."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Monterer og afmonterer alle netvćrks filsystemer (NFS), SMB (LanManager/"
-"Windows) og NCP (NetWare) monterings-stier"
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktiverer/deaktiverer alle netvćrks-kort som er konfigureret\n"
-"til at starte ved opstart"
-
-#: ../../services.pm_.c:52
-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 er en populćr protokol til fildeling over TCP/IP netvćrk.\n"
-"Denne tjeneste giver NFS-serverfunktionalitet, som konfigureres gennem /etc/"
-"exports filen"
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS er en populćr protokol til fildeling over TCP/IP\n"
-"netvćrk. Denne service giver NFS fillĺsnings funktionalitet"
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Aktiverer automatisk numlock-tast i konsol og XFree ved\n"
-"opstart."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Střtter OKI 4w og kompatible winprintere."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA understřttelse er normalt til at understřtte ting som ethernet og "
-"modemer pĺ bćrbare. Den vil ikke blive startet medmindre den er "
-"konfigureret, sĺ det er sikkert at have den installeret pĺ maskiner der ikke "
-"har behov for den."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Portmapper hĺndterer RPC tilslutninger, som bliver brugt af protokoller som "
-"NFS og NIS. Portmap serveren skal křre pĺ maskiner som bruger protokoller "
-"der udnytter RPC mekanismen"
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix er en transport-agent for post, som bruges af programmer der flytter "
-"post fra en maskine til en anden."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Gemmer og henter systemets entropipřl for en hřjre kvalitet\n"
-"ved generering af tilfćldige tal."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Tilordn rĺ enheder til blokenheder (som harddisk-\n"
-"partitioner) til brug af applikationer som Oracle"
-
-#: ../../services.pm_.c:71
-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 dćmonen giver mulighed for automatisk IP rutetabel opdatering via RIP "
-"protokollen. RIP kan bruges til smĺ netvćrk, men nĺr det kommer til mere "
-"komplekse netvćrk er der behov for en mere kompleks protokol."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat protokollen tillader brugere pĺ et netvćrk at hente systeminformation "
-"fra enhver maskine pĺ dette netvćrk."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"rusers protokollen tillader brugere pĺ et netvćrk a identificere\n"
-"hvem der er logget pĺ andre maskiner"
-
-#: ../../services.pm_.c:78
-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 protokollen tillader eksterne brugere at hente en liste over alle "
-"brugere der er logget ind pĺ en maskine, der křrer rwho dćmonen (minder om "
-"finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Start lydsystemet pĺ din maskine"
-
-#: ../../services.pm_.c:81
-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 er en facilitet som mange dćmoner bruger til log beskeder\n"
-"Det er en god idé altid at křre syslog"
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Indlćs driverne for dine usb-enheder."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Starter X-font serveren (dette er obligatorisk for at XFree skal křre)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Vćlg hvilke tjenester der skal startes automatisk ved opstart"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Printning"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Fildeling"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "System"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Ekstern administration"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Databaseserver"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Tjenester: %d aktiverede for %d registrerede"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Tjenester"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "křrer"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "stoppet"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Tjenester og dćmoner"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Beklager, der er ingen ekstra\n"
-"information om denne tjeneste."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Ved opstart"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Start"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Stop"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Tak fordi du valgte Mandrake Linux 8.2"
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr "Velkommen til en verden af ĺben kildekode"
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-"MandrakeSofts succes er baseret pĺ princippet om frit programmel. Dit nye "
-"operativsystem er resultatet af et samarbejde i det verdensomspćndende Linux-"
-"samfund"
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "Vćr med i det frie programmels verden"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-"Kom til at kende Ĺben Kildekode-samfundet og bliv medlem. Lćr, undervis og "
-"hjćlp andre ved at vćre med i de mange diskussionsfora som du finder pĺ "
-"vores 'Samfunds'-netsider."
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet og beskeder"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-"Mandrake Linux 8.2 giver dig det bedste programmel til at fĺ adgang til alt "
-"hvad internettet har at tilbyde. Surf pĺ nettet og se animationer med "
-"Mozilla og Konqueror, udveksl post og organiser dine personlige "
-"informationer med Evolution og Kmail, og meget mere."
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedie og Grafik"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-"Mandrake Linux 8.2 vil kunne presse din mulitimediemaskine til det yderste! "
-"Brug det nyeste programmel til at afspille musik og lydfiler, redigér og "
-"organiser dine billeder eller foto, se tv, og videoer, og meget mere"
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Udvikling"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-"Mandrake Linux 8.2 er den ultimative udviklingsplatform. Opdag styrken i GNU "
-"gcc-oversćtteren og de bedste Ĺben Kildekode-udviklingsmiljřer"
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Mandrake Kontrolcenter"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-"Mandrake Linux 8.2 kontrolcenter er et samlet sted til fuldt ud at tilpasse "
-"og konfigurere dit Mandrake-system"
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "Brugergrćnseflader"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-"Mandrake Linux tilbyder at vćlge mellem 11 forskellige grafiske "
-"skrivebordsmiljřer og vindueshĺndteringer, inklusive GNOME 1.4, KDE 2.2.2, "
-"Window Maker og resten"
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Serverprogrammel"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-"Lav din maskine om til en stćrk server med bare nogen fĺ klik med musen: "
-"Webserver, post, brandmur, ruter, fil- og print-server, ..."
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Spil"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-"Mandrake Linux 8.2 tilbyder det bedste i Ĺben Kildekode-spil - arkade, kort, "
-"sport, action, strategi, ..."
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-"Har du lyst til at lćre Linux nemt, hurtigt og gratis? MandrakeSoft tilbyder "
-"gratis trćning i Linux, sĺ vel som en mĺde at afprřve dine fremskridt, via "
-"MandrakeCampus - vores trćningscenter pĺ nettet"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-"Kvalitetssupport fra Linux-samfundet, og fra MandrakeSoft, er lige om "
-"hjřrnet! Og hvis du allerede er en Linux-veteran kan du blive en ekspert og "
-"dele ud af din viden pĺ vores support-netsted"
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-"Vores konsulenter er klar for ethvert af jeres IT-projekter til at analysere "
-"jeres krav og tilbyde en tilpasset lřsning. Drag fordel af MandrakeSofts "
-"udstrakte erfaring som Linux-producent til at fremkomme med et ćgte IT-"
-"alternativ for jeres organisation."
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-"Et komplet udvalg af Linux-lřsninger, sĺ vel som specialtilbud pĺ vores "
-"produkter og godbidder, er tilgćngelige i vores e-butik"
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-"For yderligere information om MandrakeSofts professionelle tjenester og "
-"kommercielle tilbud kan du se pĺ den fřlgende netside:"
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Installerer pakker..."
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Jeg kan ikke lćse din partitionstabel, den er for řdelagt :(\n"
-"Jeg vil forsřge mig med at slette de beskadigede partitioner"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Fejl!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Jeg kan ikke finde filen '%s' som jeg behřver."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Autoinstallationskonfigurering"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Du er ved at konfigurere en automatisk installationsdiskette. Denne mulighed "
-"er lidt farlig, og mĺ bruges med forsigtighed.\n"
-"\n"
-"Med denne mulighed vil du igen kunne křre installationen du gennemfřrte pĺ "
-"denne maskine, med muligheden for at selv kunne ćndre pĺ nogen af "
-"indstillingerne.\n"
-"\n"
-"For maksimal sikkerhed vil partitioneringen og formateringen aldrig blive "
-"gennemfřrt automatisk, uanset hvad du valgte under installationen.\n"
-"\n"
-"Řnsker du at fortsćtte?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Konfiguration af automatiske skridt"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Vćlg for hvert skridt om det skal vćre som under installationen, eller "
-"manuelt"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Velkommen.\n"
-"\n"
-"Parametrene for autokonfigurationen kan ses i afsnittene til venstre"
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Tillykke!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Disketten er blevet genereret.\n"
-"Du kan nu gennemfřre installationen igen."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Autoinstallation"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Tilfřj et element"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Fjern det sidste element"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Rapport \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Dćmon-Rapport\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Rapportdetaljer\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "total fremdrift"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "Sikkerhedskopiér systemfiler..."
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "Sikkerhedskopifiler for disk..."
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "Sikkerhedskopiér brugerfiler..."
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Fremdrift for sikkerhedskopiering af disk..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Sikkerhedskopiér andre filer..."
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"filliste sending via FTP: %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler "
-"via FTP.\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Fejl ved afsendelse af post. \n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "Valg af filer"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr "Vćlg filerne eller katalogerne og klik pĺ 'Tilfřj'"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Markér alle muligheder som du behřver.\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Disse valgmuligheder kan sikkerhedskopiere og genskabe alle filer i dit /etc "
-"katalog.\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Lav sikkerhedkopi af dine systemfiler. ( /etc kataloget)"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Medtag ikke kritiske filer (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Med denne valgmulighed vil du vćre i stand til at kunne genskabe\n"
-"enhver version af dit /etc katalog."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr "Markér alle brugere som du vil have med i din sikkerhedskopi."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "Medtag ikke cache for netlćser"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Fjern valgte"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "Brugere"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Brug FTP forbindelse til sikkerhedskopiering"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Indtast vćrtsnavn eller IP."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-"Indtast kataloget hvori\n"
-" sikkerhedskopien skal lćgges pĺ denne maskine."
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Indtast dit brugernavn"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Indtast din adgangskode"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Husk denne adgangskode"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP forbindelse"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Sikker forbindelse"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "Brug CD/DVDROM til sikkerhedskopiering"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Vćlg din cd-plads"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "Markér om du bruger et CDRW-medie"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Markér om du vil slette din CDRW fřr ny skrivning"
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Markér om du řnsker at medtage\n"
-" installeringsopstart pĺ din cd."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Indtast din CD-brćnders enhedsnavn\n"
-" fx: 0,1,0"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "brug bĺnd til sikkerhedskopieringen"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "Indtast endhedsnavnet der skal bruges til sikkerhedskopiering"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Indtast den maksimale střrrelse\n"
-" tilladt for Drakbackup"
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Indtast kataloget der skal gemmes:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Brug kvoter for sikkerhedskopieringsfiler"
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "Netvćrk"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "Diskdrev / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "timeligt"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "dagligt"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "ugentligt"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "mĺnedligt"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "Brug dćmon"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"Vćlg tidsinterval mellem\n"
-"hver sikkerhedskopiering"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"Vćlg mediet for\n"
-"sikkerhedskopiering."
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Brug diskdrev med dćmon"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Brug FTP med dćmon"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Forsikr dig gerne at cron-dćmonen er med i dine tjenester."
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "Send epost-rapport efter hver sikkerhedskopiering til:"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "Hvad"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "Hvor"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "Hvornĺr"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "Flere muligheder"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup konfiguration"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Vćlg hvor du řnsker at sikkerhedskopiere"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "pĺ diskdrev"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "over netvćrk"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Vćlg hvad du vil sikkerhedkopiere"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "Lav sikkerhedskopi af system"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "Lav sikkerhedskopi af brugere"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Hĺndpluk bruger"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Kilder for sikkerhedskopi: \n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Systemfiler:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Brugerfiler:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Andre filer:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- Gem til diskdrev pĺ stien: %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- Gem via FTP pĺ vćrt : %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t brugernavn: %s\n"
-"\t\t pĺ sti: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Muligheder:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tMedtag ikke systemfiler\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tSikkerhedskopiering bruger tar og bzip2\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tSikkerhedskopiering bruger tar og gzip\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- Dćmon (%s) indeholder:\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t-Diskdrev.\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-cdrom.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Netvćrk via FTP.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Netvćrk via SSH.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Ingen konfiguration, klik pĺ Vejleder eller Avanceret.\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Liste over data som skal genskabes:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Liste over data der er řdelagt:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "Afmarkér eller fjern det gerne nćste gang."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "Sikkerhedskopifiler er řdelagte"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " Alle dine valgte data er blevet "
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " genskabt uden fejl pĺ %s "
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " Genskab konfiguration "
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "O.k. at genskabe de andre filer."
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "Brugerliste at genskabe (kun den nyeste dato per bruger er vigtig)"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "Lav sikkerhedskopi af systemfiler fřr:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "Vćlg dato for genskabning"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Brug disk til sikkerhedskopiering"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Genskab fra disk."
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "Indtast kataloget hvor sikkerhedskopier gemmes"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Vćlg et andet medie at genskabe fra"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Andet medie"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "Genskab system"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Genskab brugere"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Genskab andet"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "vćlg sti at genskabe (i stedet for / )"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Lav ny sikkerhedskopi fřr genskabning (kun for inkrementalbackupper)."
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Fjern brugerkataloger fřr genskabning."
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Genskab alle sikkerhedskopier"
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "Tilpasset genskabelse"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Hjćlp"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "Forrige"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Gem"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Opbyg sikkerhedskopien"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Genskab"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Nćste"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Lav sikkerhedskopieringen fřr genskablesen af den...\n"
-" eller efterse at stien til gemning er korrekt."
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"Fejl ved sendmail.\n"
-" din rapport blev ikke sendt\n"
-" Konfigurér venligst sendmail"
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Pakkeliste til installation"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Fejl ved sending af fil via FTP.\n"
-" Ret venligst din FTP-konfiguration."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Udvćlg de data du vil genskabe..."
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Vćlg medie for sikkerhedskopi..."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Vćlg data for sikkerhedskopi..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"ingen konfigurationsfil fundet \n"
-"klik pĺ Vejleder eller Avanceret."
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "Under udvikling ... vent venligst:-)"
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "Lav sikkerhedskopi af systemfiler"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "Lav sikkerhedskopi af brugerfiler"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Lav sikkerhedskopi af andre filer"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Total fremdrift"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "Filer sendes via FTP"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Sender filer..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "Dataliste som skal medtages pĺ cdrom."
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Indtast hastighed pĺ cd-brćnder"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Indtast navnet pĺ enheden for din cd-brćnder (fx: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Markér om du řnsker at medtage installeringsopstart pĺ din cd."
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "Lav sikkerhedskopi nu ud fra konfigurationsfil"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Se konfiguration af sikkerhedskopiering."
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "Konfiguration med vejleder"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "Avanceret konfiguration"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "Lav sikkerhedskopiering nu"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-"beskrivelse af valgmuligheder:\n"
-"\n"
-" Pĺ dette trin vil Drakbackup lade dig ćndre:\n"
-"\n"
-" - Komprimeringsmĺden:\n"
-" \n"
-" Hvis du markerer bzip2-komprimering, vil du komprimere\n"
-" dine data bedre end gzip (omkring 2-10 %).\n"
-" Denne valgmulighed er ikke markeret som standard fordi\n"
-" denne komprimeringsmĺde krćver mere tid (omkring 1000% mere).\n"
-" \n"
-" - Opdateringsmĺden:\n"
-"\n"
-" Denne valgmulighed vil opdatere din backup, men denne\n"
-" valgmulighed er ikke rigtigt nyttig fordi du skal\n"
-" dekomprimere din backup fřr du kan opdatere den.\n"
-" \n"
-" - Mĺden for .backupignore:\n"
-"\n"
-" som med cvs vil Drakbackup ignorere alle referencer\n"
-" indeholdt i .backupignore-filer i hvert katalog.\n"
-" fx: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-"\n"
-" Nogle fejl under sendmail kommer fra \n"
-" en dĺrlig konfiguration af postfix. For at lřse dette skal du\n"
-" sćtte myhostname eller mydomain i /etc/postfix/main.cf\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-"beskrivelse af valgmuligheder:\n"
-"\n"
-" - Lav sikkerhedskopi af systemfiler:\n"
-" \n"
-"\tDenne mulighed lader dig sikkerhedskopiere dit /etc katalog,\n"
-"\tsom indeholder alle konfigurationsfiler. Vćr \n"
-"\tforsigtig pĺ genskabelsestrinnet med ikke at overskrive:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Lav sikkerhedskopi af brugerfiler: \n"
-"\n"
-"\tDenne mulighed lader dig vćlge alle de brugere som du vil lave\n"
-"\tsikkerhedskopier for.\n"
-"\tFor at spare pĺ diskplads anbefales du ikke medtager netlćseres\n"
-"\tcache.\n"
-"\n"
-" - Lav sikkerhedskopi af andre filer: \n"
-"\n"
-"\tDenne mulighed lader dig tilfřje mere data som skal gemmes.\n"
-"\tMed denne sikkerhedskopieringsmĺde er det ikke muligt i řjeblikket \n"
-"\tat vćlge inkrementalbackup.\t\t\n"
-" \n"
-" - Inkrementalbackupper:\n"
-"\n"
-"\tInkrementalbackup er den stćrkeste valgmulighed for \n"
-"\tsikkerhedskopiering. Denne mulighed lader dig sikkerhedskopiere \n"
-"\talle dine data den fřrste gang, og derefter kun de ćndrede data.\n"
-"\tSĺ vil du i genskabelsestrinnet kunne genskabe dine data fra en \n"
-"\tangivet dato.\n"
-"\tHvis du ikke har valgt denne mulighed vil alle gamle\n"
-"\tsikkerhedskopier blive slettet fřr hver sikkerhedskopiering. \n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"beskrivelse af genskabelse:\n"
-" \n"
-"Kun den nyeste dato vil blive brugt fordi med inkrementalbackup \n"
-"er det nřdvendigt at genskabe hver gammel sikkerhedskopi én for én.\n"
-"\n"
-"Sĺ hvis du ikke řnsker at genskabe en bruger, sĺ fravćlg denne helt.\n"
-"\n"
-"Ellers kan du vćlge blot én af disse\n"
-"\n"
-" - Inkrementalbackupper:\n"
-"\n"
-"\tInkrementalbackup er den stćrkeste valgmulighed for \n"
-"\tsikkerhedskopiering. Denne mulighed lader dig sikkerhedskopiere \n"
-"\talle dine data den fřrste gang, og derefter kun de ćndrede data.\n"
-"\tSĺ vil du i genskabelsestrinnet kunne genskabe dine data fra en \n"
-"\tangivet dato.\n"
-"\tHvis du ikke har valgt denne mulighed vil alle gamle\n"
-"\tsikkerhedskopier blive slettet fřr hver sikkerhedskopiering. \n"
-"\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft ved DUPONT Sebastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-"Dette program er gratis programmel; du kan redistribuere det og/eller ćndre\n"
-"det i henhold til betingelserne i GNU General Public License, som publiceret "
-"af\n"
-"Free Software Foundation; enten version 2, eller enhver senere udgave\n"
-"af licensen.\n"
-"\n"
-"Dette program er udgivet i hĺb om at det vil vćre anvendeligt, men\n"
-"UDEN NOGEN FORM FOR GARANTI; heller ikke garanti om\n"
-"SALGBARHED eller EGNETHED TIL ET BESTEMT FORMĹL. Se GNU\n"
-"General Public License for flere detaljer.\n"
-"\n"
-"Du skulle have modtaget en kopi af GNU General Public License\n"
-"sammen med dette program; hvis ikke, skriv til Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
-"USA."
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-"Beskrivelse:\n"
-"\n"
-" Drakbackup bruges til at lave sikkehedskopier af dit system.\n"
-" I konfigurationen kan du vćlge: \n"
-"\t- Systemfiler, \n"
-"\t- Brugeres filer, \n"
-"\t- Andre filer.\n"
-"\teller Hele dit system ... eller Andet (sĺsom Windows partitioner)\n"
-"\n"
-" Drakbackup lader dig tage sikkerhedskopier af dit system pĺ:\n"
-"\t- Ddisk.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (med autoboot, redning og autoinstallering.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Bĺnd.\n"
-"\n"
-" Drakbackup lader dig genskabe dit system pĺ\n"
-" et katalog valgt af brugeren.\n"
-"\n"
-" Som standard vil alle sikkerhedskopier blive lagret i dit\n"
-" /var/lib/drakbackup katalog\n"
-"\n"
-" Konfigurationsfil:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Genskabelsestrin:\n"
-" \n"
-" I genskabelsestrinnet vil Drakbackup fjerne dit nuvćrende katalog \n"
-" og kontrollere at alle dine backupfiler ikke er řdelagte. Det \n"
-" anbefales at du laver en sidste sikkerhedskopiering fřr genskabelse.\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-"beskrivelse af valgmuligheder:\n"
-"\n"
-"Vćr forsigtig nĺr du bruger ftp-backup, fordi kun \n"
-"sikkerhedskopier som er opbygget allerede bliver sendt til serveren.\n"
-"Sĺ for řjeblikket skal du bygge sikkerhedskopien pĺ din disk \n"
-"fřr den sendes til ftp-serveren.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-"\n"
-"Problemer med genskabelse af sikkerhedskopier:\n"
-"\n"
-"I genskabelsestrinnet vil Drakbackup kontrollere alle dine\n"
-"backupfiler fřr genskabelse af dem.\n"
-"Fřr genskabelsen vil Drakbackup fjerne \n"
-"dit nuvćrende katalog, og alle dine data vil gĺ tabt.\n"
-"Det er vigtigt at vćre forsigtig og ikke ćndre sikkerhedskopieringens\n"
-"datafiler i hĺnden.\n"
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-"Beskrivelse:\n"
-"\n"
-" Drakbackup bruges til at lave sikkehedskopier af dit system.\n"
-" I konfigurationen kan du vćlge \n"
-"\t- Systemfiler, \n"
-"\t- Brugeres filer, \n"
-"\t- Andre filer.\n"
-"\teller Hele dit system ... eller Andet (sĺsom Windows partitioner)\n"
-"\n"
-" Drakbackup lader dig tage sikkerhedskopier af dit system pĺ:\n"
-"\t- Ddisk.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (med autoboot, redning og autoinstallering.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Bĺnd.\n"
-"\n"
-" Drakbackup lader dig genskabe dit system pĺ\n"
-" et katalog valgt af brugeren.\n"
-"\n"
-" Som standard vil alle sikkerhedskopier blive lagret i dit\n"
-" /var/lib/drakbackup katalog\n"
-"\n"
-" Konfigurationsfil:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Genskabelsestrin:\n"
-" \n"
-" I genskabelsestrinnet vil Drakbackup fjerne dit nuvćrende katalog \n"
-" og kontrollere at alle dine backupfiler ikke er řdelagte. Det \n"
-" anbefales at du laver en sidste sikkerhedskopiering fřr genskabelse.\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Installationen af %s mislykkedes. Fřlgende fejl opstod:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Sřg efter installerede skrifttyper"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Fravćlg installerede skrifttyper"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "fortolk alle skrifttyper"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "kunne ikke finde nogen skrifttyper"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "fćrdig"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "Kunne ikke finde nogen skrifttyper i dine monterede partitioner"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Genvćlg korrekte skrifttyper"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "Kunne ikke finde nogen skrifttyper.\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Sřg efter skrifttyper i installeret liste"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Kopi af skrifttyper"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "Installation af True Type-skrifttyper"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "Vent venligst pĺ ttmkfdir..."
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "Installation af True Type fćrdig"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "Konvertering af skrifttyper"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "opbyg type1inst"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr "Ghostscript referencer"
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "Konvertering af ttf-skrifttyper"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "Konvertering af pfm-skrifttyper"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Undertryk midlertidige filer"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "Genstart XFS"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Undertryk skrifttypefiler"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "genstart af xfs"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Fřr du installerer nogen skrifttyper břr du vćre sikker pĺ at du har lov til "
-"at bruge og installere dem pĺ dit system. \n"
-"\n"
-"-Du kan installere skrifttyperne pĺ normal mĺde. I sjćldne tilfćlde kan "
-"fejlbehćftede skrifttyper fĺ din X-server til at hćnge."
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "Import af skrifttyper"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Hent skrifttyper fra Windows"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Afinstallér skrifttyper"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Avancerede muligheder"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Liste over skrifttyper"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Vćlg de programpakker som vil understřtte skrifttyperne:"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Generelle printere"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Vćlg skrifttypefilen eller -kataloget oh klik pĺ 'Tilfřj'"
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Installationsliste"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "Klik her hvis du er sikker."
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "Her hvis ikke."
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "Fravalgte alt"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Valgte alt"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "Fjern liste"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Begyndelsestester"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Kopiér skrifttyper pĺ dit system"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Installér og konvertér skrifttyper"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Efterbehandling for installering"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "Fjern skrifttyper pĺ dit system"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Efterbehandling for afinstallering"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Deling af internetforbindelse"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Deling af internetforbindelse er slĺet til"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Indstilling af deling af internetforbindelse er allerede gjort.\n"
-"Deling er aktiveret.\n"
-"\n"
-"Hvad řnsker du at gřre?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "de-aktivér"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "trćd af"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "genkonfigurér"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Slĺr servere fra..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Deling af internetforbindelse er nu slĺet fra"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Deling af internetforbindelse er slĺet fra"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Indstilling af deling af internetforbindelse er allerede gjort.\n"
-"Den er de-aktiveret for nćrvćrende\n"
-"Hvad řnsker du at gřre?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "aktivér"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Aktiverer servere..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Deling af internetforbindelse er nu slĺet til"
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Du er ved at konfigurere din maskine til at dele sin internetforbindelse.\n"
-"Med denne mulighed vil andre maskiner pĺ dit lokale netvćrk kunne bruge "
-"internetforbindelsen pĺ denne maskine.\n"
-"\n"
-"Bemćrk: du skal bruge en dediceret netvćrksadapter, for at lave et lokalt "
-"netvćrk (LAN)."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Grćnseflade %s (benytter modul %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Grćnseflade %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Ikke nogen netvćrksadapter i dit system!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Ingen ethernet netvćrksadapter er blevet fundet pĺ dit system. Křr venligst "
-"vćrktřjet til maskinel konfiguration."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Netvćrksgrćnsesnit"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Der er kun én konfigureret netvćrksadapter i dit system:\n"
-"\n"
-"%s\n"
-"\n"
-"Jeg skal til at sćtte dit lokalnet pĺ med den adapter."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Vćlg hvilken netvćrksadapter som skal forbindes til dit lokalnet."
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Netvćrksgrćnsesnit allerede konfigureret"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"Advarsel, netvćrkskortet (%s) er allerede konfigureret.\n"
-"\n"
-"Řnsker du en automatisk re-konfiguration?\n"
-"\n"
-"Du kan gřre det i hĺnden, men du skal vide hvad du gřr."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Automatisk rekonfiguration"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "Vis aktuelle grćnsesnitskonfiguration"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"Nuvćrende konfiguration af `%s':\n"
-"\n"
-"Netvćrk: %s\n"
-"IP-adresse: %s\n"
-"IP-attribut: %s\n"
-"Driver: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Jeg kan beholde din aktuelle konfiguration og antage at du allerede har sat "
-"en DHCP-server op; i sĺ tilfćlde kontrollér da gerne at jeg har lćst det C-"
-"klasse-netvćrk korrekt, som du bruger for dit lokalnetvćrk; jeg vil ikke "
-"genkonfigurere det og jeg vil ikke rřre ved din konfiguration af DHCP-"
-"serveren.\n"
-"\n"
-"Ellers kan jeg genkonfigurere dit grćnsesnit og genkonfigurere en DHCP-"
-"server for dig.\n"
-"\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "C-klasse lokalnetvćrk"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "(Denne) DHCP-servers IP-adresse"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Rekonfigurér grćnsesnit og DHCP-server"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Lokalnetvćrket endte ikke med `.0', stĺr af."
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Mulig LAN-adresse konflikt fundet i konfigurationen til %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Brandmurkonfiguration fundet!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Advarsel! En eksisterende brandmurkonfiguration er blevet fundet. Du skal "
-"muligvis lave manuelle rettelser efter installationen."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Konfigurerer..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Konfigurerer skript, installerer programmel, starter servere..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemer med installation af %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Alt er blevet konfigureret.\n"
-"Du kan nu dele din internetforbindelse med andre maskiner pĺ dit lokale "
-"netvćrk, ved at bruge DHCP."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Indstilling er allerede gjort. men er de-aktiveret for nćrvćrende."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Indstilling er allerede gjort. og er for nćrvćrende aktiv."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Deling af Internetforbindelse har aldrig vćret konfigureret."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Konfiguration af deling af internetforbindelse"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Velkommen til vćrktřjet til deling af internetforbindelse!\n"
-"%s\n"
-"\n"
-"Klik pĺ Konfigurér for at starte programmet til at dele din "
-"internetforbindelse!"
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netvćrkskonfiguration (%d adaptorer)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Slet profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil der skal slettes:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Ny profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Navnet pĺ profilen der skal oprettes (den nye profil oprettes som en \n"
-"kopi af den nuvćrende) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Vćrtsnavn: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetadgang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Type:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Grćnseflade:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Vent venligst"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigurér Internetadgang..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN konfiguration"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Drivprogram"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Grćnseflade"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Konfigurér lokalnetvćrk..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Klik her for at starte vejlederen ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Vejleder..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Anvend"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Vent venligst... Sćtter konfigurationen i anvendelse"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Tilsluttet"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ikke tilsluttet"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Tilslut..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Afbrud..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Advarsel, en anden internetforbindelse er blevet fundet, der mĺske bruger "
-"dit netvćrk"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Du har ingen konfigurerede grćnsesnit.\n"
-"Konfigurér disse fřrst ved at klikke pĺ 'Konfigurér'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN konfiguration"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Opstartsprotokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Startede med opstart"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivér nu"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivér nu"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Dette grćnsesnit er ikke blevet konfigureret endnu.\n"
-"Start konfigurationsvejlederen i hovedvinduet"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Du har ingen internet-opkobling.\n"
-"Opret én fřrst ved at klikke pĺ 'Konfigurér'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfiguration af Internetforbindelse"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfiguration af Internetforbindelse"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Type af forbindelse"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametre"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet-kort"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-Klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Indstiller sikkerhedsniveau"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Kontrolcenter"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Vćlg det vćrktřj du řnsker at benytte"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "Canada (kabel)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (bcast)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "USA (kabel)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "USA (kabel-hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Kina (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japan (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "Japan (kabel)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Řsteuropa"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Irland"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "Vesteuropa"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Australien"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "New Zealand"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "Sydafrika"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr "Indtast din tv-standard og land"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "TV-standard:"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Omrĺde:"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "Skanning for tv-kanaler i gang..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "Skanner for tv-kanaler"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr "Intet tv-kort genkendt!"
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-"Intet tv-kort blev genkendt pĺ din maskine. Tjek venligst at et video/tv-"
-"kort der understřttes af Linux er korrekt isat.\n"
-"\n"
-"\n"
-"Du kan besřge vores database over udstyr pĺ:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "brug: keyboarddrake [--expert] [tastatur]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Vćlg tastaturlayout."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Vil du have at Bak-tasten giver Delete i konsollen?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Skift cdrom"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Indsćt installations-cdrom'en i dit cdrom-drev og tryk pĺ Ok, nĺr det gjort\n"
-"Hvis du ikke har den - tryk pĺ Annullér, sĺ undgĺs levende opgradering"
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Kan ikke starte levende opgradering!!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr "Ćndringen er fortaget, men for at vćre effektiv skal du logge ud"
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "Vis kun for den valgte dag"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Fil/_Ny"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<Ctrl>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Fil/_Ĺbn"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<Ctrl>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Fil/_Gem"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<Ctrl>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Fil/Gem _som"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Fil/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Indstillinger"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Indstillinger/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Hjćlp"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Hjćlp/_Om"
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "Bruger"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "Beskeder"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "System"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Forklaringer til Mandrake-vćrktřjer"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "sřg"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Et vćrktřj til at overvĺge dine logfiler"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Indstillinger"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "Samstemmende:"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "Men ikke samstemmende"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Vćlg fil"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Kalender"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Indhold af filen"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "Post og SMS pĺmindelse"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "vent venligst, fortolker filen: %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "Post og SMS pĺmindelseskonfiguration"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Velkommen til programmet for post og SMS-konfigurering.\n"
-"\n"
-"Her vil du kunne opsćtte pĺmindelsessystemet\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "Opsćtning af tjenester"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-"Du vil modtage en advarsel hvis en af de valgte tjenester ikke lćngere křrer"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "indlćs opsćtning"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Du vil modtage en advarsel hvis belastningen er hřjere end denne vćrdi"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "advarsels-konfiguration"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "Konfigurerer mĺden systemet vil advare dig pĺ"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Gem som..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Vćlg muse-type."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "ingen seriel_usb fundet\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Emulering af tredje knap?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "%s fundet pĺ %s, skal det konfigureres?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Vćlg en skanner"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "Denne %s-skanner er ikke understřttet"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-"Scannerdrake kunne ikke genkende din %s-skanner.\n"
-"Vćlg venligst den enhed hvor din skanner er isat"
-
-#: ../../standalone/scannerdrake_.c:96
-msgid "choose device"
-msgstr "vćlg enhed"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"Denne %s-skanner skal vćre konfigureret af printerdrake.\n"
-"Du kan starte printerdrake fra Mandrake Kontrolcenter i Udstyr-afsnittet."
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"Din %s-skanner er blevet konfigureret.\n"
-"Du kan nu skanne dokumenter med 'XSane' fra Multimedie/grafik iprogrammenuen."
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Brandmurskonfiguration"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Brandmurskonfiguration"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Brandmure\n"
-"\n"
-"Du har allerede indstillet en brandmur.\n"
-"Klik pĺ Konfigurér for at ćndre eller fjerne brandmuren"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Brandmure\n"
-"\n"
-"Klik pĺ Konfigurér for at sćtte en standard-brandmur op"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Vćlg sprog"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Vćlg installations-metode"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Harddisk bestemmelse"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Konfigurér mus"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Vćlg tastatur"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Sikkerhed"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Vćlg filsystemer"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formatér partitioner"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Vćlg pakker til installation"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Installér system"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Tilfřj bruger"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Konfigurér netvćrk"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Konfigurér tjenester"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Installér systemopstarter"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Opret opstartsdiskette"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Konfigurér X"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Installér opdateringer"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Afslut installation"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall-konfigurator\n"
-"\n"
-"Dette konfigurerer en personlig brandmur for denne Mandrake Linux maskine.\n"
-"For en stćrk dedikeret brandmurs-lřsning se venligst den specialiserede "
-"MandrakeSecurity Firewall-distribution."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Vi vil nu spřrge dig om hvilke tjenester du gerne vil tillade\n"
-"internettet at forbinde til. Tćnk grundigt over disse\n"
-"spřrgsmĺl, da din maskines sikkerhed er vigtig.\n"
-"\n"
-"Hvis du ikke bruger nogle af disse tjenester sĺ skćrm dem af\n"
-"med brandmuren. Du kan altid ćndre indstillingerne nĺr du vil\n"
-"ved at křre dette program igen!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Křrer du en webserver pĺ denne maskine som du har brug for at hele\n"
-"internettet kan se? Hvis du křrer en webserver som kun behřver at blive\n"
-"tilgĺet af denne maskine kan du roligt svare NEJ her.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Křrer du en DNS-navneserver pĺ denne maskine? Hvis du ikke har sat\n"
-"en op til at give IP- og zone-information til hele internettet kan du svare\n"
-"nej her.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Řnsker du at tillade indgĺende Secure Shell ssh-forbindelser?\n"
-"Det er en erstatning for telnet som du mĺske vil bruge til at logge ind.\n"
-"Hvis du bruger telnet nu břr du afgjort skifte til ssh. telnet er ikke\n"
-"krypteret - sĺ nogle angribere kan stjćle din adgangskode hvis du bruger\n"
-"den. ssh er krypteret og tillader ikke den slags aflytning."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Vil du tillade indgĺende telnet-forbindelser?\n"
-"Dette er virkeligt usikkert som vi har forklaret i det foregĺende billede. "
-"Vi\n"
-"anbefaler stćrkt at du svarer NEJ her og bruger ssh i stedet for telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Křrer du en FTP-tjeneste pĺ denne maskine som du har brug for at hele\n"
-"internettet har adgang til? Hvis du har sĺ anbefaler vi stćrkt at du kun\n"
-"bruger den til anonyme overfřrsler. En hvilkensomhelst adgangskode sendt\n"
-"over FTP kan stjćles af visse angribere, siden FTP heller ikke bruger\n"
-"kryptering til at overfřre adgangskoder.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Křrer du en post-server her? Hvis du sender beskeder med\n"
-"pine, mutt eller en anden tekstbaseret post-klient er det sandsynligt.\n"
-"Ellers břr du skćrme den vćk.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Křrer du en POP- eller IMAP-tjeneste her? Dette kan bruges til at betjene "
-"ikke-webbaserede postkonti for folk via denne maskine.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Du ser ud til at křre en 2.2-kerne. Hvis din IP-netvćrksadresse\n"
-"bliver sat automatisk af en maskine i dit hjem eller kontor\n"
-"(dynamisk tildelt) břr vi tillade dette. Er dette tilfćldet?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Fĺr din maskine tiden synkroniseret efter en anden maskine?\n"
-"Oftest er dette brugt af střrre Unix/Linux-organisationer for at\n"
-"synkronisere tiden for logning og lignende. Hvis du ikke er en del\n"
-"af et střrre kontor og ikke har hřrt om dette er det sandsynligvis\n"
-"ikke tilfćldet."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfigurationen er fćrdig. Skal vi skrive disse ćndringer til disken?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Kan ikke ĺbne %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Kan ikke ĺbne %s for skrivning: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr "Nej, jeg har ikke brug for DHCP"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr "Ja, jeg har brug for DHCP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr "Nej, jeg har ikke brug for NTP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr "Ja, jeg har brug for NTP"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr "Gem ikke"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr "Gem og afslut"
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "Vejleder til brandmurskonfiguration"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr "Nej (sćt en brandmur op mod internettet)"
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr "Nej (tillad dette gennem brandmuren)"
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr "Vent venligst..., kontrollerer installerede pakker"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Kunne ikke installere de krćvede pakker: %s og Bastille.\n"
-" Prřv at installere dem manuelt."
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Netvćrksmaskine (klient)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS-vćrt, SMB-vćrt, mellemvćrt (proxy), SSH-vćrt"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Kontor"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome-arbejdsstation"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Vćrktřjer til Palm Pilot og Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Arbejdsstation"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Brandmur/router"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Server for domćnenavne (DNS) og netvćrksinformation (NIS)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Kontor-programmer: Tekstbehandler (kword, abiword), regneark (kspread, "
-"gnumeric), pdf-visere, o.lign."
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Lyd-relaterede vćrktřjer: mp3 eller midi-afspillere, mixere o.lign."
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Břger og vejledninger om Linux og Frit Programmel"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE-arbejdsstation"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedie - Video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Samling af vćrktřjer til post, nyheder, filoverfřrsel og chat"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Database"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL eller MySQL database-server"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Vćrktřjer til at lette indstillingen af din maskine"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedie - Lyd"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Vćrktřjer"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentation"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Konsolvćrktřjer"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix postserver, Inn nyhedsserver"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internet-station"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimedie-station"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Konfiguration"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Flere grafiske miljřer (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"K Desktop -miljřet, det grundlćggende grafiske miljř, med en vifte af "
-"supplerende vćrktřjer."
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Grafisk miljř"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache og Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Vćrktřjer til at skabe og brćnde CD-er"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Kontor-arbejdsstation"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, o.lign."
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Grafiske programmer som fx The Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C og C++ udviklingsbiblioteker, programmer, og include-filer."
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Netvćrksmaskine server"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Post/diskussionsgrupper"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Spillemaskine"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Videoafspillere og redigeringsvćrktřjer"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedie - Grafik"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Underholdnings-programmer: arkade, brćt, strategi, osv."
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Vćrktřjssćt til at lćse samt sende post og nyheder (pine, mutt, tin..) , og "
-"til at browse pĺ nettet"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arkivering, emulering, overvĺgning"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Personlig řkonomi"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr "Et grafisk miljř med brugervenlig samling af programmer og vćrktřjer"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Klienter for forskellige protokoller inklusiv ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Internetadgang"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Lyd- og video-afspillere og redigeringsvćrktřjer"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Andre grafiske miljřer"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Redigeringsvćrktřjer, skaller, filvćrktřjer, terminaler"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programmer til at hĺndtere din řkonomi, som fx gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Personlig informationshĺndtering"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedie - CD-brćnding"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Videnskabelig arbejdsstation"
-
-#~ msgid "About"
-#~ msgstr "Om"
-
-#~ msgid " Help "
-#~ msgstr " Hjćlp "
-
-#~ msgid ""
-#~ "XawTV isn't installed ...\n"
-#~ "You should install it.\n"
-#~ " Just type \"urpmi xawtv\""
-#~ msgstr ""
-#~ "XawTV er ikke installeret ...\n"
-#~ "Dř břr installere den.\n"
-#~ " Bare skriv \"urpmi xawtv\""
-
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr ""
-#~ "Kan ikke fĺ fat i kernemoduler svarende til din kerne (fil %s mangler)"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Ingenting"
-
-#~ msgid "Choose a default printer!"
-#~ msgstr "Vćlg en forvalgt printer!"
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Brug/Opfrisk printerliste"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Du kan nu give dens parametre til modul %s."
-
-#~ msgid "mount failed"
-#~ msgstr "montering mislykkedes"
-
-#~ msgid ""
-#~ "The characters of your language can't be displayed in console,\n"
-#~ "so the messages will be displayed in english during installation"
-#~ msgstr ""
-#~ "Tegnene i dit sprog kan ikke vises i konsollen\n"
-#~ "sĺ beskederne vil blive vist pĺ engelsk under installationen"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
deleted file mode 100644
index 9629e8953..000000000
--- a/perl-install/share/po/de.po
+++ /dev/null
@@ -1,12653 +0,0 @@
-# german translation of DrakX (cooker/gi/perl-install/share/po/de.po).
-# Copyright (C) 1999,2000,2001 MandrakeSoft.
-# Dr. Hinrich GĂśhlmann <hgoehlmann@gmx.de>, 1999,2000
-# Stefan Siegel <siegel@linux-mandrake.com>, 1999,2000,2001,2002
-# Daniel Haischt <daniel.haischt@student.fh-reutlingen.de>, 2000
-# Peer Dunker <peer46@gmx.net>, 2001
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-10 11:56+0100\n"
-"Last-Translator: Stefan Siegel <siegel@linux-mandrake.com>\n"
-"Language-Team: German <cooker-i18n@linux-mandrake.com>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Alle Karten getrennt konfigurieren"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Xinerama Erweiterung verwenden"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Nur Karte „%s“ (%s) konfigurieren"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Mehrkarten-Einstellung"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Ihr System erlaubt die Verwendung einer Mehrkarten Konfiguration.\n"
-"Was wollen Sie tun?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafikkarte"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Wählen Sie Ihre Grafikkarte"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Wählen Sie einen X Server"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X Server"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Wählen Sie einen X Treiber"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X Treiber"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Welche XFree-Konfiguration wollen Sie verwenden?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Ihre Grafikkarte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
-"XFree %s. Ihre Karte wird auch von XFree %s unterstĂźtzt, wodurch Sie \n"
-"bessere 2D-UnterstĂźtzung erhalten kĂśnnen."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Ihre Grafikkarte kann mit XFree %s 3D-hardwarebeschleunigt werden."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s mit 3D-Hardwarebeschleunigung"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Ihre Karte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
-"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM \n"
-"UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s mit EXPERIMENTELLER 3D-Hardwarebeschleunigung"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Ihre Karte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
-"XFree %s. BEM: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM UND KANN \n"
-"ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN. Ihre Karte wird auch von \n"
-"XFree %s unterstĂźtzt, wodurch Sie bessere 2D-UnterstĂźtzung erhalten \n"
-"kĂśnnen."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (Installationsbildschirmtreiber)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfigurieren"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Wählen Sie die Speichergröße Ihrer Grafikkarte"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Wählen Sie die Einstellungen fßr den Server"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Wählen Sie Ihren Monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Die beiden kritischen Parameter sind die vertikale Wiederholfrequenz\n"
-"(wie oft der gesamte Bildschirm neu angezeigt wird) und insbesondere die\n"
-"horizontale Synchronisationsfrequenz (wie oft Scanlinien angezeigt werden).\n"
-"Es ist SEHR WICHTIG, dass Sie keinen Monitortyp mit einer falschen \n"
-"Synchronisationsrate auswählen, da Sie sonst Ihren Monitor beschädigen \n"
-"kÜnnten. Im Zweifelsfall wählen Sie bitte eine konservativere \n"
-"Einstellung."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Horizontale Wiederholfrequenz"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Vertikale Wiederholfrequenz"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ihr Monitor ist nicht konfiguriert"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ihre Grafikkarte ist noch nicht konfiguriert"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Die AuflÜsungen wurden noch nicht ausgewählt"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "MĂśchten Sie die vorgenommenen Einstellungen prĂźfen?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Warnung: Testen dieser Grafikkarte kann Ihren Rechner anhalten"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "PrĂźfen der Einstellungen"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"Versuchen Sie bitte, einige Einstellungen zu ändern"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ein Fehler ist aufgetreten:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Verlassen in %d Sekunden"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ist dies richtig?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr ""
-"Ein Fehler ist aufgetreten. Versuchen Sie bitte, einige Parameter zu ändern"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "AuflĂśsung"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Wählen Sie bitte AuflÜsung und Farbtiefe"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Grafikkarte: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 Server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mehr"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "OK"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Experten-Modus"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Alle anzeigen"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "AuflĂśsungen"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Tastaturtyp: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Maustyp: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Mausschnittstelle: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitor Horiz. Frequenz: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitor Vert. Frequenz: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Grafikkarte: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Grafikkartenidentifikation: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Grafikkartenspeicher: %s KB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Farbtiefe: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "AuflĂśsung: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 Server: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 Treiber: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window Konfiguration vorbereiten"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Was wollen Sie machen?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Monitor ändern"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Grafikkarte ändern"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Server Einstellungen ändern"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "AuflÜsung ändern"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Informationen anzeigen"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Nochmals testen"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Verlassen"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Die Änderungen beibehalten?\n"
-"Momentan wäre dies:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X zur Startzeit"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Ich kann GNU/Linux so einrichten, dass bei jedem Systemstart\n"
-"automatisch die grafische Oberfläche (= der X Server) aktiviert wird.\n"
-"Wollen Sie, dass X nach jedem Neustart direkt zur VerfĂźgung steht?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr ""
-"Bitte loggen Sie sich erneut in %s ein, \n"
-"um die Änderungen wirksam werden zu lassen."
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Bitte loggen Sie sich aus, und drĂźcken Sie Ctrl-Alt-RĂźcktaste"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 Farben (8 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32.000 Farben (15 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65.000 Farben (16 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 Millionen Farben (24 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 Milliarden Farben (32 Bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB oder mehr"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640×480 bei 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800×600 bei 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibel, 1024×768 bei 87 Hz, interlaced (kein 800×600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024×768 bei 87 Hz, interlaced und 800×600 bei 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800×600 bei 60 Hz und 640×480 bei 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024×768 bei 60 Hz und 800×600 bei 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hochfrequenz SVGA, 1024×768 bei 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Mehrfrequenz mit der Fähigkeit für 1280×1024 bei 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ihr Monitor kann 1600×1200 bei 70 Hz darstellen"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ihr Monitor kann 1600×1200 bei 76 Hz darstellen"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Erster Sektor der Boot-Partition"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Erster Sektor der Platte (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO Installation"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Wo soll der Betriebssystemstarter installiert werden?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/Grub Installation"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO mit TextmenĂź"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO mit grafischem MenĂź"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Boot von DOS/Windows aus (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Haupt-Optionen des Betriebssystemstarters"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Zu verwendender Betriebssystemstarter"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Installation des Betriebssystemstarters"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Boot Gerät"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (funktioniert nicht mit alten BIOS Versionen)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Kompakt"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "Kompakt"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Video Modus"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Wartezeit vorm Starten des Standard Betriebssystems"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Passwort"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Passwort (erneut)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Gebrauch der Kommandozeilen-Parameter einschränken"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "Einschränken"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Die Partition /tmp bei jedem Systemstart säubern"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Geben Sie, falls nötig, die genaue RAM Größe an (%d MB gefunden)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Mehrere Profile einschalten"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Geben Sie die RAM Größe in MB an"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Die Option „Gebrauch der Kommandozeilen-Parameter einschränken“ ist ohne \n"
-"Angabe eines Passworts wirkungslos"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Bitte versuchen Sie es erneut"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Die PasswĂśrter stimmen nicht Ăźberein"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Init Nachricht"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Open Firmware VerzĂśgerung"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "BS-StartverzĂśgerung fĂźr den Kern"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "BS-Start von CD erlauben"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Open Firmware Start erlauben"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Standard BS"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"Sie haben sich entschieden, Ihren Betriebssystemstarter auf einer Partition "
-"zu starten.\n"
-"Das impliziert, dass Sie einen anderen Betriebssystemstarter im Master-Boot-"
-"Record haben (etwa System Commander).\n"
-"\n"
-"Von welchem Verzeichnis wollen Sie starten?"
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Hier sind die verschiedenen Einträge.\n"
-"Sie kÜnnen weitere hinzufßgen oder existierende ändern."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "HinzufĂźgen"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Fertig"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Ändern"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Welche Art Eintrag wollen Sie hinzufĂźgen?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Anderes Betriebssystem (SunOS ...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Anderes Betriebssystem (MacOS ...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Anderes Betriebssystem (Windows ...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Kern"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Verzeichnisbaumwurzel"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Übergeben"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Init-RamDisk"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Schreiben/Lesen"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabelle"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Unsicher"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Identifikator"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Standard"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Größe der Init-RamDisk"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "NoVideo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Eintrag lĂśschen"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Leere Einträge sind nicht erlaubt"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Sie MĂźssen ein Kern-Abbild angeben"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Sie mĂźssen die Verzeichnisbaumwurzel festlegen"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Dieser Eintrag existiert bereits"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Schnittstelle(n) %s %s gefunden"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "VerfĂźgen Sie Ăźber weitere?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "VerfĂźgen Sie Ăźber %s Schnittstellen?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Nein"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Ja"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Hardware Informationen anzeigen"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Installation des Treibers fĂźr die Karte %s %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(Modul %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Welchen %s-Treiber soll ich versuchen?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"In einigen Fällen benötigt der „%s“ Treiber zusätzliche Informationen,\n"
-"um korrekt zu funktionieren, meistens sollte er jedoch auch ohne \n"
-"funktionieren. Wollen Sie solche Informationen angeben oder es dem Treiber "
-"Ăźberlassen, nach geeigneten Parametern zu suchen? (Das Austesten durch den "
-"Treiber kann in seltenen Fällen zum „Hängenbleiben“ des Rechners führen, was "
-"jedoch keine Hardwareschäden nach sich ziehen sollte)"
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Automatische Erkennung"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Optionen angeben"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Sie mĂźssen nun die Optionen fĂźr Modul %s angeben.\n"
-"Bedenken Sie, dass Adressen alle mit „0x“ beginnen müssen, etwa „0x300“"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sie mĂźssen nun die Optionen fĂźr Modul %s angeben.\n"
-"Optionen haben die Form „name=wert name2=wert2“.\n"
-"Beispielsweise: „io=0x300 irq=7“"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modul-Optionen:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Laden von Modul %s schlug Fehl.\n"
-"Wollen Sie es erneut mit anderen Parametern versuchen?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "Zugriff auf X-Programme"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "Zugriff auf RPM-Werkzeuge"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "„su“ erlauben"
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "Zugriff auf Verwaltungsdateien"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s wurde bereits hinzugefĂźgt)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Dieses Passwort ist zu einfach"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Bitte geben Sie ein Benutzerkennzeichen an"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Das Benutzerkennzeichen sollte nur aus Kleinbuchstaben, Ziffern, \n"
-"„-“ und „_“ bestehen"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Dieses Benutzerkennzeichen existiert bereits"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Benutzer hinzufĂźgen"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Benutzerkennzeichen einrichten\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Benutzer akzeptieren"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Benutzername"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Benutzerkennzeichen"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Symbol"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Autologin"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Ich kann GNU/Linux so einrichten, dass beim Systemstart automatisch \n"
-"ein Benutzer angemeldet wird.\n"
-"Wollen Sie davon Gebrauch machen?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Wählen Sie den Standard-Nutzer:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Bitte wählen Sie die zu verwendende Sprache."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr ""
-"Sie kÜnnen andere Sprachen auswählen, die nach der Installation zur "
-"VerfĂźgung stehen."
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Alle"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Allen Benutzern erlauben"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Benutzerdefiniert"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Kein Teilen"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-"Sie kĂśnnen die Dateien mittels Samba oder NFS anbieten. Welche Variante "
-"wollen Sie?"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Das zwingend benötigte Paket „%s“ fehlt."
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-"Wollen Sie Benutzern erlaubern, Verzeichnisse freizugeben?\n"
-"Wenn Sie das erlauben, kĂśnnen die Anwender Verzeichnisse in Konqueror oder "
-"Nautilus im KontextmenĂź der eintsprechenden Verzeichnisses freigeben.\n"
-"\n"
-"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Kennzeichen "
-"vornehmen.\n"
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Abbruch"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "Userdrake starten"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"Das Teilen zwichen Benutzern verwendet die Gruppe „fileshare“.\n"
-"Sie kĂśnnen UserDrake verwenden, um Benutzerkennzeichen in diese Gruppe "
-"aufzunehmen."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Cracker-Spielplatz"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Schwach"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standard"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Hoch"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "HĂśher"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoid"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Diese Ebene ist mit Vorsicht zu verwenden. Zwar macht sie Ihr System \n"
-"einfacher handhabbar, aber auch leichter angreifbar: In dieser Form darf \n"
-"der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet werden, \n"
-"da Angreifer mangels Passwort an Ihre Daten gelangen kĂśnnen!"
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Passwortabfragen sind nun eingeschaltet, aber die Verwendung als \n"
-"Netzwerkrechner kann hier nicht empfohlen werden."
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Das ist die Standard-Sicherheitsebene fĂźr Rechner, mit Internetzugang \n"
-"als Klient."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Es gibt bereits mehr Restriktionen und jede Nacht werden automatische "
-"Sicherheitstests durchgefĂźhrt."
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Mit dieser Sicherheitsebene wird es mĂśglich, das System als einen \n"
-"Server zu verwenden.\n"
-"Die Sicherheit ist nun ausreichend hoch, um das System als Server \n"
-"einzusetzen, der einer Vielzahl von Klienten einen Verbindungsaufbau \n"
-"erlaubt. Es sei hier angemerkt, dass Ihr Rechner, wenn Sie nur als \n"
-"Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
-"verwenden sollte."
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Diese Ebene bietet die selbe Funktionalität, wie die vorherige. Jedoch ist \n"
-"das System nun komplett geschlossen. Es ist die hĂśchste Sicherheitsebene."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Wählen Sie eine Sicherheitsebene"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Sicherheitsebene"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "„libsafe“ bei Servern verwenden"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr "Eine Bibliothek, die gegen sog. „buffer overflow“-Angriffe schützt."
-
-# 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)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Willkommen zum Betriebssystem-Starter %s\n"
-"\n"
-"Markieren Sie in obiger Liste ein Betriebssystem\n"
-"oder warten Sie %d Sekunden, dann starte ich Ihr Standard-System.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Willkommen zum Betriebssystem-Starter GRUB!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Verwenden Sie die Tasten %c und %c um ein Betriebssystem zu w„hlen."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Zum Starten des BS drcken Sie <Return>. Mit <e> k”nnen Sie das"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "Kommando vorher editieren, mit <c> erhalten Sie eine Kommandozeile."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "In %d Sekunden wird das gew„hlte BS automatisch gestartet."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "Sie haben nicht genug Platz in „/boot“"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Arbeitsoberfläche"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Start-MenĂź"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr ""
-"Sie kĂśnnen den Betriebssystemstarter\n"
-"nicht auf einer %s Partition installieren!\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "Es steht noch keine Hilfe zur VerfĂźgung.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Konfiguration der Boot-Einstellungen"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Datei"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Datei/_Beenden"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Neuer kategorisierter Monitor"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Neuer Stil"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "HerkĂśmmlicher Stil"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "HerkĂśmmlicher Gtk+ Stil"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Aurora beim Hochfahren starten"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "LILO/GRUB Modus"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot Modus"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Sie verwenden momentan „%s“ als Betriebssystemstarter.\n"
-"Wählen Sie „Konfigurieren“, wenn Sie den Assistenten starten wollen."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Konfigurieren"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "System-Modus"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "X-Window nach dem Hochfahren automatisch starten "
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Nein ich will kein Autologin"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ja ich will Autologin mit diesem Kennzeichen und dieser Oberfläche"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "Ich kann „/etc/inittab“ nicht zum lesen öffnen: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d Minuten"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 Minute"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d Sekunden"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr ""
-"Vor der Partitionierung kann ich keine Bildschim-SchnappschĂźsse machen."
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Die Bildschim-Schnappschüsse liegen nach der Installation unter „%s“"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Frankreich"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "Belgien"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Tschechische Republik"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Deutschland"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Griechenland"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Norwegen"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Schweden"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Holland"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Italien"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Östereich"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Vereinigte Staaten von Amerika"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Bitte machen Sie erst eine Sicherheitskopie Ihrer Daten!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Lesen Sie bitte aufmerksam!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Wenn Sie aboot verwenden wollen, mĂźssen Sie ausreichend Platz am Anfang \n"
-"der Platte lassen (2048 Sektoren reichen aus)."
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Fehler"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Assistent"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Wählen Sie ein Aktion aus"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Sie haben eine große FAT Partition \n"
-"(diese enthält häufig nur Microsoft DOS/Windows).\n"
-"Ich rate Ihnen, diese Partition erst zu verkleinern\n"
-"(Wählen Sie sie an und drücken Sie dann „Größe verändern“)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Bitte klicken Sie auf eine Partition"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Details"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Journalisierendes FS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Auslagerung"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Leer"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Andere"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Dateisystemtypen:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Erzeugen"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Typ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Verwenden Sie stattdessen „%s“"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "LĂśschen"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Verwenden Sie erst „umount“"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Nach Änderung des Partitionstyps von %s, werden sämtliche Daten darauf "
-"gelĂśscht"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Wählen Sie eine Partition"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Wählen Sie eine andere Partition"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Verlassen"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "In den Experten-Modus wechseln"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "In den Normal-Modus wechseln"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Rßckgängig"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Wollen Sie trotzdem fortfahren?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Beenden ohne speichern"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Beenden ohne die Partitionstabelle zu speichern?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Möchten Sie die vorgenommenen Änderungen in „/etc/fstab“ speichern?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Automatisches Erstellen"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Alles lĂśschen"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Festplatten-Informationen"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Alle Primärpartitionen sind in Gebrauch"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Ich kann keinen weiteren Partitionen hinzufĂźgen"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Um mehr Partitionen einrichten zu kÜnnen, mßssen Sie zunächst eine Partition "
-"löschen und anschließend eine erweiterte Partition erzeugen"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Partitionstabelle schreiben"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Partitionstabelle wiederherstellen"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Partitionstabelle retten"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Partitionstabelle neu laden"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Wechselmedien automatisch Einhängen"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Datei auswählen"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Die gesicherte Partitionstabelle hat nicht dieselbe Größe\n"
-"Soll trotzdem fortgefahren werden?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Warnung"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Legen Sie eine Diskette in das Laufwerk\n"
-"Alle Daten auf dieser Diskette werden gelĂśscht!"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Ich Versuche, die Partitionstabelle zu retten"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "AusfĂźhrliche Informationen"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Einhängpunkt"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Optionen"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Größe verändern"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Bewegen"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatieren"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Einhängen"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Zum RAID hinzufĂźgen"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Zum LVM hinzufĂźgen"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Aushängen"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "LĂśschen aus dem RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "LĂśschen aus dem LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "RAID modifizieren"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Als Loopback verwenden"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Erzeuge eine neue Partition"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Anfangssektor: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Größe in MB:"
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Dateisystemtyp: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Einhängpunkt: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Einstellung: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Die Loopback-Datei entfernen?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Partitionstyp ändern"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Welches Dateisystem wollen Sie verwenden?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Konvertiere ext2 zu ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Wo wollen Sie die Loopback-Datei %s einhängen?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Wo wollen Sie das Gerät %s einhängen?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Ich kann diesen Einhängpunkt nicht zurßcksetzen, da diese Partition als \n"
-"Loopback verwendet wird. Bitte entfernen Sie erst diesen Loopback."
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Errechne die Grenzen des FAT Dateisystems"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Neuberechnen der Größe"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Die Größe dieser Partition kann ich nicht ändern"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Sie sollten ein Backup sämtlicher Daten dieser Partition erstellen"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Durch Veränderung der Partitionsgröße von %s, gehen sämtliche Daten darauf "
-"verloren"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Wählen Sie die neue Größe"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Neue Größe in MB:"
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Zu welcher Platte wollen Sie wechseln?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Zu welchem Sektor wollen Sie wechseln?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "wechsele"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Bewege Partition..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Wählen Sie einen vorhandenen RAID"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "Neu"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Wählen Sie einen vorhandenen LVM"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "LVM Name?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Diese Partition kann nicht als Loopback verwendet werden"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Name der Loopback-Datei: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Dateinamen angeben"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr ""
-"Diese Datei wird bereits von einer anderen Loopback-VerknĂźpfung verwendet, "
-"wählen Sie eine andere Datei."
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr ""
-"Es existiert bereits eine Datei mit diesem Namen. Soll ich sie verwenden?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Einhäng-Optionen"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Verschiedene"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "Gerät"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "Level"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "Blockgröße"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Vorsicht: Diese Aktion ist gefährlich."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Welcher Partitionstyp?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Es tut mir Leid, aber ich weigere mich, eine „/boot“ Partition \n"
-"hinter dem Zylinder 1024 anzulegen.\n"
-"Entweder verwenden Sie LILO und es wird nicht funktionieren, oder Sie "
-"verwenden \n"
-"LILO nicht, dann benötigen Sie keine „/boot“ Partition."
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Die Partition, die Sie als Verzeichnisbaumwurzel (/) ausgewählt haben, ist "
-"physikalisch hinter dem 1024ten Zylinder Ihrer Festplatte gelegen und Sie "
-"haben keine „/boot“ Partition eingerichtet. Falls Sie den LILO "
-"Betriebssystemstarter einsetzen wollen, vergessen Sie bitte nicht, eine „/"
-"boot“ Partition anzulegen!"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Sie haben eine Software-RAID-Partition als Verzeichnisbaumwurzel "
-"ausgewählt. \n"
-"Zur Zeit kann kein Betriebssystemstarter damit ohne Verwendung einer \n"
-"„/boot“-Partition arbeiten. Sie sollten also daran denken, eine solche \n"
-"Partition zu erstellen."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Die Partitionstabelle der Platte „%s“ wird gespeichert!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr ""
-"Sie mßssen Ihren Rechner neu starten, damit die Veränderungen wirksam werden"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Nach Formatieren der Partition %s, werden sämtliche Daten darauf gelÜscht"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formatiere"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formatiere Loopback-Datei %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formatiere Partition %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Dateien verstecken"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Dateien auf die neue Partition verschieben."
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"Das Verzeichnis „%s“ enthält bereits Daten\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Dateien auf die neue Partition verschieben."
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Kopiere: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Entferne: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "Die Partition %s heißt nun %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Gerät: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS Laufwerksbuchstabe: %s (vermutlich?)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Typ:"
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Name: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Anfang: Sektor %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Größe: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s Sektoren"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Zylinder %d bis %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formatiert\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Nicht formatiert\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Eingehängt\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Loopback Datei(en):\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partition wird standardmäßig geladen\n"
-" (fĂźr MS-DOS Boot, nicht jedoch fĂźr LILO)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Level %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Blockgröße %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID Platten %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Dateiname des Loopbacks: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Es besteht die Wahrscheinlichkeit,\n"
-"dass es sich um eine Treiber-\n"
-"Partition handelt. Sie sollten sie\n"
-"daher unverändert lassen.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Diese spezielle Start-Partition\n"
-"ist fĂźr die Verwendung mehrerer\n"
-"Betriebssysteme auf dem selben\n"
-"Rechner.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Größe: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometrie: %s Zylinder, %s KĂśpfe, %s Sektoren\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM Platten %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Partitionstabellen Typ: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "auf Bus %d ID %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Optionen: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Dateisystem-SchlĂźssel"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Wählen Sie Ihren Dateisystem-Schlßssel (Passwort)"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "Die PasswĂśrter stimmen nicht Ăźberein"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "SchlĂźssel"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "SchlĂźssel (erneut)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Typ ändern"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Bitte wählen Sie ein Medium"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Server suchen"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatieren von %s schlug Fehl"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr ""
-"Ich bin nicht in der Lage, %s mit einem Dateisystem vom Typ %s zu "
-"formatieren."
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "Das Einhängen der Partition %s in das Verzeichnis %s schlug fehl."
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-"Der Dateisystemcheck (fsck) schlug fehl mit dem RĂźckgabewert %d oder Signal %"
-"d."
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "Fehler beim Aushängen von %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "Einfach"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "mit „/usr“"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "Server"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr ""
-"Sie kĂśnnen JFS nicht fĂźr Partitionen verwenden, die kleiner als 16MB sind!"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
-"Sie kĂśnnen ReiserFS nicht fĂźr Partitionen verwenden, die kleiner als 32MB "
-"sind!"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Einhängpunkte mßssen mit einem / beginnen."
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Es gibt bereits eine Partition, mit dem Einhängpunkt %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr ""
-"Sie kÜnnen kein logisches LVM Medium fßr den Einhängpunkt %s verwenden."
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Dieses Verzeichnis muss in der Verzeichnisbaumwurzel bleiben"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Sie benĂśtigen ein echtes GNU/Linux Dateisystem (Ext2, ReiserFS) fĂźr \n"
-"diesen Einhängpunkt.\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-"Sie kÜnnen kein verschlßsseltes Medium fßr den Einhängpunkt %s verwenden."
-
-# ../../diskdrak1
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Nicht genug freier Platz, damit ich selbst Partition anlegen kann."
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Nichts zu tun."
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Fehler beim Öffnen von %s zum Schreiben: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Ein Fehler ist aufgetreten - es wurden keine gßltigen Geräte gefunden, auf "
-"denen neue Dateisysteme erstellt werden kĂśnnen. Bitte ĂźberprĂźfen Sie Ihre "
-"Hardware(-Konfiguration) auf mĂśgliche Fehler und falsche Einstellungen."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Sie haben keine Partitionen!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux ist ein Mehrbenutzer-System, das bedeutet konkret jedes\n"
-"Benutzerkennzeichen hat eigene Präferenzen (Grafische Umgebung,\n"
-"Programmeinstellungen, etc.), sowie ein eigenes Heim-Verzeichnis, in dem\n"
-"diese Einstellungen gespeichert werden. Falls Sie mehr wissen wollen,\n"
-"kĂśnnen Sie im Benutzerhandbuch nachsehen. Sie kĂśnnen mehrere normale\n"
-"Benutzerkonten einrichten, im Gegensatz zum „privilegierten“ Kennzeichen:\n"
-"ÂťrootÂŤ, das einmalig ist. Im Gegensatz zu ÂťrootÂŤ kĂśnnen diese normalen\n"
-"Benutzer jedoch nur ihre eigenen Dateien und Konfigurationen verändern. Sie\n"
-"kĂśnnen sogar mehrere Benutzerkennzeichen pro Person einrichten, denen Sie\n"
-"Zugang zu Ihrem GNU/Linux-System gewähren wollen. Erstellen Sie sich ein\n"
-"eigenes Benutzerkennzeichen, auch wenn Sie der einzige Anwender sind, der\n"
-"diesen Rechner nutzt. Sie sollten nicht ständig mit dem privilegierten\n"
-"Kennzeichen arbeiten! Das ist ein hohes Sicherheitsrisiko! Wenn Sie einen\n"
-"schweren Fehler als einfacher Benutzer machen, dann kĂśnnen Sie maximal\n"
-"Daten verlieren, jedoch nicht Ihr gesamtes System unbrauchbar machen.\n"
-"\n"
-"Zuerst geben Sie bitte einen normalen Namen an. Das muss nicht\n"
-"notwendigerweise Ihr richtiger Name sein. „DrakX“ wird das erste Wort, das\n"
-"Sie eingegeben haben, in das Feld „Benutzerkennzeichen“ eintragen. Dies ist\n"
-"der Name, den Sie zum Anmelden fĂźr dieses Kennzeichen benĂśtigen. NatĂźrlich\n"
-"kÜnnen Sie ihn hier nach Belieben verändern. Dann geben Sie Ihrem Konto ein\n"
-"Passwort. FĂźr ein Benutzerkennzeichen ist dieses zwar nicht von so\n"
-"herausragender Bedeutung wie das fĂźr ÂťrootÂŤ, doch Sie sollten trotzdem\n"
-"etwas Sorgfalt walten lassen. Immerhin sind es Ihre Daten...\n"
-"\n"
-"Klicken Sie auf „Benutzer akzeptieren“, um das Kennzeichen zu erstellen.\n"
-"Anschließend können Sie direkt weitere Benutzer hinzufügen. Wenn Sie allen\n"
-"Kennzeichen erstellt haben, klicken Sie auf „Fertig“.\n"
-"\n"
-"Durch Anwahl der Schaltfläche „Fortgeschritten“ haben Sie auch die\n"
-"MÜglichkeit, die Standard-Shell dieses Benutzers ändern (normalerweise ist\n"
-"dies die „Bash“)."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Oben sehen Sie die auf Ihrer Festplatte gefundenen Linux-Partitionen. Als\n"
-"normaler Linuxanwender kÜnnen Sie problemlos die Vorschläge des Assistenten\n"
-"ßbernehmen. Sollten Sie diesen Vorschlag ändern, mßssen Sie zumindest eine\n"
-"Partition als Verzeichnisbaumwurzel („/“) definieren. Wählen Sie keine zu\n"
-"kleine Partition, da sie sonst nicht genug Software installieren kĂśnnen.\n"
-"Falls Sie Ihre persĂśnlichen Daten auf einer getrennten Partition speichern\n"
-"mĂśchten, mĂźssen Sie eine Linux-Partition fĂźr ihre persĂśnlichen\n"
-"Verzeichnisse („/home“) definieren (Dies geht natürlich nur, wenn Sie mehr\n"
-"als nur eine Linux Partition haben).\n"
-"\n"
-"Alle Partitionen werden folgendermaßen aufgeführt: „Name“, „Kapazität“\n"
-"\n"
-"„Name“ ist zusammengesetzt aus: „Festplattentyp“, „Festplattennummer“ und\n"
-"„Partitionsnummer“ (etwa, „hda1“ oder „sdb4“).\n"
-"\n"
-"„Festplattentyp“ ist „hd“ falls es sich um einen IDE Platte handelt und\n"
-"„sd“ wenn es eine SCSI Platte ist.\n"
-"\n"
-"„Festplattennummer“ ist der Buchstabe hinter „hd“ oder „sd“. Bei IDE\n"
-"Platten bedeutet:\n"
-"\n"
-" * „a“ - „Master Festplatte am primären IDE Kontroller“,\n"
-"\n"
-" * „b“ - „Slave Festplatte am primären IDE Kontroller“,\n"
-"\n"
-" * „c“ - „Master Festplatte am sekundären IDE Kontroller“,\n"
-"\n"
-" * „d“ - „Slave Festplatte am sekundären IDE Kontroller“,\n"
-"\n"
-"Bei SCSI Platten steht „a“ für „erste Festplatte am Bus“, „b“ für „zweite\n"
-"Festplatte am Bus“, etc."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"Da die Mandrake Linux-Distribution stetig wächst, wurde sie in mehrere\n"
-"CD-ROMs unterteilt. Es kann daher vorkommen, dass „DrakX“ Pakete von\n"
-"anderen, als der Installations-CD-ROM installieren will. In diesem Fall\n"
-"wird es die aktuelle CD-ROM auswerfen und nach einer anderen fragen."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"Nun ist es Zeit sich zu entscheiden, welche Programme Sie auf Ihrem Rechner\n"
-"installieren wollen. Es gibt tausende von Paketen fĂźr Mandrake Linux, und\n"
-"Sie mĂźssen sie nicht alle auswendig kennen.\n"
-"\n"
-"Wenn Sie eine klassische CD-ROM-Installation vornehmen, werden Sie zuerst\n"
-"nach den Ihnen zur VerfĂźgung stehenden CDs gefragt (nur im Expertenmodus).\n"
-"Markieren Sie die Zeilen anhand der CDs die Sie vorliegen haben und klicken\n"
-"Sie auf die Schaltfläche „OK“.\n"
-"\n"
-"Die Pakete sind nach ihrer Verwendung in Gruppen eingeteilt. Diese Gruppen\n"
-"wiederum enthalten vier Abschnitte:\n"
-"\n"
-" * „Arbeitsplatzrechner“: Falls Ihr Rechner als Arbeitsplatzrechner\n"
-"verwendet werden soll, markieren Sie eine oder mehrere Gruppen.\n"
-"\n"
-" * „Entwicklungsplattform“: Falls Sie mit Ihrem Rechner programmieren\n"
-"wollen, sollten Sie diese Gruppe markieren.\n"
-"\n"
-" * „Server“: Wenn Ihre Maschine ein Server werden soll, können Sie hier die\n"
-"wichtigsten Dienste auswählen, die auf Ihren Rechner installiert werden\n"
-"sollen.\n"
-"\n"
-" * „Grafische Oberfläche“: Wählen Sie hier Ihre bevorzugte grafische\n"
-"Arbeitsoberfläche. Wenn Sie eine grafische Oberfläche verwenden wollen, so\n"
-"mßssen Sie hier zumindest eine Gruppe auswählen.\n"
-"\n"
-"Wenn Sie die Maus Ăźber eine Gruppe bewegen, erhalten Sie einen kurzen\n"
-"erklärenden Text ßber die Gruppe. Falls Sie bei einer Installation alle\n"
-"Markierungen entfernen, erscheint ein Dialog, in dem Sie zwischen\n"
-"verschiedenen Minimalinstallationen wählen kÜnnen.\n"
-"\n"
-" * „Mit X“ Installiert eine rudimentäre grafische Oberfläche;\n"
-"\n"
-" * „Mit minimaler Dokumentation“ Installiert das Basissystem zuzüglich\n"
-"grundlegender Werkzeuge inklusive deren Dokumentation. Dies ist die\n"
-"sinnvollste Wahl fĂźr eine Serverinstallation.\n"
-"\n"
-" * „Extrem minimale Installation“ Sie erhalten eine komplett „nackte“\n"
-"Linux-Distribution (speziell auch ohne urpmi!). Es versteht sich von\n"
-"selbst, dass das nur eine Kommandozeileninstallation sein kann.\n"
-"\n"
-"Wenn Sie die Schaltfläche „Fortgeschritten“ anwählen, erhalten Sie die\n"
-"Möglichkeit, eine „Individuelle Paketauswahl“ durchzuführen. Das macht nur\n"
-"Sinn, wenn Sie die Pakete genau kennen oder wenn Sie volle Kontrolle\n"
-"darĂźber haben wollen, was installiert werden soll.\n"
-"\n"
-"Haben Sie die Installation als „Aktualisierung“ gestartet, können Sie die\n"
-"Markierungen aller Gruppen entfernen, um die Installation neuer Pakete zu\n"
-"vermeiden. Hierdurch werden nur bereits installierte Pakete aktualisiert\n"
-"oder repariert."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Schlussendlich erhalten Sie (falls Sie sich für „Individuelle Paketauswahl“\n"
-"entschieden haben) eine Baumliste aller Pakete die zu den von Ihnen\n"
-"gewĂźnschten Gruppen gehĂśren. Diese Pakete sind nach Gruppen und\n"
-"Untergruppen klassifiziert. Beim DurchstĂśbern des Baums, kĂśnnen Sie\n"
-"Gruppen, Untergruppen oder einzelne Pakete markieren oder deren Markierung\n"
-"entfernen.\n"
-"\n"
-"Sobald Sie ein Paket auswählen, erscheint rechts eine kurze Beschreibung.\n"
-"Sobald Sie die Auswahl abgeschlossen haben, bestätigen Sie das durch\n"
-"Drücken der Schaltfläche „Installation“. Nun beginnt die eigentliche\n"
-"Installation. Falls Sie eine Vielzahl von Paketen installieren wollen,\n"
-"kĂśnnen Sie nun getrost einen Kaffee trinken gehen.\n"
-"\n"
-"!! Es kommt vor, dass Server- und Dienst-Pakete angewählt wurden - entweder\n"
-"absichtlich, oder als Paket einer ganzen Gruppe; sollte das der Fall sein,\n"
-"werden Sie nun gefragt, ob Sie diese wirklich installiert haben wollen.\n"
-"Unter Mandrake Linux werden installierte Server und Dienste automatisch\n"
-"beim Betriebssystemstart gestartet. Selbst wenn zum Zeitpunkt, als die\n"
-"Distribution zusammengestellt wurde, keine SicherheitslĂźcken oder Fehler in\n"
-"diesen Paketen bekannt waren, ist natürlich nicht auszuschließen, dass\n"
-"später solche Fehler gefunden werden. Sollten Sie also nicht wissen, wovon\n"
-"hier die Rede ist, wählen Sie sicherheitshalber lieber „Nein“. Falls Sie\n"
-"mit „Ja“ antworten, werden die Dienste und Server installiert und stehen\n"
-"Ihnen nach der Installation standardmäßig zur Verfügung. !!\n"
-"\n"
-"Die Option „Automatische Abhängigkeiten“ unterdrückt nur die Warnungen, die\n"
-"erscheinen, wenn das Installationsprogramm Pakete automatisch markiert, um\n"
-"Paketabhängigkeiten aufzulÜsen, wenn Sie ein Paket auswählen.\n"
-"\n"
-"Das kleine Diskettensymbol am unteren Rand der Liste ermĂśglicht es Ihnen,\n"
-"die während einer vorangegangenen Installation gespeicherte Paketauswahl\n"
-"erneut zu verwenden. Durch Betätigen der Schaltfläche Üffnen Sie einen\n"
-"Dialog, der Sie auffordert, die Diskette einzulegen, die die Auswahl der\n"
-"frßheren Installation enthält. Um zu erfahren, wie Sie diese Diskette\n"
-"erstellen, lesen Sie bitte den zweiten Tipp des vorangegangenen\n"
-"Installationsschrittes."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"Wenn Sie Ihren Computer mit dem Internet oder mit einem lokalen Netzwerk\n"
-"verbinden wollen, dann wählen Sie bitte die entsprechende Option aus. Bitte\n"
-"schalten Sie jedoch zuvor, falls nÜtig, die dafßr benÜtigten Geräte ein,\n"
-"damit „DrakX“ sie automatisch erkennen kann.\n"
-"\n"
-"Mandrake Linux bietet Ihnen die MĂśglichkeit, Ihre Internet-Verbindung\n"
-"bereits während der Installation zu konfigurieren. Zur Auswahl stehen\n"
-"folgende Verbindungsarten: HerkĂśmmliches Modem, ISDN Modem, ADSL\n"
-"Verbindung, Kabelmodem oder eine einfache LAN Verbindung (Ethernet).\n"
-"\n"
-"Wir wollen hier nicht weiter ins Detail gehen, nur soviel: Stellen Sie\n"
-"sicher, dass sie die nĂśtigen Parameter von Ihrem Internet Provider oder\n"
-"Systemadministrator erhalten haben.\n"
-"\n"
-"Weitere Einzelheiten, die hier bereits hilfreich sein kĂśnnen, erhalten Sie\n"
-"im Kapitel DrakNet. Falls Sie unsicher sind, warten Sie ab, bis die\n"
-"Installation beendet ist und verwenden Sie danach das beschriebene\n"
-"Programm, um Ihre Verbindung einzurichten.\n"
-"\n"
-"Wenn Sie Ihr Netzwerk erst nach Abschluss der Installation einrichten\n"
-"wollen oder sobald Sie die Konfiguration beendet haben, klicken Sie auf\n"
-"„Abbrechen“."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Als nächstes kÜnnen Sie die Dienste auswählen, die während des\n"
-"Betriebssystemstarts aktiviert werden sollen.\n"
-"\n"
-"Hier werden alle Dienste, die nach der aktuellen Installation zum BS-Start\n"
-"zur Verfßgung stehen, angezeigt. Lesen Sie diese Liste sorgfältig durch und\n"
-"markieren Sie nur die Dienste, die Sie immer ab dem BS-Start zur VerfĂźgung\n"
-"haben wollen.\n"
-"\n"
-"Wenn Sie einen Dienst anwählen, erhalten Sie eine kurze Erklärung dazu.\n"
-"Wenn Sie nicht sicher sind, ob ein Dienst bzw. Server sinnvoll ist oder\n"
-"nicht, verändern Sie am Besten die voreingestellten Markierungen nicht.\n"
-"\n"
-"!! Sollten Sie Ihren Rechner als Server verwenden wollen, so mĂźssen Sie an\n"
-"dieser Stelle besonders vorsichtig sein: wählen Sie alle Dienste ab, die\n"
-"Sie nicht benĂśtigen. Denken Sie daran, dass etliche Dienste eine\n"
-"potentielle Einbruchstelle in das System von außen darstellen, wenn diese\n"
-"im Serverbetrieb laufen. Also, nur die Dienste einschalten, die Sie\n"
-"wirklich brauchen! !!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"GNU/Linux arbeitet mit GMT (Greenwich Mean Time) und Ăźbersetzt diese anhand\n"
-"der Zeitzone in Ihre lokale Zeit.\n"
-"\n"
-"Da MicrosoftWindows(TM) nicht sinnvoll mit GMT umgehen kann, mĂźssen Sie\n"
-"„Nein“ wählen, falls Sie auch ein Betriebssystem aus dem Hause Microsoft\n"
-"auf Ihrem Rechner „beherbergen“\n"
-"\n"
-"Die Verwendung der Option „Automatische Zeit-Synchronisation“ reguliert\n"
-"Ihre Uhr, indem sie Verbindung mit einem Zeitserver im Internet aufnimmt.\n"
-"Wählen Sie aus der Liste einen Server in Ihrer Nähe. Damit die funktioniert\n"
-"benÜtigen Sie eine ständige Internetverbindung."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X (das X Window System) ist das Herz der grafischen Benutzeroberfläche von\n"
-"GNU/Linux. Es bildet die Grundlage fĂźr die Vielzahl grafischer\n"
-"Benutzerumgebungen, die Mandrake Linux Ihnen anbietet (wie etwa KDE, GNOME,\n"
-"AfterStep oder WindowMaker). Auch hier wird „DrakX“ die Konfiguration\n"
-"soweit wie mÜglich selbstständig vollziehen.\n"
-"\n"
-"Sollten Sie nicht gerade sehr alte, sehr neue oder exotische Grafikhardware\n"
-"einsetzen, wird „DrakX“ die Konfiguration erfolgreich durchführen und\n"
-"anschließend die grafische Oberfläche mit der bestmöglichen Auflösung\n"
-"starten! Es erscheint ein Testfenster und Sie werden anschließend gefragt,\n"
-"ob die Anzeige einwandfrei war.\n"
-"\n"
-"Falls Sie eine „Experte“n-Installation vornehmen, werden Sie in den\n"
-"folgenden Schritten von dem „DrakX“-Konfigurationsassistenten begleitet.\n"
-"\n"
-"Falls das Bild korrekt dargestellt wird, wählen Sie bitte die Schaltfläche\n"
-"„Ja“ an, „DrakX“ wird dann mit dem nächsten Schritt der Installation\n"
-"fortfahren. Sollte der Schirm aus irgendwelchen GrĂźnden nicht lesbar sein,\n"
-"müssen Sie nur 10 Sekunden warten. Anschließend sollte wieder das\n"
-"KonfigurationsmenĂź erscheinen."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Es kann Ihnen passieren, dass der erste Versuch noch nicht korrekt ist (Der\n"
-"Schirm ist zu klein, liegt zu weit rechts oder links...). Daher werden Sie\n"
-"selbst dann mit der Frage konfrontiert, wenn der „DrakX“-Server sich\n"
-"starten lies, „DrakX“ also davon ausgehen könnte, dass alles in Ordnung\n"
-"ist. Sie erhalten daher eine Liste von gĂźltigen Modi, aus denen Sie\n"
-"versuchen sollten den besten auszuwählen.\n"
-"\n"
-"Sollten alle stricke reißen, und „DrakX“ immer noch nicht laufen, wählen\n"
-"Sie einfach im Untermenü „Grafikkarte ändern“, den Punkt „Nicht\n"
-"aufgeführt“. Wenn Sie dann nach dem Server gefragt werden, wählen Sie den\n"
-"„FBDev“: Diese Variante sollte mit allen modernen Grafikkarten\n"
-"funktionieren. Ein „Nochmals testen“ sollte Gewissheit bringen."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Letztlich werden Sie gefragt, ob sie direkt in die grafische Oberfläche\n"
-"starten wollen. Diese Frage wird auch erscheinen, wenn Sie das Testen der\n"
-"Konfiguration Ăźbersprungen haben. Schlug die Konfiguration der grafischen\n"
-"Umgebung fehl oder wollen Sie den Rechner als Server laufen lassen, geben\n"
-"Sie natürlich „Nein“ an."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"Die Mandrake LinuxCD-ROM hat einen eingebauten Rettungsmodus. Sie erreichen\n"
-"ihn durch Starten von CD-ROM, und DrĂźcken von ÂťF1ÂŤ bei Bootbeginn. Geben\n"
-"Sie dann ÂťrescueÂŤ an der Eingabeaufforderung ein. Falls Ihr Rechner nicht\n"
-"von CD-ROM starten kann, sollten Sie diesen Punkt unbedingt aus zwei\n"
-"GrĂźnden abarbeiten:\n"
-"\n"
-" * Wenn „DrakX“ den Betriebssystemstarter installiert, schreibt es den\n"
-"Boot-Sektor (MBR) Ihrer primären Festplatte neu (außer Sie wollen einen\n"
-"anderen Betriebssystemstarter verwenden), damit Sie die verschiedenen,\n"
-"vorhandenen Betriebssysteme starten kĂśnnen (etwa Windows und GNU/Linux).\n"
-"Sollten Sie etwa Windows neu installieren, wird dieses - ohne Sie zu fragen\n"
-"- Ihren Boot-Sektor Ăźberschreiben. Somit werden Sie Ihr GNU/Linux nicht\n"
-"mehr starten kĂśnnen! Mit einer Startdiskette kĂśnnen Sie Ihr\n"
-"GNU/Linux-System dann trotzdem hochfahren und diese Änderungen rückgängig\n"
-"machen.\n"
-"\n"
-" * Sollten Ihnen andere schwerwiegende Systemfehler das Starten von\n"
-"GNU/Linux von der Festplatte unmĂśglich machen, ist diese Startdiskette so\n"
-"ziemlich die einzige MÜglichkeit, auf Ihr System zuzugreifen. Zudem enthält\n"
-"sie eine Anzahl von Systemprogrammen, die Ihnen bei der Behebung von\n"
-"Systemfehlern (nach einem Stromausfall, einen unglĂźcklichen Tippfehler in\n"
-"einem Passwort, etc.) helfen werden.\n"
-"\n"
-"Wenn Sie diesen Schritt anwählen, wird „DrakX“ Sie bitten, eine Diskette in\n"
-"ein Laufwerk zu legen. Die Diskette sollte natĂźrlich leer sein (zumindest\n"
-"keine relevanten Daten enthalten). Sie muss nicht formatiert sein, „DrakX“\n"
-"kĂźmmert sich um alles."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Sie mĂźssen nun entscheiden, wo auf Ihrer/n Festplatte(n) Ihr Mandrake Linux\n"
-"System installiert werden soll. Sofern alles leer ist bzw. ein\n"
-"Betriebssystem alles belegt, mĂźssen die Platte(n) neu partitioniert werden.\n"
-"Prinzipiell besteht das Partitionieren der Platte(n) darin, den\n"
-"Plattenplatz so aufzuteilen, dass Ihr Mandrake Linux darauf installiert\n"
-"werden kann.\n"
-"\n"
-"Da dieser Schritt normalerweise irreversibel ist, kann das Partitionieren\n"
-"fĂźr unerfahrene Anwender unangenehm und stressig sein. Dieser Assistent\n"
-"kann Ihnen diesen Schritt abnehmen. Lesen Sie dennoch vor Beginn im\n"
-"Handbuch die entsprechenden Passagen und lassen Sie sich Zeit mit der\n"
-"Entscheidung.\n"
-"\n"
-"Wenn Sie die Installation im Expertenmodus durchfĂźhren, werden Sie nun das\n"
-"Mandrake Linux Partitionier-Werkzeug kennen lernen: „DiskDrake“. Es erlaubt\n"
-"Ihnen Ihre Partitionen genau auf Ihre BedĂźrfnisse abzustimmen. Falls Sie\n"
-"keine Ahnung haben, wie Sie die Festplatte partitionieren sollen, wählen\n"
-"Sie die Schaltfläche „Assistent“ und überlassen diesem damit die gesamte\n"
-"Arbeit.\n"
-"\n"
-"Sollten Sie bereits Partitionen haben (etwa von einer alten GNU/Linux\n"
-"Installation oder solche, die mit einem anderen Partitionierungswerkzeug\n"
-"erstellt wurden), die Sie fĂźr die Installation von Mandrake Linux verwenden\n"
-"wollen, wählen Sie diese hier einfach aus.\n"
-"\n"
-"Falls noch keine Partitionen existieren, mĂźssen Sie sie erstellen.\n"
-"Verwenden Sie dafßr obigen Assistenten. Abhängig vom aktuellen Zustand\n"
-"Ihrer Platte(n) haben Sie verschiedene Alternativen:\n"
-"\n"
-" * „Freien Platz verwenden“: Dies führt einfach dazu, dass Ihre leere(n)\n"
-"Festplatte(n) automatisch partitioniert werden; Sie mĂźssen sich also um\n"
-"nichts weiter kĂźmmern.(*)\n"
-"\n"
-" * „Verwende existierende“: Der Assistent hat eine oder mehrere "
-"existierende\n"
-"Linux Partitionen auf Ihrer Platte gefunden. Wählen Sie diese Schaltfläche,\n"
-"falls Sie sie behalten wollen.\n"
-"\n"
-" * „Komplette Platte löschen“: Falls Sie alle Daten Ihrer Platte verlieren,\n"
-"und sie durch Ihr neues Mandrake Linux System ersetzen wollen, wählen Sie\n"
-"diese Schaltfläche. Beachten Sie, dass dieser Schritt nicht rßckgängig\n"
-"gemacht werden kann.\n"
-"\n"
-" * „Freien Platz der Windows Partition verwenden“: Falls der gesamte\n"
-"Plattenplatz aktuell fĂźr MicrosoftWindows(TM) verschwendet ist, mĂźssen Sie\n"
-"fĂźr Linux Platz schaffen. Um dies zu erreichen, kĂśnnen Sie entweder Ihre\n"
-"MicrosoftWindows(TM) Partition(en) samt Daten löschen (siehe „Komplette\n"
-"Platte löschen“ oder „Experten-Modus“) oder Ihre Windows Partition\n"
-"verkleinern. Letzteres geht ohne Datenverlust. Sie sollten diese Variante\n"
-"wählen, falls Sie beide Betriebssysteme (Windows und Mandrake Linux)\n"
-"nebeneinander nutzen wollen.\n"
-"\n"
-" Bevor Sie sich fĂźr diese Variante entscheiden, sei hier noch einmal "
-"betont,\n"
-"dass das bedeutet, Sie haben weniger Platz fĂźr Windows als momentan.\n"
-"\n"
-" * „Windows(TM) löschen“: Bei dieser Variante werden alle Windows\n"
-"Partitionen gelĂśscht und die Platte(n) komplett neu partitioniert.\n"
-"\n"
-" !! Alle Daten auf den Platten gehen dadurch verloren! !!\n"
-"\n"
-" * „Expertenmodus“: Wenn Sie Ihre Festplatte selber von Hand partitionieren\n"
-"wollen, dann kÜnnen Sie diese Option wählen. Seien Sie bitte sehr\n"
-"sorgfältig, wenn Sie diese LÜsung wählen, da Sie zwar alle mÜglichen\n"
-"Einstellungen vornehmen, aber gleichzeitig auch sehr leicht Daten verlieren\n"
-"kĂśnnen. Diese Option ist nur geeignet, wenn Sie wissen, was Sie tun.\n"
-"\n"
-"(*) In Deutschland ist es quasi unmĂśglich, Komplettrechner mit leeren\n"
-"Festplatten zu erhalten, da laut Gesetz nur Rechner mit BS verkauft werden\n"
-"dĂźrfen. Diese Regelung stammt noch aus der Zeit, als Politiker nur\n"
-"proprietäre kommerzielle BSe kannten und sich nicht vorstellen konnten,\n"
-"dass es freie und sogar kostenlose Alternativen gibt. Jeder Käufer eines\n"
-"Komplettrechners ohne BS wurde quasi mit einem Raubkopierer von Produkten\n"
-"aus Redmond gleichgesetzt."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"Nun ist es soweit, die Installation ist abgeschlossen und Ihr neues\n"
-"Betriebssystem sollte einsatzbereit sein. Bei einem Neustart kĂśnnen Sie\n"
-"zwischen den auf Ihrer Platte installierten Betriebssystemen auswählen.\n"
-"Klicken Sie nur noch auf „OK“ und das System wird neu gestartet.\n"
-"\n"
-"Die Schaltfläche „Fortgeschritten“ liefert zwei weitere Schaltflächen:\n"
-"\n"
-" * „Erstellen einer Auto-Installationsdiskette“: Hiermit können Sie eine\n"
-"Installationsdiskette erstellen, mit deren Hilfe Sie eine identische\n"
-"automatische Installation ohne Interaktion eines Administrators\n"
-"durchzufĂźhren kĂśnnen.\n"
-"\n"
-" Es gibt zwei verschiedene Alternativen, nachdem Sie diese Schaltfläche\n"
-"aktiviert haben:\n"
-"\n"
-" * „Erneut abspielen“: Diese Installation ist nur teilweise automatisch, "
-"da\n"
-"der Partitionierungsschritt (aber nur dieser!) immer noch interaktiv\n"
-"vonstatten geht.\n"
-"\n"
-" * „Automatisiert“: Vollautomatische Installation: Die Festplatte wird\n"
-"vollständig reorganisiert. Alle darauf vorhandenen Daten gehen verloren!\n"
-"\n"
-" Diese Funktion ist besonders nĂźtzlich, wenn man eine Menge von "
-"identischer\n"
-"Rechner einrichten will. Weitere Informationen erhalten Sie auch auf der\n"
-"Seite Auto install\n"
-"\n"
-" * „Paketauswahl speichern“: (*) Sie speichern damit die Paketauswahl, die\n"
-"Sie vorher getroffen haben. Wenn Sie später eine erneute Installation\n"
-"vornehmen wollen, legen Sie einfach die Diskette ins Laufwerk und starten\n"
-"Sie die Installation mittels [F1] an der ersten Eingabeaufforderung. Geben\n"
-"Sie dann Âťlinux defcfg=\"floppy\"ÂŤ ein.\n"
-"\n"
-"(*) Sie benötigen eine FAT formatierte Diskette (Mittels „mformat a:“\n"
-"kĂśnnen Sie unter GNU/Linux eine solche erstellen)."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Alle neu angelegten Partitionen mĂźssen formatiert (= ein Dateisystem darauf\n"
-"erzeugt) werden, bevor Sie sie verwenden kĂśnnen.\n"
-"\n"
-"MĂśglicherweise wollen Sie auch einige bereits existierende Partitionen\n"
-"formatieren, um alle darauf vorhandenen Daten zu lĂśschen. Falls ja,\n"
-"markieren Sie diese ebenfalls.\n"
-"\n"
-"Es sei angemerkt, dass bereits existierende Partitionen nicht erneut\n"
-"formatiert werden mĂźssen. Sie sollten Partitionen, die Teile des\n"
-"Betriebssystems enthalten neu formatieren (etwa „/“, „/usr“ oder „/var“),\n"
-"Partitionen mit Ihren privaten Daten (normalerweise „/home“) sollten Sie\n"
-"jedoch nicht neu formatieren.\n"
-"\n"
-"Seien Sie in diesem Schritt sehr sorgfältig. Nach dem Formatieren einer\n"
-"Partition ist der komplette Inhalt unwiederbringlich gelĂśscht!\n"
-"\n"
-"Wählen Sie „OK“, sobald Sie bereit sind die Partitionen zu formatieren.\n"
-"\n"
-"Wählen Sie „Abbruch“, falls Sie andere Partitionen verwenden wollen, um Ihr\n"
-"Mandrake Linux darauf zu installieren.\n"
-"\n"
-"Wählen Sie „Fortgeschritten“, um die Möglichkeit zu erhalten, Partitionen\n"
-"anzugeben, die auf defekte BlĂścke untersucht werden sollen."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Ihre neue Mandrake Linux Distribution wird nun installiert. Das dauert\n"
-"einige Minuten (abhängig von der Anzahl zu installierender Pakete und der\n"
-"Geschwindigkeit Ihres Rechners).\n"
-"\n"
-"Bitte haben Sie etwas Geduld."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-"Es ist sehr wahrscheinlich, dass zum Zeitpunkt Ihrer Mandrake Linux\n"
-"Installation bereits einige Pakete aktualisiert wurden, etwa da noch Fehler\n"
-"entdeckt und beseitigt wurden oder da in Paketen SicherheitslĂźcken entdeckt\n"
-"wurden, fĂźr die bereits LĂśsungen existieren. Um von diesen aktualisierten\n"
-"Paketen Gebrauch zu machen, wird Ihnen nun angeboten, diese aus dem\n"
-"Internet nachzuladen. Betätigen Sie die Schaltfläche „Ja“, wenn Sie einen\n"
-"Internetzugang haben, um die Pakete zu installieren, andernfalls betätigen\n"
-"Sie die Schaltfläche „Nein“. Sie können diese Pakete natürlich auch\n"
-"jederzeit nach der Installation noch installieren.\n"
-"\n"
-"Betätigen der Schaltfläche „Ja“ zeigt Ihnen eine Liste von Servern, von\n"
-"denen Sie die Aktualisierungen herunterladen kÜnnen. Wählen Sie einen in\n"
-"Ihrer Nähe. Sie erhalten dann einen Paketauswahldialog: Kontrollieren Sie\n"
-"die Auswahl und bestätigen Sie diese durch Betätigen von „Installieren“.\n"
-"Die Pakete werden nun angefordert und installiert. Sollten Sie das nicht\n"
-"wünschen, betätigen Sie einfach die Schaltfläche „Abbruch“."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Lesen Sie bitte aufmerksam die die Lizenz, bevor Sie fortfahren. Sie\n"
-"umfasst die gesamte Mandrake Linux Distribution. Sollten Sie nicht in allen\n"
-"Punkten zustimmen, betätigen Sie bitte die Schaltfläche „Zurückweisen“, um\n"
-"die Installation abzubrechen. Um mit der Installation fortzufahren\n"
-"betätigen Sie die Schaltfläche „Akzeptieren“."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"Nun ist es an der Zeit, die gewĂźnschte Sicherheitsebene fĂźr Ihr System\n"
-"festzulegen. Als Faustregel sollte hier dienen: Je zugänglicher die\n"
-"Maschine ist und je kritischer die auf ihr gesicherten Daten sind, desto\n"
-"hĂśher sollte die Sicherheitsebene sein. Andererseits geht die gewonnene\n"
-"Sicherheit zulasten der Benutzerfreundlichkeit und Einfachheit, mit der\n"
-"gewisse Befehle/Abläufe durchgefßhrt werden kÜnnen. Ausfßhrlichere\n"
-"Erläuterungen zu den verschiedenen Sicherheitsebenen erhalten Sie im\n"
-"Kapitel MSEC des Referenzhandbuchs.\n"
-"\n"
-"Sollten Sie sich an dieser Stelle nicht sicher sein, so behalten Sie die\n"
-"Standardeinstellung bei."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Sie mĂźssen nun entscheiden auf welche Partition(en) Ihr neues Mandrake\n"
-"Linux System installiert werden soll. Falls bereits Partitionen existieren\n"
-"(etwa von einer frĂźheren Installation von GNU/Linux oder durch das Erzeugen\n"
-"mit einem anderen Partitionierungswerkzeug), kĂśnnen Sie diese verwenden.\n"
-"Anderenfalls mĂźssen Sie Partitionen definieren.\n"
-"\n"
-"Um Partitionen zu erzeugen mßssen Sie erst eine Festplatte wählen. Sie\n"
-"können die Platte wählen in dem Sie „hda“ für die erste IDE-Platte wählen,\n"
-"„sda“ für die erste SCSI-Platte, usw.\n"
-"\n"
-"Um die gewählte Platte zu partitionieren stehen folgende MÜglichkeiten zur\n"
-"VerfĂźgung:\n"
-"\n"
-" * „Alles löschen“: Betätigen dieser Schaltfläche löscht alle Partitionen\n"
-"auf der markierten Festplatte.\n"
-"\n"
-" * „Automatisches Erstellen“: Diese Schaltfläche erstellt automatisch Ext2-\n"
-"und Swap-Partitionen im ungenutzten Bereich Ihrer Festplatte.\n"
-"\n"
-" * „Partitionstabelle retten“: Falls Ihre Partitionstabelle defekt ist,\n"
-"kÜnnen Sie durch Drßcken dieser Schaltfläche versuchen Sie wieder\n"
-"herzustellen. Seien Sie vorsichtig und denken Sie immer daran, dass dieser\n"
-"Versuch misslingen kann.\n"
-"\n"
-" * „Rückgängig“: Mit dieser Schaltfläche können Sie alle Einstellungen\n"
-"rßckgängig machen.\n"
-"\n"
-" * „Neu laden“: Sie können durch Betätigen dieser Schaltfläche alle\n"
-"Einstellungen rßckgängig machen und die (noch bestehende) Partitionstabelle\n"
-"neu laden.\n"
-"\n"
-" * „Assistent“: Falls Sie keine Ahnung haben wie Sie die Festplatte\n"
-"partitionieren sollen, wählen Sie diese Schaltfläche. Sie ßberlassen damit\n"
-"die gesamte Arbeit unserem Assistenten, der mittels „Abra Kadabra“(TM) Ihre\n"
-"Platte partitioniert.\n"
-"\n"
-" * „Von Diskette wiederherstellen“: Falls Sie Ihre Partitionstabelle vor\n"
-"Beginn auf eine Diskette gespeichert haben, kĂśnnen Sie sie mittels dieser\n"
-"Schaltfläche wieder zurßckschreiben.\n"
-"\n"
-" * „Auf Diskette speichern“: Falls Sie Ihre aktuelle Partitionstabelle auf\n"
-"Diskette speichern wollen, falls Sie sie später wiederherstellen wollen,\n"
-"kÜnnen Sie das mit Hilfe dieser Schaltfläche tun.\n"
-"\n"
-" * „Fertig“: Nachdem Sie das Partitionieren Ihrer Festplatte beendet haben,\n"
-"aktivieren Sie diese Schaltfläche, um Ihre Änderungen zu speichern.\n"
-"\n"
-"Information: Sie kĂśnnen alle Einstellungen per Tastatur vornehmen. Sie\n"
-"kĂśnnen sich mittels [Tab] und den Pfeiltasten bewegen.\n"
-"\n"
-"Wenn eine Partition ausgewählt ist, kÜnnen Sie mittels:\n"
-"\n"
-" * [Strg]-[C] - eine neue Partition erstellen (wenn Sie auf einer leeren\n"
-"Partition sind)\n"
-"\n"
-" * [Strg]-[D] - die Partition lĂśschen\n"
-"\n"
-" * [Strg]-[M] - dem Einhängpunkt festlegen\n"
-"\n"
-"Falls Sie die Installation auf einem PPC-Rechner vornehmen, sollten Sie\n"
-"eine mindestens 1 MB große HFS Start-Partition für den\n"
-"Betriebssystemstarter „Yaboot“ erstellen. Wenn Sie diese Partition etwas\n"
-"größer dimensionieren, etwa 50 MB, haben Sie einen geeigneten Platz, um\n"
-"einen Rettungskern samt RamDisk abzulegen, um in Notfällen starten zu\n"
-"kĂśnnen."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Es wurde mehr als nur eine MicrosoftWindows(TM) Partition auf Ihrer Platte\n"
-"gefunden. Bitte wählen Sie welche Sie verkleinern wollen, um Ihr neues\n"
-"Betriebssystem Mandrake Linux installieren zu kĂśnnen.\n"
-"\n"
-"Zu Ihrer Information sind alle Partitionen folgendermaßen aufgeführt:\n"
-"„Linuxname“, „Windowsname“, „Kapazität“.\n"
-"\n"
-"„Linuxname“ ist zusammengesetzt aus: „Festplattentyp“, „Festplattennummer“\n"
-"und „Partitionsnummer“ (etwa, „hda1“ oder „sdb4“).\n"
-"\n"
-"„Festplattentyp“ ist „hd“ falls es sich um einen IDE Platte handelt und\n"
-"„sd“ wenn es eine SCSI Platte ist.\n"
-"\n"
-"„Festplattennummer“ ist der Buchstabe hinter „hd“ oder „sd“. Bei IDE\n"
-"Platten bedeutet:\n"
-"\n"
-" * „a“ - „Master Festplatte am primären IDE Kontroller“,\n"
-"\n"
-" * „b“ - „Slave Festplatte am primären IDE Kontroller“,\n"
-"\n"
-" * „c“ - „Master Festplatte am sekundären IDE Kontroller“,\n"
-"\n"
-" * „d“ - „Slave Festplatte am sekundären IDE Kontroller“.\n"
-"\n"
-"Bei SCSI Platten steht „a“ für „erste Festplatte am Bus“, „b“ für „zweite\n"
-"Festplatte am Bus“, etc.\n"
-"\n"
-"„Windowsname“ ist der Laufwerksbuchstabe, wie er von Windows vergeben wird\n"
-"(die erste FAT Partition der ersten Platte heißt „C:“)."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Bitte gedulden Sie sich etwas. Es kann einige Minuten dauern."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"„DrakX“ fragt Sie nun nach der gewünschten Installationsart. Sie haben die\n"
-"Wahl zwischen einer Standardinstallation („Empfehlenswert“) und einer\n"
-"Variante, in der Sie mehr Einfluss ausüben können („Experte“). Sie müssen\n"
-"sich nun auch entscheiden, ob Sie eine Installation oder eine\n"
-"Aktualisierung einer bereits vorhandenen Mandrake Linux-Version vornehmen\n"
-"wollen. Es ist mĂśglich, die Installation Ăźber ein existierendes BS zu\n"
-"installieren und dieses damit zu entfernen. Sie kĂśnnen auch eine\n"
-"Aktualisierung vornehmen, um eine existierende Installation zu reparieren.\n"
-"Wählen Sie:\n"
-"\n"
-" * „Installieren“: Entfernt komplett ältere Versionen von Mandrake Linux,\n"
-"die noch installiert sind um genau zu sein kĂśnnen Sie je nach aktuellem\n"
-"Inhalt Ihrer Platte auch einige ältere Linux- oder anderweitige Partitionen\n"
-"unangetastet behalten.\n"
-"\n"
-" * „Aktualisieren“: Mit dieser Variante können Sie eine existierende\n"
-"Mandrake Linux Version aktualisieren. Die Partitionstabellen sowie die\n"
-"persĂśnlichen Verzeichnisse der Anwender bleiben erhalten. Alle anderen\n"
-"Installationsschritte werden wie bei einer Installation ausgefĂźhrt.\n"
-"\n"
-" * „Nur Pakete aktualisieren“: In dieser Variante werden alle Schritte der\n"
-"Installation, bis auf die Auswahl der zu installierenden Pakete,\n"
-"Ăźbersprungen.\n"
-"\n"
-"Je nachdem, wie viel Erfahrung Sie mit GNU/Linux haben, kĂśnnen Sie sich fĂźr\n"
-"eine der folgenden Installations- oder Aktualisierungsarten fĂźr Ihr\n"
-"Mandrake Linux System entscheiden:\n"
-"\n"
-" * Empfehlenswert: Falls Sie noch nie ein GNU/Linux Betriebssystem\n"
-"installiert haben. Die Installation wird sehr einfach sein und es werden\n"
-"Ihnen nur sehr wenige Fragen gestellt werden.\n"
-"\n"
-" * Experte: Wenn Sie den Umgang mit GNU/Linux „im Schlaf“ beherrschen und\n"
-"hochgranulare WahlmĂśglichkeiten wĂźnschen, ist dies Ihre\n"
-"Installationsmethode. Wie bei der benutzerdefinierten Installation kĂśnnen\n"
-"Sie die hauptsächliche Verwendung festlegen: „Arbeitsplatzrechner“,\n"
-"„Entwicklungsplattform“ oder „Server“. Seien Sie sehr vorsichtig, wenn Sie\n"
-"sich fĂźr diese Installationsklasse entscheiden. Die Antworten auf einige\n"
-"Fragen kĂśnnen sehr schwierig sein und Auswirkungen auf Sicherheit und\n"
-"Stabilität Ihrer Distribution haben. Wählen Sie diese Installationsklasse\n"
-"also wirklich nur wenn Sie wissen, was Sie tun!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"„DrakX“ wird aufgrund Ihrer Sprachauswahl das für Sie passende\n"
-"Tastaturlayout bereits ausgewählt haben, Sie sollten diesen Schritt\n"
-"eigentlich nicht einmal angezeigt bekommen. Doch vielleicht sind Sie mit\n"
-"dieser Auswahl nicht zufrieden (wenn Sie beispielsweise eine vom Layout\n"
-"abweichende Sprache bevorzugen). Dann gehen Sie zu diesem\n"
-"Konfigurationsschritt zurßck und wählen Sie ein passendes Layout aus der\n"
-"Liste.\n"
-"\n"
-"Sollten Sie eine andere als die zur gewählten Sprache gehÜrende Tastatur\n"
-"verwenden wollen, wählen Sie die Schaltfläche „Mehr“. Sie erhalten dann\n"
-"eine Liste aller unterstĂźtzten Tastaturen."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Wählen Sie Ihre bevorzugte Sprache fßr den Installationsvorgang und\n"
-"Systemlaufzeit.\n"
-"\n"
-"Durch Betätigen der Schaltfläche „Fortgeschritten“ erhalten Sie die\n"
-"MĂśglichkeit, weitere Sprachen auf Ihrem Rechner zu installieren, um diese\n"
-"später verwenden zu kÜnnen. Wollen Sie etwa Spaniern muttersprachlichen\n"
-"Zugang zu Ihrem System erlauben, wählen Sie deutsch als Hauptsprache in der\n"
-"Liste und im Fortgeschrittenen-Bereich „Spanish|Spain“.\n"
-"\n"
-"Haben Sie eine Sprache markiert und die Wahl mit „OK“ bestätigt, gelangen\n"
-"Sie automatisch zum nächsten Schritt."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"„DrakX“ versucht normalerweise die Anzahl Tasten Ihrer Maus zu erkennen.\n"
-"Sollte das nicht mĂśglich sein, so behandelt es Ihre Maus als\n"
-"Zwei-Tasten-Maus und emuliert die mittlere Taste. Es erkennt Ăźblicherweise\n"
-"korrekt, ob es sich um eine serielle, eine PS/2- oder um eine USB-Maus\n"
-"handelt.\n"
-"\n"
-"Sollte dies nicht Ihren Vorstellungen entsprechen: Wählen Sie einfach Ihren\n"
-"Maustyp aus der Liste, die Ihnen angezeigt wird.\n"
-"\n"
-"Anschließend können Sie die Funktionstüchtigkeit Ihrer Maus überprüfen.\n"
-"Verwenden Sie auch die KnĂśpfe und gegebenenfalls das Mausrad, um\n"
-"sicherzustellen, dass die festgelegten Einstellungen funktionieren. Falls\n"
-"nicht, klicken Sie auf „Abbrechen“ und wählen einen anderen Treiber aus."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Bitte wählen Sie den richtigen Anschluss aus. Die COM1-Schnittstelle unter\n"
-"Windows wird beispielsweise unter GNU/Linux als „ttyS0“ bezeichnet."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"Sie kĂśnnen nun das ÂťrootÂŤ Passwort fĂźr Ihr Mandrake Linux System eingeben.\n"
-"Das Passwort muss zweimal eingegeben werden, um sicher zu stellen, dass sie\n"
-"es korrekt eingegeben haben.\n"
-"\n"
-"ÂťrootÂŤ ist das Benutzerkennzeichen des Systemadministrators. Er ist der\n"
-"einzige der berechtigt ist, neue Software zu installieren, Systemdateien zu\n"
-"ändern oder neue Benutzerkennzeichen anzulegen. Kurz gesagt: root darf\n"
-"alles! Wählen Sie deshalb das Passwort sehr sorgfältig aus! Unberechtigter\n"
-"Zugang zu diesem Kennzeichen ist extrem gefährlich fßr die Integrität Ihres\n"
-"Systems und der darauf enthaltenen Daten. Daher mĂźssen Sie auch ein\n"
-"Passwort auswählen, was nicht leicht zu erraten ist; „DrakX“ teilt Ihnen\n"
-"mit, wenn das Passwort zu einfach ist. Sie sehen, dass es auch mĂśglich ist,\n"
-"kein Passwort zu vergeben. Wir raten Ihnen jedoch dringend davon ab!\n"
-"Glauben Sie nicht, dass nur, weil Sie GNU/Linux geladen haben, Ihre anderen\n"
-"Betriebssysteme vor Fehlern sicher sind. root hat keine Beschränkungen.\n"
-"Er kĂśnnte beispielsweise unbeabsichtigterweise alle Daten auf allen\n"
-"Partitionen lĂśschen, weil er unvorsichtigerweise auf die Partitionen selber\n"
-"zugegriffen hat!\n"
-"\n"
-"Das Passwort sollte eine Mischung aus alphanumerischen Zeichen sein und\n"
-"mindestens 8 Zeichen lang sein. Es sollte niemals irgendwo aufgeschrieben\n"
-"werden.\n"
-"\n"
-"Machen Sie das Passwort aber nicht zu lang oder zu kompliziert: Sie sollten\n"
-"es sich ohne großen Aufwand merken können.\n"
-"\n"
-"Sie mĂźssen das Passwort zweimal eingeben - ein Tippfehler beim ersten\n"
-"Versuch könnte sonst zu einem Problem werden, da Sie anschließend das\n"
-"„falsche“ Passwort bei der Verbindung mit dem System eingeben müssten.\n"
-"\n"
-"Im Expertenmodus werden Ihnen zusätzliche Optionen zur Verfßgung gestellt.\n"
-"Diese hängen davon ab, ob Sie mit sich mit einem Authentifizierungsserver\n"
-"verbinden wollen oder nicht.\n"
-"\n"
-"Falls in Ihrem Netzwerk das LDAP (oder NIS) Protokoll fĂźr die\n"
-"Authentifizierung verwendet wird, wählen Sie bitte den entsprechenden\n"
-"MenĂźpunkt. Falls Sie nicht wissen, welches Protokoll Sie verwenden, fragen\n"
-"Sie Ihren Netzwerkadministrator.\n"
-"\n"
-"Falls Ihr Rechner nicht an einem administrierten Netzwerk hängt, wählen Sie\n"
-"bitte „Lokale Dateien“ zur Authentifizierung."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"„LILO“ und „grub“ sind Betriebssystemstarter für GNU/Linux. Diese\n"
-"Installationsphase läuft in den meisten Fällen vÜllig automatisch ab.\n"
-"„DrakX“ analysiert den Bootsektor und ergreift dann die passenden\n"
-"Maßnahmen:\n"
-"\n"
-" * Findet „DrakX“ einen Windows-Bootsektor, ersetzt es ihn durch einen\n"
-"„grub“ oder „LILO“-Bootsektor. Sie erhalten dadurch die Möglichkeit, beim\n"
-"Systemstart zwischen Windows (bzw. anderen Betriebssystemen, sofern\n"
-"vorhanden) und Windows auszuwählen;\n"
-"\n"
-" * Findet „DrakX“ einen Linux-Bootsektor vor, ersetzt es ihn durch einen\n"
-"neuen;\n"
-"\n"
-"Im Zweifelsfall bietet „DrakX“ Ihnen einen Dialog mit verschiedenen\n"
-"AuswahlmĂśglichkeiten.\n"
-"\n"
-" * „Zu verwendender Betriebssystemstarter“: Hier erhalten Sie drei\n"
-"Alternativen:\n"
-"\n"
-" * „Grub“: Falls Sie „grub“ (Textmenü) bevorzugen.\n"
-"\n"
-" * „LILO mit grafischem Menü“: Falls Sie „LILO“ mit seiner grafischen\n"
-"Oberfläche bevorzugen.\n"
-"\n"
-" * „LILO mit Textmenü“: Falls Sie „LILO“ mit Textmenü als Ihren "
-"Favoriten\n"
-"ansehen.\n"
-"\n"
-" * „Boot Gerät“: Normalerweise müssen Sie hier nichts ändern („/dev/hda“),\n"
-"Sie kĂśnnten jedoch den Starter auch auf der zweiten Platte installieren,\n"
-"(„/dev/hdb“) oder sogar auf einer Diskette („/dev/fd0“).\n"
-"\n"
-" * „Wartezeit vorm Starten des Standard Betriebssystems“: Wenn Sie Ihren\n"
-"Rechner neu starten erhalten Sie im MenĂź der zur VerfĂźgung stehenden BSe\n"
-"eine gewisse Zeit um auszuwählen, was Sie starten mÜchten. Sollten Sie\n"
-"während dieser Zeit keine Wahl getroffen haben, wird Ihr Standard-BS\n"
-"gestartet.\n"
-"\n"
-"!! Machen Sie sich klar, dass Sie sich selbst darum kĂźmmern mĂźssen,\n"
-"irgendwie Ihr Mandrake Linux-System zu starten, wenn Sie hier keinen\n"
-"Betriebssystemstarter installieren (durch Auswahl von „Abbruch“). Stellen\n"
-"Sie auch sicher, dass Sie wissen was Sie tun, wenn Sie hier Einstellungen\n"
-"verändern... !!\n"
-"\n"
-"Durch wählen der Schaltfläche „Fortgeschritten“ erhalten Sie etliche\n"
-"Optionen, die dem fortgeschrittenen Anwender vorbehalten bleiben.\n"
-"\n"
-"Mandrake Linux installiert normalerweise seinen eigenen\n"
-"Betriebssystemstarter, der Sie sowohl GNU/Linux, als auch alle anderen\n"
-"installierten Betriebssysteme starten lässt.\n"
-"\n"
-"Sollte sich auf Ihrem Rechner bereits ein anderes Betriebssystem befinden,\n"
-"so wird dieses sofern es erkannt wird automatisch zu dem StartmenĂź\n"
-"hinzugefĂźgt. Hier kĂśnnen Sie noch einige Feineinstellungen fĂźr die\n"
-"bestehenden Optionen vornehmen. Markieren Sie einen bestehenden Eintrag und\n"
-"betätigen Sie die Schaltfläche „Ändern“, um ihn anzupassen oder zu löschen;\n"
-"„Hinzufügen“ erzeugt einen neuen Eintrag und „Fertig“ bringt Sie zum\n"
-"nächsten Installationsschritt."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"„LILO“ (der LInux LOader) und „grub“ sind Betriebssystemstarter: Diese\n"
-"Programme starten entweder GNU/Linux oder die anderen Betriebssysteme, die\n"
-"auf Ihrem Rechner vorhanden sind. Normalerweise erkennen diese Werkzeuge\n"
-"alle existierenden Betriebssysteme korrekt und bieten Sie als\n"
-"Startalternativen an. Ist dies einmal nicht der Fall, kĂśnnen Sie hier\n"
-"manuell helfend eingreifen. Seien Sie jedoch vorsichtig, dass sie die\n"
-"korrekten Parameter eingeben.\n"
-"\n"
-"Eventuell mĂśchten Sie anderen Anwendern nicht die MĂśglichkeit geben, diese\n"
-"anderen Betriebssysteme zu verwenden, in diesem Fall kĂśnnen Sie den\n"
-"entsprechenden Eintrag einfach lĂśschen. Das hat jedoch zur Folge, dass sie\n"
-"eine Startdiskette benĂśtigen, um diese Betriebssysteme in Zukunft starten\n"
-"zu kĂśnnen."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Sie mĂźssen nun entscheiden, wo die Informationen zum Starten Ihrer\n"
-"GNU/Linux Distribution erstellt werden sollen.\n"
-"\n"
-"Sofern Sie nicht genau wissen, was sie machen sollen, wählen Sie „Erster\n"
-"Sektor der Platte (MBR)“"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-"Sie kÜnnen nun ein Drucksystem wählen. Wo andere Betriebssysteme Ihnen nur\n"
-"eins bieten, bietet Mandrake Linux Ihnen drei:\n"
-"\n"
-" * „pdq“ - Es steht für „print, don't queue“ (engl. für „Drucken ohne\n"
-"Warteschlange“). Falls Sie einen Drucker haben, der direkt an Ihrem Rechner\n"
-"hängt und Sie keine Netzwerkdrucker verwenden wollen, ist dies das\n"
-"Drucksystem Ihrer Wahl. Es kann zwar auch mit Netzwerkdruckern umgehen, ist\n"
-"dabei aber extrem langsam. Wählen Sie „pdq“, wenn Sie ein GNU/Linux Neuling\n"
-"sind. Sie kÜnnen diese Wahl später immer wieder ändern, indem Sie\n"
-"PrinterDrake im Mandrake Kontrollzentrum starten und dort die Schaltfläche\n"
-"„Expertenmodus“ betätigen.\n"
-"\n"
-" * „CUPS“ - Mit dem „Common Unix Printing System“ (engl. für „Allgemeines\n"
-"Unix-Drucksystem“) können Sie ebenso gut um auf Ihrem direkt\n"
-"angeschlossenen Drucker drucken, wie auf einem Drucker, der an einem Server\n"
-"auf der anderen Seite der Welt hängt. Es ist einfach zu bedienen und kann\n"
-"sowohl als Server als auch als Klient für das alte „lpd“-Drucksystem\n"
-"verwendet werden - Es ist somit rßckwärtskompatibel. Es ist sehr mächtig,\n"
-"in seiner Grundeinstellung verhält es sich jedoch genau wie „pdq“. Wenn Sie\n"
-"einen „lpd“ Server benötigen, müssen Sie einfach nur den „cups-lpd“ Dämon\n"
-"starten. „CUPS“ bietet grafische Konfigurations- und Druckmenüs.\n"
-"\n"
-" * „LPRng“ - „Line Printer Daemon new generation“ (engl. für\n"
-"„Zeilendrucker-Dämon - Neue Generation“). Dieses System bietet etwa das\n"
-"gleiche, was die beiden vorherigen kĂśnnen, es erlaubt Ihnen jedoch auch auf\n"
-"Drucker in Novell Netzwerken zuzugreifen, da es das IPX Protokoll\n"
-"beherrscht. Falls Sie das benĂśtigen, verwenden Sie LPRng. Andernfalls ist\n"
-"„CUPS“ vorzuziehen, da es benutzerfreundlicher ist und in\n"
-"Nicht-IPX-Netzwerken besser funktioniert."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"„DrakX“ versucht nun alle IDE Festplatten Ihres Systems zu finden. Unter\n"
-"Anderem sucht „DrakX“ auch nach PCISCSI-Karten, die es kennt, um sie\n"
-"automatisch mit dem richtigen Treiber einzubinden.\n"
-"\n"
-"Falls Sie Ăźber keinen SCSI Adapter verfĂźgen, es sich um einen ISASCSI\n"
-"Adapter handelt oder um einen PCISCSI Adapter, bei dem „DrakX“ nicht weiß,\n"
-"welcher Treiber funktioniert, werden Sie gebeten, „DrakX“ zu helfen.\n"
-"\n"
-"Ist in Ihrem Rechner kein SCSI Adapter, wählen Sie einfach „Nein“. Sollten\n"
-"Sie Sich für „Ja“ entscheiden, erscheint eine Liste, aus der Sie Ihren\n"
-"Adapter auswählen kÜnnen.\n"
-"\n"
-"Mussten Sie den Adapter aus der Liste wählen, fragt „DrakX“ Sie, ob Sie dem\n"
-"Modul Optionen übergeben wollen. Sie können „DrakX“ ruhig erlauben, erst\n"
-"einmal selbst zu versuchen, diese herauszufinden. In den meisten Fällen\n"
-"funktioniert das.\n"
-"\n"
-"Falls nicht, mĂźssen Sie die Optionen angeben. Schauen Sie im\n"
-"Installationshandbuch, wie Sie diese Informationen erhalten kĂśnnen: etwa\n"
-"unter Windows (sofern das auf Ihren Rechner installiert ist), aus den\n"
-"HandbĂźchern, die sie mit dem Adapter erhalten haben oder von den Web-Seiten\n"
-"des Hardware-Anbieters (sofern Sie einen WWW-Zugang haben)."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"Sie können weitere „Yaboot“ Einträge angeben, etwa für andere\n"
-"Betriebssysteme, alternative Kerne oder ein Rettungssystem.\n"
-"\n"
-"FĂźr ein anderes BS kĂśnnen Sie nur einen Namen und die Start-Partition\n"
-"angeben.\n"
-"\n"
-"FĂźr Linux gibt es einige Parameter:\n"
-"\n"
-" * „Identifikator“: Es handelt sich um den Namen, den Sie an der „Yaboot“\n"
-"Eingabeaufforderung angeben mßssen, um diese Alternative zu wählen.\n"
-"\n"
-" * „Kern“: Der Name des BS-Kerns, den sie starten wollen. Normalerweise\n"
-"handelt es sich um „vmlinuz“ oder eine Variante von „vmlinuz“ mit einer\n"
-"Versionsnummer.\n"
-"\n"
-" * „Verzeichnisbaumwurzel“: Die Verzeichnisbaumwurzel „/“ Ihrer Linux\n"
-"Installation.\n"
-"\n"
-" * „Übergeben“: Auf Apple Hardware, wird die Übergabemöglichkeit weiterer\n"
-"Kernparameter häufig verwendet, um die Grafikausgabe richtig zu\n"
-"konfigurieren oder die Tastaturemulation der MausknĂśpfe einzuschalten, da\n"
-"klassische Apple-Mäuse von Hause aus mit 2 fehlenden Maustasten\n"
-"ausgeliefert werden. Hier einige Beispiele:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * „Init-RamDisk“: Dieser Parameter kann entweder verwendet werden, um beim\n"
-"Betriebssystemstart bereits zusätzliche Kern-Module zur Verfßgung zu haben,\n"
-"ohne dass das Start-Gerät zur Verfßgung steht oder um ein RamDisk Abbild\n"
-"fßr den BS-Start in Notfällen zur Verfßgung zu haben.\n"
-"\n"
-" * „Größe der Init-RamDisk“: Standardmäßig ist eine RamDisk 4096 Bytes "
-"groß.\n"
-"Sollten Sie eine größere RamDisk benötigen, können Sie das mit diesem\n"
-"Parameter einstellen.\n"
-"\n"
-" * „Schreiben/Lesen“: Normalerweise wird die Verzeichnisbaumwurzel zuerst "
-"im\n"
-"Nur-Lese-Modus eingehängt, um eine Dateisystem Verifikation durchfßhren zu\n"
-"kĂśnnen, bevor das Betriebssystem seinen Dienst aufnimmt. Diesen Umstand\n"
-"kĂśnnen Sie hier abstellen.\n"
-"\n"
-" * „NoVideo“: Sollte sich die Apple Grafik-Hardware als extrem "
-"problematisch\n"
-"erweisen, können Sie diesen Parameter verwenden um im sog. „novideo“-Modus,\n"
-"also im FrameBuffer-Modus zu starten.\n"
-"\n"
-" * „Standard“: Wählt diesen Eintrag als Standard Linux-Kern, den Sie durch\n"
-"Drücken von [Enter] an der „Yaboot“ Eingabeaufforderung gestartet bekommen.\n"
-"Wenn Sie die [Tab]-Taste an der Eingabeaufforderung drĂźcken, erhalten Sie\n"
-"eine Liste der verfĂźgbaren Alternativen. Der Standardeintrag wird mit einem\n"
-"Stern „*“ markiert."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"„Yaboot“ ist ein BS-Starter für NewWorld MacIntosh Rechner. Er kann sowohl\n"
-"GNU/Linux als auch MacOS oder MacOS X starten, falls diese auf Ihrem\n"
-"Rechner installiert sind. Normalerweise werden diese Betriebssysteme alle\n"
-"automatisch gefunden und eingebunden. Sollte dies nicht der Fall sein,\n"
-"kĂśnnen Sie diese hier manuell hinzufĂźgen. Stellen Sie jedoch sicher, die\n"
-"richtigen Parameter zu verwenden.\n"
-"\n"
-"Die Hauptparameter von „Yaboot“ sind:\n"
-"\n"
-" * „Init Nachricht“: Ein Text, der vor der Eingabeaufforderung angezeigt\n"
-"wird.\n"
-"\n"
-" * „Boot Gerät“: Hiermit wird angegeben, wohin die Informationen zum "
-"Starten\n"
-"Ihres GNU/Linux Systems geschrieben werden sollen. Sie sollten in einem\n"
-"frĂźheren Schritt bereits eine Boot-Partition angelegt haben, um diese Daten\n"
-"zu beherbergen.\n"
-"\n"
-" * „Open Firmware Verzögerung“: Im Gegensatz zu „LILO“, stehen mit „Yaboot“\n"
-"zwei VerzĂśgerungen zur VerfĂźgung. Die erste VerzĂśgerung wird in Sekunden\n"
-"angegeben und dient zur Auswahl zwischen CD, OF Boot, MacOS oder Linux.\n"
-"\n"
-" * „BS-Startverzögerung für den Kern“: Diese Verzögerung entspricht der\n"
-"„LILO“ Start-Verzögerung. Sie haben nach der Auswahl von GNU/Linux diese\n"
-"VerzĂśgerung (in 0,1 Sekunden Schritten) Zeit, bis der Standardkern geladen\n"
-"wird.\n"
-"\n"
-" * „BS-Start von CD erlauben“: Markieren dieses Punkts erlaubt es Ihnen an\n"
-"der ersten Eingabeaufforderung „C“ für den Start von CD zu wählen.\n"
-"\n"
-" * „Open Firmware Start erlauben“: Markieren dieses Punkts erlaubt es Ihnen\n"
-"an der ersten Eingabeaufforderung „N“ für den Open Firmware Start zu\n"
-"wählen.\n"
-"\n"
-" * „Standard BS“: Hiermit stellen Sie ein, welches Betriebssystem nach\n"
-"Ablauf der Open Firmware VerzĂśgerung automatisch gestartet werden soll."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"Hier bekommen Sie verschiedene Parameter Ihres Systems angezeigt. Je nach\n"
-"vorhandener Hardware sehen Sie hier (oder eben nicht) folgende Einträge:\n"
-"\n"
-" * „Maus“: Kontrollieren Sie die konfigurierte Maus und betätigen Sie, "
-"falls\n"
-"notwendig, die Schaltfläche.\n"
-"\n"
-" * „Tastatur“: Kontrollieren Sie die aktuelle Tastaturvorgabe und wählen "
-"Sie\n"
-"die Schaltfläche, falls Sie die Vorgabe ändern wollen.\n"
-"\n"
-" * „Zeitzone“: „DrakX“ versucht die Zeitzone anhand der gewählten Sprache "
-"zu\n"
-"„erraten“. Es ist jedoch möglich, dass Sie sich nicht in dem Land befinden,\n"
-"das die vorgegebene Sprache erahnen lässt. In diesem Fall sollten Sie die\n"
-"Schaltfläche anwählen, um die Uhr entsprechend Ihrer lokalen Zeitzone zu\n"
-"setzen.\n"
-"\n"
-" * „Drucker“: Durch Anwahl der Schaltfläche „Kein Drucker“ starten Sie den\n"
-"Druckerassistenten.\n"
-"\n"
-" * „Soundkarte“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde, "
-"wird\n"
-"sie hier angezeigt. Es ist jedoch keine Änderung während der Installation\n"
-"mĂśglich.\n"
-"\n"
-" * „TV-Karte“: Falls eine TV-Karte in Ihrem Rechner gefunden wurde, wird "
-"sie\n"
-"hier angezeigt. Es ist jedoch keine Änderung während der Installation\n"
-"mĂśglich.\n"
-"\n"
-" * „ISDN Karte“: Falls eine ISDN Karte in Ihrem Rechner gefunden wurde, "
-"wird\n"
-"sie hier angezeigt. Durch Anwahl der Schaltfläche kÜnnen Sie die Parameter\n"
-"ändern."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Wählen Sie die Festplatte, die sie lÜschen wollen, um Ihre neue Mandrake\n"
-"Linux Distribution darauf zu installieren. Achtung: Alle darauf\n"
-"befindlichen Daten gehen bei diesem Schritt unwiederbringlich verloren!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Wählen Sie „OK“, wenn Sie alle Partitionen (damit auch alle Daten) dieser\n"
-"Festplatte lÜschen wollen. Achtung: durch Betätigen dieser Schaltfläche\n"
-"werden alle Daten auf der Festplatte unwiederbringlich gelĂśscht (auch alle\n"
-"evtl. vorhandenen Windows(TM)-Daten)!\n"
-"\n"
-"Wählen Sie „Abbruch“, um die vorhandenen Daten unangetastet zu lassen und\n"
-"die Operation abzubrechen."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Ich kann die Kernmodule, die zu diesem Kern passen, nicht finden (Datei %s "
-"fehlt). Das bedeutet normalerweise das Ihre Startdiskette nicht mit dem "
-"Installationsmedium Ăźbereinstimmt (Bitte erstellen Sie eine neue "
-"Startdiskette). "
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "Sie mĂźssen auch %s formatieren."
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Sie haben die folgenden Server ausgewählt: %s\n"
-"\n"
-"\n"
-"Diese Server werden standardmäßig aktiviert. Sie haben keine bekannten\n"
-"Sicherheitsprobleme, es kĂśnnen jedoch irgendwann welche gefunden werden.\n"
-"In diesem Fall mĂźssen Sie sicherstellen, dass Sie so schnell wie mĂśglich\n"
-" eine Paketaktualisierung vornehmen.\n"
-"\n"
-"\n"
-"Wollen Sie diese Server wirklich installieren?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr ""
-"Ich kann kein Broadcast machen,\n"
-"da keine NIS Domäne angegeben wurde"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Legen Sie eine leere, FAT formatierte Diskette in Laufwerk %s ein."
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Diese Diskette ist nich FAT formatiert"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Um diese gespeicherte Paketauswahl zu verwenden, starten Sie die \n"
-"Installation bitte mit: „boot defcfg=floppy“"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Fehler beim Lesen der Datei %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Einige Hardware Komponenten Ihres Rechners benötigen „proprietäre“\n"
-"Treiber. Weitere Infos hierzu finden Sie unter: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Sie brauchen eine Verzeichnisbaumwurzel.\n"
-"Erzeugen Sie eine Partition (oder klicken Sie auf eine existierende).\n"
-"Wählen Sie „Einhängpunkt“ und setzen Sie ihn auf „/“"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Sie benĂśtigen eine Auslagerungspartition"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Sie haben keine Auslagerungspartition\n"
-"\n"
-"Wollen Sie trotzdem fortfahren?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Sie müssen eine FAT Partition in „/boot/efi“ eingehängt haben."
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Freien Platz verwenden"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nicht genug freier Platz, um die neue Partition anlegen zu kĂśnnen."
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Verwende existierende Partition(en)"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Es gibt keine existierende Partition, die ich verwenden kann."
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Auf der Windows Partition Loopbacks anlegen"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Auf welche Partition wollen Sie Linux4Win installieren?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Wählen Sie die Größen"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Größe der Verzeichnisbaumwurzel-Partition in MB: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Größe der Auslagerungspartition in MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Den freien Platz der Windows Partition verwenden"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Bei welcher Partition wollen Sie die Größe ändern?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Errechne die Grenzen des Windows Dateisystems"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Das Werkzeug zum Verändern der FAT Partitionsgröße kann mit der \n"
-"Partition nicht arbeiten. Folgender Fehler trat auf:\n"
-"%s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Ihre Windows-Partition ist zu sehr fragmentiert.\n"
-"Starten Sie bitte erst „defrag“ unter Windows."
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"WARNUNG!\n"
-"\n"
-"DrakX wird nun die Größe Ihrer Windows Partition verändern.\n"
-"Seien Sie Vorsichtig: Diese Aktion ist gefährlich. Falls Sie es noch\n"
-"nicht getan haben, sollten Sie nun die Installation abbrechen, um\n"
-"scandisk (sowie mĂśglicherweise defrag) unter Windows auf die Partition \n"
-"anzuwenden. Anschließend können Sie die Installation erneut starten.\n"
-"Sie sollten natĂźrlich generell Sicherheitskopien Ihrer Daten angelegt\n"
-"haben. Falls dies der Fall ist, kĂśnnen Sie mit OK fortfahren."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Wieviel Platz benĂśtigen sie noch fĂźr Windows auf"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "Partition %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT Größenanpassung schlug Fehl: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Sie haben keine FAT Partition, deren Größe ich anpassen kann, bzw. die\n"
-"ich als Loopback verwenden kann (mĂśglicherweise haben Sie auch einfach\n"
-"nur nichtmehr genĂźgend freien Speicher)."
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Komplette Platte lĂśschen"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Windows(TM) lĂśschen"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"Sie haben mehr als eine Festplatte.\n"
-"Auf welche soll GNU/Linux installiert werden?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"SÄMTLICHE existierende Partitionen samt der derauf befindlichen Daten \n"
-"auf Laufwerk %s gehen dabei verloren"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Benutzerdefinierte Partitionierung"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Fdisk verwenden"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Sie kĂśnnen nun %s partitionieren.\n"
-"Vergessen Sie nicht die Einstellungen mittels ,w` zu speichern, \n"
-"sobald Sie fertig sind."
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Sie haben nicht genug freien Platz auf Ihrer Windows Partition."
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Ich finde nicht genug Platz fĂźr die Installation."
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Der DrakX Partitionierungsassistent fand folgende LĂśsung:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Das Partitionieren schlug Fehl: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Netzwerkverbindung herstellen"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Netzwerkverbindung trennen"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Es trat ein Fehler auf. Ich weiß jedoch nicht, wie ich damit sinnvoll \n"
-"umgehen soll. Sie kĂśnnen fortfahren, jedoch auf eigenes Risiko!"
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Den Einhängpunkt %s kopieren"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Einige wichtige Pakete wurden nicht richtig installiert. \n"
-"Entweder ist Ihr CD-ROM-Laufwerk oder Ihre CD-ROM defekt. \n"
-"Testen Sie die CD-ROM auf einem Linux-Rechner mittels „rpm -qpl \n"
-"Mandrake/rpms/*.rpm“\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Willkommen auf %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Kein Disketten-Laufwerk verfĂźgbar"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Beginn von Schritt „%s“\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Ihr Rechner hat nicht genug Ressourcen. Vermutlich werden bei der \n"
-"Installation Probleme auftreten. In diesem Fall sollten Sie eine \n"
-"Text-Installation versuchen. Drßcken Sie dafßr <F1> während dem \n"
-"Installationsstart und geben Sie „text“ an der Eingabeaufforderung \n"
-"ein."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Installationsart"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Bitte wählen Sie eine der folgenden Installationsklassen:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Die Gesamtgröße der zu installierenden Pakete beträgt etwa %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Falls Sie weniger als diese Menge installieren wollen, \n"
-"geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
-"\n"
-"Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
-"100%% installiert alle ausgewählten Pakete."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Sie haben nur Platz fßr %d%% der ausgewählten Pakete. \n"
-"\n"
-"Falls Sie weniger als diese Menge installieren wollen, \n"
-"geben Sie (in Prozent) an, wie viele Pakete Sie installieren wollen.\n"
-"Ein geringer Prozentsatz installiert nur die wichtigsten Pakete;\n"
-"%d%% installiert so viele Pakete wie mĂśglich."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Im nächsten Schritt kÜnnen Sie genauer auswählen"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Prozent der zu installierenden Pakete"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Auswahl der Paketgruppen"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Individuelle Paketauswahl"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Gesamtgröße: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "UngĂźltiges Paket"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Name: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Version: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Größe: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Wichtigkeit: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Sie kÜnnen dieses Paket nicht auswählen, da Sie nicht genug Plattenplatz "
-"haben."
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Die folgenden Pakete werden installiert werden"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Die folgenden Pakete werden entfernt"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Sie kÜnnen dieses Paket nicht auswählen/es aus der Auswahl entfernen."
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Dieses Paket ist existenziell, sie kĂśnnen es nicht deselektieren"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr ""
-"Sie kĂśnnen dieses Paket nicht aus der Auswahl entfernen. \n"
-"Es ist bereits installiert!"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Dieses Paket muss aktualisiert werden.\n"
-"Sind Sie sicher, dass Sie es aus der Auswahl entfernen wollen?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr ""
-"Sie kĂśnnen dieses Paket nicht aus der Auswahl entfernen. \n"
-"Es muss aktualisiert werden!"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Anzeige automatisch markierter Pakete"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Installation"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Laden von/Speichern auf Diskette"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Erneuere Paket Auswahl"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Minimal-Installation"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Zu installierende Pakete auswählen"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Installation wird durchgefĂźhrt"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Schätzung"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Verbleibende Zeit "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Bitte warten, bereite Installation vor"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d Pakete"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Installation des Pakets %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Akzeptieren"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "ZurĂźckweisen"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Bitte wechseln Sie die CD!\n"
-"\n"
-"Bitte legen Sie die CD-ROM „%s“ in Ihr Laufwerk,\n"
-"dann drĂźcken Sie OK.\n"
-"Falls Sie sie nicht vorliegen haben, drĂźcken Sie Abbruch."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Wollen Sie trotzdem fortfahren?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Achtung\n"
-"\n"
-"Bitte lesen Sie die nachfolgenden Ausfßhrungen sorgfältig. Wenn Sie mit\n"
-"irgendeinem Teil nicht einverstanden sind, dĂźrfen Sie nicht den Inhalt\n"
-"der folgenden CDs installieren. Klicken Sie auf „Zurückweisen“, um die\n"
-"Installation ohne Verwendung dieser CDs fortzusetzen.\n"
-"\n"
-"\n"
-"Einige Komponenten auf den nachfolgenden CDs unterliegen nicht der GPL\n"
-"oder ähnlichen Lizenzabkommen. Jede dieser Komponenten unterliegt dann\n"
-"den Bedingungen ihrer eigenen spezifischen Lizenz.\n"
-"Bitte lesen Sie diese Lizenzen sorgfältig und nur wenn Sie mit ihnen\n"
-"einverstanden sind, dĂźrfen Sie die entsprechenden Produkte entsprechend\n"
-"ihrer Lizenz benutzen und weitergeben.\n"
-"Solche Lizenzen verbieten im allgemeinen das Transferieren, Duplizieren\n"
-"(außer für Sicherheitskopien), Weitergeben, Decompilieren, Disassamblen\n"
-"oder Verändern der Komponente.\n"
-"Jeder Bruch des Lizenzabkommens beendet sofort die Ihnen im Rahmen der\n"
-"Lizenz eingeräumten Rechte. Wenn die jeweilige Lizenz Ihnen nicht\n"
-"entsprechende Rechte einräumt, dßrfen Sie die Programme nicht auf mehr\n"
-"als einem System installieren oder zur Benutzung in einem Netzwerk\n"
-"einrichten. Im Zweifelsfall kontaktieren Sie bitte den Vertreiber oder\n"
-"Herausgeber der jeweiligen Komponente.\n"
-"Transfer an Dritte oder Kopieren solcher Komponenten inklusive ihrer\n"
-"Dokumentation ist normalerweise verboten.\n"
-"\n"
-"\n"
-"Alle Rechte an den Komponenten der nachfolgenden CDs liegen bei den\n"
-"jeweiligen Autoren und sind durch die Urheberrechtsgesetze fĂźr\n"
-"Softwareprodukte geschĂźtzt.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Es ist ein Fehler aufgetreten"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "MĂśchten Sie die Installation wirklich beenden?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Lizenz"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Bei dieser Übersetzung handelt es sich um eine inoffizielle Übersetzung\n"
-"der Mandrake Linux-Lizenz in die deutsche Sprache. Sie ist keine\n"
-"rechtsverbindliche Darstellung der Lizenzbedingungen der Software in\n"
-"dieser Distribution - nur der ursprĂźngliche franzĂśsische Text der\n"
-"Mandrake Linux Lizenz ist rechtsverbindlich. Wir hoffen aber, dass diese\n"
-"Übersetzung den deutschsprechenden Benutzern das Verständnis dieser\n"
-"Lizenz erleichtert.\n"
-"\n"
-"\n"
-"EinfĂźhrung\n"
-"\n"
-"Das Betriebssystem und die anderen Komponenten, die in Mandrake Linux\n"
-"enthalten sind, werden hier „Software-Produkte“ genannt. Die\n"
-"Software-Produkte umfassen, aber sind nicht beschränkt auf, die\n"
-"Gesamtheit der Programme, Methoden, Regeln, und Dokumentation, welche\n"
-"zum Betriebssystem und den anderen Komponenten der Mandrake Linux\n"
-"Distribution gehĂśren.\n"
-"\n"
-"\n"
-"1. Lizenzabkommen\n"
-"\n"
-"Bitte lesen Sie dieses Dokument sorgfältig. Dieses Dokument ist ein\n"
-"Lizenzabkommen zwischen Ihnen und MandrakeSoft S. A. welches sich auf\n"
-"die Software-Produkte bezieht.\n"
-"Durch Installation, Duplizierung oder Benutzung der Software-Produkte in\n"
-"irgendeiner Art und Weise erklären Sie sich mit den Bedingungen dieser\n"
-"Lizenz einverstanden.\n"
-"Wenn Sie mit irgendeinem Punkt dieser Lizenz nicht einverstanden sind,\n"
-"ist es Ihnen nicht erlaubt, die Software-Produkte zu installieren,\n"
-"duplizieren oder zu benutzen.\n"
-"Mit jedem Versuch, die Software-Produkte in einer Art und Weise zu\n"
-"benutzen, die nicht den Bedingungen dieser Lizenz entspricht, verlieren\n"
-"Sie die Ihnen mit dieser Lizenz eingeräumten Rechte. In diesem Fall\n"
-"haben Sie unverzĂźglich alle Kopien der Software-Produkte zu vernichten.\n"
-"\n"
-"\n"
-"2. Eingeschränkte Garantie\n"
-"\n"
-"Die Software-Produkte und die beigefĂźgte Dokumentation werden dem\n"
-"Benutzer lediglich zur VerfĂźgung gestellt, es wird keinerlei Garantie\n"
-"gegeben soweit es gesetzlich zulässig ist.\n"
-"MandrakeSoft S. A. haftet unter keinen Umständen, soweit gesetzlich\n"
-"zulässig, fßr direkte oder indirekte Schäden irgendwelcher Art,\n"
-"(inklusive uneingeschränkt Schäden aufgrund Verlust von\n"
-"Geschäftsbeziehungen, Unterbrechung von Geschäftsvorgängen,\n"
-"finanziellen Verlust, GebĂźhren oder Strafen aufgrund gerichtlicher\n"
-"Entscheide, oder jegliche Folgeschäden) die aufgrund der Benutzung oder\n"
-"der UnmĂśglichkeit der Benutzung der Software-Produkte entstehen, auch\n"
-"wenn MandrakeSoft S. A. Ăźber die MĂśglichkeit und das Auftreten\n"
-"derartiger Schäden unterrichtet wurde.\n"
-"\n"
-"\n"
-"EINGESCHRÄNKTE VERANTWORTLICHKEIT BEZOGEN AUF DEN BESITZ UND DIE\n"
-"BENUTZUNG VON SOFTWARE, DIE IN EINIGEN LÄNDERN VERBOTEN IST.\n"
-"\n"
-"\n"
-"Soweit gesetzlich zulässig, haften MandrakeSoft S. A. und deren\n"
-"Vertreiber unter keinen Umständen fßr direkte oder indirekte Schäden\n"
-"irgendwelcher Art, (inklusive uneingeschränkt Schäden aufgrund Verlust\n"
-"von Geschäftsbeziehungen, Unterbrechung von Geschäftsvorgängen,\n"
-"finanziellen Verlust, GebĂźhren oder Strafen aufgrund gerichtlicher\n"
-"Entscheide, oder jegliche Folgeschäden) die aufgrund des Besitzes und\n"
-"der Benutzung von Software-Komponenten oder aufgrund des Ladens von\n"
-"Software-Komponenten von den Internet-Servern von MandrakeSoft S. A.,\n"
-"deren Besitz und Benutzung in einigen Ländern aufgrund lokaler Gesetze\n"
-"nicht gestattet ist, entstehen.\n"
-"Diese Einschränkung der Verantwortlichkeit bezieht sich auch, aber nicht\n"
-"nur, auf die Komponenten fĂźr starke Kryptografie enthalten in den\n"
-"Software-Produkten.\n"
-"\n"
-"\n"
-"3. Die GPL und verwandte Lizenzen\n"
-"\n"
-"Die Software-Produkte bestehen aus Komponenten, die von verschiedenen\n"
-"Personen und Einrichtungen erstellt wurden. Die meisten Komponenten\n"
-"unterliegen den Bedingungen der GNU General Public License, im folgenden\n"
-"„GPL“ genannt, oder ähnlichen Lizenzen. Die meisten dieser Lizenzen\n"
-"erlauben es, die Komponenten, die diesen Lizenzen unterliegen, zu\n"
-"benutzen, zu duplizieren, anzupassen, und weiterzugeben. Bitte lesen sie\n"
-"sorgfältig die Bedingungen der Lizenzabkommen von jeder Komponente,\n"
-"bevor Sie sie benutzen. Jegliche Frage zur Lizenz einer Komponente ist an\n"
-"den Autor der Komponente und nicht an MandrakeSoft S. A. zu richten. Die\n"
-"von MandrakeSoft S. A. erstellten Programme unterliegen der GPL.\n"
-"Von MandrakeSoft S. A. geschriebene Dokumentation unterliegt einer\n"
-"spezifischen Lizenz. Bitte lesen Sie die Dokumentation fĂźr weitere\n"
-"Details.\n"
-"\n"
-"\n"
-"4. Geistiges Eigentum\n"
-"\n"
-"Alle Rechte an den Komponenten der Software-Produkte liegen bei den\n"
-"entsprechenden Autoren und sind durch die Urheberrechtsgesetze fĂźr\n"
-"Softwareprodukte geschĂźtzt.\n"
-"MandrakeSoft S. A. behält sich das Recht vor, die Software-Produkte zu\n"
-"modifizieren und anzupassen.\n"
-"„Mandrake“, „Mandrake Linux“ und entsprechende Logos sind eingetragene\n"
-"Warenzeichen der MandrakeSoft S. A..\n"
-"\n"
-"\n"
-"5. Gesetzliche Bestimmungen\n"
-"\n"
-"Wenn irgendein Teil dieses Lizenzabkommens durch einen Gerichtsentscheid\n"
-"fßr ungßltig, illegal oder inakzeptabel erklärt wird, wird dieser Teil\n"
-"aus dem Abkommen ausgeschlossen. Sie bleiben weiterhin an die anderen,\n"
-"anwendbaren Teile gebunden.\n"
-"Die Bedingungen dieses Lizenzabkommens unterliegen den Gesetzen von\n"
-"Frankreich. Alle Unstimmigkeiten bezĂźglich der Bedingungen dieser Lizenz\n"
-"werden vorzugsweise außergerichtlich beigelegt. Letztes Mittel ist das\n"
-"zuständige Gericht in Paris, Frankreich.\n"
-"Zu jeglicher Frage zu diesem Dokument kontaktieren Sie bitte\n"
-"MandrakeSoft S. A..\n"
-"Introduction\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"Hier die franzĂśsche Version:\n"
-"\n"
-"Le système d'exploitation et les divers composants disponibles dans la \n"
-"distribution Mandrake Linux sont ci-après dÊnommÊs ensemble les \n"
-" Logiciels . Les Logiciels comprennent notamment, mais de façon non \n"
-"limitative, l'ensemble des programmes, procÊdÊs, règles et documentations \n"
-"relatifs au système d'exploitation et aux divers composants de la \n"
-"distribution Mandrake Linux.\n"
-"\n"
-"\n"
-"1. Licence\n"
-"\n"
-"Veuillez lire attentivement le prĂŠsent document. Ce document constitue \n"
-"un contrat de licence entre vous (personne physique ou personne morale) et \n"
-"MandrakeSoft S.A. portant sur les Logiciels.\n"
-"Le fait d'installer, de reproduire ou d'utiliser les Logiciels de quelque \n"
-"manière que ce soit indique que vous reconnaissez avoir prÊalablement eu \n"
-"connaissance et que vous acceptez de vous conformer aux termes et "
-"conditions \n"
-"du prĂŠsent contrat de licence. En cas de dĂŠsaccord avec le prĂŠsent "
-"document \n"
-"vous n'ĂŞtes pas autorisĂŠ Ă  installer, reproduire et utiliser de quelque \n"
-"manière que ce soit ce produit.\n"
-"Le contrat de licence sera rĂŠsiliĂŠ automatiquement et sans prĂŠavis dans le \n"
-"cas oĂš vous ne vous conformeriez pas aux dispositions du prĂŠsent document. \n"
-"En cas de rĂŠsiliation vous devrez immĂŠdiatement dĂŠtruire tout exemplaire "
-"et \n"
-"toute copie de tous programmes et de toutes documentations qui constituent \n"
-"le système d'exploitation et les divers composants disponibles dans la \n"
-"distribution Mandrake Linux.\n"
-"\n"
-"\n"
-"2. Garantie et limitations de garantie\n"
-"\n"
-"Les Logiciels et la documentation qui les accompagne sont fournis en "
-"l'ĂŠtat \n"
-"et sans aucune garantie. MandrakeSoft S.A. dĂŠcline toute responsabilitĂŠ \n"
-"dĂŠcoulant d'un dommage direct, spĂŠcial, indirect ou accessoire, de quelque \n"
-"nature que ce soit, en relation avec l'utilisation des Logiciels, "
-"notamment \n"
-"et de façon non limitative, tout dommage entraÎnÊ par les pertes de \n"
-"bĂŠnĂŠfices, interruptions d'activitĂŠ, pertes d'informations commerciales ou \n"
-"autres pertes pĂŠcuniaires, ainsi que des ĂŠventuelles condamnations et \n"
-"indemnitĂŠs devant ĂŞtre versĂŠes par suite d'une dĂŠcision de justice, et ce \n"
-"mĂŞme si MandrakeSoft S.A. a ĂŠtĂŠ informĂŠe de la survenue ou de \n"
-"l'ĂŠventualitĂŠ de tels dommages.\n"
-"\n"
-"AVERTISSEMENT QUANT A LA DETENTION OU L'UTILISATION DE LOGICIELS \n"
-"PROHIBES DANS CERTAINS PAYS \n"
-"\n"
-"En aucun cas, ni MandrakeSoft S.A. ni ses fournisseurs ne pourront ĂŞtre \n"
-"tenus responsable Ă  raison d'un prĂŠjudice spĂŠcial, direct, indirect ou \n"
-"accessoire, de quelque nature que ce soit (notamment et de façon non \n"
-"limitative les pertes de bĂŠnĂŠfices, interruptions d'activitĂŠ, pertes \n"
-"d'informations commerciales ou autres pertes pĂŠcuniaires, ainsi que \n"
-"des ĂŠventuelles condamnations et indemnitĂŠs devant ĂŞtre versĂŠes par suite \n"
-"d'une dĂŠcision de justice) qui ferait suite Ă  l'utilisation, la dĂŠtention \n"
-"ou au simple tĂŠlĂŠchargement depuis l'un des sites de tĂŠlĂŠchargement de \n"
-"Mandrake Linux de logiciels prohibĂŠs par la lĂŠgislation Ă  laquelle vous \n"
-"ĂŞtes soumis. Cet avertissement concerne notamment certains logiciels de \n"
-"cryptographie fournis avec les Logiciels.\n"
-"\n"
-"\n"
-"3. Licence GPL et autres licences\n"
-"\n"
-"Les Logiciels sont constituĂŠs de modules logiciels crĂŠĂŠs par diverses \n"
-"personnes (physiques ou morales). Nombre d'entre eux sont distribuĂŠs sous \n"
-"les termes de la GNU General Public Licence (ci-après dÊnommÊe  GPL ) ou \n"
-"d'autres licences similaires. La plupart de ces licences vous permettent \n"
-"de copier, d'adapter ou de redistribuer les modules logiciels qu'elles \n"
-"rĂŠgissent. Veuillez lire et agrĂŠer les termes et conditions des licences \n"
-"accompagnant chacun d'entre eux avant de les utiliser. Toute question \n"
-"concernant la licence de chaque Logiciel est Ă  soumettre Ă  l'auteur (ou \n"
-"ses reprĂŠsentants) du Logiciel et non Ă  MandrakeSoft. \n"
-"Les programmes conçus par MandrakeSoft sont rÊgis par la licence GPL. \n"
-"La documentation rĂŠdigĂŠe par MandrakeSoft fait l'objet d'une licence \n"
-"spĂŠcifique. Veuillez vous rĂŠfĂŠrez Ă  la documentation pour obtenir plus \n"
-"de prĂŠcisions.\n"
-"\n"
-"\n"
-"4. PropriĂŠtĂŠ intellectuelle\n"
-"\n"
-"Tous les droits, titres et intĂŠrĂŞts des diffĂŠrents Logiciels sont la \n"
-"propriĂŠtĂŠ exclusive de leurs auteurs respectifs et sont protĂŠgĂŠs au titre \n"
-"des droits de propriĂŠtĂŠ intellectuelle et autres lois rĂŠgissant le droit \n"
-"des Logiciels. Les marques ÂŤ Mandrake Âť et ÂŤ Mandrake Linux Âť ainsi que "
-"les \n"
-"logotypes associĂŠs sont dĂŠposĂŠs par MandrakeSoft S.A. \n"
-"\n"
-"\n"
-"5. Dispositions diverses\n"
-"\n"
-"Si une disposition de ce contrat de licence devait ĂŞtre dĂŠclarĂŠe nulle, \n"
-"illĂŠgale ou inapplicable par un tribunal compĂŠtent, cette disposition sera \n"
-"exclue du prĂŠsent contrat. Vous continuerez Ă  ĂŞtre liĂŠs aux autres \n"
-"dispositions, qui recevront leurs pleins effets. Le contrat de licence \n"
-"est soumis à la Loi française. Toute contestation relative aux prÊsentes \n"
-"sera rĂŠglĂŠe prĂŠalablement par voie amiable. A dĂŠfaut d'accord avec \n"
-"MandrakeSoft S.A., les tribunaux compĂŠtents de Paris seront saisis du \n"
-"litige. Pour toute question relative au prĂŠsent document, veuillez \n"
-"contacter MandrakeSoft S.A.\n"
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Tastatur"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Bitte wählen Sie Ihren Tastaturtyp."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Hier die Liste aller Tastaturen"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Welche Installationsart wollen Sie durchfĂźhren?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Installation/Aktualisierung"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Handelt es sich um eine Installation oder eine Aktualisierung?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Empfehlenswert"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Experte"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Aktualisierung"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Nur Pakete aktualisieren"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Bitte wählen Sie Ihren Maustyp."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Maus Port"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihre Maus hängt."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Tastenemulation"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emulation der 2. Taste"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emulation der 3. Taste"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIA Karten konfigurieren ..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "IDE konfigurieren"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "Keine Partition verfĂźgbar"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Durchsuchen der Partitionen, um die Einhängpunkte zu finden."
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Wählen Sie die Einhängpunkte"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Vermutlich ist Ihre Partitionstabelle fehlerhaft, ich habe Probleme,\n"
-"sie zu lesen :-( (Folgender Fehler trat auf: „%s“).\n"
-"Ich kann fortfahren, indem ich die fehlerhaften Partitionen lĂśsche \n"
-"(dabei gehen ALLE darauf vorhandenen DATEN VERLOREN!). Alternativ kĂśnnen \n"
-"Sie mir jedoch auch verbieten, die Partitionstabelle zu verändern.\n"
-"\n"
-"Sind Sie einverstanden, dass ich die problematischen Partitionen lĂśsche?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake ist nicht in der Lage, Ihre Partitionstabelle korrekt zu \n"
-"interpretieren. Sie kĂśnnen fortfahren, jedoch auf eigenes Risiko!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Sie haben keinen Platz für die 1 MB große Start-Partition vorgesehen! Die "
-"Installation wird fortgesetzt, Sie mĂźssen jedoch eine Start-Partition mit "
-"DiskDrake erstellen."
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr ""
-"Es wurde keine Verzeichnisbaumwurzel gefunden, die aktualisiert werden kann."
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Verzeichnisbaumwurzel"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Welche Partition ist Ihre Verzeichnisbaumwurzel?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Sie müssen Ihren Rechner neu starten, um die Änderungen \n"
-"der Partitionstabelle wirksam werden zu lassen."
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Zu formatierende Partitionen auswählen"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Soll ich nach defekten BlĂścken suchen?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Partitionen formatieren"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Erzeugen und formatieren der Datei %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr ""
-"Der Swap-Bereich ist zu klein, um die Installation zu ermĂśglichen! \n"
-"Bitte vergrößern Sie den Bereich."
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Suche nach vorhandenen Paketen"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Finden der zu aktualisierenden Pakete"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Es steht auf Ihrem System nicht genĂźgend Speicherplatz fĂźr die \n"
-"Installation bzw. Aktualisierung zur VerfĂźgung (%d > %d)."
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Komplett (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimal (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Empfohlen (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Bitte wählen Sie, ob die Paketauswahl von Diskette geladen \n"
-"oder darauf gespeichert werden soll. Es handelt sich um das \n"
-"selbe Format, wie die unter „auto_install“ erzeugten Disketten."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Von Diskette laden"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Laden von Diskette ..."
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Auswahl der Pakete"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr ""
-"Legen Sie eine Diskette ein, auf der Ihre Paketauswahl gespeichert ist."
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Auf Diskette speichern"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Gewünschte Größe übersteigt den verfügbaren Platz"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Installationsklasse"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Sie haben keine Paketgruppe ausgewählt\n"
-"Bitte wählen Sie die minimale Installation, die Sie wßnschen."
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "Mit X"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "Mit minimaler Dokumentation (Empfohlen)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Extrem minimale Installation (ohne „urpmi“)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Falls Sie alle aufgeführten CDs haben, wählen Sie „OK“, \n"
-"falls Sie keine der aufgeführten CDs haben, wählen Sie „Abbruch“,\n"
-"falls nur einige der aufgefĂźhrten CDs fehlen, entfernen Sie die \n"
-"entsprechende Markierung und wählen Sie dann „OK“."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM „%s“"
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Installation vorbereiten"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Installiere Paket %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Einstellungen fĂźr nach der Installation"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Bitte legen Sie die Startdiskette in Laufwerk %s ein."
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr ""
-"Bitte legen Sie die Diskette der zu aktualisiernden Module in Laufwerk %s "
-"ein."
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Sie haben nun die MĂśglichkeit Software mit starker VerschlĂźsselung aus dem \n"
-"Internet zu laden.\n"
-"\n"
-"WARNUNG:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall MandrakeSoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"Bitte wenden Sie sich für alle weiteren Fragen bzgl. dieser Übereinkunft "
-"an: \n"
-"MandrakeSoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Sie haben nun die MĂśglichkeit Pakete zu installieren, die nach Erscheinen\n"
-"der Distribution aktualisiert wurden. Es handelt sich um \n"
-"Sicherheitsaktualisierungen und Fehlerkorrekturen.\n"
-"\n"
-"Allerdings benĂśtigen Sie dafĂźr eine funktionierende Internertverbindung.\n"
-"\n"
-"MĂśchten Sie die Aktualisierungen vornehmen?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Verbindung mit dem Mandrake Linux Web-Server aufbauen, um eine Liste\n"
-"verfĂźgbarer Pakete zu erhalten."
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Bitte wählen Sie einen Mirror, von dem Sie die Pakete holen wollen."
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr ""
-"Verbindung mit dem Mirror aufbauen, um eine Liste verfĂźgbarer Pakete zu "
-"erhalten."
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Wählen Sie Ihre Zeitzone"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Hardware Uhr liefert GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatische Zeit-Synchronisation (durch NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP Server"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "CUPS-Server auf der Gegenseite"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Kein Drucker"
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "VerfĂźgen Sie Ăźber eine ISA soundkarte?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-"Starten Sie „sndconfig“ nach der Installation, um Ihre Soundkarte "
-"einzurichten."
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Es wurde keine Soundkarte gefunden. Versuchen Sie „harddrake“nach der "
-"Installation."
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Zusammenfassung"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Maus"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Zeitzone"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Drucker"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDN Karte"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Soundkarte"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV-Karte"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Lokale Dateien"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Root-Passwort setzen"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Kein Passwort"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr ""
-"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Authentifizierung"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "LDAP Authentifizierung"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAP Server"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "NIS Authentifizierung"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS Domain"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS Server"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Mit einer individuellen Startdiskette kĂśnnen Sie Ihr LINUX-System starten, \n"
-"ohne auf einen Betriebssystemstarter angewiesen zu sein. Dies ist "
-"nĂźtzlich, \n"
-"wenn Sie SILO nicht auf Ihrem System installieren mĂśchten, wenn ein \n"
-"anderes Betriebssystem SILO entfernt hat oder Ihre Hardware-Konfiguration \n"
-"die Verwendung eines BS-Starters nicht korrekt verarbeitet. \n"
-"Eine individuelle Startdiskette kann auch in Verbindung mit der \n"
-"Mandrake Linux Rettungsdiskette verwendet werden, wodurch das System \n"
-"nach schwerwiegenden Fehlern viel einfacher wiederhergestellt werden \n"
-"kann.\n"
-"\n"
-"Falls Sie eine Startdiskette erstellen wollen, legen Sie eine Diskette \n"
-"ohne relevante Daten in ihr erstes Laufwerk und drücken Sie „OK“."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "erste Disketten-Laufwerk"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "zweite Disketten-Laufwerk"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Überspringen"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Mit einer individuellen Startdiskette kĂśnnen Sie Ihr LINUX-System starten, \n"
-"ohne auf den normalen Betriebssystemstarter angewiesen zu sein. Dies ist "
-"nĂźtzlich, wenn \n"
-"Sie weder LILO noch Grub auf Ihrem System installieren mĂśchten, wenn ein \n"
-"anderes Betriebssystem Ihren Betriebssystemstarter entfernt hat oder Ihre "
-"Hardware-Konfiguration die Verwendung eines Betriebssystemstarters nicht "
-"korrekt \n"
-"verarbeitet. Eine individuelle Startdiskette kann auch mit der Linux \n"
-"Mandrake Rettungsdiskette verwendet werden, wodurch das System nach \n"
-"schwerwiegenden Fehlern viel einfacher wiederhergestellt werden kann.\n"
-"\n"
-"MĂśchten Sie jetzt eine Startdiskette fĂźr Ihr System erstellen?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-"\n"
-"\n"
-"(WARNUNG! Sie verwenden XFS fĂźr Ihre Verzeichnisbaumwurzel.\n"
-"Das Erstellen einer Startdiskette auf einem 1,44 MB Medium \n"
-"schlä sicher fehl, da XFS einen sehr großen Treiber benötigt)."
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Ich kann kein Laufwerk finden"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
-"Wählen Sie das Laufwerk, in dem Sie die Start-Diskette erstellen wollen"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr ""
-"Legen Sie eine Diskette, die keine relevanten Daten mehr enthällt in das %s "
-"ein."
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Startdiskette wird erstellt..."
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Betriebssystemstarter vorbereiten"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Sie scheinen einen „OldWorld“ oder unbekannten\n"
-"Rechner zu verwenden. Der Betriebssystemstarter\n"
-"„yaboot“ wird daher leider nicht funktionieren.\n"
-"Die Installation wird fortgesetzt, sie werden jedoch \n"
-"„BootX“ verwenden müssen um LINUX auf Ihrem Rechner\n"
-"zu starten."
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Möchten Sie „aboot“ verwenden?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Fehler bei der Installation von aboot. Soll ich die Installation \n"
-"mit Gewalt versuchen, auch wenn dies die ZerstĂśrung der ersten \n"
-"Partition verursachen kann?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "BS-Starter installieren"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr ""
-"Die Installation des BS-Starters schlug Fehl. Folgender Fehler trat auf:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Sie mßssen Ihr Open Firmware Startgerät anpassen, dass es den \n"
-"BS-Starter erkennt. Falls Sie beim Neustart nicht die \n"
-"Eingabeaufforderung des BS-Starters sehen, drĂźcken Sie \n"
-"Strg-Option-O-F und geben Sie folgendes ein:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-"Tippen Sie dann: shut-down\n"
-"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Legen Sie eine leere Diskette in das %s ein."
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Erstellen einer Auto-Installationsdiskette"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Einige Schritte sind noch nicht komplett.\n"
-"\n"
-"Wollen Sie DrakX wirklich beenden?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Herzlichen GlĂźckwunsch, die Installation ist abgeschlossen.\n"
-"Entfernen Sie die Startmedien (CD-ROMs / Disketten) und drĂźcken Sie die "
-"Eingabetaste zum Neustart Ihres Rechners.\n"
-"\n"
-"FĂźr Informationen zu Sicherheitsaktualisierungen dieser Version von Mandrake "
-"Linux informieren Sie sich bitte unter \n"
-"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
-"\n"
-"Wie Sie Ihr System warten können, erfahren Sie im Kapitel „Nach der "
-"Installation“ im offiziellen Benutzerhandbuch von Mandrake Linux."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Erstellen einer Auto-Installationsdiskette"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"Die automatische Installation kann, falls Sie wollen,\n"
-"vollautomatisch erfolgen. In diesem Fall wird die\n"
-"Festplatte vollständig durch DrakX rekonfiguriert\n"
-"(diese MĂśglichkeit ist fĂźr die Replikation auf anderen\n"
-"Rechnern gedacht).\n"
-"\n"
-"Vermutlich werden Sie es vorziehen, erneut eine normale\n"
-"Installation durchzufĂźhren.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automatisiert"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Erneut abspielen"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Paketauswahl speichern"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux Installation %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> nächstes Element | <Leertaste> auswählen | <F12> weiter "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "Ich kann „kdesu“ nicht finden!"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "Das Programm „consolehelper“ wurde nicht gefunden."
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Wählen Sie eine Datei"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Fortgeschritten"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Einfach"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Bitte warten"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Baum erweitern"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Baum verkleinern"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Umschalten zwischen unsortiert und gruppiert"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Schlechte Wahl, bitte versuchen Sie es noch einmal\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Ihre Wahl? (Standard ‚%s‘) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Angaben, die Sie machen mĂźssen:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Ihre Wahl? (0/1, Standard ‚%s‘) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Schaltfläche „%s“: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "MÜchten Sie diese Schaltfläche betätigen?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Ihre Wahl? (Standard „%s“ %s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Es gibt zahlreiche AuswahlmĂśglichkeiten (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Bitte wählen Sie die Nummer aus dem Bereich, die Sie bearbeiten wollen,\n"
-"oder betägen Sie die Eingabetaste um fort zu fahren.Ihre Wahl? "
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Anmerkung: Ein Eintrag wurde geändert:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Erneut verschicken"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Tschechien (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Deutschland"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Spanien"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Finnland"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Frankreich"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norwegen"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polen"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Russland"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Schweden"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Grßbritannien"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Vereinigte Staaten von Amerika"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Albanien"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armenien (alt)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armenien (Schreibmaschine)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armenien (Phonetisch)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Aserbeidschan (Lateinisches Layout)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgien"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgarien (Phonetisch)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "Bulgarien (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasilien (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Weißrussland"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Schweiz (deutsches Layout)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Schweiz (franzĂśsisches Layout)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Tschechien (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Deutschland (ohne Tod-Tasten)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Dänemark"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (USA)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norwegen)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Schweden)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estland"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgien (Kyrillisches Layout)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgien (Lateinisches Layout)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Griechenland"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Ungarn"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Kroatien"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Israel"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Israel (Phonetisch)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iran"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Island"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italien"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japan (106 Tasten)"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Korea"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Lateinamerika"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litauen (AZERTY - alt)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litauen (AZERTY - neu)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litauen (QWERTY - „number row“)"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litauen (QWERTY - Phonetisch)"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "Lettland"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Mazedonien"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Niederlande"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Polen (QWERTY Layout)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Polen (QWERTZ Layout)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugal"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Kanada (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Rumänien (QWERTZ)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Rumänien (QWERTY)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Russland (YaWERTY)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slowenien"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slowakei (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slowakei (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Serbien (Kyrillisches Layout)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "Indien (Tamilisches Layout)"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Thailändische Tastatur"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Tadschikistan"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Türkei (traditionelles „F“ Modell)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Türkei (modernes „Q“ Modell)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukraine"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Vereinigte Staaten von Amerika (international)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnam QWERTY („number row“)"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslawien (Lateinisches Layout)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr "AltGr-Taste"
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr "Beide Umschalttasten gleichzeitig"
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr "Strg und Umschalttaste gleichzeititg"
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr "CapsLock Taste"
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Strg und Alt gleichzeitig"
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt und Umschalttaste gleichzeitig"
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr "MenĂźtaste"
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr "Linke „Windows“-Taste"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr "Rechte „Windows“-Taste"
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Schleife bei den Einhängpunkten %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Entfernen Sie erst die Logischen Medien\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"Die PCMCIA-UnterstĂźtzung fĂźr 2.2er Kerne wurde eingestellt. Verwenden Sie "
-"bitte einen 2.4er Kern."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Maus"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MausMan/FirstMaus (Seriell)"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Generische PS2 Rad-Maus"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Maus"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMaus"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 Taste"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Generische 2 Tasten Maus"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generisch"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Rad"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "Seriell"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Generische 3 Tasten Maus"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMaus"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MausMan/FirstMaus"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Serie"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MausMan+/FirstMaus+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Serie"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Maus (Seriell, alter C7 Typ)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "Bus-Maus"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 Tasten"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 Tasten"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "keine"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Keine Maus"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Bitte testen Sie Ihre Maus"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Um Ihre Maus zu aktivieren:"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "BEWEGEN SIE IHR MAUS-RAD!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Beenden"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Weiter ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- ZurĂźck"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Ist dies richtig?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Internetverbindung"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Der gebräuchlichste Weg mit ADSL eine Verbindung aufzubauen ist pppoe.\n"
-"Einige Verbindungen benutzen jedoch pptp, andere dhcp.\n"
-"Wenn Sie nicht wissen was Sie brauchen, wählen Sie „pppoe verwenden“"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch USB"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "DHCP verwenden"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "PPPOE verwenden"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "PPTP verwenden"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Welchen DHCP Klienten wollen Sie verwenden?\n"
-"Voreingestellt ist „dhcpcd“"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Ich habe keine Ethernet-Netzwerkkarte finden kĂśnnen, daher kanndieser "
-"Verbindungstyp nicht konfiguriert werden."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Wählen Sie die Netzwerkkarte"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Bitte wählen Sie, ßber welches Netzwerkgerät Sie die \n"
-"Internetverbindung herstellen wollen."
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "Keine Netzwerkkarte gefunden"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Netzwerk konfigurieren"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Bitte geben Sie ihren Rechnernamen an.\n"
-"Einige DHCP-Server benĂśtigen ihn, um korrekt zu arbeiten.\n"
-"Ihr Rechnername sollte auch die Domain beinhalten,\n"
-"etwa „meinrechner.meineabteilung.meinefirma.de“."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Rechnername"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Netzwerk Konfigurationsassistent"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Externes ISDN Modem"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Interne ISDN Karte"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Um welchen Typ ISDN-Verbindung handelt es sich?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Welche ISDN Konfiguration wollen Sie durchfĂźhren?\n"
-"\n"
-"* Die alte Konfiguration verwendet „isdn4net“. Sie \n"
-" enthällt mächtigere Werkzeuge, ist jedoch komplizierter \n"
-" einzurichten und nicht voll standardkonform.\n"
-"\n"
-"* Die neue Konfiguration mit „isdn-light“ ist \n"
-" verständlicher und standardkonformer, sie enthällt \n"
-" jedoch weniger Werkzeuge.\n"
-"\n"
-"Wir empfehlen die „isdn-light“ Variante.\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Neue Konfiguration (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Alte Konfiguration (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN Konfiguration"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Wählen Sie Ihren Netzanbieter.\n"
-"Sollte er nicht aufgeführt sein, wählen Sie „Nicht aufgeführt“"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Europäisches Protokoll"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Europäisches Protokoll (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protokoll fĂźr den Rest der Welt"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protokoll fĂźr den Rest der Welt \n"
-"ohne D-Kanal (Leased Lines)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Welches Protokoll wollen Sie verwenden?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Welchen Kartentyp verwenden Sie?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Keine Ahnung"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA/PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Falls Sie eine ISA-Karte besitzen, sollten die Einstellungen auf dem "
-"nächsten Schirm korrekt sein.\n"
-"\n"
-"Falls Sie eine PCMCIA-Karte besitzen, mĂźssen Sie IRQ und E/A-Bereich Ihrer "
-"Karte kennen.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Abbruch"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Fortfahren"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Bitte wählen Sie Ihre ISDN Karte"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Ich habe eine PCI ISDN-Karte gefunden, \n"
-"kenne sie jedoch nicht. Bitte helfen Sie mir,\n"
-"indem Sie im nächsten Menß eine auswählen."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Ich konnte keine PCI ISDN-Karte finden.\n"
-"Bitte wählen Sie im nächsten Menß eine aus."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihr Modem hängt."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Einwahl Parameter"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Name der Verbindung"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Telefonnummer"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Login ID"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Skript-basiert"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Terminal-basiert"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Name der Domäne"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Erster DNS Server (optional)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Zweiter DNS Server (optional)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Sie kĂśnnen die Verbindung trennen oder sie neu konfigurieren."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Sie kĂśnnen Ihre Internetverbindung neu konfigurieren"
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Sie sind momentan mit dem Internet verbunden."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Sie kĂśnnen eine Internetverbindung aufbauen oder die Verbindung neu "
-"konfigurieren"
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Sie sind momentan nicht mit dem Internet verbunden."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Verbinden"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Verbindung trennen"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Die Verbindung konfigurieren"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Internetverbindung und -einrichtung"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Wir werden nun die Verbindung „%s“ konfigurieren."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Wir werden nun die Verbindung „%s“ konfigurieren.\n"
-"\n"
-"\n"
-"Wählen Sie „OK“, um fortzufahren."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Netzwerk konfigurieren"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Da Sie eine Netzwerkinstallation durchfĂźhren, ist Ihr Netzwerk bereits\n"
-"konfiguriert. Wählen Sie „OK“, um diese Einstellung beizubehalten oder\n"
-"„Abbruch“, um Ihre Internet- und Netzwerk-Konfiguration neu zu\n"
-"konfigurieren.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Willkommen zum Netzwerk Konfigurationsassistent.\n"
-"\n"
-"Ich versuche nun Ihre Internet-/Netzwerk-Verbindung zu konfigurieren.\n"
-"Falls Sie keine Autodetektion wĂźnschen, entfernen Sie bitte die Markierung.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Wählen Sie das Profil, dass eingestellt werden soll"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Autoerkennung benutzen"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Geräteerkennung..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Normale Modem Verbindung"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "an Prot %s gefunden"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN Verbindung"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "%s gefunden"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ADSL Verbindung"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "an Schnittstelle %s gefunden"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Kabel Verbindung"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "Kabel Verbindung gefunden"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "LAN Verbindung"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "Netzwerkkarte(n) gefunden"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Wählen Sie die Verbindung, die Sie konfigurieren wollen"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Sie haben verschiedene Varianten eingerichtet, sich mit dem\n"
-"Internet zu verbinden. Bitte wählen Sie, welche Verbindungsart\n"
-"ich versuchen soll.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Internet-Verbindung"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "MĂśchten Sie die Verbindung bei Betriebssystemstart herstellen?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Netzwerk Konfiguration"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "Das Netzwerk muss neu gestartet werden"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Beim Neustart des Netzwerks trat ein Fehler auf: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Herzlichen GlĂźckwunsch, die Netzwerk-/Internet-Einrichtung ist beendet.\n"
-"\n"
-"Die Konfiguration wird nun in Ihr System integriert.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Es ist sehr empfehlenswert, im Anschluss Ihre X-Oberfläche\n"
-"neu zu starten, um Probleme, die durch die Änderung des\n"
-"Rechnernamens hervorgerufen werden, zu vermeiden."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"Während der Konfiguration traten Fehler auf.\n"
-"Kontrollieren Sie Ihre Verbindung mit „net_monitor“ oder dem Mandrake "
-"Kontrollzentrum. Falls die Verbindung nicht funktioniert, sollten Sie erneut "
-"die Konfguration starten."
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"WARNUNG: Dieses Gerät wurde bereits zum Herstellen einer Internetverbindung "
-"konfiguriert.\n"
-"Drücken Sie einfach „OK“, um die Einstellungen zu behalten.\n"
-"Fall Sie Felder verändern, wird die Konfiguration ßberschrieben."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Bitte geben Sie die IP Parameter dieser Maschine ein.\n"
-"Jeder Eintrag muss als dezimale IP-Adresse in Punktschreibweise \n"
-"angegeben werden (etwa „192.168.1.42“)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigurieren der Netzwerkkarte %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (Treiber %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP Adresse"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Netzmaske"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(BOOTP/DHCP)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Automatische IP-Adressen Zuweisung"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Bitte geben Sie ihren Rechnernamen an.\n"
-"Ihr Rechnername sollte auch die Domain beinhalten,\n"
-"etwa „meinrechner.meineabteilung.meinefirma.de“.\n"
-"Falls Sie ein Gateway verwenden, sollten Sie auch dessen IP-Adresse angeben."
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS-Server"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (etwa %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Gateway Gerät"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Proxies einstellen"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP Proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP Proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Netzwerkkarten-ID Ăźberwachen (sinnvoll fĂźr Laptops)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy muss „http://...“ sein"
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy muss „ftp://...“ sein"
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Internet Konfiguration"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "MĂśchten Sie jetzt versuchen eine Internetverbindung aufzubauen?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Ich teste gerade Ihre Verbindung..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Sie sind jetzt mit dem Internet verbunden."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Aus SicherheitsgrĂźnden wird die Verbindung nun unterbrochen."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Sie sind momentan nicht mit dem Internet verbunden.\n"
-"Versuchen Sie Ihre Internetverbindung wieder zu konfigurieren."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Verbindungskonfiguration"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr ""
-"Bitte fĂźllen Sie die folgen Felder aus \n"
-"bzw. makieren Sie die korrekten Angaben"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "Karten IRQ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Karten Mem (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "Karten E/A"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "Karten IO_0"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "Karten IO_1"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Ihre eigene Telefonnummer"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Name des Providers (z.B. provider.net) "
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Telefonnummer des Providers"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Erster DNS des Providers (optional)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Zweiter DNS des Providers (optional)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Land auswählen"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Wahlmodus"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Verbindungsgeschwindigkeit"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "VerbindungsTimeout (in Sec)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Kennzeichen (Login)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Passwort"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "Fehler beim Einhängen: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Diese Rechnerarchitektur kennt keine erweiterten Partitionen"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Sie haben einen unbenutzten Bereich in Ihrer Partitionstabelle, \n"
-"den ich nicht ansprechen kann. Die einzige LĂśsung ist, dass Sie \n"
-"Ihre primären Partitionen so verschieben, dass der Bereich direkt \n"
-"neben der erweiterten Partition zu liegen kommt."
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Restaurieren aus der Datei %s schlug Fehl: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Fehlerhafte Backup-Datei"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Fehler beim Schreiben in Datei %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Mit Ihrer Platte stimmt etwas nicht!\n"
-"Der vorgenommene Integritätstest schlug Fehl.\n"
-"Das bedeutet, dass jeder Schreibvorgang auf der Platte zu einem \n"
-"unvorhersagbaren Ergebnis fĂźhren wird."
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "unbedingt notwendig"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "wichtig"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "sehr angenehm"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "angenehm"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "eventuell"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Lokaler Drucker"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Entfernter Drucker"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Drucker an CUPS-Server auf der Gegenseite"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Drucker an lpd-Server auf der Gegenseite"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Netzwerkdrucker (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Drucker an SMB/Windows 9x/ME/NT"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Drucker an NetWare Server"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Druckeranschluss URI"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Den Auftrag an ein Kommando weiterleiten"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Unbekanntes Modell"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Lokale Drucker"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Entfernte Drucker"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " an Parallelport \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", USB-Drucker \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", Multifunktionsgerät am Parallelport \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", USB Multifunktionsgerät"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", Multifunktionsgerät am HP JedDirect"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", Multifunktionsgerät"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", drucken auf %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "auf LDP-Server „%s“, Drucker „%s“"
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP Drucker „%s“, Port %s"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "auf Windows-Server „%s“, Freigabe „%s“"
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "auf dem Novell-Server „%s“, Drucker „%s“"
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", mittels Kommando „%s“"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Rohdaten-Drucker (kein Treiber)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(an %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(an diesem Rechner)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Auf CUPS-Server „%s“"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Standard)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Wählen Sie die Drucker-Anbindung"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Wie ist der Drucker mit Ihrem Rechner verbunden?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Falls auf der Gegenseite ein CUPS-Server läuft, mßssen Sie\n"
-"hier keine Einstellungen vornehmen, die Drucker werden \n"
-"automatisch erkannt und Ăźbernommen."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-msgid "CUPS configuration"
-msgstr "CUPS Konfiguration"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-msgid "Specify CUPS server"
-msgstr "CUPS-Server angeben"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"Falls auf der Gegenseite ein CUPS-Server läuft, mßssen Sie\n"
-"hier keine Einstellungen vornehmen; CUPS Server informieren Ihren\n"
-"Rechner Ăźber die von ihnen verwalteten Drucker. Alle Drucker,\n"
-"die Ihr Rechner momentan kennt sind unter „Entfernte Drucker“ aufgeführt.\n"
-"Sollte der entfernte CUPS Server jedoch in einem anderen Subnetz\n"
-"beheimatet sein, mĂźssen Sie mindestens seine IP-Adresse, evtl. auch\n"
-"die Port Nummer angeben. Im lokalen Subnetz kĂśnnen Sie die Felder\n"
-"frei lassen."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Normalerweise wird CUPS automatisch entsprechend Ihres Netzwerks\n"
-"eingerichtet, damit Sie alle Drucker im lokalen Netzwerk verwenden\n"
-"können. Falls das nicht funktioniert, schalten Sie „Automatische\n"
-"CUPS Konfiguration“ aus und editieren Sie die Datei\n"
-"„/etc/cups/cupsd.conf“ selbst. Vergessen Sie nicht, CUPS anschließend\n"
-"neu zu starten (Befehl: „service cups restart“)."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Die Prot Nummer muss eine Zahl sein!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "CUPS-Server-IP"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Port"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Automatische CUPS Konfiguration"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Geräteerkennung..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test der AnschlĂźsse"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Drucker hinzufĂźgen"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Willkommen zum Druckereinrichtungsassistenten\n"
-"\n"
-"Dieser Assistent hilft Ihnen lokale oder entfernte Drucker so einzurichten, "
-"dass dieser Rechner bzw. andere in Ihrem Netzwerk darauf drucken kĂśnnen.\n"
-"\n"
-"Sie werden nur nach den nĂśtigen Informationen Ăźber den Drucker gefragt, um "
-"Ihnen dann Zugriff auf Treiber, Druckoptionen und Anschlussart zu erhalten."
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Lokaler Drucker"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Willkommen zum Druckereinrichtungsassistenten\n"
-"\n"
-"Dieser Assistent hilft Ihnen lokale Drucker einzurichten, dass dieser "
-"Rechner bzw. andere in Ihrem Netzwerk darauf drucken kĂśnnen.\n"
-"\n"
-"Bitte schließen sie Ihre(n) Drucker an, und stellen Sie sicher dass das "
-"Gerät/die Geräte eingeschaltet ist/sind. Betätigen sie die Schaltfläche "
-"„Weiter“, wenn Sie fortfahren möchten bzw. „Abbruch“, wenn Sie jetzt keinen "
-"Drucker einrichten mĂśchten.\n"
-"\n"
-"In seltenen Fällen kann es zum totalen stenenbleien des Rechners fßhren, "
-"wenn Sie eine Drucker-Selbsterkennung durchfĂźhren. Schalten Sie diese "
-"einfach aus, wenn Sie einen Drucker ohne Selbsterkennung durchfĂźhren wollen. "
-"Verwenden Sie den „Expertenmodus“ von PrinterDrake, um einen entfernten "
-"Drucker einzurichten, falls er nicht automatisch aufgefĂźhrt wird."
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Drucker-Selbsterkennung"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"Herzlichen GlĂźckwunsch, Ihr Drucker ist nun installiert und eingerichtet!\n"
-"\n"
-"Sie können nun mit dem „Drucken“ Befehl Ihrer Anwendungen (meistens im "
-"„Datei“-Menü zu finden) drucken.\n"
-"\n"
-"Falls Sie einen Drucker hinzufĂźgen, entfernen oder umbenennen wollen,\n"
-"oder wenn Sie die Standardeinstellungen wie Papierschacht oder \n"
-"Druckqualität) anpassen wollen, wählen Sie „Drucker“ im „Hardware“\n"
-"Bereich des Mandrake Kontrollzentrums."
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Selbsterkennung von Druckern"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"PrinterDrake ist in der Lage Ihre Parallelport- und USB-Drucker selbst\n"
-"zu erkennen und einzurichten. In einigen seltenen Fällen KANN ES JEDOCH\n"
-"ZUM TOTALEN STEHENBLEIBEN DES BETRIEBSSYSTEMS FÜHREN! Verwenden Sie \n"
-"diese Variante also AUF IHR RISIKO!\n"
-"\n"
-"Wollen Sie wirklich, dass PrinterDrake eine Selbsterkennung versucht?"
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Autoerkennung durchfĂźhren"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Drucker selbst einrichten"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "%s gefunden"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Drucker an Parallelport \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "USB-Drucker \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Es wurde kein lokaler Drucker erkannt! Um ihn manuell hinzuzufĂźgen geben Sie "
-"einfach einen Geräte- oder Dateinamen in der Eingabezeile an (Parallele "
-"Anschlßsse: /dev/lp0, /dev/lp1, ..., äquivalent zu LPT1:, LPT2:, ...; Erster "
-"USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Sie mßssen einen Geräte- oder Dateinamen eingeben!"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Kein Lokaler Drucker erkannt!\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Netzwerkdrucker kĂśnnen erst nach der Installation eingerichtet werden. "
-"Wählen Sie „Einstellungen/Hardware/Drucker“ im Mandrake Kontrollzentrum."
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Um Netzwerkdrucker zu installieren wäen Sie bitte „Abbruch“, wechseln in den "
-"„Expertenmoduns“ und wählen erneut „Drucker hinzufügen“."
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"Der folgende Drucker wurde automatisch erkannt, falls es sich nicht um den "
-"Drucker handelt, den Sie einrichten wollen, geben Sie einen Geräte- oder "
-"Dateinamen in der Eingabezeile an."
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"Hier eine Liste aller automatisch erkannten Drucker. Bitte wählen Sie den "
-"gewßnschten Drucker oder geben Sie einen Geräte- oder Dateinamen in der "
-"Eingabezeile an."
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-"Der folgende Drucker wurde automatisch erkannt. Die Einrichtung wird voll "
-"automatisch erfolgen. Sollte Ihr Drucker nicht richtig erkannt worden sein, "
-"oder wollen Sie die Einrichtung selbst vornehmen, wählen Sie „Manuelle "
-"Konfiguration“."
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Hier eine Liste aller automatisch erkannten Drucker. Bitte wählen Sie den "
-"gewĂźnschten Drucker. Die Einrichtung wird voll automatisch erfolgen. Sollte "
-"Ihr Drucker nicht richtig erkannt worden sein, oder wollen Sie die "
-"Einrichtung selbst vornehmen, wählen Sie „Manuelle Konfiguration“."
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Bitte wählen Sie den Anschluss, an dem der Drucker hängt oder geben Sie "
-"einen Geräte- oder Dateinamen in der Eingabezeile an."
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Bitte wählen Sie den Anschluss, an dem Ihr Drucker hängt."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Parallele Anschlßsse: /dev/lp0, /dev/lp1, ..., äquivalent zu LPT1:, "
-"LPT2:, ..., Erster USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/"
-"lp1, ...)."
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Sie mßssen einen Drucker wählen/ein Gerät eingeben!"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Manuelle Konfiguration"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-"Ist Ihr Drucker ein Multifunktionsgerät von HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 mit Scanner)?"
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "Installiere das „HPOJ“-Paket ..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Geräte untersuchen und HPOJ einrichten ..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Installiere das „SANE“-Paket ..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Scannen mit Ihrem HP-Multifunktionsgerät"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "CUPS den Drucker-Port zugänglich machen ..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Lesen der Drucker-Datenbank ..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Optionen fĂźr Netzwerk-Druckerspooler"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Um eine entfernte lpd Warteschlange zu verwenden, mĂźssen Sie den "
-"Rechnernamen des Drucker-Servers sowie den Druckernamen auf diesem Server "
-"angeben, an den die Aufträge ßbertragen werden sollen."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Name des entfernten Rechners"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Name des entfernten Druckers"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Der Name des entfernten Rechners fehlt!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Der Name des entfernten Druckers fehlt!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) Drucker-Parameter"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Um auf einem SMB-Drucker zu drucken sind folgende Angaben erforderlich: Der "
-"SMB-Rechnername des Drucker-Servers (entspricht nicht immer dem TCP/IP-"
-"Rechnernamen des Computers) und mĂśglicherweise die IP-Adresse, Freigabename "
-"fĂźr den Drucker, auf den Sie zugreifen mĂśchten, sowie entsprechender "
-"Benutzername, Passwort und Arbeitsgruppe."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "SMB-Server"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "SMB-Server-IP"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Freigabename"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Arbeitsgruppe"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Sie mĂźssen entweder Den Servernamen oder seine IP-Adresse angeben!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Der Name der Samba-Freigabe fehlt!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Optionen fĂźr NetWare-Drucker"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Um auf einem NetWare-Drucker zu drucken sind folgende Angaben erforderlich: "
-"Name des NetWare-Drucker-Servers (entspricht nicht immer dem TCP/IP-"
-"Rechnernamen des Computers), Name der Drucker-Warteschlange, sowie falls "
-"notwendig, den entsprechenden Benutzernamen samt Passwort."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Drucker-Server"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Name der Druckerwarteschlange"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "Der NCP Servername fehlt!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "Der NCP Warteschlangen-Name fehlt!"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "Optionen fĂźr TCP/Socket-Drucker"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Um einen TCP- oder Socket-Drucker verwenden zu kĂśnnen, mĂźssen Sie auf alle "
-"Fälle dessen Rechnernamen, mÜglicherweise auch den Port, angeben. Bei HP "
-"JetDirect Servern ist dies normalerweise die Port-Adresse 9100, bei anderen "
-"Servern kann es eine andere sein. Schauen Sie im Zweifelsfall in die "
-"Unterlagen Ihrer Hardware."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Rechnername des Druckers"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Der Rechnername des Druckers fehlt!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Druckeranschluss URI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Sie kĂśnnen hier direkt die URI eines Druckers angeben. Die URI muss den CUPS "
-"bzw. den Foomatic Spezifikationen genĂźgen. Es sei hier noch angemerkt, dass "
-"nicht alle URI-Typen von allen Drucksystemem unterstĂźtzt werden."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Sie mĂźssen eine gĂźltige URI eingeben!"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Jeder Drucker benötigt einen Namen (etwa „Drucker“).\n"
-"Beschreibung und Standort mĂźssen nicht ausgefĂźllt werden.\n"
-"Sie dienen nur als Kommentare fĂźr den Anwender."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Druckername"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beschreibung"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Standort"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Vorbereiten der Drucker-Datenbank ..."
-
-#: ../../printerdrake.pm_.c:1112
-msgid "Your printer model"
-msgstr "Ihr Druckermodell"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"PrinterDrake hat den Modellnamen der Selbsterkennung mit den Modellen in der "
-"Datenbank verglichen, um den besten Treiber zu finden. Die Auswahl kann "
-"jedoch falsch sein, etwa wenn Ihr Drucker nicht in der Datenbank vorhanden "
-"ist. Kontrollieren Sie, ob die Wahl korrekt ist und wählen Sie die "
-"Schaltfläche „Das Modell ist richtig“, wenn der Treiber Ihren Wün "
-"entspricht, andernfalls betägen Sie „Modell auswählen“, um die Auswahl "
-"selbst vorzunehmen.\n"
-"\n"
-"Folgender Drucker wurde gefunden:\n"
-"\n"
-"%s"
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-msgid "The model is correct"
-msgstr "Das Modell ist richtig"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-msgid "Select model manually"
-msgstr "Modell auswählen"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Auswahl des Druckertyps"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Über welchen Druckertyp verfügen Sie?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Kontrollieren Sie bitte, ob PrinterDrake Ihern Drucker korrekt erkannt hat. "
-"Falls die Markierung auf einem falschen Gerät oder auf „Rohdaten-Drucker“ "
-"steht, suchen Sie bitte selbst Ihren Drucker in der Liste."
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Falls Ihr Drucker nicht aufgefßhrt ist wählen Sie bitte ein kompatibles bzw "
-"ähnliches Modell (Fßr Einzelheiten schauen Sie bitte in Ihr Druckerhandbuch)."
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "OKI Win-Drucker Konfiguration"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Sie versuchen, eine OKI Win-Laserdrucker einzurichten. Da diese Drucker ein "
-"sehr eigenwilliges Protokol verwenden, funktionieren sie nur, wenn sie am "
-"ersten Parallelport angeschlossen sind. Sollte Ihr Druker an einer anderen "
-"Schnittstelle oder an einer Printserver-Box hängen, schließen Sie ihn bitte "
-"an den ersten Parallelport, bevor Sie versuchen eine Testseite zu drucken ..."
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark Tintenstrahl-Konfiguration"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Der Lexmark Tintenstrahl-Druckertriber unterstĂźtzt nur lokale Drucker, keine "
-"Drucker auf entfernten Rechnern oder an Printserver-Boxen. Bitte schließen "
-"Sie den Druker direkt an Ihren Rechner oder richten Sie ihn auf dem Rechner "
-"ein, an den er angeschlossen ist."
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-"Um mit Ihrem Lexmark Tintenstrahldrucker drucken zu kĂśnnen, benĂśtigen Sie "
-"die Treiber, die von Lexmark bereitgestellt werden (http://www.lexmark."
-"com/). Gehen Sie auf die amerikanische Seite und wälen Sie die Schaltfäe "
-"„Drivers“. Wählen Sie dann das Drukermodell und geben Sie „Linux“ als "
-"Bertiebssystem an. Sie erhalten die Treiber als RPM-Paket oder als "
-"Shellskript mit interaktiver Grafikinstallation. Sie mĂźssen die Einrichtung "
-"nicht mit dem Lexmark Klicktool vornehmen. Sie kĂśnnen direkt nach der Lizenz "
-"auf „Abbruch“ drücken. Drucken Sie dann Druckkopf-Einrichtungsseiten mit "
-"„lexmarkmaintain“ und justieren Sie damit den Druckkopf."
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Standard-Einstellungen des Druckers\n"
-"\n"
-"Sie sollten sicherstellen, dass Papiergröße, Farbangaben, Druckqualität "
-"sowie Informationen zu vorhandenem Speicher, Duplexeinheit und Papierfächern "
-"richtig eingestellt sind. Es sei auch angemerkt, dass häufig mit steigender "
-"Druckqualität die Druckgeschwindigkeit sinkt."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Der Parameter %s muss eine Zahl sein!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Der Parameter %s muss eine Zahl sein!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Der Parameter %s ist yu groß oder zu klein!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Möchten Sie diesen Drucker („%s“)\n"
-"als Standarddrucker verwenden?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Testseiten"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Bitte wählen Sie, welche Testseiten Sie drucken wollen.\n"
-"\n"
-"Bemerkung: Der Druck der Foto-Testseite dauert häufig extrem lange. Bei "
-"Laserdruckern mit wenig Speicher kann es auch vorkommen, dass sie gar nicht "
-"gedruckt wird. Normalerweise sollte es ausreichen, die Standard-Testseiten "
-"auszudrucken."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Keine Testseiten"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Drucken"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Standard-Testseite"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Alternative Testseite (US-Format - „Letter“)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Alternative Testseite (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Foto-Testseite"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "Keine Testseite(n) drucken"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Druck der Testseite(n) ..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Die Testseite(n) wurden an den Drucker gesandt.\n"
-"Es kann einen Augenblick dauern, bevor der Drucker seine Arbeit aufnimmt.\n"
-"Druckstatus:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Die Testseite(n) wurden an den Drucker gesandt.\n"
-"Es kann einen Augenblick dauern, bevor der Drucker seine Arbeit aufnimmt.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "War der Ausdruck korrekt?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Rohdaten-Drucker"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Sie können sowohl den Befehl „%s <datei>“ verwenden, wenn Sie in einer "
-"Konsole die Datei „<datei>“ drucken wollen, als auch ein grafisches "
-"Hilfsprogramm verwenden: „xpp <datei>“ oder „kprinter <datei>“. Die "
-"grafischen Hilfsprogramme erlauben Ihnen auf einfache Weise den richtigen "
-"Drucker zu wählen und die notwendigen Druckerparameter anzugeben.\n"
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Sie können diese Befehle auch in der „Druck-Kommando“-Zeile des Druckdialogs "
-"zahlreicher Anwendungen angeben, lassen Sie jedoch den Dateinamen weg, da "
-"die zu druckende Datei von der Anwendung geliefert wird.\n"
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"Der Befehl „%s“ erlaubt es Ihnen auch zahlreiche Einstellungen für einen "
-"bestimmten Druckauftrag zu ändern. Geben Sie die gewßnschten Angaben einfach "
-"in der Kommandozeile mit an, etwa: „%s <Datei>“. "
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"Um alle existierenden Optionen des Druckers zu erfahren, lesen Sie entweder "
-"die unten angegebene Liste oder betätigen Sie die Schaltfläche „Liste der "
-"Drucker-Optionen“. %s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Hier die Liste vorhandener Drucker-Parameter des aktuellen Druckers:\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Verwenden Sie den Befehl „%s <Datei>“, um die Datei <Datei> in der "
-"Kommandozeile auszudrucken.\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Sie können diesen Befehl auch im „Druckkommando“-Feld vieler Programme "
-"angeben. Tragen Sie bitte keinen Dateinamen ein, da dieser vom Programm "
-"ergänzt wird.\n"
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Um eine Liste der Drucker-Parameter Ihres Druckers zu erhalten, betätigen "
-"Sie bitte die Schaltfläche „Liste der Drucker-Optionen“."
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Verwenden Sie einen der Befehle „%s <Datei>“ oder „%s <Datei>“, um die Datei "
-"<Datei> in der Kommandozeile auszudrucken.\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Sie können auch das Grafikwerkzeug „xpdq“ zum setzen der Optionen und "
-"Verwalten der Druckjobs verwenden.\n"
-"Falls Sie KDE als Arbeitsoberfläche nutzen, haben Sie eine Panik-Abschaltung "
-"in Forma des Arbeitsflächensymbols „STOP Printer!“, dass sofort alle "
-"Druckaufträge anhä, wenn Sie es betägen. Das kann beispielsweise dann "
-"hilfreich sein, wenn Sie einen Papierstau in Ihrem Drucker haben.\n"
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Die Befehle „%s“ und „%s“ erlauben es Ihnen ebenfals die Optionen eines "
-"spezeiellen Druckjobs zu konfigurieren. FĂźgen Sie einfach die gewĂźnschten "
-"Einstellungen in der Kommandozeile ein, etwa „%s <Datei>“.\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Schließen"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Drucken/Scannen mit „%s“"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Drucken auf Drucker „%s“"
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Liste der Drucker-Optionen"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Ihr HP-Multifunktionsgerät wurde automatisch auch zum Scannen eingerichtet. "
-"Sie können nun mit „scanimage“ („scanimage -d hp:%s“ um den Scanner "
-"auszuwählen, falls Sie mehrere angeschlossen haben) aus der Kommandozeile "
-"oder mit „xscanimage“ bzw. „xsane“ - wenn Sie eine grafisches Werkzeug "
-"verwenden wollen - scannen. Wenn sie mit dem GIMP arbeiten wollen, kĂśnnen "
-"Sie dies ebenfalls tun. Wählen Sie einfach im Menü „Datei/Holen“ den "
-"entsprechenden Eintrag. Sie können sich auch mittels „man scanimage“ bzw "
-"„man sane-hp“ in der Kommandozeile weitere Informationen ausgeben lassen.\n"
-"\n"
-"Verwenden Sie für dieses Gerät nicht „ScannerDrake“!"
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Ihr HP-Multifunktionsgerät wurde automatisch auch zum Scannen eingerichtet. "
-"Sie können nun in der Kommandozeile mittels „ptal-hp %s scan ...“ scannen. "
-"Zur Zeit existieren leider keine grafischen Werkzeuge, mit deren Hilfe Sie "
-"Scannen kÜnnen - Ihr Multifunktionsgerät wird noch nicht unterstßtzt. "
-"Weitetre Informationen finden Sie in der Datei „/usr/share/doc/hpoj-0.8/ptal-"
-"hp-scan.html“ auf Ihrem Rechner. Falls Sie einen HP LaserJet 1100 oder 1200 "
-"haben, kĂśnnen Sie nur scannen, wenn Sie die Scanner-Option installiert "
-"haben.\n"
-"\n"
-"Verwenden Sie für dieses Gerät nicht „ScannerDrake“!"
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Lesen der Treiber-Datenbank ..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Drucker-Einstellung transferieren"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Sie können die Druckerkonfiguration, die Sie für den Spooler „%s“ "
-"vorgenommen haben für „%s“, ihren aktuellen Spooler, verwenden. Alle Daten "
-"(Name, Beschreibung, Standort, Verbindungsart und standard "
-"Optionseinstellungen) werden Ăźbernommen, Druckjobs in der alten "
-"Warteschlange gehen jedoch verloren.\n"
-"Nicht alle Warteschlangen kĂśnnen Ăźbernommen werden:\n"
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS unterstĂźtzt keine Druker an Novel Servern oder Drucker, die ihre Daten "
-"in ein frei gewähltes Kommando senden.\n"
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ unterstĂźtzt nur lokale Drucker, entfernte LPD Drucker und Socket/TCP "
-"Drucker.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD und LPRng unterstĂźkeine IPP Drucker.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Warteschlangen, die nicht mit diesem Programm oder „foomatic-configure“ "
-"ertellt wurden, kĂśnnen nicht Ăźbertragen werden."
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Drucker, die mit den PPD-Dateien ihrer Hersteller oder CUPS-spezifischen "
-"Treibern eingerichtet wurden, kĂśnnen nicht Ăźbertragen werden."
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Markieren Sie die Druckerwarteschlangen, die sie Ăźbertragen wollen und "
-"betätigen Sie die Schaltfläche „Übertragen“."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Druckerdaten nicht Ăźbertragen"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Übertragen"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Es existiert bereits ein Drucker mit Namen „%s“ unter %s.\n"
-"Durch betätigen der Schaltfäche „Übertragen“ können Sie ihn\n"
-"Ăźberschreiben. Sie kĂśnnen dem Drucker auch einen neuen \n"
-"Namen geben oder ihn einfach Ăźberspringen."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"Druckernamen sollten nur Buchstaben, Ziffern und den Unterstrich unterhalten"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Der Drucker „%s“ existiert bereits. Wollen Sie ihn wirklich \n"
-"ersetzen?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Neuer Druckername"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "Übertragen von „%s“ ..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Sie haben Ihren alten Standarddrucker („%s“) übertragen, soll es auch Ihr "
-"Standarddrucker unter dem neuen Drucksystem „%s“ werden?"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Aktualisieren der Druckerdaten ..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Konfiguration eines entfernten Druckers"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Netzwerk starten ..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Netzwerk jetzt konfigurieren"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "Ihr Netzwerk ist nicht konfiguriert"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Sie wollen einen entfernten Drucker einrichten. Sie benĂśtigen dafĂźr ein "
-"funktionerendes Netzwerk, aber Ihr Netzwerk ist noch nicht eingerichtet. "
-"Sollten Sie dennoch fortfahren, ohne Ihr Netzwerk einzurichten, ist der "
-"Drucker hinterher nicht zu verwenden. Wie wollen Sie fortfahren?"
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Weiter ohne Netzwerkkonfiguration"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-"Das von Ihnen während der Installation eingerichtete Netzwerk kann jetzt "
-"nicht gestartet werden. Testen Sie bitte, ob es nach einem Neustart zur "
-"VerfĂźgung steht. Falls nicht, berichtigen Sie die Einstellungen im Mandrake "
-"Kontrollzentrum unter „Netzwerk & Internet/Verbindung“. Versuchen Sie "
-"anschließend erneut den Drucker mittels „Hardware/Drucker“im Kontrollzentrum "
-"einzurichten."
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Es wurde kein aktives Netzwerk gefunden und es konnte auch keine "
-"Netzwerkverbindung hergestellt werden. Kontrollieren Sie bitte Ihre Hardware "
-"und Ihre Softwareeinstellngen. Versuchen Sie anschließend erneut den "
-"entfernten Drucker einzurichten."
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Drucksystem neu starten ..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "Hoch"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "Paranoid"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Installation eines Drucksystems in Sicherheitsebene %s"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Sie sind dabei das Drucksystem %s auf einem Rechner mit Sicherheitsebene %s "
-"zu installieren.\n"
-"\n"
-"Dieses Drucksystem läuft als Dämon (Hintergrundprozess), der auf "
-"Druckaufträge wartet, um sie abzuarbeiten. Da der Dämon auch fßr andere "
-"Rechner Ihres Netzwerks erreichbar ist,schaffen Sie damit einen mĂśglichen "
-"Angriffspunkt. Aus SicherheitsgrĂźnden werden in dieser Sicherheitsebene "
-"standardmäßig nur einige ausgewählte Dämons gestartet.\n"
-"\n"
-"Wollen Sie wirklich dieses Drucksystem auf diesem Rechner installieren?"
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Drucksystem beim BS-Start aktivieren"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Das Drucksystem (%s) wird nicht automatisch beim Betriebssystemstart "
-"aktiviert.\n"
-"Es ist mĂśglich, dass der Start durch den Wechsel in eine hĂśhere "
-"Sicherheitsebene deaktiviert wurde, da das Drucksystem einen potentienllen "
-"Angriffspunkt darstellt.\n"
-"\n"
-"Wollen sie den automatischen Start des Drucksystems wieder herstellen?"
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Suche nach installierter Software"
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "Entfernen von LPRng ..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "Entfernen des LPD ..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Wählen Sie das Drucksystem"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Welches Drucksystem (Spooler) wollen Sie verwenden?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Konfigurieren von Drucker „%s“ ..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "Installieren des Pakets Foomatic ..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Drucker-Optionen"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "PrinterDrake vorbereiten ..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-msgid "Configuring applications..."
-msgstr "Anwendungen konfigurieren ..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "MĂśchten Sie einen Drucker konfigurieren?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Drucksystem: "
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "PrinterDrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Die folgenden Drucker sind bereits eingerichtet. FĂźhren Sie einen "
-"Doppelklick auf einem aus, um ihn zu ändern, als Standarddrucker zu "
-"verwenden, Informtionen Ăźber ihn zu erhalten oder einen entfernten CUPS-"
-"Server fßr Star/OpenOffice zugänglich zu machen."
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Die folgenden Drucker sind bereits eingerichtet. FĂźhren Sie einen "
-"Doppelklick auf einem aus, um ihn zu ändern, als Standarddrucker zu "
-"verwenden oder Informtionen Ăźber ihn zu erhalten."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "Aktualisiere Druckerliste (um alle entfernten CUPS-Drucker anzuzeigen)"
-
-#: ../../printerdrake.pm_.c:2464
-msgid "Change the printing system"
-msgstr "Drucksystem ändern"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Normaler Modus"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "MĂśchten Sie einen weiteren Drucker einrichten?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Drucker-Konfiguration ändern"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Drucker %s\n"
-"Was wollen Sie an diesem Drucker ändern?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "AusfĂźhren!"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Art der Druckeranbindung"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Druckername, Beschreibung, Standort"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Druckerproduzent, Modell, Treiber"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Druckerproduzent, Modell"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Als Standarddrucker verwenden"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Diesen Drucker fĂźr StarOffice/OpenOffice.org hinzufĂźgen"
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Diesen Drucker fĂźr StarOffice/OpenOffice.org entfernen"
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Testseite(n) drucken"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Wie dieser Drucker genutzt werden kann"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Drucker entfernen"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Alten Drucker „%s“ entfernen ..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Standarddrucker"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Der Drucker „%s“ ist jetzt Ihr Standarddrucker“"
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Drucker fĂźr StarOffice/OpenOffice.org hinzufĂźgen"
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-"Der Drucker „%s“ wurde erfogrich zu StarOffice/OpenOffice.org hinzugefügt."
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr "Fehler beim Hinzufügen von „%s“ für StarOffice/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Drucker fĂźr StarOffice/OpenOffice.org entfernen"
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-"Der Drucker „%s“ wurde erfogrich für StarOffice/OpenOffice.org entfernt."
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "Fehler beim Entfernen von „%s“ für StarOffice/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Möchten Sie den Drucker „%s“ wirklich entfernen?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Drucker „%s“ entfernen ..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Proxies einstellen"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Herzlich willkommen zum Proxy Konfigurationsassistenten.\n"
-"\n"
-"Hier kĂśnnen Sie Ihre HTTP und FTP Proxies mit oder ohne\n"
-"Anmeldung und Passwortabfrage einrichten\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Bitte fĂźllen Sie die HTTP Proxy Informationen aus\n"
-"Falls sie keinen HTTP Proxy wolen, lassen Sie einfach\n"
-"alle Felder leer."
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "Port"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "Die URL muss mit „http:“ beginnen"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Die Prot Nummer muss eine Zahl sein!"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Bitte fĂźllen Sie die FTP Proxy Informationen aus\n"
-"Falls sie keinen FTP Proxy wolen, lassen Sie einfach\n"
-"alle Felder leer."
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Die URL muss mit „ftp:“ beginnen"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Bitte geben Sie - falls nĂśtig - Kennzeichen und Passwort fĂźr den Proxy \n"
-"an. Lassen Sie die Felder leer, falls Sie sie kein Kennzeichen/Passwort \n"
-"wollen."
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "Kennzeichen"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "Passwort"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "Passwort (erneut)"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Die PasswĂśrter stimmen nicht Ăźberein. Bitte versuchen Sie es eneut!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Ich kann keine Partition zu dem _formatierten_ RAID md%d hinzufĂźgen"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Ich kann Datei „%s“ nicht schreiben"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid schlug Fehl"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid schlug Fehl (MĂśglicherweise fehlen die RAID-Tools)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Nicht genĂźgend Partitionen fĂźr RAID Level %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Startet das ALSA (Advanced Linux Sound Architecture) Sound System"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr ""
-"Mit dem Dienst anacron kĂśnnen cron-Prozesse auch zu anderen als den \n"
-"vorgegebenen Zeiten gestartet werden. Dies ist vor Allem dann \n"
-"sinnvoll, wenn Ihr Rechner nicht rund um die Uhr läuft, da sonst \n"
-"Prozesse, die etwa zwischen Mitternacht und 6:00 Uhr gestartet \n"
-"werden sollten, nie ausgefĂźhrt wĂźrden."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"Der APM-Dienst (apmd) wird von Laptops verwendet, um den Ladestatus \n"
-"der Batterie durch den Syslog-Dienst erfassen zu lassen. Mit seiner \n"
-"Hilfe kann man den Rechner auch rechtzeitig herunterfahren lassen, \n"
-"bevor die Batterien leer sind."
-
-#: ../../services.pm_.c:18
-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 ""
-"Dieser Dienst startet Applikationen der at-Warteschlange wenn der \n"
-"dafßr vorgesehene Zeitpunkt erreicht ist. Lässt die Systemauslastung \n"
-"es zu, werden sog. Batch-Anwendungen gestartet."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"Der Befehl cron wird unter UNIX/Linux dazu verwendet, Benutzerprogramme \n"
-"zu vordefinierten regelmäßigen Zeiten abzuarbeiten. \n"
-"Der Dienst vixie cron erweitert dieses Konzept um weitere Funktionen, etwa \n"
-"ein verbessertes Sicherheitskonzept und einfachere Konfiguration."
-
-#: ../../services.pm_.c:23
-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 ""
-"Der GPM-Dienst stellt Ihnen MausunterstĂźtzung auf Text-Konsolen zur \n"
-"VerfĂźgung. Sie erhalten damit die MĂśglichkeit Ausschneiden und \n"
-"EinfĂźgen von Text wie unter X zu verwenden. In einigen Applikationen \n"
-"kĂśnnen Sie auch Pop-Up-MenĂźs damit bedienen."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake fĂźhrt Hardwaretests durch, und konfiguriert (falls nĂśtig) \n"
-"neue/geänderte Hardware."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache ist ein World-Wide-Web-Server. Mit seiner Hilfe kĂśnnen Sie \n"
-"HTML-Dateien ßber HTTP publizieren. Der Server ist CGI-fähig."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Der Internet Superserver-Dienst (inetd) startet je nach Bedarf \n"
-"etliche andere Internet-Dienste, so etwa telnet, ftp, rsh oder \n"
-"rlogin. Dies jedoch nur, wenn die entsprechenden Dienste in der \n"
-"Datei „/etc/inetd.conf“ freigeschaltet sind. \n"
-"Schalten Sie diesen Dienst ab, kĂśnnen Sie keine der von inetd \n"
-"verwalteten Dienste mehr zugreifen."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Startet Paketfilterung fĂźr Linux 2.2er Kerne, um Ihren Rechner \n"
-"durch eine Firewall vor Angriffen aus dem Netz zu schĂźtzen."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Dieser Dienst lädt die Tastaturbelegung, die in der Datei \n"
-"„/etc/sysconfig/keyboard“ angegeben ist. Mittels „kbdconfig“ \n"
-"kÜnnen Sie diese Einstellung ändern. Schalten Sie diesen Dienst ab, \n"
-"mßssen Sie ab dem nächsten Systemstart mit der amerikanischen \n"
-"Tastatur vorlieb nehmen."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Automatische Neuerstellung der Kern-Header in /boot fĂźr\n"
-"/usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-"Automatische Erkennung und Konfiguration neuer Hardware während des \n"
-"Betriebssystemstarts."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf versucht beim Betriebssystemstart einige Verwaltungsaufgaben \n"
-"auszufĂźhren."
-
-#: ../../services.pm_.c:43
-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 ""
-"Der Dienst lpd ist der Drucker-Server Ihres Rechners. Wenn Sie \n"
-"diesen Dienst abschalten werden Druckaufträge nicht mehr abgearbeitet.\n"
-"Hauptaufgabe von lpd ist es, Druckaufträge an den jeweiligen \n"
-"zuständigen Drucker (dieser kann auch einen anderen Rechner hängen) \n"
-"zu senden."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Der Linux Virtual Server kann verwendet werden, um um ein \n"
-"hochperformanten HochverfĂźgbarkeitsserver aufzusetzen."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"Der Dienst named (BIND) stellt ihnen einen Server zur VerfĂźgung, \n"
-"mit dessen Hilfe Rechnernamen in IP-Adressen umgesetzt werden. \n"
-"Ein solcher Dienst wird „Domain Name Server“ (DNS) genannt. \n"
-"Falls Sie nur einen Rechner besitzen, mit dem Sie per Modem/ISDN ins \n"
-"Netz gehen, benĂśtigen Sie diesen Dienst nicht."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Dieser Dienst ist verantwortlich dafĂźr, dass alle Netzwerk-Dateisysteme \n"
-"(NFS) bei Systemstart eingehängt werden, etwa SMB (Lan Manager/Windows) \n"
-"und NCP (NetWare)."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Dieser Dienst aktiviert Netzwerkgeräte (etwa Netzwerkkarten), die \n"
-"so konfiguriert wurden, dass sie ab dem Systemstart zur VerfĂźgung \n"
-"stehen sollen."
-
-#: ../../services.pm_.c:52
-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 ist ein geläufiges Protokoll in TCP/IP Netzwerken um Dateien \n"
-"durch verschiedene Rechner gemeinsam nutzen zu kĂśnnen. \n"
-"Dieser Dienst stellt Ihnen einen solchen Server zur VerfĂźgung. \n"
-"Konfiguriert wird er in der Datei „/etc/exports“."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS ist ein geläufiges Protokoll in TCP/IP Netzwerken um Dateien \n"
-"durch verschiedene Rechner gemeinsam nutzen zu kĂśnnen. \n"
-"Der Dienst nfslock stellt Ihnen hierfĂźr Locking-Mechanismen zur \n"
-"VerfĂźgung, damit eine Datei nicht durch mehrere Personen \n"
-"gleichzeitig verändert werden kann."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Schaltet beim Betriebssystemstart automatisch die „Num“-Taste für \n"
-"die virtuellen Konsolen und XFree ein."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "UnterstĂźtzung fĂźr den OKI 4w und kompatible WinDrucker."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA wird normalerweise in Laptops verwendet, um Ethernet-Karten \n"
-"oder Modems verwenden zu kĂśnnen. Dieser Dienst wird nur gestartet, \n"
-"wenn Sie ihn vorher konfiguriert haben. Daher schadet es nicht, \n"
-"wenn Sie ihn auf Rechnern aktivieren, auf denen er nutzlos ist."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Mittels portmapper werden RPC-Verbindungen verwaltet, die etwa von \n"
-"den Protokollen NFS und NIS verwendet werden. Auf Rechnern, die \n"
-"solche Server (RPC-basierte) beherbergen, muss dieser Dienst \n"
-"aktiviert sein."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix ist ein E-Mail Transport-Dienst. Mit seiner Hilfe werden \n"
-"E-Mails zwischen verschiedenen Rechnern weitergeleitet."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Dieser Dienst speichert beim Herunterfahren des Rechners den Zustand \n"
-"des Zufallszahlengenerators, um ihn beim nächsten Systemstart \n"
-"wieder zu restaurieren. Die Qualität erzeugter Zufallszahlen \n"
-"wird dadurch verbessert."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Weist Roh-Geräten ein blockorientiertes Gerät (etwa eine\n"
-"Festplattenpartition) zu. Dies wird fĂźr Anwendungen wie\n"
-"etwa ORACLE benĂśtigt"
-
-#: ../../services.pm_.c:71
-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 ""
-"Der Dienst routed ermĂśglicht ein automatisches Aktualisieren der \n"
-"IP-Routing-Tabellen mittels RIP Protokoll. Zwar wird RIP in kleinen \n"
-"Netzwerken verwendet, jedoch wird fĂźr komplexere Netzwerke ein \n"
-"anderer Dienst benĂśtigt."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Der Dienst rstat ermĂśglicht es Anwendern anderer Rechner des \n"
-"Netzwerks Preformance-Daten dieses Rechners zu erhalten."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Der Dienst rusers ermĂśglicht es Anwendern anderer Rechner \n"
-"herauszubekommen, welche Benutzerkennzeichen auf diesem Rechner \n"
-"gerade angemeldet sind."
-
-#: ../../services.pm_.c:78
-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 ""
-"Der Dienst rwho erlaubt es Benutzern entfernter Rechner eine Liste\n"
-"momentan angemeldeter Benutzerkennzeichen Ăźbermittelt zu bekommen \n"
-"(ähnlich wie finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Starten des Sound-Systems Ihres Rechners"
-
-#: ../../services.pm_.c:81
-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 ""
-"Mittels Syslog versuchen zahlreiche Dienste Verlaufsprotokolle \n"
-"in vorgesehene Dateien zu sichern. Es ist sinnvoll Syslog immer \n"
-"aktiviert zu haben."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Lädt die Treiber fßr Ihre USB-Geräte."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Dieser Dienst startet den X-Font-Server. Er ist notwendig, \n"
-"damit XFree gestartet werden kann!"
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-"Wählen Sie, welche Dienste\n"
-"automatisch beim Systemstart\n"
-"aktiviert werden sollen"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Drucken"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Gemeinsamer Dateizugriff"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "System"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Fernwartung"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Datenbankserver"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Dienste: %d aktiviert von %d registrierten."
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Dienste"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "aktiv"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "gestoppt"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Dienste und Dämonen"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Es existieren leider keine\n"
-"weiteren Informationen zu\n"
-"diesem Dienst."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Bei BS-Start"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Start"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Stopp"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Danke, dass Sie sich fĂźr Mandrake Linux 8.2 entschieden haben"
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr "Willkommen in der Open Source Welt."
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-"Der Erfolg von MandrakeSoft basiert auf dem Prinzip freier Software. Ihr "
-"neues Betriebssystem ist das Ergebnis einer weltweiten Zusammenarbeit der "
-"GNU/Linux-Gemeinde."
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "Betreten Sie die Welt der Freien Software"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-"Wollen Sie die Open Source Gemeinde kennen lernen? Ein Teil von ihr werden? "
-"Beteiligen Sie sich an den Diskussionsforen, die Sie auf unseren „Community“-"
-"Seiten finden."
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet und Messaging"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-"Mandrake Linux 8.2 stellt Ihnen die beste Softwareauswahl bereit, um auf "
-"alles, was das Internet bietet, zugreifen zu kĂśnnen. Surfen Sie im Web mit "
-"Mozilla oder Konqueror, bearbeiten Sie E-Mails und verwalten Sie persĂśnliche "
-"Informationen mit Evolution, KMail oder zahlreichen anderen Programmen."
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedia und Grafik"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-"Mandrake Linux 8.2 reizt Ihren Multimediarechner voll aus! Verwenden Sie die "
-"neuste Software, um Audiodateien abzuspielen, Ihre Fotos und Bilder zu "
-"bearbeiten sowie Videos abzuspielen..."
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Entwicklungsplattform"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-"Mandrake Linux 8.2 ist die ultimative Entwicklungsplattform. Nutzen Sie die "
-"volle Power des GNU C Compilers sowie der besten Open Source "
-"Entwicklungsumgebungen."
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Mandrake Kontrollzentrum"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-"Das Mandrake Linux 8.2 Kontrollzentrum ist der zentrale Ort, an dem Sie Ihr "
-"System nach Ihren WĂźnschen anpassen kĂśnnen."
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "Arbeitsumgebungen"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-"Mandrake Linux 8.2 bietet 11 verschiedene grafische Arbeitsumgebungen und "
-"Windowmanager. Darunter GNOME 1.4, KDE 2.2.2 und Window Maker 0.8"
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Server Software"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-"Verwandeln Sie Ihren Rechner mit ein paar Mausklicks in einen "
-"leistungsfähigen Server: Web, E-Mail, Firewall, Router, Datei- und "
-"Druckserver, ..."
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Spiele"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-"Mandrake Linux 8.2 bietet die besten Open Source Spiele - Arcade, Baller, "
-"Karten, Sport, Strategie, ..."
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-"Sie wollen GNU/Linux in eine einfache, schnelle und vor Allem freie Weise "
-"erlernen? MandrakeSoft bieten ein freies Linux Training sowie einen Weg "
-"Ihren Fortschirtt mit unserem Online Trainingcenter „MandrakeCampus“ zu "
-"testen."
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-"Qualitativ hochwertiger Support aus der GNU/Linux Gemeinde und von "
-"MandrakeSoft ist nur einen Mausklick weit entfernt. Sind Sie bereits ein "
-"„alter Hase“ in Sachen GNU/Linux, werden Sie ein Experte, und teilen Sie Ihr "
-"Wissen mit Anderen auf unserer Support-Seite."
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-"Unsere Consultants sind bereit, Ihnen fĂźr alle Ihre IT-Projekte individuelle "
-"LĂśsungen anzubieten, die genau Ihren BedĂźrfnissen entsprechen. MandrakeSoft "
-"als erfahrener Linux-Distributor bietet eine echte IT-Alternative fĂźr Ihr "
-"Unternehmen."
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-"Unsere Linux KomplettlĂśsungen, Sonderangebote und Mandrake Fan-Artikel "
-"bekommen Sie in unserem E-Shop"
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-"Weitere Informationen Ăźber MandrakeSofts professionelle Dienstleistungs- und "
-"gewerbliche Angebote erhalten Sie unter:"
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact/"
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Pakete Installieren ..."
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Ich kann Ihre Partitionstabelle nicht lesen, sie ist fehlerhaft :-(\n"
-"Um fortfahren zu kĂśnnen setze ich die fehlerhaften Partitionen zurĂźck"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Fehler!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Ich kann die benötigte Abbild-Datei „%s“ nicht finden."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Auto-Installationskonfigurator"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Sie sind dabei, eine Auto-Installationsdiskette zu erstellen. Diese\n"
-"MÜglichkeit ist gefährlich und sollte mit Vorsicht verwendet werden!\n"
-"\n"
-"Sie kĂśnnen mit diesem Werkzeug die Installation, die Sie auf Ihrem\n"
-"Rechner erneut durchspielen, wobei Sie an einigen Stellen interaktiv\n"
-"Einfluss nehmen zu kĂśnnen.\n"
-"\n"
-"Aus SicherheitsgrĂźnden wird die Partitionierung und Formatierung nie\n"
-"automatisch durchgefĂźhrt.\n"
-"\n"
-"Wollen Sie fortfahren?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Automatische Konfiguration der Schritte"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Bitte wählen Sie fßr jeden Schritt, ob er wie bei Ihrer Installation "
-"vorgenommen werden soll, oder ob Sie ihn manuell durchfĂźhren wollen."
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Willkommen.\n"
-"\n"
-"Die Parameter der Autoinstallation sind in den Abschnitten rechts verfĂźgbar."
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Gratuliere!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Die Diskette wurde erfolgreich erstellt.\n"
-"Sie kĂśnnen die Installation nun automatisch durchfĂźhren."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Auto-Installation"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Eintrag hinzufĂźgen"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Letzten Eintrag entfernen?"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Dämon Report\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "Vortschritt"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "Systemdateien sichern ..."
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "Backup-Dateien auf der Festplatte ..."
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "Benutzerdateien sichern ..."
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Festplattenbackup in Bearbeitung ..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Andere Dateien sichern ..."
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"Dateiliste per FTP senden: %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) FTP Verbindungsprobleme: Es war nicht mĂśglich, Ihre Dateien per FTP zu "
-"Ăźbertragen.\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Fehler beim Verschicken der Mail. \n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "Dateiauswahl"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-"Wählen Sie die Dateien oder Verzeichnisse und betätigen Sie die Schaltfläche "
-"„Hinzufügen“"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Bitte wählen Sie alle benÜtigten Parameter.\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Diese Optionen kön alle Ihre Dateien im Verzeichnis „/etc“ sichern und "
-"wiederherstellen\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Sichern Ihrer Systemdateien (Verzeicnis „/etc“)"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Inkrementelles Backup (alte Backups nicht Ăźberschreiben)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Keine kritischen Dateien (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Mit dieser Option sind Sie in der Lage, jede Version Ihres \n"
-"„/etc“ Verzeichnisses wiederherzustellen."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-"Bitte wählen Sie alle Kennzeichen, deren Dateinen mitgesichert werden sollen."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "Die Browser-Caches nicht archivieren."
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Inkrementelle Archivierung (alte Archive nicht ersetzen)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Markierte entfernen"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "Benutzer"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "FTP-Verbindung zum erstellen der Sicherungskopien verwenden"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Rechnernamen oder IP eingeben."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-"Bitte geben Sie das Verzeichnis an,\n"
-" in dem die Archive erstellt werden sollen."
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Bitte geben Sie Ihr Benutzerkennzeichen ein"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Bitte geben Sie Ihr Passwort ein"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Passwort behalten"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP Verbindung"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Sichere Verbindung"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "Sicherungskopie auf CD/DVDROM"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Bitte wählen Sie Ihren CD-Paltz"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Kontrollieren Sie, ob Sie die CDRW vorher lĂśschen wollen."
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Bitte markieren, falls Sie \n"
-"„install boot“ auf Ihrer CD haben wollen."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Bitte geben Sie den Gerätenamen \n"
-"Ihres Brenners an, etwa „0,1,0“."
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "Auf Bandlaufwerk sichern"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "Bitte geben Sie den Gerätenamen fß Archivierung an."
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Bitte geben Sie die Maximalgröße \n"
-"fĂźr DrakBackup an."
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Bitte geben Sie das Archivverzeichnis an:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Quota fĂźr Backup-Datei verwenden."
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "Netzwerk"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CDROM/DVDROM"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "Festplatte/NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "stĂźndlich"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "täglich"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "wĂśchendlich"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "monatlich"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "Dämon verwenden"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"Bitte wählen Sie das Zeitintervall \n"
-"zwischen zwei Sicherungen."
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"Bitte wählen Sie ein\n"
-"Sicherungsmedium."
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Festplatte mit Dämin verwenden"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "FTP mit Dämon verwenden"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Stellen Sie sicher, dass der Cron-Dämon als Dienst aktiviert ist."
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "E-Mail Bericht nach jedem Sicherungsvorgang an: "
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "Was"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "Wo"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "Wann"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "Mehr Parameter"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "DrakBackup Konfiguration"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Bitte wählen Sie wohin Sie die Sicherungskopien machen wollen."
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "auf Festplatte"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "Ăźber Netzwerk"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Bitte wählen Sie, was Sie sichern wollen"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "System sichern"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "Benutzerkennzeichen sichern"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Benutzerkennzeichen auswählen"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Sicherungsquellen: \n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Systemdateien:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Benutzerdateien:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Sonstige Dateien:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- Auf Festplatte sichern unter: %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- Via FTP sichern auf: %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t Benutzer: %s\n"
-"\t\t Pfad: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Optionen:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tKeine Systemdateien\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tSicherungen verwenden „tar“ und „bzip2“\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tSicherungen verwenden „tar“ und „gzip“\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- Dämon (%s) enthält:\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t- Festplatte.\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t- CD-ROM.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t- Netzwerk per FTP.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t- Netzwerk per SSH.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-"Keine Konfiguration. Wählen Sie dein Assistenten oder Fortgeschritten.\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Liste der wiederherzustellenden Daten:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Liste der beschädigten Daten:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr ""
-"Bitte entfernen Sie die Markierung oder lÜschen Sie sie das nächste Mal."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "Die Sicherungen sind beschädigt."
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " Alle Ihre gewälhten Daten wurden "
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " erfolgreich auf %s wiederhergestellt "
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " Konfiguration wiederherstellen "
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "OK, die Ăźbrigen Dateien zu aktualisieren."
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Liste wiederherzustellender Kennzeichen (letztes Datum per Kennzeichen ist "
-"wichtig)"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "Systemdateien sichern vor:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "Bitte wählen Sie, welches Datum wiederhergestellt werden soll."
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Auf Festpaltte sichern"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Von Festplatte wiederherstellen"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "Bitte geben Sie das Verzeichnis an, in dem die Sicherungskopien liegen"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Wählen Sie ein anderes Medium von dem Sie wiederherstellen wollen."
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Anderes Medium"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "System wiederherstellen"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Benutzerkennzeichen wiederherstellen"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Sonstiges wiederherstellen"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "Auswahl des Pfades der wiederhergestellt werden soll (statt „/“"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"Erstelle Sicherung vor dem Wiederherstellen (nur fĂźr inkrementelle "
-"Sicherungen)."
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Benutzerkennzeichen vor dem Wiederherstellen entfernen."
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Alle Sicherungen wiederherstellen"
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "BenutzergefĂźhrte Wiederherstellung"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Hilfe"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "<- ZurĂźck"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Speichern"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Sicherung erstellen"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Wiederherstellen"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Weiter ->"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Bitte erstellen Sie eine Sicherung, bevor Sie wiederherstellen kĂśnnen.\n"
-"oder stellen Sie sicher, dass der Pfad zu den Sicherungen korrekt ist."
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"Sendmail Fehler\n"
-" Ihre Bericht-Mail konnte nicht versandt werden.\n"
-" Bitte richten Sie Sendmail korrekt ein."
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Zu installierende Pakete"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Fehler bei der Üertragung via FTP.\n"
-"Bitte korrigieren Sie Ihre FTP-Konfiguration."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Bitte wählen Sie die wiederherzustellenden Daten..."
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Bitte wählen Sie ein Sicherungsmedium..."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Bitte wählen Sie die zu sichernden Daten..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Keine Konfigurationsdatei gefunde.\n"
-"Bitte wählen Sie den „Assistenten“ oder „Erweitert“."
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "In Entwicklung, haben Sie noch etwas Geduld ..."
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "Systemdateien sichern"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "Benutzerdateien sichern"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Andere Dateien sichern"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Fortschritt"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "DatenĂźagung via FTP"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Dateien Ăźbertragen ..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "Liste der Daten, die auf CD-ROM sollen."
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Bitte geben Sie die CD-Brenngeschwindigkeit ein"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Bitte geben Sie den CD-Brenner an (etwa 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Bitte markieren, falls Sie „install boot“ auf Ihrer CD haben wollen."
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "Jetzt Sicherung anhand der Konfigurationsdatei erstellen."
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Sicherungskonfiguration anzeiegen"
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "AssistentengestĂźtzte Konfiguration"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "Expertenkonfiguration"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "Jetzt sichern"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "DrakBackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-"Parameter:\n"
-"\n"
-" In diesem Schritt erlaubt Ihnen DrakBackup folgende Änderungen:\n"
-"\n"
-" - Kompressionsmodus:\n"
-" \n"
-" Mit der „bzip2“ Kompression, werden Ihre Daten\n"
-" besser als mit „gzip“ komprimiert (ca. 2-10 %).\n"
-" Standardmäßig ist dier Modus deaktiviert, da er\n"
-" mehr Zeit benĂśtigt (bis zu 1.000%).\n"
-" \n"
-" - Aktualisierungsmodus:\n"
-"\n"
-" Mit dieser Option kĂśnnen Sie Ihre Sicherungskopie\n"
-" aktuialisieren. Das ist momentan nicht sehr sinnvoll,\n"
-" da Sie Ihre Kopie auspacken mĂźssen, um sie \n"
-" aktualisieren zu kĂśnnen.\n"
-" \n"
-" - Der „.backupignore“-Mode:\n"
-"\n"
-" Vie bei dem Programm „cvs“, wird DrakBackup alle\n"
-" Dateien/Ordner, die in der Datei „.backupignore“\n"
-" des aktuellen Verzeichnisses aufgefĂźhrt sind,\n"
-" von der Sicherung ausschließen.\n"
-" Beispiel:\n"
-" > cat .backupignore\n"
-" *.o\n"
-" *~\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-"\n"
-" Einige der Sendmail-Fehler beruhen auf einer\n"
-" fehlerhaften PostFix Konfiguration. Um sie zu\n"
-" beheben müssen Sie „myhostname“ oder „mydomain“\n"
-" in „/etc/postfix/main.cf“ korrigieren.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-"Parameter:\n"
-"\n"
-" - Systemdateien sichern:\n"
-" \n"
-"\tDiese Option erlaub es Ihnen Ihr „/etc“ Verzeichnis\n"
-"\tmit den darin enthaltenen Konfigurationsdateien zu\n"
-"\tsichern. Seien Sie vorsichtig, damit Sie während der\n"
-"\tWiederherstellung folgende Dateien nicht Ăźberschreiben:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Benutzerdateien sichern:\n"
-"\n"
-"\tDiese Option erlaubt es Ihnen die Benutzerkenn-\n"
-"\tzeichen zu wählen, deren Daten gesichert werden\n"
-"\tsollen.\n"
-"\tEs ist sinnvoll, die Browser-Caches vom Sichern\n"
-"\tauszunehmen, um Sicherungsplatz zu sparen.\n"
-"\n"
-" - Andere Dateien sichern:\n"
-"\n"
-"\tMit dieser Option kĂśnnen Sie weitere Dateienn\n"
-"\tzum Sichern vorsehen. Sollten Sie diese Version\n"
-"\tverwenden, kĂśnnen Sie momentan keine inkre-\n"
-"\tmentellen Aktualisierungen vornehmen.\n"
-"\n"
-" - Inkrementelle Archivierung:\n"
-"\n"
-"\tInkrementelle Archivierung ist die mächtigste\n"
-"\tder vorhandenen Optionen. Sie erlaubt es\n"
-"\tIhnen beim ersten Aufruf eine komplette\n"
-"\tSicherungskopie Ihres Systems zu erstellen und\n"
-"\tanschließnd nur noch Änderungen zu speichern.\n"
-"\tSomit sind Sie in der Lage, während des Wieder-\n"
-"\therstellens, den Datenbestand eines bestimmten\n"
-"\tZeitpunkts zu erzeugen.\n"
-"\tSollten sie diese Alernative nicht gewählt haben,\n"
-"\twerden die alten Sicherungen vor dem Ertellen\n"
-"\teiner neuen Sicherungskopie gelĂśscht.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft by Sebastien DUPONT <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-"Parameter:\n"
-"\n"
-"Seien Sie vorsichtig, wenn Sie FTP-Sicherungskopien verwenden, \n"
-"da nur vollständig erstelle Sicherungskopien sum Server kopiert.\n"
-"werden. Die Sicherungskopie muss also erst lokal auf Ihrem \n"
-"Rechner erstellt werden.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-"\n"
-"Wiederherstellungsprobleme:\n"
-"\n"
-"DrakBackup wird bei der Wiederherstellung alle Dateien \n"
-"kontrollieren, bevor sie wiederhergestellt werden.\n"
-"Da vor der Wiederherstellung alle Dateien im \n"
-"Zielverzeichnis von DrakBackup gelĂśscht werden, \n"
-"gehen alle darin entghaltenen Daten verloren! \n"
-"Seien Sie daher vorsichtig und ändern Sie die Sicherungskopien \n"
-"nicht manuell.\n"
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Die Installation von %s schlug Fehl. Folgender Fehler trat auf:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Suche installierte Schriften"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Auswahl installierter Schriften zurĂźcksetzen"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "Alle Schriften analysieren"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "Keine Schriften gefunden"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "Fertig"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "Ich konnte keine Schriften in Ihren eingehängten Partitionen finden"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Neuwahl korrekter Schriften"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "Konnte keine Schriften finden.\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Suche installierter Schriften"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Kopiere Schriften"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "Installation von TrueType Schriften"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "Bitte warten Sie ttmkfdir arbeitet ..."
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "TrueType Installation beendet"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "Konvertieren der Schriften"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "Erzeuge „type1inst“"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr "Ghostscriptreferenz"
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "ttf-Schriftkonvertierung"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "pfm-Schriftkonvertierung"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Temporäre Dateien lÜschen"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "Neustart des X-FontServers"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Schriftdateien lĂśschen"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "xfs Neustart"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Stellen Sie sicher, das Sie das Recht haben, die Schriften die Sie \n"
-"in Ihr System einbinden wollen, zu verwenden.\n"
-"\n"
-"- Sie kÜnnen die Schriften auf normalem Weg einbinden. In seltenen Fällen \n"
-"kĂśnnen defekte Schriften den X-Server lahmlegen."
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "Schriften einbinden"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Windows-Schriften verwenden"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Schiften deinstallieren"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Erweiterte Einstellungen"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Font-Liste"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Wählen Sie die Programme, die die Schriften verwenden sollen:"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Generische Drucker"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-"Wählen Sie eine Schriftdatei bzw. ein Verzeichnis und betätigen Sie "
-"„Hinzufügen“"
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Liste installieren"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "Klicken Sie hier, wenn Sie sicher sind."
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "Hier, falls nicht."
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "Markierung lĂśschen"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Alle auswählen"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "Liste entfernen"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Vortests"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Schriften auf Ihren Rechner kopieren"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Installiere und konvertiere Fonts"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Nach der Installation"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "Entfernen von Schriftarten auf Ihrem Rechner"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Nach dem Entfernen"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Teilen der Internet-Verbindung"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Teilen der Internetverbindung momentan eingeschaltet."
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Es wurde bereits eine geteilte Internet-Verbindung aufgesetzt.\n"
-"Momentan ist sie aktiviert.\n"
-"\n"
-"Was wollen Sie tun?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "deaktivieren"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "Verwerfen"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "neu konfigurieren"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Server deaktivieren ..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Teilen der Internet-Verbindung ist nun abgeschaltet."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Teilen der Internet-Verbindung momentan abgeschaltet."
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Es wurde bereits eine geteilte Internet-Verbindung aufgesetzt.\n"
-"Momentan ist sie deaktiviert.\n"
-"\n"
-"Was wollen Sie tun?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "aktivieren"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Server aktivieren ..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Teilen der Internetverbindung ist nun eingeschaltet."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Sie sind dabei, Ihren Rechner zu konfigurieren, dass er die eingerichtete \n"
-"Internetverbindung mit einem lokalem Netzwerk teilt.\n"
-"\n"
-"Anmerkung: Sie benĂśtigen eine Netzwerkkarte, mit deren Hilfe Sie ein \n"
-"lokales Netz (LAN) aufsetzen kĂśnnen."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Schnittstelle %s (verwendet Modul %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Schnittstelle: %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Sie haben keine Netzwerkkarte!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Ihr Rechner hat keine konfigurierte Netzwerkkarte. Bitte verwenden Sie erst "
-"HardDrake, bevor Sie weiter machen."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Netzwerkkarte"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Sie haben nur eine konfiguriertes Netzwerkgerät an Ihrem Rechner:\n"
-"\n"
-"%s\n"
-"\n"
-"Ich setze ihr lokales Netz damit auf."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Bitte wählen Sie die Netzwerkkarte, die mit Ihrem lokalen Netzwerk \n"
-"verbunden ist."
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Ihr Netzwerk ist bereits konfiguriert"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"Warnung, das Netzwerkgerät „%s“ ist bereits konfiguriert.\n"
-"\n"
-"Wollen Sie eine automatische Neukonfiguration?\n"
-"\n"
-"Sie kĂśnnen auch eine manuelle Einrichtung vornehmen - dafĂźr sollten Sie "
-"jedoch wissen, wie das funktioniert."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Automatische Rekonfiguration"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "Aktuelle Schnittstellenkonfiguration anzeigen"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"Aktuelle Konfiguration von „%s“:\n"
-"\n"
-"Netzwerk: %s\n"
-"IP-Adresse: %s\n"
-"IP-Eigenschaften: %s\n"
-"Treiber: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Ich kann Ihre aktuelle Konfiguration beibehalten und annehmen, dass Sie "
-"bereits einen DHCP-Server eingerichtet haben. Stellen Sie in diesem Fall "
-"sicher, dass ich Ihr Klasse-C Netzwerk korrekt erkannt habe. Ich werde es "
-"weder neukonfigurieren, noch Ihre DHCP-Konfiguration ändern.\n"
-"\n"
-"Ich kann jedoch auch Ihre Schnittstelle neu konfigurieren und einen DHCP-"
-"Server fĂźr Sie aufsetzen.\n"
-"\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "Lokales Klasse-C Netzwerk"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "(Diese) DHCP-Server IP"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Neu konfigurieren des Geräts und des DHCP-Servers"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Das lokale Netzwerk endet nicht auf „.0“ - bereinige."
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Es liegt ein mĂśglicher LAN-Adressen Konflikt in der Konfiguration\n"
-"von %s vor!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Ich habe eine Firewall-Konfiguration gefunden!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"WARNUNG: Ich habe eine eine Firewall-Konfiguration gefunden. \n"
-"MĂśglicherweise mĂźssen Sie nach der Installation einige Einstellungen \n"
-"von Hand vornehmen."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Konfigurieren ..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Skripte konfigurieren, Software installieren, Dienste starten ..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Probleme beim Installieren von Paket %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Es wurde alles eingerichtet.\n"
-"Sie kĂśnnen Ihre Internetverbindung nun anderen Rechnern in Ihrem \n"
-"lokalen Netz mittels automatischer Netzwerk-Konfiguration (DHCP) \n"
-"teilen."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-"Die Einstellungen wurden bereits vorgenommen, sie sind nur nicht aktiviert."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Die Einstellungen wurden bereits vorgenommen und sind aktiv."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Teilen der Internetverbindung wurde noch nicht konfiguriert."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Teilen der Internetverbindung - Konfiguration"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Willkommen zu DrakGW -\n"
-"das Werkzeug zum Teilen Ihrer Internetverbindung\n"
-"\n"
-"%s\n"
-"\n"
-"Wählen Sie „Konfigurieren“ wenn Sie den Assistenten starten wollen."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netzwerk Konfiguration (%d Karten)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Profil lĂśschen..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Zu lĂśschendes Profil: "
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Neues Profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr "Name des neuen Profils (es wird als Kopie des aktuellen erstellt):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Rechnername: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetzugang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Typ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Schnittstelle:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Bitte Warten"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Internet-Zugang konfigurieren"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN Konfiguration"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Treiber"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Schnittstelle"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokoll"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Netzwerk konfigurieren"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Hier starten Sie den Assistenten ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistent..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Anwenden"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Einen Moment ... ich richte die Konfiguration ein"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Verbunden"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nicht Verbunden"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Verbinden ..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Trenne Verbindung ..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"WARNUNG: Es wurde bereits eine Internetverbindung gefunden. Vielleicht nutzt "
-"diese ihr Netzwerk."
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Sie haben noch keine Schnittstelle eingerichtet.\n"
-"Sie kÜnnen dies tun, indem Sie die Schaltfläche \n"
-"„Konfigurieren“ betätigen."
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN Konfiguration"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Boot-Protokoll"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Beim Hochfahren gestartet"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP Klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "Jetzt aktivieren"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "Jetzt deaktivieren"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Diese Schnittstelle wurde noch nicht eingerichtet.\n"
-"Starten Sie den Konfigurationsassistenten im Hauptfenster."
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Sie haben noch keine Internetverbindung eingerichtet.\n"
-"Sie kÜnnen dies tun, indem Sie die Schaltfläche \n"
-"„Konfigurieren“ betätigen."
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfiguration der Internetverbindung"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfiguration der Internetverbindung"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Verbindungstyp: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameter"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Netzwerkkarte"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-Klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Sicherheitsebene einstellen"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Kontrollzentrum"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Wählen Sie das Werkzeug, das Sie verwenden wollen"
-
-# ../../standalone/drakxtv_.c:37ç
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "Kanada (Kabel)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (terrestrisch)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "USA (Kabel)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "USA (Kabel-hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "China (terrestrisch)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japan (terrestrisch)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "Japan (Kabel)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Osteuropa"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Irland"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "Westeuropa"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Australien"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "Neuseeland"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "SĂźdafrika"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Argentinien"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr "Bitte geben Sie Ihre Fernsehnorm und Region ein"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "Fernsehnorm:"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Region:"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "Sendersuche ..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "Sendersuche..."
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "Verwendung: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Bitte wählen Sie Ihren Tastaturtyp."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Wollen Sie, dass die RĂźcktaste auf den Konsolen Entfernen sendet?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "CD-ROM wechseln"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Bitte legen Sie die Installations-CD-ROM in Ihr Laufwerk und drĂźcken \n"
-"Sie dann „OK“. Falls Sie sie nicht vorliegen haben, drücken Sie \n"
-"„Abbruch“."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Ich bin nicht in der Lage, eine Live Aktualisierung durchzufĂźhren!!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-"Die Einstellungen wurden vorgenommen, werden jedoch erst nach einer "
-"Neuanmeldung wirksam"
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "LogDrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "Nur fĂźr diesen Tag zeigen"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Datei/_Neu"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Datei/_Öffnen"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Datei/_Speichern"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Datei/Speichern_als"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Datei/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Optionen"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Optionen/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Hilfe"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/_Hilfe/_Über..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "Benutzer"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "Nachrichten"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "SysLog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Erklärung der Mandrake Programme"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "Suche starten"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Ihre LogbĂźcher betrachen"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "Übereinstimmung mit"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "keine Übereinstimmung mit"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Dateien wählen"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Kalender"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Inhalt der LogbĂźcher"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "E-Mail/SMS Benachrichtigung"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "Einen Moment, ich durchsuche: %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "Mail/SMS Benachrichtigungskonfiguration"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Herzlich willkommen zum E-Mail/SMS Konfigurationsassistenten.\n"
-"\n"
-"Hier kĂśnnen Sie Ihr Benachrichtigungssystem einrichten.\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "Pro-ftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "Dienste einstellen"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-"Sie weden benachrtichtigt, falls einer der gewählten Dienste nichtmehr "
-"verfĂźgbar ist."
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "Einstellungen laden"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Sie erhalten eine Nachricht, wen die Load Ăźber diesen Wert steigt"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "Benachrichtigungskonfiguration"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "Stellen Sie ein, wie das System Sie benachrichtigen soll"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Speichern unter..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Bitte wählen Sie Ihren Maustyp."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "Kein „serial_usb“ gefunden\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Die dritte Maustaste emulieren?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "%s an %s gefunden. Wolen Sie ihn einrichten?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Wählen Sie einen Scanner"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "Dieser %s Scanner wird nicht unterstĂźtzt"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Boot Gerät"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"Dieser %s Scanner muss von PrinterDrake konfiguriert werden.\n"
-"Sie kĂśnnen Pronterdrake im Mandrake-Kontrollzentrum im Hardware-Bereich "
-"starten."
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Firewall-Konfiguration"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Firewall-Konfiguration"
-
-#: ../../standalone/tinyfirewall_.c:79
-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"
-"Sie haben bereits eine Firewall eingerichtet.\n"
-"Wählen Sie die Schaltfläche „Konfigurieren“,\n"
-"um sie zu lÜschen oder zu verändern."
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Wählen Sie die Schaltfläche „Konfigurieren“,\n"
-"um eine Standard-Firewall einzurichten."
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Sprache auswählen"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Installationsart auswählen"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Festplatten suchen"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Maus konfigurieren"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Tastatur auswählen"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Sicherheit"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Dateisysteme einrichten"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Partitionen formatieren"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Zu installierende Pakete"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "System installieren"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Benutzer hinzufĂźgen"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Netzwerk konfigurieren"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Dienste konfigurieren"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "BS-Starter installieren"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Startdiskette erstellen"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "X konfigurieren"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Systemaktualisierungen"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Installation beenden"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"TinyFirewall Konfigurierer\n"
-"\n"
-"Hiermit konfigurieren Sie eine persĂśnliche Firewall fĂźr diesen\n"
-"Mandrake Linux Rechner. Sollten Sie an einer speziellen ausgereiften\n"
-"Firewall-LĂśsung interessiert sein, schauen Sie sich nach der speziell\n"
-"dafĂźr entwickelten MandrakeSecurity Firewall Distribution um."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Wir fragen Sie nun, welchen Diensten Sie direkten Internetzugang\n"
-"gestatten wollen. Bitte machen Sie sich sorgfältig Gedanken ßber diese\n"
-"Fragen. Es geht hierbei schließlich um die Sicherheit Ihres Systems!\n"
-"\n"
-"Bitte schotten Sie jeden Dienst, den sie aktuell nicht verwenden, vom \n"
-"Netz ab. Sie kĂśnnen die vorgenommenen Einstellungen mit Hilfe dieses \n"
-"Programms jederzeit wieder ändern!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Betreiben Sie auf Ihrem Rechner einen Web-Server, der im gesamten\n"
-"Internet sichtbar sein soll? Falls der Server nur auf Ihrer Maschine\n"
-"zugreifbar sein soll, kĂśnnen Sie hier getrost NEIN antworten.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Betreiben Sie einen Name-Server auf Ihrem Rechner? Falls Sie keinen\n"
-"Eingerichtet haben, um dem gesamten Internet IP und Bereichsinformationen\n"
-"anzubieten, antworten Sie hier NEIN.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Wollen Sie eingehende Secure Shell (ssh) Verbindungen gestatten?\n"
-"Es handelt sich hierbei um einen Ersatz fĂźr Telnet. Falls sie noch\n"
-"Telnet verwenden, sollten Sie definitiv auf dieses Protokoll wechseln.\n"
-"Telnet ßberträgt Ihre gesamte Kommunikation (also auch PasswÜrter)\n"
-"UNVERSCHLÜSSELT! Sie bieten damit einem potentiellen Angreife ein\n"
-"leichtes Spiel. Die SSH hingegen verschlĂźsselt die komplette\n"
-"Kommunikation und warnt sogar falls sie eine Unregelmäßigkeit bemerkt."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Wollen Sie eingehende Telnet-Verbindungen gestatten?\n"
-"Dienst extrem unsicher, wie wir bereits frßher erwähnten. Wir empfehlen\n"
-"Ihnen daher nachdrĂźcklich mit NEIN zu antworten und im Bedarfsfall auf\n"
-"die SSH auszuweichen.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Betreiben Sie einen FTP Server der aus dem Internet zugreifbar sein soll?\n"
-"Falls ja, sollten Sie ihn jedoch nur für „anonymen Transfer“ verwenden,\n"
-"da das Protokoll keine VerschlĂźsselung Ăźbertragener PasswĂśrter vorsieht."
-"Verwenden Sie „scp“ aus dem SSH Paket zum verschlüsselten\n"
-"Datentransfer zwischen zwei Rechnern.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Betreiben Sie einen Mail-Server? Falls Sie Ihre Nachrichten mit\n"
-"einem textbasierten E-Mail Programm wie pine oder mutt schreiben\n"
-"ist dies vermutlich der Fall. Andernfalls sollten Sie den Dienst\n"
-"abschalten.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Betreiben Sie einen POP oder IMAP Server? Sie wĂźrden damit\n"
-"Postfächer fßr nicht-web-basierten E-Mail Zugriff ßber diese\n"
-"Maschine bereitstellen.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Sie scheinen einen 2.2er Kern zu verwenden. Falls Sie Ihre\n"
-"IP-Adresse automatisch im lokalen Netzwerk erhalten sollen,\n"
-"mĂźssen wir dies gestatten. Ist das bei Ihnen der Fall?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Wird die Zeit Ihres Rechners automatisch mit anderen Rechnern\n"
-"synchronisiert? Dies ist häufig ab mittelgroßen UNIX/Linux Betrieben\n"
-"der Fall. Damit wird ein einheitliches Zeitschema, etwa fĂźr die\n"
-"Datensicherung zugrunde gelegt. Wenn Sie nicht in einem größeren\n"
-"Betrieb arbeiten oder noch nie etwas zu diesem Thema gehĂśrt haben,\n"
-"trifft es fĂźr Sie vermutlich nicht zu."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfiguration beendet. Soll ich die Änderungen auf Platte schreiben?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Ich kann „%s“ nicht öffnen: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ich kann „%s“ nicht zum Schreiben öffnen: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr "Nein, ich benĂśtige kein DHCP"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr "Ja, ich benĂśtige DHCP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr "Nein, ich benĂśtige kein NTP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr "Ja, ich benĂśtige NTP"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr "Nicht speichern"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr "Speichern und beenden"
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "Firewall-Konfigurationsassistent"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr "Nein (Vom externen Netz abschirmen)"
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr "Ja (durch die Firewall erlauben)"
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr "Bitte warten, Kontrolle der installierten Pakete ..."
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Fehler bein Versuch die gewĂźnschten Pakete (%s und Bastille) zu "
-"installieren!\n"
-"Versuchen Sie es manuell."
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Server, Web/FTP"
-
-#
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Netzwerk-Computer (Klient)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS-Server, SMB-Server, Proxy-Server, SSH-Server"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Office"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome-Arbeitsplatz"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Werkzeuge fĂźr Ihren Palm Pilot oder Ihren Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Arbeitsplatzrechner"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Server, Firewall/Router"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domänen- (DNS) und Netzwerk Informationsserver (NIS)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Office-Programme: Textverarbeitung (KWord, Abiword), Tabellenkalkulation "
-"(KSpread, Gnumeric), PDF-Betrachter, usw."
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Audio Programme: MP3- und Midi-Abspieler, Mixer, usw."
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "BĂźcher und HOWTOs zu GNU/Linux und Freier Software"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE-Arbeitsplatz"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, usw."
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedia / Video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Programme fĂźr Mail, News, WWW, FTP und Chat"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Server, Datenbank"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgeSQL oder MySQL Datenbankserver"
-
-#
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Werkzeuge, die die Konfiguration Ihres Rechners erleichtern"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedia / Sound"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Werkzeuge"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentation"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Konsolen-Werkzeuge"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-"Postfix E-Mail-Server und\n"
-"Inn Diskussionsforen-Server"
-
-#
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internetrechner"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimediarechner"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Konfiguration"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Weitere Arbeitsoberflächen (GNOME, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"Das K Desktop Environment, die Standard-Arbeitsoberfläche mit einer Sammlung "
-"zugehĂśriger Programme"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Grafische Arbeitsoberfläche"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache und Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Werkzeuge zur Erstellung und zum Brennen von CDs"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "BĂźro-Arbeitsplatz"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "GNOME, IceWM, Window Maker, Enlightenment, Fvwm, usw."
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Bildverarbeitungsprogramme wie der GIMP"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C und C++ Entwicklung: Bibliotheken, Programme und Include-Dateien"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Netzwerkrechner Server"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Server, Mail/Groupware/News"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Spiel-Station"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Videoabspieler und Editoren"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedia / Grafik"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Spiele: Arcade-, Brett-, Strategiespiele, usw."
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Programme zum E-Mail bzw. News lesen und senden (pine, mutt, tin, ...)sowie "
-"zum durchstĂśbern des WWW"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivierung, Emulation, Überwachung"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Finanzverwaltung"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Eine grafische Oberfläche mit anwenderfreundlichen Anwendungen und Werkzeugen"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Klienten fĂźr verschiedene Protokolle, u.a. SSH"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Internet-Gateway"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Sound- und Video-Abspieler/Editoren"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Andere grafische Arbeitsoberflächen"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editoren, Shells, Dateiwerkzeuge, Konsolen"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Finanzverwaltungsprogramme, etwa Gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "PersĂśnliches Informationsmanagement"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedia / CD-Brenner"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Wissenschaftlicher Arbeitsplatzrechner"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
deleted file mode 100644
index 1de4183da..000000000
--- a/perl-install/share/po/el.po
+++ /dev/null
@@ -1,13124 +0,0 @@
-# Greek Translation of DrakX.
-# Copyright (c) 1999 MandrakeSoft
-# FIRST AUTHOR Theodore J. Soldatos <theodore@eexi.gr>, 1999-2000.
-# Thanos Kyritsis <djart@hellug.gr>, 2001
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-08-23 23:59+0300\n"
-"Last-Translator: Thanos Kyritsis <djart@hellug.gr>\n"
-"Language-Team: Greek <nls@tux.hellug.gr>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-7\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.8\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Ńýčěéóç üëůí ôůí ęĺöáëţí áíĺîÜńôçôá"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "×ńŢóç ĺđÝęôáóçň Xinerama"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ńýčěéóç ěüíď ôçň ęÜńôáň \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Ńýčěéóç đďëëţí ęĺöáëţí"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Ôď óýóôçěÜ óáň őđďóôçńßćĺé ńýčěéóç đďëëáđëţí ęĺöáëţí.\n"
-"Ôß čÝëĺôĺ íá ęÜíĺôĺ;"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "ĘÜńôá ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "ĹđéëÝîôĺ ęÜńôá ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "ĹđéëÝîôĺ X server (ďäçăüň ęÜńôáň ăńáöéęţí)"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "ĺîőđçńĺôçôŢň X Window"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "ĹđéëÝîôĺ X server (ďäçăüň ęÜńôáň ăńáöéęţí)"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "ĺîőđçńĺôçôŢň X Window"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Ôß ôýđďő XFree čÝëĺôĺ íá Ý÷ĺôĺ;"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Ç ęÜńôá ăńáöéęţí óáň őđďóôçńßćĺé ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí ěüíď \n"
-"ěĺ ôá XFree %s. Ç ęÜńôá óáň őđďóôçńßćĺôáé áđü ôá XFree %s ôá ďđďßá ěđďńĺß íá "
-"äßíďőí \n"
-"ęáëýôĺńç őđďóôŢńéîç ăéá äéóäéÜóôáôá ăńáöéęÜ."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-"Ç ęÜńôá ăńáöéęţí óáň őđďóôçńßćĺé ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí óôá XFree "
-"%s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s ěĺ ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Ç ęÜńôá ăńáöéęţí óáň őđďóôçńßćĺé ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí óôá XFree "
-"%s,\n"
-"ĐŃĎÓĎ×Ç: ĐĹÉŃÁĚÁÔÉĘÇ ŐĐĎÓÔÇŃÉÎÇ - ĚĐĎŃĹÉ ÍÁ ĐÁĂŮÓĹÉ ÔĎÍ ŐĐĎËĎĂÉÓÔÇ ÓÁÓ!"
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s ěĺ ĐĹÉŃÁĚÁÔÉĘÇ ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Ç ęÜńôá ăńáöéęţí óáň őđďóôçńßćĺé ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí ěüíď \n"
-"ěĺ ôá XFree %s. ĐŃĎÓĎ×Ç: ĐĹÉŃÁĚÁÔÉĘÇ ŐĐĎÓÔÇŃÉÎÇ - ĚĐĎŃĹÉ ÍÁ ĐÁĂŮÓĹÉ ÔĎÍ "
-"ŐĐĎËĎĂÉÓÔÇ ÓÁÓ!\n"
-"Ç ęÜńôá óáň őđďóôçńßćĺôáé áđü ôá XFree %s ôá ďđďßá ěđďńĺß íá äßíďőí ęáëýôĺńç "
-"őđďóôŢńéîç\n"
-"ăéá äéóäéÜóôáôá ăńáöéęÜ."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (ďäçăüň đńďâďëŢň ĺăęáôÜóôáóçň)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Ńőčěßóĺéň XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "ĚÝăĺčďň ěíŢěçň ęÜńôáň ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Ńőčěßóĺéň X server"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "ĹđéëÝîôĺ ďčüíç"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Ďčüíç"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Ďé äýď ęńßóéěĺň đáńÜěĺôńďé ĺßíáé ç óő÷íüôçôá ęáôáęüńőöçň áíáíÝůóçň, çďđďßá "
-"ĺßíáé\n"
-"óő÷íüôçôá ěĺ ôçí ďđďßá áíáíĺţíĺôáé ďëüęëçńç ç ďčüíç, ęáčţň ęáé ç óő÷íüôçôá\n"
-"ďńéćüíôéáň áíáíÝůóçň, ç ďđďßá ĺßíáé ç óő÷íüôçôá ěĺ ôçí ďđďßá áíáíĺţíďíôáé\n"
-"ďé ďńéćüíôéĺň ăńáěěÝň.\n"
-"\n"
-"Ĺßíáé ĐĎËŐ ÓÇĚÁÍÔÉĘĎ íá ěŢí ĺđéëÝîĺôĺ ôýđď ďčüíçň ôďő ďđďßďő ďé óő÷íüôçôĺň\n"
-"áíáíÝůóçň ĺßíáé ĺęôüň ôůí ďńßůí ôçň ďčüíçň óáň: őđÜń÷ĺé ęßíäőíďň "
-"ęáôáóôńďöŢň\n"
-"ôçň ďčüíçň óáň. Áí äĺí ĺßóôĺ óßăďőńďé, ęÜíôĺ ěéá óőíôçńçôéęŢ ĺđéëďăŢ."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Óő÷íüôçôá ďńéćüíôéáň áíáíÝůóçň"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Óő÷íüôçôá ęáôáęüńőöçň áíáíÝůóçň"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ç ďčüíç äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ç ęÜńôá ăńáöéęţí äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Äĺí Ý÷ďőí ĺđéëĺăĺß áíáëýóĺéň áęüěç"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Đńďóď÷Ţ: Ç äďęéěŢ ĺßíáé ĺđéęßíäőíç óĺ áőôŢ ôçí ęÜńôá ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "ÄďęéěŢ ńőčěßóĺůí"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"äďęéěÜóôĺ íá áëëÜîĺôĺ ęÜđďéĺň đáńáěÝôńďőň"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "ĐńďęëŢčçęĺ óöÜëěá:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "¸îďäďň óĺ %d äĺőôĺńüëĺđôá"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ĺßíáé áőôŢ ç óůóôŢ ńýčěéóç;"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "ĐńďęëŢčçęĺ óöÜëěá, äďęéěÜóôĺ íá áëëÜîĺôĺ ęÜđďéĺň đáńáěÝôńďőň"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "ÁíÜëőóç"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "ĹđéëÝîôĺ áíÜëőóç ęáé âÜčďň ÷ńţěáôďň"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "ĘÜńôá ăńáöéęţí: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "śëëá"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ďę"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "ĘáôÜóôáóç đńď÷ůńçěÝíůí"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "ĹěöÜíéóç üëůí"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Áíáëýóĺéň"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Äéáńýčěéóç đëçęôńďëďăßďő: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Ôýđďň đďíôéęéďý: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "ÓőóęĺőŢ đďíôéęéďý: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Ďčüíç: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Óő÷íüôçôá ďńéćüíôéáň áíáíÝůóçň: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Óő÷íüôçôá ęáôáęüńőöçň áíáíÝůóçň: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "ĘÜńôá ăńáöéęţí: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "ĘÜńôá ăńáöéęţí: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "ĚíŢěç ęÜńôáň ăńáöéęţí: %s kb\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "ÂÜčďň ÷ńţěáôďň: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "ÁíÜëőóç: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 server: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Ďäçăüň XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Đńďĺôďéěáóßá ńőčěßóĺůí ăńáöéęďý đĺńéâÜëëďíôďň (X-Window)"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Ôé čÝëĺôĺ íá ęÜíĺôĺ;"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "ÁëëáăŢ ďčüíçň"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "ÁëëáăŢ ęÜńôáň ăńáöéęţí"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "ÁëëáăŢ ńőčěßóĺůí X server"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "ÁëëáăŢ áíÜëőóçň"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "ĐńďâďëŢ đëçńďöďńéţí"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "ĹđáíÜëçřç äďęéěŢň"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "¸îďäďň"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"ÄéáôŢńçóç őđáń÷üíôůí ńőčěßóĺůí;\n"
-"Ďé ôńÝ÷ďőóĺň ńőčěßóĺéň ĺßíáé:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "Ăńáöéęü đĺńéâÜëëďí (X) óôçí ĺęęßíçóç"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Ěđďńţ íá ńőčěßóů ôď óýóôçěÜ óáň Ýôóé ţóôĺ íá îĺęéíÜĺé áőôüěáôá óĺ\n"
-"ăńáöéęü đĺńéâÜëëďí (X-Windows).\n"
-"Ĺđéčőěĺßôĺ áőôüěáôç ĺęęßíçóç ăńáöéęďý đĺńéâÜëëďíôďň;"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Đáńáęáëţ ĺđáíáóőíäĺčĺßôĺ ůň %s ăéá ĺíĺńăďđďßçóç ôůí áëëáăţí"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Đáńáęáëţ áđďóőíäĺčĺßôĺ ęáé ěĺôÜ đáôŢóôĺ Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 ÷ńţěáôá (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ÷éëéÜäĺň ÷ńţěáôá (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ÷éëéÜäĺň ÷ńţěáôá (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 ĺęáôďěěýńéá ÷ńţěáôá (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 äéóĺęáôďěěýńéá ÷ńţěáôá (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB Ţ đĺńéóóüôĺńá"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 óôá 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 óôá 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Compatible, 1024x768 óôá 87 Hz interlaced (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-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:133
-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:134
-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:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 óôá 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1280x1024 óôá 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ďčüíç đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1600x1200 óôá 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ďčüíç đďő ěđďńĺß íá áđĺéęďíßóĺé áíÜëőóç 1600x1200 óôá 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Đńţôďň ôďěÝáň ôçň ęáôÜôěçóçň ĺęęßíçóçň"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Đńţôďň ôďěÝáň ôďő äßóęďő (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "ĹăęáôÜóôáóç SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Đďý čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ôď đńüăńáěěá ĺęęßíçóçň;"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "ĹăęáôÜóôáóç LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO ěĺ ěĺíďý ęĺéěÝíďő"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO ěĺ ăńáöéęü ěĺíďý"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Ĺęęßíçóç áđü ôď DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "ÂáóéęÝň ĺđéëďăÝň đńďăńÜěěáôďň ĺęęßíçóçň"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Bootloader ăéá ÷ńŢóç"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "ĹăęáôÜóôáóç đńďăńÜěěáôďň ĺęęßíçóçň"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "ÓőóęĺőŢ ĺęęßíçóçň"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (äĺí ëĺéôďőńăĺß ěĺ đáëáéüôĺńá BIOS)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "ÓőěđáăŢň"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "óőěđáăŢň"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "ÁíÜëőóç ďčüíçň"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "ĘáčőóôÝńçóç đńéí ôçí ĺęęéíçóç"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Óőíčçěáôéęü"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Óőíčçěáôéęü (îáíÜ)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Áđáăüńĺőóç ĺđéëďăţí ăńáěěŢň ĺíôďëŢň"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "áđáăüńĺőóç"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Ęáčáńéóěüň /tmp óĺ ęÜčĺ ĺęęßíçóç"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "ÁęńéâŢň đďóüôçôáň ěíŢěçň áí ÷ńĺéÜćĺôáé (Ý÷ů ĺíôďđßóĺé %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Ĺíĺńăďđďßçóç đďëëáđëţí profiles"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "ĹéóÜăĺôĺ ěÝăĺčďň ěíŢěçň óĺ Mb"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Ç ĺđéëďăŢ ``Áđáăüńĺőóç ĺđéëďăţí ăńáěěŢň ĺíôďëŢň'' ĺßíáé Ü÷ńçóôç ÷ůńßň "
-"óőíčçěáôéęü"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Đáńáęáëţ đńďóđáčŢóôĺ îáíÜ"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Ôá óőíčçěáôéęÜ ĺßíáé áíüěďéá"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "ĚŢíőěá Init"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "śíďéăěá ĘáčőóôÝńçóçň Firmware"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "ÔÝëďň ×ńüíďő Ĺęęßíçóçň ĐőńŢíá"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Ĺíĺńăďđďßçóç ĺęęßíçóçň áđü CD;"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Ĺíĺńăďđďßçóç OF ĺęęßíçóçň;"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Ĺî' ďńéóěďý ëĺéôďőńăéęü óýóôçěá;"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"ŐđÜń÷ďőí ďé áęüëďőčĺň ĺđéëďăÝň.\n"
-"Ěđďńĺßôĺ íá đńďóčÝóĺôĺ ęé Üëëĺň Ţ íá áëëÜîĺôĺ ôéň őđÜń÷ďőóĺň."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "ĐńďóčŢęç"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Ďëďęëçńţčçęĺ"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Ôńďđďđďßçóç"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Ôß ôýđďő ĺđéëďăŢ čÝëĺôĺ íá đńďóčÝóĺôĺ"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "śëëď ëĺéôďőńăéęü (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "śëëď ëĺéôďőńăéęü (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "śëëď ëĺéôďőńăéęü (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Image"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Append"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Read-write"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Đßíáęáň"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "ÁíáóöáëÝň"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "ĹôéęÝôôá"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "ĹđéëďăŢ ĺî' ďńéóěďý"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd-ěÝăĺčďň"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "×ůńßňVideo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Áöáßńĺóç ĺđéëďăŢň"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Äĺí ĺđéôńÝđĺôáé Üäĺéá ĺôéęÝôôá"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "ĐńÝđĺé íá Ý÷ĺôĺ ěéá ęáôÜôěçóç swap"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "ÁőôŢ ç ĺôéęĺôôá ÷ńçóéěďđďéĺßôáé Ţäç"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "ÂńŢęá %s %s đńďóáńěďăĺßň"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "¸÷ĺôĺ áëëďí;"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "¸÷ĺôĺ ęÜđďéďí đńďóáńěďăÝá %s;"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "ź÷é"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Íáé"
-
-#: ../../any.pm_.c:661
-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:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "ĹăęáôÜóôáóç ďäçăďý ăéá %s ęÜńôá %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(module %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Đďéüí %s ďäçăü íá äďęéěÜóů;"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Óĺ ěĺńéęÝň đĺńéđôţóĺéň, ď %s ďäçăüň ÷ńĺéÜćĺôáé ĺđéđëÝďí đáńáěÝôńďőň ăéá\n"
-"íá ëĺéôďőńăŢóĺé óůóôÜ, đáń' üëď đďő óőíŢčůň ëĺéôďőńăĺß ęáé ÷ůńßň áőôÝň.\n"
-"Čá čÝëáôĺ íá äţóĺôĺ ĺđéđëÝďí ĺđéëďăÝň Ţ íá áöŢóĺôĺ ôďí ďäçăü íá ĺîĺôÜóĺé\n"
-"ôď őëéęü óáň ăéá ôéň đáńáěÝôńďőň đďő ÷ńĺéÜćĺôáé; Ç ĺîÝôáóç áőôŢ ßóůň\n"
-"đńďęáëÝóĺé ęüëëçěá ôďő óőóôŢěáôďň, áëëÜ äĺí čá đńďęáëÝóĺé âëÜâç."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Áőôüěáôç ĺîÝôáóç"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Đńďóäéďńéóěüň đáńáěÝôńůí"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ěđďńĺßôĺ ôţńá íá äţóĺôĺ ôéň đáńáěÝôńďőň ăéá ôďí ďäçăü %s.\n"
-"Ďé đáńÜěĺôńďé Ý÷ďőí ôçí ěďńöŢ ``üíďěá=ôéěŢ üíďěá2=ôéěŢ2 ...''.\n"
-"Ăéá đáńÜäĺéăěá, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "ĐáńÜěĺôńďé ďäçăďý"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Ç öďńôůóç ôďő ďäçăďý %s áđĺôő÷ĺ.\n"
-"ČÝëĺôĺ íá äďęéěÜóĺôĺ îáíÜ ěĺ äéáöďńĺôéęÝň đáńáěÝôńďőň;"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(ôď %s Ý÷ĺé Ţäç đńďóôĺčĺß)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Ôď óőíčçěáôéęü ĺßíáé đďëý áđëü"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ęůäéęü üíďěá"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Ôď ęůäéęü üíďěá ěđďńĺß íá đĺńéÝ÷ĺé ěüíď đĺćÜ ăńÜěěáôá, áńéčěďýň, `-' ęáé `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Áőôü ôď ęůäéęü üíďěá őđÜń÷ĺé Ţäç"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "ĐńďóčŢęç ÷ńŢóôç"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"ĹéóÜăĺôĺ ÷ńŢóôç\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Áđďäď÷Ţ ÷ńŢóôç"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Đńáăěáôéęü üíďěá"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Ęůäéęü üíďěá"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Öëďéüň (shell)"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ĺéęďíßäéď"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Áőôüěáôç óýíäĺóç (Autologin)"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Ěđďńţ íá ńőčěßóů ôď óýóôçěÜ óáň Ýôóé ţóôĺ íá óőíäÝĺôáé áőôüěáôá ęáôÜ\n"
-"ôçí ĺęęßíçóç óĺ Ýíáí óőăęĺęńéěÝíď ÷ńŢóôç.\n"
-"ĹÜí äĺí čÝëĺôĺ íá óőěâáßíĺé áőôü, đáôŢóôĺ óôď ęďőěđß áęýńůóçň."
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "ĹđéëÝîôĺ ôďí ĺî' ďńéóěďý ÷ńŢóôç:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "ĹđéëÝîôĺ ôďí äéá÷ĺéńéóôŢ đáńáčýńůí đďő čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr ""
-"Ěđďńĺßôĺ íá ĺđéëÝîĺôĺ ęáé Üëëĺň ăëţóóĺň đďő čá ĺßíáé äéáčÝóéěĺň ěĺôÜ ôď "
-"đÝńáň ôçň ĺăęáôÜóôáóçň"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "źëá"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "ĐńďóčŢęç ÷ńŢóôç"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "ĐńďóáńěďóěÝíď"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "Ĺęęßíçóç CUPS"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"Áőôü ôď đáęÝôď đńÝđĺé íá áíáâáčěéóôĺß\n"
-"Ĺßóôĺ óßăďőńďň üôé čÝëĺôĺ íá ôď áđďĺđéëÝîĺôĺ;"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Áęýńůóç"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Ęáëţň Ţńčáôĺ óôďőň Crackers"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Öôů÷ü"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Ôőđéęü"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Őřçëü"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Őřçëü"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Đáńáíďúęü"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Áőôü ôď ĺđßđĺäď đńÝđĺé íá ÷ńçóéěďđďéçčĺß ěĺ đńďóď÷Ţ. ĘÜíĺé ôď óýóôçěÜ óáň\n"
-"đéď ĺőęďëü÷ńçóôď, áëëÜ đďëý ĺőáßóčçôď. Äĺí đńÝđĺé íá ÷ńçóéěďđďéçčĺß óĺ "
-"óýóôçěá\n"
-"óőíäĺäĺěÝíď óôď Internet Ţ LAN. Äĺí őđÜń÷ďőí ëÝîĺéň ęëĺéäéÜ."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Ôţńá őđÜń÷ďőí ëÝîĺéň ęëĺéäéÜ, áëëÜ ç ÷ńŢóç ôďő óőóôŢěáôďň óĺ äßęôőď \n"
-"äĺí óőíßóôáôáé."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Áőôü ĺßíáé ôď óőíçčéóěÝíď ĺđßđĺäď áóöáëĺßáň ăéá Ýíá óýóôçěá đďő čá óőíäĺčĺß\n"
-"ůň đĺëÜôçň óôď Internet. ŐđÜń÷ďőí ôţńá Ýëĺă÷ďé áóöáëĺßáň."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Ěĺ áőôü ôď ĺđßđĺäď áóöáëĺßáň ĺßíáé äőíáôŢ ç ÷ńŢóç ôďő óőóôŢěáôďň óôď \n"
-"Internet ůň ĺîőđçńĺôçôŢ. Ç áóöÜëĺéá ĺßíáé áńęĺôÜ őřçëŢ ţóôĺ íá äÝ÷ĺôáé\n"
-"ôáőôü÷ńďíĺň óőíäÝóĺéň áđü đďëëďýň đĺëÜôĺň."
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"ÁóöÜëĺéá ĺđéđÝäďő 4, ěĺ ôď óýóôçěá ôĺëĺßůň ęëĺéóôü. ÁóöÜëĺéá \n"
-"óôď ěÝăéóôď äőíáôü."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "ĹđéëÝîôĺ ĺđßđĺäď áóöáëĺßáň"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Ńýčěéóç ĺđéđÝäďő áóöáëĺßáň"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Ńőčěßóĺéň X server"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"KALOS HRTHATE STON EPILOGEA LEITOURGIKOU SYSTHMATOS %s!\n"
-"\n"
-"EPILEXTE LEITORGIKO SYSTHMA APO TON PARAPANO KATALOGO \n"
-"H PERIMENETE %d DEUTEROLEPTA GIA THN AYTOMATH EPILOGH.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Welcome to GRUB the operating system chooser!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Use the %c and %c keys for selecting which entry is highlighted."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Press enter to boot the selected OS, 'e' to edit the"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "commands before booting, or 'c' for a command-line."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, 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:944
-msgid "not enough room in /boot"
-msgstr "äĺí őđÜń÷ĺé áńęĺôüň ÷ţńďň óôď /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Desktop"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Start Menu"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Đďý čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ôď đńüăńáěěá ĺęęßíçóçň;"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "äĺí őđÜń÷ĺé âďŢčĺéá äéáčÝóéěç áęüěá.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Boot Ôýđďő Ńýčěéóç"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Áń÷ĺßď"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Áń÷ĺßď/¸_îďäďň"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "NewStyle Categorizing Ďčüíç"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "NewStyle Ďčüíç"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "ĐáńáäďóéáęŢ Ďčüíç"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "ĐáńáäďóéáęŢ Gtk+ Ďčüíç"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Ĺęęßíçóç ôďő Aurora ęáôÜ ôçí ĺęęßíçóç ôďő óőóôŢěáôďň"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Ëĺéôďőńăßá Lilo/grub"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Ëĺéôďőńăßá Yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"×ńçóéěďđďéĺßôĺ ôďí %s ůň Boot Manager.\n"
-"ĘÜíôĺ ęëßę óôď Ńýčěéóç ăéá íá îĺęéíŢóĺôĺ ôďí ďäçăü ĺăęáôÜóôáóçň."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Ńýčěéóç"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "ĘáôÜóôáóç óőóôŢěáôďň"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "śíďéăěá ôďő X-Window ęáôÜ ôçí ĺęęßíçóç ôďő óőóôŢěáôďň"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "ź÷é, äĺí ĺđéčőěţ áőôüěáôď login"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Íáé, ĺđéčőěţ áőôüěáôď login ěĺ áőôü (user, desktop)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "áäőíáěßá áíďßăěáôďň ôďő /etc/inittab ăéá áíÜăíůóç: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d ëĺđôÜ"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 ëĺđôü"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d äĺőôĺńüëĺđôá"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Äĺí ěđďńţ íá đńďóčÝóů ęáôáôěçóĺéň"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-"Ěđďńĺßôĺ íá ĺđéëÝîĺôĺ ęáé Üëëĺň ăëţóóĺň đďő čá ĺßíáé äéáčÝóéěĺň ěĺôÜ ôď "
-"đÝńáň ôçň ĺăęáôÜóôáóçň"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "France"
-msgstr "Ăáëëéęü"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Âĺëăéęü"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-#, fuzzy
-msgid "Germany"
-msgstr "Ăĺńěáíéęü"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Ĺëëçíéęü"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Íďńâçăéęü"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Óďőçäéęü"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Éôáëéęü"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "óĺéńéáęü"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Đáńáęáëţ ęÜíôĺ đńţôá Ýíá áíôßăńáöď áóöáëĺßáň ôůí äĺäďěÝíůí óáň"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "ÄéáâÜóôĺ đńďóĺęôéęÜ!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"ĹÜí óęďđĺýĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď aboot, đńďóÝîôĺ íá áöŢóĺôĺ ĺëĺýčĺńď ÷ţńď "
-"2048 ôďěĺßň ĺßíáé áńęĺôďß)\n"
-"óôçí áń÷Ţ ôďő äßóęďő"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "ÓöÜëěá"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "ĚÜăďň"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "ĹđéëÝîôĺ đńÜîç"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"¸÷ĺôĺ ěéá ěĺăÜëç FAT ęáôÜôěçóç\n"
-"(óőíŢčůň ÷ńçóéěďđďéďýěĺíç áđü Dos Ţ Windows).\n"
-"Óőíéóôţ íá áëëÜîĺôĺ ôď ěÝăĺčüň ôçň đńţôá\n"
-"(ĺđéëÝîôĺ ôçí, ěĺôÜ ĺđéëÝîôĺ \"ÁëëáăŢ ěĺăÝčďőň\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Đáńáęáëţ ęÜíôĺ ęëéę óĺ ěéá ęáôÜôěçóç"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "ËĺđôďěÝńĺéĺň"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "óýíäĺóç áđÝôő÷ĺ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "śäĺéď"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "śëëď"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Ôýđďé óőóôŢěáôďň áń÷ĺßůí:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Äçěéďőńăßá"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Ôýđďň"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "×ńçóéěďđďéŢóôĺ ``%s'' óôç čÝóç ôďő"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "ÄéáăńáöŢ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "ĘÜíôĺ đńţôá ``Áđďóýíäĺóç''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"ĚĺôÜ ôçí áëëáăŢ ôýđďő óôçí ęáôÜôěçóç %s, üëá ôá äĺäďěÝíá óĺ áőôŢí ôçí "
-"ęáôÜôěçóç čá ÷áčďýí"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "ĹđéëÝîôĺ đńÜîç"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Äçěéďőńăßá íÝáň ęáôÜôěçóçň"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "ĚĺôáđŢäçóç óĺ đńď÷ůńçěÝíď ôńüđď ëĺéôďőńăßáň"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "ĚĺôáđŢäçóç óĺ ęáíďíéęü ôńüđď ëĺéôďőńăßáň"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Áęýńůóç ôĺëĺőôáßáň đńÜîçň"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Íá óőíĺ÷éóů;"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "¸îďäďň ÷ůńßň áđďčŢęĺőóç"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "¸îďäďň ÷ůńßň áđďčŢęĺőóç ôďő đßíáęá ęáôáôěŢóĺůí;"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Áőôďěáôç ęáôáíďěŢ"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Ęáčáńéóěüň üëůí"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Ĺíôďđéóěüň óęëçńďý äßóęďő"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "źëĺň ďé đńůôĺýďőóĺň ęáôáôěŢóĺéň ĺßíáé óĺ ÷ńŢóç"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Äĺí ěđďńţ íá đńďóčÝóů ęáôáôěçóĺéň"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Ăéá íá đńďóčÝóĺôĺ ęáôáôěŢóĺéň, đáńáęáëţ äéáăńÜřôĺ ěßá ĺôóé ţóôĺíá ĺßíáé "
-"äőíáôŢ ç đńďóčŢęç ĺęôĺôáěÝíçň ęáôÜôěçóçň"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "ÁđďčŢęĺőóç đßíáęá ęáôáôěŢóĺůí"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Đßíáęáň ęáôáôěŢóĺůí äéÜóůóçň"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Đßíáęáň ęáôáôěŢóĺůí äéÜóůóçň"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Đßíáęáň ęáôáôěŢóĺůí äéÜóůóçň"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Áőôüěáôç óýíäĺóç áđďóđţěĺíůí ěďíÜäůí áđďčŢęĺőóçň"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "ĹđéëÝîôĺ áń÷ĺßď"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Ď ĺöĺäńéęüň đßíáęáň ęáôáôěŢóĺůí Ý÷ĺé äéáöďńĺôéęü ěÝăĺčďň\n"
-"Íá óőíĺ÷ßóů;"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Đńďĺéäďđďßçóç"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"ĹéóÜăĺôĺ ěéá äéóęÝôôá óôďí ďäçăü äéóęÝôôáň\n"
-"źëá ôá äĺäďěÝíá óĺ áőôŢ ôç äéóęÝôôá čá ÷áčďýí"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "ĐńďóđÜčĺéá äéÜóůóçň đßíáęá ęáôáôěŢóĺůí"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "ĐńďâďëŢ đëçńďöďńéţí"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Óçěĺßď óýíäĺóçň"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "ĹđéëďăÝň"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "ÁëëáăŢ ěĺăÝčďőň"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Ěĺôáęßíçóç"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Ěďńöďđďßçóç"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Óýíäĺóç"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "ĐńďóčŢęç óôď RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "ĐńďóčŢęç óôď LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Áđďóýíäĺóç"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Áöáßńĺóç áđü ôď RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Áöáßńĺóç áđü ôď LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Ôńďđďđďßçóç RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "×ńŢóç ăéá loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Äçěéďőńăßá íÝáň ęáôÜôěçóçň"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Áń÷Ţ óôďí ôďěÝá: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "ĚÝăĺčďň óĺ MB"
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Ôýđďň óőóôŢěáôďň áń÷ĺßůí: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Óçěĺßď óýíäĺóçň: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Đńďôßěçóç: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Ěďńöďđďßçóç áń÷ĺßďő loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "ÁëëáăŢ ôýđďő ęáôÜôěçóçň"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Đďéü óýôçěá áń÷ĺßůí đńďôéěÜôĺ;"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "ÁëëáăŢ áđü ext2 óĺ ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Đďý čÝëĺôĺ íá óőíäÝóĺôĺ ôď áń÷ĺßď loopback %s;"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Đďý čÝëĺôĺ íá óőíäÝóĺôĺ ôçí óőóęĺőŢ %s;"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Äĺí ěđďńţ íá áöáéńÝóů ôď óçěĺßď óýíäĺóçň ęáčţň áőôŢ ç ęáôÜôěçóç "
-"÷ńçóéěďđďéĺßôáé\n"
-"ăéá loopback. ÁöáéńÝóôĺ đńţôá ôď loopback"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Őđďëďăéóěüň fat filesystem bounds"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "ĚĺôáâďëŢ ěĺăÝčďőň"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Áőôüň ď ôýđďň ęáôÜôěçóçň äĺí ěđďńĺß í' áëëÜîĺé ěÝăĺčďň."
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr ""
-"ĐńÝđĺé íá ăßíĺé áíôßăńáöď áóöáëĺßáň üëůí ôůí äĺäďěÝíůí óĺ áőôŢ ôçí ęáôÜôěçóç"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"ĚĺôÜ ôçí áëëáăŢ ěĺăÝčďőň óôçí ęáôÜôěçóç %s, üëá ôá äĺäďěÝíá óĺ áőôŢí ôçí "
-"ęáôÜôěçóç čá ÷áčďýí"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "ĹđéëÝîôĺ ôď íÝď ěÝăĺčďň"
-
-#: ../../diskdrake/interactive.pm_.c:622
-#, fuzzy
-msgid "New size in MB: "
-msgstr "ĚÝăĺčďň óĺ MB"
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Óĺ đďéüí äßóęď čÝëĺôĺ íá ěĺôáęéíçčĺßôĺ;"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "ÔďěÝáň"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Óĺ đďéüí ôďěÝá čÝëĺôĺ íá ěĺôáęéíçčĺßôĺ;"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Ěĺôáęßíçóç óĺ ĺîÝëéîç"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Ěĺôáęßíçóç ęáôÜôěçóçň óĺ ĺîÝëéîç..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "ĹđéëÝîôĺ Ýíá őđÜń÷ďí RAID óôď ďđďßď čá ăßíĺé ç đńďóčŢęç"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "íÝď"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "ĹđéëÝîôĺ Ýíá őđÜń÷ďí LVM óôď ďđďßď čá ăßíĺé ç đńďóčŢęç"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "üíďěá LVM;"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "ÁőôŢ ç ęáôÜôěçóç äĺí ěđďńĺß íá ÷ńçóéěďđďéçčĺß ăéá loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "źíďěá áń÷ĺßďő loopback: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Đńáăěáôéęü üíďěá"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Ôď áń÷ĺßď ÷ńçóéěđďđďéĺßôáé Ţäç, ĺđéëÝîôĺ Ýíá Üëëď"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Ôď áń÷ĺßď őđÜń÷ĺé Ţäç. Íá ôď ÷ńçóéěďđďéŢóů;"
-
-#: ../../diskdrake/interactive.pm_.c:804
-#, fuzzy
-msgid "Mount options"
-msgstr "ĐáńÜěĺôńďé ďäçăďý"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "óőóęĺőŢ"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "ĺđßđĺäď"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "ěÝăĺčďň chunk"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Đńďóď÷Ţ: ÁőôŢ ç äéáäéęáóßá ĺßíáé ĺđéęßíäőíç."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Ôß ôýđďő partitioning;"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 óĺ ęýëéíäńď "
-"ěĺăáëýôĺńď ôďő 1024.\n"
-"Ĺßôĺ ÷ńçóéěďđďéĺßôĺ LILO ęáé äĺí čá äďőëÝřĺé, ĺßôĺ äĺí ÷ńçóéěďđďéĺßôĺLILO "
-"ęáé äĺí ÷ńĺéÜćĺóôĺ ôď /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Ç ęáôÜôěçóç đďő ĺđéëÝîáôĺ ůň root (/) âńßóęĺôáé ěĺôÜ ôďí ęýëéíäńď 1024 ęáé\n"
-"äĺí Ý÷ĺôĺ ęáôÜôěçóç /boot.\n"
-"Áí óęďđĺýĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ LILO, đńďóčÝóôĺ ěßá ęáôÜôěçóç /boot."
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"ĹđéëÝîáôĺ ěéá software RAID ęáôÜôěçóç ůň root (/).\n"
-"ĘáíÝíá đńüăńáěěá ĺęęßíçóçň äĺí ěđďńĺß íá ôď ÷ĺéńéóôĺß áőôü ÷ůńßň ěéá "
-"ęáôÜôěçóç /boot.\n"
-"Öńďíôßóôĺ ëďéđüí íá đńďóčÝóĺôĺ ěéá ęáôÜôěçóç /boot."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Ď đßíáęáň ęáôáôěŢóĺůí ôďő äßóęďő %s čá áđďčçęĺőôĺß óôďí äßóęď!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Áđáéôĺßôáé ĺđáíĺęęßíçóç ăéá íá ĺöáńěďóôďýí ďé áëëáăÝň"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"ĚĺôÜ ôçí ěďńöďđďßçóç ôçň ęáôÜôěçóçň %s, üëá ôá äĺäďěÝíá óĺ áőôŢí ôçí "
-"ęáôÜôěçóç čá ÷áčďýí"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Ěďńöďđďßçóç"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Ěďńöďđďßçóç áń÷ĺßďő loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Ěďńöďđďßçóç ęáôÜôěçóçň %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "áđďôő÷ßá mkraid"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Äĺí őđÜń÷ĺé áńęĺôüň ĺëĺýčĺńďň ÷ţńďň ăéá äçěéďőńăßá íÝůí ęáôáôěŢóĺůí"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Äĺí őđÜń÷ĺé áńęĺôüň ĺëĺýčĺńďň ÷ţńďň ăéá äçěéďőńăßá íÝůí ęáôáôěŢóĺůí"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "ÁíÜëőóç: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "ÓőóęĺőŢ: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Đéčáíü DOS ăńÜěěá äßóęďő: %s \n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Ôýđďň: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "źíďěá: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Áń÷Ţ: ôďěÝáň %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "ĚÝăĺčďň: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s ôďěĺßň"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Ęýëéíäńďň %d ĺţň ęýëéíäńďň %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "ĚďńöďđďéçěÝíďň\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Áěďńöďđďßçôďň\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "ÓőíäĺäĺěÝíďň\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Áń÷ĺßá loopback: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"ĘáôÜôěçóç ĺęęßíçóçň ĺî ďńéóěďý\n"
-" (áđü MS-DOS, ü÷é áđü lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Ĺđßđĺäď %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "ĚÝăĺčďň chunk %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Äßóęďé RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "źíďěá áń÷ĺßďő loopback: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Ďé đéčáíüôçôĺň ĺßíáé, áőôŢ ç ęáôÜôěçóç íá ĺßíáé\n"
-"ěéá ęáôÜôěçóç Ďäçăţí, čá đńÝđĺé đéčáíüôáôá\n"
-"íá ôçí áöŢóĺôĺ Ţóő÷ç.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"ÁőôŢ ĺßíáé ĺéäéęŢ Bootstrap\n"
-"ęáôÜôěçóç ăéá\n"
-"dual-booting ôď óýóôçěÜ óáň.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "ĚÝăĺčďň: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Ăĺůěĺôńßá: %s ęýëéíäńďé, %s ęĺöáëÝň, %s ôďěĺßň\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Đëçńďöďńßĺň: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Äßóęďé LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Ôýđďň đßíáęá ęáôáôěŢóĺůí: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "óôď bus %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "ĹđéëďăÝň: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Ôýđďň óőóôŢěáôďň áń÷ĺßůí: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Áőôü ôď óőíčçěáôéęü ĺßíáé đďëý áđëü (đńÝđĺé íá ĺßíáé ôďőëÜ÷éóôďí %d "
-"÷áńáęôŢńĺň ěáęńý)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Ôá óőíčçěáôéęÜ ĺßíáé áíüěďéá"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "ÁëëáăŢ ôýđďő ęáôÜôěçóçň"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Đáńáęáëţ ęÜíôĺ ęëéę óĺ ěéá ęáôÜôěçóç"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "ĹîőđçńĺôçôŢň DNS"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s ěďńöďđďßçóç ôďő %s áđÝôő÷ĺ"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "äĺí îÝńů đţň íá ěďńöďđďéŢóů ôď %s óĺ ôýđď %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "ôď fsck áđÝôő÷ĺ ěĺ ęůäéęü ĺîüäďő %d Ţ óŢěá %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "óöÜëěá ęáôÜ ôçí áđďóýíäĺóç ôďő %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "áđëü"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "ĺîőđçńĺôçôŢň"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr ""
-"Äĺí ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď JFS ăéá ęáôáôěŢóĺéň ěéęńüôĺńĺň áđü 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
-"Äĺí ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď ReiserFS ăéá ęáôáôěŢóĺéň ěéęńüôĺńĺň áđü "
-"32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Ôď óçěĺßď óýíäĺóçň đńÝđĺé íá îĺęéíÜĺé ěĺ /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "ŐđÜń÷ĺé Ţäç ęáôÜôěçóç ěĺ óçěĺßď óýíäĺóçň %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Äĺí ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ ěéá ęáôÜôěçóç LVM ăéá đńďóÜńôçóç %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr ""
-"Áőôüň ď ęáôÜëďăďň đńÝđĺé íá đáńáěĺßíĺé óôď ńéćéęü óýóôçěá áń÷ĺßůí (root)"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"×ńĺéÜćĺóôĺ Ýíá đńáăěáôéęü óýóôçěá áń÷ĺßůí (ext2, reiserfs) ăéá áőôü ôď "
-"óçěĺßď óýíäĺóçň\n"
-
-#: ../../fsedit.pm_.c:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Äĺí ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ ěéá ęáôÜôěçóç LVM ăéá đńďóÜńôçóç %s"
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr ""
-"Äĺí őđÜń÷ĺé áńęĺôüň ĺëĺýčĺńďň ÷ţńďň ăéá áőôüěáôç äçěéďőńăßá íÝůí ęáôáôěŢóĺůí"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "ÓöÜëěá ęáôÜ ôď Üíďéăěá ôďő %s ăéá ĺăăńáöŢ: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"ĐńďęëŢčçęĺ óöÜëěá - äĺí âńÝčçęáí óőóęĺőÝň óôéň ďđďßĺň íá ĺßíáé äőíáôŢç "
-"äçěéďőńăßá íÝůí óőóôçěÜôůí áń÷ĺßůí. Đáńáęáëţ ĺëĺăîôĺ ôď őëéęü óáň ăéáôçí "
-"áéôßá áőôďý ôďő đńďâëŢěáôďň"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Äĺí őđÜń÷ĺé ęáěßá ęáôÜôěçóç!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-#, fuzzy
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"ĐáńáđÜíů âëÝđĺôĺ Ýíáí ęáôÜëďăď ěĺ ôéň ęáôáôěŢóĺéň Linux đďő ĺíôďđßóôçęáí "
-"óôďí \n"
-"äßóęď óáň. Ěđďńĺßôĺ íá ęńáôŢóĺôĺ ôéň áőôüěáôĺň ĺđéëďăÝň, ĺßíáé ęáëÝň ăéá \n"
-"óőíçčéóěÝíç ÷ńŢóç. ĹÜí áëëÜîĺôĺ áőôÝň ôéň ĺđéëďăÝň, đńÝđĺé íá Ý÷ĺôĺ "
-"ôďőëÜ÷éóôďí\n"
-"ěéá âáóéęŢ ęáôÜôěçóç (root, \"/\"). Ěçí ĺđéëÝîĺôĺ ěéá đďëý ěéęńŢ ęáôÜôěçóç "
-"ăéáôß\n"
-"äĺí čá Ý÷ĺôĺ ÷ţńď ăéá ĺăęáôÜóôáóç ëďăéóěéęďý. ĹÜí čÝëĺôĺ íá áđďčçęĺýĺôĺ ôá "
-"äĺäďěÝíá\n"
-"óáň óĺ îĺ÷ůńéóôŢ ęáôÜôěçóç, đńÝđĺé íá ĺđéëÝîĺôĺ ěéá ęáôÜôěçóç ăéá \"/home"
-"\" (äőíáôüí\n"
-"ěüíď áí Ý÷ĺôĺ đáńáđÜíů áđü ěßá Linux ęáôÜôěçóç äéáčÝóéěç).\n"
-"\n"
-"\n"
-"ĐëçńďöďńéáęÜ, ęÜčĺ ęáôÜôěçóç áíáöÝńĺôáé ůň: \"źíďěá\", \"×ůńçôéęüôçôá\".\n"
-"\n"
-"\n"
-"Ôď üíďěá óçěáßíĺé ôá ĺîŢň: Ôýđďň äßóęďő, áńéčěüň äßóęďő, áńéčěüň "
-"ęáôÜôěçóçň \n"
-"ăéá đáńÜäĺéăěá, \"hda1\").\n"
-"\n"
-"\n"
-"Ď ôýđďň ĺßíáé \"hd\" ĺÜí đńüęĺéôáé ăéá äßóęď IDE ęáé \"sd\" ăéá SCSI äßóęď.\n"
-"\n"
-"\n"
-"Ď áńéčěüň äßóęďő ĺßíáé đÜíôá Ýíá ăńÜěěá ěĺôÜ ôď \"hd\" Ţ \"sd\". Ăéá ôďőň "
-"IDE \n"
-"äßóęďőň: \n"
-"\n"
-" * \"a\" ĺßíáé ď master äßóęďň óôďí đńţôď ĺëĺăęôŢ IDE,\n"
-"\n"
-" * \"b\" ĺßíáé ď slave äßóęďň óôďí đńţôď ĺëĺăęôŢ IDE,\n"
-"\n"
-" * \"c\" ĺßíáé ď master äßóęďň óôďí äĺýôĺńď ĺëĺăęôŢ IDE,\n"
-"\n"
-" * \"d\" ĺßíáé ď slave äßóęďň óôďí äĺýôĺńď ĺëĺăęôŢ IDE.\n"
-"\n"
-"\n"
-"Ăéá äßóęďőň SCSI, \"a\" ĺßíáé ď đńţôďň äßóęďň, \"b\" ĺßíáé ď äĺýôĺńďň äßóęďň "
-"ęëđ..."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-#, fuzzy
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ đďéÝň őđçńĺóßĺň čÝëĺôĺ íá îĺęéíďýí ęáôÜ ôçí \n"
-"ĺęęßíçóç.\n"
-"\n"
-"\n"
-"ĹÜí ěĺôáęéíŢóĺôĺ ôďí äńďěÝá ôďő đďíôéęéďý đÜíů óĺ ěßá áđü áőôÝň, \n"
-"čá ĺěöáíéóôĺß Ýíá ěđáëďíÜęé âďçčĺßáň đďő čá ĺîçăĺß ôďí ńüëď ôçň.\n"
-"\n"
-"\n"
-"ĐńďóÝîôĺ áőôü ôď âŢěá ĺÜí óęďđĺýĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ óôď óýóôçěá óáí \n"
-"ĺîőđçńĺôçôŢ. Äĺí čá čÝëáôĺ íá îĺęéíŢóĺôĺ őđçńĺóßĺň đďő äĺí ÷ńĺéÜćĺóôĺ, \n"
-"äéüôé ďńéóěÝíĺň őđçńĺóßĺň ĺěđĺńéÝ÷ďőí ęéíäýíďőň áóöáëĺßáň ĺÜí őđÜń÷ďőí \n"
-"óĺ ĺîőđçńĺôçôŢ.\n"
-"ĂĺíéęÜ, ĺđéëÝîôĺ ěüíď ôéň őđçńĺóßĺň đďő ÷ńĺéÜćĺóôĺ đńáăěáôéęÜ."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-#, fuzzy
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Óĺ áőôü ôď óçěĺßď, đńÝđĺé íá áđďöáóßóĺôĺ đďý čá ĺăęáôáóôŢóĺôĺ ôď GNU/Linux\n"
-"óôďí óęëçńü óáň äßóęď. ĹÜí ĺßíáé Üäĺéďň Ţ ĺÜí Ýíá Üëëď ëĺéôďőńăéęü "
-"÷ńçóéěďđďéĺß\n"
-"üëďí ôďí ÷ţńď, čá ÷ńĺéáóôĺß íá ôďí ęáôáôěŢóĺôĺ, äçëáäŢ íá ęÜíĺôĺ Ýíáí ëďăéęü "
-"äéá÷ůńéóěü\n"
-"ôďő äßóęďő óĺ äéáěĺńßóěáôá, ţóôĺ íá äçěéďőńăŢóĺôĺ ÷ţńď ăéá ôçí ĺăęáôÜóôáóç "
-"ôďő Mandrake Linux.\n"
-"\n"
-"\n"
-"ĹđĺéäŢ ç ęáôÜôěçóç ĺßíáé óőíŢčůň ěéá ěç áíôéóôńĺđôŢ ĺńăáóßá, ěđďńĺß íá ĺßíáé "
-"äýóęďëç ęáé \n"
-"áă÷ůôéęŢ ăéá Ýíáí áń÷Üńéď ÷ńŢóôç.\n"
-"Áőôü ôď đńüăńáěěá áđëďđďéĺß ôçí äéáäéęáóßá. Đńéí áń÷ßóĺôĺ, đáńáęáëţ "
-"óőěâďőëĺőčĺßôĺ ôď \n"
-"ĺă÷ĺéńßäéď ÷ńŢóçň ęáé ěçí âéáóôĺßôĺ.\n"
-"\n"
-"\n"
-"Čá ÷ńĺéáóôĺßôĺ ôďőëÜ÷éóôďí äýď ęáôáôěŢóĺéň. Ěßá ăéá ôď ëĺéôďőńăéęü óýóôçěá "
-"ęáé Üëëç ěßá ăéá \n"
-"ôçí ĺéęďíéęŢ ěíŢěç (swap).\n"
-"\n"
-"\n"
-"ĹÜí őđÜń÷ďőí Ţäç ęáôáôěŢóĺéň áđü đńďçăďýěĺíç ĺăęáôÜóôáóç Ţ áđü Üëëď "
-"ĺńăáëĺßď, čá ÷ńĺéáóôĺß\n"
-"áđëţň íá ĺđéëÝîĺôĺ óĺ đďéÝň áđü áőôÝň čá ĺăęáôáóôŢóĺôĺ ôď Linux óáň.\n"
-"\n"
-"\n"
-"ĹÜí äĺí őđÜń÷ďőí ęáôáôěŢóĺéň, đńÝđĺé íá ôéň äçěéďőńăŢóĺôĺ ěĺ ôď đáńáđÜíů "
-"ĺńăáëÝéď. ÁíÜëďăá ěĺ \n"
-"ôçí ęáôÜóôáóç ôďő äßóęďő óáň, őđÜń÷ďőí äéÜöďńĺň ëýóĺéň:\n"
-"\n"
-"* ×ńŢóç őđÜń÷ďíôůí ęáôáôěŢóĺůí: ÂńÝčçęáí ěßá Ţ đĺńéóóüôĺńĺň ęáôáôěŢóĺéň "
-"Linux óôď óýóôçěÜ óáň.\n"
-" ĹÜí čÝëĺôĺ íá ôéň ęńáôŢóĺôĺ, ĺđéëÝîôĺ áőôŢí ôçí ĺđéëďăŢ.\n"
-"\n"
-"\n"
-"* ÄéáăńáöŢ ďëüęëçńďő ôďő äßóęďő: ĹÜí čÝëĺôĺ íá äéáăńÜřĺôĺ üëá ôá äĺäďěÝíá "
-"ęáé üëĺň ôéň őđÜń÷ďőóĺň\n"
-" ęáôáôěŢóĺéň ęáé íá ôá áíéęáôáóôŢóĺôĺ ěĺ ôď íÝď óáň Mandrake Linux óýóôçěá, "
-"ĺđéëÝîôĺ áőôŢí ôçí \n"
-" ĺđéëďăŢ. ĐŃĎÓĎ×Ç: Äĺí őđÜń÷ĺé ôńüđďň íá áíôéóôńÝřĺôĺ ôçí äéáäéęáóßá\n"
-" áí áëëÜîĺôĺ ăíţěç áńăüôĺńá! źëá ôá äĺäďěÝíá čá ęáôáóôńáöďýí!\n"
-"\n"
-"\n"
-"* ×ńŢóç ĺëĺýčĺńďő ÷ţńďő óôçí ęáôÜôěçóç ôůí Windows: ĹÜí Ý÷ĺôĺ ĺăęáôĺóôçěÝíá "
-"ôá Microsoft Windows\n"
-" ęáé ęáôáëáěâÜíďőí üëď ôďí ÷ţńď ôďő äßóęďő, đńÝđĺé íá äçěéďőńńăŢóĺôĺ "
-"ĺëÝőčĺńď ÷ţńď ăéá ôď Linux.\n"
-" Ăéá íá ăßíĺé áőôü, ěđďńĺßôĺ ĺßôĺ íá äéáăńÜřĺôĺ ôçí ęáôÜôěçóç ôůí Windows "
-"ęáé üëá ôá äĺäďěÝíá ôďőň\n"
-" (äĺň \"ÄéáăńáöŢ ďëüęëçńďő ôďő äßóęďő\" Ţ \"Ĺéäéęüň\") Ţ íá óőńńéęíţóĺôĺ "
-"ôçí ęáôÜôěçóç ôůí Windows.\n"
-" Ç óőńńßęíůóç ěđďńĺß íá ăßíĺé ÷ůńßň áđţëĺéá äĺäďěÝíůí. ÁőôŢ ç ëýóç "
-"óőíßóôáôáé ĺÜí čÝëĺôĺ íá ÷ńçóéěďđďéĺßôĺ\n"
-" Microsoft Windows ęáé Mandrake Linux óôďí ßäéď őđďëďăéóôŢ.\n"
-"\n"
-"\n"
-" Đńéí áđďöáóßóĺôĺ íá óőńńéęíţóĺôĺ ôďí äßóęď, đńÝđĺé íá ęáôáëÜâĺôĺ üôé ěĺôÜ "
-"áđü áőôŢí ôçí äéáäéęáóßá\n"
-" čá Ý÷ĺôĺ ëéăüôĺńď ÷ţńď äéáčÝóéěď áđü ôá Windows ăéá áđďčŢęĺőóç äĺäďěÝíůí Ţ "
-"ĺăęáôÜóôáóç ĺöáńěďăţí.\n"
-"\n"
-"\n"
-"* Ĺéäéęüň: ĹÜí čÝëĺôĺ íá ęáôáôěŢóĺôĺ ĺóĺßň ôďí äßóęď óáň, ÷ůńßň áőôüěáôĺň "
-"áđďöÜóĺéň. Ĺßíáé ěéá \n"
-" ĺđéëďăŢ ěĺ đďëëÝň äőíáôüôçôĺň áëëÜ ĺđéęßíäőíç, ěéá ęáé ěđďńĺßôĺ íá ÷Üóĺôĺ "
-"üëá ôá äĺäďěÝíá óáň\n"
-" ĺÜí ęÜíĺôĺ ęÜđďéď ëÜčďň. Âĺâáéůčĺßôĺ üôé îÝńĺôĺ ôé ęÜíĺôĺ đńůôďý "
-"đńď÷ůńŢóĺôĺ."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-#, fuzzy
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Ďé íÝĺň ęáôáôěŢóĺéň đńÝđĺé íá öďńěáńéóôďýí (äçëáäŢ íá äçěéďőńăçčĺß Ýíá "
-"óýóôçěá\n"
-"áń÷ĺßůí) đńůôďý ÷ńçóéěďđďéçčďýí.\n"
-"\n"
-"\n"
-"Ěđďńĺßôĺ ĺđßóçň íá öďńěÜńĺôĺ ęÜđďéĺň đńďűđÜń÷ďőóĺň ęáôáôěŢóĺéň ăéá íá "
-"äéáăńÜřĺôĺ \n"
-"ôá äĺäďěÝíá ôďőň. ĹÜí čÝëĺôĺ ęÜôé ôÝôďéď, đáńáęáëţ ĺđéëÝîôĺ ôéň ęáôáôěŢóĺéň "
-"đďő \n"
-"čÝëĺôĺ íá öďńěÜńĺôĺ.\n"
-"\n"
-"\n"
-"Óçěĺéţóôĺ üôé äĺí ĺßíáé áđáńáßôçôď íá öďńěÜńĺôĺ üëĺň ôéň đńďűđÜń÷ďőóĺň "
-"ęáôáôěŢóĺéň.\n"
-"ĐńÝđĺé íá öďńěÜńĺôĺ ôéň ęáôáôěŢóĺéň đďő đĺńéÝ÷ďőí ôď ëĺéôďőńăéęü óýóôçěá "
-"(üđůň ďé \n"
-"\"/\", \"/usr\" ęáé \"/var\"), áëëÜ äĺí ÷ńĺéÜćĺôáé íá öďńěÜńĺôĺ ęáôáôěŢóĺéň "
-"đďő đĺńéÝ÷ďőí \n"
-"äĺäďěÝíá đďő čÝëĺôĺ íá ęńáôŢóĺôĺ (óőíŢčůň ç \"/home\").\n"
-"\n"
-"\n"
-"Đáńáęáëţ íá ĺßóôĺ đńďóĺęôéęďß ęáčţň ěĺôÜ áđü áőôŢí ôçí äéáäéęáóßá üëá ôá "
-"äĺäďěÝíá \n"
-"óôéň ęáôáôěŢóĺéň áőôÝň čá ÷áčďýí áěĺôÜęëçôá.\n"
-"\n"
-"\n"
-"ĐáôŢóôĺ \"OK\" üôáí ĺßóôĺ Ýôďéěďé íá îĺęéíŢóĺôĺ ôçí äéáäéęáóßá.\n"
-"\n"
-"\n"
-"ĐáôŢóôĺ \"Áęýńůóç\" ĺÜí čÝëĺôĺ íá áëëÜîĺôĺ ôéň ĺđéëďăÝň óáň ęáé íá "
-"÷ńçóéěďđďéŢóĺôĺ \n"
-"Üëëĺň ęáôáôěŢóĺéň ăéá ôçí ĺăęáôÜóôáóç ôďő Mandrake Linux."
-
-#: ../../help.pm_.c:404
-#, fuzzy
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Ôď íÝď óáň ëĺéôďőńăéęü óýóôçěá Mandrake Linux ĺăęáčßóôáôáé.\n"
-"ÁőôŢ ç äéáäéęáóßá čá đÜńĺé ęÜđďéá ţńá, áíÜëďăá ěĺ ôď ěÝăĺčďň \n"
-"ôçň ĺăęáôóôáóçň đďő ĺđéëÝîáôĺ ęáé ôçí ôá÷ýôçôá ôďő őđďëďăéóôŢ óáň.\n"
-"\n"
-"\n"
-"Đáńáęáëţ đĺńéěÝíĺôĺ őđďěďíĺôéęÜ."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-#, fuzzy
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Óĺ áőôü ôď óçěĺßď, čá ÷ńĺéáóôĺß íá ĺđéëÝîĺôĺ óĺ đďéÝň ęáôáôěŢóĺéň čá "
-"ĺăęáôáóôŢóĺôĺ \n"
-"ôď Mandrake Linux. ĹÜí đńďűđÜń÷ďőí ęáôáôěŢóĺéň, áđü đáëáéüôĺńç ĺăęáôÜóôáóç Ţ "
-"áđü \n"
-"Üëëď ĺńăáëĺßď, ěđďńĺßôĺ íá ôéň ÷ńçóéěďđďéŢóĺôĺ. Áëëéţň, čá đńÝđĺé íá "
-"ďńßóĺôĺ \n"
-"íÝĺň ęáôáôěŢóĺéň.\n"
-"\n"
-"\n"
-"Ăéá íá äçěéďőńăŢóĺôĺ ęáôáôěŢóĺéň, đńÝđĺé đńţôá íá ĺđéëÝîĺôĺ óęëçńü äßóęď, "
-"ęÜíďíôáň\n"
-"ęëéę ěĺ ôď đďíôßęé óôď \"hda\" óôďí đńţôď IDE äßóęď, \"hdb\" óôďí äĺýôĺńď "
-"IDE, \"sda\"\n"
-"óôďí đńţôď SCSI äßóęď ęëđ\n"
-"\n"
-"\n"
-"Ăéá íá ęáôáôěŢóĺôĺ äßóęď óáň, ěđďńĺßôĺ íá ĺđéëÝîĺôĺ:\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"
-"\n"
-"ĐëçńďöďńéáęÜ, ěđďńĺßôĺ íá ĺđéëÝîĺôĺ üëĺň ôéň ĺđéëďăÝň ęáé ěÝóů "
-"đëçęôńďëďăßďő: \n"
-"Ěĺôáęéíçčĺßôĺ óôéň ęáôáôěŢóĺéň ÷ńçóéěďđďéţíôáň ôď đëŢęôńď Tab ęáé ôá "
-"âĺëÜęéá.\n"
-"\n"
-"\n"
-"źôáí Ý÷ĺôĺ ĺđéëÝîĺé ěéá ęáôÜôěçóç, ěđďńĺßôĺ íá đáôŢóĺôĺ:\n"
-"\n"
-" * Ctrl-c ăéá äçěéďőńăßá ęáôÜôěçóçň (üôáí Ý÷ĺôĺ ĺđéëÝîĺé Üäĺéď "
-"÷ţńď)\n"
-"\n"
-" * Ctrl-d ăéá äéáăńáöŢ ęáôÜôěçóçň\n"
-"\n"
-" * Ctrl-m ăéá ďńéóěü óçěĺßďő óýíäĺóçň \n"
-"\n"
-" \n"
-"Ĺáí ęÜíĺôĺ ĺăęáôÜóôáóç óĺ Ýíá PPC ěç÷Üíçěá, čá čÝëĺôĺ íá äçěéďőńăŢóĺôĺ ěéá "
-"ěéęńŢ HFS 'bootstrap' ęáôÜôěçóç ôďőëÜ÷éóôďí 1Ě ăéá ÷ńŢóç\n"
-"áđü ôďí yaboot bootloader. ĹÜí óęďđĺýĺôĺ íá ęÜíĺôĺ ôçí ęáôÜôěçóç ěĺăáëýôĺńç, "
-"đ.÷. 50ĚÂ, ßóůň ôçí âńĺßôĺ ÷ńŢóéěç ăéá áđďčŢęĺőóç \n"
-"ĺíüň đőńŢíá ęáé ramdisk image ăéá ĺđßăďőóĺň ęáôáóôÜóĺéň."
-
-#: ../../help.pm_.c:513
-#, fuzzy
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Đĺńéóóüôĺńĺň ôůí ěßá ęáôáôěŢóĺéň Windows âńÝčçęáí óôďí äßóęď óáň. Đáńáęáëţ \n"
-"ĺđéëÝîôĺ đďéÜ čÝëĺôĺ íá óőńńéęíţóĺôĺ ăéá íá ĺăęáôáóôŢóĺôĺ ôď Mandrake "
-"Linux.\n"
-"\n"
-"\n"
-"ĐëçńďöďńéáęÜ, ęÜčĺ ęáôÜôěçóç áíáöÝńĺôáé ůň: \"źíďěá Linux\", \"źíďěá Windows"
-"\", \"×ůńçôéęüôçôá\".\n"
-"\n"
-"\n"
-"Ôď üíďěá Linux óçěáßíĺé ôá ĺîŢň: Ôýđďň äßóęďő, áńéčěüň äßóęďő, áńéčěüň "
-"ęáôÜôěçóçň \n"
-"ăéá đáńÜäĺéăěá, \"hda1\").\n"
-"\n"
-"\n"
-"Ď ôýđďň ĺßíáé \"hd\" ĺÜí đńüęĺéôáé ăéá äßóęď IDE ęáé \"sd\" ăéá SCSI äßóęď.\n"
-"\n"
-"\n"
-"Ď áńéčěüň äßóęďő ĺßíáé đÜíôá Ýíá ăńÜěěá ěĺôÜ ôď \"hd\" Ţ \"sd\". Ăéá ôďőň "
-"IDE \n"
-"äßóęďőň: \n"
-"\n"
-" * \"a\" ĺßíáé ď master äßóęďň óôďí đńţôď ĺëĺăęôŢ IDE,\n"
-"\n"
-" * \"b\" ĺßíáé ď slave äßóęďň óôďí đńţôď ĺëĺăęôŢ IDE,\n"
-"\n"
-" * \"c\" ĺßíáé ď master äßóęďň óôďí äĺýôĺńď ĺëĺăęôŢ IDE,\n"
-"\n"
-" * \"d\" ĺßíáé ď slave äßóęďň óôďí äĺýôĺńď ĺëĺăęôŢ IDE.\n"
-"\n"
-"\n"
-"Ăéá äßóęďőň SCSI, \"a\" ĺßíáé ď đńţôďň äßóęďň, \"b\" ĺßíáé ď äĺýôĺńďň äßóęďň "
-"ęëđ...\n"
-"\n"
-"\n"
-"Ôď üíďěá Windows ĺßíáé ôď ăńÜěěá ôçň ęáôÜôěçóçň üđůň öáßíĺôáé áđü ôá "
-"Windows\n"
-"(ď đńţôďň äßóęďň Ţ ęáôÜôěçóç ëÝăĺôáé \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ. ÁőôŢ ç äéáäéęáóßá ěđďńĺß íá đÜńĺé ěĺńéęÜ ëĺđôÜ."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Đáńáęáëţ ĺđéëÝîôĺ \"ĹăęáôÜóôáóç\" ĺÜí äĺí őđÜń÷ĺé ĺăęáôĺóôçěÝíç đáëáéüôĺńç "
-"Ýęäďóç ôďő Mandrake Linux\n"
-"Ţ ĺÜí čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ đĺńéóóüôĺńá ôďő ĺíüň ëĺéôďőńăéęÜ óőóôŢěáôá.\n"
-"\n"
-"\n"
-"ĹđéëÝîôĺ \"ÁíáâÜčěéóç\" ĺÜí čÝëĺôĺ íá áíáâáčěßóĺôĺ ěéá đńďűđÜń÷ďőóá "
-"ĺăęáôÜóôáóç ôďő Mandrake Linux\n"
-"\n"
-"\n"
-"ÁíÜëďăá ěĺ ôéň ăíţóĺéň óáň óôď GNU/Linux, ěđďńĺßôĺ íá ĺđéëÝîĺôĺ Ýíá áđü ôá "
-"đáńáęÜôů ĺđßđĺäá ĺăęáôÜóôáóçň\n"
-"Ţ áíáâÜčěéóçň ôďő Mandrake Linux:\n"
-"\n"
-"* Óőíéóôţěĺíď: ĹÜí äĺí Ý÷ĺôĺ îáíáĺăęáôáóôŢóĺé đďôÝ Ýíá GNU/Linux óýóôçěá. Ç "
-"ĺăęáôÜóôáóç čá ĺßíáé \n"
-" đďëý ĺýęďëç ęáé čá óáň ćçôçčĺß íá áđáíôŢóĺôĺ ëßăĺň ĺńůôŢóĺéň.\n"
-"\n"
-"\n"
-"* ĐńďóáńěďóěÝíç: ĹÜí ĺßóôĺ ĺîďéęĺéůěÝíďň ěĺ ôď GNU/Linux, ěđďńĺßôĺ íá "
-"ĺđéëÝîĺôĺ ôçí âáóéęŢ ÷ńŢóç\n"
-" (ĺîőđçńĺôçôŢň, óôáčěüň ĺńăáóßáň) ôďő óőóôŢěáôüň óáň. Čá ÷ńĺéáóôĺß íá "
-"áđáíôŢóĺôĺ óĺ đĺńéóóüôĺńĺň\n"
-" ĺńůôŢóĺéň, ďđüôĺ čá đńÝđĺé íá Ý÷ĺôĺ ęÜđďéĺň âáóéęÝň ăíţóĺéň ó÷ĺôéęÜ ěĺ ôçí "
-"ëĺéôďőńăßá ôďő GNU/Linux.\n"
-"\n"
-"\n"
-"* Ĺéäéęüň: ĹÜí Ý÷ĺôĺ ĺěđĺéńßá ěĺ ôď GNU/Linux. źđůň ęáé đáńáđÜíů, ěđďńĺßôĺ "
-"íá ĺđéëÝîĺôĺ ôçí âáóéęŢ\n"
-" ÷ńŢóç ôďő óőóôŢěáôďň. Čá ěđďńÝóĺôĺ ĺđßóçň íá đńďóáńěüóĺôĺ ôď óýóôçěá óôéň "
-"áíÜăęĺň óáň ëĺđôďěĺńţň,\n"
-" áëëÜ čá ÷ńĺéáóôĺß íá áđáíôŢóĺôĺ óĺ ĺîĺéäéęĺőěÝíĺň ĺńůôŢóĺéň đďő "
-"đńďűđďčÝôďőí ĺîĺéäéęĺőěÝíĺň ăíţóĺéň.\n"
-" Âĺâáéůčĺßôĺ üôé îÝńĺôĺ ôé ęÜíĺôĺ đńůôďý ĺđéëÝîĺôĺ áőôŢí ôçí ĺăęáôÜóôáóç."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-#, fuzzy
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Đáńáęáëţ ĺđéëÝîôĺ ôçí ęáôÜëëçëç čýńá. Ăéá đáńÜäĺéăěá,\n"
-"ç COM1 óôá Windows ďíďěÜćĺôáé ttyS0 óôď GNU/Linux."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"Ôď LILO ęáé ôď Grub ĺßíáé đńďăńÜěěáôá ĺęęßíçóçň: Ěđďńďýí íá ĺęęéíŢóďőí \n"
-"ôď GNU/Linux Ţ ďđďéďäŢđďôĺ Üëëď ëĺéôďőńăéęü őđÜń÷ĺé óôď óýóôçěÜ óáň. "
-"ĘáíďíéęÜ, \n"
-"ôá ĺđéđëÝďí ëĺéôďőńăéęÜ đńďóäéďńßćďíôáé ęáé ńőčěßćďíôáé óůóôÜ. ĹÜí áőôü "
-"äĺí \n"
-"óőíÝâç, ěđďńĺßôĺ íá đńďóčÝóĺôĺ ĺđéđëÝďí ĺđéëďăÝň óĺ áőôŢí ôçí ďčüíç. \n"
-"ĐńďóÝîôĺ íá ĺđéëÝîĺôĺ ôéň óůóôÝň đáńáěÝôńďőň.\n"
-"\n"
-"Ěđďńĺßôĺ ĺđßóçň íá áđďęëĺßóĺôĺ ôçí đńüóâáóç óĺ Üëëá ëĺéôďőńăéęÜ óőóôŢěáôá "
-"áöáéńţíôáň\n"
-"ôéň áíôßóôďé÷ĺň ĺđéëďăÝň. Óĺ áőôŢí üěůň ôçí đĺńßđôůóç, čá ÷ńĺéáóôĺßôĺ "
-"äéóęÝôôá ĺęęßíçóçň\n"
-"ăéá íá ôá ÷ńçóéěďđďéŢóĺôĺ!"
-
-#: ../../help.pm_.c:722
-#, fuzzy
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"ĐńÝđĺé íá đńďóäéďńßóĺôĺ đďý čÝëĺôĺ íá ĺăęáôáóôáčďýí ďé \n"
-"đëçńďöďńßĺň đďő ĺßíáé áđáńáßôçôĺň ăéá ôçí ĺęęßíçóç ôďő \n"
-"GNU/Linux.\n"
-"\n"
-"\n"
-"Ĺęôüň ęáé áí îÝńĺôĺ đďëý ęáëÜ ôé ęÜíĺôĺ, ĺđéëÝîôĺ \"Đńţôďň ôďěÝáň\n"
-"ôďő äßóęďő (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"Ôď DrakX čá đńďóđáčŢóĺé íá ĺíôďđßóĺé đńďóáńěďăĺßň SCSI ôýđďő PCI.\n"
-"ĹÜí ôď DrakX ĺíôďđßóĺé Ýíáí đńďóáńěďăÝá đďő îÝńĺé đţň íá ôďí "
-"÷ńçóéěďđďéŢóĺé,\n"
-"čá ĺăęáôáóôŢóĺé áőôüěáôá ôďí ęáôÜëëçëď ďäçăü\n"
-"\n"
-"\n"
-"ĹÜí Ý÷ĺôĺ đńďóáńěďăÝá SCSI ôýđďő ISA, ęÜđďéďí ěŢ áíáăíůńßóéěď PCI "
-"đńďóáńěďăÝá \n"
-"Ţ äĺí Ý÷ĺôĺ ęáíÝíáí đńďóáńěďăÝá SCSI, ôď DrakX čá óáň ńůôŢóĺé ĺÜí Ý÷ĺôĺ "
-"ęÜđďéďí \n"
-"đńďóáńěďăÝá SCSI óôď óýóôçěÜ óáň. ĹÜí äĺí Ý÷ĺôĺ, đáôŢóôĺ áđëţň 'ź÷é'. ĹÜí "
-"đáôŢóĺôĺ\n"
-"'Íáé', čá óáň ćçôçčĺß íá áđéëÝîĺôĺ ôďí ôýđď ôďő áđü Ýíáí ęáôÜëďăď.\n"
-"\n"
-"\n"
-"ĹÜí ĺđéëÝîĺôĺ đńďóáńěďăÝá, ôď DrakX čá óáň ńůôŢóĺé ĺÜí čÝëĺôĺ íá ďńßóĺôĺ "
-"ĺđéëďăÝň.\n"
-"ÓőíŢčůň, áöŢíďíôáň ôď DrakX íá ńőčěßóĺé áőôüěáôá ôďí đńďóáńěďăÝá, äĺí čá "
-"Ý÷ĺôĺ đńüâëçěá.\n"
-"\n"
-"\n"
-"Óĺ áíôßčĺôç đĺńßđôůóç, čá đńÝđĺé íá äţóĺôĺ ĺđéëďăÝň ăéá ôďí ďäçăü. \n"
-"Óőěâďőëĺőôĺßôĺ ôďí Ďäçăü ĹăęáôÜóôáóçň ăéá ôď đţň čá âńĺßôĺ áőôÝň ôéň \n"
-"đëçńďöďńßĺň áđü ôçí ĺăęáôÜóôáóç ôůí Windows (áí őđÜń÷ĺé), áđü ôçí "
-"ôĺęěçńßůóç\n"
-"ôďő őëéęďý Ţ áđü ôçí éóôďóĺëßäá ôďő ęáôáóęĺőáóôŢ (áí Ý÷ĺôĺ đńüóâáóç óôď "
-"Internet)."
-
-#: ../../help.pm_.c:784
-#, fuzzy
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"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 video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-"\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."
-
-#: ../../help.pm_.c:830
-#, fuzzy
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"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."
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-#, fuzzy
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"ĹđéëÝîôĺ ôďí äßóęď đďő čÝëĺôĺ íá äéáăńÜřĺôĺ ăéá íá ĺăęáôáóôŢóĺôĺ \n"
-"ôçí íÝá ęáôÜôěçóç Mandrake Linux. ĐŃĎÓĎ×Ç: źëá ôá äĺäďěÝíá čá äéáăńáöďýí\n"
-"ęáé čá ĺßíáé áäýíáôç ç ĺđáíáöďńÜ ôďőň."
-
-#: ../../help.pm_.c:896
-#, fuzzy
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"ĐáôŢóôĺ \"OK\" ĺÜí čÝëĺôĺ íá äéáăńÜřĺôĺ üëá ôá äĺäďěÝíá ęáé ôéň \n"
-"ęáôáôěŢóĺéň óĺ áőôüí ôďí äßóęď. Đńďóď÷Ţ, ěĺôÜ áđü áőôü äĺí čá ěđďńĺßôĺ \n"
-"íá ĺđáíáöÝńĺôĺ ďđďéáäŢđďôĺ äĺäďěÝíá đďő âńßóęďíôáé áőôŢ ôç óôéăěŢ óôďí \n"
-"äßóęď, óőěđĺńéëáěâáíďěÝíůí ęáé ďđďéďíäŢđďôĺ äĺäďěÝíůí áđü ôá Windows.\n"
-"\n"
-"\n"
-"ĐáôŢóôĺ \"Áęýńůóç\" ăéá íá áęőńţóĺôĺ áőôŢí ôçí äéáäéęáóßá ÷ůńßň íá ÷Üóĺôĺ \n"
-"äĺäďěÝíá ęáé ęáôáôěŢóĺéň đďő âńßóęďíôáé óôďí äßóęď."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"¸÷ĺôĺ ĺđéëÝîĺé ôďőň đáńáęÜôů ĺîőđçńĺôçôÝň: %s\n"
-"\n"
-"\n"
-"Áőôďß ďé ĺîőđçńĺôçôÝň ĺíĺńăďđďéďýíôáé ĺî' ďńéóěďý. Äĺí Ý÷ďőí ęÜđďéá ăíůóôÜ "
-"đńďâëŢěáôá\n"
-"áóöáëĺßáň, áëëÜ ěđďńĺß íá âńĺčďýí ęÜđďéá ęáéíďýńéá. Óĺ áőôŢí ôçí đĺńßđôůóç, "
-"đńÝđĺé íá áíáâáčěßóĺôĺ\n"
-"ôď óőíôďěüôĺńď äőíáôüí.\n"
-"\n"
-"\n"
-"ČÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ áőôďýň ôďőň ĺîőđçńĺôçôÝň;\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Äĺí ěđďńţ íá ÷ńçóéěďđďéŢóů broadcast ÷ůńßň NIS domain"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "ĹéóÜăĺôĺ ěéá FAT ěďńöďđďéçěÝíç äéóęÝôôá óôďí ďäçăü %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "ÁőôŢ ç äéóęÝôôá äĺí ĺßíáé ěďńöďđďéçěÝíç FAT"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Ăéá íá ÷ńçóéěďđďéŢóĺôĺ áőôŢí ôçí áđďčçęĺőěÝíç ĺđéëďăŢ đáęÝôůí, îĺęéíŢóôĺ ôçí "
-"ĺăęáôÜóôáóç ěĺ ``linux defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "ÓöÜëěá ęáôÜ ôçí áíÜăíůóç ôďő áń÷ĺßďő %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"¸íá ěÝńďň ôďő őëéęďý óáň ÷ńĺéÜćĺôáé ``éäéüęôçôďőň'' ďäçăďýň ăéá íá "
-"ëĺéôďőńăŢóĺé.\n"
-"Ěđďńĺßôĺ íá âńĺßôĺ ó÷ĺôéęÝň đëçńďöďńßĺň óôď: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"ĐńÝđĺé íá Ý÷ĺôĺ ěéá âáóéęŢ ęáôÜôěçóç.\n"
-"ÄçěéoőńăŢóôĺ Ţ ĺđéëÝîôĺ ěéá ęáôÜôěçóç.\n"
-"ĚĺôÜ ďńßóôĺ ůň óçěĺßď óýíäĺóçň ôď `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "ĐńÝđĺé íá Ý÷ĺôĺ ěéá ęáôÜôěçóç swap"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Äĺí Ý÷ĺôĺ ďńßóĺé ęáôÜôěçóç swap\n"
-"\n"
-"Íá óőíĺ÷ßóů;"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "ĐńÝđĺé íá Ý÷ĺôĺ ěéá ęáôÜôěçóç FAT mounted óôď /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "×ńŢóç ĺëĺýčĺńďő ÷ţńďő"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Äĺí őđÜń÷ĺé áńęĺôüň ĺëĺýčĺńďň ÷ţńďň ăéá äçěéďőńăßá íÝůí ęáôáôěŢóĺůí"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "×ńŢóç őđÜń÷ďíôůí ęáôáôěŢóĺůí"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Äĺí őđÜń÷ďőí ęáôáôěŢóĺéň đńďň ÷ńŢóç"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "×ńŢóç ęáôÜôěçóçň Windows ăéá loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "ĐďéÜ ęáôÜôěçóç čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ăéá ôď Linux4Win;"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "ĹđéëÝîôĺ ôá ěĺăÝčç"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "ĚÝăĺčďň âáóéęŢň ęáôÜôěçóçň óőóôŢěáôďň óĺ MB:"
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "ĚÝăĺčďň ęáôÜôěçóçň swap óĺ MB"
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "×ńŢóç ôďő ĺëĺýčĺńďő ÷ţńďő óôçí ęáôÜôěçóç ôůí Windows"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Óĺ ôé ôýđď ęáôÜôěçóçň čÝëĺôĺ íá áëëÜîĺôĺ ěÝăĺčďň;"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Őđďëďăéóěüň ďńßůí óőóôŢěáôďň áń÷ĺßůí Windows"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Äĺí ěđďńţ íá áëëÜîů ěÝăĺčďň óôçí ęáôÜôěçóç FAT, \n"
-"đńďęëŢčçęĺ ôď đáńáęÜôů ëÜčďň: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Ç ęáôÜôěçóç ôůí Windows ĺßíáé đďëý ęáôáęĺńěáôéóěÝíç, đáńáęáëţ ôńÝîôĺ đńţôá "
-"ôď ``defrag'' "
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"ĐŃĎÓĎ×Ç!\n"
-"\n"
-"Ôď DrakX đńÝđĺé ôţńá íá áëëÜîĺé ôď ěÝăĺčďň ôçň ęáôÜôěçóçň ôůí Windows.\n"
-"Ç äéáäéęáóßá áőôŢ ĺěđĺńéÝ÷ĺé ęéíäýíďőň. ĹÜí äĺí ôď Ý÷ĺôĺ ęÜíĺé Ţäç,\n"
-"čá đńÝđĺé íá ĺëÝăîĺôĺ ôçí ęáôÜôěçóç ěĺ ęÜđďéď ó÷ĺôéęü đńüăńáěěá (đ÷\n"
-"scandisk) ęáé ęáôÜ đĺńßđôůóç íá ôçí áđďęáôáęĺńěáôďđďéŢóĺôĺ (defragment).\n"
-"ĚĺôÜ čá đńÝđĺé íá ęńáôŢóĺôĺ áíôßăńáöď áóöáëĺßáň ôůí äĺäďěÝíůí óáň.\n"
-"ĹÜí ĺßóôĺ óßăďőńďé, đáôŢóôĺ Ok."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Ôé ÷ţńď čÝëĺôĺ íá ęńáôŢóĺôĺ ăéá ôá windows óôď"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "ęáôÜôěçóç %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "ÁëëáăŢ ěĺăÝčďőň FAT áđÝôő÷ĺ: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Äĺí őđÜń÷ďőí FAT ęáôáôěŢóĺéň ăéá áëëáăŢ ěĺăÝčďőň Ţ ăéá ÷ńŢóç ůň loopback (Ţ "
-"äĺí őđÜń÷ĺé áńęĺôüň ÷ţńďň)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "ÄéáăńáöŢ ďëüęëçńďő ôďő äßóęďő"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Áöáßńĺóç Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"¸÷ĺôĺ đĺńéóóüôĺńďőň áđü Ýíáí äßóęďőň, óĺ đďéüí čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ôď "
-"Linux;"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"źëĺň ďé őđÜń÷ďőóĺň ęáôáôěŢóĺéň ęáé ôá äĺäďěÝíá ôďőň óôďí äßóęď %s čá ÷áčďýí"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "ĐńďóáńěďóěÝíĺň ęáôáôěŢóĺéň äßóęďő"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "×ńŢóç fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Ěđďńĺßôĺ ôţńá íá ęáôáôěŢóĺôĺ ôďí äßóęď %s\n"
-"źôáí ôĺëĺéţóĺôĺ, ěçí îĺ÷Üóĺôĺ íá áđďčçęĺýóĺôĺ đáôţíôáň `w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Äĺí Ý÷ĺôĺ áńęĺôü ĺëĺýčĺńď ÷ţńď óôçí ęáôÜôěçóç ôůí Windows"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Äĺí ěđďńţ íá âńţ áńęĺôü ÷ţńď ăéá ĺăęáôÜóôáóç"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Ôď DrakX âńŢęĺ ôéň đáńáęÜôů ëýóĺéň:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Ç ęáôÜôěçóç áđÝôő÷ĺ: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Ĺęęßíçóç äéęôýďő"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "ÄéáęďđŢ ëĺéôďőńăßáň äéęôýďő."
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"ĐńďęëŢčçęĺ óöÜëěá đďő äĺí îÝńů đţň íá ôď ÷ĺéńéóôţ.\n"
-"ôďő őëéęďý Ţ áđü ôçí éóôďóĺëßäá ôďő ęáôáóęĺőáóôŢ (áí Ý÷ĺôĺ đńüóâáóç óôď "
-"Internet).Óőíĺ÷ßóôĺ ěĺ äéęéÜ óáň ĺőčýíç."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Äéđëü óçěĺßď óýíäĺóçň %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"ĚĺńéęÜ óçěáíôéęÜ đáęÝôá äĺí ĺăáôáóôÜčçęáí óůóôÜ.\n"
-"Ď ďäçăüň CD-ROM Ţ ôď CD-ROM ĺßíáé ĺëëáôůěáôéęü.\n"
-"ĹëÝăîôĺ ôď CD-ROM óĺ Ýíá Üëëď óýóôçěá ÷ńçóéěďđďéţíôáň ôçí ĺíôďëŢ \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Ęáëţň Ţńčáôĺ óôď %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Äĺí őđÜń÷ĺé äéáčÝóéěďň ďäçăüň äéóęÝôôáň"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "ÂŢěá `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Ôď óýóôçěÜ óáň äĺí Ý÷ĺé áńęĺôďýň đüńďőň. Ěđďńĺß íá áíôéěĺôůđßóĺôĺ "
-"đńďâëŢěáôá\n"
-"óôçí ĺăęáôÜóôáóç ôďő Mandrake Linux. ĹÜí óőěâĺß áőôü, ěđďńĺßôĺ íá äďęéěÜóĺôĺ "
-"ĺăęáôÜóôáóç ęĺéěÝíďő.\n"
-"ĐáôŢóôĺ F1 ęáôÜ ôçí ĺęęßíçóç áđü CDROM, ěĺôÜ ăńÜřôĺ `text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Ôýđďň ĺăęáôÜóôáóçň"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôéň đáńáęÜôů đëçńďöďńßĺň"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, 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:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"ĹÜí čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ëéăüôĺńá,\n"
-"ĺđéëÝîôĺ ôď đďóďóôü ôůí đáęÝôůí đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ.\n"
-"\n"
-"¸íá ÷áěçëü đďóďóôü čá ĺăęáôáóôŢóĺé ěüíď ôá đéď óçěáíôéęÜ đáęÝôá.\n"
-"¸íá đďóďóôü 100% čá ĺăęáôáóôŢóĺé üëá ôá ĺđéëĺăěÝíá đáęÝôá."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"¸÷ĺôĺ óôď äßóęď óáň ÷ţńď ěüíď ăéá ôď %d%% áőôţí ôůí đáęÝôůí.\n"
-"\n"
-"ĹÜí čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ëéăüôĺńá áđü áőôÜ,\n"
-"ĺđéëÝîôĺ ôď đďóďóôü ôůí đáęÝôůí đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ.\n"
-"¸íá ÷áěçëü đďóďóôü čá ĺăęáôáóôŢóĺé ěüíď ôá đéď óçěáíôéęÜ đáęÝôá.\n"
-"¸íá đďóďóôü %d%% čá ĺăęáôáóôŢóĺé üóď đĺńéóóüôĺńá ăßíĺôáé."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Čá ěđďńÝóĺôĺ íá ęÜíĺôĺ ëĺđôďěĺńÝóôĺńç ĺđéëďăŢ óôď ĺđüěĺíď âŢěá."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Đďóďóôü đáęÝôůí đńďň ĺăęáôÜóôáóç"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "ĹđéëďăŢ ďěÜäůí đáęÝôůí"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "ĹđéëďăŢ îĺ÷ůńéóôţí đáęÝôůí"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Óőíďëéęü ěÝăĺčďň: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "ËÜčďň đáęÝôď"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "źíďěá: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "¸ęäďóç: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "ĚÝăĺčďň: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Óçěáóßá: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Äĺí ěđďńĺßôĺ íá ĺđéëÝîĺôĺ áőôü ôď đáęÝôď äéüôé äĺí őđÜń÷ĺé áńęĺôüň ÷ţńďň"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Čá ĺăęáôáóôáčďýí ôá đáńáęÜôů đáęÝôá"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Čá áöáéńĺčďýí ôá đáńáęÜôů đáęÝôá "
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Äĺí ěđďńĺßôĺ íá ĺđéëÝîĺôĺ/áđďĺđéëÝîĺôĺ áőôü ôď đáęÝôď"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Áőôü ĺßíáé áđáéôďýěĺíď đáęÝôď, äĺí ěđďńĺß íá áđďĺđéëĺăĺß"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Äĺí ěđďńĺßôĺ íá áđďĺđéëÝîĺôĺ áőôü ôď đáęÝôď. Ĺßíáé Ţäç ĺăęáôĺóôçěÝíď"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Áőôü ôď đáęÝôď đńÝđĺé íá áíáâáčěéóôĺß\n"
-"Ĺßóôĺ óßăďőńďň üôé čÝëĺôĺ íá ôď áđďĺđéëÝîĺôĺ;"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Äĺí ěđďńĺßôĺ íá áđďĺđéëÝîĺôĺ áőôü ôď đáęÝôď. ĐńÝđĺé íá áíáâáčěéóôĺß"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Áőôüěáôç đńďâďëŢ ĺđéëĺăěÝíůí đáęÝôůí"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "ĹăęáôÜóôáóç"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Öüńôůóç/ÁđďčŢęĺőóç óĺ äéóęÝôôá"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "ÁíáíÝůóç ĺđéëĺăěÝíůí đáęÝôůí"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "ĹëÜ÷éóôç ĹăęáôÜóôáóç"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "ĹđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "ĹăęáôÜóôáóç"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Ĺęôßěçóç"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "ĹíáđďěÝíůí ÷ńüíďň "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ, đńďĺôďéěáóßá ĺăęáôÜóôáóçň"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d đáęÝôá"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Áđďäď÷Ţ"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "śńíçóç"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"ÁëëáăŢ Cd-Rom!\n"
-"\n"
-"Đáńáęáëţ ĺéóÜăĺôĺ ôď Cd-Rom ěĺ üíďěá \"%s\" óôďí ďäçăü óáň ęáé đáôŢóôĺ Ďę.\n"
-"ĹÜí äĺí ôď Ý÷ĺôĺ, đáôŢóôĺ Áęýńůóç ăéá áđďöőăŢ ĺăęáôÜóôáóçň áđü áőôü ôď CdRom."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Íá óőíĺ÷ßóů;"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "ĐńďęëŢčçęĺ óöÜëěá ęáôÜ ôçí ôáîéíüěçóç ôůí đáęÝôůí:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "ĐńďęëŢčçęĺ óöÜëěá ęáôÜ ôçí ĺăęáôÜóôáóç ôůí đáęÝôůí:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"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"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "ĐńďęëŢčçęĺ óöÜëěá"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "ČÝëĺôĺ íá ĺđáíĺęęéíŢóĺôĺ ôď äßęôőď;"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "śäĺéá ÷ńŢóçň"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"ĹéóáăůăŢ\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Đëçęôńďëüăéď"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ äéáńýčěéóç đëçęôńďëďăßďő."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "ÁőôŢ ĺßíáé ç đëŢńçň ëßóôá ôůí äéáčÝóéěůí đëçęôńďëďăßůí"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Ôé ôýđď ĺăęáôÜóôáóçň đńďôéěÜôĺ;"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "ĹăęáôÜóôáóç/ÁíáâÜčěéóç"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Đńüęĺéôáé ăéá ĺăęáôÜóôáóç Ţ ăéá áíáâÜčěéóç;"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Óőíéóôţěĺíď"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Ăéá ĺéäéęďýň"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "ÁíáâÜčěéóç"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "ÁíáíÝůóç ĺđéëĺăěÝíůí đáęÝôůí"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Čýńá đďíôéęéďý"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr ""
-"Đáńáęáëţ ĺđéëÝîôĺ óĺéńéáęŢ čýńá óôçí ďđďßá ĺßíáé óőíäĺäĺěÝíď ôď đďíôßęé óáň."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Đńďóďěďßůóç Ęďőěđéţí"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Đńďóďěďßůóç 2 Ęďőěđéţí"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Đńďóďěďßůóç 3 Ęďőěđéţí"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Ńýčěéóç ęáńôţí PCMCIA "
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Ńýčěéóç IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "äĺí őđÜń÷ďőí äéáčÝóéěĺň ęáôáôěŢóĺéň"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "ÁíÜëőóç ęáôáôěŢóĺůí ăéá đńďóäéďńéóěü óçěĺßůí óýíäĺóçň."
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "ĹđéëÝîôĺ óçěĺßá óýíäĺóçň"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Äĺí ěđďńţ íá äéáâÜóů ôďí đßíáęá ęáôáôěŢóĺůí, ĺßíáé đďëý ęáôĺóôńáěÝíďň :(\n"
-"Čá đńďóđáčŢóů íá óőíĺ÷ßóů áöáéńţíôáň ôéň ëáíčáóěÝíĺň ęáôáôěŢóĺéň ęáé ĎËÁ\n"
-"ôá äĺäďěÝíá čá ÷áčďýí. Ç Üëëç ĺđéëďăŢ óáň ĺßíáé íá ěçí ĺđéôńÝřĺôĺ óôď \n"
-"DrakX íá áăăßîĺé ôďí đßíáęá ęáôáôěŢóĺůí. Ôď óöÜëěá ĺßíáé: %s\n"
-"\n"
-"Óőěöůíĺßôĺ íá äéáăńáöďýí üëĺň ďé ęáôáôěŢóĺéň;\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"Ôď DiskDrake áđÝôő÷ĺ íá äéáâÜóĺé óůóôÜ ôďí đßíáęá ęáôáôěŢóĺůí.\n"
-"Óőíĺ÷ßóôĺ ěĺ äéęŢ óáň ĺőčýíç!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Äĺí őđÜń÷ĺé ĺëĺýčĺńďň ÷ţńďň ăéá 1MB bootstrap! Ç ĺăęáôÜóôáóç čá óőíĺ÷éóôĺß, "
-"áëëÜ ăéá íá îĺęéíŢóĺôĺ ôď óýóôçěÜ óáň, čá ÷ńĺéáóôĺß íá äçěéďőńăŢóĺôĺ ěéá "
-"ęáôÜôěçóç bootstrap ěĺ ôď DiskDrake"
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Äĺí âńÝčçęĺ ęáôÜôěçóç root ăéá ôçí đńáăěáôďđďßçóç ôçň áíáâÜčěéóçň"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Root Partition (âáóéęŢ ęáôÜôěçóç óőóôŢěáôďň)"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "ĐďéÜ ĺßíáé ç âáóéęŢ ęáôÜôěçóç (/) ôďő óőóôŢěáôüň óáň;"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Áđáéôĺßôáé ĺđáíĺęęßíçóç ăéá íá ĺíĺńăďđďéçčďýí ďé áëëáăÝň óôďí đßíáęá "
-"ęáôáôěŢóĺůí"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "ĹđéëÝîôĺ ęáôáôěŢóĺéň đńďň ěďńöďđďßçóç"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "¸ëĺă÷ďň ăéá ÷áëáóěÝíá blocks;"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Ěďńöďđďßçóç ęáôáôěŢóĺůí"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Äçěéďőńăßá ęáé ěďńöďđďßçóç áń÷ĺßďő %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr ""
-"Äĺí őđÜń÷ĺé áńęĺôü swap ăéá ôçí ďëďęëŢńůóç ôçň ĺăęáôÜóôáóçň, đáńáęáëţ "
-"đńďóčÝóôĺ"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "ŘÜ÷íů ăéá äéáčÝóéěá đáęÝôá"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Đńďóäéďńéóěüň đáęÝôůí đńďň áíáâÜčěéóç"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Ôď óýóôçěÜ óáň äĺí Ý÷ĺé áńęĺôü äéáčÝóéěď ÷ţńď ăéá ĺăęáôÜóôáóç Ţ áíáâÜčěéóç (%"
-"d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "ĐëŢńçň (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "ĹëÜ÷éóôç (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Óőíéóôţěĺíç (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Đáńáęáëţ ĺđéëÝîôĺ ôç öüńôůóç Ţ áđďčŢęĺőóç ôůí ĺđéëďăŢň đáęÝôůí óôç "
-"äéóęÝôôá.\n"
-"Ç ěďńöďđďßçóç ĺßíáé ç ßäéá ěĺ ôéň äéóęÝôôĺň áőôüěáôçň ĺăęáôÜóôáóçň."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Öüńôůóç áđü äéóęÝôôá"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Öüńôůóç áđü äéóęÝôôá"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "ĹđéëďăŢ đáęÝôůí"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "ĹéóÜăĺôĺ äéóęÝôôá đďő đĺńéÝ÷ĺé ôçí ĺđéëďăŢ đáęÝôůí"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "ÁđďčŢęĺőóç óĺ äéóęÝôôá"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Ôď ĺđéëĺăěÝíď ěÝăĺčďň ĺßíáé ěĺăáëýôĺńď áđü ôď äéáčÝóéěď ÷ţńď"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"ĹÜí Ý÷ĺôĺ üëá ôá đáńáęÜôů CDs, đáôŢóôĺ Ok.\n"
-"ĹÜí äĺí Ý÷ĺôĺ ęáíÝíá áđü ôá đáńáęÜôů CDs, đáôŢóôĺ Áęýńůóç.\n"
-"ĹÜí äĺí Ý÷ĺôĺ ęÜđďéá áđü áőôÜ, áđďĺđéëÝîôĺ ôá ęáé đáôŢóôĺ Ok."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom ďíüěáôé \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Đńďĺôďéěáóßá ĺăęáôÜóôáóçň"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"ĹăęáôÜóôáóç đáęÝôďő %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Ńőčěßóĺéň ěĺôÜ ôçí ĺăęáôÜóôáóç"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôç äéóęÝôôá Ĺęęßíçóçň óôďí ďäçăü %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôç äéóęÝôôá ÁíáíÝůóçň ÁńčńůěÜôůí óôďí ďäçăü %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Ěđďńĺßôĺ ôţńá íá ęáôĺâÜóĺôĺ ęńőđôďăńáöéęü ëďăéóěéęü.\n"
-"\n"
-"ĐŃĎÓĎ×Ç:\n"
-"\n"
-"Ëüăů ôůí äéáöďńĺôéęţí íüěůí đďő éó÷ýďőí óĺ äéÜöďńá ěÝńç ó÷ĺôéęÜ ěĺ ôçí "
-"ęńőđôďăńáößá,\n"
-"ď ÷ńŢóôçň đńÝđĺé íá âĺâáéůčĺß üôé ďé íüěďé đďő ôďí áöďńďýí ôďő ĺđéôńÝđďőí íá "
-"ęáôĺâÜóĺé,\n"
-"áđďčçęĺýóĺé ęáé/ç ÷ńçóéěďđďéŢóĺé áőôü ôď ëďăéóěéęü.\n"
-"\n"
-"Ď ÷ńŢóôçň đńÝđĺé íá đńďóÝîĺé íá ěçí đáńáâĺß ôďőň ó÷ĺôéęďýň íüěďőň. Ôő÷üí "
-"đáńáâßáóç áőôţí\n"
-"ôůí íüěůí, ěđďńĺß íá ĺđéöÝńĺé ęőńţóĺéň.\n"
-"\n"
-"Óĺ ęáěßá đĺńßđôůóç ç Mandrakesoft, ďé ęáôáóęĺőáóôÝň ęáé ďé đńďěçčĺőôÝň ôçň "
-"äĺí öÝńďőí ĺőčýíç\n"
-"ăéá ďđďéĺóäŢđďôĺ ćçěéÝň (đďő đĺńéëáěâÜíďőí ěĺôáîý Üëëůí áđţëĺéá ęĺńäţí, "
-"äéáôÜńáîç ëĺéôďőńăßáň\n"
-"ĺđé÷ĺßńçóçň, áđţëĺéá đëçńďöďńéţí ęáé ôő÷üí ęüóôç đďő čá đńďęýřďőí áđü "
-"íďěéęÝň ĺőčýíĺň.\n"
-"\n"
-"Ăéá đĺńéóóüôĺńĺň đëçńďöďńßĺň ĺđéęďéíůíŢóôĺ \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Óýíäĺóç ăéá ëŢřç đáęÝôůí"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "ĹđéëÝîôĺ ôüđď áđü ôďí ďđďßď čá ăßíĺé ç ëŢřç đáęÝôůí"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Óýíäĺóç ăéá ëŢřç đáęÝôůí"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "ĐďéÜ ĺßíáé ç ćţíç ţńáň;"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Ôď ńďëüé ôďő őđďëďăéóôŢ óáň ĺßíáé ńőčěéóěÝíď óĺ GMT (ţńá ĂęńŢíďőúôň)"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Áőôüěáôďň óőă÷ńďíéóěüň ţńáň (÷ńŢóç NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "ĹîőđçńĺôçôŢň NTP"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "ĘáíÝíáň ĺęôőđůôŢň"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "¸÷ĺôĺ áëëďí;"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Đĺńßëçřç"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Đďíôßęé"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "ŮńďëďăéáęŢ Ćţíç"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "ĹęôőđůôŢň"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "KÜńôá ISDN"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "ĘÜńôá Ţ÷ďő"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "ĘÜńôá TV"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "ÔďđéęÜ áń÷ĺßá"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Óőíčçěáôéęü root"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "×ůńßň óőíčçěáôéęü"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr ""
-"Áőôü ôď óőíčçěáôéęü ĺßíáé đďëý áđëü (đńÝđĺé íá ĺßíáé ôďőëÜ÷éóôďí %d "
-"÷áńáęôŢńĺň ěáęńý)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Đéóôďđďßçóç ôáőôüôçôáň"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Đéóôďđďßçóç LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "ĹîőđçńĺôçôŢň LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "Ĺîáęńßâůóç NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "Đĺńéď÷Ţ (domain) NIS"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "ĹîőđçńĺôçôŢň NIS"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Ěéá đńďóáńěďóěÝíç äéóęÝôôá ĺęęßíçóçň óáň äßíĺé ôçí äőíáôüôçôá íá ĺęęéíŢóĺôĺ\n"
-"ôď óýóôçěÜ óáň ÷ůńßň ôçí ÷ńŢóç ôďő đńďăńÜěěáôďň ĺęęßíçóçň. Áőôü ĺßíáé "
-"÷ńŢóéěď ĺÜí äĺí čÝëĺôĺ\n"
-"íá ĺăęáôáóôŢóĺôĺ ôď SILO , ĺÜí ęÜđďéď Üëëď ëĺéôďőńăéęü ęáôáóôńÝřĺé ôď SILO\n"
-"Ţ ĺÜí ďé ńőčěßóĺéň óáň äĺí ĺđéôńÝđďőí ôç ÷ńŢóç SILO. ÁőôŢ ç äéóęÝôôá ěđďńĺß\n"
-"ĺđßóçň íá ÷ńçóéěďđďéçčĺß óĺ óőíäőáóěü ěĺ ôçí äéóęÝôôá äéÜóůóçň ôďő "
-"Mandrake,\n"
-"ęÜíďíôáň ĺőęďëüôĺńç ôçí ĺđáíáöďńÜ ôďő óőóôŢěáôďň ěĺôÜ áđü óďâáńŢ âëÜâç.\n"
-"ČÝëĺôĺ íá äçěéďőńăŢóĺôĺ äéóęÝôôá ĺęęßíçóçň;"
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Đńţôďň ďäçăüň äéóęÝôáň"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Äĺýôĺńďň ďäçăüň äéóęÝôáň"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "ĐáńÜëĺéřç"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Ěéá đńďóáńěďóěÝíç äéóęÝôôá ĺęęßíçóçň óáň äßíĺé ôçí äőíáôüôçôá íá ĺęęéíŢóĺôĺ\n"
-"ôď óýóôçěÜ óáň ÷ůńßň ôçí ÷ńŢóç ôďő đńďăńÜěěáôďň ĺęęßíçóçň. Áőôü ĺßíáé "
-"÷ńŢóéěď ĺÜí äĺí čÝëĺôĺ\n"
-"íá ĺăęáôáóôŢóĺôĺ ôď LILO (Ţ ôď grub), ĺÜí ęÜđďéď Üëëď ëĺéôďőńăéęü "
-"ęáôáóôńÝřĺé ôď LILO\n"
-"Ţ ĺÜí ďé ńőčěßóĺéň óáň äĺí ĺđéôńÝđďőí ôç ÷ńŢóç LILO. ÁőôŢ ç äéóęÝôôá ěđďńĺß\n"
-"ĺđßóçň íá ÷ńçóéěďđďéçčĺß óĺ óőíäőáóěü ěĺ ôçí äéóęÝôôá äéÜóůóçň ôďő "
-"Mandrake,\n"
-"ęÜíďíôáň ĺőęďëüôĺńç ôçí ĺđáíáöďńÜ ôďő óőóôŢěáôďň ěĺôÜ áđü óďâáńŢ âëÜâç.\n"
-"ČÝëĺôĺ íá äçěéďőńăŢóĺôĺ äéóęÝôôá ĺęęßíçóçň;\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "ËőđÜěáé, äĺí őđÜń÷ĺé äéáčÝóéěďň ďäçăüň äéóęÝôôáň"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "ĹđéëÝîôĺ ďäçăü äéóęÝôôáň ăéá äçěéďőńăßá äéóęÝôôáň ĺęęßíçóçň"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "ĹéóÜăĺôĺ äéóęÝôôá óôďí ďäçăü %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Äçěéďőńăßá äßóęďő ĺęęßíçóçň"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Đńďĺôďéěáóßá đńďăńÜěěáôďň ĺęęßíçóçň"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Öáßíĺôáé đůň Ý÷ĺôĺ Ýíá Áń÷áßď Ţ śăíůóôď\n"
-" ěç÷Üíçěá, ď yaboot bootloader äĺí čá äďőëÝřĺé ăéá óáň.\n"
-"Ç ĺăęáôÜóôáóç čá óőíĺ÷éóôĺß, áëëÜ\n"
-"čá ÷ńĺéáóôĺß íá ÷ńçóéěďđďéŢóĺôĺ ôď BootX ăéá íá îĺęéíŢóĺôĺ ôď ěç÷ÜíçěÜ óáň"
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "ČÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď aboot;"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"ÓöÜëěá ęáôÜ ôçí ĺăęáôÜóôáóç ôďő aboot, \n"
-"đńďóđÜčĺéá âĺâéáóěÝíçň ĺăęáôÜóôáóçň, áęüěá ęáé áí áőôü Ý÷ĺé óáí áđďôÝëĺóěá "
-"ôçí ęáôáóôńďöŢ ôçň đńţôçň ęáôÜôěçóçň;"
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Ĺăę. đń. ĺęęßíçóçň"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr ""
-"Ç ĺăęáôÜóôáóç ôďő đńďăńÜěěáôďň ĺęęßíçóçň áđÝôő÷ĺ. ĐńďęëŢčçęĺ ôď áęüëďőčď "
-"óöÜëěá:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, fuzzy, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Ěđďńĺß íá ÷ńĺéáóôĺß íá áëëÜîĺôĺ ôçí Open Firmware boot-óőóęĺőŢ ţóôĺ íá\n"
-" ĺíĺńăďđďéŢóĺôĺ ôďí bootloader. Áí óôď reboot äĺí äĺßôĺ ôçí đńďôńďđŢ ôďő\n"
-" bootloader, đáôŢóôĺ ôď Command-Option-O-F ęáôÜ ôď reboot ęáé ĺéóÜăĺôĺ:\n"
-" setenv boot-device $of_boot,\\\\:tbxi\n"
-" Ôüôĺ ôőđţóôĺ: shut-down\n"
-"Óôçí ĺđüěĺíç ĺęęßíçóç čá đńÝđĺé íá äĺßôĺ ôçí đńďôńďđŢ ôďő bootloader."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "ĹéóÜăĺôĺ Üäĺéá äéóęÝôôá óôďí ďäçăü %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Đńďĺôďéěáóßá äéóęÝôáň áőôüěáôçň ĺăęáôÜóôáóçň"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"ĚĺńéęÜ âŢěáôá äĺí ďëďęëçńţčçęáí.\n"
-"\n"
-"ČÝëĺôĺ óßăďőńá íá ĺăęáôáëĺßřĺôĺ ôţńá;"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Óőă÷áńçôŢńéá, ç ĺăęáôÜóôáóç ďëďęëçńţčçęĺ.\n"
-"ÁöáéńÝóôĺ ôçí äéóęÝôôá Ţ ôď CD ĺęęßíçóçň ęáé đáôŢóôĺ return ăéá "
-"ĺđáíĺęęßíçóç.\n"
-"\n"
-"\n"
-"Ăéá đëçńďöďńßĺň ó÷ĺôéęÜ ěĺ äéďńčţóĺéň áőôŢň ôçň Ýęäďóçň ôďő Mandrake Linux,\n"
-"óőěâďőëĺőôĺßôĺ ôçí óĺëßäá \n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Đëçńďöďńßĺň ó÷ĺôéęÜ ěĺ ôéň ńőčěßóĺéň ôďő óőóôŢěáôüň óáň őđÜń÷ďőí óôď "
-"ó÷ĺôéęü\n"
-"ęĺöÜëáéď ôďő ĺđßóçěďő ďäçăďý ÷ńŢóçň ôďő Mandrake Linux."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Đńďĺôďéěáóßá äéóęÝôôáň áőôüěáôçň ĺăęáôÜóôáóçň"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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:1361
-msgid "Automated"
-msgstr "Áőôüěáôď"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Ĺđáíáöüńôůóç"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "ÁđďčŢęĺőóç ĺđéëďăŢň đáęÝôůí"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "ĹăęáôÜóôáóç Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> ÁëëáăŢ đĺäßďő | <Space> ĺđéëďăŢ | <F12> ĺđüěĺíç ďč. "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "ôď kdesu ëĺßđĺé"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "ĹđéëÝîôĺ đńÜîç"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr " Ăéá Đńď÷ůńçěÝíďőň"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Đëçńďöďńßĺň"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "ÁíÜđôőîç äÝíôńďő"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Óýěđôőîç äÝíôńďő"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "ĹíáëëáăŢ ěĺôáîý ĺđßđĺäçň ęáé ďěáäéęŢň ôáîéíüěçóçň"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "ĘáęŢ ĺđéëďăŢ, îáíáäďęéěÜóôĺ\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Ç ĺđéëďăŢ óáň; (ĺî' ďńéóěďý %s)"
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Ç ĺđéëďăŢ óáň; (ĺî' ďńéóěďý %s)"
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "ĹđéëďăÝň: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "ČÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď aboot;"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Ç ĺđéëďăŢ óáň; (ĺî' ďńéóěďý %s)"
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "ÔóÝ÷éęď (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Ăĺńěáíéęü"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Éóđáíéęü"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Öéíëáíäéęü"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Ăáëëéęü"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Íďńâçăéęü"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Đďëůíéęü"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Ńůóéęü"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Óďőçäéęü"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "ĚĺăÜëç Âńĺôáííßá (UK)"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Ç.Đ.Á. (US)"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Áëâáíéęü"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Áńěĺíéęü (đáëéü)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Áńěĺíéęü (ăńáöďěç÷áíŢ)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Áńěĺíéęü (öůíçôéęü)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "ÁćĺńěđáúôćÜí (Ëáôéíéęü)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Âĺëăéęü"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Áńěĺíéęü (öůíçôéęü)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Âďőëăáńéęü"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "ÂńáćéëéÜíéęď"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Ëĺőęďńůóßáň"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Ĺëâĺôéęü (ĂĺńěáíéęŢ äéáńýčěéóç)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Ĺëâĺôéęü (ĂáëëéęŢ äéáńýčěéóç)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "ÔóÝ÷éęď (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Ăĺńěáíéęü (÷ůńßň íĺęńÜ đëŢęôńá)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Äáíéęü"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (ÇĐÁ)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Íďńâçăéęü)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (ÇĐÁ)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Ĺóčďíéęü"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Ăĺůńăßá (\"Ńůóéęç\" äéáńýčěéóç)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Ăĺůńăßá (\"ËáôéíéęŢ\" äéáńýčěéóç)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Ĺëëçíéęü"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Ďőăăńéęü"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Ęńďáôéęü"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "ÉóńáŢë"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "ÉóńáŢë (öůíçôéęü)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Éńáíéęü"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Éóëáíäéęü"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Éôáëéęü"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Éáđůíéęü 106 đëŢęôńůí"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "ĘďńĺÜôéęď Đëçęôńďëüăéď"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "ËáôéíéęŢň ÁěĺńéęŢň"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Ëéčďőáíéęü AZERTY (đáëéü)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Ëéčďőáíéęü AZERTY (íÝď)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Ëéčďőáíéęü \"number row\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Ëéčďőáíéęü \"öůíçôéęü\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Ôďđďčĺóßá"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "ĚáęĺäďíéęŢ"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Ďëëáíäéęü"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Đďëůíéęü (äéáńýčěéóç qwerty)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Đďëůíéęü (äéáńýčěéóç qwertz)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Đďńôďăáëëéęü"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Ęáíáäéęü (ĘĺěđÝę)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Ńďőěáíéęü (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Ńďőěáíéęü (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Ńůóéęü (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Óëďâĺíßáň"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Óëďâáęßáň (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Óëďâáęßáň (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "ÁćĺńěđáúôćÜí (ęőńéëëéęü)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Đßíáęáň"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Thai"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Thai"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Ôďőńęéęü (đáńáäďóéáęü \"F\" ěďíôÝëď)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Ôďőńęéęü (ěďíôÝńíď \"Q\" ěďíôÝëď)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ďőęńáíéęü"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "US äéĺčíÝň"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "ÂéĺôíÜě \"numeric row\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Ăéďőăęďóëáâéęü (ëáôéíéęü/ęőńéëëéęü)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "ĘőęëéęÝň óőíäÝóĺéň %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "ÁöáéńÝóôĺ ôá logical volumes đńţôá\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Mouse"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Ăĺíéęďý ôýđďő đďíôßęé PS2 ěĺ ńďäÜęé"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 đëŢęôńďő"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Ăĺíéęďý ôýđďő ěĺ 2 đëŢęôńá"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Ăĺíéęü"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Ěĺ ńďäÜęé"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "óĺéńéáęü"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Ăĺíéęďý ôýđďő ěĺ 3 đëŢęôńá"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (óĺéńéáęü, đáëéüň C7 ôýđďň)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "Äýď đëŢęôńůí"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "Ôńéţí đëŢęôńůí"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "ęáíÝíá"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "×ůńßň đďíôßęé"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Ăéá ĺíĺńăďđďßçóç đďíôéęéďý"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "ĘÉÍÇÓÔĹ ÔĎ ŃĎÄÁĘÉ!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "ÔÝëďň"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Ĺđüěĺíď -ť"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Đńďçăďýěĺíď"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Óůóôü;"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Óýíäĺóç óôď Äéáäßęôőď"
-
-#: ../../network/adsl.pm_.c:20
-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, ęÜđďéĺň ëßăĺň dhcp.\n"
-"ĹÜí äĺí îÝńĺôĺ, ĺđéëÝîôĺ '÷ńŢóç pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "÷ńŢóç dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "÷ńŢóç pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "÷ńŢóç pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Đďéüí đĺëÜôç dhcp čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ;\n"
-"Ç đńďĺđéëďăŢ ĺßíáé dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő Ethernet óôď óýóôçěÜ óáň.\n"
-"Äĺí ěđďńţ íá ńőčěßóů áőôďý ôďő ôýđďő ôçí óýíäĺóç."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "ĹđéëÝîôĺ óőóęĺőŢ äéęôýďő"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Đáńáęáëţ ĺđéëÝîôĺ đďéÜ óőóęĺőŢ äéęôýďő čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ăéá ôçí "
-"óýíäĺóç óôď Äéáäßęôőď"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Ńýčěéóç äéęôýďő"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Đáńáęáëţ ĺéóÜăĺôĺ ôď üíďěá ôďő óőóôŢěáôďň Ýáí ôď îÝńĺôĺ.\n"
-"ĎńéóěÝíďé ĺîőđçńĺôçôÝň DHCP äĺí ëĺéôďőńăďýí ÷ůńßň áőôü.\n"
-"Ôď üíďěá áőôü đńÝđĺé íá ĺßíáé Ýíá đëŢńĺň üíďěá óőóôŢěáôďň,\n"
-"üđůň đ.÷. ``mybox.mylab.myco.com''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "źíďěá óőóôŢěáôďň"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Ďäçăüň Ńýčěéóçň Äéęôýďő"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Ĺîůôĺńéęü ISDN modem"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "ĹóůôĺńéęŢ ęÜńôá ISDN"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Ôß ĺßäďőň ĺßíáé ç ISDN óýíäĺóŢ óáň;"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"ĐďéÜ ISDN ńýčěéóç đńďôéěÜôĺ;\n"
-"\n"
-"* Ç đáëéÜ ńýčěéóç ÷ńçóéěďđďéĺß ôď isdn4net. ĐĺńéÝ÷ĺé ÷ńŢóéěá ĺńăáëĺßá,\n"
-" áëëÜ ĺßíáé ëßăď äýóęďëď ăéá Ýíáí áń÷Üńéď íá ńőčěéóôĺß ęáé ü÷é óôĺńĺüôőđď.\n"
-"\n"
-"* Ç ÍÝá ńýčěéóç ĺßíáé ĺőęďëüôĺńç óôçí ęáôáíüçóç, đĺńéóóüôĺńď óôĺńĺüôőđç,\n"
-" áëëÜ ěĺ ëéăüôĺńá ĺńăáëĺßá.\n"
-"\n"
-"Đńďôĺßíďőěĺ ôçí ĺëáöńéÜ ńýčěéóç.\n"
-"\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "ÍÝá ńýěčéóç (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "ĐáëéÜ ńýěčéóç (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Ńőčěßóĺéň ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"ĹđéëÝîôĺ ôďí đáńď÷Ýá óáň\n"
-" ĹÜí äĺí ĺßíáé óôďí ęáôÜëďăď, ĺđéëÝîôĺ Unlisted"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol"
-msgstr "Đńůôüęďëëď Ĺęęßíçóçň"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Ĺőńţđç (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "Őđüëďéđďň ęüóěďň"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Őđüëďéđďň ęüóěďň \n"
-" ÷ůńßň D-Channel (ěéóčůěÝíĺň ăńáěěÝň)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Đďéü đńůôüęďëëď čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ;"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Ôß ęÜńôá Ý÷ĺôĺ;"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Äĺí îÝńů"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"ĹÜí Ý÷ĺôĺ ISA ęÜńôá, ďé ôéěÝň óôçí ĺđüěĺíç ďčüíç čá đńÝđĺé íá ĺßíáé óůóôÝň.\n"
-"\n"
-"ĹÜí Ý÷ĺôĺ PCMCIA ęÜńôá, đńÝđĺé íá îÝńĺôĺ ôď irq ęáé ôď io ôçň ęÜńôáň óáň.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Áęýńůóç"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "ÓőíÝ÷ĺéá"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "ĐďéÜ ĺßíáé ç ISDN ęÜńôá óáň;"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Ĺíôüđéóá ěéá ISDN ęÜńôá, áëëÜ äĺí îÝńů ôďí ôýđď ôçň. Đáńáęáëţ ĺđéëÝîôĺ ěéá "
-"ęÜńôá PCI áđü ôçí đáńáęÜôů ďčüíç."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Äĺí âńÝčçęĺ ęÜńôá ISDN. Đáńáęáëţ ĺđéëÝîôĺ ěéá áđü ôçí đáńáęÜôů ďčüíç."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Óĺ đďéÜ óĺéńéáęŢ đüńôá ĺßíáé óőíäĺäĺěÝíď ôď modem óáň;"
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "ĹđéëďăÝň dialup"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "źíďěá óýíäĺóçň"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Áńéčěüň ôçëĺöţíďő"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Login ID"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "×ńŢóç script"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "×ńŢóç ôĺńěáôéęďý"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "źíďěá äéęôýďő"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Đńţôďň ĺîőđçńĺôçôŢň DNS (đńďáéńĺôéęü)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Äĺýôĺńďň ĺîőđçńĺôçôŢň DNS (đńďáéńĺôéęü)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Ěđďńĺßôĺ íá áđďóőíäĺčĺßôĺ Ţ íá ĺđáíáńőčěßóĺôĺ ôçí óýíäĺóŢ óáň."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Ěđďńĺßôĺ íá ĺđáíáńőčěßóĺôĺ ôçí óýíäĺóŢ óáň."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "ÁőôŢ ôç óôéăěŢ ĺßóôĺ óőíäĺäĺěÝíďé óôď Äéáäßęôőď."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Ěđďńĺßôĺ íá óőíäĺčĺßôĺ óôď Äéáäßęôőď Ţ íá ĺđáíáńőčěßóĺôĺ ôçí óýíäĺóŢ óáň."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "ÁőôŢ ôç óôéăěŢ äĺí ĺßóôĺ óőíäĺäĺěÝíďé óôď Äéáäßęôőď."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Óýíäĺóç"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Áđďóýíäĺóç"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Ńýčěéóç äéęôýďő"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Óýíäĺóç ęáé ńýčěéóç Äéáäéęôýďő (internet)"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Ôţńá čá ńőčěßóďőěĺ ôçí %s óýíäĺóç."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Ôţńá čá ńőčěßóďőěĺ ôçí %s óýíäĺóç.\n"
-"\n"
-"\n"
-"ĐáôŢóôĺ ôď OK ăéá íá îĺęéíŢóĺôĺ"
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Ńőčěßóĺéň äéęôýďő"
-
-#: ../../network/netconnect.pm_.c:139
-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"
-"ĘÜíôĺ ęëßę óôď Ďę ăéá íá äéáôçńŢóĺôĺ ôéň ńőčěßóĺéň óáň, Ţ Üęőńď ăéá íá "
-"îáíáńőčěßóĺôĺ ôç óýíäĺóç óôď Internet.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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"
-"Ĺßěáóôĺ Ýôďéěďé íá ńőčěßóďőěĺ ôç óýíäĺóŢ óáň óôď internet/äßęôőď.\n"
-"Áí äĺí čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôçí áőôüěáôç áíß÷íĺőóç, îĺôóĺęÜńĺôĺ ôď "
-"checkbox.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "ĹđéëÝîôĺ ôď đńďößë ăéá ńýčěéóç"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "×ńŢóç áőôüěáôçň áíß÷íĺőóçň"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Ĺíôďđéóěüň óőóęĺőţí..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "ÁđëŢ óýíäĺóç ěĺ modem"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "áíé÷íĺýčçęĺ óôçí đüńôá %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "Óýíäĺóç ISDN"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "áíé÷íĺýčçęĺ ôď %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "Óýíäĺóç ADSL"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "áíé÷íĺýôçęĺ óôçí äéĺđéöÜíĺéá %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "ĘáëůäéáęŢ óýíäĺóç"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "áíé÷íĺýčçęĺ ęáëůäéáęŢ óýíäĺóç"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Óýíäĺóç LAN"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "ęÜńôá(ĺň) ethernet áíé÷íĺýčçęáí"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "ĹđéëÝîôĺ ôç óýíäĺóç đďő čÝëĺôĺ íá ńőčěßóĺôĺ"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"¸÷ĺôĺ ńőčěßóĺé đďëëďýň ôńüđďőň ăéá íá óőíäÝĺóôĺ óôď Internet.\n"
-"ĹđéëÝîôĺ áőôüí đďő čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Óýíäĺóç Internet"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "ČÝëĺôĺ íá óőíäÝĺóôĺ ęáôÜ ôçí ĺęęßíçóç;"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Ńőčěßóĺéň äéęôýďő"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"¸íá đńüâëçěá ĺěöáíßóôçęĺ ęáôÜ ôçí ĺđáíĺęęßíçóç ôďő äéęôýďő: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Óőă÷áńçôŢńéá, ç ńýčěéóç äéęôýďő ęáé internet ôĺëĺßůóĺ.\n"
-"\n"
-"Ďé ńőčěßóĺéň čá ĺöáńěďóôďýí ôţńá óôď óýóôçěÜ óáň.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Áöďý ăßíĺé áőôü, đńďôĺßíďőěĺ íá îáíáîĺęéíŢóĺôĺ ôď ×\n"
-"đĺńéâÜëëďí ăéá íá áđďöýăĺôĺ ôá đńďâëŢěáôá áëëáăŢň hostname."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"ĐŃĎÓĎ×Ç: ÁőôŢ ç óőóęĺőŢ ĺßíáé Ţäç ńőčěéóěÝíç ăéá íá óőíäÝĺôáé ěĺ ôď "
-"Äéáäßęôőď.\n"
-"ÁđëÜ đáôŢóôĺ OK ăéá íá ęńáôŢóĺôĺ ôéň őđÜń÷ďőóĺň ńőčěßóĺéň.\n"
-"ÁëëÜćďíôáň ôá đáńáęÜôů đĺäßá čá áëëÜîĺôĺ ôçí őđÜń÷ďőóá ńýčěéóç."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Đáńáęáëţ ĺéóÜăĺôĺ ôéň IP ńőčěßóĺéň ăéá áőôü ôď óýóôçěá.\n"
-"ĘÜčĺ óôďé÷ĺßď đńÝđĺé íá ĺéóá÷čĺß ůň IP äéĺýčőíóç óĺ ďęôáäéęŢ\n"
-"ěďńöŢ (đáńÜäĺéăěá: 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Ńýčěéóç óőóęĺőŢň äéęôýďő %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (driver %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "Äéĺýčőíóç IP"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "ĚÜóęá äéęôýďő"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Áőôüěáôď IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Ç IP äéĺýčőíóç đńÝđĺé íá ĺßíáé óĺ ěďńöŢ 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Đáńáęáëţ ĺéóÜăĺôĺ ôď üíďěá ôďő óőóôŢěáôďň.\n"
-"Ôď üíďěá áőôü đńÝđĺé íá ĺßíáé Ýíá đëŢńĺň üíďěá óőóôŢěáôďň,\n"
-"üđůň đ.÷. ``mybox.mylab.myco.com''.\n"
-"Ěđďńĺßôĺ ĺđßóçň íá ĺéóÜăĺôĺ ęáé ôçí äéĺýčőíóç IP ôçň đýëçň äéęôýďő"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "ĹîőđçńĺôçôŢň DNS"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "ÓőóęĺőŢ đýëçň"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Ńőčěßóĺéň proxies"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Ď proxy đńÝđĺé íá ĺßíáé http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Ď proxy đńÝđĺé íá ĺßíáé ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ íá óőíäĺčĺßôĺ óôď Äéáäßęôőď ôţńá;"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "ÄďęéěŢ óýíäĺóçň... "
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Ôď óýóôçěá äĺí ĺßíáé óőíäĺäĺěÝíď óôď Äéáäßęôőď."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Ăéá ëüăď ÁóöÜëĺéáň, čá áđďóőíäĺčĺßôĺ ôţńá."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Ôď óýóôçěÜ óáň äĺí öáßíĺôáé íá ĺßíáé óőíäĺäĺěÝíď óôď Äéáäßęôőď.\n"
-"ÄďęéěÜóôĺ íá ĺđáíáńőčěßóĺôĺ ôçí óýíäĺóŢ óáň."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Ńőčěßóĺéň óëőíäĺóçň"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Đáńáęáëţ ĺëÝăîôĺ Ţ óőěđëçńţóôĺ ôď đáńáęÜôů đĺäßď"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ ęÜńôáň"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "DMA ęÜńôáň"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO ęÜńôáň"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_0 ęÜńôáň"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 ęÜńôáň"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Đńďóůđéęüň áńéčěüň ôçëĺöţíďő"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "źíďěá đáńď÷Ýá (đ.÷. provider.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Áńéčěüň ôçëĺöţíďő đáńď÷Ýá"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Provider dns 1 (đńďáéńĺôéęü)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Provider dns 2 (đńďáéńĺôéęü)"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "ĹđéëÝîôĺ đëçęôńďëüăéď"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Ôńüđďň ęëŢóçň"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Ôá÷ýôçôá óýíäĺóçň"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "×ńüíďň óýíäĺóçň: "
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "'Ďíďěá ëďăáńéáěďý (user name)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Óőíčçěáôéęü ëďăáńéáóěďý"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "óýíäĺóç áđÝôő÷ĺ: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Ç ĺęôĺôáěÝíç ęáôÜôěçóç äĺí őđďóôçńßćĺôáé óĺ áőôüí ôďí ôýđď óőóôŢěáôďň"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"ŐđÜń÷ĺé Ýíá ęĺíü óôďí đßíáęá ęáôáôěŢóĺůí ěá äĺí ěđďńţ íá ôď ÷ńçóéěďđďéŢóů.\n"
-"Ç ěďíáäéęŢ ëýóç ĺßíáé íá ěĺôáęéíŢóĺôĺ ôéň đńůôĺýďőóĺň ęáôáôěŢóĺéň óáň Ýôóé "
-"ţóôĺ ôď ęĺíü íá âńĺčĺß äßđëá óôçí ĺęôĺôáěÝíç ęáôÜôěçóç"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Ç ĺđáíáöďńÜ áđü ôď áń÷ĺßď %s áđÝôő÷ĺ: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "ÓöÜëěá ĺăăńáöŢň óôď áń÷ĺßď %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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"
-"Áőôü óçěáßíĺé đůň ç ďđďéáäŢđďôĺ ĺăăńáöŢ óôď äßóęď čá ęáôáëŢîĺé óáí ôő÷áßá "
-"óęďőđßäéá"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "đńÝđĺé íá őđÜń÷ĺé"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "óçěáíôéęü"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "đďëý ęáëü"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "ęáëü"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "ßóůň"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Ôďđéęüň ĺęôőđůôŢň"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň lpd"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "ĹęôőđůôŢň äéęôýďő (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "ĹîőđçńĺôçôŢň ĺęôőđţóĺůí"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "ÓőóęĺőŢ ĺęôőđůôŢ URI"
-
-#: ../../printer.pm_.c:55
-#, fuzzy
-msgid "Pipe job into a command"
-msgstr "ÄéáóůëŢíůóç óôçí ĺíôďëŢ"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Ôďđéęüň ĺęôőđůôŢň"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "ÓöÜëěá ĺăăńáöŢň óôď áń÷ĺßď %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(module %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP äéĺýčőíóç ĺîőđçńĺôçôŢ CUPS:"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (ĹđéëďăŢ ĺî' ďńéóěďý)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Ôńüđďň óýíäĺóçň ĺęôőđůôŢ"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Đţň ĺßíáé óőíäĺäĺěÝíďň ď ĺęôőđůôŢň óáň;"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"Ěĺ ôçí ÷ńŢóç ĺîőđçńĺôçôŢ CUPS, äĺí ÷ńĺéÜćĺôáé íá ńőčěßóĺôĺ ĺęôőđůôÝň \n"
-"ĺäţ. Ďé ĺęôőđůôÝň čá áíáăíůńéóôďýí áőôüěáôá, ĺęôüň áí Ý÷ĺôĺ ĺîőđçńĺôçôŢ\n"
-"óĺ äéáöďńĺôéęü äßęôőď. Óĺ áőôŢí ôçí đĺńßđôůóç, čá đńÝđĺé íá äçëţóĺôĺ ôçí\n"
-"IP äéĺýčőíóç ôďő ĺîőđçńĺôçôŢ CUPS ęáé ßóůň ęáé ôďí áńéčěü čýńáň."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Ńýčěéóç LÁÍ"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "Ç IP äéĺýčőíóç đńÝđĺé íá ĺßíáé óĺ ěďńöŢ 192.168.1.20"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Ď áńéčěüň čýńáň đńÝđĺé íá ĺßíáé áęÝńáéďň áńéčěüň!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP äéĺýčőíóç ĺîőđçńĺôçôŢ CUPS:"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Čýńá"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Boot Ôýđďő Ńýčěéóç"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Ĺíôďđéóěüň óőóęĺőţí..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "ÄďęéěŢ čőńţí"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "ĐńďóčŢęç ĺęôőđůôŢ"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Ôďđéęüň ĺęôőđůôŢň"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "×ńŢóç áőôüěáôçň áíß÷íĺőóçň"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "áíé÷íĺýčçęĺ ôď %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "ÓőóęĺőŢ ĺęôőđůôŢ URI"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Ôďđéęüň ĺęôőđůôŢň"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Óĺ đďéÜ óĺéńéáęŢ đüńôá ĺßíáé óőíäĺäĺěÝíď ôď modem óáň;"
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "ÓőóęĺőŢ ĺęôőđůôŢ URI"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Ńőčěßóĺéň ÷ńůěÜôůí"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "ÁíÜăíůóç âÜóçň ďäçăţí CUPS"
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-#, fuzzy
-msgid "Reading printer database ..."
-msgstr "ÁíÜăíůóç âÜóçň ďäçăţí CUPS"
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "ĹđéëďăÝň áđďěĺěáęńőóěÝíďő lpd ĺęôőđůôŢ"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Ăéá íá ÷ńçóéěďđďéŢóĺôĺ ěéá áđďěĺěáęńőóěÝíç ďőńÜ ĺęôýđůóçň\n"
-"lpd, đńÝđĺé íá äţóĺôĺ ôď äéęôőáęü üíďěá ôďő ĺîőđçńĺôçôŢ \n"
-"ĺęôőđţóĺůí, ęáčţň ęáé ôď üíďěá ôçň ďőńÜň ôçí ďđďßá čá \n"
-"÷ńçóéěďđďéŢóĺôĺ óĺ áőôüí ôďí ĺîőđçńĺôçôŢ."
-
-#: ../../printerdrake.pm_.c:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "ÁđďěĺěáęńőóěÝíď äéęôőáęü üíďěá:"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "ÁđďěĺěáęńőóěÝíď äéęôőáęü üíďěá ëĺßđĺé!"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "ÁđďěĺěáęńőóěÝíď äéęôőáęü üíďěá ëĺßđĺé!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "ĹđéëďăÝň ĺęôőđůôŢ SMB (Windows 9x/NT)"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Ăéá íá ĺęôőđţóĺôĺ óĺ Ýíáí SMB ĺęôőđůôŢ, đńÝđĺé íá äţóĺôĺ ôď \n"
-"SMB äéęôőáęü üíďěá (Óçěĺßůóç! Ěđďńĺß íá ĺßíáé äéáöďńĺôéęü áđü \n"
-"ôď äéęôőáęü üíďěá TCP/IP!) ęáé ßóůň ęáé ôçí äéĺýčőíóç IP ôďő \n"
-"ĺîőđçńĺôçôŢ ĺęôőđţóĺůí, ôď üíďěá ôďő ĺęôőđůôŢ óôďí ďđďßď ĺđéčőěĺßôĺ \n"
-"đńüóâáóç, ęáčţň ęáé ďđďéáäŢđďôĺ áđáńáßôçôç đëçńďöďńßá đĺńß ęůäéęďý \n"
-"÷ńŢóôç, ëÝîçň ęëĺéäß ęáé ôďěÝá Ţ ďěÜäáň ĺńăáóßáň."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Äéęôőáęü üíďěá SMB ĺîőđçńĺôçôŢ:"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP äéĺýčőíóç SMB ĺîőđçńĺôçôŢ:"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "źíďěá đüńďő:"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "ĎěÜäá ĺńăáóßáň:"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Ĺßôĺ ôď üíďěá ôďő ĺîőđçńĺôçôŢ Ţ ç IP ôďő đńÝđĺé íá äďčďýí!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Ôď üíďěá ăéá ôçí Samba ëĺßđĺé!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "ĹđéëďăÝň ĺęôőđůôŢ NetWare"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Ăéá íá ĺęôőđţóĺôĺ óĺ Ýíáí ĺęôőđůôŢ NetWare, đńÝđĺé íá äţóĺôĺ\n"
-"ôď üíďěá ôďő ĺîőđçńĺôçôŢ ĺęôőđţóĺůí NetWare (Óçěĺßůóç! Ěđďńĺß\n"
-"íá ĺßíáé äéáöďńĺôéęü áđü ôď äéęôőáęü üíďěá TCP/IP!), \n"
-"ôď üíďěá ôďő ĺęôőđůôŢ óôďí ďđďßď ĺđéčőěĺßôĺ đńüóâáóç, ęáčţň ęáé\n"
-"ďđďéáäŢđďôĺ áđáńáßôçôç đëçńďöďńßá đĺńß ęůäéęďý ÷ńŢóôç ęáé ëÝîçň ęëĺéäß."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "ĹîőđçńĺôçôŢň ĺęôőđţóĺůí"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "źíďěá ďőńÜň ĺęôőđůôŢ"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "Ôď üíďěá ôďő ĺîőđçńĺôçôŢ NCP ëĺßđĺé!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "Ôď üíďěá ôçň NCP ďőńÜň ëĺßđĺé!"
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "ĹđéëďăÝň ĺęôőđůôŢ socket"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Ăéá íá ĺęôőđţóĺôĺ óĺ Ýíáí ĺęôőđůôŢ socket, đńÝđĺé íá äţóĺôĺ ôď \n"
-"äéęôőáęü üíďěá ôďő ĺęôőđůôŢ ęáé đńďáéńĺôéęÜ ôďí áńéčěü čýńáň."
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "źíďěá ĺęôőđůôŢ"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "źíďěá ĺęôőđůôŢ ëĺßđĺé!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "ÓőóęĺőŢ ĺęôőđůôŢ URI"
-
-#: ../../printerdrake.pm_.c:888
-#, fuzzy
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Ěđďńĺßôĺ íá ďńßóĺôĺ ęáôĺőčĺßáí ôď URI ăéá ôçí đńüóâáóç óôďí ĺęôőđůôŢ. Ôď URI "
-"đńÝđĺé íá ôçńĺß ĺßôĺ ôéň CUPS ĺßôĺ ôéň Foomatic đńďäéáăńáöÝň. ź÷é đůň äĺí "
-"őđďóôçńßćďíôáé üëďé ďé URI ôýđďé áđü üëá ôá spoolers."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "¸íá óůóôü URI đńÝđĺé íá ĺéóá÷čĺß!"
-
-#: ../../printerdrake.pm_.c:1004
-#, fuzzy
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"ĘÜčĺ ĺęôőđůçň ÷ńĺéÜćĺôáé Ýíá üíďěá (đ.÷. lp).\n"
-"Ôá đĺäßá ĐĺńéăńáöŢ ęáé Ôďđďčĺóßá äĺí ÷ńĺéÜćĺôáé íá \n"
-"óőěđëçńůčďýí. Ĺßíáé áđëÜ ó÷üëéá ăéá ôďőň ÷ńŢóôĺň."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "źíďěá ĺęôőđůôŢ"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "ĐĺńéăńáöŢ"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Ôďđďčĺóßá"
-
-#: ../../printerdrake.pm_.c:1021
-#, fuzzy
-msgid "Preparing printer database ..."
-msgstr "ÁíÜăíůóç âÜóçň ďäçăţí CUPS"
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Óůóôü;"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "ĹđéëďăŢ ěďíôÝëďő ĺęôőđůôŢ"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Ôß ôýđďő ĺęôőđůôŢ Ý÷ĺôĺ;"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "ĹđéëďăŢ %s đńÝđĺé íá ĺßíáé áęÝńáéďň áńéčěüň!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "ĹđéëďăŢ %s đńÝđĺé íá ĺßíáé áńéčěüň!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "ĹđéëďăŢ %s ĺęôüň ďńßďő!"
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "ČÝëĺôĺ íá ĺęôőđţóĺôĺ ěéá äďęéěáóôéęŢ óĺëßäá;"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "ÄďęéěŢ čőńţí"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "ĹęôőđůôŢň"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Ôőđéęü"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-
-#: ../../printerdrake.pm_.c:1635
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Ěßá Ţ đĺńéóóüôĺńĺň äďęéěáóôéęÝň óĺëßäĺň óôÜëčçęáí óôďí ĺęôőđůôŢ.\n"
-"Ěđďńĺß íá đĺńÜóĺé ęÜđďéďň ÷ńüíďň ěÝ÷ńé ç ĺęôýđůóç íá îĺęéíŢóĺé.\n"
-"ĘáôÜóôáóç ĺęôýđůóçň:\n"
-"%s\n"
-"\n"
-"¸ăéíĺ óůóôÜ ç ĺęôýđůóç"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Ěßá Ţ đĺńéóóüôĺńĺň äďęéěáóôéęÝň óĺëßäĺň óôÜëčçęáí óôďí ĺęôőđůôŢ.\n"
-"Ěđďńĺß íá đĺńÜóĺé ęÜđďéďň ÷ńüíďň ěÝ÷ńé ç ĺęôýđůóç íá îĺęéíŢóĺé.\n"
-"¸ăéíĺ óůóôÜ ç ĺęôýđůóç;"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "ĘáíÝíáň ĺęôőđůôŢň"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Ęëĺßóéěď"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "ÄéáęďđŢ ëĺéôďőńăßáň äéęôýďő."
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "ÄéáęďđŢ ëĺéôďőńăßáň äéęôýďő."
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "ĹđéëďăÝň ĺęôőđůôŢ"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"Ôď üíďěá ôďő ĺęôőđůôŢ đńÝđĺé íá đĺńéÝ÷ĺé ěüíď ăńÜěěáôá, áńéčěďýň ęáé ôďí "
-"÷áńáęôŢńá underscore"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "ĘáíÝíáň ĺęôőđůôŢň"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "ÁíÜăíůóç âÜóçň ďäçăţí CUPS"
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Ĺęęßíçóç óýíäĺóçň..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Ńýčěéóç äéęôýďő"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Ç ďčüíç äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Ńýčěéóç äéęôýďő"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Đďéü óýóôçěá ĺęôýđůóçň čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ;"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Őřçëü"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Đáńáíďúęü"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Đďéü óýóôçěá ĺęôýđůóçň čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ;"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "ĹđéëďăŢ Spooler EęôőđůôŢ"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Đďéü óýóôçěá ĺęôýđůóçň čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ;"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Ńýčěéóç ĺęôőđůôŢ"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "ĹđéëďăÝň ĺęôőđůôŢ"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Ńýčěéóç ĺęôőđůôŢ"
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Čá čÝëáôĺ íá ńőčěßóĺôĺ Ýíáí ĺęôőđůôŢ;"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "ĹęôőđůôŢň"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"ŐđÜń÷ďőí ďé áęüëďőčĺň ďőńÝň ĺęôýđůóçň.\n"
-"Ěđďńĺßôĺ íá đńďóčÝóĺôĺ ęé Üëëĺň Ţ íá áëëÜîĺôĺ ôéň őđÜń÷ďőóĺň."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"ŐđÜń÷ďőí ďé áęüëďőčĺň ďőńÝň ĺęôýđůóçň.\n"
-"Ěđďńĺßôĺ íá đńďóčÝóĺôĺ ęé Üëëĺň Ţ íá áëëÜîĺôĺ ôéň őđÜń÷ďőóĺň."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Ńýčěéóç äéęôýďő"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "ĘáíďíéęŢ ĘáôÜóôáóç"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Óýíäĺóç Internet"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "ĹđéëďăŢ ěďíôÝëďő ĺęôőđůôŢ"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "Ĺęôýđůóç äďęéěáóôéęţí óĺëßäůí..."
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "ČÝëĺôĺ íá äďęéěÜóĺôĺ ôéň ńőčěßóĺéň;"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Ôďđéęüň ĺęôőđůôŢň"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "ČÝëĺôĺ íá ĺđáíĺęęéíŢóĺôĺ ôď äßęôőď;"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Ńýčěéóç proxy"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Ęáëţň Ţëčáôĺ óôď ĺńăáëĺßď ńýčěéóçň ôďő proxy.\n"
-"\n"
-"Ĺäţ, čá ěđďńÝóĺôĺ íá ńőčěßóĺôĺ ôďőň http ęáé ftp proxies\n"
-"ěĺ Ţ ÷ůńßň login ęáé ęůäéęü đńüóâáóçň\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Đáńáęáëţ óőěđëçńţóôĺ ôéň đëçńďöďńßĺň ăéá ôď http proxy\n"
-"ÁöŢóôĺ ôá ęĺíÜ áí äĺí ĺđéčőěĺßôĺ http proxy"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "đüńôá"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "Ôď URL đńÝđĺé íá îĺęéíÜ ěĺ 'http:'"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Ď áńéčěüň čýńáň đńÝđĺé íá ĺßíáé áńéčěçôéęüň"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Đáńáęáëţ óőěđëçńţóôĺ ôéň đëçńďöďńßĺň ăéá ôď ftp proxy\n"
-"ÁöŢóôĺ ôá ęĺíÜ áí äĺí ĺđéčőěĺßôĺ ftp proxy"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Ôď Url đńÝđĺé íá îĺęéíÜ ěĺ'ftp:'"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Đáńáęáëţ ĺéóÜăĺôĺ proxy login ęáé ęůäéęü đńüóâáóçň.\n"
-"ÁöŢóôĺ ôá ęĺíÜ ĺÜí äĺí ĺđéčőěĺßôĺ login/passwd"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "login"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "ęůäéęüň đńüóâáóçň"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "îáíáđëçęôńďëďăŢóôĺ ôďí ęůäéęü đńüóâáóçň"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Ďé ęůäéęďß đńüóâáóçň ĺßíáé áíüěďéďé. ĐńďóđáčŢóôĺ îáíÜ!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Äĺí ěđďńţ íá đńďóčÝóů ęáôÜôěçóç óôď _ěďńöďđďéçěÝíď_ RAID md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Äĺí ěđďńţ íá áđďčçęĺýóů ôď áń÷ĺßď %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "áđďôő÷ßá mkraid"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "áđďôő÷ßá mkraid (ěŢđůň áđďőóéÜćďőí ôá raidtools;)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Äĺí őđÜń÷ďőí áńęĺôÝň ęáôáôěŢóĺéň ăéá RAID ĺđéđÝäďő %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Ĺęęßíçóç ôďő ALSA (Advanced Linux Sound Architecture) óőóôŢěáôďň Ţ÷ďő"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, Ýíá đńüăńáěěá đĺńéďäéęŢň ĺęôÝëĺóçň ĺíôďëţí."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"Ôď apmd đáńáęďëďőčĺß ęáé ęáôáăńÜöĺé ôçí ęáôÜóôáóç ôçň ěđáôáńßáň.\n"
-"Ěđďńĺß ĺđßóçň íá ÷ńçóéěďđďéçčĺß ăéá ôď áőôüěáôď ęëĺßóéěď ôďő óőóôŢěáôďň óĺ \n"
-"đĺńßđôůóç ÷áěçëŢň öüńôéóçň ôçň ěđáôáńßáň."
-
-#: ../../services.pm_.c:18
-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 ""
-"Ĺęôĺëĺß ĺíôďëÝň đńďăńáěěáôéóěÝíĺň áđü ôçí ĺíôďëŢ at ęáé äÝóěĺň ĺíôďëţí\n"
-"üôáí ď öüńôďň ôďő óőóôŢěáôďň ĺßíáé áńęĺôÜ ÷áěçëüň."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"Ôď cron ĺßíáé ěéá âáóéęŢ őđçńĺóßá UNIX đďő ôńÝ÷ĺé ĺíôďëÝň ęáčďńéóěÝíĺň áđü \n"
-"ôďí ÷ńŢóôç óĺ ôáęôÜ ÷ńďíéęÜ äéáóôŢěáôá. Ôď vixie cron đńďóčÝôĺé Ýíáí "
-"áńéčěü \n"
-"ĺđéđëÝďí äőíáôďôŢôůí đďő đĺńéëáěâÜíďőí ęáëýôĺńç áóöÜëĺéá ęáé đéď éó÷őńÝň "
-"ńőčěßóĺéň."
-
-#: ../../services.pm_.c:23
-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 đńďóčÝôĺé őđďóôŢńéîç mouse óĺ ĺöáńěďăÝň âáóéóěÝíĺň óĺ ęďíóüëá\n"
-"ęĺéěÝíďő ęáé ĺđéôńÝđĺé ëĺéôďőńăßĺň áđďęďđŢň ęáé ĺđéęüëëçóçň ěĺ ÷ńŢóç \n"
-"mouse óôçí ęďíóüëá, ęáčţň ęáé őđďóôŢńéîç áíáäőďěÝíůí menu."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"Ôď HardDrake ôńÝ÷ĺé ěéá áíß÷íĺőóç őëéęďý ęáé đńďáéńĺôéęÜ ńőčěßćĺé\n"
-"ôď íÝď/áëëáăěÝíď őëéęü."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Ď Apache ĺßíáé Ýíáň ĺîőđçńĺôçôŢň WWW. Ěđďńĺß íá ĺîőđçńĺôŢóĺé áń÷ĺßá\n"
-"HTML ęáé CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Ç őđçńĺóßá őđĺńĺîőđçńĺôçôŢ Internet (inetd) îĺęéíÜĺé ěéá đďéęéëßá\n"
-"Üëëůí őđçńĺóéţí inetrnet üđďôĺ ÷ńĺéÜćďíôáé. Ĺßíáé őđĺýčőíç ăéá ôçí \n"
-"ĺęęßíçóç đďëëţí őđçńĺóéţí, üđůň telnet, ftp, rsh ęáé rlogin. Ç "
-"áđĺíĺńăďđďßçóç\n"
-"áőôŢň ôçň őđçńĺóßáň áđĺíĺńăďđďéĺß ĺđßóçň ęáé ôéň őđçńĺóßĺň ăéá ôéň ďđďßĺň\n"
-"ĺßíáé őđĺýčőíç."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Ĺęęßíçóç đáęÝôďő filtering ăéá Linux đőńŢíá ôçň óĺéńÜň 2.2, ăéá ńýčěéóç\n"
-"ĺíüň firewall đďő čá đńďóôáôĺýĺé ôď ěç÷ÜíçěÜ óáň áđü äéęôőáęÝň ĺđéčÝóĺéň."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Áőôü ôď đáęÝôď öďńôţíĺé ôçí ĺđéëĺăěÝíç äéáńýčěéóç đëçęôńďëďăßďő đďő Ý÷ĺé \n"
-"ĺđéëĺăĺß óôď /etc/sysconfig/keyboard. Áőôü ěđďńĺß íá ńőčěéóôĺß ěĺ ôçí \n"
-"÷ńŢóç ôďő ĺńăáëĺßďő kbdconfig. ĐńÝđĺé ó÷ĺäüí đÜíôá íá ĺßíáé ĺíĺńăďđďéçěÝíď."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Áőôüěáôç đáńáăůăŢ ôçň ĺđéęĺöáëßäáň ôďő đőńŢíá óôď /boot ăéá ôď\n"
-"/usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-"Áőôüěáôç áíß÷íĺőóç ęáé ńýčěéóç óőóęĺőţí ęáôÜ ôçí ĺęęßíçóç ôďő óőóôŢěáôďň."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Ôď Linuxconf ęáěéÜ öďńÜ ęÜíĺé äéÜöďńĺň ĺńăáóßĺň\n"
-"ęáôÜ ôçí ĺęęßíçóç ôďő óőóôŢěáôďň ăéá íá äéáôçńŢóĺé ôç ńýčěéóç ôďő óőóôŢěáôďň."
-
-#: ../../services.pm_.c:43
-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 ĺßíáé ç őđçńĺóßá ĺęôőđţóĺůí đďő áđáéôĺßôáé ăéá íá ëĺéôďőńăĺß \n"
-"ç ĺíôďëŢ lpd. Ĺßíáé âáóéęÜ Ýíáň ĺîőđçńĺôçôŢň đďő đńďůčĺß ôá áń÷ĺßá \n"
-"óôďőň ĺęôőđůôÝň."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual ĹîőđçńĺôçôŢň, ÷ńçóéěďđďéĺßôáé ăéá íá äçěéďőńăŢóĺé Ýíáí őřçëŢň\n"
-"áđüäďóçň ęáé äéáčĺóéěüôçôáň ĺîőđçńĺôçôŢ."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"Ď named (BIND) ĺßíáé Ýíáň Domain Name Server (DNS) đďő ÷ńçóéěďđďéĺßôáé\n"
-"ăéá íá ěĺôáôńÝđĺé ďíüěáôá óĺ äéĺőčýíóĺéň IP."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"ÓőíäÝĺé ęáé áđďóőíäÝĺé üëá ôá äéęôőáęÜ óőóôŢěáôá áń÷ĺßůí (NFS, \n"
-"SMB ęáé NCP (Netware))."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Ĺíĺńăďđďéĺß/áđĺíĺńăďđďéĺß üëá ôá őđďóőóôŢěáôá äéęôýďő đďő Ý÷ďőí \n"
-"ńőčěéóôĺß íá îĺęéíďýí ęáôÜ ôçí ĺęęßíçóç."
-
-#: ../../services.pm_.c:52
-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 ĺßíáé Ýíá äçěďöéëÝň đńůôüęďëď ăéá ôďí äéáěďéńáóěü áń÷ĺßůí óĺ \n"
-"äßęôőá TCP/IP. ÁőôŢ ç őđçńĺóßá đńďóöÝńĺé ëĺéôďőńăßĺň ĺîőđçńĺôçôŢ, ď \n"
-"ďđďßďň ńőčěßćĺôáé áđü ôď áń÷ĺßď /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"Ôď NFS ĺßíáé Ýíá äçěďöéëÝň đńůôüęďëď ăéá ôďí äéáěďéńáóěü áń÷ĺßůí óĺ \n"
-"äßęôőá TCP/IP. ÁőôŢ ç őđçńĺóßá đńďóöÝńĺé ëĺéôďőńăßĺň ęëĺéäţěáôďň áń÷ĺßůí."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Áőôüěáôç ĺíĺńăďđďßçóç ôďő numlock đëŢęôńďő óôçí ęďíóüëá\n"
-"ęáé ôá XFree ęáôá ôçí ĺęęßíçóç ôďő óőóôŢěáôďň."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "ŐđďóôŢńéîç ôůí OKI 4w ęáé óőěâáôţí winprinters."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"Ç őđďóôŢńéîç PCMCIA đńďóöÝńĺé őđďóôŢńéîç ăéá ęÜńôĺň äéęôýďő, modems ęëđ \n"
-"óőíŢčůň óĺ óőóôŢěáôá laptop. Äĺí čá ĺęęéíŢóĺé ĺęôüň áí áőôü ćçôçčĺß áđü "
-"ôďí \n"
-"÷ńŢóôç, ďđüôĺ ĺßíáé áóöáëÝň íá ĺăęáôáóôáčĺß óĺ óőóôŢěáôá đďő äĺí ôď "
-"÷ńĺéÜćďíôáé."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Ď portmapper äéá÷ĺéńßćĺôáé óőíäÝóĺéň RPC, ďé ďđďßĺň ÷ńçóéěďđďéďýíôáé\n"
-"áđü đńďôüęďëá üđůň ôď NFS ęáé ôď NIS. ĐńÝđĺé íá ĺßíáé ĺíĺńăďđďéçěÝíď óĺ \n"
-"óőóôŢěáôá đďő äńďőí ůň ĺîőđçńĺôçôÝň ôÝôďéůí đńďôďęüëůí."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Ôď postfix ĺßíáé Ýíáň đńÜęôďńáň ěĺôáöďńÜň áëëçëďăńáößáň, ôď \n"
-"đńüăńáěěá đďő öńďíôßćĺé ăéá ôçí ěĺôáöďńÜ áëëçëďăńáößáň áđü ôď \n"
-"Ýíá óýóôçěá óôď Üëëď."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Áđďčçęĺýĺé ęáé ĺđáíáöÝńĺé ôçí đçăŢ ĺíôńďđßáň ôďő óőóôŢěáôďň ăéá \n"
-"ôçí äçěéďőńăßá ęáëýôĺńçň đďéüôçôáň ôő÷áßůí áńéčěţí."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Ďńéóěüň raw óőóęĺőţí ůň block óőóęĺőţí (üđůň ęáôáôěŢóĺéň óęëçńţí\n"
-"äßóęůí), ăéá ôç ÷ńŢóç ôďőň áđü ĺöáńěďăÝň üđůň ç Oracle"
-
-#: ../../services.pm_.c:71
-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 ĺđéôńÝđĺé ôçí áőôüěáôç ĺíçěÝńůóç ôďő đßíáęá äńďěďëüăçóçň \n"
-"IP ěÝóů ôďő đńůôďęüëďő RIP. Đáń' üëď đďő ôď RIP ĺßíáé ĺőńÝůň äéáäĺäďěÝíď "
-"óĺ \n"
-"ěéęńÜ äßęôőá, ěĺăáëýôĺńá äßęôőá áđáéôďýí đĺńéđëďęüôĺńá đńďôüęďëá."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Ôď đńůôüęďëď rstat ĺđéôńÝđĺé óôďőň ÷ńŢóôĺň ĺíüň äéęôýďő ôçí\n"
-"óőëëďăŢ ěĺôńŢóĺůí ĺđéäüóĺůí ăéá ďđďéďäŢđďôĺ óýóôçěá óĺ áőôü \n"
-"ôď äßęôőď."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Ôď đńůôüęďëď rusers ĺđéôńÝđĺé óôďőň ÷ńŢóôĺň ĺíüň äéęôýďő íá \n"
-"đńďóäéďńßóďőí ôďőň óőíäĺäĺěÝíďőň ÷ńŢóôĺň Üëëůí óőóôçěÜôůí."
-
-#: ../../services.pm_.c:78
-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 ĺđéôńÝđĺé óĺ áđďěĺěáęńőóěÝíďőň ÷ńŢóôĺň íá äďőí Ýíáí \n"
-"ęáôÜëďăď ôůí ÷ńçóôţí ôďő óőóôŢěáôďň (đáńüěďéď ěĺ ôď finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Ĺęęßíçóç ôďő óőóôŢěáôďň Ţ÷ďő óôď ěç÷ÜíçěÜ óáň"
-
-#: ../../services.pm_.c:81
-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 ĺßíáé ç őđçńĺóßá đďő ÷ńçóéěďđďéďýí đďëëÝň Üëëĺň őđçńĺóßĺň \n"
-"ăéá íá ęÜíďőí ĺăăńáöÝň óôá áń÷ĺßá đáńáęďëďýčçóçň óőóôŢěáôďň (log files)\n"
-"Óőíßóôáôáé ç óőíĺ÷Ţň ëĺéôďőńăßá áőôŢň ôçň őđçńĺóßáň."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Öüńôůóç ôůí ďäçăţí ăéá ôéň usb óőóęĺőÝň óáň."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"ÎĺęéíÜĺé ôçí őđçńĺóßá ĺîőđçńĺôçôŢ ăńáěěáôďóĺéńţí X Font Server (áőôü ĺßíáé "
-"áđáńáßôçôď ăéá íá ôńÝ÷ďőí ôá XFree)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "ĹęôőđůôŢň"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Éíôĺńíĺô"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "ĘáôÜóôáóç óőóôŢěáôďň"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "ĹđéëďăÝň áđďěĺěáęńőóěÝíďő lpd ĺęôőđůôŢ"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "ÂÜóç ÄĺäďěÝíůí"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "ĹîőđçńĺôçôŢň"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "running"
-msgstr "Đńďĺéäďđďßçóç"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "stopped"
-msgstr "Append"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr ""
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-
-#: ../../services.pm_.c:224
-#, fuzzy
-msgid "On boot"
-msgstr "Yaboot"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "ĘáôÜóôáóç:"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "ÔďěÝáň"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Őđüëďéđďň ęüóěďň"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Đńüóâáóç óôď Internet"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "ĐďëőěÝóá - ĂńáöéęÜ"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "ÁíÜđôőîç"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "ĘÝíôńď ĹëÝă÷ďő"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "ÓőóęĺőŢ äéęôýďő"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "Äéęôőáęü üíďěá SMB ĺîőđçńĺôçôŢ:"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Đáé÷íßäéá"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Ăéá ĺéäéęďýň"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Äĺí ěđďńţ íá äéáâÜóů ôďí đßíáęá ęáôáôěŢóĺůí, ĺßíáé đďëý ęáôĺóôńáěÝíďň :(\n"
-"Čá đńďóđáčŢóů íá óőíĺ÷ßóů áöáéńţíôáň ôéň ëáíčáóěÝíĺň ęáôáôěŢóĺéň"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "ÓöÜëěá!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Ńőčěßóĺéň ěĺôÜ ôçí ĺăęáôÜóôáóç"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Boot Ôýđďő Ńýčěéóç"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Óőă÷áńçôŢńéá!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "ĹăęáôÜóôáóç"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "ĐńďóčŢęç ÷ńŢóôç"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Ěďńöďđďßçóç áń÷ĺßďő loopback %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "ĹđéëďăŢ đáęÝôůí"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "ÄéáăńáöŢ ďőńÜň"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Áöáßńĺóç Windows(TM)"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Ęůäéęü üíďěá"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Đáńáęáëţ đńďóđáčŢóôĺ îáíÜ"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Đáńáęáëţ đńďóđáčŢóôĺ îáíÜ"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "îáíáđëçęôńďëďăŢóôĺ ôďí ęůäéęü đńüóâáóçň"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Óýíäĺóç LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Ôńüđďň óýíäĺóçň ĺęôőđůôŢ"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ äéáńýčěéóç đëçęôńďëďăßďő."
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Đáńáęáëţ ęÜíôĺ ęëéę óĺ ěéá ęáôÜôěçóç"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "ÓőóęĺőŢ äéęôýďő"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Ęůäéęü üíďěá"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Ĺíôďđéóěüň óęëçńďý äßóęďő"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Ęůäéęü üíďěá"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "Ěĺ ńďäÜęé"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "Ěĺ ńďäÜęé"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "ĐáńÜěĺôńďé ďäçăďý"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Ńőčěßóĺéň äéęôýďő"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Đńďĺô. óőó. áń÷."
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "ĹđéëďăÝň"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Óĺ đďéÜ óĺéńéáęŢ đüńôá ĺßíáé óőíäĺäĺěÝíď ôď modem óáň;"
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Ńőčěßóĺéň äéęôýďő"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "ĹđáíáöďńÜ áđü äéóęÝôôá"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "śëëď"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "ĹăęáôÜóôáóç óőóôŢěáôďň"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "ĹđáíáöďńÜ áđü áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "ĹđáíáöďńÜ áđü áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "ĐńďóáńěďóěÝíď"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_ÂďŢčĺéá"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- Đńďçăďýěĺíď"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "ĘáôÜóôáóç:"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "ĹđáíáöďńÜ áđü áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Ĺđüěĺíď -ť"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "ĹđéëďăŢ đáęÝôůí"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ěéá ăëţóóá."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "ÁđďčŢęĺőóç óĺ áń÷ĺßď"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Ńőčěßóĺéň äéęôýďő"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Ńőčěßóĺéň äéęôýďő"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Ńýčěéóç LÁÍ"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Ńýčěéóç LÁÍ"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Đńďĺô. óőó. áń÷."
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Ç ĺăęáôÜóôáóç ôďő %s áđÝôő÷ĺ. ĐńďęëŢčçęĺ ôď áęüëďőčď óöÜëěá:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Ďëďęëçńţčçęĺ"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Đńďĺôďéěáóßá ĺăęáôÜóôáóçň"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "áđáăüńĺőóç"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Ěďńöďđ. ęáôáôěŢó."
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Ńýčěéóç LÁÍ"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Óçěĺßď óýíäĺóçň"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "ĹđéëÝîôĺ ęáôáôěŢóĺéň đńďň ěďńöďđďßçóç"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Ăńáöĺßď"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Áęýńůóç"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "ĹęôőđůôŢň"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "ĹăęáôÜóôáóç óőóôŢěáôďň"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "ĹđéëÝîôĺ áń÷ĺßď"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
-msgid "Initials tests"
-msgstr "ĚŢíőěá Init"
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő óôď óýóôçěÜ óáň!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "ĹăęáôÜóôáóç"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő óôď óýóôçěÜ óáň!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "¸îďäďň"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet ĺíĺńăďđďéçěÝíďň"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Ç ńýčěéóç ôďő ĺđéěĺńéóěďý óýíäĺóçň Internet Ý÷ĺé Ţäç ăßíĺé.\n"
-"ÁőôŢ ôç óôéăěŢ ĺßíáé ĺíĺńăŢ.\n"
-"\n"
-"Ôß čÝëĺôĺ íá ęÜíĺôĺ;"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "áđĺíĺńăďđďßçóç"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "Üęőńď"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "ĺđáíáńýčěéóç"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Áđĺíĺńăďđďßçóç ĺîőđçńĺôçôţí..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet áđĺíĺńăďđďéçěÝíďň"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet áđĺíĺńăďđďéçěÝíďň"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Ç ńýčěéóç ôďő ĺđéěĺńéóěďý óýíäĺóçň Internet Ý÷ĺé Ţäç ăßíĺé.\n"
-"ÁőôŢ ôç óôéăěŢ ĺßíáé áíĺíĺńăüň.\n"
-"\n"
-"Ôß čÝëĺôĺ íá ęÜíĺôĺ;"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "ĺíĺńăďđďßçóç"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Ĺíĺńăďđďßçóç ĺîőđçńĺôçôţí..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Ĺđéěĺńéóěüň óýíäĺóçň Internet ĺíĺńăďđďéçěÝíďň"
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Ď őđďëďăéóôŢň óáň ěđďńĺß íá ńőčěéóôĺß Ýôóé ţóôĺ íá ěďéńÜćĺôáé \n"
-"ôçí óýíäĺóç ěĺ ôď äéáäßęôőď ěĺ Üëëďőň őđďëďăéóôÝň.\n"
-"\n"
-"Óçěĺßůóç: ×ńĺéÜćĺóôĺ Ýíáí đńďóáńěďăÝá äéęôýďő Ýôóé ţóôĺ íá äçěéďőńăŢóĺôĺ Ýíá "
-"ôďđéęü äßęôőď (LAN)."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "ÄéĺđéöÜíĺéá %s (÷ńŢóç áńčńţěáôďň %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "ÄéĺđéöÜíĺéá %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő óôď óýóôçěÜ óáň!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Äĺí âńÝčçęĺ đńďóáńěďăÝáň äéęôýďő Ethernet óôď óýóôçěÜ óáň. Đáńáęáëţ "
-"÷ńçóéěďđďéĺßóôĺ ôď đńüăńáěěá ńýčěéóçň őëéęďý."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "ÓőóęĺőŢ äéęôýďő"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"ŐđÜń÷ĺé ěüíď Ýíáň ńőčěéóěÝíďň đńďóáńěďăÝáň äéęôýďő óôď óýóôçěÜ óáň:\n"
-"\n"
-"%s\n"
-"\n"
-"Čá ńőčěéóôĺß ôď Ôďđéęü óáň Äßęôőď ěĺ áőôüí ôďí đńďóáńěďăÝá."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Đáńáęáëţ ĺđéëÝîôĺ ôé đńďóáńěďăÝáň äéęôýďő čá óőíäĺčĺß\n"
-"óôď ôďđéęü óáň äßęôőď."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Ç ďčüíç äĺí Ý÷ĺé ńőčěéóôĺß áęüěç"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Boot Ôýđďő Ńýčěéóç"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Ńőčěßóĺéň Äéáäéęôýďő (Internet)"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "IP äéĺýčőíóç ĺîőđçńĺôçôŢ CUPS:"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"ĐéčáíŢ ĺđáíá÷ńçóéěďđďßçóç ôçň äéĺýčőíóçň LAN óôçí ôńÝ÷ďőóá ńýčěéóç ôďő %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Áíé÷íĺýôçęĺ ńýčěéóç firewall!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Đńďóď÷Ţ! Áíé÷íĺýôçęĺ őđÜń÷ďőóá ńýčěéóç firewall. şóůň ÷ńĺéáóôďýí ďńéóěÝíĺň"
-"\"÷ĺéńďęßíçôĺň\" ńőčěßóĺéň ěĺôÜ ôçí ĺăęáôÜóôáóç."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Ńýčěéóç..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Ńýčěéóç, ĺăęáôÜóôáóç ëďăéóěéęďý, ĺęęßíçóç ĺîőđçńĺôçôţí..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Đńüâëçěá ęáôÜ ôçí ĺăęáôÜóôáóç ôďő đáęÝôďő %s"
-
-#: ../../standalone/drakgw_.c:672
-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:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Ç ńýčěéóç Ý÷ĺé Ţäç ăßíĺé, áëëÜ áőôŢ ôç óôéăěŢ ĺßíáé áđĺíĺńăďđďéçěÝíç."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Ç ńýčěéóç Ý÷ĺé Ţäç ăßíĺé, ęáé áőôŢ ôç óôéăěŢ ĺßíáé ĺíĺńăďđďéçěÝíç."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Ď Ĺđéěĺńéóěüň óýíäĺóçň Internet äĺí Ý÷ĺé ńőčěéóôĺß đďôÝ."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Ńýčěéóç ĺđéěĺńéóěďý óýíäĺóçň Äéáäéęôýďő (internet)"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Ęáëůň Ţëčáôĺ óôď ĺńăáëĺßď ńýčěéóçň ôďő Ĺđéěĺńéóěďý óýíäĺóçň Internet!\n"
-"\n"
-"%s\n"
-"\n"
-"ĘÜíôĺ ęëßę óôď Ńýčěéóç ăéá íá îĺęéíŢóĺôĺ ôďí ďäçăü ĺăęáôÜóôáóçň."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Ńýčěéóç äéęôýďő (%d adapters)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Đńďößë: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "ÄéáăńáöŢ đńďößë..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Đńďößë ăéá äéáăńáöŢ:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "ÍÝď đńďößë..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "źíďěá óőóôŢěáôďň: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Đńüóâáóç óôď Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Ôýđďň:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Đýëç äéęôýďő:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "ÄéĺđéöÜíĺéá:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "ĘáôÜóôáóç:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Ńýčěéóç Đńüóâáóçň óôď Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Ńýčěéóç LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Ďäçăüň"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "ÄéĺđéöÜíĺéá"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Đńůôüęďëëď"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "ĘáôÜóôáóç:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Ńýčěéóç ôďđéęďý äéęôýďő..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "ĚÜăďň..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Ĺíĺńăďđďßçóç"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ... ĹöáńěďăŢ ńőčěßóĺůí"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "ÓőíäÝčçęĺ"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Äĺ óőíäÝčçęĺ"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Óýíäĺóç..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Áđďóýíäĺóç..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Äĺí Ý÷ĺôĺ ęÜđďéá ńőčéóěÝíç äéĺđéöÜíĺéá.\n"
-"Ńőčěßóôĺ ôéň ęÜíďíôáň ęëßę óôď 'Ńýčěéóç'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Ńýčěéóç LÁÍ"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "ĐńďóáńěďăÝáň %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Đńůôüęďëëď Ĺęęßíçóçň"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Îĺęßíçóáí óôçí ĺęęßíçóç óőóôŢěáôďň"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "đĺëÜôçň DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Äĺí Ý÷ĺôĺ óýíäĺóç ěĺ ôď internet.\n"
-"ÄçěéďőńăŢóôĺ ěßá ęÜíďíôáň ęëßę óôď 'Ńýčěéóç'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Ńýčěéóç óýíäĺóçň Äéáäéęôýďő (internet)"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Ńýčěéóç Óýíäĺóçň Äéáäéęôýďő (internet)"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Ôýđďň óýíäĺóçň: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "ĐáńÜěĺôńďé"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Đýëç äéęôýďő"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "ĘÜńôá Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "ĐĺëÜôçň DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Ńýčěéóç ĺđéđÝäďő áóöáëĺßáň"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "ĘÝíôńď ĹëÝă÷ďő"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "ĹđéëÝîôĺ ôď ĺńăáëĺßď đďő čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Ęáíáäéęü (ĘĺěđÝę)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "Ĺőńţđç"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Éóëáíäéęü"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "Ĺőńţđç"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "óĺéńéáęü"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "×ńŢóç: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ äéáńýčěéóç đëçęôńďëďăßďő."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "ČÝëĺôĺ ôď BackSpace íá ĺđéóôńÝöĺé Delete óôçí ęďíóüëá;"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "ÁëëáăŢ Cd-Rom"
-
-#: ../../standalone/livedrake_.c:25
-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 ĺăęáôÜóôáóçň óôďí ďäçăü óáň ęáé đáôŢóôĺ Ďę.\n"
-"ĹÜí äĺí ôď Ý÷ĺôĺ, đáôŢóôĺ Áęýńůóç ăéá áđďöőăŢ äéęôőáęŢň áíáâÜčěéóçň."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Äĺí ěđďńţ íá îĺęéíŢóů ôď live upgrade!!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Áń÷ĺßď/_ÍÝď"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Áń÷ĺßď/_Áíďéăěá"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Áń÷ĺßď/Áđď_čŢęĺőóç"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Áń÷ĺßď/ÁđďčŢęĺőóç _Ůň"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Áń÷ĺßď/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_ĹđéëďăÝň"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/ĹđéëďăÝň/ÔÝóô"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_ÂďŢčĺéá"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/ÂďŢčĺéá/_Ó÷ĺôéęÜ ěĺ..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Ęůäéęü üíďěá"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "ěçíýěáôá"
-
-#: ../../standalone/logdrake_.c:175
-#, fuzzy
-msgid "Syslog"
-msgstr "syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "áíáćŢôçóç"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "¸íá ĺńăáëĺßď ăéá íá âëÝđĺôĺ ôá log óáň"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Ńőčěßóĺéň"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "ôáéńéÜćĺé"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "äĺí ôáéńéÜćĺé"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "ĹđéëÝîôĺ Ýíá áń÷ĺßď"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Çěĺńďëüăéď"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Đĺńéĺ÷üěĺíď ôďő áń÷ĺßďő"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "đáńáęáëţ đĺńéěÝíĺôĺ, ĺđĺîĺńăáóßá áń÷ĺßďő: %s"
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "ĹëáöńéÜ ńýčěéóç"
-
-#: ../../standalone/logdrake_.c:406
-#, fuzzy
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Ęáëţň Ţëčáôĺ óôď ĺńăáëĺßď ńýčěéóçň ôďő proxy.\n"
-"\n"
-"Ĺäţ, čá ěđďńÝóĺôĺ íá ńőčěßóĺôĺ ôďőň http ęáé ftp proxies\n"
-"ěĺ Ţ ÷ůńßň login ęáé ęůäéęü đńüóâáóçň\n"
-
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "ĹîőđçńĺôçôŢň"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "Ěďńöďđďßçóç"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Ńőčěßóĺéň ÷ńůěÜôůí"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "ÁđďčŢęĺőóç Ůň"
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "äĺí âńÝčçęĺ serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Ĺîďěďßůóç ôńßôďő đëŢęôńďő;"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "ĹđéëÝîôĺ ęÜńôá ăńáöéęţí"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "ÓőóęĺőŢ ĺęęßíçóçň"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Ńýčěéóç Firewalling"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Ńýčěéóç firewalling"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewalling\n"
-"\n"
-"¸÷ĺôĺ Ţäç óôçěěÝíď Ýíá firewall.\n"
-"ĘÜíôĺ ęëßę óôď Ńýčěéóç ăéá íá áëëÜîĺôĺ Ţ íá äéáăńÜřĺôĺ ôď firewall"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewalling\n"
-"\n"
-"ĘÜíôĺ ęëßę óôď Ńýčěéóç ăéá íá óôŢóĺôĺ Ýíá ôőđéęü firewall"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "ĹđéëÝîôĺ ăëţóóá"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "ĹđéëÝîôĺ ĺăęáôÜóôáóç"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Ĺíôďđéóěüň óęëçńďý äßóęďő"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Ńýčěéóç đďíôéęéďý"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "ĹđéëÝîôĺ đëçęôńďëüăéď"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "ÁóöÜëĺéá"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Đńďĺô. óőó. áń÷."
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Ěďńöďđ. ęáôáôěŢó."
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "ĹđéëďăŢ đáęÝôůí"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "ĹăęáôÜóôáóç óőóôŢěáôďň"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "ĐńďóčŢęç ÷ńŢóôç"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Ńýčěéóç äéęôýďő"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Ńýčěéóç őđçńĺóéţí"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Ĺăę. đń. ĺęęßíçóçň"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "ÄéóęÝôá ĺęęßíçóçň"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Ńýčěéóç ×"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "ĹăęáôÜóôáóç óőóôŢěáôďň"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "¸îďäďň"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"ńýčěéóç tinyfirewall\n"
-"\n"
-"Áőôü ńőčěßćĺé ôď đńďóůđéęü óáň firewall ăéá áőôü ôď ěç÷Üíçěá Mandrake "
-"Linux.\n"
-"Ăéá ěéá éó÷őńŢ áöďóéůěÝíç ëýóç firewall, đáńáęáëţ ęďéôÜîôĺ óôçí\n"
-"ĺéäéęĺőěÝíç MandrakeSecurity Firewall äéáíďěŢ."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Ôţńá čá óáň ęÜíďőěĺ ĺńůôŢóĺéň ăéá ôď đďéÝň őđçńĺóßĺň čÝëĺôĺ íá áöŢóĺôĺ\n"
-"íá óőíäÝďíôáé óôď Internet. Đáńáęáëţ óęĺöôĺßôĺ đńďóĺęôéęÜ ăéá áőôÝň ôéň\n"
-"ĺńůôŢóĺéň, ęáčţň ç áóöÜëĺéá ôďő őđďëďăéóôŢ óáň ĺßíáé óçěáíôéęŢ.\n"
-"\n"
-"Đáńáęáëţ, áí ôçí ôńÝ÷ďőóá óôéăěŢ äĺí ÷ńçóéěďđďéĺßôĺ ęÜđďéá áđü áőôÝň ôéň "
-"őđçńĺóßĺň,\n"
-"âăÜëôĺ ôçí áđü ôď firewall. Ěđďńĺßôĺ íá áëëÜîĺôĺ áőôÝň ôéň ńőčěßóĺéň "
-"ďđďéáäŢđďôĺ\n"
-"óôéăěŢ čÝëĺôĺ îáíáôńÝ÷ďíôáň áőôŢí ôçí ĺöáńěďăŢ!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"ÔńÝ÷ĺôĺ Ýíáí ĺîőđçńĺôçôŢ web óĺ áőôü ôď ěç÷Üíçěá đďő ÷ńĺéÜćĺóôĺ íá ôďí "
-"âëÝđĺé\n"
-"ďëüęëçńď ôď internet; Áí ôńÝ÷ĺôĺ Ýíáí ĺîőđńĺôçôŢ web đďő ěüíď áőôü ôď "
-"ěç÷Üíçěá\n"
-"÷ńĺéÜćĺôáé íá ôďí âëÝđĺé, ôüôĺ ěđďńĺßôĺ íá áđáíôŢóĺôĺ Ď×É ěĺ áóöÜëĺéá ĺäů.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"ÔńÝ÷ĺôĺ name ĺîőđçńĺôçôŢ óĺ áőôü ôď ěç÷Üíçěá; Áí äĺí ńőčěßóáôĺ Ýíáí\n"
-"ţóôĺ íá äßíĺé IP ęáé đëçńďöďńßĺň ćţíçň óĺ üëď ôď internet, đáńáęáëţ\n"
-"áđáíôŢóôĺ ü÷é.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"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.äĺí ĺßíáé\n"
-"ęńőđôďăńáöçěÝíď -- ďđüôĺ ęÜđďéďé ôáńáîßĺň ěđďńďýí íá ęëÝřďőí ôďí ęůäéęü\n"
-"đńüóâáóçň áí ôď ÷ńçóéěďđďéĺßôĺ. To ssh ĺßíáé ęńőđôďăńáöçěÝíď ęáé äĺí ôď "
-"ĺđéôńÝđĺé áőôü."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"ČÝëĺôĺ íá ĺđéôńÝřĺôĺ ĺéóĺń÷üěĺíĺň óőíäÝóĺéň telnet;\n"
-"Áőôü ĺßíáé ôńáăéęÜ ěç áóöáëÝň, üđůň ĺîçăŢóáěĺ óôçí đńďçăďýěĺíç ďčüíç.\n"
-"Đńďôĺßíďőěĺ íá áđáíôŢóĺôĺ ü÷é ĺäţ ęáé íá ÷ńçóéěďđďéŢóĺôĺ ôď ssh óôç čÝóç "
-"ôďő\n"
-"telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"ÔńÝ÷ĺôĺ Ýíáí FTP ĺîőđçńĺôçôŢ đďő ÷ńĺéÜćĺôáé íá ĺßíáé đńďóâÜóéěďň óôď "
-"Internet;\n"
-"Ĺáí íáé, ôüôĺ đńďôĺßíďőěĺ íá ôď ÷ńçóéěďđďéĺßôĺ ăéá Áíţíőěĺň ěĺôáöďńÝň. "
-"ĎđďéäŢđďôĺ\n"
-"ęůäéęďß đńüóâáóçň óôÝëíďíôáé áđü ôď FTP ěđďńďýí íá ęëáđďýí áđü ęÜđďéďőň "
-"ôáńáîßĺň,\n"
-"áöďý ôď FTP ĺđßóçň äĺí ÷ńçóéěďđďéĺß ęńőđôďăńÜöçóç ăéá ôçí ěĺôáöďńÜ ęůäéęţí "
-"đńüóâáóçň\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"ÔńÝ÷ĺôĺ Ýíáí ĺîőđçńĺôçôŢ ôá÷őäńďěĺßďő ĺäţ; Ĺáí óôÝëíĺôĺ ôá \n"
-"ěçíýěáôÜ óáň ěÝóů pine, mutt Ţ Üëëďő đĺëÜôç ôá÷őäńďěĺßďő áđü ôçí ęďíóüëá,\n"
-"ôüôĺ đéčáíüí íá ôńÝ÷ĺôĺ. Áëëéţň čá đńÝđĺé íá ôď đĺńéďńßóĺôĺ ěĺ firewall "
-"áőôü.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"ÔńÝ÷ĺôĺ Ýíáí POP Ţ IMAP ĺîőđçńĺôçôŢ ĺäţ; Áőôü ÷ńçóéěďđďéĺßôáé\n"
-"ăéá đáńď÷Ţ ëďăáńéáóěţí ôá÷őäńďěĺßďő ěç âáóéóěÝíďő óôď web ăéá áíčńţđďőň \n"
-"ěÝóů áőôďý ôďő ěç÷áíŢěáôďň.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Öáßíĺôáé đůň ôńÝ÷ĺôĺ Ýíáí 2.2 đőńŢíá. ĹÜí ç IP óáň\n"
-"ĺßíáé äőíáěéęŢ, đńÝđĺé íá ôď ĺđéôńÝřďőěĺ áőôü. Ĺßíáé áőôŢ \n"
-"ç đĺńßđôůóŢ óáň;\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Óőă÷ńďíßćĺôáé ç ţńá ôďő őđďëďăéóôŢ óáň ěĺ Üëëďí őđďëďăéóôŢ;\n"
-"Đĺńéóóüôĺńď, áőôü ÷ńçóéěďđďéĺßôáé áđü ěĺăáëďěĺóáßďőň ďńăáíéóěďýň\n"
-"ěĺ Unix/Linux ăéá íá óőă÷ńďíßćďíôáé ôá logs ęëđ. Ĺáí äĺí ĺßóôĺ ěÝńďň\n"
-"ĺíüň ěĺăÜëďő ăńáöĺßďő ęáé äĺí Ý÷ĺôĺ áęďýóĺé ăéá áőôü, ôüôĺ đéčáíüí \n"
-"íá ěçí éó÷ýĺé áőôü."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Ç Ńýčěéóç ďëďęëçńţčçęĺ. Íá ăńáöôďýí áőôÝň ďé áëëáăÝň óôď äßóęď;\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Áäőíáěßá áíďßăěáôďň %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "ÓöÜëěá ęáôÜ ôď Üíďéăěá ôďő %s ăéá ĺăăńáöŢ: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Ńýčěéóç Firewalling"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ, đńďĺôďéěáóßá ĺăęáôÜóôáóçň"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "ŐđďëďăéóôŢň Äéęôýďő (đĺëÜôçň)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS server, SMB server, Proxy server, ssh server"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Ăńáöĺßď"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Óôáčěüň ĺńăáóßáň Gnome"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Ĺńăáëĺßá ăéá Palm Pilot Ţ Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Óôáčěüň ĺńăáóßáň"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Firewall/Router"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domain Name ęáé Network Information Server"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr "Ĺńăáëĺßá ăńáöĺßďő: ĹđĺîĺńăáóôÝň ęĺéěÝíďő, ëďăéóôéęÜ öýëëá ęëđ"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Ĺńăáëĺßá Ţ÷ďő: mp3 Ţ midi players, ěßęôĺň ęëđ"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Âéâëßá ęáé ďäçăďß ăéá ôď Linux ęáé ôď ĺëĺýčĺńď ëďăéóěéęü"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Óôáčěüň ĺńăáóßáň KDE"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ęëđ"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "ĐďëőěÝóá - Video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Ĺńăáëĺßá ăéá áëëçëďăńáößá, íÝá, web, ěĺôáöďńÜ áń÷ĺßůí ęáé óőíďěéëßá"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "ÂÜóç ÄĺäďěÝíůí"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL Ţ MySQL database ĺîőđçńĺôçôŢň"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Ĺńăáëĺßá ăéá íá äéĺőęďëőíčĺßôĺ óôç ńýčěéóç ôďő őđďëďăéóôŢ óáň"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "ĐďëőěÝóá - š÷ďň"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Ĺńăáëĺßá"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Ôĺęěçńßůóç"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Ĺńăáëĺßá ęďíóüëáň"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "ĹîőđçńĺôçôŢň ôá÷őäńďěĺßďő Postfix, ĺîőđçńĺôçôŢň íĺţí Inn"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Óôáčěüň Internet"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Óôáčěüň đďëőěÝóůí"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "Ńýčěéóç LÁÍ"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Đĺńéóóüôĺńá ăńáöéęÜ đĺńéâÜëëďíôá (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr "Ôď đĺńéâÜëëďí ăńáöĺßďő KDE ěĺ ěéá óőëëďăŢ óőíďäĺőôéęţí ĺńăáëĺßůí"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Ăńáöéęü ĐĺńéâÜëëďí"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Ĺńăáëĺßá ăéá äçěéďőńăßá ęáé ĺăăńáöŢ CD"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Óôáčěüň ĺńăáóßáň ăńáöĺßďő"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "ĹîőđçńĺôçôŢň"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, ęëđ"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "ĐńďăńÜěěáôá ăńáöéęţí üđůň ôď Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "ÂéâëéďčŢęĺň áíÜđôőîçň C ęáé C++, đńďăńÜěěáôá ęáé Üëëá áń÷ĺßá"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "ĹîőđçńĺôçôŢň äéęôýďő"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Mail/Groupware/News"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Óôáčěüň đáé÷íéäéţí"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "ĐńďăńÜěěáôá áíáđáńáăůăŢň ęáé äéá÷ĺßńçóçň video"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "ĐďëőěÝóá - ĂńáöéęÜ"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "ÄéáóęÝäáóç (đáé÷íßäéá)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Ĺńăáëĺßá ăéá áđďóôďëŢ ęáé ëŢřç áëëçëďăńáößáň ęáé news (pine, mutt, tin...) "
-"ęáé Web Browsers"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Áń÷ĺéďčÝôçóç, ĺîďěďéůôÝň, đáńáęďëďýčçóç"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Äéá÷ĺßńçóç đńďóůđéęţí ďéęďíďěéęţí äĺäďěÝíůí"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr "Ăńáöéęü đĺńéâÜëëďí ěĺ öéëéęÜ ĺńăáëĺßá ęáé ĺöáńěďăÝň"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "ĐĺëÜôĺň ăéá äéáöďńĺôéęÜ đńůôüęďëëá óőěđĺńéëáěâáíďěÝíďő ôďő ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Đýëç Éíôĺńíĺô"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "ĐńďăńÜěěáôá áíáđáńáăůăŢň ęáé äéá÷ĺßńçóçň video ęáé Ţ÷ďő"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "śëëá ăńáöéęÜ đĺńéâÜëëďíôá"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "ĹđĺîĺńăáóôÝň ęĺéěÝíďő, ęĺëýöç, ĺńăáëĺßá áń÷ĺßůí, ôĺńěáôéęÜ"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "ĐńďăńÜěěáôá ďéęďíďěéęŢň äéá÷ĺßńçóçň, üđůň ôď gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Äéá÷ĺßńçóç đńďóůđéęţí äĺäďěÝíůí"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "ĐďëőěÝóá - ĹăăńáöŢ CD"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Óôáčěüň Ĺńăáóßáň Ĺđéóôçěďíéęţí ĺöáńěďăţí"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Áęýńůóç"
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "Ďëďęëçńţčçęĺ"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "ĹđéëÝîôĺ ôďí ĺî' ďńéóěďý ÷ńŢóôç:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Ěđďńĺßôĺ ôţńá íá äţóĺôĺ đáńáěÝôńďőň ăéá ôďí ďäçăü %s"
-
-#~ msgid "mount failed"
-#~ msgstr "óýíäĺóç áđÝôő÷ĺ"
-
-#~ msgid "Low"
-#~ msgstr "×áěçëü"
-
-#~ msgid "Medium"
-#~ msgstr "ĚÝôńéď"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Ëßăĺň âĺëôéţóĺéň áóöáëĺßáň, ç ęýńéá ĺßíáé üôé őđÜń÷ďőí đĺńéóóüôĺńĺň \n"
-#~ "đńďĺéäďđďéŢóĺéň ęáé Ýëĺă÷ďé."
-
-#~ msgid "Boot mode"
-#~ msgstr "Ëĺéôďőńăßá ĺęęßíçóçň"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Ăéá ĺéäéęďýň"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Ôď GNU/Linux ÷ĺéńßćĺôáé ôçí ţńá óĺ GMT (\"Greenwich Mean Time\" Ţ \n"
-#~ "\"ĚĺóçěâńéíŢ żńá ĂęńŢíďőéôň\") ęáé ôçí ěĺôáôńÝđĺé óĺ ôďđéęŢ ţńá\n"
-#~ "âÜóĺé ôçň ćţíçň ţńáň đďő čá ĺđéëÝîĺôĺ."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Óýíäĺóç óôď äéáäßęôőď (internet)"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Áđďóýíäĺóç áđü ôď äéáäßęôőď (internet)"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Ńýčěéóç óýíäĺóçň óôď äßęôőď (ôďđéęü Ţ Äéáäßęôőď)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Óĺ đďéüí äßóęď čÝëĺôĺ íá ěĺôáęéíçčĺßôĺ;"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Đëçńďöďńßĺň"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Óôáčěüň ĺńăáóßáň Gnome"
-
-#~ msgid "authentification"
-#~ msgstr "áőčĺíôéęüôçôá"
-
-#~ msgid "user"
-#~ msgstr "÷ńŢóôçň"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôýđď đďíôéęéďý."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "¸îďäďň"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Áőôüěáôç óýíäĺóç áđďóđţěĺíůí ěďíÜäůí áđďčŢęĺőóçň"
-
-#~ msgid "Active"
-#~ msgstr "Ĺíĺńăü"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "ź÷é"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "¸íáň ĺęôőđůôŢň ôýđďő \"%s\" ĺíôďđßóôçęĺ óôď "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "ÓőóęĺőŢ ôďđéęďý ĺęôőđůôŢ"
-
-#~ msgid "Printer Device"
-#~ msgstr "ÓőóęĺőŢ ĺęôőđůôŢ"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "Ôď áń÷ĺßď óőóęĺőŢň ëĺßđĺé!"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "ÁđďěĺěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "ĘáôÜóôáóç óőóôŢěáôďň"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "śëëď"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Đáńáęáëţ ĺđéëÝîôĺ äéáńýčěéóç đëçęôńďëďăßďő."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Đáńáęáëţ ęÜíôĺ ęëéę óĺ ěéá ęáôÜôěçóç"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Ôýđďň: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "ĘáôĺóôńáěÝíď ĺöĺäńéęü áń÷ĺßď"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Ńýčěéóç ×"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "ÓőóęĺőŢ ĺęôőđůôŢ"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Áęýńůóç"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ďę"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Ęëĺßóéěď"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Ĺęęßíçóç óýíäĺóçň..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Ęëĺßóéěď óýíäĺóçň..."
-
-#~ 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."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Ôď óýóôçěá äĺí ĺßíáé óőíäĺäĺěÝíď óôď Äéáäßęôőď."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "ĹđéëÝîôĺ ôď ěÝăĺčďň đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-
-#~ msgid "Total size: "
-#~ msgstr "Óőíďëéęü ěÝăĺčďň: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ, "
-
-#~ msgid "Total time "
-#~ msgstr "Óőíďëéęüň ÷ńüíďň "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Íá ÷ńçóéěďđďéŢóů ôéň őđÜń÷ďőóĺň ńőčěßóĺéň ăéá ôá ×11;"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Óĺ đďéÜ óőóęĺőŢ ĺßíáé óőíäĺäĺěÝíďň ď ĺęôőđůôŢň óáň;\n"
-#~ "(óçěĺßůóç: ôď /dev/lp0 áíôéóôďé÷ĺß óôď LPT1:)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Đńďóď÷Ţ, ď đńďóáńěďăÝáň äéęôýďő ĺßíáé Ţäç ńőčěéóěÝíďň. Čá ôďí "
-#~ "ĺđáíáńőčěßóů."
-
-#~ msgid "New"
-#~ msgstr "ÍÝď"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "źíďěá áđďěĺěáęńőóěÝíçň ďőńÜň"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Đáńáęáëţ ęÜíôĺ ęëéę óĺ ěéá ęáôÜôěçóç"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Áěöéâďëď (%s), đáńáęáëţ đńďóäéďńéóôĺ ęáëýôĺńá\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ; (ĺî' ďńéóěďý %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Ç ĺđéëďăŢ óáň; (ĺî' ďńéóěďý %s ĺéóÜăĺôĺ `none' ăéá ęáíÝíá) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "áäőíáěßá áíďßăěáôďň ôďő /etc/sysconfig/autologin ăéá áíÜăíůóç: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "ČÝëĺôĺ íá ĺđáíĺęęéíŢóĺôĺ ôď äßęôőď;"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Óőěöůíĺßôĺ;"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Čá ĺđáíĺęęéíŢóů ôçí đáńáęÜôů óőóęĺőŢ äéęôýďő:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Čá ĺđáíĺęęéíŢóů ôçí óőóęĺőŢ äéęôýďő %s. Óőěöůíĺßôĺ;"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Ĺęôüň ęáé áí ĺßóôĺ óßăďőńďé üôé äĺí ĺßíáé Ýôóé, ç óőíçčéóěÝíç ĺđéëďăŢ\n"
-#~ "ĺßíáé \"/dev/hda\" (ď đńţôďň äßóęďň óôď đńţôď ęáíÜëé), Ţ \"/dev/sda\n"
-#~ "(ď đńţôďň SCSI äßóęďň)."
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "ĹđéëÝîôĺ ôďí ĺî' ďńéóěďý ÷ńŢóôç:"
-
-#~ msgid "Spooler: "
-#~ msgstr "Spooler: "
-
-#~ msgid "Test the mouse here."
-#~ msgstr "ÄďęéěÜóôĺ ôď đďíôßęé ĺäţ."
-
-#~ msgid "Press next to continue."
-#~ msgstr "ĐáôŢóôĺ ĺđüěĺíď ăéá íá óőíĺ÷ßóĺôĺ."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Đáńáęáëţ ĺđéëÝîôĺ ăëţóóá ăéá ĺăęáôÜóôáóç ęáé ÷ńŢóç."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "ĐńÝđĺé íá áđďäĺ÷čĺßôĺ ôďőň üńďőň ôçň Üäĺéáň ÷ńŢóçň đńéí óőíĺ÷ßóĺôĺ ôçí "
-#~ "ĺăęáôÜóôáóç.\n"
-#~ "\n"
-#~ "\n"
-#~ "Đáńáęáëţ ĺđéëÝîôĺ \"Áđďäď÷Ţ\" ĺÜí óőěöůíĺßôĺ ěĺ ôďőň üńďőň.\n"
-#~ "\n"
-#~ "\n"
-#~ "Đáńáęáëţ ĺđéëÝîôĺ \"śńíçóç\" ĺÜí äĺí óőěöůíĺßôĺ. Ç ĺăęáôÜóôáóç čá "
-#~ "óôáěáôŢóĺé ÷ůńßň íá\n"
-#~ "đĺéńá÷ôĺß ôßđďôá."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr ""
-#~ "ĹđéëÝîôĺ ôçí äéáńýčěéóç đďő áíôéóôďé÷ĺß óôď đëçęôńďëüăéü óáňáđü ôçí "
-#~ "đáńáđÜíů ëßóôá"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "ĹÜí čÝëĺôĺ ęáé Üëëĺň ăëţóóĺň (ĺęôüň áđü áőôŢ đďő ĺđéëÝîáôĺ óôçí áń÷Ţ)\n"
-#~ "đáńáęáëţ ĺđéëÝîôĺ ôéň áđü ôďí đáńáđÜíů ęáôÜëďăď."
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "ĹđéëÝîôĺ:\n"
-#~ "\n"
-#~ " - ĐńďóáńěďóěÝíç: ĹÜí ĺßóôĺ ĺîďéęĺéůěÝíďň ěĺ ôď Linux, čá ěđďńÝóĺôĺ íá \n"
-#~ "ĺđéëÝîĺôĺ ěĺôáîý óőóôŢěáôďň ăĺíéęŢň ÷ńŢóçň, óőóôŢěáôďň áíÜđôőîçň Ţ "
-#~ "ĺîőđçńĺôçôŢ\n"
-#~ "äéęôýďő.\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĹîĺéäéęĺőěÝíç: ĹÜí ĺßóôĺ đďëý ĺîďéęĺéůěÝíďň ěĺ óőóôŢěáôá GNU/Linux "
-#~ "ęáé\n"
-#~ "čÝëĺôĺ íá đńáăěáôďđďéŢóĺôĺ ěéá ĺîáéńĺôéęÜ đńďóáńěďóěÝíç ĺăęáôÜóôáóç, "
-#~ "ôüôĺ\n"
-#~ "áőôŢ ç ĺđéëďăŢ ĺßíáé ăéá óáň. Čá ěđďńÝóĺôĺ íá ĺđéëÝîĺôĺ ôýđď "
-#~ "ĺăęáôÜóôáóçň\n"
-#~ "üđůň ęáé óôçí đáńáđÜíů (\"ĐńďóáńěďóěÝíç\") ĺđéëďăŢ."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Ďé ĺđéëďăÝň đďő Ý÷ĺôĺ ó÷ĺôéęÜ ěĺ ôçí ÷ńŢóç ôďő óőóôŢěáôüň óáň \n"
-#~ "ĺßíáé ďé áęüëďőčĺň:\n"
-#~ "\n"
-#~ "* Óôáčěüň ĺńăáóßáň: ĹđéëÝîôĺ áőôŢí ĺÜí óęďđĺýĺôĺ íá ÷ńçóéěďđďéçóĺôĺ ôď "
-#~ "óýóôçěÜ\n"
-#~ " óáň ęőńßůň ăéá ęáčçěĺńéíŢ ÷ńŢóç, óôď óđßôé Ţ óôď ăńáöĺßď. \n"
-#~ "\n"
-#~ "* ÁíÜđôőîç: ĹđéëÝîôĺ áőôü ĺÜí óęďđĺýĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď óýóôçěÜ "
-#~ "óáň\n"
-#~ " ęőńßůň ăéá áíÜđôőîç ëďăéóěéęďý. Čá ĺăęáôáóôáčĺß ěéá đëŢńçň óőëëďăŢ "
-#~ "ĺńăáëĺßůí\n"
-#~ " ăéá ěĺôáăëţôéóç, áđďóöáëěÜôůóç ęáé ěďńöďđďßçóç đçăáßďő ęţäéęá, ęáčţň "
-#~ "ęáé\n"
-#~ " äçěéďőńăßá đáęÝôůí ëďăéóěéęďý.\n"
-#~ "\n"
-#~ "* ĹîőđçńĺôçôŢň: ĹđéëÝîôĺ áőôü ĺÜí óęďđĺýĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď óýóôçěÜ "
-#~ "óáň\n"
-#~ " ůň ĺîőđçńĺôçôŢ, ĺßôĺ áń÷ĺßůí (NFS Ţ SMB), ĺßôĺ ĺęôőđţóĺůí (lp Ţ SMB), "
-#~ "ĺßôĺ\n"
-#~ " đéóôďđďßçóçň (NIS), âÜóçň äĺäďěÝíůí ęëđ. Óĺ áőôŢí ôçí đĺńßđôůóç, äĺí "
-#~ "čá\n"
-#~ " ĺăęáôáóôáčďýí đńÜăěáôá üđůň ôď KDE, ôď Gnome ęëđ."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ ôéň ďěÜäĺň đáęÝôůí đďő ĺđéčőěĺßôĺ íá "
-#~ "ĺăęáôáóôŢóĺôĺ Ţ íá áíáâáčěßóĺôĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ôď DrakX čá đńďóäéďńßóĺé ĺÜí Ý÷ĺôĺ áńęĺôü ÷ţńď óôďí äßóęď óáň.\n"
-#~ "ĹÜí ü÷é, čá ëÜâĺôĺ ěéá đńďĺéäďđďßçóç. ĹÜí čÝëĺôĺ íá óőíĺ÷ßóĺôĺ, čá "
-#~ "ĺăęáôáóôáčďýí\n"
-#~ "üëĺň ďé ĺđéëĺăěÝíĺň ďěÜäĺň, áëëÜ čá áöáéńĺčďýí ęÜđďéá đáęÝôá ĺëÜóóďíďň "
-#~ "ĺíäéáöÝńďíôďň.\n"
-#~ "Óôď ęÜôů ěÝńďň ôçň ëßóôáň ěđďńĺßôĺ íá ĺđéëÝîĺôĺ \"ĹđéëďăŢ áíĺîÜńôçôůí "
-#~ "đáęÝôůí\". Óĺ áőôŢ\n"
-#~ "ôç đĺńßđôůóç čá đńÝđĺé íá ĺđéëÝîĺôĺ áíÜěĺóá óĺ đáńáđÜíů áđü 1000 đáęÝôá."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "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"
-#~ "ęáé Üëëůí đáęÝôůí đďő ĺîáńôţíôáé áđü áőôü."
-
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "ĹÜí Ý÷ĺôĺ üëá ôá đáńáđÜíů CDs, đáôŢóôĺ Ok.\n"
-#~ "ĹÜí äĺí Ý÷ĺôĺ ęáíÝíá áđü ôá đáńáđÜíů CDs, đáôŢóôĺ Áęýńůóç.\n"
-#~ "ĹÜí äĺí Ý÷ĺôĺ ęÜđďéá áđü áőôÜ, áđďĺđéëÝîôĺ ôá ęáé đáôŢóôĺ Ok."
-
-#~ 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.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are installing on an Apple machine with a 1-button mouse, you "
-#~ "will\n"
-#~ "be given the opportunity to define some keyboard keys to emulate the 2nd\n"
-#~ "and 3rd mouse buttons. This will allow you to be able to access the "
-#~ "full\n"
-#~ "functionality of the mouse in both the Linux console and the X Window "
-#~ "GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have an ADB mouse, please select USB, as the Linux kernel will "
-#~ "take\n"
-#~ "care of mapping your mouse hardware correctly."
-#~ msgstr ""
-#~ "Ôţńá ěđďńĺßôĺ íá äďęéěÜóĺôĺ ôď đďíôßęé óáň. ×ńçóéěďđďéŢóôĺ ôá ęďőěđéÜ ęáé "
-#~ "ôç ńďäÝëá ăéá íá\n"
-#~ "ĺđéâĺâáéţóĺôĺ đůň ďé ńőčěßóĺéň ĺßíáé óůóôÝň. Áí äĺí ĺßíáé, ěđďńĺßôĺ íá "
-#~ "ęÜíĺôĺ ęëßę óôď \"śęőńď\"\n"
-#~ "ăéá íá ĺđéëÝîĺôĺ Ýíáí Üëëď ďäçăü.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ĺáí ęÜíĺôĺ ĺăęáôÜóôáóç óĺ Ýíá ěç÷Üíçěá Apple ěĺ đďíôßęé ĺíüň ęďőěđéďý, čá "
-#~ "óáň äďčĺß ç\n"
-#~ "ĺőęáéńĺßá íá ďńßóĺôĺ ęÜđďéá ęďőěđéÜ ôďő đëçęôńďëďăßďő ţóôĺ íá ĺîďěďéţóĺôĺ "
-#~ "ôď 2ď ęáé ôď 3ď\n"
-#~ "ęďőěđß ôďő đďíôéęéďý. Áőôü čá óáň ĺđéôńÝřĺé íá Ý÷ĺôĺ đńüóâáóç óôçí đëŢńç "
-#~ "ëĺéôďőńăéęüôçôá\n"
-#~ "ôďő đďíôéęéďý ôüóď óôçí ęďíóüëá ôďő Linux üóď ęáé óôď X Window GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "Áí Ý÷ĺôĺ Ýíá ADB đďíôßęé, đáńáęáëţ ĺđéëÝîôĺ USB, ęáčţň ď đőńŢíáň ôďő "
-#~ "Linux čá öńďíôßóĺé\n"
-#~ "ăéá ôď đďíôßęé óáň ęáôÜëëçëá."
-
-#~ 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 "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "ĹÜí čÝëĺôĺ íá óőíäÝóĺôĺ ôďí őđďëďăéóôŢ óáň óôď Äéáäßęôőď Ţ óĺ Ýíá "
-#~ "ôďđéęü \n"
-#~ "äßęôőď, đáńáęáëţ ęÜíôĺ ôçí ęáôÜëëçëç ĺđéëďăŢ, áöďý áíďßîĺôĺ ôçí äéęôőáęŢ "
-#~ "óáň \n"
-#~ "óőóęĺőŢ ţóôĺ ôď DrakX íá ôçí ĺíôďđßóĺé áőôüěáôá.\n"
-#~ "\n"
-#~ "\n"
-#~ "ĹÜí äĺí Ý÷ĺôĺ ęáěßá äéęôőáęŢ óýíäĺóç, ĺđéëÝîôĺ \"Áđĺíĺńăďđďßçóç äéęôýďő"
-#~ "\".\n"
-#~ "\n"
-#~ "\n"
-#~ "ĹÜí čÝëĺôĺ íá ńőčěßóĺôĺ ôď äßęôőď áńăüôĺńá, Ţ áí ôĺëĺéţóáôĺ ěĺ ôéň \n"
-#~ "ńőčěßóĺéň äéęôýďő, ĺđéëÝîôĺ \"ÔÝëďň\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Äĺí ĺíôďđßóôçęĺ modem. Đáńáęáëţ ĺđéëÝîôĺ ôçí óĺéńéáęŢ čýńá óôçí ďđďßá\n"
-#~ "ĺßíáé óőíäĺäĺěÝíď.\n"
-#~ "\n"
-#~ "\n"
-#~ "ĐëçńďöďńéáęÜ, ç đńţôç čýńá (đďő ďíďěÜćĺôáé \"COM1\" óôá Microsoft "
-#~ "Windows),\n"
-#~ "óôď Linux ďíďěÜćĺôáé \"ttyS0\"."
-
-#~ 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 "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ ôéň ńőčěßóĺéň dial-up. ĹÜí äĺí îÝńĺôĺ Ţ äĺí "
-#~ "ĺßóôĺ\n"
-#~ "óßăďőńďň ăéá áőôÝň ôéň ńőčěßóĺéň, ěđďńĺßôĺ íá ôéň đëçńďöďńçčĺßôĺ áđü "
-#~ "ôďí \n"
-#~ "đáńď÷Ýá óáň. ĹÜí äĺí ďńßóĺôĺ ĺîőđçńĺôçôŢ ďíďěÜôůí (DNS), čá ďńéóôĺß "
-#~ "áőôüěáôá \n"
-#~ "ęáôÜ ôçí óýíäĺóç."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "ĹÜí ôď modem óáň ĺßíáé ĺîůôĺńéęü, đáńáęáëţ áíďßîôĺ ôď ţóôĺ ôď DrakX íá "
-#~ "ěđďńÝóĺé íá ôď ĺíôďđßóĺé áőôüěáôá."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Đáńáęáëţ áíďßîôĺ ôď modem óáň ęáé ĺđéëÝîôĺ ôď óůóôü."
-
-#~ 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"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ ôéň ńőčěßóĺéň dial-up. ĹÜí äĺí îÝńĺôĺ Ţ äĺí "
-#~ "ĺßóôĺ\n"
-#~ "óßăďőńďň ăéá áőôÝň ôéň ńőčěßóĺéň, ěđďńĺßôĺ íá ôéň đëçńďöďńçčĺßôĺ áđü "
-#~ "ôďí \n"
-#~ "đáńď÷Ýá óáň. ĹÜí äĺí ďńßóĺôĺ ĺîőđçńĺôçôŢ ďíďěÜôůí (DNS), čá ďńéóôĺß "
-#~ "áőôüěáôá \n"
-#~ "ęáôÜ ôçí óýíäĺóç."
-
-#~ 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 ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺéóÜăĺôĺ ôď äéęôőáęü üíďěá (ĺÜí ÷ńĺéÜćĺôáé). ĹÜí äĺí "
-#~ "ĺßóôĺ óßăďőńďň,\n"
-#~ "ěđďńĺßôĺ íá ćçôŢóĺôĺ đëçńďöďńßĺň áđü ôďí đáńď÷Ýá óáň."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"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: ĹÜí äĺí ôçí îÝńĺôĺ, ńůôŢóôĺ ôďí őđĺýčőíď äéęôýďő Ţ\n"
-#~ "ôďí đáńď÷Ýá óáň.\n"
-#~ "Äĺí đńÝđĺé íá ĺéóÜăĺôĺ äéĺýčőíóç IP ĺÜí ĺđéëÝîĺôĺ \"Áőôüěáôç áđüäďóç IP"
-#~ "\"\n"
-#~ "đáńáęÜôů.\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĚÜóęá äéęôýďő: \"255.255.255.0\" ĺßíáé óőíŢčůň ęáëŢ ĺđéëďăŢ. ĹÜí äĺí\n"
-#~ "ĺßóôĺ óßăďőńďň, ńůôŢóôĺ ôďí őđĺýčőíď äéęôýďő Ţ ôďí đáńď÷Ýá óáň.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Áőôüěáôç áđüäďóç IP: ĹÜí ôď äßęôőü óáň ÷ńçóéěďđďéĺß Ýíá áđü ôá "
-#~ "đńďôüęďëëá\n"
-#~ "BOOTP Ţ DHCP, ĺđéëÝîôĺ áőôü. Óĺ áőôŢ ôçí đĺńßđôůóç, äĺí ÷ńĺéÜćĺôáé íá "
-#~ "äţóĺôĺ\n"
-#~ "äéĺýčőíóç IP. ĹÜí äĺí ĺßóôĺ óßăďőńďň, ńůôŢóôĺ ôďí őđĺýčőíď äéęôýďő Ţ\n"
-#~ "ôďí đáńď÷Ýá óáň."
-
-#~ 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 ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺéóÜăĺôĺ ôď äéęôőáęü óáň üíďěá. ĹÜí äĺí\n"
-#~ "ĺßóôĺ óßăďőńďé, óőěâďőëĺőčĺßôĺ ôďí őđĺýčőíď äéęôýďő."
-
-#~ 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"
-#~ "ĺßóôĺ óßăďőńďé, áöŢóôĺ ôď ęĺíü."
-
-#~ 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 ""
-#~ "Ěđďńĺßôĺ ôţńá íá ĺéóÜăĺôĺ ôéň ĺđéëďăÝň ôďő dialup. ĹÜí äĺí ĺßóôĺ "
-#~ "óßăďőńďň,\n"
-#~ "ěđďńĺßôĺ íá ćçôŢóĺôĺ đëçńďöďńßĺň áđü ôďí đáńď÷Ýá óáň."
-
-#~ 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 ""
-#~ "ĹÜí ÷ńçóéěďđďéŢóĺôĺ proxies, đáńáęáëţ ńőčěßóôĺ ôďőň ôţńá. ĹÜí äĺí "
-#~ "îÝńĺôĺ,\n"
-#~ "ńůôŢóôĺ ôďí đáńď÷Ýá óáň Ţ ôďí őđĺýčőíď äéęôýďő."
-
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Áí ç óýíäĺóŢ óáň ěĺ ôď Äéáäßęôőď ĺßíáé óůóôÜ ńőčěéóěÝíç, ěđďńĺßôĺ íá\n"
-#~ "ĺăęáôáóôŢóĺôĺ đáęÝôď ęńőđôďăńáößáň. Đńţôá ĺđéëÝîôĺ Ýíáí ôüđď áđ'\n"
-#~ "üđďő čá ęáôĺâÜóĺôĺ ôá đáęÝôá ęáé ěĺôÜ ĺđéëÝîôĺ đďéÜ đáęÝôá čá\n"
-#~ "ĺăęáôáóôŢóĺôĺ.\n"
-#~ "\n"
-#~ "Óçěĺéţóôĺ üôé đńÝđĺé íá ĺđéëÝîĺôĺ ôüđď ęáé đáęÝôá óýěöůíá ěĺ ôçí\n"
-#~ "íďěďčĺóßá óáň."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Ěđďńĺßôĺ ôţńá íá ĺđéëÝîĺôĺ ćţíç ţńáň áíÜëďăá ěĺ ôçí ôďđďčĺóßá óáň."
-
-#~ 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 Ţ äéęôýďő \n"
-#~ "Microsoft Windows)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "ĹÜí čÝëĺôĺ íá ĺęôőđţíĺôĺ, ĺđéëÝîôĺ Ýíá óđü ôá äýď óőóôŢěáôá ĺęôýđůóçň \n"
-#~ "(CUPS ęáé LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ôď CUPS ĺßíáé Ýíá íÝď, äőíáôü ęáé ĺőÝëéęôď óýóôçěá ĺęôýđůóçň ăéá UNIX \n"
-#~ "óőóôŢěáôá. ÁőôŢ ĺßíáé ç âáóéęŢ ĺđéëďăŢ ăéá ôď Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ôď LPR ĺßíáé ôď đáëéü ęëáóóéęü óýóôçěá ĺęôýđůóçň.\n"
-#~ "\n"
-#~ "ĹÜí äĺí Ý÷ĺôĺ óęôőđůôŢ, ĺđéëÝîôĺ \"ĘáíÝíá\"."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "Ôď GNU/Linux ěđďńĺß íá óőíĺńăáóôĺß ěĺ äéÜöďńďőň ôýđďőň ĺęôőđůôţí. Ď "
-#~ "ęáčÝíáň áđü\n"
-#~ "áőôďýň ÷ńĺéÜćĺôáé äéáöďńĺôéęÝň ńőčěßóĺéň.\n"
-#~ "\n"
-#~ "ĹÜí ď ĺęôőđůôŢň óáň ĺßíáé óőíäĺäĺěÝíďň óôď óýóôçěÜ óáň, ĺđéëÝîôĺ "
-#~ "\"Ôďđéęüň\n"
-#~ "ĹęôőđůôŢň\".\n"
-#~ "\n"
-#~ "ĹÜí čÝëĺôĺ íá ĺęôőđţíĺôĺ óĺ Ýíáí ĺęôőđůôŢ ôďđďčĺôçěÝíď óĺ áđďěĺěáęńőóěÝíď "
-#~ "UNIX\n"
-#~ "óýóôçěá, ĺđéëÝîôĺ \"ÁđďěĺěáęńőóěÝíďň ĺęôőđůôŢň\".\n"
-#~ "\n"
-#~ "\n"
-#~ "ĹÜí čÝëĺôĺ íá ĺęôőđţíĺôĺ óĺ Ýíáí ĺęôőđůôŢ ôďđďčĺôçěÝíď óĺ áđďěĺěáęńőóěÝíď "
-#~ "Windows\n"
-#~ "óýóôçěá (Ţ UNIX ěĺ SMB đńůôüęďëëď), ĺđéëÝîôĺ \"SMB/Windows 95/98/NT\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " 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"
-#~ "...* źíďěá ĺęôőđůôŢ: ď print spooler ÷ńçóéěďđďéĺß ôď \"lp\"ůň ôď "
-#~ "đńďęáčďńéóěÝíď üíďěá. Ďđüôĺ, đńÝđĺé íá Ý÷ĺôĺ Ýíáí ĺęôőđůôŢ ďíüěáôé \"lp"
-#~ "\".\n"
-#~ " Ĺáí Ý÷ĺôĺ ěüíď Ýíáí ĺęôőđůôŢ, ěđďńĺßôĺ íá ÷ńçóéěďđďéŢôĺ đďëëÜ "
-#~ "ďíüěáôá ăéá áőôüí.Áđëţň čá đńÝđĺé íá ôá äéá÷ůńßóĺôĺ ěĺ Ýíá pipe\n"
-#~ " ÷áńáęôŢńá (Ýíá \"|\"). Ďđüôĺ, ĺáí đńďôéěÜôĺ Ýíá đďéď óçěáíôéęü "
-#~ "üíďěá, đńÝđĺé íá ôď âÜëĺôĺ đńţôď, đ.÷: \"My printer|lp\".\n"
-#~ " Ď ĺęôőđůôŢň đďő Ý÷ĺé ôď \"lp\" óôá ďíüěáôÜ ôďő čá ĺßíáé ď "
-#~ "đńďęáčďńéóěÝíďň ĺęôőđůôŢň.\n"
-#~ "\n"
-#~ "\n"
-#~ "...* ĐĺńéăńáöŢ: áőôü ĺßíáé đńďáéńĺôéęü áëëÜ ěđďńĺß íá ĺßíáé ÷ńŢóéěď ĺáí "
-#~ "đďëëďß ĺęôőđůôÝň ĺßíáé óőíäĺäĺěÝíďé óôďí őđďëďăéóôŢ óáň Ţ áí ĺđéôńÝđĺôĺ\n"
-#~ " Üëëďőň őđďëďăéóôÝň íá Ý÷ďőí đńüóâáóç óĺ áőôüí ôďí ĺęôőđůôŢ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ôďđďčĺóßá: ĺáí čÝëĺôĺ íá äţóĺôĺ ęÜđďéĺň đëçńďöďńßĺň ó÷ĺôéęÜ ěĺ ôçí\n"
-#~ " ôďđďčĺóßá ôďő ĺęôőđůôŢ óáň, âÜëôĺ ôéň ĺäţ (ĺßóôĺ ĺëĺýčĺńďň íá "
-#~ "ăńÜřĺôĺ üôé\n"
-#~ " čÝëĺôĺ, ăéá đáńÜäĺéăěá \"2ďň üńďöďň\").\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "ĐńÝđĺé íá ĺéóÜăĺôĺ ęÜđďéĺň đëçńďöďńßĺň ĺäţ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * źíďěá ďőńÜň: ď print spooler ÷ńçóéěďđďéĺß ôď \"lp\" ůň ôď "
-#~ "đńďęáčďńéóěÝíď üíďěá ĺęôőđůôŢ. Ďđüôĺ, đńÝđĺé íá Ý÷ĺôĺ Ýíáí ĺęôőđůôŢ ěĺ ôď "
-#~ "üíďěá \"lp\".\n"
-#~ " Ĺáí Ý÷ĺôĺ ěüíď Ýíáí ĺęôőđůôŢ, ěđďńĺßôĺ íá ÷ńçóéěďđďéŢóĺôĺ đďëëÜ "
-#~ "ďíüěáôá ăéá áőôüí. ÁđëÜ đńÝđĺé íá ôá ÷ůńßóĺôĺ ěĺ Ýíá pipe\n"
-#~ " ÷áńáęôŢńá (Ýíá \"|\"). Ďđüôĺ, ĺáí đńďôéěÜôĺ íá Ý÷ĺôĺ Ýíá đéď "
-#~ "óçěáíôéęü üíďěá, đńÝđĺé íá ôď âÜëĺôĺ đńţôď, đ.÷: \"My printer|lp\".\n"
-#~ " Ď ĺęôőđůôŢň ěĺ ôď \"lp\" óôá ďíüěáôÜ ôďő čá ĺßíáé ď đńďęáčďńéóěÝíďň "
-#~ "ĺęôőđůôŢň.\n"
-#~ "\n"
-#~ " \n"
-#~ " * ĘáôÜëďăďň Spool: áőôüň ĺßíáé ď ęáôÜëďăďň đďő áđďčçęĺýďíôáé ďé "
-#~ "ĺńăáóßĺň ôďő ĺęôőđůôŢ. ÄéáôçńŢóôĺ ôçí ĺî' ďńéóěďý ĺđéëďăŢ\n"
-#~ " ĺáí äĺí îÝńĺôĺ ôß íá ÷ńçóéěďđďéŢóĺôĺ\n"
-#~ "\n"
-#~ "\n"
-#~ " * Óýíäĺóç ĹęôőđůôŢ: Ĺáí ď ĺęôőđůôŢň óáň ĺßíáé öőóéęţň óőíäĺäĺěÝíďň "
-#~ "óôďí őđďëďăéóôŢ óáň, ĺđéëÝîôĺ \"Ôďđéęüň ĺęôőđůôŢň\".\n"
-#~ " Ĺáí čÝëĺôĺ íá Ý÷ĺôĺ đńüóâáóç óĺ Ýíáí ĺęôőđůôŢ đďő âńßóęĺôáé óĺ Ýíá "
-#~ "áđďěáęńőóěÝíď Unix ěç÷Üíçěá, ĺđéëÝîôĺ \"ÁđďěáęńőóěÝíďň lpd ĺęôőđůôŢň\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ĺáí čÝëĺôĺ íá Ý÷ĺôĺ đńüóâáóç óĺ Ýíáí ĺęôőđůôŢ đďő âńßóęĺôáé óĺ Ýíá "
-#~ "áđďěáęńőóěÝíď Microsoft Windows ěç÷Üíçěá (Ţ óĺ Ýíá Unix ěç÷Üíçěá ěĺ SMB\n"
-#~ " đńůôüęďëëď), ĺđéëÝîôĺ \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ĺáí čÝëĺôĺ íá Ý÷ĺôĺ đńüóâáóç óĺ Ýíáí ĺęôőđůôŢ đďő âńßóęĺôáé óĺ Ýíá "
-#~ "NetWare äßęôőď, ĺđéëÝîôĺ \"NetWare\".\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "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."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "ĹđéëÝîôĺ ôďí ĺęôőđůôŢ óáň óôďí đáńáđÜíů ęáôÜëďăď"
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "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"
-#~ "¸÷ĺôĺ ôçí äőíáôüôçôá íá ĺëÝăîĺôĺ ôéň ĺđéëďăÝň óáň óôď ĺđüěĺíď âŢěá ęáé "
-#~ "íáôéň ôńďđďđďéŢóĺôĺ áí äĺí ëĺéôďőńăďýí üđůň čá čÝëáôĺ."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá ďńßóĺôĺ ôç ëÝîç-ęëĺéäß ăéá ôďí ÷ńŢóôç \"root\".\n"
-#~ "Ç ëÝîç đńÝđĺé íá ĺéóá÷čĺß ĺéň äéđëďýí ăéá ĺđéâĺâáßůóç.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ď root ĺßíáé ď äéá÷ĺéńéóôŢň ôďő óőóôŢěáôďň ęáé ď ěüíďň đďő Ý÷ĺé \n"
-#~ "ôď äéęáßůěá íá áëëÜîĺé ôéň ńőčěßóĺéň ôďő óőóôŢěáôďň. Ăé áőôü, \n"
-#~ "ĺđéëÝîôĺ đńďóĺęôéęÜ áőôŢ ôç ëÝîç ęëĺéäß! Ěç ĺîďőóéďäďôçěÝíç \n"
-#~ "đńüóâáóç óôď root ěđďńĺß íá ĺßíáéĺîáéńĺôéęÜ ĺđéęßíäőíç ăéá \n"
-#~ "ôçí áęĺńáéüôçôá ôďő óőóôŢěáôďň ęáé ôůí äĺäďěÝíůí ôďő, ęáčţň \n"
-#~ "ęáé ăéá Üëëá óőóôŢěáôá óőíäĺäĺěÝíá óĺ áőôü. \n"
-#~ "\n"
-#~ "\n"
-#~ "Ç ëÝîç ęëĺéäß đńÝđĺé íá ĺßíáé ěéá ěßîç áëöáńéčěçôéęţí ÷áńáęôŢńůí \n"
-#~ "ęáé ěĺ ěŢęďň ôďőëÜ÷éóôďí ďęôţ (8) ÷áńáęôŢńůí. Äĺí đńÝđĺé *đďôÝ* \n"
-#~ "íá ôď ăńÜřĺôĺ óĺ ÷áńôß."
-
-#~ msgid ""
-#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
-#~ "select\n"
-#~ "\"LDAP\" (or \"NIS\") as authentication. If you don't know, ask your "
-#~ "network\n"
-#~ "administrator.\n"
-#~ "\n"
-#~ "If your computer is not connected to any administrated network, you may "
-#~ "want to\n"
-#~ "choose \"Local files\" for authentication."
-#~ msgstr ""
-#~ "Áí ôď äßęôőü óáň őđďóôçńßćĺé LDAP (Ţ NIS) đńůôüęďëëď ăéá ĺîáęńßâůóç, "
-#~ "ĺđéëÝîôĺ\n"
-#~ "\"LDAP\" (Ţ \"NIS\") ůň ĺîáęńßâůóç. Áí äĺí ăíůńßćĺôĺ, ńůôŢóôĺ ôďí "
-#~ "äéá÷ĺéńéóôŢ\n"
-#~ "äéęôýďő óáň.\n"
-#~ "Áí ď őđďëďăéóôŢň óáň äĺí ĺßíáé óőíäĺäĺěÝíďň óĺ äßęôőď ěĺ äéá÷ĺéńéóôŢ, "
-#~ "ôüôĺ đéčáíüôáôá íá čÝëĺôĺ íá\n"
-#~ "ĺđéëÝîĺôĺ \"ÔďđéęÜ áń÷ĺßá\" ăéá ĺîáęńßâůóç."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ ôţńá íá äçěéďőńăŢóĺôĺ Ýíáí Ţ đĺńéóóüôĺńďőň \"áđëďýň\" ÷ńŢóôĺň,\n"
-#~ "(óĺ áíôßčĺóç ěĺ ôďí \"ĺîďőóéďäďôçěÝíď\" ÷ńŢóôç, root). Ěđďńĺßôĺ íá \n"
-#~ "äçěéďőńăŢóĺôĺ Ýíáí Ţ đĺńéóóüôĺńďőň ÷ńŢóôĺň ăéá ęÜčĺ đńüóůđď đďő čÝëĺôĺ\n"
-#~ "íá Ý÷ĺé đńüóâáóç óôď óýóôçěÜ óáň. Óçěĺéţóôĺ üôé ęÜčĺ ÷ńŢóôçň Ý÷ĺé ôéň\n"
-#~ "äéęÝň ôďő ńőčěßóĺéň (ăńáöéęü đĺńéâÜëëďí, ńőčěßóĺéň ĺöáńěďăţí ęëđ),\n"
-#~ "ęáčţň ęáé ôď äéęü ôďő \"home directory\", óôď ďđďßď áđďčçęĺýďíôáé\n"
-#~ "áőôÝň ďé ńőčěßóĺéň.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęáô' áń÷Ţí, äçěéďőńăŢóôĺ Ýíáí ÷ńŢóôç ăéá ôďí ĺáőôü óáň! Áęüěá ęáé ĺÜí\n"
-#~ "ĺßóôĺ ď ěďíáäéęüň ÷ńçóôçň ôďő óőóôŢěáôďň, ÄĹÍ đńÝđĺé íá ÷ńçóéěďđďéĺßôĺ\n"
-#~ "ôď root ăéá ôçí ęáčçěĺńéíŢ ÷ńŢóç ôďő óőóôŢěáôďň, äéüôé áőôü čá \n"
-#~ "äçěéďőńăďýóĺ ęéíäőíďőň. ¸íá áđëü ëÜčďň đëçęôńďëüăçóçň ĺßíáé áńęĺôü\n"
-#~ "ăéá íá ęáôáóôńÝřĺé ôçí ĺăęáôÜóôáóŢ óáň üôáí ĺńăÜćĺóôĺ ůň root.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ăé áőôü, čá đńÝđĺé íá óőíäÝĺóôĺ óôď óýóôçěÜ óáň ÷ńçóéěďđďéţíôáň Ýíáí\n"
-#~ "ęůäéęü áđëďý ÷ńŢóôç ęáé íá óőíäÝĺóôĺ ůň root ěüíď ăéá ĺńăáóßĺň äéďßęçóçň\n"
-#~ "ęáé óőíôŢńçóçň ôďő óőóôŢěáôďň."
-
-#~ 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 ""
-#~ "Óőíßóôáôáé íá äçěéďőńăŢóĺôĺ Ýíáí äßóęď ĺęęßíçóçň. ĹÜí äĺí \n"
-#~ "ěđďńĺßôĺ íá ĺęęéíŢóĺôĺ ôďí őđďëďăéóôŢ óáň, ĺßíáé ď ěüíďň ôńüđďň \n"
-#~ "íá äéáóţóĺôĺ ôď óýóôçěÜ óáň ÷ůńßň ĺđáíĺăęáôÜóôáóç."
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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"
-#~ " - ÓőóęĺőŢ ĺęęßíçóçň: Ďńßćĺé ôď üíďěá ôçň óőóęĺőŢň (đ.÷. ěéá \n"
-#~ "ęáôÜôěçóç) đďő đĺńéÝ÷ĺé ôďí ôďěÝá ĺęęßíçóçň. Ĺęôüň ęáé áí ĺßóôĺ\n"
-#~ "óßăďőńďé üôé ĺßíáé áëëéţň, ĺđéëÝîôĺ \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĘáčőóôÝńçóç đńéí ôçí ĺęęßíçóç: Ďńßćĺé ôá äÝęáôá ôďő äĺőôĺńďëÝđôďő\n"
-#~ "đďő ôď óýóôçěá čá đĺńéěÝíĺé đńéí ĺęęéíŢóĺé ôď đńţôď ëĺéôďőńăéęü.\n"
-#~ "Áőôü ĺßíáé óőíŢčůň ÷ńŢóéěď óĺ óőóôŢěáôá đďő ĺęęéíďýí áđü ôďí äßóęď\n"
-#~ "áěÝóůň ěĺôÜ ôçí ĺíĺńăďđďßçóç ôďő đëçęôńďëďăßďő. Äĺí őđÜń÷ĺé ęáčőóôÝńçóç\n"
-#~ "ĺÜí ď áńéčěüň đáńáëĺéöčĺß Ţ ĺßíáé ěçäÝí.\n"
-#~ "\n"
-#~ "\n"
-#~ " - ÁíÜëőóç ďčüíçň: Áőôü ďńßćĺé ôçí VGA áíÜëőóç ęĺéěÝíďő đďő čá ĺđéëĺăĺß\n"
-#~ "ęáôÜ ôçí ĺęęßíçóç. ŐđÜń÷ďőí ďé đáńáęÜôů ĺđéëďăÝň: \n"
-#~ "\n"
-#~ " * normal: ĘáíďíéęŢ áíÜëőóç ęĺéěÝíďő 80×25.\n"
-#~ "\n"
-#~ " * <áńéčěüň>: ÷ńŢóç ôçň áíôßóôďé÷çň áíÜëőóçň ęĺéěÝíďő.\n"
-#~ "\n"
-#~ " - Ęáčáńéóěüň \"/tmp\" óĺ ęÜčĺ ĺęęßíçóç: ĺáí čÝëĺôĺ íá óâŢíĺôĺ üëá ôá "
-#~ "áń÷ĺßá ęáé ôďő öáęÝëďőň\n"
-#~ "đďő ĺßíáé óôď \"/tmp\" üôáí îĺęéíÜôĺ ôď óýóôçěÜ óáň, ĺíĺńăďđďéŢóôĺ áőôŢí "
-#~ "ôçí ĺđéëďăŢ.\n"
-#~ "\n"
-#~ "\n"
-#~ " - ÁęńéâŢň RAM áí ÷ńĺéÜćĺôáé: äőóôő÷ţň, äĺí őđÜń÷ĺé óôĺńĺüôőđç ěÝčďäďň "
-#~ "íá äţóĺé ôď\n"
-#~ "BIOS ôďí áęńéâŢ áńéčěü RAM ôďő őđďëďăéóôŢ óáň. Óáí óőíÝđĺéá, ôď Linux "
-#~ "ßóůň\n"
-#~ "áđďôý÷ĺé íá áíé÷íĺýóĺé ôçí RAM óůóôÜ. Óĺ áőôŢí ôçí đĺńßđôůóç, ěđďńĺßôĺ\n"
-#~ "íá ďńßóĺôĺ ôďí óůóôü áńéčěü ĺäţ. Đáńáęáëţ óçěĺéţóôĺ đůň ěéá äéáöďńÜ ôçň "
-#~ "ôÜîçň ôůí 2 Ţ 4\n"
-#~ "MB ěĺôáîý ôçň ěíŢěçň đďő áíé÷íĺýôçęĺ ęáé ôçň đńáăěáôéęŢň RAM ôďő "
-#~ "óőóôŢěáôüň óáň ĺßíáé ęáíďíéęŢ."
-
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 ĺßíáé đńüăńáěěá ĺęęßíçóçň ăéá SPARC: Ěđďńĺß íá ĺęęéíŢóĺé \n"
-#~ "ôď GNU/Linux Ţ ďđďéďäŢđďôĺ Üëëď ëĺéôďőńăéęü őđÜń÷ĺé óôď óýóôçěÜ óáň. "
-#~ "ĘáíďíéęÜ, \n"
-#~ "ôá ĺđéđëÝďí ëĺéôďőńăéęÜ đńďóäéďńßćďíôáé ęáé ńőčěßćďíôáé óůóôÜ. ĹÜí áőôü "
-#~ "äĺí \n"
-#~ "óőíÝâç, ěđďńĺßôĺ íá đńďóčÝóĺôĺ ĺđéđëÝďí ĺđéëďăÝň óĺ áőôŢí ôçí ďčüíç. \n"
-#~ "ĐńďóÝîôĺ íá ĺđéëÝîĺôĺ ôéň óůóôÝň đáńáěÝôńďőň.\n"
-#~ "\n"
-#~ "Ěđďńĺßôĺ ĺđßóçň íá áđďęëĺßóĺôĺ ôçí đńüóâáóç óĺ Üëëá ëĺéôďőńăéęÜ óőóôŢěáôá "
-#~ "áöáéńţíôáň\n"
-#~ "ôéň áíôßóôďé÷ĺň ĺđéëďăÝň. Óĺ áőôŢí üěůň ôçí đĺńßđôůóç, čá ÷ńĺéáóôĺßôĺ "
-#~ "äéóęÝôôá ĺęęßíçóçň\n"
-#~ "ăéá íá ôá ÷ńçóéěďđďéŢóĺôĺ!"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Ďé ęýńéĺň ĺđéëďăÝň ôďő SILO ĺßíáé:\n"
-#~ " - ĹăęáôÜóôáóç bootloader: Ďńßćĺé ôď đďý čÝëĺôĺ íá ĺăęáôáóôáčďýí ďé "
-#~ "áđáńáßôçôĺň\n"
-#~ "ăéá ôçí ĺęęßíçóç ôďő GNU/Linux đëçńďöďńßĺň. Ĺęôüň ęé áí îÝńĺôĺ ôé áęńéâţň "
-#~ "ęÜíĺôĺ,\n"
-#~ "ĺđéëÝîôĺ \"Đńţôďň ôďěÝáň ôďő äßóęďő (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĘáčőóôÝńçóç đńéí ôçí ĺęęßíçóç: Ďńßćĺé ôá äÝęáôá ôďő äĺőôĺńďëÝđôďő\n"
-#~ "đďő ôď óýóôçěá čá đĺńéěÝíĺé đńéí ĺęęéíŢóĺé ôď đńţôď ëĺéôďőńăéęü.\n"
-#~ "Áőôü ĺßíáé óőíŢčůň ÷ńŢóéěď óĺ óőóôŢěáôá đďő ĺęęéíďýí áđü ôďí äßóęď\n"
-#~ "áěÝóůň ěĺôÜ ôçí ĺíĺńăďđďßçóç ôďő đëçęôńďëďăßďő. Äĺí őđÜń÷ĺé ęáčőóôÝńçóç\n"
-#~ "ĺÜí ď áńéčěüň đáńáëĺéöčĺß Ţ ĺßíáé ěçäÝí."
-
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Ôţńá đńÝđĺé íá ńőčěßóĺôĺ ôď X Window System, ôď ďđďßď ĺßíáé ď \n"
-#~ "đőńŢíáň ôďő ăńáöéęďý đĺńéâÜëëďíôďň (GUI) ôďő GNU/Linux. ĐńÝđĺé íá\n"
-#~ "ńőčěßóĺôĺ ôçí ęÜńôá ăńáöéęţí ęáé ôçí ďčüíç óáň. Ôď ěĺăáëýôĺńď\n"
-#~ "ěÝńďň ôçň äéáäéęáóßáň ĺßíáé áőôďěáôďđďéçěÝíď, ďđüôĺ ç óőěâďëŢ\n"
-#~ "óáň óőíßóôáôáé óôçí ĺđéâĺâáßůóç ęáé áđďäď÷Ţ ôůí áőôďěÜôůí \n"
-#~ "ńőčěßóĺůí :)\n"
-#~ "\n"
-#~ "\n"
-#~ "źôáí ďëďęëçńůčĺß ç äéáäéęáóßá ńýčěéóçň, čá îĺęéíŢóĺé ôď\n"
-#~ "X Window óýóôçěá (ĺęôüň ĺÜí ĺóĺßň áđďöáóßóĺôĺ áëëéţň), ăéá\n"
-#~ "íá ĺëÝăîĺôĺ ĺÜí ďé ńőčěßóĺéň óáň éęáíďđďéďýí. ĹÜí ü÷é, \n"
-#~ "ěđďńĺßôĺ íá ĺđéóôńÝřĺôĺ ĺäţ ęáé íá ĺđáíáëÜâĺôĺ ôéň ńőčěßóĺéň\n"
-#~ "üóĺň öďńÝň ÷ńĺéáóôĺß."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "ĹÜí ęÜôé äĺí đÜĺé ęáëÜ ěĺ ôéň ńőčěßóĺéň ôůí ×, ÷ńçóéěďđďéĺßóôĺ áőôÝň ôéň\n"
-#~ "ĺđéëďăÝň ăéá íá ńőčěßóĺôĺ óůóôÜ ôď ăńáöéęü đĺńéâÜëëďí (X Window System)."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "ĹÜí đńďôéěÜôĺ ĺęęßíçóç óĺ ăńáöéęü đĺńéâÜëëďí ĺđéëÝîôĺ \"Íáé\". Áëëéţň, \n"
-#~ "ĺđéëÝîôĺ \"ź÷é\"."
-
-#~ msgid ""
-#~ "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"
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ íá ĺđéëÝîĺôĺ Ýíá ĺđßđĺäď áóöÜëĺéáň ăéá ôď óýóôçěÜ óáň. Đáńáęáëţ "
-#~ "äéáâÜóôĺ ôď manual ăéá đëŢńĺéň\n"
-#~ " đëçńďöďńßĺň. ÂáóéęÜ, áí äĺí îÝńĺôĺ ôß íá ĺđéëÝîĺôĺ, ęńáôŢóôĺ ôçň "
-#~ "đńďęáčďńéóěÝíĺň ĺđéëďăÝň.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Ôď óýóôçěÜ óáň čá ĺđáíĺęęéíŢóĺé.\n"
-#~ "\n"
-#~ "ĚĺôÜ ôçí ĺđáíĺęęßíçóç, ôď íÝď óáň Mandrake Linux óýóôçěá čá îĺęéíŢóĺé\n"
-#~ "áőôüěáôá. ĹÜí čÝëĺôĺ íá ĺęęéíŢóĺôĺ Ýíá Üëëď őđÜń÷ďí ëĺéôďőńăéęü, "
-#~ "đáńáęáëţ\n"
-#~ "äéáâÜóôĺ ôéň ó÷ĺôéęÝň ďäçăßĺň."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "ÔóÝ÷éęď (ĐńďăńáěěáôéóôÝň)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Óëďâáęßáň (đńďăńáěěáôéóôÝň)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "źíďěá ôďő đńďößë ăéá äçěéďőńăßá:"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Ĺî' ďńéóěďý Runlevel"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "ÁđďčŢęĺőóç /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Ěďńöďđďßçóç üëůí"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "ĚĺôÜ ôçí ěďńöďđďßçóç üëůí ôůí ęáôáôěŢóĺůí,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "üëá ôá äĺäďěÝíá óĺ áőôÝň ôéň ęáôáôěŢóĺéň čá ÷áčďýí"
-
-#~ msgid "Reload"
-#~ msgstr "Ĺđáíáöüńôůóç"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "ČÝëĺôĺ íá äçěéďőńăŢóĺôĺ ěéá äéóęÝôôá áőôüěáôçň ĺăęáôÜóôáóçň ăéá "
-#~ "ęëůíďđďßçóç áőôŢň ôçň ĺăęáôÜóôáóçň;"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Ńőčěßóĺéň ADSL"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr "źíďěá áđďěĺěáęńőóěÝíçň ďőńÜň ëĺßđĺé!"
-
-#~ msgid ""
-#~ "Here you can specify any arbitrary command line into which the job should "
-#~ "be piped instead of being sent directly to a printer."
-#~ msgstr ""
-#~ "Ĺäţ ěđďńĺßôĺ íá ďńßóĺôĺ ěéá ăńáěěŢ ĺíôďëţí óôçí ďđďßá ç äéĺńăáóßá čá "
-#~ "äéáóůëçíţíĺôáé áíôß íá óôÝëíĺôáé ęáôĺőčĺßáí óôďí ĺęôőđůôŢ."
-
-#~ msgid "Command line"
-#~ msgstr "ĂńáěěŢ ĺíôďëţí"
-
-#~ msgid "A command line must be entered!"
-#~ msgstr "Ěéá ăńáěěŢ ĺíôďëţí đńÝđĺé íá ĺéóá÷čĺß!"
-
-#~ msgid "Enter Printer Name and Comments"
-#~ msgstr "ĹéóÜăĺôĺ ôď üíďěá ôďő ĺęôőđůôŢ ęáé ó÷üëéá"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Ôá đĺńéĺ÷üěĺíá ôďő áń÷ĺßďő ńőčěßóĺůí äĺí ěđďńďýí íá ěĺôáöńáóôďýí"
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Ěç áíáăíůńßóéěď áń÷ĺßď ńőčěßóĺůí"
-
-#~ msgid "Adapter"
-#~ msgstr "Adapter"
-
-#~ msgid "Disable network"
-#~ msgstr "Áđĺíĺńăďđďßçóç äéęôýďő"
-
-#~ msgid "Enable network"
-#~ msgstr "Ĺíĺńăďđďßçóç äéęôýďő"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Ĺđßâëĺřç Äéęôýďő"
-
-#~ msgid "Profile "
-#~ msgstr "Đńďößë "
-
-#~ msgid "Statistics"
-#~ msgstr "ÓôáôéóôéęÜ"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Ôá÷ýôçôá ÁđďóôďëŢň: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Ôá÷ýôçôá ËŢřçň: "
-
-#~ msgid "Logs"
-#~ msgstr "Logs"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Óýíäĺóç óôď äéáäßęôőď (internet)"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Áđďóýíäĺóç áđü ôď äéáäßęôőď (internet)"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Áđďóýíäĺóç áđü ôď äéáäßęôőď (internet) áđÝôő÷ĺ."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Áđďóýíäĺóç áđü ôď äéáäßęôőď (internet) ďëďęëçńţčçęĺ"
-
-#~ msgid "Connection complete."
-#~ msgstr "Ç óýíäĺóç ďëďęëçńţčçęĺ"
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Ç óýíäĺóç áđÝôő÷ĺ.\n"
-#~ "Ĺđéâĺâáéţóôĺ ôéň ńőčěßóĺéň óáň óôď ĘÝíôńď ĹëÝă÷ďő Mandrake."
-
-#~ msgid "sent: "
-#~ msgstr "áđďóôÜëčçęáí: "
-
-#~ msgid "received: "
-#~ msgstr "ĺëŢöčçóáí: "
-
-#~ msgid "average"
-#~ msgstr "ěÝóďň üńďň"
-
-#~ 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"
-#~ "\"Áęýńůóç\" ęáé ĺđéëÝîôĺ Üëëďí ďäçăü."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Óýíäĺóç DSL (Ţ ADSL)"
-
-#~ msgid "Choose"
-#~ msgstr "ĹđéëďăŢ"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "Ěđďńĺßôĺ íá äţóĺôĺ ęáôĺőčĺßáí ôď URI ăéá đńüóâáóç óôďí ĺęôőđůôŢ ěÝóů CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Íáé, óôĺßëĺ äďęéěáóôéęŢ óĺëßäá ASCII"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Íáé, óôĺßëĺ äďęéěáóôéęŢ óĺëßäá PostScrip"
-
-#~ msgid "Yes, print both test pages"
-#~ msgstr "Íáé, óôĺßëĺ ęáé ôéň äýď äďęéěáóôéęÝň óĺëßäĺň"
-
-#~ msgid "Paper Size"
-#~ msgstr "ĚÝăĺčďň ÷áńôéďý"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "ÁđďâďëŢ ÷áńôéďý ěĺ ôď đÝńáň ôçň ĺęôýđůóçň;"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "ĹđéëďăÝň ďäçăďý Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "ĹđéëďăÝň âÜčďőň ÷ńţěáôďň"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Ĺęôýđůóç ęĺéěÝíďő óáí PostScript;"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Äéüńčůóç ęĺéěÝíďő-óęÜëáň;"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Áńéčěüň óĺëßäůí áíÜ óĺëßäĺň ĺîüäďő"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "ÁńéóôĺńÜ/äĺîéÜ đĺńéčţńéá óĺ óôéăěÝň (1/72 ôçň ßíôóáň)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "ĐÜíů/ęÜôů đĺńéčţńéá óĺ óôéăěÝň (1/72 ôçň ßíôóáň)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "ĹđéđëÝďí ĺđéëďăÝň GhostScript"
-
-#~ msgid "Extra Text options"
-#~ msgstr "ĹđéđëÝďí ĺđéëďăÝň ęĺéěÝíďő"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Áíôßóôńďöç óĺéńÜ óĺëßäůí;"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Ôńüđďň óýíäĺóçň áđďěĺěáęńőóěÝíďő ĺęôőđůôŢ"
-
-#~ 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"
-#~ "ĺäţ. Ďé ĺęôőđůôÝň čá áíáăíůńéóôďýí áőôüěáôá. Áí Ý÷ĺôĺ áěöéâďëßá, "
-#~ "ĺđéëÝîôĺ\n"
-#~ "\"ĹîőđçńĺôçôŢ CUPS\"."
-
-#~ 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 ""
-#~ "ĘÜčĺ ĺęôőđůôŢň ÷ńĺéÜćĺôáé Ýíá üíďěá (ăéá đáńÜäĺéăěá lp). Ěđďńďýí ĺđßóçň "
-#~ "íá \n"
-#~ "ďńéóôďýí Üëëĺň đáńÜěĺôńďé üđůň đĺńéăńáöŢ Ţ ç ôďđďčĺóßá. Ôé üíďěá íá \n"
-#~ "ďńßóů ăé áőôüí ôďí ĺęôőđůôŢ ęáé đţň ĺßíáé óőíäĺäĺěÝíďň ď ĺęôőđůôçň;"
-
-#~ 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 ""
-#~ "ĘÜčĺ ďőńÜ ĺęôőđůôŢ (óôçí ďđďßá óôÝëíďíôáé ďé ĺęôőđţóĺéň) ÷ńĺéÜćĺôáé\n"
-#~ "Ýíá üíďěá (óő÷íÜ lp) ęáé Ýíáí ęáôÜëďăď. Ôé üíďěá ęáé ęáôÜëďăď íá \n"
-#~ "ďńßóů ăé áőôŢí ôçí ďőńÜ ĺęôőđůôŢ ęáé đţň ĺßíáé óőíäĺäĺěÝíďň ď ĺęôőđůôçň;"
-
-#~ msgid "Name of queue"
-#~ msgstr "źíďěá ďőńÜň"
-
-#~ msgid "Spool directory"
-#~ msgstr "ĘáôÜëďăďň"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "DNS 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "DNS 2"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
deleted file mode 100644
index 431df175c..000000000
--- a/perl-install/share/po/eo.po
+++ /dev/null
@@ -1,11770 +0,0 @@
-#
-# MESAŘOJ DE DrakX
-# D. Dale Gulledge <dsplat@rochester.rr.com>, 2000
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-08-02 22:36-0500\n"
-"Last-Translator: D. Dale Gulledge <dsplat@rochester.rr.com>\n"
-"Language-Team: Esperanto <eo@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-3\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Plur-ekrana konfiguraźo"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafika karto"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Elektu grafikan karton"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Elektu X servilon"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X servilo"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Elektu X servilon"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X servilo"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Kiun konfiguron de XFree vi deziras havi?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
-"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Vi povas havi 3D aparatan akceladan subtenon kun XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s kun 3D aparata akcelado"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
-"NOTU KE ĆI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN KOMPUTILON."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s kun EKSPERIMENTA 3D aparata akcelado"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
-"NOTU KE ĆI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN "
-"KOMPUTILON.\n"
-"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree Konfigurado"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Elektu memorkapaciton de via grafika karto"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Elektu opciojn por servilo"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Elektu ekranon"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Ekrano"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"La du gravegaj parametroj estas la vertikala refreţigrapido (vertical\n"
-"refresh rate) kiu estas la rapido por refreţigi la tutan ekranon, kaj\n"
-"plej grave la horizontala sinkronrapido (horizontal sync rate), kiu estas\n"
-"la rapido por montri skanliniojn.\n"
-"\n"
-"Ři estas TRE GRAVA ke vi ne elektas specon de ekrano kiu havas\n"
-"sinkronamplekson kiu estas preter la kapabloj de via ekrano: vi eble\n"
-"difektus vian ekranon. Se vi dubas, elektu zorgeman opcion."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Horizontala sinkronrapido (horizontal sync rate)"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Vertikala refreţigrapido (vertical refresh rate)"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Ekrano ne estas konfigurata"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafika karto ne jam konfigurita"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Vi ne jam elektas distingivojn"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Averto: provado de ći tiu grafika karto eble svenigos vian komputilon"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Provu konfiguraźon"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"penu ţanři iom da parametroj"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Eraro okazis:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Mi eliros post %d sekundoj"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ću tio ći pravas?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Eraro okazis, penu ţanři iom da parametroj"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Distingivo"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Elektu distingivon kaj kolorprofundon"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Grafika karto: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 servilo: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Plu"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Jeso"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Spertula Modalo"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Montru tuton"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Distingivoj"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Klavara aranřo: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Speco de muso: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Musaparato: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Ekrano: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Ekrana horizontala sinkronrapido (horizontal sync rate): %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Ekrana vertikala refreţigrapido (vertical refresh rate): %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Grafika karto: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Grafika karto: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Graifka memoro: %s KB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Kolorprofuneco: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Distingivo: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 servilo: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 pelilo: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Preparas X-Fenestran konfiguraźon"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Kion vi deziras fari?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Ţanřu Ekranon"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ţanřu Grafika karto"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Ţanřu Servilajn opciojn"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Ţanřu distingivon"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Montru informon"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Provu denove"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Ćesu"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Ću vi deziras teni la ţanřojn?\n"
-"Nuna konfiguro estas:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X Fenestro će komenco"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Mi povas konfiguri vian komputilon tiel ke ři aýtomate lanćos X kiam ři\n"
-"ekfunkcias. Ću vi deziras ke X aýtomate lanćos?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Bonvolu resaluti en %s-n por aktivigi la ţanřojn."
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-"Bonvole adiaýu kaj sekve uzu Kontrol-Alt-Retropaţo (Ctrl-Alt-Backspace)."
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 koloroj (8 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil koloroj (15 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil koloroj (16 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milionoj koloroj (24 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardoj koloroj (32 bitoj)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB aý pli"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Normala VGA, 640x480 će 60 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Supera VGA, 800x600 će 56 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr ""
-"8514 kongrua karto, 1024x768 će 87 hercoj (Hz) interplektita (neniu 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr ""
-"Supera VGA, 1024x768 će 87 hercoj (Hz) interplektita, 800x600 će 56 hercoj"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Etendita Supera VGA, 800x600 će 60 hercoj (Hz), 640x480 će 72 hercoj"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr ""
-"Neinterplektita Supera VGA, 1024x768 će 60 hercoj (Hz), 640x480 će 72 hercoj"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Altfrekvenca Supera VGA, 1024x768 će 70 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Plurfrekvenca kiu povas fari 1024x768 će 60 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Plurfrekvenca kiu povas fari 1280x1024 će 74 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Plurfrekvenca kiu povas fari 1280x1024 će 76 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Ekrano kiu povas fari 1600x1200 će 70 hercoj (Hz)"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Ekrano kiu povas fari 1600x1200 će 76 hercoj (Hz)"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Unua sektoro de starta subdisko"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Unu sektoro de drajvo (ĆefStartRikordo)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO Instalado"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Kie vi deziras instali la startţargilon?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/grub Instalado"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr ""
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr ""
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr ""
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr ""
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr ""
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Startţargilo ćefaj opcioj"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Startţargilo por uzi"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Startţargila instalado"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Starta aparato"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ne funkcias kun malnovaj BIOSoj)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Kompakta"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "kompakta"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Grafika reřimo"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Prokrastoperiodo antaý starti defaýltan sistemon"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Pasvorto"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Pasvorto (denove)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Limigu komandliniajn opciojn"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "limigu"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Purigu /tmp dum ćiuj startadoj"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Preciza kvanto de memoro se bezonata (trovis %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Ebligu multoblajn profilojn"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Donu kvanton de memoro en MB"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Opcio ``Limigu komandliniajn opciojn'' ne estas utila sen pasvorto"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Bonvole provu denove"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "La pasvortoj ne egalas"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr ""
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr ""
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr ""
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Defaýlta Mastruma Sistemo?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Jen la diversaj enskriboj.\n"
-"Vi povas aldoni pli aý ţanři la ekzistantajn."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Aldonu"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Finata"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Ţanřu"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Kiun specon de enskribo vi deziras aldoni"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linukso"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Alia Mastruma Sistemo (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Alia Mastruma Sistemo (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Alia Mastruma Sistemo (Vindozo...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Kerna bildo"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Radiko"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Alfiksu"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Lega-skriba"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabelo"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Danřera"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Etikedo"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Defaýlta"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd-grandeco"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr ""
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Forigu enskribon"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Malplena etikedo ne estas permesata"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Vi devas havi interţanřan subdiskon"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Ći tiu etikedo estas jam uzata"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Trovis %s %s interfacojn"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Ću vi havas alian?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Ću vi havas iun %s interfacon?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Ne"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Jes"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Vidu hardvaran informon"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instalas pelilon por %s karto %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modulo %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Kiun %s pelilon devus mi provi?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Iuokaze, la %s pelilo bezonas havi aldonan informon por řuste funkcii,\n"
-"kvankam ři normale funkcias bone sen la informo. Ću vi deziras specifi\n"
-"aldonajn opciojn por ři aý permesi al la pelilo esplori vian komputilon\n"
-"por la informo ři bezonas? Kelkfoje, esplori svenas komputilon, sed\n"
-"ři ne devus kaýzi difekton."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Aýtomate esploru"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Specifu opciojn"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Nun vi povas provizi řiajn opciojn al modulo %s.\n"
-"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
-"Ekzemple, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modulaj opcioj:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Ţargado de modulo %s malsukcesis.\n"
-"Ću vi deziras trovi denove kun aliaj parametroj?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(jam aldonis %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Ći tiu pasvorto estas tro simpla"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Bonvole donu salutnomon"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Ći tiu salutnomo estas jam aldonita"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Aldonu uzanto"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Enigu uzanton\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Akceptu uzanto"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Vera nomo"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Salutnomo"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Ţelo"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Piktogramo"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Aýtomata-enregistrado"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Mi povas konfiguri vian komputilon por aýtomate enregistri unu uzulon kiam\n"
-"ři startas. Se vi ne deziras uzi ći tion, alklaku la `Nuligu' butonon."
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Elektu la defaýltan uzulon:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Elektu la fenestro-administrilon por lanći:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Bonvole, elektu lingvon por uzi."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr ""
-"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaý la instalado"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Ćiuj"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Aldonu uzulon"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Akomodata"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "CUPS startas"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"Ći tiu pakaźo devus esti promociata.\n"
-"Ću vi certas ke vi deziras malelekti řin?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Nuligu"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Bonvenon Al Rompistoj"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Malbona"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Laýnorma"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Alta"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Alta"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoja"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"vi devus uzi ći tiun nivelon zorge. Ři faras vian komputilon pli facila\n"
-"por uzi, sed delikatega: vi devus neniam uzi ři surrete.\n"
-"Ři ne havas pasvortojn."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Pasvortoj nun estas ebligataj, sed uzado kiel reta komputilo estas ankoraý\n"
-"ne rekomendita."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Ći tiu estas la normala sekureco rekomendata por komputilo kiu estos uzata\n"
-"por konekti al la Interreto kiel kliento. Nun estas sekurecaj kontroloj."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Kun ći tiu sekurnivelo, uzado de ći tiu komputilo kiel servilo ebliřas.\n"
-"La sekureco nun estas sufiće alta por uzi la sistemon kiel servilo kiu\n"
-"akceptas konektojn de multaj klientoj."
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Ni uzas aspektojn de la kvara nivelo, sed nun la komputilo estas tute\n"
-"malfermita. Sekurecaj aspektoj estas će iliaj maksimumoj."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Elektu sekurnivelon?"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Elektas sekurnivelon"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Elektu opciojn por servilo"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Bonvenon al %s, la mastruma sistema elektilo!\n"
-"\n"
-"Elektu mastruman sistemon de la supra listo aý\n"
-"atendu dum %d sekundoj por defaýlta starto.\n"
-"\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Bonvenon al GRUB la elektilo por mastrumaj sistemoj!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Uzu la %c kaj %c klavoj por elekti kiun enskribon estas emfazata."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr ""
-"Premu la enenklavon por starti la elektatan mastruman sistemon, 'e' por\n"
-"redakti la"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "ordonoj antaux startado, aux 'c' por uzi komandan linion."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "La emfazata enskribo startos auxtomate post %d sekundoj."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "mankas sufiće da spaco en /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Desktop"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Start Menu"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Kie vi deziras instali la startţargilon?"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr ""
-
-#: ../../bootlook.pm_.c:62
-#, fuzzy
-msgid "Boot Style Configuration"
-msgstr "Post-instala konfigurado"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Dosiero"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Dosiero/_Eliru"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>E"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "NovStila Ekrano"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Tradicia Ekrano"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Tradicia Gtk+ Ekrano"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr ""
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub modalo"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot modalo"
-
-#: ../../bootlook.pm_.c:104
-#, fuzzy, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr "Disdividado de Interreta Konekto"
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Konfiguru"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Sistema modalo"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr ""
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr ""
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "Jes"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutoj"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minuto"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekundoj"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Mi ne povas aldoni plu da subdiskoj"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaý la instalado"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "France"
-msgstr "Franca"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Belga"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-#, fuzzy
-msgid "Germany"
-msgstr "Germana"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Greka"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Norvega"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Sveda"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Itala"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "seria"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Bonvolu fari rezervan kopion de via dateno antaýe"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Legu zorge"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Se vi intencas uzi \"aboot\", zorgu lasi liberan spacon (2048 sektoroj "
-"sufićas)\n"
-"će la komenco de la disko"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Eraro"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Sorćisto"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Elektu agon"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Vi havas unu grandan FAT subdiskon.\n"
-"(řenerale uzata de MicroSoft DOS/Vindozo).\n"
-"Mi sugestas ke vi unue regrandecigi tiun subdiskon\n"
-"(klaku sur řin, kaj poste klaku sur \"Regrandecigu\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Bonvolu klaki sur subdiskon"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detaloj"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "2a Etendata (Ext2)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "Dosierlokigtabelo (FAT)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "muntado malsukcesis"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Interţanřa"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Malplena"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Alia"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Specoj de dosiersistemoj:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Kreu"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tipo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Uzu ``%s'' anstataýe"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Forigu"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Uzu ``Malmuntu'' antaýe"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Post vi ţanřas la specon de subdisko %s, ćiuj datenoj en ći tiu subdisko "
-"estos\n"
-"perdata"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Elektu agon"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Kreu novan subdiskon"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "2a Etendata (Ext2)"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Ţanřu al Spertula reřimo"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Ţanřu al Normala reřimo"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Malfaru"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Ću mi devus daýri malgraýe?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Ću eliru sen konservi"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Ću eliru sen skribi la subdisktabelon?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Aýtomate disponigu"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Forviţu ćion"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Detektado de fiksdisko(j)"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Ćiuj el la subdiskoj estas uzata"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Mi ne povas aldoni plu da subdiskoj"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Por havi plu da subdiskoj, bonvole forigu unu por povi krei etendigitan\n"
-"subdiskon"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Skribu subdiskotabelon"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Sava subdiskotabelo"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Sava subdiskotabelo"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Sava subdiskotabelo"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Aýtomata muntado de demetebla medio"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Elektu dosieron"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"La rezerva subdisktabelo ne estas la sama grandeco\n"
-"Ću daýras tamen?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Averto"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Enţovu disketon en drajvo\n"
-"Ćiuj datenoj sur tiu disketo estos perdata"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Provas savi subdisktabelon"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "Montru informon"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Surmetingo"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Opcioj"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Regrandecigu"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Movu"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatu"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Muntu"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Aldonu al RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Aldonu al LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Malmuntu"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Forigu de RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Forigu de LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Ţanřu RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Uzu por retrokonektado"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Kreu novan subdiskon"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Komenca sektoro: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Grandeco en MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Speco de dosiersistemo: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Surmetingo: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Prefero: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Formatas retrokonektan dosieron %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Ţanřu subdiskspecon"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Kiun dosierosistemo vi deziras uzi?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Kie vi deziras munti retrokonektan dosieron %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Kie vi deziras munti aparato %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Ne povas malfiksi surmetingon ćar ći tiu subdisko estas uzata por\n"
-"retrokonektado. Unue forigu la retrokonektadon."
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Kalkulas FAT dosiersistemajn limojn"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Regrandecigas"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Ći tiu subdisko ne estas regrandecigebla"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Ćiuj datenoj en ći tiu subdisko devus esti rezervata"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Post vi regrandecigas subdiskon %s, ćiuj datenoj en ći tiu subdisko estos\n"
-"perdata"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Elektu la novan grandecon"
-
-#: ../../diskdrake/interactive.pm_.c:622
-#, fuzzy
-msgid "New size in MB: "
-msgstr "Grandeco en MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Al kiu disko vi deziras movi?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektoro"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Al kiu sektoro vi deziras movi?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Movante"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Movas subdisko..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "nova"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr ""
-"Elektu ekzistantan RAID (Redundanca Aro de Malmultekostaj Diskoj) por\n"
-"aldoni al"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Vi ne povas uzi ći tiun subdiskon por retrokonektado"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Retrokonektado"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Retrokonekta dosieronomo: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Vera nomo"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Alia retrokonektado jam uzas tiun dosieron, elektu alian"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Dosiero jam ekzistas. Ću vi deziras uzi řin?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-#, fuzzy
-msgid "Mount options"
-msgstr "Modulaj opcioj:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "aparato"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "nivelo"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "grandeco de pecoj"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Zorgu: ći tiu operacio estas danřera."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Kiun specon de subdiskado?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Bedaýrinde mi ne kreas /boot tiom longe sur la drajvon (će cilindro > "
-"1024).\n"
-"Aý vi uzos LILO kaj ři ne funkcios, aý vi ne uzos LILO kaj vi ne bezonas\n"
-"/boot."
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"La subdiskon vi elektis por aldoni kiel la radiko (root, /) estas fizike\n"
-"situanta preter la 1024a cilindro de la drajvo, kaj vi ne havas /boot\n"
-"subdiskon. Se vi intencas uzi la LILO startadministranto, zorgu aldoni\n"
-"/boot subdiskon."
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Vi elektis softvaran RAID-an subdiskon por la radika dosiersistemo (/).\n"
-"Neniu startţargilo povas trakti tiun sen /boot subdisko.\n"
-"Do zorgu aldoni /boot subdiskon."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "La subdisktabelo de drajvo %s estos skribata al disko!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Vi bezonos restarti antaý ol la ţanřo povas efektiviři"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Post vi formatas la subdiskon %s, ćiuj datenoj en ći tiu subdisko estos\n"
-"perdata"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formatas"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formatas retrokonektan dosieron %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formatas subdiskon %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid malsukcesis"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Mankas sufićan da libera spaco por disponigi novajn subdiskojn"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Mankas sufićan da libera spaco por disponigi novajn subdiskojn"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Distingivo: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Aparato: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS-a diskingolitero: %s (nur konjekto)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Speco: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Nomo: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Komenco: sektoro %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Grandeco: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektoroj"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "De cilindro %d al cilindro %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formatita\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Ne formatita\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Muntita\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID (Redundanca Aro de Malmultekostaj Diskoj) md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Retrokonekta(j) dosiero(j): %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Subdisko startata defaýlte\n"
-" (por MS-DOS starto, ne por \"lilo\")\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Nivelo %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Grandeco de pecoj %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Retrokonekta dosieronomo: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Grandeco: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometrio: %s cilindroj, %s kapoj, %s sektoroj\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Informo: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Subdiskotabelospeco: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "će buso %d identigaźo %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Opcioj: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Speco de dosiersistemo: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Ći tiu pasvorto ests tro simpla (ři devas esti almenaý %d signoj longa)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "La pasvortoj ne egalas"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "Ţanřu subdiskspecon"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Bonvolu klaki sur subdiskon"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "DNA servilo"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatado de %s malsukcesis"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "ne scias kiel formati %s kiel speco %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "eraro dum malmunti %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "simpla"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "servilo"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Vi ne povas uzi JFS por subdisko pli malgranda ol 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Vi ne povas uzi ReiserFS por subdisko pli malgranda ol 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Surmetingoj devas komenci kun antaýa /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Jam estas subdisko kun surmetingo će %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Ći tiu dosierujo devus resti interne de la radika dosierosistemo (/)"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-
-#: ../../fsedit.pm_.c:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Mankas sufićan da libera spaco por disponigi novajn subdiskojn"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Eraro dum malfermado de %s por skribi: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Eraro okazis - neniuj validaj aparatoj estis trovata sur kiuj vi povas krei "
-"novajn dosiersistemojn. Bonvolu kontroli vian ekipaźon por la kaýzo de ći "
-"tiu problemo."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Vi ne havas iujn ajn subdiskojn!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-#, fuzzy
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Nun vi povas elekti kiujn servojn vi deziras starti kiam vi startas\n"
-"vian komputilon. Kiam via muso estas supre de ero, malgranda balono\n"
-"ekaperas por helpi vin. Ři priskribas la rolon de la servo.\n"
-"\n"
-"Zorgegu en ći tiu paţo se vi intencas uzi vian komputilon kiel servilo:\n"
-"ne startu servojn kiujn vi ne deziras uzi."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr ""
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-#, fuzzy
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Bonvolu elekti la řustan pordon. Ekzemple, la COM1-a\n"
-"pordo sub MS Vindozo estas nomata ttyS0 sub GNU/Linukso."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (la Linuksa Ţargilo) kaj Grub estas startţargiloj: ili povas starti\n"
-"aý GNU/Linukson aý iun ajn mastruman sistemon ćeestanta će via komputilo.\n"
-"Normale, ći tiuj aliaj mastrumaj sistemoj estas řuste detektata kaj\n"
-"instalada. Se tiel ne estas, vi povas aldoni enskribon mane per ći tiu\n"
-"ekrano. Zorgu elekti la řustajn parametrojn.\n"
-"\n"
-"\n"
-"Eble vi ankaý ne deziras doni atingon al ći tiuj aliaj mastrumaj sistemoj\n"
-"al iu ajn. Ćiokaze vi povas forstreki la respondajn enskribojn. Sed\n"
-"ćiokaze, vi bezonos startdiskon por starti ilin!"
-
-#: ../../help.pm_.c:722
-#, fuzzy
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Vi bezonas indiki kie vi deziras meti la informon postulata\n"
-"por starti GNU/Linukson.\n"
-"\n"
-"\n"
-"Krom se vi scias precize kion vi faras, elektu \"Unua sektoro de\n"
-"drajvo (MBR)\""
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX provos serći PCI-a(j)n SCSI-a(j)n adaptilo(j)n\n"
-"Se DrakX trovas SCSI-an adaptilon kaj scias kiun pelilon ři devas uzi\n"
-"ři aýtomate instalos řin (aý ilin).\n"
-"\n"
-"Se vi havas neniom da SCSI-aj adaptiloj, ISA-an SCSI-an adapilon, aý\n"
-"PCI-an SCSI-an adaptilon kiun DrakX ne rekonas DrakX demandos al vi\n"
-"se vi havas SCSI-an adaptilon sur via komputilo. Se vi ne havas adaptilon\n"
-"vi povas nur klaki 'Ne'. Se vi klakos 'Jes', DrakX montros al vi liston de\n"
-"peliloj. Vi povos elekti vian specifan pelilon de la listo.\n"
-"\n"
-"\n"
-"Se vi devas permane elekti vian adaptilon, DrakX demandos\n"
-"ću vi deziras specifi opciojn por ři. Vi devus permesi al DrakX\n"
-"esplori la aparaton por la opcioj. Ći tiu kutime bone funkcias.\n"
-"\n"
-"Se ne, vi bezonos provizi opciojn al la pelilo.\n"
-"Reviziu la Instalgvidlibron por sugestoj pri ekstrakado de ći tiu\n"
-"informo de Vindozo (se vi havas řin sur via komputilo),\n"
-"de dokumentaźo de aparato, aý de la TTT-ejo de la fabrikanto\n"
-"(se vi havas atingon al la reto)."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr ""
-
-#: ../../install_any.pm_.c:793
-#, fuzzy, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Enţovu disketon en drajvo %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr ""
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Eraro legante dosiero %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Iuj aparatoj sur via komputilo bezonas \"proprietajn\" pelilojn por "
-"funkcii.\n"
-"Vi povas trovi iun informon pri ili će: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Vi devas havi radikan subdiskon.\n"
-"Por ći tiu, kreu subdiskon (aý klaku estantan).\n"
-"Sekve elektu la agon \"Surmetingo\" kaj faru řin '/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Vi devas havi interţanřan subdiskon"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Vi ne havas interţanřan subdiskon\n"
-"\n"
-"Ću vi deziras daýri tamen?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Vi devas havi interţanřan subdiskon"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Uzu liberan spacon"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Mankas sufićan da libera spaco por disponigi novajn subdiskojn"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Uzu ekzistantajn subdiskojn"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Ne ekzistas subdiskojn por uzi"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Uzu la Vindoza subdiskon por retrokonektado"
-
-#: ../../install_interactive.pm_.c:112
-#, fuzzy
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Kiun subdiskon vi deziras uzi por meti Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Elektu la grandecojn"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Radikosubdiska grandeco en MB: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Interţanřa subdiska grandeco en MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Kiun subdiskon vi deziras regrandecigi?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Kalkulas Vindozajn dosiersistemajn limojn"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"La regrandecigilo por la FAT (Dosiero-Atingo-Tablo) ne povas trakti\n"
-"vian subdiskon, la sekvanta eraro okazis: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Via Vindoza subdisko estas tro fragmentigata, bonvole uzu ``defrag'' antaýe"
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"AVERTO!\n"
-"\n"
-"DrakX nun regrandecigas vian Vindozan subdiskon. Zorgu: ći tiu operacio "
-"estas\n"
-"danřera. Se vi ne jam faris řin, vi devus antaýe eliru el la instalado, "
-"uzi\n"
-"\"scandisk\" sub Vindozo (kaj laývole \"defrag\"), kaj sekve relanću la\n"
-"instaladon. Ankaý vi devus fari rezervan kopion de via dateno.\n"
-"Kiam vi estas certa, klaku \"Jeso\"."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Kiun grandecon vi deziras teni por Vindozo?"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "subdisko: %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Regrandeciřo de FAT malsukcesis: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Ne ekzistas FAT-ajn (Dosiero-Atingo-Tablo) subdiskojn por regrandecigi\n"
-"aý uzi kiel retrokonektaj subdiskoj (aý ne estas sufića da spaco)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Forviţu la tutan diskon"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Forigu Vindozon"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Vi havas pli ol unu fiksdisko, sur kiu vi deziras instali Linukson?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"Ćiuj ekzistantaj subdiskoj kaj iliaj datenoj estos perdata sur drajvo %s"
-
-#: ../../install_interactive.pm_.c:190
-#, fuzzy
-msgid "Custom disk partitioning"
-msgstr "Uzu ekzistantajn subdiskojn"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Uzu fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Nun vi povas dispartigi %s.\n"
-"Kiam vi finiřos, ne forgesu savi kun `w'."
-
-#: ../../install_interactive.pm_.c:226
-#, fuzzy
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-
-#: ../../install_interactive.pm_.c:242
-#, fuzzy
-msgid "I can't find any room for installing"
-msgstr "Mi ne povas aldoni plu da subdiskoj"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "La Dispartigsorćilo de DrakX trovis ći tiujn solvojn:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Dispartigado malsukcesis: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Startado de la reto"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Haltas de la reto"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Eraro okazis, sed mi ne scias kiel trakti řin bone.\n"
-"Daýri je via propra risko."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duobla surmetingo %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Iuj gravaj pakaźoj ne estis taýge instalata.\n"
-"Aý via KDROM drajvo aý via KDROM disko estas difektita.\n"
-"Kontrolu la KDROM sur instalata komputilo per\n"
-"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Bonvenon al %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Neniu disketilo havebla"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Eniras paţon `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Via sistemo havas malmulte da risurcoj. Eble vi havos problemojn pri\n"
-"instali Linuks-Mandrejkon. Se tio okazos, vi povos anstataý provi tekstan\n"
-"instaladon. Por ći tio, premu `F1' kiam vi startas de KDROM, kaj sekve\n"
-"tajpu `text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Instalklaso"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Bonvole, elektu unu el la sekvantaj specoj de instalado:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "La totala grandeco de la grupoj vi elektis estas proksimume %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Se vi volas instali malpli ol ći tiu grandeco,\n"
-"elektu la procenton el la pakaźoj kiuj vi deziras instali.\n"
-"\n"
-"Malalta procento instalos nur la plej gravajn pakaźojn;\n"
-"100%% instalos ćiujn pakaźojn."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Vi havas spacon će via disko por nur %d%% da ći tiuj pakaźoj.\n"
-"\n"
-"Se vi deziras instali malpli ol tiom,\n"
-"elektu la procenton el la pakaźoj kiun vi deziras instali.\n"
-"Malalta procento instalos nur la plej gravajn pakaźojn;\n"
-"%d%% instalos tiom pakaźojn kiom eblajn."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Vi povos elekti ilin pli precize en la sekvanta paţo."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procento da pakaźoj por instali"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Elektado de Pakaźaj Grupoj"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Elektado de individuaj pakaźoj"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Tuta grandeco: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Malbona pakaźo"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Nomo: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versio: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Grandeco: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Graveco: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Vi ne povas elekti ći tiun pakaźon ćar ne estas sufiće da spaco por instali\n"
-"řin."
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "La sekvaj pakaźoj estos instalataj"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "La sekvaj pakaźoj estos malinstalataj"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Vi ne povas elektu/malelektu ći tiun pakaźon"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Ći tiu estas deviga pakaźo, vi ne povas malelekti řin"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Vi ne povas malelekti ći tiun pakaźon. Ři estas jam instalita."
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Ći tiu pakaźo devus esti promociata.\n"
-"Ću vi certas ke vi deziras malelekti řin?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Vi ne povas malelekti ći tiun pakaźon. Ři devus esti promociata."
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Instalu"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Ţargu/Konservu sur disketo"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Elektado de individuaj pakaźoj"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "Eliru instalprogramon"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Elektu la pakaźojn kiuj vi deziras instali"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Instalanta"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Taksas"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Tempo restanta "
-
-#: ../../install_steps_gtk.pm_.c:528
-#, fuzzy
-msgid "Please wait, preparing installation"
-msgstr "Preparas instaladon"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pakaźoj"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Instalanta pakaźo %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Akceptu"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Malakceptu"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Ţanřu vian KDROM!\n"
-"\n"
-"Bonvole, enţovu la KDROM-on etikedatan \"%s\" en via drajvo kaj klaku \"Jes"
-"\"\n"
-"kiam vi finos.\n"
-"Se vi ne havas řin, klaku \"Nuligu\" por eviti la instaladon de ći tiu KDROM."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Ću vi deziras daýri tamen?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Estis eraro ordigi pakaźojn:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Estis eraro dum instalado de pakaźoj:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Eraro okazis"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Licenca kontrakto"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Klavaro"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Bonvole, elektu vian klavaran aranřon."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Kiun instalklaso deziras vi?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Instalu/Řisdatigu"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Ću tiu ći estas instalado aý řisdatigado?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Rekomendata"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Spertulo"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Řisdatigu"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Elektado de individuaj pakaźoj"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Bonvole, elektu la specon de via muso."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Muspordo"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfiguras PCMCIA kartojn..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Konfiguras IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "neniuj haveblaj subdiskoj"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Elektu surmetingojn"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Mi ne povas legi vian subdisktabelon, ři estas tro difektita por mi :(\n"
-"Mi povas peni daýri per blankigi difektitajn subdiskojn (ĆIOM DA DATUMO\n"
-"pereos!). La alia solvo estas malpermesi al DrakX ţanři la subdisktabelon.\n"
-"(la eraro estas %s)\n"
-"\n"
-"Ću vi konsentas perdi ćiujn subdiskojn?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake malsukcesis řuste legi la subdisktabelon.\n"
-"Daýri je via propra risko!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Radikosubdisko"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Kiu estas la radikosubdisko (/) će via sistemo?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Vi bezonas restarti por la ţanřoj al la subdisktabelo efektivigi"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Ću kontrolas malbonajn blokojn?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formatas subdiskojn"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Kreas kaj formatas dosieron %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Nesufića interţanřospaco por plenumi instalado, bonvolu aldoni iom"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Serćas haveblajn pakaźojn"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Trovadas pakaźojn por promocii"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Via komputilo ne havas sufiće da spaco por instalado aý promocio (%d > %d)."
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Kompleta (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimuma (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Rekomendata (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Ţargu de disketo"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Ţargas de disketo"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Elektado de Pakaźoj"
-
-#: ../../install_steps_interactive.pm_.c:578
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "Enţovu disketon en drajvo %s"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Konservu sur disketo"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Se vi havas ćiujn de la KDROM-oj en la listo sube, klaku \"Jes\".\n"
-"Se vi havas neniujn de ći tiuj KDROM-oj, klaku \"Nuligu\".\n"
-"Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku \"Jes"
-"\"."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "KDROM etikedata \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Preparas instaladon"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Instalas pakaźo %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Post-instala konfigurado"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Enţovu disketon en drajvo %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Enţovu malplenan disketon en drajvo %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Nun vi havas la ţancon elţuti softvaron por ćifrado.\n"
-"\n"
-"AVERTO:\n"
-"\n"
-"Pro malsamaj řeneralaj kondićoj aplikeblaj al ći tiu softvaro kaj trudata\n"
-"de diversaj jurisdikcioj, la kliento kaj/aý fina uzanto de tiu softvaro\n"
-"devus certigi ke la leřoj de lia/ilia jurisdikcio permesas li/ili elţuti,\n"
-"stoki kaj/aý uzi tiun softvaron.\n"
-"\n"
-"Plue, la kliento kaj/aý fina uzanto scios specife atentos ne malobei la\n"
-"leřojn de lia/ilia jurisdikcio. Se la kliento kaj/aý la fina uzanto\n"
-"malobeas tiujn aplikeblajn leřojn, li/ili altiros sur sin gravajn "
-"sankciojn.\n"
-"\n"
-"Neniuokaze aý Mandrakesoft aý řiaj fabrikistoj responsigos por specialaj,\n"
-"nerektaj aý hazardaj reparacioj kiuj ajn (inkluzive, sed ne limigite al\n"
-"perdo de profitoj, interrompo de komerco, perdo de komerca dateno kaj\n"
-"aliaj monaj malprofitoj, kaj rezultaj ţuldoj kaj indemizo pagenda konforme\n"
-"al prijuřo) rezulte el uzado, posedado, aý sole elţutado de tiu softvaro, "
-"al\n"
-"kiu la kliento kaj/aý fina uzanto ne povis atingi post subskribi la nunan\n"
-"kontrakton.\n"
-"\n"
-"Por iuj demandoj rilate al tiu kontrakto, bonvole demandu de\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaźoj"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Elektu spegulon de kiu havigi la pakaźojn"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaźoj"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "kio estas vian horzonon?"
-
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "Ću via hardvara horlořo estas řustigata en GMT?"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP Servilo"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Malproksima CUPS-a servilo"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Neniu printilo"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Ću vi havas alian?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Muso"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Printilo"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDN-karto"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Sonkarto"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Lokaj dosieroj"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Difinu pasvorton de root"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Neniu pasvorto"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr ""
-"Ći tiu pasvorto ests tro simpla (ři devas esti almenaý %d signoj longa)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Aýtentikigado"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Aýtentikiga LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAP Servilo"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "Aýtentikiga NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS Domajno"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS Servilo"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Akomodita startdisketo provizas manieron de starti via Linuksa sistemo\n"
-"sendepende de la normala startţargilo. Ći tiu estas utila se vi ne deziras\n"
-"instali SILO sur via sistemo, aý alia mastruma sistemo forigas SILO,\n"
-"aý SILO ne funkcias kun via aparato-konfiguraźo. Akomodita startdisketo "
-"ankaý\n"
-"povas esti uzata kun la Mandrejka savdisko, kiu plifaciligas resaniři de\n"
-"severaj sistemaj paneoj.\n"
-"\n"
-"Se vi deziras krei startdisketon por via sistemo, enţovu disketon en la\n"
-"unua drajvo kaj klaku \"JES\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Unua disketa drajvo"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Dua disketa drajvo"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Ellasu"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Akomodita startdisketo provizas manieron de starti via Linuksa sistemo\n"
-"sendepende de la normala startţargilo. Ći tiu estas utila se vi ne deziras\n"
-"instali LILO (aý grub) sur via sistemo, aý alia mastruma sistemo forigas "
-"LILO,\n"
-"aý LILO ne funkcias kun via komputilo. Akomodita startdisketo ankaý povas\n"
-"esti uzata kun la Mandrejka savdisko, kiu plifaciligas resaniři de severaj\n"
-"sistemaj paneoj. Ću vi deziras krei startdisketo por via sistemo?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Bedaýrinde, neniu disketdrajvo havebla"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Elektu la disketdrajvo vi deziras uzi por krei la startdisketon"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Enţovu disketon en drajvo %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Kreas startdisketon"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Preparas startţargilon"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Ću vi deziras uzi aboot-on?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Eraro daýre mi instalis \"aboot\",\n"
-"Ću mi devus provi perforte instali eć se tio detruas la unuan subdiskon?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Instalu restart-ţargilon"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Instalado de startţargilo malsukcesis. La sekvanta eraro okazis:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Enţovu malplenan disketon en drajvo %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Kreas aýtoinstalan disketon"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Kreu aýtoinstalan disketon"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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:1361
-msgid "Automated"
-msgstr "Aýtomata"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Reludu"
-
-#: ../../install_steps_interactive.pm_.c:1364
-#, fuzzy
-msgid "Save packages selection"
-msgstr "Elektado de individuaj pakaźoj"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Linuks-Mandrejka Instalado %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr " <Tabo>/<Alt-Tabo> inter eroj | <Spaco> elektas | <F12> sekva ekrano "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu mankas"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Elektu agon"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr ""
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Bonvole atendu"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informo"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Etendu Arbon"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Maletendu Arbon"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Ţanřu inter ebena kaj ordigita je grupoj"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Malbona elektaźo, provu denove\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Via elektaźo? (defaýlo estas %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Via elektaźo? (defaýlo estas %s) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Opcioj: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "Ću vi deziras uzi aboot-on?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Via elektaźo? (defaýlo estas %s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Ćeśa (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Germana"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak-a"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Hispana"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Finna"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Franca"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norvega"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Pola"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Rusa"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Sveda"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Unuiřinta Regna klavaro"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Usona klavaro"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Albana"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armena (malnova)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armena (skribmaţina)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armena (fonetika)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbajřana (latina)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belga"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Armena (fonetika)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Bulgara"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazila (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Belarusa"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Svisa (germana aranřo)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Svisa (franca aranřo)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Ćeśa (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Germana (neniom da mortaj klavoj)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Dana"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak-a (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak-a (Norvega)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak-a (US)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estona"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Kartvela (\"Rusa\" aranřo)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Kartvela (\"Latina\" aranřo)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Greka"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Hungara"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Kroata"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Israela"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Israela (fonetika)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Irana"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islanda"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Itala"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japana 106 klavoj"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Korea klavaro"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latinamerika"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litova AZERTY-a (malnova)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litova AZERTY-a (nova)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litova \"numero-vica\" QWERTY-a"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litova \"fonetika\" QWERTY-a"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Loko"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Macedona"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Nederlanda"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Pola (qwerty aranřo)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Pola (qwertz aranřo)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugala"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Kanada (Kebeka)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Rumana (qwertz-a)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Rumana (qwerty-a)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Rusa (Yawerty-a)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slovena"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovaka (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovaka (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "Azerbajřana (cirila)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Tabelo"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Taja klavaro"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Taja klavaro"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turka (tradicia \"F\" modelo)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turka (moderna \"Q\" modelo)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukrajna"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Usona klavaro (internacia)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vjetnama \"numero-vica\" QWERTY-a"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslava (latina/cirila)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Cirklaj surmetingoj %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr ""
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Muso"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Lořiteka MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Nespecifa PS2 RadoMuso"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 butona"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Nespecifa 2 Butona Muso"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Genera"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Rado"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "seria"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Nespecifa 3 Butona Muso"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Mikrosofta IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Lořiteka MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Lořiteka CC serio"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Lořiteka MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Serio"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Lořiteka Muso (seria, malnova C7 speco)"
-
-#: ../../mouse.pm_.c:66
-#, fuzzy
-msgid "busmouse"
-msgstr "Neniu Muso"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 butonoj"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 butonoj"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "neniu"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Neniu Muso"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Bonvole, provu la muson"
-
-#: ../../mouse.pm_.c:500
-#, fuzzy
-msgid "To activate the mouse,"
-msgstr "Bonvole, provu la muson"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "MOVU VIAN RADON!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Finu"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Sekvanta ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Antaýa"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Ću tio ći pravas?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Konektu al la Interreto"
-
-#: ../../network/adsl.pm_.c:20
-#, 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 ""
-"La plej ofte uzata maniero por konekti kun ADSL estas dhcp + pppoe.\n"
-"Tamen, ekzistas konektojn kiuj nur uzas dhcp.\n"
-"Se vi ne scias, elektu 'uzu pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "uzu dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "uzu pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "uzu pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Kiun dhcp-an klienton vi deziras uzi?\n"
-"La defaýlto estas dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-#, fuzzy
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanću la\n"
-"aparatokonfigurilon."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Elektu la retan interfacon"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Bonvole elektu kiun retadaptilon vi deziras uzi por konekti al la interreto"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "neniu retkarto trovita"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Konfiguras reto"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Bonvole enigu vian poţtejon se vi scias řin.\n"
-"Iuj DHCP-aj serviloj bezonas poţtejon por funkcii.\n"
-"Via poţtejo devus esti plene specifita poţtejo,\n"
-"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Poţtejo"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-#, fuzzy
-msgid "Network Configuration Wizard"
-msgstr "ISDN-a Konfiguraźon"
-
-#: ../../network/isdn.pm_.c:22
-#, fuzzy
-msgid "External ISDN modem"
-msgstr "Interna ISDN-karto"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Interna ISDN-karto"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Kia estas via ISDN-a konektaźo?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "Konfiguraźo de barilo detektata!"
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "Konfiguraźo de barilo detektata!"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN-a Konfiguraźon"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Elektu vian interretprovizanton.\n"
-" Se řin ne estas en la listo, elektu Nelistiřitan"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol"
-msgstr "Protokolo"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Eýropo (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "La cetero de la mondo"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"La cetero de la mondo \n"
-" neniom da D-Kanelo (lukontraktataj lineoj)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Kiun protokolon vi deziras uzi?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Kiun specon de karto vi havas?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Mi ne scias"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Se via havas ISA-an karton, la valoro sur la sekvanta ekrano devus esti "
-"řusta.\n"
-"\n"
-"Se vi havas PCMCIA-an karton, vi bezonas scii la IRQ-o kaj I/O (Eneligo)\n"
-"por via karto.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Ćesigu"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Ću mi devus daýri?"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Kiu estas via ISDN-a karto?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Mi detektis ISDN-an PCI-an Karton, sed mi ne scias la specon. Bonvole "
-"elektu\n"
-"unu el la PCI-aj kartojn sur la sekvanta ekrano."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Neniu ISDN-a PCI-a karto trovata. Bonvole elektu unu el la PCI-aj kartojn "
-"sur\n"
-"la sekvanta ekrano."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Telefon-konektaj opcioj"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Nomo de konekto"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Telefonnumero"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Salutnomo"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP (Pasvorta Aýtentikigada Protokolo)"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Programeto-bazata"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Finaparato-bazata"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Domajna nomo"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Unu DNS-a Servilo (nedeviga)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Du DNS-a Servilo (nedeviga)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr "Konfiguru interretan konektaźon"
-
-#: ../../network/netconnect.pm_.c:34
-#, fuzzy
-msgid "You are currently connected to internet."
-msgstr "Kiel vi deziras konekti al la Interreto?"
-
-#: ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-
-#: ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid "You are not currently connected to Internet."
-msgstr "Kiel vi deziras konekti al la Interreto?"
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Konektu"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Malkonektu"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Konfiguru retumon"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Interreta konektaźo kaj konfiguro"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Konfiguru interretan konektaźon"
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr "Konfiguru interretan konektaźon"
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Reta Konfiguraźo"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-
-#: ../../network/netconnect.pm_.c:167
-#, fuzzy
-msgid "Choose the profile to configure"
-msgstr "Elektu la defaýltan uzulon:"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Detektas aparatojn..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, fuzzy
-msgid "Normal modem connection"
-msgstr "Konfiguru interretan konektaźon"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, fuzzy, c-format
-msgid "detected on port %s"
-msgstr "Duobla surmetingo %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, fuzzy
-msgid "ISDN connection"
-msgstr "Konfiguru interretan konektaźon"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy
-msgid "ADSL connection"
-msgstr "LAN Konfiguraźo"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy, c-format
-msgid "detected on interface %s"
-msgstr "Reta interfaco"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "Cable connection"
-msgstr "Konfiguru interretan konektaźon"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Konfiguru interretan konektaźon"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "LAN Konfiguraźo"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "Elektu la ilon kiun vi deziras instali"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-#, fuzzy
-msgid "Internet connection"
-msgstr "Disdividado de Interreta Konekto"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Ću vi deziras starti vian konektaźon je startado de la sistemo?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Reta Konfiguraźo"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, fuzzy, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-#, fuzzy
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"AVERTO: Ći tiu aparato estis antaýe konfigurata por konekti al la "
-"Interreto.\n"
-"Simple klaki JES por teni la konfiguron de ći tiu aparato.\n"
-"Se vi modifos la subajn kampojn, vi ţanřos ći tiun konfiguron."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Bonvole enigu la IP-an konfigurâjon por ći tiu komputilo.\n"
-"Ćiu ero devus esti enigata kiel IP-adreson en punktita-decimala notacio\n"
-"(ekzemple, 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfiguras retan aparaton %s"
-
-#: ../../network/network.pm_.c:307
-#, fuzzy, c-format
-msgid " (driver %s)"
-msgstr "XFree86 pelilo: %s\n"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP-adreso"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Retmasko"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Aýtomata IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Bonvole enigu vian poţtejon.\n"
-"Via poţtejo devus esti plene specifita poţtejo,\n"
-"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''.\n"
-"Vi ankaý povas enigi la IP-adreson de la prokura kluzo se via havas unu."
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNA servilo"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Prokura kluzaparato"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Konfigurado de prokuraj serviloj"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP prokura servilo"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP prokura servilo"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Prokura servilo devus esti http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Prokura servilo devus esti ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Interreta Konfigurado"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Ću vi deziras provi konekti al la interreto nun?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-#, fuzzy
-msgid "Testing your connection..."
-msgstr "Konfiguru interretan konektaźon"
-
-#: ../../network/tools.pm_.c:50
-#, fuzzy
-msgid "The system is now connected to Internet."
-msgstr "Kiel vi deziras konekti al la Interreto?"
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr ""
-
-#: ../../network/tools.pm_.c:52
-#, fuzzy
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Konfigurado de Konekto"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Bonvole plenigu aý marku la suban kampon"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ de Karto"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Memoro de Karto (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "I/O (Eneligo) de Karto"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "I/O 0 (Eneligo 0) de Karto"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "I/O 1 (Eneligo 1) de Karto"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Via persona telefonnumero"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Nomo de interretprovizanto (ekz-e provizanto.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Telefonnumero de interretprovizanto"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Provizanto DNS 1 (nedeviga)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Provizanto DNS 2 (nedeviga)"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "Elektu vian klavaron"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Diskuma modalo"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "Speco de konekto"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Speco de konekto"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Konta Salutnomo (uzula nomo)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Konta Pasvorto"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "muntado malsukcesis: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Ći tiu platformo ne subtenas etendatajn subdiskojn"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Vi havas truon en via subdisktabelo sed mi ne povas uzi řin.\n"
-"La sola solvo estas movi viajn ćefajn subdiskojn por situigi la truon\n"
-"apud la etendataj subdiskoj."
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Restaýris el dosiero %s malsukcesis: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Malbona rezerva dosiero"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Eraro skribante al dosiero %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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:24
-msgid "must have"
-msgstr "havenda"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "grava(j)"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "tre agrabla(j)"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "agrabla(j)"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "elbe"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Loka printilo"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Malproksima printilo"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Malproksima CUPS-a servilo"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "Malproksimaj lpd servilo"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Reta Printilo (TCP/ingo)"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Vindozo 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Printservilo"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "Printila Aparato URI"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Loka printilo"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Malproksima printilo"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Eraro skribante al dosiero %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(modulo %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP de SMB servilo"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Defaýlta)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Elektu Printilan Konekton"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Kiel estas la printilo konektata?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"Kun malproksima CUPS servilo, vi ne devas konfiguri iun printilon\n"
-"ći tie; printiloj estos aýtomate dektektataj. Se vi havas dubojn,\n"
-"elektu \"Malproksima CUPS servilo\"."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "LAN Konfiguraźo"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Malproksima CUPS-a servilo"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:87
-#, fuzzy
-msgid "CUPS server IP"
-msgstr "IP de SMB servilo"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Pordo"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Post-instala konfigurado"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Detektas aparatojn..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Provu pordojn"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Neniu printilo"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Loka printilo"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Malproksima printilo"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Malproksima printilo"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Malproksima printilo"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "Duobla surmetingo %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Printila Aparato URI"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Loka printilo"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Printila Aparato URI"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Interreta Konfigurado"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Instalanta pakaźo %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Instalanta pakaźo %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-#, fuzzy
-msgid "Reading printer database ..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Malproksimaj lpd Printilaj Opcioj"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Por uzi malproksima lpd printvico, vi devas provizi la poţtejon de la\n"
-"printservilo kaj la printviconomon će tiu servilo en kiun taskoj devus\n"
-"esti metata."
-
-#: ../../printerdrake.pm_.c:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "Malproksima poţtejo"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Malproksima printilo"
-
-#: ../../printerdrake.pm_.c:630
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "Malproksima poţtejo"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Malproksima poţtejo"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Vindozo 9x/NT) Printilaj Opcioj"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Por printi al SMB-a printilo, vi devas provizi la SMB poţtejon (Notu! Ři "
-"eble\n"
-"estas malsama de řia TCP/IP nomo!) kaj eble la IP-adreson de la "
-"printservilo,\n"
-"aldone al la opuzan nomon de la printilo vi deziras atingi kaj iun ajn\n"
-"taýgan salutnomon, pasvorton, kaj laborgrupan informon."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Poţtejo de SMB servilo"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP de SMB servilo"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Opuza nomo"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Laborgrupo"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "NetWare Printilaj Opcioj"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Por print al NetWare printilo, vi devas provizi la NetWare printservilan\n"
-"nomon (Notu! Ři eble estas malsama de řia TCP/IP nomo!) aldone al la\n"
-"printvican nomon por la printilo vi deziras atingi kaj iun ajn taýgan\n"
-"salutnomon kaj pasvorton."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Printservilo"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Printvica Nomo"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Ing-Printilaj Opcioj"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Por printi al inga printilo, vi bezonas provizi la\n"
-"poţtejon de la printilo kaj opcie la pordnumeron."
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "Printilaj Poţtejo"
-
-#: ../../printerdrake.pm_.c:858
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "Printilaj Poţtejo"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Printila Aparato URI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Nomo de printilo"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Priskribo"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Loko"
-
-#: ../../printerdrake.pm_.c:1021
-#, fuzzy
-msgid "Preparing printer database ..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Malproksima printilo"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Ću tio ći pravas?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Malproksima printilo"
-
-#: ../../printerdrake.pm_.c:1139
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Printilan Konekton"
-
-#: ../../printerdrake.pm_.c:1140
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "Kiun specon de printilo vi havas?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Interreta Konfigurado"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Interreta Konfigurado"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Ću vi deziras provi printado?"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "Provu pordojn"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-#, fuzzy
-msgid "No test pages"
-msgstr "Jes, printu ambaý de la provpařojn"
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "Printilo"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Laýnorma"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "Printas provpařo(j)n..."
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "Printas provpařo(j)n..."
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Printas provpařo(j)n..."
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Printas provpařo(j)n..."
-
-#: ../../printerdrake.pm_.c:1635
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Provpařo(j)n estis sendataj al la printila demono.\n"
-"Ći tiu eble postulas iom da tempo antaý ol la printilo komencas.\n"
-"Printada stato:\n"
-"%s\n"
-"\n"
-"Ću ři řuste funkcias?"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Provpařo(j)n estis sendataj al la printila demono.\n"
-"Ći tiu eble postulas iom da tempo antaý ol la printilo komencas.\n"
-"Ću ři řuste funkcias?"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Neniu printilo"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Malfermu"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Haltas de la reto"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Haltas de la reto"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Printilaj opcioj"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Interreta Konfigurado"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "Neniu printilo"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Startas vian konektaźon..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Konfiguru retumon"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Ekrano ne estas konfigurata"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Konfiguras reto"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Kiun printsistemo vi deziras uzi?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Alta"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Paranoja"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Kiun printsistemo vi deziras uzi?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Elektu Printilan Konekton"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Kiun printsistemo vi deziras uzi?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Konfiguru Printilon"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Instalanta pakaźo %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Printilaj opcioj"
-
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Konfiguru Printilon"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Ću vi deziras konfiguri printilon?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Printilo"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Jen la sekvantaj printvicoj.\n"
-"Vi povas aldoni pli aý ţanři la ekzistantajn."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Jen la sekvantaj printvicoj.\n"
-"Vi povas aldoni pli aý ţanři la ekzistantajn."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Konfiguru retumon"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Normala Modalo"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Interreta Konfigurado"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Disdividado de Interreta Konekto"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Printilan Konekton"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "Printas provpařo(j)n..."
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Malproksima printilo"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Loka printilo"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-#, fuzzy
-msgid "Proxy configuration"
-msgstr "Konfigurado de prokuraj serviloj"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr ""
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "porto"
-
-#: ../../proxy.pm_.c:44
-#, fuzzy
-msgid "Url should begin with 'http:'"
-msgstr "Prokura servilo devus esti http://..."
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr ""
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Prokura servilo devus esti ftp://..."
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-#, fuzzy
-msgid "login"
-msgstr "Aýtomata-enregistrado"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "pasvorto"
-
-#: ../../proxy.pm_.c:84
-#, fuzzy
-msgid "re-type password"
-msgstr "Neniu pasvorto"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "La pasvortoj ne egalas. Provu denove!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Ne povas aldoni subdiskon al _formatita_ RAID md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Ne povas skribi dosieron %s."
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid malsukcesis"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid malsukcesis (eble raidtools mankas)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Ne estas sufićaj subdiskoj por RAID nivelo %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, perioda ordonvicigilo."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd estas uzata por monitori la bateriostaton kaj registri řin en la\n"
-"sistemlogdosiero (syslog). Vi ankaý povas uzi řin por halti la komputilon\n"
-"kiam la baterioţargo estas malgranda."
-
-#: ../../services.pm_.c:18
-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 ""
-"Lanćas ordonojn vicigitajn per la 'at' ordono je la horo specifita kiam\n"
-"'at' estis uzata, kaj lanćas baćajn ordonojn kiam la ţargmezo estas\n"
-"sufiće malgranda."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron estas norma Uniksa programo kiu lanćas programojn kiujn la uzulo\n"
-"specifas je periodaj tempoj. vixie cron aldonas kelkajn trajtojn al la\n"
-"baza Uniksa cron, inkluzive de pli bona sekureco kaj pli fortaj\n"
-"konfiguraj opcioj."
-
-#: ../../services.pm_.c:23
-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 aldonas subtenon por musoj al teksta-reřimaj Linuksaj aplikoj ekzemple\n"
-"la 'Midnight Commander' (Meznokta Estro). Ankaý ři permesas uzi la muson\n"
-"por transpoţigi će la konzolo (Sen X Fenestroj)."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache estas Tut-Tera Teksaźa servilo. Ři liveras HTML-ajn dosierojn\n"
-"kaj CGI (komunakluza interfaco)."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"La interreta superservila demono (kutime nomata inetd) lanćas sortimenton\n"
-"da aliaj interretaj servoj laýbezone. Ři respondas por la lanćo de multaj\n"
-"servoj, inkluzive de telnet, ftp, rsh, kaj rlogin. Se vi malţaltas inetd,\n"
-"ve malţaltas ćiujn el la servoj por kiuj ři respondas."
-
-#: ../../services.pm_.c:33
-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:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Ći tiu pakaźo ţargas la elektitan klavarmapon laý /etc/sysconfig/keyboard.\n"
-"Vi povas elekti ći tion per la kbdconfig utilprogramo. Vi lasus ći tion\n"
-"ebligatan por la plejmulto da sistemoj."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: ../../services.pm_.c:43
-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 estas la printvica dajmono bezonata por lpr taýge funkcii. Ři estas\n"
-"baze servilo kiu arbitracias printajn taskojn al printilo(j)."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"'named' (BIND) estas Domajna NomServilo (DNS) kiun vi uzas por trovi\n"
-"poţtejojn de IP adresoj."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Muntas kaj malmuntas ćiujn RetDosierSistemajn (NFS), SMB (Lan\n"
-"Manager/Vindozaj), kaj NCP (NetWare) surmetingojn."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Ţaltas/Malţaltas ćiujn retajn interfacojn konfiguratajn por lanći\n"
-"dum sistemstartado."
-
-#: ../../services.pm_.c:52
-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 estas populara protokolo por dosierdistribuado tra TCP/IP retoj.\n"
-"Ći tiu servo provizas NFS dosierţlosado, kiun vi konfiguras per la\n"
-"/etc/exports dosiero."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS estas populara protokolo por dosierdistribuado tra TCP/IP retoj.\n"
-"Ći tiu servo provizas NFS dosierţlosado."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA subteno kutime estas subteno de aźo kiel ethernet kaj modemoj en\n"
-"tekkomputiloj. Ři ne estos lanćata krom se vi konfiguras ři por ke ři\n"
-"estu sendanřera će komputiloj kiuj ne bezonas řin."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"La pordmapilo direktas RPC konektojn, kiujn protokoloj kiel NFS kaj NIS "
-"uzas.\n"
-"La pordmapservilo devas esti uzata će komputiloj kiuj agas kiel serviloj\n"
-"por protokoloj kiuj uzas la RPC mekanismon."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"\"Postfix\" estas PoţtTransportPerilo, kiu estas la programo kiu movas\n"
-"retpoţton de unu komputilo al alia."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Savas kaj restaýras sisteman entropikomunaźon por pli altkvalita\n"
-"generado de aleatoraj nombroj."
-
-#: ../../services.pm_.c:69
-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:71
-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 ""
-"La routed dajmono permesas aýtomatan řisdatigon de la IP enkursigila tabelo\n"
-"per la RIP protokolo. Kvankam RIP estas vaste uzata je malgrandaj retoj,\n"
-"pli malsimplaj enkursigaj protokoloj estas bezonataj por malsimplaj retoj."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"La rstat protokolo permesas al uzuloj sur reto ekstrakti metrikojn\n"
-"pri la rapideco de iu ajn komputilo sur tiu reto."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"La ruser protokolo permesas al uzuloj sur reto identigi kiujn estas\n"
-"konektataj će aliaj respondantaj komputiloj."
-
-#: ../../services.pm_.c:78
-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 ""
-"La rwho protokolo permesas al uzuloj havigi liston de ćiuj el la uzuloj\n"
-"konektataj će komputilo kiu estas uzanta la rwho dajmono (simila al finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr ""
-
-#: ../../services.pm_.c:81
-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 (sistemlogilo) estas la rimedo per kiu multaj dajmonoj registras\n"
-"mesařojn al diversaj sistemlogdosieroj. Ři estas bona ideo ćiam uzi\n"
-"syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: ../../services.pm_.c:84
-#, fuzzy
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Startas kaj ćesigas la X Tiparan Servilon je starttempo kaj ćesiga tempo."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Printilo"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Interreto"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Sistema modalo"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Malproksimaj lpd Printilaj Opcioj"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Datumbazoj"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "Servilo"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "running"
-msgstr "Averto"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "stopped"
-msgstr "Alfiksu"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr ""
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-
-#: ../../services.pm_.c:224
-#, fuzzy
-msgid "On boot"
-msgstr "Yaboot"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Stato:"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Sektoro"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "La cetero de la mondo"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Interreto"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Plurmedia - Grafiko"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-#, fuzzy
-msgid "Development"
-msgstr "Programisto"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Konekti al la interreto"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Reta interfaco"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "Poţtejo de SMB servilo"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Ludoj"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Spertulo"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Instalanta pakaźo %s"
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Mi ne povas legi vian subdisktabelon, ři estas tro difektita por mi :(\n"
-"Mi penos daýri per blankigi difektitajn subdiskojn"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Eraro"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Post-instala konfigurado"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Post-instala konfigurado"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Gratulojn!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Instalu"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Aldonu uzulon"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Formatas retrokonektan dosieron %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Malbona rezerva dosiero"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Malbona rezerva dosiero"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Malbona rezerva dosiero"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Elektado de Pakaźoj"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Malinstalu printvicon"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Forigu Vindozon"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Salutnomo"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Bonvole, provu la muson"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Bonvole provu denove"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Bonvole provu denove"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "Neniu pasvorto"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN Konfiguraźo"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Elektu Printilan Konekton"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Bonvole, elektu vian klavaran aranřon."
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Bonvolu klaki sur subdiskon"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Malbona rezerva dosiero"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Bonvole, provu la muson"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Malbona rezerva dosiero"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Reta interfaco"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Salutnomo"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Bonvole, elektu lingvon por uzi."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Detektado de fiksdisko(j)"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Salutnomo"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "Rado"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "Rado"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Modulaj opcioj:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Reta Konfiguraźo"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Dosiersistemo konfiguro"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Opcioj"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Reta Konfiguraźo"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Malbona rezerva dosiero"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Bonvole, elektu la specon de via muso."
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Malbona rezerva dosiero"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Restaýru de disketo"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Bonvole, elektu la specon de via muso."
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Alia"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Instalu sistemon"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Restaýru de dosiero"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Restaýru de dosiero"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Akomodata"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Helpo"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- Antaýa"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Stato:"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Malbona rezerva dosiero"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Restaýru de dosiero"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Sekvanta ->"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Elektu pakaźojn"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Bonvole, elektu lingvon por uzi."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Bonvole, elektu lingvon por uzi."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Bonvole, elektu lingvon por uzi."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Malbona rezerva dosiero"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Malbona rezerva dosiero"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Malbona rezerva dosiero"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Konservu en dosiero"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Bonvole, provu la muson"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Reta Konfiguraźo"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Reta Konfiguraźo"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "LAN Konfiguraźo"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "LAN Konfiguraźo"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Dosiersistemo konfiguro"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Instalado de %s malsukcesis. La sekvanta eraro okazis:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "neniu retkarto trovita"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Finata"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Preparas instaladon"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-#, fuzzy
-msgid "Restart XFS"
-msgstr "limigu"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "limigu"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Formatu subdiskojn"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN Konfiguraźo"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Surmetingo"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Oficejo"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Ćesigu"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Printilo"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Instalu sistemon"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Elektu dosieron"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Malproksima printilo"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Instalu"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Eliru instalprogramon"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Disdividado de Interreta Konekto"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-
-#: ../../standalone/drakgw_.c:139
-#, fuzzy
-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 ""
-"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "malebligu"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "forsendu"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "rekonfiguru"
-
-#: ../../standalone/drakgw_.c:146
-#, fuzzy
-msgid "Disabling servers..."
-msgstr "Detektas aparatojn..."
-
-#: ../../standalone/drakgw_.c:154
-#, fuzzy
-msgid "Internet connection sharing is now disabled."
-msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-
-#: ../../standalone/drakgw_.c:164
-#, fuzzy
-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 ""
-"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "ebligu"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:180
-#, fuzzy
-msgid "Internet connection sharing is now enabled."
-msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-
-#: ../../standalone/drakgw_.c:201
-#, fuzzy
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Nun kiam via Interreta konekto estas konfigurata,\n"
-"vi povas konfiguri vian komputilon por disdividi řian Interretan konekton.\n"
-"Notu: vi bezonas dedićan Retadaptilon por konfiguri Lokan Reton (LAN).\n"
-"\n"
-"Ću vi deziras konfiguri Disdividadon de Interreta Konekto?\n"
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Interfaco %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanću la\n"
-"aparatokonfigurilon."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Reta interfaco"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Ekzitas nur unu konfigurita retadaptilo sur via sistemo:\n"
-"\n"
-"%s\n"
-"\n"
-"Ću vi deziras konfiguri vian Lokan Reton (LAN) kun ći tiu adaptilo?"
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Bonvole elektu kiun retadaptilon estos konektata al via Loka Reto (LAN)."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Ekrano ne estas konfigurata"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Post-instala konfigurado"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Interreta Konfigurado"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "IP de SMB servilo"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Ebla konflikto pri Loka-Reta adreso trovata en nuna konfiguro de %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Konfiguraźo de barilo detektata!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Averto. Ekzistanta konfiguraźo de barilo detektata. Vi eble devas permane\n"
-"fiksi řin poste de la instalado."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Mi konfiguras..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Mi konfiguras komandodosierojn, instalas programojn, startas servilojn..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemoj instalante pakaźon %s"
-
-#: ../../standalone/drakgw_.c:672
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:689
-#, fuzzy
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-
-#: ../../standalone/drakgw_.c:690
-#, fuzzy
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-
-#: ../../standalone/drakgw_.c:691
-#, fuzzy
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-
-#: ../../standalone/drakgw_.c:696
-#, fuzzy
-msgid "Internet connection sharing configuration"
-msgstr "Interreta konektaźo kaj konfiguro"
-
-#: ../../standalone/drakgw_.c:703
-#, 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 "Disdividado de Interreta Konekto"
-
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ISDN-a Konfiguraźon"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "muntado malsukcesis: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Poţtejo: "
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "Interreto"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Speco:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Kluzo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "Interreto"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Stato:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Konfiguru servojn"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN Konfiguraźo"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Pelilo"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfaco"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokolo"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Stato:"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Konfiguru lokan reton"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Sorćisto..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Apliku"
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Provu konfiguraźon"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Konektita"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ne konektita"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konektu..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Malkonektu..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN Konfiguraźo"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptilo %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktiva"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktiva"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Interreta konektaźo kaj konfiguro"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Interreta konektaźo kaj konfiguro"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Speco de konekto"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Kluzo"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Elektas sekurnivelon"
-
-#: ../../standalone/drakxconf_.c:47
-#, fuzzy
-msgid "Control Center"
-msgstr "Konekti al la interreto"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Elektu la ilon kiun vi deziras instali"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Kanada (Kebeka)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "Eýropo"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Islanda"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "Eýropo"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "seria"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "uzado: keyboarddrake [--expert] [klavaro]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Bonvole, elektu vian klavaran aranřon."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Ţanřu KD-ROM-on"
-
-#: ../../standalone/livedrake_.c:25
-#, 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 ""
-"Ţanřu vian KDROM!\n"
-"\n"
-"Bonvole, enţovu la KDROM-on etikedatan \"%s\" en via drajvo kaj klaku \"Jes"
-"\"\n"
-"kiam vi finos.\n"
-"Se vi ne havas řin, klaku \"Nuligu\" por eviti la instaladon de ći tiu KDROM."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr ""
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-#, fuzzy
-msgid "Show only for the selected day"
-msgstr "Montru nur por ći tiu tago"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Dosiero/_Nova"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Dosiero/_Malfermu"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>M"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Dosiero/_Savu"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Dosiero/Savu _Kiel"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Dosiero/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Opcioj"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Opcioj/Provu"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Helpo"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Helpo/_Pri..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-iso8859-3,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-iso8859-3,*"
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Salutnomo"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "mesařoj"
-
-#: ../../standalone/logdrake_.c:175
-#, fuzzy
-msgid "Syslog"
-msgstr "sistema logdosiero (syslog)"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "serću"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Ilo por vidi vian logdosieron"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Konfiguraźoj"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "konformanta(j)"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "sed ne konformanta(j)"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Elektu dosieron"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Kalendaro"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Enhavoj de la dosiero"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "bonvole atendu, mi vortanalizas la dosieron: %s"
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Konfiguraźon"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "2a Etendata (Ext2)"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "Servilo"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "Formatas"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Interreta Konfigurado"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Savu Kiel..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Bonvole, elektu la specon de via muso."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "neniu serial_usb (seria USB) trovita\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Ću vi deziras emuli trian musbutonon?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Elektu grafikan karton"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Starta aparato"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Konfiguraźo de barilo"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Konfiguraźo de barilo"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Elektu vian lingvon"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Elektu instalklason"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Detektado de fiksdisko(j)"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Konfiguru muson"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Elektu vian klavaron"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr ""
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Dosiersistemo konfiguro"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formatu subdiskojn"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Elektu pakaźojn"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Instalu sistemon"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Aldonu uzulon"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Konfiguru retumon"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Konfiguru servojn"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Instalu restart-ţargilon"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Kreu praţargdisketon"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Konfiguru X"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Instalu sistemon"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Eliru instalprogramon"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ne povis malfermi %s por skribi: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Konfiguraźo de barilo"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Preparas instaladon"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "TTT/FTP"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer (client)"
-msgstr "Reta Printilo (ingo)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Oficejo"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnoma Laborstacio"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Laborstacio"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE Laborstacio"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Plurmedia - Video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Database"
-msgstr "Datumbazoj"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Tools to ease the configuration of your computer"
-msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Plurmedia - Sono"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentaro"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet station"
-msgstr "Interreta Konfigurado"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia station"
-msgstr "Plurmedia - Sono"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "LAN Konfiguraźo"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Office Workstation"
-msgstr "Laborstacio"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Servilo"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C kaj C++ programadaj bibliotekoj, programoj kaj ćapdosieroj"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer server"
-msgstr "Reta Printilo (ingo)"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Game station"
-msgstr "Dokumentaro"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Plurmedia - Grafiko"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-
-#: ../../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:999
-msgid "Archiving, emulators, monitoring"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet gateway"
-msgstr "Interreto"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Redaktiloj, ţeloj, dosieriloj, terminaloj"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Plurmedia - KD-ROM Kreado"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Scientific Workstation"
-msgstr "Laborstacio"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Ćesigu"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "Finata"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Elektu la defaýltan uzulon:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Malproksima printilo"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Nun vi povas provizi řiajn opciojn al modulo %s."
-
-#~ msgid "mount failed"
-#~ msgstr "muntado malsukcesis"
-
-#~ msgid "Low"
-#~ msgstr "Malalta"
-
-#~ msgid "Medium"
-#~ msgstr "Meza"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Malmultaj plibonigoj će ći tiu sekurnivelo, la ćefa estas ke ři havas "
-#~ "pli\n"
-#~ "multajn sekurecajn avertojn kaj kontrolojn."
-
-#~ msgid "Boot mode"
-#~ msgstr "Starta modalo"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Spertulo"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linukso administras tempon en GMT aý \"Grenvića Meza Tempo\" kaj "
-#~ "tradukas řin\n"
-#~ "en lokan tempon laý la horzono vi elektis."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Konektu al la Interreto"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Malkonektu el la Interreto"
-
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfiguru interretan konektaźon"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Al kiu disko vi deziras movi?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Informo"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnoma Laborstacio"
-
-#~ msgid "authentification"
-#~ msgstr "aýtentikigado"
-
-#~ msgid "user"
-#~ msgstr "uzanto"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Bonvole, elektu la specon de via muso."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Ćesu"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Aýtomata muntado de demetebla medio"
-
-#~ msgid "Active"
-#~ msgstr "Aktiva"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Ne"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Printilo, tipo \"%s\", estas detektita će "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Loka Printila Aparato"
-
-#~ msgid "Printer Device"
-#~ msgstr "Printila Aparato"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Malproksima CUPS-a servilo"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Malproksima CUPS-a servilo"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linukso"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Sistema modalo"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Alia"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Bonvole, elektu vian klavaran aranřon."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Bonvolu klaki sur subdiskon"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Speco: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Malbona rezerva dosiero"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Konfiguru X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Printila Aparato"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Nuligu"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Jeso"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Malfermu"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Startas vian konektaźon..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Fermas vian konektaźon..."
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "Kiel vi deziras konekti al la Interreto?"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Elektu la grandecon kiu vi deziras instali"
-
-#~ msgid "Total size: "
-#~ msgstr "Tuta grandeco: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Bonvolu atendi"
-
-#~ msgid "Total time "
-#~ msgstr "Tuta tempo "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Uzu ekzistantan konfiguron de X11 (X-fenestroj)?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Al kiu aparato estas via printilo konektata\n"
-#~ "(notu ke /dev/lp0 egalas LPT1:)?\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#, fuzzy
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Averto, la retadaptilo estas jam konfigurata.\n"
-#~ "Ću vi deziras rekonfiguri řin?"
-
-#~ msgid "New"
-#~ msgstr "Nova"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Malproksima printvico"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Bonvolu klaki sur subdiskon"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambigueco (%s), esti pli preciza\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (defaýlto estas %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Via elektaźo (defaýlto estas %s enigu `neniu' por elekti neniu) "
-
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Ću vi konsentas?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Ću vi deziras provi la konfiguraźon?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Krom se vi scias precize alie, la kutima elekto estas \"/dev/hda\"\n"
-#~ " (unua ćefa IDE-a disko) aý \"/dev/sda\" (unua SCSI-a disko)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Speco de konekto"
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Elektu la defaýltan uzulon:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Bonvole, provu la muson"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr ""
-#~ "Bonvole elektu vian preferatan lingvon por instalado kaj sistema uzado."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Elektu la aranřon de via klavaro el la listo supre"
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Elektu:\n"
-#~ "\n"
-#~ " - Akomodata: Se vi sufiće konas GNU/Linukson, vi povas elektu la ćefan\n"
-#~ " uzadon por via komputilo. Vidu malantaýe por detaloj.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Spertulo: Ći tio supoza ke vi flue konas GNU/Linukson kaj deziras "
-#~ "fari\n"
-#~ " treege akomodatan instaladon. Simile kiel \"Akomodata\" instalado, "
-#~ "vi povos\n"
-#~ " elekti la uzado por via komputilo.\n"
-#~ " Sed bonvolege, NE ELEKTU ĆI TION KROM SE VI SCIAS KION VI FARAS!"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Nun vi devas elekti la uzadon por via komputilo. Jen la elektoj:\n"
-#~ "\n"
-#~ "* Laborstacio: ći tio estas la ideala opcio se vi intencas uzi vian\n"
-#~ " komputilon ćefe por ćiutaga uzado će la oficejo aý hejme.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Programado: se vi intencas uzi vian komputilon ćefe por programado,\n"
-#~ " ći tio estas bona opcio. Vi havos plenan aron de programiloj por\n"
-#~ " kompili, erarserći, formati programfontojn, kaj krei\n"
-#~ " programpakaźojn.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Servilo: se vi intencas uzi ći tiun komputilon kiel servilo, ći tio\n"
-#~ " estas bona opcio. Aý dosierservilo (NFS aý SMB), printservilo\n"
-#~ " (Uniksa stilo aý Mikrosofta Vindoza stilo), aýtentikada servilo\n"
-#~ " (NIS), aý datumbaza servilo, ktp. Kiel tia, ne atendu umojn (KDE,\n"
-#~ " GNOME, ktp.) estas instalotaj."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Nun vi povas elekti la pakaźaron kiun vi deziras instali aý promocii.\n"
-#~ "\n"
-#~ "Tiam DrakX kontrolos ću vi havas sufiće da spaco por instali ćiujn de "
-#~ "ili.\n"
-#~ "Se ne, ři informas vin pir ři. Se vi deziras antaýeniri malgraýe, ři\n"
-#~ "antaýeniros je la instalado de ćiuj de la elektitaj pakaźaroj sed lasos\n"
-#~ "fali iujn pakaźojn kiujn estas malpli interesaj. Suben de la listo vi\n"
-#~ "povas elekti la opcion \"Elektado de apartaj pakaźoj\"; ćiokaze vi devus\n"
-#~ "foliumi tra pli ol 1000 pakaźoj..."
-
-#, fuzzy
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Se vi havas ćiujn de la KDROM-oj en la listo sube, klaku \"Jes\".\n"
-#~ "Se vi havas neniujn de ći tiuj KDROM-oj, klaku \"Nuligu\".\n"
-#~ "Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku "
-#~ "\"Jes\"."
-
-#, fuzzy
-#~ 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 ""
-#~ "Nun vi povas enigi telefon-konektajn opciojn. Se vi ne estas certa kio "
-#~ "enigi,\n"
-#~ "vi povas havigi la řustan informon de via interretprovizanto."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Enigu:\n"
-#~ "\n"
-#~ " - IP-adreson: Se vi ne scias, demandu al via retadministranto.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Retmaskon: \"255.255.255.0\" řenerale estas bona elektaźo. Se vi ne\n"
-#~ "estas certa, demandu al via retadministranto aý interretprovizanto.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Aýtomata IP-adreson: Se via reto uzas BOOTP-an aý DHCP-an "
-#~ "protokolon,\n"
-#~ "elektu ći tiun opcion. Se elektita, neniu valoro estas bezonata en\n"
-#~ "\"IP-adreson\". Se vi ne estas certa, demandu al via retadministranto\n"
-#~ "aý interretprovizanto.\n"
-
-#, 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 ""
-#~ "Se via reto uzas NIS, elektu \"Uzu NIS\". Se vi ne scias, demandu al "
-#~ "via\n"
-#~ "retadministranto."
-
-#~ 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 ""
-#~ "Nun vi povas enigi telefon-konektajn opciojn. Se vi ne estas certa kio "
-#~ "enigi,\n"
-#~ "vi povas havigi la řustan informon de via interretprovizanto."
-
-#~ 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 ""
-#~ "Se vi uzos prokurajn servilojn, bonvolu konfiguri ilin nune. Se vi ne\n"
-#~ "scias ću vi uzos prokurajn servilojn, demandu al via retadministranto aý\n"
-#~ "interretprovizanto."
-
-#, fuzzy
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Vi povas instali kriptografian pakaźon se via interreta konekto estas "
-#~ "řuste\n"
-#~ "pretigita. Unue elektu spegulon de kie vi deziras elţuti pakaźojn kaj "
-#~ "poste\n"
-#~ "elektu la pakaźojn por instali.\n"
-#~ "\n"
-#~ "Notu ke vi devas elekti spegulon kaj kriptografiajn pakaźojn laý la "
-#~ "leřdonoj\n"
-#~ "de via lando."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Nun vi povas enigi la \"root\" (radiko) pasvorto por via Linuks-"
-#~ "Mandrejka\n"
-#~ "sistemo. Vi devas enigi la pasvorton dufoje por konfirmi ke ambaý fojoj\n"
-#~ "estas identaj.\n"
-#~ "\n"
-#~ "\n"
-#~ "La \"root\"-a uzanto estas la administranto de la sistemo, kaj estas la "
-#~ "sola\n"
-#~ "uzanto permesata ţanři la sisteman konfiguraźon. Tial, elektu ći tiun\n"
-#~ "pasvorton zorge! Nepermesata uzado de la \"root\"-a uzanto povas esti\n"
-#~ "treege danřera al la sistema integreco kaj dateno, kaj al aliaj sistemoj\n"
-#~ "konektata al ři. La pasvorto devus esti miksaźo de literciferaj signoj "
-#~ "kaj\n"
-#~ "almenaý 8 signoj longa. *Neniam* surpaperigu řin. Tamen, ne elektu tro\n"
-#~ "longan aý komplikan pasvorton: vi devas povi memori řin sen tro multe da\n"
-#~ "peno."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Nun vi povas krei unu aý pli \"ordinara(j)\" uzanto(j), male al la\n"
-#~ "\"privilegia\" uzanto, \"root\". Vi povas krei unu aý pli uzanto(j) por\n"
-#~ "ćiu persono vi deziras permesi uzi la komputilon. Notu ke ćiu uzanto\n"
-#~ "havos viajn proprajn preferojn (grafikan medion, programajn aranřojn,\n"
-#~ "ktp.) kaj řian propran \"hejman dosierujon\", kie ći tiuj preferoj estas\n"
-#~ "konservata.\n"
-#~ "\n"
-#~ "\n"
-#~ "Antaý ćio, krei uzanton por vi mem! Eć se vi estos la sola uzulo će la\n"
-#~ "komputilo, vi ne devus konekti kiel \"root\" por ćiutaga uzado de la\n"
-#~ "sistemo: ři estas tre alta sekureca risko. Fari la sistemon neuzebla\n"
-#~ "estas oftege nur unu misklavo fora.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tial, vi devus konekti al la sistemo per ordinara uzanto vi kreos ći "
-#~ "tie,\n"
-#~ "kaj saluti kiel \"root\" nur por administraj kaj flegadaj kialoj."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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 kaj Grub ćefaj opcioj estas:\n"
-#~ " - Startaparato: Fiksas la nomon de la aparato (ekz-e subdisko de "
-#~ "fiksdisko)\n"
-#~ "tiu enhavas la startsektoron. Krom se vi scias specife alie, elektu\n"
-#~ "\"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Prokrastoperiodo antaý starti defaýltan sistemon: Elektas la nombron\n"
-#~ "da dekonoj de sekundo ke la startţargilo devus atendi antaý starti la\n"
-#~ "unuan sistemon. Ći tiu utilas će sistemoj kiuj tuj startas de la\n"
-#~ "fiksdisko malantaý ili ebligas la klavaron. La startţargilo ne atendas "
-#~ "se\n"
-#~ "\"delay\" (prokrastoperiodo) estas ellasita aý estas fiksita al nul.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Grafika reřimo: Ći tiu specifas la VGA tekstan reřimon por uzi dum\n"
-#~ "start. La sekvantaj valoroj estas uzeblaj:\n"
-#~ " * normala: elektu normalan 80 per 25 tekstan reřimon.\n"
-#~ " * <numero>: uzu la respondan tekstan reřimon."
-
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 estas startţargilo por Sparc: ři povas starti aý Linukson aý iun "
-#~ "ajn\n"
-#~ "mastruman sistemon ćeestanta će via komputilo. Normale, ći tiuj aliaj\n"
-#~ "mastrumaj sistemoj estas řuste detektata kaj instalada. Se tiel ne "
-#~ "estas,\n"
-#~ "vi povas aldoni enskribon mane per ći tiu ekrano. Zorgu elekti la "
-#~ "řustajn\n"
-#~ "parametrojn.\n"
-#~ "\n"
-#~ "\n"
-#~ "Eble vi ankaý ne deziras doni atingon al ći tiuj aliaj mastrumaj "
-#~ "sistemoj\n"
-#~ "al iu ajn. Ćiokaze vi povas forstreki la respondajn enskribojn. Sed\n"
-#~ "ćiokaze, vi bezonos startdiskon por starti ilin!"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "SILO ćefaj opcioj estas:\n"
-#~ " - Instalado de Startţargilo: Indiki kie vi deziras meti la informon\n"
-#~ "bezonata por start GNU/Linukso. Krom se vi scias specife kion vi faras,\n"
-#~ "elektu \"Unua sektoro de drajvo (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Prokrastoperiodo antaý starti defaýltan sistemon: Elektas la nombron\n"
-#~ "da dekonoj de sekundo ke la startţargilo devus atendi antaý starti la\n"
-#~ "unuan sistemon. Ći tiu utilas će sistemoj kiuj tuj startas de la\n"
-#~ "fiksdisko malantaý ili ebligas la klavaron. La startţargilo ne atendas "
-#~ "se\n"
-#~ "\"delay\" (prokrastoperiodo) estas ellasita aý estas fiksita al nul."
-
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Nun estas tempo por konfiguri la X Fenestra Sistemo, kiu estas la kerno\n"
-#~ "de la GNU/Linuksa GUI (Grafika UzulInterfaco). Por tiu celo, vi devas\n"
-#~ "konfiguri vian grafikan karton kaj ekranon. La plejparto de ći tiuj "
-#~ "paţoj\n"
-#~ "estas aýtomatitaj, tamen, do via laboro eble konsistos en konfirmi kion\n"
-#~ "estis farata kaj akcepti la aranřojn. :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Kiam la konfigurado estas kompleta, X lanćiřos (krom se vi demandas al\n"
-#~ "DrakX ne fari tion) pro ke vi kontrolu řin la observu se la aranřojn\n"
-#~ "taýgas por vi. Se ne, vi povas reveni kaj ţanři ilin, tiom da tempoj "
-#~ "kiom\n"
-#~ "estas necesa."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Se iu misas en la X-a konfiguraźo, uzu ći tiujn opciojn por řuste "
-#~ "konfiguri\n"
-#~ "la X Fenestran Sistemon."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Se vi preferas uzi grafikan saluton, elektu \"Jes\". Aliokaze, elektu "
-#~ "\"Ne\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Via sistemo restartos.\n"
-#~ "\n"
-#~ "Post restartado, via nova Linuks-Mandrejka sistemo ţargiřos aýtomate. Se "
-#~ "vi\n"
-#~ "deziras starti en alian ekzistanta mastruman sistemon, bonvole legu la\n"
-#~ "pluan instrukcion."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Ćeśa (Programistoj)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovaka (Programistoj)"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Skribu /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formatu ćion"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Post formatado de ćiuj subdisko,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "ćiuj datenoj sur tiuj subdisko estos perdata"
-
-#~ msgid "Reload"
-#~ msgstr "Reţargu"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "Ću vi deziras krei aýtoinstalan disketon por replikado de Linukso?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL Konfiguraźo"
-
-#, fuzzy
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Kun malproksima CUPS servilo, vi ne devas konfiguri iun printilon\n"
-#~ "ći tie; printiloj estos aýtomate dektektataj. Se vi havas dubojn,\n"
-#~ "elektu \"Malproksima CUPS servilo\"."
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Malproksima printvico"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Domajna nomo"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Neniu printilo"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "ISDN-a Konfiguraźon"
-
-#, fuzzy
-#~ msgid "Profile "
-#~ msgstr "muntado malsukcesis: "
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Sendrapideco: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Ricevrapideco: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Speco de konekto"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Konektas al la Interreto"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Malkonektas el la Interreto"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Malkonektado el la Interreto malsukcesis."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Malkonektado el la Interreto finis."
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Nomo de konekto"
-
-#~ msgid "sent: "
-#~ msgstr "sendita(j): "
-
-#~ msgid "received: "
-#~ msgstr "ricevita(j): "
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Defaýlta"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Mi ne povas kompreni la enhavon de la konfigurodosiero."
-
-#~ msgid "Adapter"
-#~ msgstr "Adaptilo"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Malebligu"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Ebligu"
-
-#, fuzzy
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Konfiguru interretan konektaźon"
-
-#~ msgid "Choose"
-#~ msgstr "Elektu"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "Vi povas specifi rekte la URI por atingi la printilon per CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Jes, printu Askian provpařon"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Jes, printu PostSkriban provpařon"
-
-#~ msgid "Paper Size"
-#~ msgstr "Papergrandeco"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Elźetu pařon post tasko?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint-aj pelilaj opcioj"
-
-#~ msgid "Color depth options"
-#~ msgstr "Kolorprofunecaj opcioj"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Printu tekston kiel PostScripto?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Riparu ţtuparan tekston?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Nombro de pařoj en eliga pařo"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr ""
-#~ "Dekstra/Maldrekstra marřenoj en punktoj (1/72 de colo, proksimume 1/3 mm)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr ""
-#~ "Supra/Malsupra marřenoj en punktoj (1/72 de colo, proksimume 1/3 mm)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Aldonaj GhostScript-aj opcioj"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Aldonaj Tekstaj opcioj"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Inversigu ordon de pařoj"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Elektu Malproksiman Printilan Konekton"
-
-#~ 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 ""
-#~ "Ćiuj printilo bezonas nomon (ekzemple lp).\n"
-#~ "Aliaj parametroj, ekzemple la priskribon de la printilo aý řian lokon\n"
-#~ "vi povas difini. Kiu nomo devus uzata por ći tiu printilo kaj kiel\n"
-#~ "ři estas konektata?"
-
-#~ 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 ""
-#~ "Ćiuj printvico (al kiu printajn taskojn estas direktata) bezonas nomon\n"
-#~ "(ofte lp) kaj fonan eneligan dosierujon asociata kun ři. Kiu nomo kaj\n"
-#~ "dosierujo devus uzata por ći tiu printvico?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Nomo de printvico"
-
-#~ msgid "Spool directory"
-#~ msgstr "Fona eneliga dosierujo"
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
deleted file mode 100644
index fb6f837b3..000000000
--- a/perl-install/share/po/es.po
+++ /dev/null
@@ -1,12570 +0,0 @@
-# Translation file (spanish) of Mandrake graphic install
-# Copyright (C) 1999 Mandrakesoft
-# Pablo Saratxaga <pablo@mandrakesoft.com>, 1999-2000
-# Fabian Mandelbaum <fabman@mandrakesoft.com>, 2000, 2001, 2002
-# Juan Manuel GarcĂ­a Molina <juanma_gm@wanadoo.es>, 2000-2002
-# Carlos SĂĄnchez <vcbsaorc@vc.ehu.es>, 2002
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-15 10:34-0300\n"
-"Last-Translator: Fabian Mandelbaum <fabman@mandrakesoft.com>\n"
-"Language-Team: Spanish <cooker-i18n@linux-mandrake.com>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configurar los monitores independientemente"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Usar extensiĂłn Xinerama"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configurar sĂłlo la tarjeta \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "ConfiguraciĂłn multi-monitor"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Su sistema soporta configuraciĂłn multi-monitor.\n"
-"ÂżQuĂŠ desea hacer?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Tarjeta grĂĄfica"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Seleccione una tarjeta grĂĄfica"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Elija un servidor X"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Elija un controlador X"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Controlador X"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "ÂżQuĂŠ tipo de configuraciĂłn de XFree desea tener?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Su tarjeta puede admitir aceleraciĂłn 3D pero sĂłlo con XFree %s.\n"
-"XFree %s admite su tarjeta y puede tener mejor comportamiento en 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Su tarjeta puede admitir aceleraciĂłn 3D por hardware con XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s con aceleraciĂłn 3D por hardware"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Su tarjeta puede admitir aceleraciĂłn 3D por hardware con XFree %s,\n"
-"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s con aceleraciĂłn 3D EXPERIMENTAL por hardware"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Su tarjeta sĂłlo puede admitir aceleraciĂłn de 3D por hardware con XFree %s,\n"
-"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR.\n"
-"XFree %s admite su tarjeta y puede tener un mejor comportamiento en 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (instalaciĂłn del controlador de la pantalla)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "ConfiguraciĂłn de XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Seleccione la cantidad de memoria de su tarjeta grĂĄfica"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Elija las opciones para el servidor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Elija un monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Los dos parĂĄmetros crĂ­ticos son la frecuencia de barrido vertical, que "
-"indica la frecuencia\n"
-"a la cual se refresca la pantalla entera, y mĂĄs importante aĂşn, la "
-"frecuencia de sincronizaciĂłn\n"
-"horizontal, la cual es la frecuencia de las lĂ­neas de barrido horizontal.\n"
-"\n"
-"Es MUY IMPORTANTE que no especifique un tipo de monitor con una\n"
-"frecuencia de sincronizaciĂłn superior a la capacidad real de su monitor:\n"
-"puede daĂąar su monitor.\n"
-" En caso de duda, elija una configuraciĂłn conservadora."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Frecuencia de barrido horizontal"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Frecuencia de barrido vertical"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "El monitor no estĂĄ configurado"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "La tarjeta grĂĄfica todavĂ­a no estĂĄ configurada"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "AĂşn no ha elegido las resoluciones"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "ÂżDesea probar la configuraciĂłn?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Advertencia: probar con esta tarjeta de vĂ­deo puede colgar su ordenador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Probar la configuraciĂłn"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"intente cambiar algunos parĂĄmetros"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "OcurriĂł un error:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Saliendo en %d segundos"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "ÂżEs ĂŠsta la configuraciĂłn correcta?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "OcurriĂł un error, intente cambiar algunos parĂĄmetros"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "ResoluciĂłn"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Elija la resoluciĂłn y la profundidad de colores"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Tarjeta grĂĄfica: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servidor XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "MĂĄs"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Aceptar"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modo experto"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mostrar todo"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resoluciones"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "DistribuciĂłn del teclado: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Tipo de ratĂłn: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Dispositivo del ratĂłn: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Frecuencia horizontal del monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Frecuencia vertical del monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Tarjeta grĂĄfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "IdentificaciĂłn de la tarjeta grĂĄfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Memoria de la tarjeta grĂĄfica: %s KB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Profundidad de color: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "ResoluciĂłn: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Servidor XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Controlador XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Preparando la configuraciĂłn de X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "ÂżQuĂŠ desea hacer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Cambiar el monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Cambiar la tarjeta grĂĄfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Cambiar las opciones del servidor X"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Cambiar la resoluciĂłn"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostrar informaciĂłn"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Probar de nuevo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Salir"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"ÂżConservar los cambios?\n"
-"La configuraciĂłn actual es:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X al arrancar"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Puede configurar su computadora para que inicie X automĂĄticamente\n"
-"al arrancar. ÂżDesea que se lance X cuando reinicie?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Abra de nuevo una sesiĂłn %s para activar los cambios"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Por favor salga de la sesiĂłn y luego pulse Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 colores (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil colores (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil colores (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millones de colores (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 billones de colores (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB o mĂĄs"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA estĂĄndar, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (sin 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA extendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA no-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Monitor multi-frecuencia que soporta 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor que soporta 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor que soporta 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Primer sector de la particiĂłn de arranque"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Primer sector del disco (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "InstalaciĂłn de SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "ÂżDĂłnde quiere instalar el cargador de arranque?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "InstalaciĂłn de LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO con menĂş de texto"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO con menĂş grĂĄfico"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Arrancar desde DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Opciones principales del cargador de arranque"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Cargador de arranque a usar"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "InstalaciĂłn del cargador de arranque"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Dispositivo de arranque"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (no funciona con BIOS antiguos)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Compacto"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "compacto"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Modo de vĂ­deo"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Demora antes de arrancar la imagen predeterminada"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "ContraseĂąa"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "ContraseĂąa (de nuevo)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Restringir las opciones de la lĂ­nea de comandos"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "restringir"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Limpiar /tmp en cada inicio del equipo"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Precise el tamaĂąo de la RAM si es necesario (se encontraron %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Activar perfiles mĂşltiples"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Proporcione el tamaĂąo de la RAM en MB"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"La opciĂłn \"Restringir las opciones de la lĂ­nea de comandos\"\n"
-"no tiene sentido sin contraseĂąa"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Vuelva a intentarlo, por favor"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Las contraseĂąas no coinciden"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Mensaje de inicio"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Demora de open firmware"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Tiempo de espera de arranque del nĂşcleo"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "ÂżHabilitar el arranque desde CD?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "ÂżHabilitar el arranque de OF?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "ÂżSO predeterminado?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"DecidiĂł instalar el cargador de arranque en una particiĂłn.\n"
-"Esto implica que ya tiene un cargador de arranque en el disco desde el que "
-"arranca (ej: System Commander).\n"
-"\n"
-"ÂżDesde quĂŠ disco arranca?"
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"AquĂ­ estĂĄn las diferentes entradas.\n"
-"Puede aĂąadir otras o cambiar las que ya existen."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "AĂąadir"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Hecho"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Modificar"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "ÂżQuĂŠ tipo de entrada desea aĂąadir?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Otro SO (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Otro SO (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Otro SO (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Imagen"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "RaĂ­z"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "AĂąadir"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Lectura/Escritura"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabla"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Inseguro"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Etiqueta"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Por defecto"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "TamaĂąo de initrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "NoVideo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Quitar entrada"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "No se admite una etiqueta vacĂ­a"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Debe especificar una imĂĄgen del nĂşcleo"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Debe especificar una particiĂłn raĂ­z"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Esta etiqueta ya estĂĄ en uso"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s interfaces %s encontradas"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "ÂżTiene alguna otra?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "ÂżTiene alguna interfaz %s?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "No"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "SĂ­"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Ver informaciĂłn sobre el hardware"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instalando controlador para la tarjeta %s %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(mĂłdulo %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "ÂżQuĂŠ controlador de %s debo probar?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"En algunos casos, el controlador de %s necesita informaciĂłn extra\n"
-"para funcionar correctamente, aunque normalmente funcione sin ella.\n"
-"ÂżDesea especificar informaciĂłn extra para el controlador o dejar que el "
-"mismo\n"
-"pruebe su equipo y encuentre la informaciĂłn que necesita? A veces,\n"
-"el probar el equipo puede provocar que ĂŠste se cuelgue, pero no deberĂ­a\n"
-"causar ningĂşn daĂąo."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "AutodetecciĂłn"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Especificar las opciones"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Ahora puede proporcionar las opciones al mĂłdulo %s.\n"
-"Note que cualquier direcciĂłn debe ingresarse con el prefijo 0x como '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"AquĂ­ deben ir las diferentes opciones para el mĂłdulo %s.\n"
-"Las opciones son de la forma \"nombre=valor nombre2=valor2 ...\".\n"
-"Por ejemplo, \"io=0x300 irq=7\""
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opciones de los mĂłdulos:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Error al cargar el mĂłdulo %s.\n"
-"ÂżDesea intentarlo de nuevo con otros parĂĄmetros?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "acceso a programas X"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "acceso a herramientas rpm"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "permitir \"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "acceso a archivos administrativos"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s ya fue aĂąadido)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Esta contraseĂąa es demasiado sencilla"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Introduzca el nombre de usuario"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"El nombre de usuario (login) sĂłlo debe contener letras, nĂşmeros, `-' y `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Este nombre de usuario ya fue aĂąadido"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "AĂąadir un usuario"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Introduzca un usuario\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Aceptar el usuario"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Nombre y apellidos"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Nombre del usuario"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Icono"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Entrada automĂĄtica"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Puede configurar su computadora para que entre automĂĄticamente\n"
-"en sesiĂłn con un usuario dado al arrancar. ÂżDesea esa funcionalidad?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Elija el usuario predeterminado:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Elija el gestor de ventanas a ejecutar:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Por favor, elija el idioma a usar."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr ""
-"Puede elegir otros idiomas, que estarĂĄn disponibles despuĂŠs de la instalaciĂłn"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Todo"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Permitir a todos los usuarios"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalizada"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "No compartir"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Se necesita instalar el paquete %s. ÂżQuiere instalarlo?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Puede exportar usando NFS o Samba. ÂżCuĂĄl elige"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Falta el paquete obligatorio %s"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-"ÂżDesea permitir a los usuarios exportar algunos directorios personales?\n"
-"Si lo hace, los usuarios podrĂĄn simplemente hacer clic sobre \"Compartir\" en konqueror y nautilus.\n"
-"\n"
-"\"Personalizar\" permite una granularidad por usuario.\n"
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "Lanzar userdrake"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"La comparticiĂłn por usuario utiliza el grupo \"fileshare\". \n"
-"Puede utilizar userdrake para aĂąadir un usuario a este grupo."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Bienvenidos, crackers"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Pobre"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "EstĂĄndar"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Alta"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "MĂĄs alta"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoica"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Este nivel se debe usar con mucho cuidado. Hace su sistema mĂĄs simple de\n"
-"usar, pero tambiĂŠn mucho mĂĄs vulnerable: no debe usarse para una mĂĄquina\n"
-"conectada en red con otras o a Internet. No hay contraseĂąas de acceso."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Las contraseĂąas estĂĄn activadas, pero tampoco se recomienda usar este\n"
-"nivel para un ordenador conectado a una red."
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Éste es el nivel de seguridad estándar recomendado para una máquina que se\n"
-"utilizarĂĄ para conectarse a la Internet como cliente."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Ya hay algunas restricciones, y todas las noches se corren mĂĄs "
-"verificaciones automĂĄticas."
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Con este nivel de seguridad, es posible utilizar el sistema como un "
-"servidor.\n"
-"La seguridad es lo suficientemente alta como para usar el sistema como un\n"
-"servidor que acepte conexiones de mĂşltiples clientes. Nota: si su mĂĄquina "
-"sĂłlo es un cliente en la Internet, mejor deberĂ­a elegir un nivel inferior."
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Basado en el nivel anterior, pero el sistema estĂĄ completamente cerrado.\n"
-"Las caracterĂ­sticas de seguridad estĂĄn al mĂĄximo."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Elegir el nivel de seguridad"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Nivel de seguridad"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Utilizar libsafe para los servidores"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Una biblioteca que le defiende ante ataques de desbordamiento de bĂşfer y "
-"ataques con cadenas de formato."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"ÂĄBienvenido a %s, el selector de SO de arranque!\n"
-"\n"
-"Elija un sistema operativo de la lista o espere %d segundos\n"
-"para que arranque el sistema predeterminado.\n"
-"\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "ÂĄBienvenido a GRUB, el selector de SO de arranque!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Use las teclas %c y %c para seleccionar una entrada."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Pulse intro para iniciar el SO elegido, pulse 'e' para editar"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "los comandos antes de iniciar, o pulse 'c' para una linea de comandos."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Se va a iniciar la entrada resaltada en %d segundos."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "no hay espacio suficiente en /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Escritorio"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "MenĂş inicio"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "No puede instalar el cargador de arranque en una particiĂłn %s\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "todavĂ­a no estĂĄ implementada la ayuda.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "ConfiguraciĂłn del estilo de arranque"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Archivo"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Archivo/_Salir"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>S"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Monitor categorizante de estilo nuevo"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Monitor de estilo nuevo"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Monitor tradicional"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Monitor tradicional Gtk+"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Iniciar Aurora en el momento del arranque"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Modo de Lilo/Grub"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Modo de Yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"En este momento estĂĄ usando %s como gestor de arranque.\n"
-"Haga click sobre configurar para lanzar el asistente de configuraciĂłn."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Configurar"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Modo del sistema"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Lanzar el sistema X-Window al comenzar"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "No, no deseo entrada automĂĄtica"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "SĂ­, deseo entrada automĂĄtica con este (usuario, escritorio)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "Aceptar"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "ÂĄno se puede abrir /etc/inittab para lectura: %s !"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutos"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minuto"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d segundos"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "No se pueden realizar instantĂĄneas de pantalla antes del particionado"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-"Luego de la instalaciĂłn estarĂĄn disponibles las instantĂĄneas de pantalla en %"
-"s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Francia"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "BĂŠlgica"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "RepĂşblica Checa"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Alemania"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Grecia"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Noruega"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Suecia"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Holanda"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Italia"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Austria"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Estados Unidos"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Por favor, haga primero una copia de seguridad de sus datos"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "ÂĄLea con cuidado!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Si piensa usar aboot, no olvide dejar espacio libre (2048 sectores es\n"
-"suficiente) al principio del disco"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Error"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Asistente"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Elija una acciĂłn"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Tiene una particiĂłn FAT de gran tamaĂąo\n"
-"(generalmente usada por DOS/Windows de MicroSoft).\n"
-"Le sugiero que primero cambie el tamaĂąo de la misma\n"
-"(para eso haga clic sobre ella, y luego sobre \"Redimensionar\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Por favor, haga clic sobre una particiĂłn"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detalles"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Sistema de. archivos. con journal"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Intercambio"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "VacĂ­o"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Otros"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Tipos de sistemas de archivos:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Crear"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tipo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Use \"%s\" en su lugar"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Borrar"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Use \"Desmontar\" primero"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Se perderĂĄn todos los datos de la particiĂłn %s despuĂŠs de cambiar su tipo"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Elija una particiĂłn"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Elija otra particiĂłn"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Salir"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Cambiar al modo experto"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Cambiar al modo normal"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Deshacer"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "ÂżSeguir adelante?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Salir sin grabar"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "ÂżSalir del programa sin grabar la tabla de particiones?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "ÂżDesea guardar las modificaciones en /etc/fstab?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "AsignaciĂłn automĂĄtica"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Borrar todas"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "InformaciĂłn del disco rĂ­gido"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Todas las particiones primarias estĂĄn usadas"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "No se pueden agregar mĂĄs particiones"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Por favor, para tener mĂĄs particiones borre alguna para poder crear una "
-"particiĂłn extendida"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Guardar la tabla de particiones"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Restaurar la tabla de particiones"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Rescatar la tabla de particiones"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Volver a cargar la tabla de particiones"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Montaje automĂĄtico de dispositivos extraĂ­bles"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Elija un archivo"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"La tabla de particiones de respaldo no tiene\n"
-"el mismo tamaĂąo. ÂżDesea continuar de todas formas?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Advertencia"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Inserte un disquete en la unidad\n"
-"Se perderĂĄn todos los datos del disquete"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Tratando de rescatar la tabla de particiones"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "InformaciĂłn detallada"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Punto de montaje"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Opciones"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Redimensionar"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Desplazar"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatear"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Montar"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "AĂąadir al RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "AĂąadir al LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Desmontar"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Quitar del RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Quitar del LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Modificar el RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Usar para loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Crear una particiĂłn nueva"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Sector de comienzo: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "TamaĂąo en MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Tipo de sistema de. archivos: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Punto de montaje: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Preferencia: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "ÂżBorrar el archivo de loopback?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Cambiar el tipo de particiĂłn"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "ÂżQuĂŠ sistema de archivos desea?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Cambiando de ext2 a ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "ÂżDonde desea montar el archivo de loopback %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "ÂżDĂłnde desea montar el dispositivo %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"No se puede deseleccionar el punto de montaje ya que esta particiĂłn\n"
-"se usa para un montaje en loopback.\n"
-"Quite el montaje de loopback primero"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Calculando los lĂ­mites del sistema de archivos FAT"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Redimensionando"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Esta particiĂłn no es redimensionable"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr ""
-"DeberĂ­a hacer una copia de seguridad de todos los datos de esta particiĂłn"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Se perderĂĄn todos los datos de la particiĂłn %s tras cambiar su tamaĂąo"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Eligiendo el tamaĂąo nuevo"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "TamaĂąo nuevo en MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "ÂżA quĂŠ disco desea desplazarla?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sector"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "ÂżA quĂŠ sector desea desplazarla?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Desplazando"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Desplazando una particiĂłn..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Elegir un RAID existente al que aĂąadir"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "nuevo"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Elegir un LVM existente al que aĂąadir"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "Âżnombre de LVM?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Esta particiĂłn no puede usarse para el loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Nombre del archivo de loopback: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Indique el nombre de un archivo"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr ""
-"El archivo ya lo utiliza otro dispositivo loopback.\n"
-"Elija otro archivo, por favor"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "El archivo ya existe. ÂżDesea usarlo?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Opciones de montaje"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Varios"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "dispositivo"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "nivel"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "tamaĂąo de los bloques"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Cuidado: esta operaciĂłn es peligrosa."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "ÂżQuĂŠ tipo de particionamiento?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Disculpe, pero no se permite la creaciĂłn de una particiĂłn /boot tan lejos\n"
-"en el disco (en un cilindro > 1024). Puede usar lilo LILO (y es probable "
-"que\n"
-"no funcione), o bien no utiliza LILO (y entonces no necesita /boot)"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"La particiĂłn que escogiĂł para usar como raĂ­z (/) estĂĄ fĂ­sicamente ubicada\n"
-"despuĂŠs del 1024Âş cilindro del disco rĂ­gido, y no tiene particiĂłn /boot.\n"
-"Si piensa usar el cargador de arranque LILO, tenga en cuenta que tiene\n"
-"que aĂąadir una particiĂłn /boot"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"EligiĂł una particiĂłn RAID en software como particiĂłn raĂ­z (/).\n"
-"NingĂşn cargador de arranque es capaz de manejarlo sin una particiĂłn /boot.\n"
-"AsĂ­ que tenga en cuenta que tiene que aĂąadir una particiĂłn /boot."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "ÂĄSe escribirĂĄ al disco la tabla de particiones de la unidad %s!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Necesita reiniciar el equipo para que la modificaciĂłn tenga efecto"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Se perderĂĄn todos los datos de la particiĂłn %s despuĂŠs de formatearla"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formateando"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formateando el archivo de loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formateando la particiĂłn %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Ocultar archivos"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Mover los archivos a la nueva particiĂłn"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"El directorio %s ya tiene algunos datos\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Moviendo los archivos a la nueva particiĂłn"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Copiando %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Borrando %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "la particiĂłn %s ahora se conoce como %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Dispositivo: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Letra DOS: %s (simplemente una adivinanza)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tipo: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Nombre: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Comienzo: sector %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "TamaĂąo: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sectores"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cilindros %d a %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formateado\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "No formateado\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Montado\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Archivo(s) de loopback:\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"ParticiĂłn predeterminada de arranque\n"
-" (para arranque de MS-DOS, no para lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Nivel %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "TamaĂąo de los bloques %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Discos-RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Nombre del archivo de loopback: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Es probable que esta particiĂłn sea\n"
-"una particiĂłn de Controlador, probablemente\n"
-"deberĂ­a dejarla como estĂĄ.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Esta particiĂłn especial de Bootstrap\n"
-"es para el arranque\n"
-"dual de su sistema.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "TamaĂąo: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "GeometrĂ­a: %s cilindros, %s cabezas, %s sectores\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Discos-LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Tipo de la tabla de particiones: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "en el bus %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Opciones: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Clave de cifrado del sistema de archivos"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Elija la clave de cifrado de su sistema de archivos"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Esta clave de cifrado es demasiado simple\n"
-"(tiene que tener por lo menos una longitud de %d caracteres)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "Las claves de cifrado no coinciden"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Clave de cifrado"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Clave de cifrado (otra vez)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Cambiar tipo"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Por favor, haga clic sobre un medio"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Buscar servidores"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formateo de %s fallĂł"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "No sĂŠ cĂłmo formatear %s en el tipo %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "fallĂł el montaje de la particiĂłn %s en el directorio %s"
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck fallĂł con cĂłdigo de salida %d o seĂąal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "error desmontando %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "simple"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "con /usr"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "servidor"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "No se puede usar JFS para particiones menores de 32MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "No se puede usar ReiserFS para particiones menores de 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Los puntos de montaje deben comenzar con una /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Ya existe una particiĂłn con el punto de montaje %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "No puede usar un Volumen LĂłgico LVM para el punto de montaje %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Este directorio deberĂ­a permanecer dentro del sistema de archivos raĂ­z"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Necesita un sistema de archivos verdadero (ext2, reiserfs) para este punto "
-"de montaje\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-"No puede usar un sistema de archivos cifrado para el punto de montaje %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "No hay espacio libre suficiente para la asignaciĂłn automĂĄtica"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Nada para hacer"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Error al abrir %s para escribir: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"OcurriĂł un error - no se encontrĂł ningĂşn dispositivo vĂĄlido para crear los "
-"nuevos sistemas de archivos. Por favor, verifique su equipo para saber la "
-"razĂłn de este fallo"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "ÂĄNo tiene ninguna particiĂłn!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux es un sistema multiusuario, y esto significa que cada usuario\n"
-"puede tener sus preferencias propias, sus archivos propios, y asĂ­\n"
-"sucesivamente. Puede leer la \"GuĂ­a del Usuario\" para aprender mĂĄs. Pero,\n"
-"a diferencia de \"root\", que es el administrador, los usuarios que agregue\n"
-"aquĂ­ no podrĂĄn cambiar nada excepto su configuraciĂłn y sus archivos\n"
-"propios. TendrĂĄ que crear al menos un usuario no privilegiado para Usted\n"
-"mismo. Esa cuenta es donde deberĂ­a conectarse para el uso diario. Aunque es\n"
-"muy prĂĄctico ingresar como \"root\" diariamente, ÂĄtambiĂŠn puede ser muy\n"
-"peligroso! El error mĂĄs leve podrĂ­a significar que su sistema deje de\n"
-"funcionar. Si comete un error serio como usuario no privilegiado, sĂłlo\n"
-"puede llegar a perder algo de informaciĂłn, pero no todo el sistema.\n"
-"\n"
-"Primero tendrĂĄ que ingresar su nombre real. Esto no es obligatorio, por\n"
-"supuesto ya que, en realidad, puede ingresar lo que desee. DrakX tomarĂĄ\n"
-"entonces la primer palabra que ingresĂł y la copiarĂĄ al campo \"Nombre de\n"
-"usuario\". Este es el nombre que este usuario en particular usarĂĄ para\n"
-"ingresar al sistema. Lo puede cambiar. Luego tendrĂĄ que ingresar una\n"
-"contraseĂąa aquĂ­. La contraseĂąa de un usuario no privilegiado (regular) no\n"
-"es tan crucial como la de \"root\" desde el punto de vista de la seguridad,\n"
-"pero esto no es razĂłn alguna para obviarla - despuĂŠs de todo, son sus\n"
-"archivos los que estĂĄn en riesgo.\n"
-"\n"
-"Si hace clic sobre \"Aceptar usuario\", entonces puede agregar tantos como\n"
-"desee. Agregue un usuario para cada uno de sus amigos: por ejemplo su padre\n"
-"o su hermana. Cuando haya terminado de agregar todos los usuarios que\n"
-"desee, seleccione \"Hecho\".\n"
-"\n"
-"Hacer clic sobre el botĂłn \"Avanzadas\" le permite cambiar el \"shell\"\n"
-"predeterminado para ese usuario (bash por defecto)."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Arriba se listan las particiones Linux existentes que se detectaron en su\n"
-"disco rĂ­gido. Puede mantener las elecciones hechas por el asistente, las\n"
-"mismas son buenas para las instalaciones mĂĄs comunes. Si hace cambios, al\n"
-"menos debe definir una particiĂłn raĂ­z (\"/\"). No elija una particiĂłn muy\n"
-"pequeĂąa o no podrĂĄ instalar software suficiente. Si desea almacenar sus\n"
-"datos en una particiĂłn separada, tambiĂŠn puede necesitar crear una\n"
-"particiĂłn para \"/home\" (sĂłlo es posible si tiene mĂĄs de una particiĂłn\n"
-"Linux disponible).\n"
-"\n"
-"Cada particiĂłn se lista como sigue: \"Nombre\", \"Capacidad\".\n"
-"\n"
-"\"Nombre\" estĂĄ estructurado: \"tipo de disco rĂ­gido\", \"nĂşmero de disco\n"
-"rĂ­gido\", \"nĂşmero de particiĂłn\" (por ejemplo, \"hda1\").\n"
-"\n"
-"\"Tipo de disco rĂ­gido\" es \"hd\" si su disco es un disco IDE y \"sd\" si\n"
-"el mismo es un disco SCSI.\n"
-"\n"
-"\"NĂşmero de disco rĂ­gido\" siempre es una letra que sigue a \"hd\" o a\n"
-"\"sd\". Para los discos IDE:\n"
-"\n"
-" * \"a\" significa \"disco rĂ­gido maestro en la controladora IDE primaria"
-"\",\n"
-"\n"
-" * \"b\" significa \"disco rĂ­gido esclavo en la controladora IDE primaria"
-"\",\n"
-"\n"
-" * \"c\" significa \"disco rĂ­gido maestro en la controladora IDE\n"
-"secundaria\",\n"
-"\n"
-" * \"d\" significa \"disco rĂ­gido esclavo en la controladora IDE\n"
-"secundaria\".\n"
-"\n"
-"Para los discos SCSI, una \"a\" significa \"SCSI ID menor\", una \"b\"\n"
-"significa \"segunda SCSI ID menor\", etc."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"La instalaciĂłn Mandrake Linux se divide en varios CD-ROMs. DrakX sabe si un\n"
-"paquete seleccionado se encuentra en otro CD y expulsarĂĄ el CD corriente y\n"
-"le pedirĂĄ que inserte uno diferente cuando sea necesario."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"Ahora es el momento de especificar los programas que desea instalar en su\n"
-"sistema. Hay miles de paquetes disponibles para Mandrake Linux, y no se\n"
-"supone que los conozca a todos de memoria.\n"
-"\n"
-"Si estĂĄ realizando una instalaciĂłn estĂĄndar desde un CD-ROM, primero se le\n"
-"pedirĂĄ que especifique los CDs que tiene (sĂłlo en modo Experto). Verifique\n"
-"las etiquetas de los CDs y marque las casillas que corresponden a los que\n"
-"tiene disponibles para la instalaciĂłn. Haga clic sobre \"Aceptar\" cuando\n"
-"estĂŠ listo para continuar.\n"
-"\n"
-"Los paquetes se ordenan en grupos que corresponden a un uso particular de\n"
-"su mĂĄquina. Los grupos en sĂ­ mismos estĂĄn clasificados en cuatro secciones:\n"
-"\n"
-" * \"EstaciĂłn de trabajo\": si planea utilizar su mĂĄquina como una estaciĂłn\n"
-"de trabajo, seleccione uno o mĂĄs grupos correspondientes.\n"
-"\n"
-" * \"Desarrollo\": si la mĂĄquina se utilizarĂĄ para programaciĂłn, elija\n"
-"el(los) grupo(s) deseado(s).\n"
-"\n"
-" * \"Servidor\": finalmente, si se pretende usar la mĂĄquina como un "
-"servidor\n"
-"aquĂ­ puede seleccionar los servicios mĂĄs comunes que desea que se instalen\n"
-"en la misma.\n"
-"\n"
-" * \"Entorno grĂĄfico\": seleccione aquĂ­ su entorno grĂĄfico preferido. Si\n"
-"desea tener una estaciĂłn de trabajo grĂĄfica, ÂĄseleccione al menos uno!\n"
-"\n"
-"Si mueve el cursor del ratĂłn sobre el nombre de un grupo se mostrarĂĄ un\n"
-"pequeĂąo texto explicativo acerca de ese grupo. Si deselecciona todos los\n"
-"grupos cuando estĂĄ realizando una instalaciĂłn regular (es decir, no una\n"
-"actualizaciĂłn), aparecerĂĄ un diĂĄlogo que propone opciones diferentes para\n"
-"una instalaciĂłn mĂ­nima:\n"
-"\n"
-" * \"Con X\": instala la menor cantidad de paquetes posible para tener un\n"
-"escritorio grĂĄfico que funcione;\n"
-"\n"
-" * \"Con documentaciĂłn bĂĄsica\": instala el sistema base mĂĄs algunos\n"
-"utilitarios bĂĄsicos y la documentaciĂłn de los mismos. Esta instalaciĂłn es\n"
-"adecuada para configurar un servidor;\n"
-"\n"
-" * \"InstalaciĂłn realmente mĂ­nima\": instalarĂĄ el mĂ­nimo necesario estricto\n"
-"para obtener un sistema Linux que funciona, sĂłlo en lĂ­nea de comandos. Esta\n"
-"instalaciĂłn ocupa alrededor de 65Mb.\n"
-"\n"
-"Puede marcar la opciĂłn \"SelecciĂłn por paquetes individuales\" que es Ăştil\n"
-"si estĂĄ familiarizado con los paquetes que se ofrecen o si desea tener un\n"
-"control total sobre lo que se instalarĂĄ.\n"
-"\n"
-"Si iniciĂł la instalaciĂłn en el modo \"ActualizaciĂłn\", puede deseleccionar\n"
-"todos los grupos para evitar instalar cualquier paquete nuevo. Esto es Ăştil\n"
-"para reparar o actualizar un sistema existente."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Finalmente, dependiendo de si Usted elige seleccionar los paquetes\n"
-"individuales o no, se le presentarĂĄ un ĂĄrbol que contiene todos los\n"
-"paquetes clasificados por grupos y sub-grupos. Mientras navega por el\n"
-"ĂĄrbol, puede seleccionar grupos enteros, sub-grupos, o simplemente\n"
-"paquetes.\n"
-"\n"
-"Tan pronto como selecciona un paquete en el ĂĄrbol, aparece una descripciĂłn\n"
-"del mismo sobre la derecha. Cuando ha finalizado con su selecciĂłn, haga\n"
-"clic sobre el botĂłn \"Instalar\" que lanzarĂĄ el proceso de instalaciĂłn.\n"
-"Dependiendo de la velocidad de su hardware y de la cantidad de paquetes que\n"
-"se deben instalar, el proceso puede tardar un rato en completarse. En la\n"
-"pantalla se muestra una estimaciĂłn del tiempo necesario para completar la\n"
-"instalaciĂłn para ayudarlo a considerar si tiene tiempo suficiente par\n"
-"disfrutar una taza de cafĂŠ.\n"
-"\n"
-"!! Si ha sido seleccionado un paquete de servidor ya sea intencionalmente o\n"
-"porque era parte de un grupo completo, se le pedirĂĄ que confirme que\n"
-"realmente desea que se instalen esos servidores. Bajo Mandrake Linux,\n"
-"cualquier servidor instalado se inicia de manera predeterminada al momento\n"
-"del arranque. Aunque estos son seguros y no tienen problemas conocidos al\n"
-"momento en que se publicĂł la distribuciĂłn, puede ocurrir que mĂĄs tarde se\n"
-"descubran vulnerabilidades en la seguridad. En particular, si no sabe que\n"
-"es lo que se supone que hace un servicio o la razĂłn por la cual se estĂĄ\n"
-"instalando, entonces haga clic sobre \"No\". Si hace clic sobre \"SĂ­\" se\n"
-"instalarĂĄn todos los servicios listados y de manera predeterminada los\n"
-"mismos arrancarĂĄn automĂĄticamente. !!\n"
-"\n"
-"La opciĂłn \"Dependencias automĂĄticas\" simplemente deshabilita el diĂĄlogo\n"
-"de advertencia cuando el instalador selecciona automĂĄticamente un paquete.\n"
-"Esto ocurre porque se determina que es necesario para satisfacer una\n"
-"dependencia con otro paquete para poder completar la instalaciĂłn\n"
-"satisfactoriamente.\n"
-"\n"
-"El pequeĂąo icono del disquete al final de la lista le permite cargar la\n"
-"lista de paquetes elegida durante una instalaciĂłn previa. Haga clic sobre\n"
-"este icono y se le pedirĂĄ que inserte un disquete creado con anterioridad\n"
-"al final de otra instalaciĂłn. Vea el segundo consejo del Ăşltimo paso para\n"
-"informaciĂłn sobre como crear dicho disquete."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"Ahora se le propone configurar su conexiĂłn de red/Internet. Si desea\n"
-"conectar su computadora a la Internet o a una red de ĂĄrea local, haga clic\n"
-"sobre \"Aceptar\". Se lanzarĂĄ la detecciĂłn automĂĄtica de dispositivos de\n"
-"red y mĂłdems. Si esta detecciĂłn falla, quite la marca de la casilla \"Usar\n"
-"detecciĂłn automĂĄtica\" la prĂłxima vez. TambiĂŠn puede elegir no configurar\n"
-"la red, o hacerlo mĂĄs tarde; en ese caso simplemente haga clic sobre el\n"
-"botĂłn \"Cancelar\".\n"
-"\n"
-"Los tipos de conexiĂłn disponibles son: mĂłdem tradicional, mĂłdem RDSI\n"
-"(ISDN), conexiĂłn ADSL, cable mĂłdem, y finalmente una simple conexiĂłn LAN\n"
-"(Ethernet).\n"
-"\n"
-"AquĂ­ no entraremos en detalle en cada configuraciĂłn. Simplemente debe\n"
-"asegurarse que su Proveedor de Servicios de Internet o su administrador del\n"
-"sistema le proporcionaron todos los parĂĄmetros de configuraciĂłn.\n"
-"\n"
-"Puede consultar el capĂ­tulo de \"GuĂ­a del Usuario\" sobre las conexiones a\n"
-"la Internet para detalles acerca de la configuraciĂłn, o simplemente esperar\n"
-"hasta que su sistema estĂŠ instalado y usar el programa que se describe aquĂ­\n"
-"para configurar su conexiĂłn.\n"
-"\n"
-"Si desea configurar la red mĂĄs tarde, luego de la instalaciĂłn, o si ha\n"
-"finalizado de configurar su conexiĂłn de red, haga clic sobre \"Cancelar\"."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Ahora puede elegir los servicios que desea iniciar durante el arranque.\n"
-"\n"
-"AquĂ­ se presentan todos los servicios disponibles con la instalaciĂłn\n"
-"corriente. Debe revisarlos con cuidado y quitar la marca de aquellos que no\n"
-"siempre son necesarios al arrancar.\n"
-"\n"
-"Puede obtener un pequeĂąo texto explicativo acerca de un servicio\n"
-"seleccionando un servicio especĂ­fico. Sin embargo, si no estĂĄ seguro si un\n"
-"servicio es Ăştil o no, es mĂĄs seguro dejar el comportamiento\n"
-"predeterminado.\n"
-"\n"
-"!! Tenga mucho cuidado en esta etapa si pretende usar su mĂĄquina como un\n"
-"servidor: probablemente no desearĂĄ arrancar servicios que no necesita. Por\n"
-"favor recuerde que varios servicios pueden ser peligrosos si se habilitan\n"
-"en un servidor. En general, seleccione sĂłlo aquellos servicios que\n"
-"realmente necesita. !!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"GNU/Linux administra la hora en GMT (\"Greenwich Mean Time\", Hora del\n"
-"Meridiano de Greenwich) y la traduce a la hora local de acuerdo al huso\n"
-"horario que Usted seleccionĂł. Sin embargo, es posible desactivar esto\n"
-"quitando la marca de la casilla \"Reloj interno puesto a GMT\" de forma tal\n"
-"que el reloj de hardware es el mismo que el del sistema. Esto es Ăştil\n"
-"cuando la mĂĄquina alberga otro sistema operativo como Windows.\n"
-"\n"
-"La opciĂłn \"SincronizaciĂłn automĂĄtica de hora (usando NTP)\" regularĂĄ\n"
-"automĂĄticamente el reloj conectĂĄndose a un servidor remoto de la hora en la\n"
-"Internet. Elija un servidor ubicado cerca suyo en la lista que se presenta.\n"
-"Por supuesto debe tener una conexiĂłn con la Internet funcionando para que\n"
-"esta caracterĂ­stica funcione. La misma instalarĂĄ en su mĂĄquina un servidor\n"
-"de la hora que, opcionalmente, puede ser utilizado por otras mĂĄquinas en su\n"
-"red local."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X (por X Window System) es el corazĂłn de la interfaz grĂĄfica de GNU/Linux\n"
-"en el que se apoyan todos los entornos grĂĄficos (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) que se incluyen con Mandrake Linux. En esta secciĂłn,\n"
-"DrakX intentarĂĄ configurar a X automĂĄticamente.\n"
-"\n"
-"Es extremadamente raro que esto falle, a menos que el hardware sea muy\n"
-"antiguo (o muy nuevo). Si no falla, arrancarĂĄ X automĂĄticamente con la\n"
-"mejor resoluciĂłn posible dependiendo del tamaĂąo de su monitor. Luego\n"
-"aparecerĂĄ una ventana que le pregunta si la puede ver.\n"
-"\n"
-"Si estĂĄ haciendo una instalaciĂłn en modo \"Experto\", ingresarĂĄ al\n"
-"asistente de configuraciĂłn de X. Para mĂĄs informaciĂłn sobre este asistente\n"
-"vea la secciĂłn correspondiente del manual.\n"
-"\n"
-"Si puede ver el mensaje y responde \"SĂ­\", entonces DrakX continuarĂĄ con el\n"
-"paso siguiente. Si no puede ver el mensaje, simplemente significa que la\n"
-"configuraciĂłn no era la correcta y la prueba terminarĂĄ automĂĄticamente\n"
-"luego de 10 segundos, restaurando la pantalla."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"La primera vez que intenta la configuraciĂłn de X Usted puede no estar muy\n"
-"satisfecho con el resultado (la pantalla es muy pequeĂąa, estĂĄ corrida hacia\n"
-"la izquierda o hacia la derecha...). Es por esto que, incluso si X arranca\n"
-"correctamente, DrakX le preguntarĂĄ si la configuraciĂłn le conviene. TambiĂŠn\n"
-"propondrĂĄ cambiarla mostrando una lista de modos vĂĄlidos que pudo\n"
-"encontrar, y le pedirĂĄ que seleccione alguno.\n"
-"\n"
-"Como Ăşltimo recurso, si todavĂ­a no puede hacer que X funcione, elija\n"
-"\"Cambiar la tarjeta grĂĄfica\", seleccione \"Tarjeta no listada\", y cuando\n"
-"se le pregunte acerca de que servidor desea elija \"FBDev\". Esta es una\n"
-"opciĂłn a prueba de fallos que funciona con cualquier tarjeta grĂĄfica\n"
-"moderna. Luego elija \"Probar nuevamente\" para estar seguro que funciona."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Finalmente, se le preguntarĂĄ si desea ver la interfaz grĂĄfica en el\n"
-"arranque. Note que esta pregunta se le formula incluso si eligiĂł no probar\n"
-"la configuraciĂłn. Obviamente, querrĂĄ responder \"No\" si su mĂĄquina va a\n"
-"actuar como un servidor, o si no tuvo ĂŠxito con la configuraciĂłn de la\n"
-"pantalla."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"El CD-ROM de Mandrake Linux tiene un modo de rescate incorporado. Usted\n"
-"puede acceder al mismo arrancando desde el CD-ROM, presionando la tecla\n"
-">>F1<< durante el arranque y tecleando >>rescue<< en el prompt. Pero en\n"
-"caso que su computadora no pueda arrancar desde el CD-ROM, Usted deberĂ­a\n"
-"recurrir a este paso al menos en dos situaciones:\n"
-"\n"
-" * cuando instala el cargador de arranque, DrakX sobreescribirĂĄ el sector "
-"de\n"
-"arranque (MBR) de su disco principal (a menos que estĂŠ utilizando otro\n"
-"administrador de arranque) de forma tal que pueda iniciar o bien Windows o\n"
-"bien GNU/Linux (asumiendo que tiene Windows en su sistema). Si necesita\n"
-"volver a instalar Windows, el proceso de instalaciĂłn de Microsoft\n"
-"sobreescribirĂĄ el sector de arranque, y entonces ÂĄUsted no podrĂĄ iniciar\n"
-"GNU/Linux!\n"
-"\n"
-" * si surge un problema y Usted no puede iniciar GNU/Linux desde el disco\n"
-"rĂ­gido, este disquete serĂĄ la Ăşnica manera de iniciar GNU/Linux. El mismo\n"
-"contiene una buena cantidad de herramientas del sistema para restaurar un\n"
-"sistema que colapsĂł debido a una falla de energĂ­a, un error de tecleo\n"
-"infortunado, un error en una contraseĂąa, o cualquier otro motivo.\n"
-"\n"
-"Cuando haga clic sobre este paso se le pedirĂĄ que inserte un disquete\n"
-"dentro de la disquetera. El disquete que insertarĂĄ debe estar vacĂ­o o\n"
-"contener datos que no necesite. No tendrĂĄ que formatearlo ya que DrakX\n"
-"sobreescribirĂĄ el disquete por completo."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Ahora necesita elegir el lugar de su disco rĂ­gido donde se instalarĂĄ su\n"
-"sistema operativo Mandrake Linux. Si su disco rĂ­gido estĂĄ vacĂ­o o si un\n"
-"sistema operativo existente estĂĄ utilizando todo el espacio disponible,\n"
-"necesitarĂĄ particionar el disco. BĂĄsicamente, particionar un disco rĂ­gido\n"
-"consiste en dividirlo lĂłgicamente para crear espacio para instalar su\n"
-"sistema Mandrake Linux nuevo.\n"
-"\n"
-"Debido a que los efectos del particionado por lo general son irreversibles,\n"
-"el particionado puede ser intimidante y estresante si Usted es un usuario\n"
-"inexperto. Por fortuna, hay un asistente que simplifica este proceso. Antes\n"
-"de comenzar, por favor consulte el manual y tĂłmese su tiempo.\n"
-"\n"
-"Si estĂĄ corriendo la instalaciĂłn en modo Experto, ingresarĂĄ a DiskDrake, la\n"
-"herramienta de particionado de Mandrake Linux, que le permite un ajuste\n"
-"fino de sus particiones. Vea la secciĂłn DiskDrake en la \"GuĂ­a del\n"
-"Usuario\". Desde la interfaz de instalaciĂłn, puede utilizar los asistentes\n"
-"como se describe aquĂ­ haciendo clic sobre el botĂłn \"Asistente\" del\n"
-"diĂĄlogo.\n"
-"\n"
-"Si ya se han definido particiones, ya sea de una instalaciĂłn previa o por\n"
-"medio de otra herramienta de particionado, simplemente seleccione esas para\n"
-"instalar su sistema Linux.\n"
-"\n"
-"Si no hay particiones definidas, necesitarĂĄ crearlas usando el asistente.\n"
-"Dependiendo de la configuraciĂłn de su disco rĂ­gido, estĂĄn disponibles\n"
-"varias opciones:\n"
-"\n"
-" * \"Usar espacio libre\": esta opciĂłn simplemente llevarĂĄ a un "
-"particionado\n"
-"automĂĄtico de su(s) disco(s) vacĂ­o(s). No se le pedirĂĄn mĂĄs detalles ni se\n"
-"le formularĂĄn mĂĄs preguntas.\n"
-"\n"
-" * \"Usar particiĂłn existente\": el asistente ha detectado una o mĂĄs\n"
-"particiones Linux existentes en su disco rĂ­gido. Si desea utilizarlas,\n"
-"elija esta opciĂłn.\n"
-"\n"
-" * \"Usar el espacio libre en la particiĂłn Windows\": si MicrosoftWindows\n"
-"estĂĄ instalado en su disco rĂ­gido y ocupa todo el espacio disponible en el\n"
-"mismo, Usted tiene que liberar espacio para los datos de Linux. Para\n"
-"hacerlo, puede borrar su particiĂłn y datos MicrosoftWindows (vea las\n"
-"soluciones \"Borrar el disco completo\" o \"Modo experto\") o cambie el\n"
-"tamaĂąo de su particiĂłn Windows. El cambio de tamaĂąo se puede realizar sin\n"
-"la pĂŠrdida de datos, siempre y cuando Usted ha desfragmentado con\n"
-"anterioridad la particiĂłn Windows. TambiĂŠn se recomienda hacer una copia de\n"
-"respaldo de sus datos.. Se recomienda esta soluciĂłn si desea utilizar tanto\n"
-"Mandrake Linux como MicrosoftWindows en la misma computadora.\n"
-"\n"
-" Antes de elegir esta opciĂłn, por favor comprenda que despuĂŠs de este\n"
-"procedimiento, el tamaĂąo de su particiĂłn MicrosoftWindows serĂĄ mĂĄs pequeĂąo\n"
-"que ahora. TendrĂĄ menos espacio bajo MicrosoftWindows para almacenar sus\n"
-"datos o instalar software nuevo.\n"
-"\n"
-" * \"Borrar el disco entero\": si desea borrar todos los datos y todas las\n"
-"particiones presentes en su disco rĂ­gido y reemplazarlas con su nuevo\n"
-"sistema Mandrake Linux, elija esta opciĂłn. Tenga cuidado con esta soluciĂłn\n"
-"ya que no podrĂĄ revertir su elecciĂłn despuĂŠs de confirmarla.\n"
-"\n"
-" !! Si elige esta opciĂłn, se perderĂĄn todos los datos en su disco. !!\n"
-"\n"
-" * \"Quitar Windows\": simplemente esto borrarĂĄ todo en el disco y "
-"comenzarĂĄ\n"
-"particionando todo desde cero. Se perderĂĄn todos los datos en su disco.\n"
-"\n"
-" !! Si elige esta opciĂłn, se perderĂĄn todos los datos en su disco. !!\n"
-"\n"
-" * \"Modo experto\": elija esta opciĂłn si desea particionar manualmente su\n"
-"disco rĂ­gido. Tenga cuidado - esta es una elecciĂłn potente pero peligrosa.\n"
-"Puede perder todos sus datos con facilidad. Por lo tanto, no elija esta\n"
-"opciĂłn a menos que sepa lo que estĂĄ haciendo."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"AquĂ­ tiene. Ahora la instalaciĂłn estĂĄ completa y su sistema GNU/Linux estĂĄ\n"
-"listo para ser utilizado. Simplemente haga clic sobre \"Aceptar\" para\n"
-"volver a arrancar el sistema. Puede iniciar GNU/Linux o Windows, cualquiera\n"
-"que prefiera (si estĂĄ usando el arranque dual) tan pronto como su mĂĄquina\n"
-"haya vuelto a arrancar.\n"
-"\n"
-"El botĂłn \"Avanzadas\" (sĂłlo en modo Experto) le muestra dos botones mĂĄs\n"
-"para:\n"
-"\n"
-" * \"Generar un disquete de instalaciĂłn automĂĄtica\": para crear un "
-"disquete\n"
-"de instalaciĂłn que realizarĂĄ una instalaciĂłn completa sin la asistencia de\n"
-"un operador, similar a la instalaciĂłn que ha configurado reciĂŠn.\n"
-"\n"
-" Note que hay dos opciones diferentes disponibles despuĂŠs de hacer clic\n"
-"sobre el botĂłn:\n"
-"\n"
-" * \"Reproducir\". Esta es una instalaciĂłn parcialmente automatizada ya "
-"que\n"
-"la etapa de particionado (y sĂłlo esta etapa) permanece interactiva.\n"
-"\n"
-" * \"Automatizada\". InstalaciĂłn completamente automatizada: el disco "
-"rĂ­gido\n"
-"se sobreescribe por completo, y se pierden todos los datos.\n"
-"\n"
-" Esta caracterĂ­stica es muy Ăştil cuando se instala una cantidad grande de\n"
-"mĂĄquinas similares. Vea la secciĂłn Auto install (en inglĂŠs) en nuestro\n"
-"sitio web.\n"
-"\n"
-" * \"Guardar selecciĂłn de paquetes\"(*): guarda la selecciĂłn de paquetes\n"
-"como se hizo con anterioridad. Luego, cuando haga otra instalaciĂłn, inserte\n"
-"el disquete en la disquetera y ejecute la instalaciĂłn yendo a la pantalla\n"
-"de ayuda con [F1], e ingrese >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) Necesita un disquete formateado con FAT (para crear uno bajo GNU/Linux\n"
-"teclee \"mformat a:\")"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Se debe formatear cualquier particiĂłn nueva que ha sido definida para que\n"
-"se pueda utilizar (formatear significa crear un sistema de archivos).\n"
-"\n"
-"Puede desear volver a formatear algunas particiones ya existentes para\n"
-"borrar cualquier dato que pudieran contener. Si asĂ­ lo desea, por favor\n"
-"seleccione tambiĂŠn dichas particiones.\n"
-"\n"
-"Por favor note que no es necesario volver a formatear todas las particiones\n"
-"pre-existentes. Debe volver a formatear las particiones que contienen el\n"
-"sistema operativo (tales como \"/\", \"/usr\" o \"/var\") pero no tiene que\n"
-"volver a formatear particiones que contienen datos que desea preservar\n"
-"(tĂ­picamente \"/home\").\n"
-"\n"
-"Tenga sumo cuidado cuando selecciona las particiones. DespuĂŠs de formatear,\n"
-"se borrarĂĄn todos los datos en las particiones seleccionadas y no podrĂĄ\n"
-"recuperarlos en absoluto.\n"
-"\n"
-"Haga clic sobre \"Aceptar\" cuando estĂŠ listo para formatear las\n"
-"particiones.\n"
-"\n"
-"Haga clic sobre \"Cancelar\" si desea elegir otra particiĂłn para la\n"
-"instalaciĂłn de su sistema operativo Mandrake Linux nuevo.\n"
-"\n"
-"Haga clic sobre \"Avanzado\" si desea seleccionar las particiones en las\n"
-"que se buscarĂĄn bloques defectuosos en el disco."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"En este momento se estĂĄ instalando su sistema operativo Mandrake Linux\n"
-"nuevo. Dependiendo de la cantidad de paquetes que instalarĂĄ y de la\n"
-"velocidad de su computadora, esta operaciĂłn puede tomar desde unos pocos\n"
-"minutos hasta una cantidad de tiempo significativa.\n"
-"\n"
-"Por favor, tenga paciencia."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-"Puede ser que cuando estĂĄ instalando Mandrake Linux algunos paquetes se\n"
-"hayan actualizado desde la publicaciĂłn inicial. Se pueden haber corregido\n"
-"algunos errores, y solucionado problemas de seguridad. Para permitir que\n"
-"Usted se beneficie de estas actualizaciones, ahora se le propone\n"
-"transferirlas desde la Internet. Elija \"SĂ­\" si tiene funcionando una\n"
-"conexiĂłn con la Internet, o \"No\" si prefiere instalar los paquetes\n"
-"actualizados mĂĄs tarde.\n"
-"\n"
-"Si elije \"SĂ­\" se muestra una lista de lugares desde los que se pueden\n"
-"obtener las actualizaciones. Elija el mĂĄs cercano a Usted. Luego aparece un\n"
-"ĂĄrbol de selecciĂłn de paquetes: revise la selecciĂłn y presione \"Instalar\"\n"
-"para transferir e instalar los paquetes seleccionados, o \"Cancelar\" para\n"
-"abortar."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Antes de continuar, deberĂ­a leer cuidadosamente los tĂŠrminos de la\n"
-"licencia. Los mismos cubren a toda la distribuciĂłn Mandrake Linux, y si\n"
-"Usted no estĂĄ de acuerdo con todos los tĂŠrminos en la misma, haga clic\n"
-"sobre el botĂłn \"Rechazar\". Esto terminarĂĄ la instalaciĂłn inmediatamente.\n"
-"Para continuar con la instalaciĂłn, haga clic sobre el botĂłn \"Aceptar\"."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"En este punto, es tiempo de elegir el nivel de seguridad deseado para su\n"
-"mĂĄquina. Como regla general, cuanto mĂĄs expuesta estĂĄ la mĂĄquina, y cuantos\n"
-"mĂĄs cruciales sean los datos que tenga almacenados el nivel de seguridad en\n"
-"la misma deberĂĄ ser mĂĄs alto. Sin embargo, un nivel de seguridad mĂĄs alto\n"
-"generalmente se obtiene a expensas de la facilidad de uso. Consulte el\n"
-"capĂ­tulo \"msec\" del \"Manual de Referencia\" para obtener mĂĄs informaciĂłn\n"
-"sobre el significado de dichos niveles.\n"
-"\n"
-"Si no sabe que elegir, mantenga la opciĂłn predeterminada."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Ahora necesita elegir quĂŠ particiones se utilizarĂĄn para la instalaciĂłn de\n"
-"su sistema Mandrake Linux. Si las particiones ya han sido definidas, ya sea\n"
-"por una instalaciĂłn previa de GNU/Linux o con otra herramienta de\n"
-"particionado, puede utilizarlas. En caso contrario se deben definir\n"
-"particiones en el disco rĂ­gido.\n"
-"\n"
-"Para crear particiones, primero debe seleccionar un disco rĂ­gido. Puede\n"
-"seleccionar el disco a particionar haciendo clic sobre \"hda\" para el\n"
-"primer disco IDE, \"hdb\" para el segundo, \"sda\" para el primer disco\n"
-"SCSI y asĂ­ sucesivamente.\n"
-"\n"
-"Para particionar el disco rĂ­gido seleccionado, puede utilizar estas\n"
-"opciones:\n"
-"\n"
-" * \"Borrar todo\": esta opciĂłn borra todas las particiones sobre el disco\n"
-"seleccionado.\n"
-"\n"
-" * \"AsignaciĂłn automĂĄtica\": esta opciĂłn le permite crear particiones\n"
-"\"Ext2\" y swap automĂĄticamente en el espacio libre de su disco rĂ­gido.\n"
-"\n"
-" * \"Rescatar tabla de particiones\": si su tabla de particiones estĂĄ\n"
-"daĂąada, puede intentar recuperarla usando esta opciĂłn. Por favor, tenga\n"
-"cuidado y recuerde que puede fallar.\n"
-"\n"
-" * \"MĂĄs\": le da acceso a caracterĂ­sticas adicionales:\n"
-"\n"
-" * \"Guardar tabla de particiones\": guarda la tabla de particiones en "
-"un\n"
-"disquete. Útil para recuperar la tabla de particiones más adelante en caso\n"
-"que sea necesario. Es altamente recomendable realizar este paso.\n"
-"\n"
-" * \"Recuperar tabla de particiones\": esta opciĂłn le permitirĂĄ "
-"restaurar\n"
-"una tabla de particiones guardada previamente en un disquete.\n"
-"\n"
-" * \"Rescatar tabla de particiones\": si su tabla de particiones estĂĄ "
-"daĂąada\n"
-"puede intentar recuperarla utilizando esta opciĂłn. Por favor, tenga cuidado\n"
-"y recuerde que puede fallar.\n"
-"\n"
-" * \"Volver a cargar\": descarta todos los cambios y carga su tabla de\n"
-"particiones inicial.\n"
-"\n"
-" * \"Montaje automĂĄtico de soportes removibles\": si desmarca esta "
-"opciĂłn\n"
-"los usuarios estarĂĄn forzados a montar y desmontar manualmente los soportes\n"
-"removibles como los disquetes y los CD-ROMs.\n"
-"\n"
-" * \"Asistente\": use esta opciĂłn si desea utilizar un asistente para\n"
-"particionar su disco rĂ­gido. Se recomienda esto si no tiene un buen\n"
-"conocimiento del particionado.\n"
-"\n"
-" * \"Deshacer\": use esta opciĂłn para cancelar sus cambios.\n"
-"\n"
-" * \"Cambiar a modo normal/experto\": permite realizar acciones adicionales\n"
-"sobre las particiones (tipo, opciones, formatear) y brinda mĂĄs informaciĂłn.\n"
-"\n"
-" * \"Hecho\": cuando ha terminado de particionar su disco rĂ­gido, esto\n"
-"guardarĂĄ sus cambios en el disco.\n"
-"\n"
-"Nota: todas las opciones son accesibles por medio del teclado. Navegue a\n"
-"travĂŠs de las particiones usando [Tab] y las flechas [Arriba/Abajo].\n"
-"\n"
-"Cuando se selecciona una particiĂłn, puede utilizar:\n"
-"\n"
-" * Ctrl-c para crear una particiĂłn nueva (cuando estĂĄ seleccionada una\n"
-"particiĂłn vacĂ­a);\n"
-"\n"
-" * Ctrl-d para borrar una particiĂłn;\n"
-"\n"
-" * Ctrl-m para configurar el punto de montaje.\n"
-"\n"
-"Para obtener informaciĂłn sobre los distintos tipos de sistemas de archivos\n"
-"disponibles, por favor lea el capĂ­tulo acerca de ext2fs del \"Manual de\n"
-"Referencia\".\n"
-"\n"
-"Si estĂĄ instalando en una mĂĄquina PPC, querrĂĄ crear una pequeĂąa particiĂłn\n"
-"HFS de \"bootstrap\" de al menos 1MB que serĂĄ utilizada por el cargador de\n"
-"arranque yaboot. Si opta por hacer la particiĂłn un poco mĂĄs grande, digamos\n"
-"50 MB, puede ver que es un lugar Ăştil para almacenar un nĂşcleo y ramdisk\n"
-"alternativos para arrancar en situaciones de emergencia."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Se ha detectado mĂĄs de una particiĂłn MicrosoftWindows en su disco rĂ­gido.\n"
-"Por favor, elija aquella a la cual desea cambiarle el tamaĂąo para poder\n"
-"instalar su sistema operativo Mandrake Linux nuevo.\n"
-"\n"
-"Cada particiĂłn se lista como sigue: \"Nombre Linux\", \"Nombre Windows\"\n"
-"\"Capacidad\".\n"
-"\n"
-"\"Nombre Linux\" estĂĄ estructurado: \"tipo de disco rĂ­gido\", \"nĂşmero de\n"
-"disco rĂ­gido\", \"nĂşmero de particiĂłn\" (por ejemplo, \"hda1\").\n"
-"\n"
-"\"Tipo de disco rĂ­gido\" es \"hd\" si su disco es un disco IDE y \"sd\" si\n"
-"el mismo es un disco SCSI.\n"
-"\n"
-"\"NĂşmero de disco rĂ­gido\" siempre es una letra que sigue a \"hd\" o a\n"
-"\"sd\". Para los discos IDE:\n"
-"\n"
-" * \"a\" significa \"disco rĂ­gido maestro en la controladora IDE primaria"
-"\",\n"
-"\n"
-" * \"b\" significa \"disco rĂ­gido esclavo en la controladora IDE primaria"
-"\",\n"
-"\n"
-" * \"c\" significa \"disco rĂ­gido maestro en la controladora IDE\n"
-"secundaria\",\n"
-"\n"
-" * \"d\" significa \"disco rĂ­gido esclavo en la controladora IDE\n"
-"secundaria\".\n"
-"\n"
-"Para los discos SCSI, una \"a\" significa \"SCSI ID menor\", una \"b\"\n"
-"significa \"segunda SCSI ID menor\", etc.\n"
-"\n"
-"\"Nombre Windows\" es la letra de su unidad de disco bajo Windows (el\n"
-"primer disco o particiĂłn se denomina \"C:\")."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Por favor, tenga paciencia. Esta operaciĂłn puede tomar varios minutos."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"DrakX ahora necesita saber si desea realizar una instalaciĂłn por defecto\n"
-"(\"Recomendada\") o si desea tener un control mayor (\"Experto\"). TambiĂŠn\n"
-"puede elegir realizar una instalaciĂłn nueva o una actualizaciĂłn de un\n"
-"sistema Mandrake Linux existente:\n"
-"\n"
-" * \"Instalar\": el sistema anterior se borrarĂĄ por completo. De hecho,\n"
-"dependiendo de lo que su mĂĄquina contiene actualmente, podrĂĄ mantener\n"
-"algunas particiones antiguas (Linux u otras) sin cambios;\n"
-"\n"
-" * \"ActualizaciĂłn\": esta clase de instalaciĂłn le permite simplemente\n"
-"actualizar los paquetes que en este momento estĂĄn instalados en su sistema\n"
-"Mandrake Linux. La misma mantiene las particiones corrientes de sus discos\n"
-"asĂ­ como tambiĂŠn las configuraciones de usuarios. Todos los otros pasos de\n"
-"instalaciĂłn permanecen disponibles con respecto a la instalaciĂłn simple;\n"
-"\n"
-" * \"SĂłlo actualizar paquetes\": esta clase completamente nueva le permite\n"
-"actualizar un sistema Mandrake Linux existente a la vez que mantiene todas\n"
-"las configuraciones del sistema sin cambios. TambiĂŠn es posible aĂąadir\n"
-"paquetes nuevos a la instalaciĂłn corriente.\n"
-"\n"
-"Las actualizaciones deberĂ­an funcionar sin problemas para los sistemas\n"
-"Mandrake Linux comenzando desde la versiĂłn \"8.1\".\n"
-"\n"
-"Dependiendo de su conocimiento de GNU/Linux, por favor elija una de los\n"
-"opciones siguientes:\n"
-"\n"
-" * Recomendada: elija esta si nunca ha instalado un sistema operativo\n"
-"GNU/Linux. La instalaciĂłn serĂĄ muy fĂĄcil y sĂłlo se le formularĂĄn unas pocas\n"
-"preguntas;\n"
-"\n"
-" * Experto: si tiene un conocimiento bueno de GNU/Linux, puede elegir esta\n"
-"clase de instalaciĂłn. La instalaciĂłn experta le permitirĂĄ realizar una\n"
-"instalaciĂłn altamente personalizada. Contestar a algunas de las preguntas\n"
-"puede ser difĂ­cil si no tiene un buen conocimiento de GNU/Linux, entonces\n"
-"no elija esto a menos que sepa lo que estĂĄ haciendo."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Normalmente, DrakX selecciona el teclado adecuado para Usted (dependiendo\n"
-"del idioma que eligiĂł) y Usted ni siquiera verĂĄ este paso. Sin embargo,\n"
-"podrĂ­a no tener un teclado que se corresponde exactamente con su idioma:\n"
-"por ejemplo, si Usted es una persona hispano-parlante que estĂĄ en Argentina\n"
-"o MĂŠjico, su teclado serĂĄ un teclado Latinoamericano, pero si estĂĄ en\n"
-"EspaĂąa serĂĄ uno EspaĂąol. En ambos casos, Usted tendrĂĄ que volver a este\n"
-"paso de la instalaciĂłn y elegir un teclado apropiado de la lista.\n"
-"\n"
-"Haga clic sobre el botĂłn \"MĂĄs\" para que se le presente la lista completa\n"
-"de los teclados soportados."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Por favor, elija su idioma preferido para la instalaciĂłn y el uso del\n"
-"sistema.\n"
-"\n"
-"Al hacer clic sobre el botĂłn \"Avanzado\" podrĂĄ seleccionar otros idiomas\n"
-"para instalar en su estaciĂłn de trabajo. Seleccionar otros idiomas\n"
-"instalarĂĄ los archivos especĂ­ficos para la documentaciĂłn del sistema y las\n"
-"aplicaciones. Por ejemplo, si albergarĂĄ a gente de Francia en su mĂĄquina,\n"
-"seleccione EspaĂąol como idioma principal en la vista de ĂĄrbol y en la\n"
-"secciĂłn avanzada haga clic sobre la estrella gris que corresponde a\n"
-"\"FrancĂŠs|Francia\".\n"
-"\n"
-"Note que se pueden instalar mĂşltiples idiomas. Una vez que ha seleccionado\n"
-"cualquier idioma adicional haga clic sobre el botĂłn \"Aceptar\" para\n"
-"continuar."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"DrakX generalmente detecta la cantidad de botones que tiene su ratĂłn. Si\n"
-"no, asume que Usted tiene un ratĂłn de dos botones y lo configurarĂĄ para que\n"
-"emule el tercer botĂłn. DrakX sabrĂĄ automĂĄticamente si es un ratĂłn PS/2,\n"
-"serie o USB.\n"
-"\n"
-"Si desea especificar un tipo de ratĂłn diferente, seleccione el tipo\n"
-"apropiado de la lista que se proporciona.\n"
-"\n"
-"Si elije un ratĂłn distinto al predeterminado, se le presentarĂĄ una pantalla\n"
-"de prueba. Use los botones y la rueda para verificar que la configuraciĂłn\n"
-"es correcta. Si el ratĂłn no estĂĄ funcionando correctamente, presione la\n"
-"barra espaciadora o [Intro] para \"Cancelar\" y vuelva a elegir."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Por favor seleccione el puerto correcto. Por ejemplo, el puerto \"COM1\"\n"
-"bajo Windows se denomina \"ttyS0\" bajo GNU/Linux."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"Este es el punto de decisiĂłn mĂĄs crucial para la seguridad de su sistema\n"
-"GNU/Linux: tendrĂĄ que ingresar la contraseĂąa de \"root\". \"root\" es el\n"
-"administrador del sistema y es el Ăşnico autorizado a hacer actualizaciones,\n"
-"agregar usuarios, cambiar la configuraciĂłn general del sistema, etc.\n"
-"Resumiendo, ÂĄ\"root\" puede hacer de todo!. Es por esto que deberĂĄ elegir\n"
-"una contraseĂąa que sea difĂ­cil de adivinar DrakX le dirĂĄ si la que eligiĂł\n"
-"es demasiado fĂĄcil. Como puede ver, puede optar por no ingresar una\n"
-"contraseĂąa, pero le recomendamos encarecidamente que ingrese una, aunque\n"
-"sea sĂłlo por una razĂłn: no piense que debido a que Usted arrancĂł GNU/Linux,\n"
-"sus otros sistemas operativos estĂĄn seguros contra los errores. Eso no es\n"
-"cierto debido a que \"root\" puede sobrepasar todas las limitaciones y\n"
-"borrar, sin intenciĂłn, todos los datos que se encuentran en las particiones\n"
-"accediendo a las mismas sin el cuidado suficiente. Es por esto que es\n"
-"importante que sea difĂ­cil convertirse en \"root\".\n"
-"\n"
-"La contraseĂąa deberĂ­a ser una mezcla de caracteres alfanumĂŠricos y tener al\n"
-"menos una longitud de 8 caracteres. Nunca escriba la contraseĂąa de \"root\"\n"
-"eso hace que sea muy fĂĄcil comprometer a un sistema.\n"
-"\n"
-"Sin embargo, por favor no haga la contraseĂąa muy larga o complicada debido\n"
-"a que Usted debe poder recordarla sin realizar mucho esfuerzo.\n"
-"\n"
-"La contraseĂąa no se mostrarĂĄ en la pantalla a medida que Usted la teclee.\n"
-"Por lo tanto, tendrĂĄ que teclear la contraseĂąa dos veces para reducir la\n"
-"posibilidad de un error de tecleo. Si ocurre que Usted comete dos veces el\n"
-"mismo error de tecleo, tendrĂĄ que utilizar esta contraseĂąa \"incorrecta\"\n"
-"la primera vez que se conecte.\n"
-"\n"
-"En modo experto, se le preguntarĂĄ si se conectarĂĄ a un servidor de\n"
-"autenticaciĂłn, por ejemplo NIS o LDAP.\n"
-"\n"
-"Si su red usa el protocolo LDAP (o NIS) para la autenticaciĂłn, seleccione\n"
-"\"LDAP\" (o \"NIS\") como autenticaciĂłn. Si no sabe, pregunte al\n"
-"administrador de su red.\n"
-"\n"
-"Si su computadora no estĂĄ conectada a alguna red administrada, querrĂĄ\n"
-"elegir \"Archivos locales\" para la autenticaciĂłn."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"LILO y grub son cargadores de arranque para GNU/Linux. Normalmente, esta\n"
-"etapa estĂĄ completamente automatizada. De hecho, DrakX analiza el sector de\n"
-"arranque del disco y actĂşa en funciĂłn de lo que encuentre allĂ­:\n"
-"\n"
-" * si encuentra un sector de arranque de Windows, lo reemplazarĂĄ con un\n"
-"sector de arranque de grub/LILO de forma tal que Usted pueda arrancar\n"
-"GNU/Linux u otro sistema operativo;\n"
-"\n"
-" * si encuentra un sector de arranque de grub o LILO, lo reemplazarĂĄ con "
-"uno\n"
-"nuevo;\n"
-"\n"
-"En caso de duda, DrakX mostrarĂĄ un diĂĄlogo con varias opciones.\n"
-"\n"
-" * \"Cargador de arranque a usar\": tiene tres opciones:\n"
-"\n"
-" * \"LILO con menĂş grĂĄfico\": si prefiere a LILO con su interfaz "
-"grĂĄfica.\n"
-"\n"
-" * \"GRUB\": si prefiere a grub (menĂş de texto).\n"
-"\n"
-" * \"LILO con menĂş de texto\": si prefiere a LILO con su interfaz de "
-"texto.\n"
-"\n"
-" * \"Dispositivo de arranque\": en la mayorĂ­a de los casos, no cambiarĂĄ lo\n"
-"predeterminado (\"/dev/hda\"), pero si lo prefiere, el cargador de arranque\n"
-"se puede instalar en el segundo disco rĂ­gido (\"/dev/hdb\"), o incluso en\n"
-"un disquete (\"/dev/fd0\").\n"
-"\n"
-" * \"Demora antes de arrancar la imagen predeterminada\": cuando vuelve a\n"
-"arrancar la computadora, esta es la demora que se garantiza al usuario para\n"
-"elegir en el menĂş del cargador de arranque, una entrada distinta a la\n"
-"predeterminada.\n"
-"\n"
-"!! Tenga presente que si no elige instalar un cargador de arranque\n"
-"(seleccionando \"Cancelar\"), ÂĄDebe asegurarse que tiene una forma de\n"
-"arrancar a su sistema Mandrake Linux! TambiĂŠn debe asegurarse que sabe lo\n"
-"que hace antes de cambiar cualquier opciĂłn. !!\n"
-"\n"
-"Haciendo clic sobre el botĂłn \"Avanzadas\" en este diĂĄlogo se le ofrecerĂĄn\n"
-"muchas opciones avanzadas que estĂĄn reservadas para el usuario experto.\n"
-"\n"
-"Luego que haya configurado los parĂĄmetros generales del cargador de\n"
-"arranque se mostrarĂĄ la lista de opciones de arranque que estarĂĄn\n"
-"disponibles al momento de arrancar.\n"
-"\n"
-"Si hay otro sistema operativo instalado en su mĂĄquina, se agregarĂĄ el mismo\n"
-"automĂĄticamente al menĂş de arranque. AquĂ­ puede elegir ajustar las opciones\n"
-"existentes. Seleccione una entrada y haga clic sobre \"Modificar\" para\n"
-"cambiar los parĂĄmetros de la misma o quitarla; \"AĂąadir\" crea una entrada\n"
-"nueva; y \"Hecho\" va al paso de instalaciĂłn siguiente."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (el LInux LOader) y grub son cargadores de arranque: permiten arrancar\n"
-"ya sea GNU/Linux como cualquier otro sistema operativo presente en su\n"
-"computadora. Normalmente, estos otros sistemas operativos se detectan e\n"
-"instalan correctamente. Si este no es el caso, puede aĂąadir una entrada a\n"
-"mano en esta pantalla. Tenga cuidado de elegir los parĂĄmetros correctos.\n"
-"\n"
-"TambiĂŠn puede no desear dar acceso a estos otros sistemas operativos a\n"
-"cualquiera. En ese caso, puede borrar las entradas correspondientes. Pero\n"
-"entonces, ÂĄnecesitarĂĄ un disquete de arranque para poder arrancar esos\n"
-"otros sistemas operativos!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Debe indicar donde desea colocar la informaciĂłn necesaria para arrancar en\n"
-"GNU/Linux.\n"
-"\n"
-"A menos que sepa exactamente lo que estĂĄ haciendo, elija \"Primer sector\n"
-"del disco (MBR)\"."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-"AquĂ­ seleccionamos un sistema de impresiĂłn para que use su computadora.\n"
-"Otros sistemas operativos pueden ofrecerle uno, pero Mandrake Linux le\n"
-"ofrece tres.\n"
-"\n"
-" * \"pdq\"\"print, don't queue\" (imprimir sin poner en cola), es la\n"
-"elecciĂłn si Usted tiene una conexiĂłn directa a su impresora y desea evitar\n"
-"el pĂĄnico de los papeles trabados, y no tiene impresora en red alguna.\n"
-"ManejarĂĄ sĂłlo casos de red muy simples y es algo lento para las redes.\n"
-"Elija \"pdq\" si esta es su luna de miel con GNU/Linux. DespuĂŠs de la\n"
-"instalaciĂłn puede cambiar sus elecciones ejecutando PrinterDrake desde el\n"
-"Centro de Control Mandrake y eligiendo el modo experto.\n"
-"\n"
-" * \"CUPS\"\"Common Unix Printing System\" (Sistema de ImpresiĂłn ComĂşn de\n"
-"Unix) es excelente imprimiendo en su impresora local y tambiĂŠn en la otra\n"
-"punta del planeta. Es simple y puede actuar como servidor o cliente para el\n"
-"sistema de impresiĂłn antiguo \"lpd\", por lo que es compatible con los\n"
-"sistemas anteriores. Puede hacer muchas cosas, pero la configuraciĂłn bĂĄsica\n"
-"es tan simple como la de \"pdq\". Si necesita que emule a un servidor\n"
-"\"lpd\", debe encender el demonio \"cups-lpd\". Tiene interfaces grĂĄficas\n"
-"para imprimir o elegir las opciones de la impresora.\n"
-"\n"
-" * \"lprNG\"\"line printer daemon New Generation\" (servidor de impresora "
-"de\n"
-"lĂ­neas Nueva GeneraciĂłn). Este sistema puede hacer aproximadamente las\n"
-"mismas cosas que los otros, pero imprimirĂĄ en impresoras montadas sobre una\n"
-"red Novell, debido a que soporta el protocolo IPX, y puede imprimir\n"
-"directamente a comandos del shell. Si necesita Novell o imprimir a comandos\n"
-"de sin utilizar tuberĂ­as, utilice lprNG. De no ser asĂ­, se prefiere a CUPS\n"
-"ya que es mĂĄs simple y es mejor al trabajar sobre redes."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX ahora detecta cualquier dispositivo IDE presente en su computadora.\n"
-"TambiĂŠn buscarĂĄ una o mĂĄs tarjetas SCSI PCI en su sistema. Si se encuentra\n"
-"una tarjeta SCSI DrakX instalarĂĄ el controlador apropiado automĂĄticamente.\n"
-"\n"
-"Debido a que la detecciĂłn de hardware a veces no detectarĂĄ alguna pieza de\n"
-"hardware DrakX le pedirĂĄ que confirme si tiene una tarjeta SCSI PCI. Haga\n"
-"clic sobre \"SĂ­\" si sabe que hay una tarjeta SCSI instalada en su mĂĄquina.\n"
-"Se le presentarĂĄ una lista de tarjetas SCSI de la cual elegir. Haga clic\n"
-"sobre \"No\" si no tiene hardware SCSI. Si no estĂĄ seguro puede verificar\n"
-"la lista de hardware detectado en su mĂĄquina seleccionando \"Ver\n"
-"informaciĂłn sobre el hardware\" y haciendo clic sobre \"Aceptar\". Examine\n"
-"la lista de hardware y luego haga clic sobre el botĂłn \"Aceptar\" para\n"
-"volver a la pregunta sobre la interfaz SCSI.\n"
-"\n"
-"Si tiene que seleccionar su adaptador manualmente, DrakX le preguntarĂĄ si\n"
-"desea especificar opciones para el mismo. DeberĂ­a permitir que DrakX sondee\n"
-"el hardware buscando las opciones especĂ­ficas que necesita el hardware para\n"
-"inicializarse. Por lo general esto funciona bien.\n"
-"\n"
-"Si DrakX no puede sondear las opciones que deben pasarse, necesitarĂĄ\n"
-"proporcionar manualmente las opciones al controlador. Por favor revise la\n"
-"\"GuĂ­a del Usuario\" (capĂ­tulo 3, secciĂłn \"Recopilando informaciĂłn acerca\n"
-"de su hardware\") en busca de consejos para recopilar los parĂĄmetros\n"
-"necesarios a partir de la documentaciĂłn del hardware, desde el sitio web\n"
-"del fabricante (si tiene acceso a la Internet) o desde MicrosoftWindows (si\n"
-"utilizaba este hardware con Windows en su sistema)."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"Puede agregar entradas adicionales para Yaboot, ya sea para otros sistemas\n"
-"operativos, nĂşcleos alternativos, o para una imagen de arranque de\n"
-"emergencia.\n"
-"\n"
-"Para otros sistemas operativos, la entrada consiste sĂłlo de una etiqueta y\n"
-"la particiĂłn raĂ­z.\n"
-"\n"
-"Para Linux, hay algunas opciones posibles:\n"
-"\n"
-" * Etiqueta: esta es simplemente el nombre que deberĂĄ teclear en el prompt\n"
-"de yaboot para seleccionar esta opciĂłn de arranque.\n"
-"\n"
-" * Imagen: esta deberĂ­a ser el nombre del nĂşcleo a arrancar. TĂ­picamente,\n"
-"vmlinux o una variaciĂłn de vmlinux con una extensiĂłn.\n"
-"\n"
-" * RaĂ­z: el dispositivo \"root\" o \"/\" para su instalaciĂłn Linux.\n"
-"\n"
-" * AĂąadir: la opciĂłn de aĂąadir al nĂşcleo se usa bastante sobre el hardware\n"
-"Apple para asistir en la inicializaciĂłn del hardware de vĂ­deo, o para\n"
-"habilitar la emulaciĂłn de los botones del ratĂłn con el teclado para los\n"
-"botones 2do y 3ro del ratĂłn que por lo general no tienen los ratones\n"
-"estĂĄndar de Apple. Algunos ejemplos son los siguientes:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: esta opciĂłn se puede usar o bien para cargar los mĂłdulos\n"
-"iniciales, antes que estĂŠ disponible el dispositivo de arranque, o bien\n"
-"cargar una imagen de ramdisk para una situaciĂłn de arranque de emergencia.\n"
-"\n"
-" * TamaĂąo de Initrd: generalmente el tamaĂąo por defecto del ramdisk es 4096\n"
-"bytes. Puede usar esta opciĂłn si necesita asignar un ramdisk mayor.\n"
-"\n"
-" * Lectura-Escritura: normalmente la particiĂłn \"root\" se levanta en modo\n"
-"de sĂłlo lectura, para permitir una verificaciĂłn del sistema de archivos\n"
-"antes que el sistema se levante por completo. AquĂ­ puede cambiar esta\n"
-"opciĂłn.\n"
-"\n"
-" * NoVideo: en caso que el hardware de vĂ­deo de Apple sea excepcionalmente\n"
-"problemĂĄtico, puede seleccionar esta opciĂłn para arrancar en el modo\n"
-"\"novideo\", con soporte nativo para el frame-buffer.\n"
-"\n"
-" * Predeterminada: selecciona a esta entrada como la opciĂłn Linux por\n"
-"defecto, que se puede elegir simplemente presionando [Intro] en el prompt\n"
-"de Yaboot. Esta entrada tambiĂŠn se marcarĂĄ con un \"*\", si presiona [Tab]\n"
-"para ver las selecciones del arranque."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot es un cargador de arranque para el hardware NewWorld MacIntosh. El\n"
-"mismo puede arrancar o GNU/Linux, o MacOS o MacOSX si se encuentran en su\n"
-"computadora. Normalmente, estos sistemas operativos se detectan e instalan\n"
-"correctamente. Si este no es el caso, puede agregar una entrada a mano en\n"
-"esta pantalla. Tenga cuidado de elegir los parĂĄmetros correctos.\n"
-"\n"
-"Las opciones principales de Yaboot son:\n"
-"\n"
-" * Mensaje de Init: un mensaje de texto simple que se muestra antes del\n"
-"prompt de arranque.\n"
-"\n"
-" * Dispositivo de arranque: indica donde desea colocar la informaciĂłn\n"
-"necesaria para arrancar en GNU/Linux. Generalmente, se configura una\n"
-"particiĂłn bootstrap con anterioridad para contener esta informaciĂłn.\n"
-"\n"
-" * Demora de Open Firmware: a diferencia de LILO, hay dos demoras\n"
-"disponibles con Yaboot. La primera se mide en segundos y aquĂ­ puede elegir\n"
-"entre CD, arranque OF, MacOS o Linux.\n"
-"\n"
-" * Demora de arranque del nĂşcleo: esta demora es similar a la demora de\n"
-"arranque de LILO. Luego de seleccionar Linux, tendrĂĄ esta demora en dĂŠcimas\n"
-"de segundo antes que se seleccione su descripciĂłn del nĂşcleo\n"
-"predeterminada.\n"
-"\n"
-" * ÂżHabilitar arranque desde el CD?: marcando esta opciĂłn Usted puede "
-"elegir\n"
-"\"C\" para el CD en el primer prompt de arranque.\n"
-"\n"
-" * ÂżHabilitar arranque OF?: marcando esta opciĂłn Usted puede elegir \"N\"\n"
-"para Open Firmware en el primer prompt de arranque.\n"
-"\n"
-" * SO predeterminado: puede seleccionar quĂŠ sistema operativo arrancarĂĄ por\n"
-"defecto cuando expira la demora de Open Firmware."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"AquĂ­ se le presentan varios parĂĄmetros que conciernen a su mĂĄquina.\n"
-"Dependiendo de su hardware instalado, puede o no, ver las entradas\n"
-"siguientes:\n"
-"\n"
-" * \"RatĂłn\": verifique la configuraciĂłn del ratĂłn y haga clic sobre el\n"
-"botĂłn para cambiarla, si es necesario.\n"
-"\n"
-" * \"Teclado\": verifique la configuraciĂłn de la disposiciĂłn del teclado y\n"
-"haga clic sobre el botĂłn para cambiarla, si es necesario.\n"
-"\n"
-" * \"Huso horario\": DrakX, de manera predeterminada, adivina su huso\n"
-"horario a partir del idioma que Usted ha elegido. Pero nuevamente, al igual\n"
-"que con la elecciĂłn del teclado, puede ocurrir que no se encuentre en el\n"
-"paĂ­s que sugiere el idioma elegido. De ser asĂ­, puede necesitar hacer clic\n"
-"sobre el botĂłn \"Huso horario\" para configurar el reloj de acuerdo al huso\n"
-"horario en el que se encuentre.\n"
-"\n"
-" * \"Impresora\": al hacer clic sobre el botĂłn \"Sin impresora\" se abrirĂĄ\n"
-"el asistente de configuraciĂłn de la impresora.\n"
-"\n"
-" * \"Tarjeta de sonido\": si se detecta una tarjeta de sonido en su "
-"sistema,\n"
-"la misma se muestra aquĂ­. Durante la instalaciĂłn no es posible modificaciĂłn\n"
-"alguna.\n"
-"\n"
-" * \"Tarjeta de TV\": si se detecta una tarjeta de TV en su sistema, la\n"
-"misma se muestra aquĂ­. Durante la instalaciĂłn no es posible modificaciĂłn\n"
-"alguna.\n"
-"\n"
-" * \"Tarjeta RDSI\": si se detecta una tarjeta RDSI en su sistema, la misma\n"
-"se muestra aquĂ­. Puede hacer clic sobre el botĂłn para cambiar los\n"
-"parĂĄmetros asociados a la misma."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Elija la unidad de disco que desea borrar para instalar su particiĂłn\n"
-"Mandrake Linux nueva. Tenga cuidado, ÂĄse perderĂĄn todos los datos de la\n"
-"misma y no se podrĂĄn recuperar!."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/es/drakx-help.xml
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Haga clic sobre \"Aceptar\" si desea borrar todos los datos y particiones\n"
-"presentes en esta unidad de disco. Tenga cuidado, luego de hacer clic sobre\n"
-"\"Aceptar\", no podrĂĄ recuperar los datos y las particiones presentes en\n"
-"esta unidad de disco, incluyendo los datos de Windows.\n"
-"\n"
-"Haga clic sobre \"Cancelar\" para cancelar esta operaciĂłn sin perder los\n"
-"datos y las particiones presentes en esta unidad de disco."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"No se puede acceder a los mĂłdulos del nĂşcleo correspondientes a su nĂşcleo "
-"(no se encuentra el archivo %s), esto generalmente singnifica que su "
-"disquete de arranque no contiene un nĂşcleo de misma versiĂłn que el soporte "
-"de instalaciĂłn (haga un nuevo disquete de arranque por favor)"
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "TĂş tambiĂŠn debes formatear %s"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Ha seleccionado los siguientes servidores: %s\n"
-"\n"
-"\n"
-"Estos servidores se activan por defecto. No se les conocen problemas de\n"
-"seguridad, pero se pueden encontrar problemas nuevos. En ese caso, "
-"debeasegurarse de\n"
-"actualizarlos tan pronto como sea posible.\n"
-"\n"
-"\n"
-"ÂżRealmente desea instalar estos servidores?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "No se puede usar difusiĂłn sin un dominio NIS"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Inserte un disquete formateado con FAT en la disquetera %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Este disquete no estĂĄ formateado con FAT"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Para utilizar esta selecciĂłn de paquetes salvada, arranque la instalaciĂłn "
-"con \"linux defcfg=floppy\""
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Error al leer el archivo %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"AlgĂşn hardware de su computadora necesita controladores \"propietarios\" "
-"para funcionar.\n"
-"Puede encontrar informaciĂłn sobre ellos en: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Debe tener una particiĂłn raĂ­z.\n"
-"Para ello, cree una particiĂłn (o haga clic sobre una que ya existe).\n"
-"Luego elija la acciĂłn \"Punto de montaje\" y defĂ­nalo como '/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Debe tener una particiĂłn de intercambio"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"No dispone de una particiĂłn de intercambio\n"
-"\n"
-"ÂżDesea continuar de todas formas?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Debe tener una particiĂłn FAT montada en /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Usar el espacio libre"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "No hay espacio libre suficiente para asignar las particiones nuevas"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Usar la particiĂłn existente"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "No hay ninguna particiĂłn existente para usar"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Usar la particiĂłn de Windows para loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "ÂżQuĂŠ particiĂłn desea usar para Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Elija los tamaĂąos"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "TamaĂąo de la particiĂłn raĂ­z en MB: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "TamaĂąo de la particiĂłn de intercambio en MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Usar el espacio libre de la particiĂłn Windows"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "ÂżA quĂŠ particiĂłn desea cambiarle el tamaĂąo?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Calculando los lĂ­mites del sistema de archivos Windows"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"El redimensionador de tamaĂąo de la FAT no puede gestionar su particiĂłn, \n"
-"ocurriĂł el error siguiente: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Su particiĂłn Windows estĂĄ muy fragmentada, por favor primero ejecute \"defrag"
-"\""
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"ÂĄADVERTENCIA!\n"
-"\n"
-"Ahora DrakX cambiarĂĄ el tamaĂąo de su particiĂłn Windows. Proceda con "
-"cuidado:\n"
-"esta operaciĂłn es peligrosa. Si aĂşn no lo hizo, primero deberĂ­a salir de\n"
-"la instalaciĂłn, ejecutar scandisk bajo Windows (y opcionalmente ejecutar "
-"defrag),\n"
-"y luego volver a iniciar la instalaciĂłn. TambiĂŠn deberĂ­a hacer una copia de\n"
-" seguridad de sus datos.\n"
-"Cuando estĂŠ seguro, pulse sobre Aceptar."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "ÂżQuĂŠ tamaĂąo desea conservar para windows en la"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "particiĂłn %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FallĂł el redimensionado de la FAT: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"No hay particiones FAT para redimensionar o para usar como loopback (o no "
-"queda espacio suficiente)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Borrar el disco entero"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Quitar Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Tiene mĂĄs de un disco rĂ­gido, Âżsobre cuĂĄl desea instalar Linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Se perderĂĄn TODAS las particiones y sus datos en la unidad %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Particionamiento de disco personalizado"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Usar fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Ahora puede particionar %s.\n"
-"Cuando haya terminado, no se olvide de guardar usando 'w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "No queda espacio libre suficiente en la particiĂłn de Windows"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "No se puede encontrar nada de espacio para instalar"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr ""
-"El asistente de particionamiento de DrakX encontrĂł las siguientes soluciones:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "FallĂł el particionamiento: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Levantando la red"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Bajando la red"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"OcurriĂł un error y no se puede gestionar de forma adecuada.\n"
-"ContinĂşe bajo su propio riesgo."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Punto de montaje %s duplicado"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Algunos paquetes importantes no fueron instalados correctamente.\n"
-"Seguramente su lector de CD o su CD de instalaciĂłn sean defectuosos.\n"
-"Compruebe el CD de instalaciĂłn en un sistema ya existente con el comando:\n"
-" rpm -qpl Mandrake/RPMS/*.rpm\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Bienvenido a %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Ninguna disquetera disponible"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Entrando en la etapa '%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Su sistema tiene pocos recursos. Puede tener algĂşn problema instalando\n"
-"Mandrake Linux. Si eso ocurre, puede intentar una instalaciĂłn tipo texto.\n"
-"Para ello, presione 'F1' cuando arranque desde el CDROM, e introduzca 'text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Tipo de instalaciĂłn"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Por favor, elija uno de los siguentes tipos de instalaciĂłn:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"El tamaĂąo total para los grupos que seleccionĂł es de aproximadamente %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Si desea instalar un tamaĂąo total inferior,\n"
-"elija el porcentaje de paquetes que desea instalar.\n"
-"\n"
-"Un porcentaje bajo instalarĂĄ sĂłlo los paquetes mĂĄs importantes;\n"
-"un porcentaje de 100%% instalarĂĄ todos los paquetes seleccionados."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Tiene espacio en disco para sĂłlo %d%% de esos paquetes.\n"
-"\n"
-"Si desea instalar menos de esto,\n"
-"elija el porcentaje de paquetes que desea instalar.\n"
-"Un porcentaje bajo instalarĂĄ sĂłlo los paquetes mĂĄs importantes;\n"
-"un porcentaje de %d%% instalarĂĄ todos los que sea posible."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "PodrĂĄ elegirlos mĂĄs detalladamente en la etapa siguiente"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Porcentaje de paquetes a instalar"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "SelecciĂłn de grupos de paquetes"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "SelecciĂłn de paquetes individuales"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "TamaĂąo total: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Paquete incorrecto"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Nombre: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "VersiĂłn: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "TamaĂąo: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Importancia: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"No puede seleccionar este paquete porque no hay espacio suficiente para "
-"instalarlo"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Se van a instalar los siguientes paquetes"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Se van a quitar los siguientes paquetes"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "No puede seleccionar/deseleccionar este paquete"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Este es un paquete obligatorio, no puede desmarcarlo"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "No puede desmarcar este paquete. Ya estĂĄ instalado"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Se debe actualizar este paquete\n"
-"ÂżEstĂĄ seguro que quiere desmarcarlo?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "No puede desmarcar este paquete. Debe ser actualizado"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Mostrar los paquetes seleccionados automĂĄticamente"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Instalar"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Cargar/Guardar en un disquete"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Actualizando la selecciĂłn de paquetes"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "InstalaciĂłn mĂ­nima"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Elija los paquetes que desea instalar"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Instalando"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Estimando"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Tiempo restante "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Preparando la instalaciĂłn. Espere, por favor"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d paquetes"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Instalando el paquete %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Aceptar"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Rechazar"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"ÂĄCambie su CD-ROM!\n"
-"\n"
-"Inserte el CD-ROM etiquetado como \"%s\" en la unidad y pulse Aceptar cuando "
-"lo haya hecho.\n"
-"Si no lo posee, pulse Cancelar para cancelar la instalaciĂłn desde este CD-"
-"ROM."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "ÂżSeguir adelante?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Hubo un error al ordenar los paquetes:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Hubo un error al instalar los paquetes:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Importante\n"
-"\n"
-"Haga el favor de leer cuidadosamente el presente documento. En caso de "
-"desacuerdo\n"
-"con el presente documento, no estĂĄ autorizado a instalar los demĂĄs\n"
-"CDs. En este caso seleccione 'Rechazar' para seguir la instalaciĂłn sin\n"
-"estos CDs.\n"
-"\n"
-"\n"
-"Algunos componentes de software contenidos en los siguientes CDs no\n"
-"estĂĄn sometidos a las licencias GPL o similares que permitan la copia,\n"
-"adaptaciĂłn o redistribuciĂłn. Cada uno de los componentes de software\n"
-"esta distribuido bajo los tĂŠrminos y condiciones de un acuerdo de\n"
-"licencia propio. Por favor, dirĂĄjase a ĂŠste y acĂŠptelo antes de instalarlo,\n"
-"usarlo o redistribuirlo. Generalmente, estas licencias no autorizan la\n"
-"copia (salvo las destinadas a copias de seguridad), la distribuciĂłn, "
-"decompilaciĂłn,\n"
-"desensamblado, ingenierĂ­a inversa, reconstituciĂłn de la lĂłgica del\n"
-"programa y/o modificaciĂłn, salvo en la medida y para las necesidades\n"
-"autorizadas por las leyes vigentes. Toda violaciĂłn de la licencia\n"
-"vigente implica generalmente la caducidad de estĂĄ, sin perjuicio a\n"
-"todos los demĂĄs derechos o acciones dirigidos en contra de Ud. Salvo si\n"
-"el acuerdo de licencia lo autoriza, no puede instalar estos programas\n"
-"en mĂĄs de una mĂĄquina, ni adaptarlos para un uso en red. Si fuese\n"
-"necesario, contacte con el distribuidor de cada programa para\n"
-"obtener licencias adicionales. La distribuciĂłn a terceros de copias de\n"
-"los programas o de la documentaciĂłn que lo acompaĂąa generalmente\n"
-"suele estar prohibida.\n"
-"\n"
-"\n"
-"Todos los derechos, tĂ­tulos e intereses de esos programas son la\n"
-"propiedad exclusiva de sus autores respectivos y estĂĄn protegidos por el\n"
-"derecho de la propiedad intelectual y otras leyes aplicables al derecho\n"
-"del software.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "OcurriĂł un error"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "ÂżRealmente desea salir de la instalaciĂłn?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Acuerdo de licencia"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"EL PRESENTE TEXTO ES UNA TRADUCCIÓN A PROPÓSITO EXCLUSIVAMENTE\n"
-"INFORMATIVO DE LOS TÉRMINOS DE LA LICENCIA DE MANDRAKE LINUX. EN\n"
-"NINGÚN CASO LA PRESENTE TRADUCCIÓN TIENE VALOR LEGAL SIENDO OFICIAL\n"
-"EXCLUSIVAMENTE LA VERSIÓN EN FRANCÉS DE LA LICENCIA DE LINUX-MANDRAKE.\n"
-"No obstante, esperamos que esta traducciĂłn ayudarĂĄ a los que hablan\n"
-"castellano a entenderla mejor.\n"
-"\n"
-"\n"
-"IntroducciĂłn\n"
-"\n"
-"El conjunto de elementos que incluye el sistema operativo y los\n"
-"diferentes componentes disponibles en la distribuciĂłn Mandrake Linux\n"
-"se denominarĂĄn en adelante \"Programas\". Los programas incluyen en\n"
-"particular, pero de manera no limitativa, el conjunto de programas,\n"
-"procedimientos, reglas y documentaciones relativas al sistema\n"
-"operativo y a los diferentes componentes de la distribuciĂłn\n"
-"Mandrake Linux.\n"
-"\n"
-"\n"
-"1. Licencia\n"
-"\n"
-"Le rogamos leer cuidadosamente este documento. Éste constituye un\n"
-"contrato de licencia entre Ud. (persona fĂ­sica o persona moral) y\n"
-"MandrakeSoft S.A. aplicado a los programas. El hecho de instalar, \n"
-"duplicar o usar los programas de cualquier manera, indica\n"
-"que acepta explĂ­citamente los tĂŠrminos y condiciones de esta licencia\n"
-"y que estĂĄ totalmente de acuerdo en lo referente a los tĂŠrminos de la "
-"misma.\n"
-"En caso de no estar de acuerdo con el presente documento, no estĂĄ\n"
-"autorizado a instalar, duplicar ni usar de ninguna manera\n"
-"este producto. El contrato de licencia sera automĂĄticamente anulado\n"
-"sin aviso previo en el caso que no se cumplan las disposiciones\n"
-"de este documento. En caso de anulaciĂłn Ud. tendrĂĄ que anular\n"
-"inmediatamente todo ejemplar y todas las copias de todos los programas\n"
-"y de todas las documentaciones que constituyen el sistema operativo y\n"
-"los diferentes componentes disponibles en en la distribuciĂłn\n"
-"Mandrake Linux.\n"
-"\n"
-"\n"
-"2. GarantĂ­a y limitaciones de garantĂ­a\n"
-"\n"
-"Los programas y la documentaciĂłn que los acompaĂąa son proporcionados\n"
-"tal cual y sin ninguna garantĂ­a. MandrakeSoft S.A.\n"
-"no se responsabiliza de las consecuencias de un daĂąo directo,\n"
-"especial, indirecto o accesorio, de cualquiera naturaleza que sea, en\n"
-"relaciĂłn con la utilizaciĂłn de los programas, en particular y de\n"
-"manera no limitada, todos daĂąos resultados por perdidas de\n"
-"beneficio, interrupciĂłn de actividad, pĂŠrdida de informaciones\n"
-"comerciales u otras perdidas financieras, asĂ­ que por eventuales\n"
-"condenaciones e indemnizaciones debidas como consecuencia de una decisiĂłn "
-"de\n"
-"la justicia, y eso incluso si MandrakeSoft S.A. hubiera sido informada de "
-"la\n"
-"apariciĂłn o eventualidad de tales daĂąos.\n"
-"\n"
-"ADVERTENCIA EN CUANTO A LA POSESIÓN O USO DE PROGRAMAS PROHIBIDOS\n"
-"EN CIERTOS PAÍSES\n"
-"\n"
-"En ningĂşn caso, ni MandrakeSoft S.A. ni sus proveedores podrĂĄn ser\n"
-"responsabilizados por un perjuicio especial, directo, indirecto o\n"
-"accesorio, de cualquier naturaleza (en particular y de manera\n"
-"no limitada, pĂŠrdidas de beneficio, interrupciĂłn de actividad,\n"
-"pĂŠrdida de informaciones comerciales u otras pĂŠrdidas financieras, asĂ­\n"
-"como por posibles condenaciones e indemnizaciones debidas\n"
-"consecuentes a una decisiĂłn de justicia) que resultarĂ­a de la\n"
-"utilizaciĂłn, detenciĂłn o simple descarga desde uno de los sitios de\n"
-"transferencia de Mandrake Linux de programas prohibidos por la\n"
-"legislaciĂłn a la que estĂĄ sometido. Esta advertencia se aplica en\n"
-"particular a algunos componentes de criptografĂ­a fuerte incluĂ­dos en los\n"
-"programas.\n"
-"\n"
-"\n"
-"3. Licencia GPL y otras licencias\n"
-"\n"
-"Los Programas estĂĄn constituidos por mĂłdulos de programas creados por\n"
-"diversas personas (fĂ­sicas o legales). Muchos de ellos se\n"
-"distribuyen bajo los tĂŠrminos de la Licencia PĂşblica General GNU\n"
-"(denominada a partir de ahora \"GPL\") u otras licencias parecidas. La "
-"mayorĂ­a\n"
-"de estas licencias le permiten copiar, adaptar o redistribuir los\n"
-"mĂłdulos de los programas que cubren. Haga el favor de leer y de aceptar los "
-"tĂŠrminos y\n"
-"condiciones de las licencias que acompaĂąan a cada uno de ellos antes de\n"
-"usarlos. Toda pregunta relativa a la licencia se debe dirigir al autor\n"
-"(o su representante) de dicho programa, y no a MandrakeSoft. Los\n"
-"programas desarrollados por MandrakeSoft estĂĄn sometidos a la licencia\n"
-"GPL. La documentaciĂłn escrita por MandrakeSoft esta sometida a una\n"
-"licencia especifica. Haga el favor de dirigirse a la documentaciĂłn para\n"
-"obtener mĂĄs informaciĂłn.\n"
-"\n"
-"\n"
-"4. Propiedad intelectual\n"
-"\n"
-"Todos los derechos, tĂ­tulos e intereses de los diferentes programas\n"
-"son propiedad exclusiva de sus autores respectivos y estĂĄn protegidos\n"
-"por el derecho de la propiedad intelectual y otras leyes aplicadas a los\n"
-"derechos de los programas. Las marcas \"Mandrake\" y \"Mandrake Linux\" "
-"asĂ­\n"
-"como los logotipos asociados son registrados por MandrakeSoft S.A.\n"
-"\n"
-"\n"
-"5. Disposiciones diversas\n"
-" \n"
-"Si alguna disposiciĂłn de este contrato de licencia fuera declarada\n"
-"nula, ilegal o inaplicable por un tribunal competente, esta\n"
-"disposiciĂłn serĂ­a excluida del presente contrato. Sin embargo\n"
-"Ud. seguirĂĄ sometido a las otras disposiciones, que tendrĂĄn\n"
-"plenos efectos. El contrato de licencia estĂĄ regido por las leyes\n"
-"francesas. Toda disputa relativa a los presentes tĂŠrminos serĂĄ\n"
-"resuelta, preferentemente, por vĂ­a amigable. En caso de desacuerdo con\n"
-"MandrakeSoft S.A., el litigio serĂĄ tramitado a los tribunales\n"
-"competentes de ParĂ­s, Francia. Para cualquier pregunta relacionada con\n"
-"este documento, por favor, pĂłngase en contacto con MandrakeSoft S.A.\n"
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Teclado"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Seleccione la distribuciĂłn de su teclado."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "AquĂ­ tiene la lista completa de teclados disponibles"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "ÂżQuĂŠ tipo de instalaciĂłn desea?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "InstalaciĂłn/ActualizaciĂłn"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "ÂżEs una instalaciĂłn o una actualizaciĂłn?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Recomendada"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Experto"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "ActualizaciĂłn"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "SĂłlo actualizar los paquetes."
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Por favor, seleccione el tipo de su ratĂłn."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Puerto del ratĂłn"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Seleccione el puerto serie al que estĂĄ conectado el ratĂłn, por favor."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "EmulaciĂłn de los botones"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "EmulaciĂłn del botĂłn 2"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "EmulaciĂłn del botĂłn 3"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Configurando tarjetas PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Configurando dispositivos IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "no hay particiones disponibles"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Rastreando las particiones para encontrar los puntos de montaje"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Seleccione los puntos de montaje"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"No se puede leer su tabla de particiones, estĂĄ demasiado deteriorada :(\n"
-"Se intentarĂĄ seguir y vaciar las particiones malas (ÂĄse perderĂĄn TODOS LOS "
-"DATOS!).\n"
-"La otra soluciĂłn es no permitir que DrakX modifique la tabla de "
-"particiones.\n"
-"(el error es %s)\n"
-"\n"
-"ÂżEstĂĄ de acuerdo en perder todas las particiones?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake no pudo leer correctamente la tabla de particiones.\n"
-"ÂĄContinĂşe bajo su propio riesgo!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"ÂĄNo hay 1MB de espacio para bootstrap! La instalaciĂłn continuarĂĄ, pero para "
-"arrancar su sistema, necesitarĂĄ crear la particiĂłn bootstrap en DiskDrake"
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "No se encontrĂł particiĂłn raĂ­z para efectuar la actualizaciĂłn"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "ParticiĂłn raĂ­z"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "ÂżCual es la particiĂłn raĂ­z (/) de su sistema?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Necesita reiniciar el equipo para que se efectĂşe la modificaciĂłn de la tabla "
-"de particiones"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Elija las particiones que desea formatear"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "ÂżVerificar el disco en busca de bloques malos?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formateando las particiones"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Creando y formateando el archivo %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr ""
-"Espacio de intercambio insuficiente para completar la instalaciĂłn, aĂąada un "
-"poco mĂĄs"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Buscando los paquetes disponibles"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Encontrando los paquetes a actualizar"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Su sistema no tiene espacio suficiente para instalar o actualizar (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completa (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "MĂ­nima (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomendada (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Por favor, seleccione cargar o guardar la selecciĂłn de paquetes en "
-"disquete.\n"
-"El formato es el mismo que los disquetes generados para la instalaciĂłn "
-"automĂĄtica."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Cargar desde un disquete"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Cargando desde un disquete"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "SelecciĂłn de paquetes"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Introduzca un disquete que contenga la selecciĂłn de paquetes"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Guardar en un disquete"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "El tamaĂąo seleccionado es mayor que el disponible"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Tipo de instalaciĂłn."
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"No ha seleccionado ningĂşn grupo de paquetes\n"
-"Elija por favor la mĂ­nima instalaciĂłn que quiera."
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "Con X"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "Con documentaciĂłn bĂĄsica (ÂĄrecomendado!)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "InstalaciĂłn mĂ­nima \"en serio\" (especialmente sin urpmi)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Si tiene todos los CDs de la lista siguiente, haga clic sobre \"Aceptar\".\n"
-"Si no tiene ningĂşn CD, haga clic sobre \"Cancelar\".\n"
-"Si sĂłlo le faltan algunos CDs, desmĂĄrquelos y haga clic sobre \"Aceptar\"."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM etiquetado como \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Preparando la instalaciĂłn"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Instalando el paquete %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "ConfiguraciĂłn posterior a la instalaciĂłn"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Por favor, inserte el disquete de arranque en la unidad %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Por favor, inserte el disquete de mĂłdulos actualizados en la unidad %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Ahora tiene la posibilidad de bajar por la red paquetes especĂ­ficos\n"
-"durante el procedimiento de instalaciĂłn, incuĂ­dos programas de cifrado.\n"
-"\n"
-"ADVERTENCIA:\n"
-"\n"
-"Debido a las diferencias de los requisitos aplicables a ese tipo de\n"
-"programas por las distintas jurisdicciones, es el cliente y/o el usuario "
-"final\n"
-"de dichos programas quien debe verificar que las leyes de su jurisdicciĂłn "
-"le\n"
-"permitan bajar, guardar y/o utilizar dichos programas.\n"
-"\n"
-"En particular el cliente y/o usuario final debe tener un cuidado especial\n"
-"de no violar las leyes de su de su jurisdicciĂłn. En el caso de que el "
-"cliente y/o\n"
-"el usuario final no respetase las condiciones de las leyes que le son\n"
-"aplicables, es posible que sea severamente sancionado por la ley.\n"
-"\n"
-"En ningĂşn caso MandrakeSoft ni ninguno de sus fabricantes y/o\n"
-"distribuidores se puede considerar responsable por daĂąos especiales, "
-"directos\n"
-"o indirectos de cualquier tipo (incluyendo, pero sin limitarse a ello, "
-"pĂŠrdida\n"
-"de beneficios, ruptura de negocios, pĂŠrdida de datos comerciales u otras\n"
-"pĂŠrdidas pecuniarias, o eventuales responsabilidades e indemnizaciones\n"
-"a pagar debido a decisiones de la justicia) que puedan ocurrir mediante el\n"
-"uso, posesiĂłn o el sĂłlo hecho de descargar de Internet o por otro medio, "
-"programas\n"
-"a los cuales el cliente y/o usuario final tenga acceso despuĂŠs de haber\n"
-"firmado el presente convenio.\n"
-"\n"
-"Para preguntas relativas a este convenio, pĂłngase en contacto con\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Ahora tiene la posibilidad de bajarse paquetes actualizados,\n"
-"que han salido despues de que se haya hecho la distribuciĂłn.\n"
-"\n"
-"ConseguirĂĄ actualizaciones de fallos y de seguridad, pero debe\n"
-"tener una conexiĂłn a la Internet configurada para proceder.\n"
-"\n"
-"ÂżDesea instalar las actualizaciones?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Contactando con el sitio web de Mandrake Linux para obtener la lista de las "
-"rĂŠplicas disponibles"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Elija un sitio de rĂŠplica del que bajar los paquetes"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr ""
-"Contactando con el sitio de rĂŠplica para obtener la lista de los paquetes "
-"disponibles"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "ÂżCuĂĄl es su huso horario?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Reloj interno puesto a GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "SincronizaciĂłn automĂĄtica de hora (usando NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "Servidor NTP"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Servidor CUPS remoto"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Sin impresora"
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "ÂżTiene una tarjeta de sonido ISA?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-"Use \"sndconfig\" luego de la instalaciĂłn para configurar su tarjeta de "
-"sonido"
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"No se detectĂł tarjeta de sonido. Pruebe \"harddrake\" luego de la instalaciĂłn"
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Resumen"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "RatĂłn"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Huso horario"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Impresora"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "Tarjeta RDSI"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Tarjeta de sonido"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "Tarjeta de TV"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Archivos locales"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "ContraseĂąa de root"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Sin contraseĂąa"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr ""
-"Esta contraseĂąa es demasiado simple\n"
-"(tiene que tener por lo menos una longitud de %d caracteres)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "AutentificaciĂłn"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "AutentificaciĂłn LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "Servidor LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "AutentificaciĂłn NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "Dominio NIS"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "Servidor NIS"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Un disquete de arranque personalizado da la posibilidad de arrancar su "
-"equipo\n"
-"bajo Linux sin depender del cargador de arranque normal. Esto puede ser "
-"Ăştil\n"
-"si no desea instalar SILO en su sistema, o si cualquier otro sistema "
-"operativo borra\n"
-"SILO, o si SILO no funciona con su configuraciĂłn de hardware. Un disquete\n"
-"de arranque personalizado tambiĂŠn se puede usar con la imagen de rescate de\n"
-" Mandrake haciendo asĂ­ mucho mĂĄs fĂĄcil la recuperaciĂłn en caso de fallo\n"
-"grave del sistema.\n"
-"\n"
-"Si desea crear un disquete de arranque para su sistema, inserte un disquete\n"
-"en la primer disquetera y presione \"Aceptar\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Primera disquetera"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Segunda disquetera"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Omitir"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Un disquete de arranque personalizado da la posibilidad de arrancar su "
-"equipo\n"
-"bajo Linux sin depender del cargador de arranque normal. Esto puede ser "
-"Ăştil\n"
-"si no desea instalar LILO (o grub) en su sistema, o si cualquier otro "
-"sistema operativo borra\n"
-"LILO, o si LILO no funciona con su configuraciĂłn de hardware. Un disquete\n"
-"de arranque personalizado tambiĂŠn se puede usar con la imagen de rescate de\n"
-"Mandrake haciendo asĂ­ mucho mĂĄs fĂĄcil la recuperaciĂłn en caso de fallo\n"
-"grave del sistema. ÂżDesea crear un disquete de arranque para su sistema?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-"\n"
-"\n"
-"(¡ATENCIÓN! Está utilizando XFS en su partición raíz,\n"
-"la creaciĂłn de un disquete de arranque en un disquete de 1.44Mb puede "
-"fallar\n"
-"porque XFS necesita un controlador muy grande)."
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Disculpe, pero no hay ninguna disquetera disponible"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Elija la disquetera que desea usar para crear el disco de arranque"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Inserte un disquete en %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Creando el disquete de arranque"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Preparando el cargador de arranque"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Parece que tiene una mĂĄquina desconocida o demasiado\n"
-"antigua. El gestor de arranque yaboot no funcionarĂĄ.\n"
-"La instalaciĂłn continuarĂĄ, pero necesitarĂĄ\n"
-"utilizar BootX para arrancar su mĂĄquina."
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "ÂżDesea usar aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"OcurriĂł un error al instalar aboot, \n"
-"Âżdesea forzar la instalaciĂłn incluso si ello implicara la destrucciĂłn de la "
-"primera particiĂłn?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Instalando cargador de arranque"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr ""
-"FallĂł la instalaciĂłn del cargador de arranque. OcurriĂł el siguiente error:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Puede necesitar cambiar el dispositivo de arranque de Open Firmware para\n"
-" activar el cargador de arranque. Si no ve el prompt del cargador de\n"
-" arranque al reiniciar, mantenga presionado Command-Option-O-F al\n"
-" reiniciar e introduzca:\n"
-" setenv boot-device %s, \\\\:tbxi\n"
-" Luego escriba: shut-down\n"
-"La prĂłxima vez que arranque deberĂ­a ver el prompt del cargador de arranque."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Inserte un disquete en blanco en la unidad %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Creando el disquete de instalaciĂłn automĂĄtica"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Algunas de las etapas no fueron completadas.\n"
-"\n"
-"ÂżRealmente desea salir ahora?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Felicidades, la instalaciĂłn estĂĄ completa.\n"
-"Extraiga el soporte de arranque y presione Intro para reiniciar.\n"
-"\n"
-"Para obtener informaciĂłn sobre correcciones disponibles para esta versiĂłn\n"
-"de Mandrake Linux, consulte el archivo de erratas disponible en\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Hay informaciĂłn disponible sobre cĂłmo configurar su sistema en el capĂ­tulo "
-"de\n"
-"configuraciĂłn tras la instalaciĂłn de la guĂ­a de usuario oficial de Mandrake "
-"Linux."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Generar un disquete de instalaciĂłn automĂĄtica"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"La instalaciĂłn automĂĄtica puede automatizarse por completo si lo desea,\n"
-"ÂĄÂĄen ese caso se adueĂąarĂĄ del disco rĂ­gido!!\n"
-"(la intenciĂłn de esto es instalarlo en otro ordenador).\n"
-"\n"
-"Puede preferir reproducir la instalaciĂłn.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automatizada"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Reproducir"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Guardar la selecciĂłn de paquetes"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "InstalaciĂłn %s de Mandrake Linux"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> entre elementos | <espacio> seleccionar | <F12> pantalla "
-"sig. "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "no se encuentra kdesu"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "falta \"consolehelper\""
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Elija un archivo"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Avanzada"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "BĂĄsico"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Espere, por favor"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandir el ĂĄrbol"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Contraer el ĂĄrbol"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Cambiar entre vista plana y ordenada por grupos"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "ElecciĂłn incorrecta, intĂŠntelo de nuevo\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "ÂżSu elecciĂłn? (por defecto %s)"
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Entradas que tendrĂĄ que rellenar:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "ÂżSu elecciĂłn? (0/1, por defecto '%s') "
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "BotĂłn `%s': %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "ÂżDesea pulsar este botĂłn?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "ÂżSu elecciĂłn? (por defecto %s'%s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Hay muchas cosas para seleccionar (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Por favor, seleccione el primer nĂşmero del rango de 10 que desee\n"
-"editar, o pulse Intro para continuar.\n"
-"ÂżSu elecciĂłn?"
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Aviso, una etiqueta cambiĂł:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Reenviar"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Checo (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "AlemĂĄn"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "EspaĂąol"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "FinlandĂŠs"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "FrancĂŠs"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Noruego"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polaco"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Ruso"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Sueco"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "BritĂĄnico"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Estadounidense"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Albano"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armenio (antiguo)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armenio (nuevo)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armenio (fonĂŠtico)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "AzerbadjĂĄn (latĂ­n)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belga"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "BĂşlgaro (fonĂŠtico)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "BĂşlgaro (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "BrasileĂąo (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Bielorruso"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Suizo (germĂĄnico)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Suizo (francĂŠs)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Checo (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "AlemĂĄn (sin teclas muertas)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "DanĂŠs"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Noruego)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Sueco)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estonio"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgiano (estilo \"ruso\")"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgiano (estilo \"latĂ­n\")"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Griego"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "HĂşngaro"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Croata"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "IsraelĂ­"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "IsraelĂ­ (fonĂŠtico)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "IranĂ­"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "IslandĂŠs"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italiano"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "JaponĂŠs de 106 teclas"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Coreano"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latinoamericano"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituano AZERTY (antiguo)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituano AZERTY (nuevo)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituano \"numĂŠrico\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituano \"fonĂŠtico\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "LetĂłn"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Macedonio"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "HolandĂŠs"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Polaco (distribuciĂłn qwerty)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Polaco (distribuciĂłn qwertz)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "PortuguĂŠs"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Canadiense (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Rumano (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Rumano (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Ruso (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Esloveno"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Eslovaco (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Eslovaco (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Serbio (cirĂ­lico)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "Tamil"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Teclado tailandĂŠs"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Teclado tajik"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turco (modelo \"F\" tradicional)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turco (modelo \"Q\" moderno)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ucraniano"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Estadounidense (internacional)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamita \"numĂŠrico\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Yugoslavo (latĂ­n)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr "Tecla Alt derecha"
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr "Ambas teclas Shift simultĂĄneamente"
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr "Las teclas Control y Shift simultĂĄneamente"
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr "Tecla CapsLock"
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Las teclas Ctrl y Alt simultĂĄneamente"
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr "Las teclas Alt y Shift simultĂĄneamente"
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr "La tecla \"MenĂş\""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr "Tecla \"Windows\" de la izquierda"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr "Tecla \"Windows\" de la derecha"
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Montajes circulares %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Quite los volĂşmenes lĂłgicos primero\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"El soporte PCMCIA no existe en los nĂşcleos 2.2. Por favor, utilice un nĂşcleo "
-"2.4."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "RatĂłn Sun"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "RatĂłn genĂŠrico PS2 con rueda"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 botĂłn"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "RatĂłn de 2 botones genĂŠrico"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "GenĂŠrico"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Rueda"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "serie"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "RatĂłn de 3 botones genĂŠrico"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "RatĂłn Logitech (serie, antiguo tipo C7)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "ratĂłn bus"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 botones"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 botones"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "ninguno"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Sin ratĂłn"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Pruebe su ratĂłn, por favor."
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Para activar el ratĂłn,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "ÂĄMUEVA SU RUEDA!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Finalizar"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Siguiente ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Anterior"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "ÂżEs correcto?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Conectar a Internet"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"La forma mĂĄs comĂşn de conexiĂłn ADSL es con pppoe.\n"
-"Algunas conexiones usan pptp, otras pocas usan dhcp.\n"
-"Si no lo sabe con seguridad, elija 'usar pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel Speedtouch usb"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "usar dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "usar pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "usar pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"ÂżQuĂŠ cliente dhcp desea utilizar?\n"
-"dhcpcd es el predeterminado"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"No se ha detectado ningĂşn adaptador de red ethernet en su sistema.\n"
-"No se puede configurar este tipo de conexiĂłn."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Elija la interfaz de red"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Por favor, elija el adaptador de red que desea usar para conectarse a "
-"Internet"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "no se encontrĂł ninguna tarjeta de red"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Configurando la red"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Por favor introduzca el nombre de su mĂĄquina (host) si lo conoce.\n"
-"Algunos servidores DHCP necesitan del nombre de la mĂĄquina para funcionar.\n"
-"El nombre de su mĂĄquina deberĂ­a ser un nombre de mĂĄquina clasificado "
-"completamente,\n"
-"como \"mimaquina.milabo.micompa.com\"."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Nombre de la mĂĄquina"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Asistente para la configuraciĂłn de la red"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "MĂłdem RDSI externo"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Tarjeta RDSI interna"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "ÂżDe quĂŠ tipo es su conexiĂłn RDSI?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"ÂżQuĂŠ configuraciĂłn de RDSI prefiere?\n"
-"\n"
-"* La configuraciĂłn antigua utiliza isdn4net. Tiene herramientas\n"
-" poderosas, pero es algo complicada de configurar para un reciĂŠn \n"
-" llegado, y no es estĂĄndar.\n"
-"* La configuraciĂłn nueva es mĂĄs fĂĄcil de entender, mĂĄs estĂĄndar,\n"
-" pero con menos herramientas.\n"
-"\n"
-"Le recomendamos la configuraciĂłn ligera (esto es, la nueva).\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "ConfiguraciĂłn nueva (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "ConfiguraciĂłn antigua (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ConfiguraciĂłn de RDSI"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Seleccione su proveedor.\n"
-" Si no estĂĄ en la lista, elija No listado"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Protocolo de Europa"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Protocolo de Europa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protocolo para el resto del mundo"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protocolo para el resto del mundo \n"
-" sin canal D (lĂ­neas alquiladas)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "ÂżQuĂŠ protocolo desea utilizar?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "ÂżQuĂŠ tipo de tarjeta tiene?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "No lo sĂŠ"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Si tiene una tarjeta ISA, los valores de la prĂłxima pantalla deberĂ­an ser "
-"correctos.\n"
-"\n"
-"Si tiene una tarjeta PCMCIA, tiene que saber la irq y la e/s de su tarjeta.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Abortar"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Continuar"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "ÂżCuĂĄl es su tarjeta RDSI?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Se ha detectado una tarjeta RDSI PCI, pero no se conoce el tipo. Por favor, "
-"seleccione una tarjeta PCI en la pantalla siguiente."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"No se encontrĂł tarjeta PCI RDSI. Por favor, seleccione una en la pantalla "
-"siguiente."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Seleccione el puerto serie al que estĂĄ conectado su mĂłdem."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Opciones de llamada por mĂłdem"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Nombre de la conexiĂłn"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "NĂşmero de telĂŠfono"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "ID de conexiĂłn"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Por script"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Por terminal"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Nombre de dominio"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Primer servidor DNS (opcional)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Segundo servidor DNS (opcional)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Puede desconectarse o volver a configurar su conexiĂłn."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Puede volver a configurar su conexiĂłn."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Ahora estĂĄ conectado a Internet."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Se puede conectar a Internet o volver a configurar su conexiĂłn."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Ahora no estĂĄ conectado a Internet."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Conectar"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Desconectar"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Configurar la conexiĂłn"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "ConfiguraciĂłn y conexiĂłn a Internet"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Ahora vamos a configurar la conexiĂłn %s."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Ahora vamos a configurar la conexiĂłn %s.\n"
-"\n"
-"\n"
-"Pulse siguiente para continuar."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "ConfiguraciĂłn de la red"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Puesto que estĂĄ realizando una instalaciĂłn por red, su red ya estĂĄ "
-"configurada.\n"
-"Haga clic sobre aceptar para mantener su configuraciĂłn, o pulse cancelar "
-"para\n"
-"volver a configurar sus conexiones de red y a Internet.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Bienvenido al asistente para la configuraciĂłn de la red\n"
-"\n"
-"Estamos a punto de configurar su conexiĂłn de red/Internet.\n"
-"Si no desea usar la detecciĂłn automĂĄtica, desmarque la casilla.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Elija el perfil a configurar"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Usar detecciĂłn automĂĄtica"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Detectando los dispositivos..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "ConexiĂłn normal por mĂłdem"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "detectada en el puerto %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ConexiĂłn RDSI"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "detectada %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ConexiĂłn ADSL"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "detectada en la interfaz %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "ConexiĂłn por cable"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "detectada conexiĂłn por cable"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "ConexiĂłn a la red local"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "tarjeta(s) de red detectada(s)"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Elija la conexiĂłn que desea configurar"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Ha configurado mĂşltiples formas de conectarse a Internet.\n"
-"Seleccione la que quiere utilizar.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "ConexiĂłn a Internet"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "ÂżDesea iniciar su conexiĂłn al arrancar?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "ConfiguraciĂłn de la red"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "La red necesita ser reiniciada"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"OcurriĂł un problema mientras se reiniciaba la red: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Felicidades, la configuraciĂłn de la red y de Internet ha terminado.\n"
-"\n"
-"Ahora se aplicarĂĄ la configuraciĂłn a su sistema.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"DespuĂŠs de esto, se recomienda que reinicie su entorno X\n"
-"para evitar el problema del cambio del nombre de la mĂĄquina."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"Ocurrieron problemas durante la configuraciĂłn.\n"
-"Verifique su conexiĂłn con net_monitor o mcc. Si su conexiĂłn no funciona, "
-"puede que desee volver a iniciar la configuraciĂłn"
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"ADVERTENCIA: Previamente se ha configurado este dispositivo para conectarse "
-"con Internet.\n"
-"Simplemente acepte para mantener la configuraciĂłn del dispositivo.\n"
-"Al modificar los campos de abajo se ignorarĂĄ esta configuraciĂłn."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Por favor, introduzca la direcciĂłn IP de esta mĂĄquina.\n"
-"Cada valor tiene que introducirse como una direcciĂłn IP en notaciĂłn\n"
-"decimal con puntos (por ejemplo: 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Configurando el dispositivo de red %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (controlador %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "DirecciĂłn IP"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "MĂĄscara de red"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "DirecciĂłn IP automĂĄtica"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Las direcciones IP deben estar en el formato 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Por favor, defina el nombre de su mĂĄquina.\n"
-"El nombre de su mĂĄquina deberĂ­a ser un nombre de mĂĄquina clasificado "
-"completamente,\n"
-"como \"mimaquina.milabo.micompa.com\".TambiĂŠn puede introducir la direcciĂłn "
-"IP de la pasarela si tiene una"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "Servidor DNS"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Pasarela de red (ej %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Dispositivo de pasarela de red"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "ConfiguraciĂłn de los proxies"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "Proxy HTTP"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "Proxy FTP"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Id tarjeta de red (Ăştil para portĂĄtiles)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "El nombre del proxy debe ser http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "El nombre del proxy debe ser ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "ConfiguraciĂłn de Internet"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "ÂżDesea intentar conectarse a Internet ahora?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Probando su conexiĂłn..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Ahora no estĂĄ conectado a Internet."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Por motivos de seguridad, ahora serĂĄ desconectado."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"El sistema no parece estar conectado al Internet.\n"
-"Intente volver a configurar su conexiĂłn."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "ConfiguraciĂłn de la conexiĂłn"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Por favor, complete o verifique el campo de abajo"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ de la tarjeta"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Memoria (DMA) de la tarjeta"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "E/S de la tarjeta"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "E/S_0 de la tarjeta"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "E/S_1 de la tarjeta"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Su nĂşmero de telĂŠfono personal"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Nombre del proveedor (ej proveedor.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "NĂşmero de telĂŠfono del proveedor"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 del proveedor (opcional)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 del proveedor (opcional)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Elija su paĂ­s"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Modo de marcaciĂłn"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Velocidad de la conexiĂłn"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Demora de la conexiĂłn (en seg)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Usuario de la cuenta (nombre de usuario)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "ContraseĂąa de la cuenta"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "mount fallĂł: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "La particiĂłn extendida no estĂĄ disponible en esta plataforma"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Tiene un hueco en la tabla de particiones, pero no se puede usar.\n"
-"La Ăşnica soluciĂłn es desplazar sus particiones primarias para que el hueco "
-"estĂŠ despuĂŠs de las particiones extendidas"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "FallĂł la restauraciĂłn a partir del archivo %s: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Archivo de respaldo incorrecto"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Error al escribir en el archivo %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"EstĂĄ ocurriendo algo malo en su disco. \n"
-"Ha fallado una prueba para verificar la integridad de los datos. \n"
-"Esto significa que escribir cualquier cosa en el disco terminarĂĄ produciendo "
-"basura al azar"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "necesario"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "importante"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "muy bueno"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "bueno"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "quizĂĄs"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-"CUPS - Common Unix Printing System (Sistema de impresiĂłn comĂşn de Unix)"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR de nueva generaciĂłn"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon (Demonio de impresora de lĂ­neas)"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue (Imprimir, no encolar)"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Impresora local"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Impresora remota"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Impresora en un servidor CUPS remoto"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Impresora en un servidor lpd remoto"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Impresora de red (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Impresora en un servidor SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Impresora en un servidor NetWare"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Introduzca el URI del dispositivo de impresiĂłn"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Filtrar el trabajo en un comando"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Modelo desconocido"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Impresoras locales"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Impresoras remotas"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " en el puerto paralelo \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", impresora USB \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", dispositivo multifunciĂłn en puerto paralelo \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", dispositivo multi-funciĂłn en USB"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", dispositivo multifunciĂłn en HP JetDirect"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", dispositivo multifunciĂłn"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", imprimiendo en %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr " en servidor LDP \"%s\", impresora \"%s\""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", host TCP/IP \"%s\", puerto \"%s\""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr " en servidor Windows \"%s\", compartida como \"%s\""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "en servidor Novell \"%s\", impresora \"%s\""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", usando comando %s"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Impresora \"en crudo\" (sin controlador)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(en %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(en esta mĂĄquina)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "En servidor CUPS \"%s\""
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Por defecto)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Seleccione la conexiĂłn de la impresora"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "ÂżComo estĂĄ conectada la impresora?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"AquĂ­ no tiene que configurar las impresoras en los servidores CUPS remotos; "
-"las mismas se detectarĂĄn automĂĄticamente."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-msgid "CUPS configuration"
-msgstr "ConfiguraciĂłn de CUPS"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-msgid "Specify CUPS server"
-msgstr "Especificar servidor CUPS"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"Para obtener acceso a las impresoras en servidores CUPS remotos en su red "
-"local nada tiene que configurar; los servidores CUPS le informan a su "
-"mĂĄquina automĂĄticamente sobre sus impresoras. En la secciĂłn \"Impresoras "
-"remotas\" de la ventana principal de Printerdrake se listan todas las "
-"impresoras que su mĂĄquina conoce. Cuando CUPS no estĂĄ en la red local, tiene "
-"que ingresar la direcciĂłn IP del servidor CUPS y, opcionalmente, el nĂşmero "
-"de puerto para obtener la informaciĂłn de la impresora desde el servidor, de "
-"lo contrario, deje los campos en blanco."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Normalmente, CUPS se configura automĂĄticamente de acuerdo con su\n"
-"entorno de red, para que pueda acceder a las impresoras de los\n"
-"servidores CUPS de su red local. Si esto no funciona correctamente,\n"
-"desactive la \"ConfiguraciĂłn automĂĄtica de CUPS\" y edite manualmente\n"
-"su archivo /etc/cups/cupsd.conf. No olvide reiniciar CUPS tras esto\n"
-"(comando: \"service cups restart\")."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "Las direcciones IP deberĂ­an parecerse a 192.168.1.20"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "ÂĄEl nĂşmero de puerto debe ser un nĂşmero entero!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP del servidor CUPS"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Puerto"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "ConfiguraciĂłn automĂĄtica de CUPS"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Detectando dispositivos..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Probar puertos"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "AĂąadir una impresora nueva"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Bienvenido al asistente de configuraciĂłn de la impresora\n"
-"\n"
-"Este asistente le permite instalar impresoras locales o remotas para usarlas "
-"desde esta mĂĄquina y tambiĂŠn desde otras mĂĄquinas de la red.\n"
-"\n"
-"Se le solicitarĂĄ la informaciĂłn necesaria para configurar la impresora y "
-"darle acceso a los controladores de todas las impresoras disponibles, "
-"opciones del controlador y tipos de conexiĂłn de impresoras."
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Impresora local"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Bienvenido al asistente de configuraciĂłn de la impresora\n"
-"\n"
-"Este asistente le ayudarĂĄ a instalar su(s) impresora(s) conectada(s) a esta "
-"computadora.\n"
-"\n"
-"Por favor, conecte su(s) impresora(s) a este ordenador y enciĂŠndala(s). Haga "
-"clic en \"Siguiente\" cuando estĂŠ listo, y en \"Cancelar\" si no quiere "
-"configurar ahora su(s) impresora(s).\n"
-"\n"
-"FĂ­jese en que algunas computadoras pueden colgarse durante la detecciĂłn "
-"automĂĄtica de la impresora. En este caso, desactive \"Detectar las "
-"impresoras automĂĄticamente\" para hacer una instalaciĂłn sin detecciĂłn "
-"automĂĄtica. Use el \"Modo experto\" de printerdrake si quiere configurar la "
-"impresiĂłn en una impresora remota si printerdrake no la lista "
-"automĂĄticamente."
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "DetecciĂłn automĂĄtica de impresoras"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"Enhorabuena, su impresora estĂĄ instalada y configurada.\n"
-"\n"
-"Puede imprimir usando el comando \"Imprimir\" de su aplicaciĂłn (normalmente "
-"se encuentra en el menĂş \"Archivo\").\n"
-"\n"
-"Si quiere aĂąadir, borrar o renombrar una impresora, o si quiere cambiar las "
-"opciones de configuraciĂłn por defecto (bandeja de entrada de papel, calidad "
-"de impresiĂłn, ...), seleccione \"Impresora\" en la secciĂłn de \"Hardware\" "
-"del Centro de control de Mandrake."
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "AutodetecciĂłn de impresoras."
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake puede detectar automĂĄticamente sus impresoras de puerto "
-"paralelo y USB conectadas localmente, pero fĂ­jese en que en algunos sistemas "
-"esto PUEDE COLGAR EL SISTEMA E INCLUSO CORROMPER SUS SITEMAS DE ARCHIVOS. "
-"Entonces, HÁGALO BAJO SU PROPIO RIESGO.\n"
-"\n"
-"ÂżSeguro que desea detectar automĂĄticamente sus impresoras?"
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Realizar detecciĂłn automĂĄtica"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Configurar la impresora manualmente"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "Detectada %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Impresora en puerto paralelo \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "Impresora USB \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"No se encontrĂł ninguna impresora local. Para instalar una manualmente, "
-"introduzca un nombre de dispositivo/nombre de archivo en la lĂ­nea de entrada "
-"(Puertos paralelos: /dev/lp0, /dev/lp1, ..., equivalen a LPT1:, LPT2, ..., "
-"1ÂŞ impresora USB: /dev/usb/lp0, 2ÂŞ impresora USB: /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Debe introducir un dispositivo un un nombre de archivo"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"ÂĄNo se encontrarĂł ninguna impresora local!\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Las impresoras en red sĂłlo se pueden instalar tras la inslaciĂłn. Seleccione "
-"\"Hardware\" y luego \"Impresora\" en el Centro de control de Mandrake."
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Para instalar impresoras en red, haga clic en \"Cancelar\", cambie al \"Modo "
-"experto\", y haga clic en \"AĂąadir una nueva impresora\" de nuevo."
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"Se detectĂł automĂĄticamente la siguiente impresora, si no es una de las que "
-"quiere configurar, introduzca en la lĂ­nea de entrada un nombre de "
-"dispositivo/nombre de archivo en la lĂ­nea de entrada"
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"AquĂ­ tiene una lista de todas las impresoras detectadas automĂĄticamente. Por "
-"favor, seleccione la impresora que quiere configurar o introduzca un nombre "
-"de dispositivo/nombre de archivo en la lĂ­nea de entrada"
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-"La siguiente impresora se detectĂł automĂĄticamente. La configuraciĂłn de la "
-"impresora se harĂĄ de forma totalmente automatizada. Si su impresora no se "
-"detectĂł correctamente o si prefiere una configuraciĂłn personalizada, active "
-"la \"ConfiguraciĂłn manual\"."
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-"AquĂ­ tiene una lista de las impresoras detectadas automĂĄticamente. Por "
-"favor, seleccione la impresora que quiera configurar. La configuraciĂłn de la "
-"impresora se harĂĄ de forma totalmente automatizada. Si su impresora no se "
-"detectĂł correctamente o si prefiere una configuraciĂłn personalizada, active "
-"la \"ConfiguraciĂłn manual\"."
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Por favor, elija el puerto donde estĂĄ conectada su impresora o ingrese el "
-"nombre de un dispositivo o archivo en la lĂ­nea de entrada"
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Por favor, elija el puerto al que estĂĄ conectado su impresora."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-"(Puertos paralelo: /dev/lp0, /dev/lp1, ..., equivalen a LPT1:, LPT2, ..., "
-"1er impresora USB: /dev/usb/lp0, 2da impresora USB: /dev/usb/lp1, ...) "
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "ÂĄDebe elegir/ingresar una impresora o un dispositivo!"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "ConfiguraciĂłn manual"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-"ÂżEs su impresora un dispositivo multifunciĂłn de HP (OfficeJet, PSC, "
-"PhotoSmart LaserJet 1100/1200/1220/3200/3300 con escĂĄner)?"
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "Instalando el paquete HPOJ..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Verificando el dispositivo y configurando HPOJ ..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Instalando el paquete SANE..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Escaneando en su dispositivo multifunciĂłn de HP"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "Haciendo que el puerto de impresora estĂŠ disponible para CUPS ..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Leyendo base de datos de impresoras ..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Opciones de la impresora remota lpd"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Para utilizar impresora LPD remota, necesita proporcionar el nombre de host "
-"del servidor de impresiĂłn y el nombre de la impresora en ese servidor."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Nombre de host del servidor remoto"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Nombre de la impresora remota"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "ÂĄFalta el nombre del host remoto!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "ÂĄFalta el nombre de la impresora remota!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opciones de la impresora SMB (Windows 9x/NT)"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Para imprimir en una impresora SMB, necesita proporcionar el nombre del "
-"servidor SMB (ÂĄNote que puede ser diferente al nombre de hostTCP/IP del "
-"mismo!) y posiblemente la direcciĂłn IP del servidor de impresiĂłn, asĂ­ como "
-"el nombre del recurso compartido para la impresora que se quiere usar y "
-"cualquier otra informaciĂłn del nombre de usuario, contraseĂąa y grupo de "
-"trabajo que haga falta."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "MĂĄquina del servidor SMB"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP del servidor SMB"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Nombre del recurso compartido"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Grupo de trabajo"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "ÂĄDebe indicar el nombre o la direcciĂłn IP del servidor!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "ÂĄNo se encuentra el nombre del recurso compartido de Samba!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr "ÂĄADVERTENCIA DE SEGURIDAD!"
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"EstĂĄ a punto de configurar la impresiĂłn a una cuenta Windows con contraseĂąa. Debido a una falla en la arquitectura del cliente Samba la contraseĂąa se pone como texto plano en la lĂ­nea de comandos del cliente Samba que se usa para transmitir el trabajo de impresiĂłn al servidor Windows. Por lo tanto, es posible que cada usuario de esta mĂĄquina vea la clave en pantalla ejecutando \"ps auxwww\".\n"
-"\n"
-"Recomendamos utilizar alguna de las alternativas siguientes (en todos los casos tiene que asegurarse que sĂłlo las mĂĄquinas de su red local tienen acceso al servidor Windows, por ejemplo utilizando un cortafuegos):\n"
-"\n"
-"Usar una cuenta sin contraseĂąa en su servidor Windows, por ej. la cuenta \"GUEST\" o una cuenta especial dedicada a la impresiĂłn. No quite la protecciĂłn con contraseĂąa de una cuenta personal o de la cuenta del administrador.\n"
-"\n"
-"Configure a su servidor Windows para que la impresiĂłn estĂŠ disponible bajo el protocolo LPD y configure la impresiĂłn desde esta mĂĄquina bajo el tipo de conexiĂłn \"%s\" en PrinterDrake.\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr "Configure a su servidor Windows para que la impresiĂłn estĂŠ disponible bajo el protocolo IPP y configure la impresiĂłn desde esta mĂĄquina bajo el tipo de conexiĂłn \"%s\" en PrinterDrake.\n\n"
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"Conecte su impresora a un servidor Linux y permita que su(s) mĂĄquina(s) Windows se conecten al mismo como un cliente.\n"
-"\n"
-"ÂżRealmente desea continuar configurando esta impresora como lo estĂĄ haciendo?"
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Opciones de la impresora NetWare"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Para imprimir en una impresora NetWare, es necesario escribir el nombre del "
-"servidor de impresiĂłn NetWare (ÂĄNote que puede no ser el mismo que el nombre "
-"de la mĂĄquina en TCP/IP) asĂ­ como el nombre de la cola de impresiĂłn que "
-"desea usar y el nombre de usuario y la contraseĂąa apropiados."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Servidor de impresiĂłn"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Nombre de la cola de impresiĂłn"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "ÂĄNo se encuentra el nombre del servidor NCP!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "ÂĄNo se encuentra la cola del servidor NCP!"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "Opciones de la impresora por socket/TCP"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Para imprimir en una impresora por socket o TCP, necesita proporcionar el "
-"nombre de host de la impresora y opcionalmente el nĂşmero de puerto. En "
-"servidores HP JetDirect el nĂşmero de puerto por lo general es 9100, en otros "
-"servidores puede variar. Consulte el manual de su hardware."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Nombre de host de la impresora"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "ÂĄNo se encuentra el nombre de la mĂĄquina de la impresora!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "URI del dispositivo de impresiĂłn"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Puede especificar directamente el URI para acceder a la impresora. El URI "
-"debe cumplir con las especificaciones Foomatic o CUPS. Recuerde que no todos "
-"los sistemas de impresiĂłn admiten URIs."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "ÂĄDebe introducir un URI vĂĄlido!"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Cada impresora necesita un nombre (por ejemplo, \"impresora\"). No tiene por "
-"quĂŠ rellenar los campos DescripciĂłn ni UbicaciĂłn. Son comentarios para los "
-"usuarios."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Nombre de la impresora"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "DescripciĂłn"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "UbicaciĂłn"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Preparando base de datos de impresoras ..."
-
-#: ../../printerdrake.pm_.c:1112
-msgid "Your printer model"
-msgstr "El modelo de su impresora"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Printerdrake ha comparado el modelo que resultĂł de la detecciĂłn automĂĄtica "
-"con los modelos listados en su base de datos de impresoras para encontrar la "
-"mejor coincidencia. Esta elecciĂłn puede estar equivocada, especialmente si "
-"su impresora no estĂĄ listada en absoluto en la base de datos. Entonces, "
-"verifique si la elecciĂłn es correcta y haga clic en \"El modelo es correcto"
-"\" , caso contrario, haga clic en \"Seleccionar el modelo manualmente\" de "
-"forma tal que pueda elegir el modelo de su impresora manualmente en la "
-"pantalla siguiente.\n"
-"\n"
-"Para su impresora Printerdrake ha encontrado:\n"
-"\n"
-"%s"
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-msgid "The model is correct"
-msgstr "El modelo es correcto"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-msgid "Select model manually"
-msgstr "Seleccionar el modelo manualmente"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "SelecciĂłn del modelo de impresora"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "ÂżQuĂŠ modelo de impresora tiene?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Por favor, verifique que Printerdrake hizo correctamente la detecciĂłn "
-"automĂĄtica del modelo de su impresora. Busque el modelo correcto en la lista "
-"si el cursor estĂĄ sobre un modelo equivocado o si estĂĄ en \"Impresora en "
-"crudo\"."
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Si no se lista su impresora, elija una compatible (vea el manual de la "
-"misma) o una simliar."
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "ConfiguraciĂłn de impresora de windows OKI"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Va a configurar una impresora laser de windows OKI. Estas impresoras\n"
-"utilizan un protocolo de comunicaciĂłn muy especial y sĂłlo funcionan cuando "
-"se conectan al primer puerto paralelo. Cuando su impresora estĂĄ conectada a "
-"otro puerto o a un servidor de impresiĂłn, por favor conĂŠctela al primer "
-"puerto paralelo antes de imprimir una pĂĄgina de prueba. De no ser asĂ­, la "
-"impresora no funcionarĂĄ. El controlador ignorarĂĄ la configuraciĂłn del tipo "
-"de conexiĂłn."
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "ConfiguraciĂłn de impresora de inyecciĂłn de tinta Lexmark"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Los controladores de impresiĂłn de inkjet que proporciona Lexmark sĂłlo "
-"admiten impresoras locales, no impresoras en mĂĄquinas remotas o servidores "
-"de impresiĂłn. Por favor, conecte su impresora a un puerto local o "
-"configĂşrelo en la mĂĄquina a la que estĂĄ conectada."
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-"Para permitir imprimir con su impresora de inyecciĂłn de tinta Lexmark y esta "
-"configuraciĂłn, necesita los controladores de impresoras de inyecciĂłn de "
-"tinta proporcionados por Lexmark (http://www.lexmark.com/). Vaya al sitio de "
-"EEUU y haga clic en el botĂłn \"Drivers\". Luego, seleccione su modelo y "
-"posteriormente \"Linux\" como sistema operativo. Los controladores vienen "
-"vienen como paquetes RPM o como scripts de la shell con instalaciĂłn grĂĄfica "
-"interactiva. No necesita hacer esta configuraciĂłn con los interfaces "
-"grĂĄficos. Cancele directamente tras el acuerdo de licencia. Luego imprima "
-"pĂĄginas alineadas con la cabeza de impresiĂłn \"lexmarkmaintain\" y ajuste la "
-"configuraciĂłn de la alineaciĂłn de la cabeza con este programa."
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Configuraciones predeterminadas de la impresora\n"
-"\n"
-"DeberĂ­a asegurarse que el tamaĂąo de pĂĄgina y el tipo de tinta/modo de "
-"impresiĂłn (si corresponde) y tambiĂŠn la configuraciĂłn de hardware de las "
-"impresoras lĂĄser (memoria, unidad de dĂşplex, bandejas adicionales) estĂĄn "
-"configurados correctamente. Note que una calidad de impresiĂłn o resoluciĂłn "
-"extremadamente alta puede ser bastante lenta."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "ÂĄLa opciĂłn %s debe ser un nĂşmero entero!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "ÂĄLa opciĂłn %s debe ser un nĂşmero!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "ÂĄLa opciĂłn %s estĂĄ fuera de rango"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"ÂżQuiere configurar esta impresora (\"%s\")\n"
-"como la impresora predeterminada?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "PĂĄginas de prueba"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Por favor, seleccione las pĂĄginas de prueba que quiere imprimir.\n"
-"Nota: la pĂĄgina de prueba de foto puede tardar mucho tiempo en ser impresa e "
-"incluso en impresoras lĂĄser con muy poca memoria puede que no salga. En la "
-"mayorĂ­a de los casos, basta con imprimir la pĂĄgina de prueba estĂĄndar."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "No hay pĂĄginas de prueba"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Imprimir"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "PĂĄgina de prueba estĂĄndar"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "PĂĄgina de prueba alternativa (Letter)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "PĂĄgina de prueba alternativa (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "PĂĄgina de prueba de foto"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "No imprimir ninguna pĂĄgina de prueba"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Imprimir la(s) pĂĄgina(s) de prueba..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"La(s) pĂĄgina(s) de prueba se enviaron a la impresora.\n"
-"Puede que pase algo de tiempo antes de que comience la impresiĂłn.\n"
-"Estado de la impresiĂłn:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"La(s) pĂĄgina(s) de prueba se enviaron al demonio de impresiĂłn.\n"
-"Puede que pase algo de tiempo antes de que comience la impresiĂłn.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "ÂżFuncionĂł adecuadamente?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Impresora en crudo"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Para imprimir un archivo desde la lĂ­nea de comando (ventana de terminal) "
-"utilice el comando \"%s <archivo>\" o una herramienta de impresiĂłn grĂĄfica: "
-"\"xpp <archivo>\" o \"kprinter <archivo>\". Las herramientas grĂĄficas le "
-"permiten seleccionar la impresora y modificar las opciones de configuraciĂłn "
-"fĂĄcilmente.\n"
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Estos comando tambiĂŠn se utilizan en el campo \"Comando de impresiĂłn\" de "
-"los diĂĄlogos de impresiĂłn de muchas aplicaciones, pero aquĂ­ no se indica el "
-"nombre del archivo porque el archivo a imprimir lo proporciona la "
-"aplicaciĂłn.\n"
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"El comando \"%s\" tambiĂŠn permite modificar las opciones de configuraciĂłn "
-"para un trabajo de impresiĂłn determinado. Simplemente, aĂąada las "
-"configuraciones deseadas a la lĂ­nea de comando, por ejemplo \"%s <archivo>"
-"\". "
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"Para obtener una lista con las opciones disponibles para la impresora actual "
-"lea la lista que se muestra debajo o haga clic en el botĂłn \"Imprimir lista "
-"de opciones\".%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"AquĂ­ tiene una lista de las opciones disponibles para la impresora actual:\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Para imprimir un archivo desde la lĂ­nea de comando (ventana de terminal) use "
-"el comando \"%s <archivo>\".\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Este comando tambiĂŠn se utiliza en el campo \"Comando de impresiĂłn\" de los "
-"diĂĄlogos de impresiĂłn de muchas aplicaciones. Pero aquĂ­ no se da el nombre "
-"del archivo porque el nombre del archivo a imprimir lo proporciona la "
-"aplicaciĂłn.\n"
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Para obtener una lista de las opciones disponibles para la impresora actual, "
-"haga clic en el botĂłn \"Imprimir lista de opciones\"."
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Para imprimir un archivo desde la lĂ­nea de comando (ventana de terminal) use "
-"el comando \"%s <archivo>\" o \"%s <archivo>\".\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"TambiĂŠn puede utilizar el interfaz grĂĄfico \"xpdq\" para configurar las "
-"opciones y manipular los trabajos de impresiĂłn.\n"
-"Si estĂĄ usando KDE como entorno de escritorio tiene un \"botĂłn de pĂĄnico\", "
-"un icono en su escritorio etiquetado como \"ÂĄDETENER impresora!\", que "
-"detiene todos los trabajos de impresiĂłn inmediatamente cuando hace clic en "
-"ĂŠl. Esto es Ăştil, por ejemplo, para atascos de papel.\n"
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-" Los comandos \"%s\" y \"%s\" tambiĂŠn permiten modificar las opciones de "
-"configuraciĂłn para un trabajo de impresiĂłn particular. Simplemente aĂąada las "
-"opciones deseadas a la lĂ­nea de comando, por ejemplo \"%s <archivo>\".\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Cerrar"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Imprimiendo/Escaneando en \"%s\""
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Imprimiendo en la impresora \"%s\""
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Imprimir lista de opciones"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Su dispositivo multifunciĂłn de HP se configurĂł automĂĄticamente para ser "
-"capaz de escanear. Ahora puede escanear con \"scanimage\" (\"scanimage -d hp:"
-"%s\" para especificar el escĂĄner si tiene mĂĄs de uno) desde la lĂ­nea de "
-"comandos o con los interfaces grĂĄficos \"xscanimage\" o \"xsane\". Si estĂĄ "
-"usando el GIMP, tambiĂŠn puede escanear seleccionado el punto apropiado del "
-"menĂş \"Archivo\"/\"Adquirir\". Lance tambiĂŠn \"man scanimage\" y \"man sane-"
-"hp\" en la lĂ­nea de comandos para obtener mĂĄs informaciĂłn.\n"
-"\n"
-"No use \"scannerdrake\" para este dispositivo."
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Su dispositivo multifunciĂłn HP se configurĂł automĂĄticamente para ser capaz "
-"de escanear. Ahora puede escanear desde la lĂ­nea comandos con \"ptal-hp %s "
-"scan ...\". No se soporta aĂşn el escaneo por medio de un interfaz grĂĄfico e "
-"desde el GIMP para su dispositivo. EncontrarĂĄ mĂĄs informaciĂłn en el archivo "
-"de su sistema \"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\". Si tiene una HP "
-"LaserJet 1100 o 1200 puede escanear cuando tenga la opciĂłn del escĂĄner "
-"instalada.\n"
-"No use \"scannerdrake\" para este dispositivo."
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Leyendo los datos de la impresora ..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Transferir configuraciĂłn de la impresora"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Puede copiar la configuraciĂłn de la impresora que ha realizado para la cola %"
-"s a %s, su cola corriente. Todos los datos de configuraciĂłn (nombre de la "
-"impresora, descripciĂłn, ubicaciĂłn, tipo de conexiĂłn, y opciones "
-"predeterminadas) se transfieren, pero los trabajos de impresiĂłn no se "
-"transfieren.\n"
-"Debido a las siguientes razones no todas las colas se pueden transferir:\n"
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS no soporta impresoras en servidores Novell o impresoras que envĂ­an los "
-"datos en un comando formado libremente.\n"
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ sĂłlo soporta impresoras locales, impresoras LPD remotas, e impresoras "
-"Socket/TCP.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD y LPRng no soportan impresoras IPP.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"AdemĂĄs, las colas no creadas con este programa o con \"foomatic-configure\" "
-"no se pueden transferir."
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Tampoco se pueden transferir las impresoras configuradas con los archivos "
-"PPD provistos por sus fabricantes o con controladores CUPS nativos."
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Marque las impresoras que desea transferir y haga clic \n"
-"sobre \"Transferir\"."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "No transferir impresoras"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Transferir"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Ya existe una impresora denominada \"%s\" bajo %s. \n"
-"Haga clic sobre \"Transferir\" para sobre-escribirla.\n"
-"TambiĂŠn puede ingresar un nombre nuevo o saltear esta impresora."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"El nombre de la impresora sĂłlo deberĂ­a contener letras, nĂşmeros y el guiĂłn "
-"bajo"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"La impresora \"%s\" ya existe,\n"
-"Âżrealmente desea sobre-escribir la configuraciĂłn de la misma?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Nuevo nombre de la impresora"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "Transfiriendo %s ..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Ha transferido su impresora por defecto anterior (\"%s\"), ÂżDeberĂ­a ser "
-"tambiĂŠn la impresora por defecto bajo el nuevo sistema de impresiĂłn %s?"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Refrescando datos de impresora ..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "ConfiguraciĂłn de una impresora remota"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Iniciando la red ..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Configurar la red ahora"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "Funcionalidad de red no configurada"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Va a configurar una impresora remota. Para esto, se necesita un acceso a la "
-"red funcionando, pero aĂşn no ha configurado su red. Si sigue sin "
-"configuraciĂłn de red, no podrĂĄ utilizar la impresoara que estĂĄ configurando "
-"ahora. ÂżCĂłmo desea proceder?"
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Continuar sin configurar la red"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-"La configuraciĂłn de la red hecha durante la instalaciĂłn no se puede iniciar "
-"ahora. Por favor, verifique si la red se hace accesible tras reiniciar su "
-"sistema y corrija la configuraciĂłn usando el Centro de control de Mandrake, "
-"secciĂłn \"Redes e Internet\"/\"ConexiĂłn\", y tras esto configure la "
-"impresora, tambiĂŠn utilizando el Centro de Control de Mandrake, secciĂłn "
-"\"Hardware\"/\"Impresora\"."
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"El acceso a la red no estaba corriendo y no se puede iniciar. Por favor, "
-"verifique su configuraciĂłn y su hardware. Luego, intente configurar su "
-"impresora remota de nuevo."
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Reiniciando el sistema de impresiĂłn ..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "Alta"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "Paranoica"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Instalando un sistema de impresiĂłn en el nivel de seguridad %s"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Va a instalar el sistema de impresiĂłn %s sobre un sistema corriendo en el "
-"nivel de seguridad %s.\n"
-"\n"
-"Este sistema de impresiĂłn ejecuta un demonio (proceso en segundo plano) que "
-"espera trabajos de impresiĂłn y los gestiona. Las mĂĄquinas remotas pueden "
-"acceder tambiĂŠn a este demonio a travĂŠs de la red, asĂ­ que es un potencial "
-"punto de ataque. Por eso, sĂłlo unos pocos demonios seleccionados se inician "
-"por defecto en este nivel de seguridad.\n"
-"\n"
-"ÂżSeguro que desea configurar la impresiĂłn para esta mĂĄquina?"
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Iniciar el sistema de impresiĂłn al arrancar"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"El sistema de impresiĂłn (%s) no se iniciarĂĄ automĂĄticamente cuando arranque "
-"la mĂĄquina.\n"
-"\n"
-"Es posible que el inicio automĂĄtico se desactivĂł al cambiar a un nivel de "
-"seguridad mayor, porque el sistema de impresiĂłn es un potencial punto de "
-"ataques.\n"
-"\n"
-"ÂżDesea volver a activar el inicio automĂĄtico de la impresiĂłn cuando el "
-"sistema se vuelva a encender?"
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Verificando software instalado..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "Quitando LPRng..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "Quitando LPD..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Seleccione sistema de impresiĂłn (spooler)"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "ÂżQuĂŠ sistema de impresiĂłn (spooler) desea usar?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "ConfiguraciĂłn la impresora \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "Instalando Foomatic ..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Opciones de impresiĂłn"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "Preparando PrinterDrake ..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-msgid "Configuring applications..."
-msgstr "Configurando las aplicaciones..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "ÂżDesea configurar la impresiĂłn?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Sistema de impresiĂłn: "
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"EstĂĄn configuradas las impresoras siguientes. Haga doble clic sobre una para "
-"cambiar sus parĂĄmetros; para hacerla la predeterminada; para ver informaciĂłn "
-"acerca de la misma o para hacer que una impresora en un servidor CUPS remoto "
-"estĂŠ disponible para Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"EstĂĄn configuradas las impresoras siguientes. Haga doble clic sobre una de "
-"ellas para modificarla, para configurarla como predeterminada, o para "
-"obtener informaciĂłn sobre la misma."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Refrescar la lista de impresoras (para visualizar todas las impresoras CUPS "
-"remotas)"
-
-#: ../../printerdrake.pm_.c:2464
-msgid "Change the printing system"
-msgstr "Cambiar el sistema de impresiĂłn"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Modo normal"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "ÂżDesea configurar otra impresora?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Modificar configuraciĂłn de la impresora"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Impresora %s\n"
-"ÂżQuĂŠ desea modificar de esta impresora?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "ÂĄHacerlo!"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Tipo de conexiĂłn de la impresora"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Nombre de la impresora, descripciĂłn, ubicaciĂłn"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Fabricante de la impresora, modelo, controlador"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Fabricante de la impresora, modelo"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Poner esta impresora como predeterminada"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Agregar esta impresora a Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Quitar esta impresora de Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Imprimir la(s) pĂĄgina(s) de prueba"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Se sabe cĂłmo usar esta impresora"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Borrar impresora"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Borrando la impresora antigua \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Impresora predeterminada"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "La impresora \"%s\" ahora es la impresora predeterminada."
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Agregando impresora a Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-"La impresora \"%s\" se agregĂł satisfactoriamente a Star Office/OpenOffice."
-"org."
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr "No se pudo agregar la impresora \"%s\" a Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Quitando la impresora de Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-"La impresora \"%s\" se quitĂł satisfactoriamnete de Star Office/OpenOffice."
-"org."
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "No se pudo quitar la impresora \"%s\" de Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "ÂżSeguro que quiere borrar la impresora \"%s\"?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Borrando la impresora \"%s\" ..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "ConfiguraciĂłn del proxy"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Bienvenido a la herramienta de configuraciĂłn del proxy.\n"
-"\n"
-"AquĂ­ podrĂĄ configurar sus proxies http y ftp con o sin\n"
-"usuario y contraseĂąa.\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Por favor, rellene las informaciones del proxy http.\n"
-"DĂŠjelo en blanco si no quiere un proxy http."
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "puerto"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "La Url deberĂ­a empezar por 'http:'"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "La parte del puerto deberĂ­a ser numĂŠrica"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Por favor, rellene las informaciones del proxy ftp.\n"
-"DĂŠjelo en blanco si no quiere un proxy ftp."
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "La Url deberĂ­a empezar por 'ftp:'"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Por favor, introduzca usuario y contraseĂąa del proxy, si es necesario.\n"
-"DĂŠjelo en blanco si no desea usuario/contraseĂąa."
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "usuario"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "contraseĂąa"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "contraseĂąa (otra vez)"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Las contraseĂąas no coinciden. ÂĄIntĂŠntelo de nuevo!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "No se puede aĂąadir una particiĂłn al RAID md%d _ya formateado_"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "No se puede escribir el archivo %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "FallĂł mkraid"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "FallĂł mkraid (ÂżquizĂĄs no estĂŠn las herramientas de raid (raidtools)?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "No hay suficientes particiones para un RAID de nivel %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-"Lanzar el sistema de sonido ALSA (Arquitectura avanzada de sonido de Linux)"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, un planificador de comandos periĂłdicos."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd se usa para monitorizar el estado de las baterĂ­as y enviar esa\n"
-"informaciĂłn a syslogd. TambiĂŠn puede usarse para apagar el equipo cuando\n"
-"la baterĂ­a estĂĄ casi descargada."
-
-#: ../../services.pm_.c:18
-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 ""
-"Ejecuta los comandos programados por el comando at en el momento\n"
-"especificado al lanzar at, y ejecuta comandos por lotes (batch) cuando\n"
-"la carga promedio del sistema es suficientemente baja."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron es un programa UNIX estĂĄndar que ejecuta programas especificados por\n"
-"el usuario periĂłdicamente. El cron de Vixie aĂąade varias funcionalidades al "
-"cron de Unix \n"
-"bĂĄsico, incluyendo una mayor seguridad y opciones de configuraciĂłn mĂĄs "
-"potentes."
-
-#: ../../services.pm_.c:23
-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 aĂąade soporte del ratĂłn para los programas Linux en modo texto, como\n"
-"el Midnight Commander. TambiĂŠn permite operaciones de cortar-y-pegar con\n"
-"el ratĂłn en la consola, e incluye soporte para menĂşes emergentes en la "
-"consola."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake lanza una prueba del hardware, y opcionalmente configura\n"
-"el hardware nuevo/cambiado."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache es un servidor de pĂĄginas web. Se usa para servir archivos HTML y "
-"programas CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"El demonio para el superservidor de internet (normalmente llamado inetd) "
-"inicia\n"
-"una variedad de servicios adicionales de internet segĂşn sea necesario.\n"
-"Es el responsable de iniciar varios servicios, incluyendo telnet, ftp, rsh\n"
-"y rlogin. Al desactivar inetd, se desactivan todos los servicios que "
-"dependen de ĂŠl."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Lanza el filtrado de paquetes para los nĂşcleos de Linux de la serie 2.2,\n"
-"para configurar un cortafuegos que protege a su mĂĄquina de los ataques de la "
-"red."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Este paquete carga la definiciĂłn de teclado que se indica en\n"
-"/etc/sysconfig/keyboard. Puede ser configurado con el programa kbdconfig.\n"
-"Debe dejarse activo en la mayorĂ­a de las mĂĄquinas."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"RegeneraciĂłn automĂĄtica de la cabecera del nĂşcleo en /boot para\n"
-"/usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "DetecciĂłn y configuraciĂłn automĂĄtica del hardware al arrancar."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf a veces realizarĂĄ varias tareas al arrancar para\n"
-"mantener la configuraciĂłn del sistema."
-
-#: ../../services.pm_.c:43
-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 es el demonio de impresiĂłn, necesario para que lpr funcione\n"
-"correctamente. BĂĄsicamente, es un servidor que coloca las tareas de\n"
-"impresiĂłn en las colas de impresiĂłn adecuadas para cada impresora."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"El servidor virtual de Linux (LVS) se usa para construir servidores de alto\n"
-"rendimiento y alta disponibilidad."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) es un servidor de nombres de dominio (DNS) usado para convertir "
-"los nombres de mĂĄquinas en direcciones IP."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Monta y desmonta todos los puntos de montaje de sistemas de archivos\n"
-"compartidos por medio de la red; como NFS (Network File System),\n"
-"SMB (Lan Manager/Windows) y NCP (Netware)"
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Activa/desactiva todas las interfaces de red configuradas para iniciarse\n"
-"en el arranque del sistema."
-
-#: ../../services.pm_.c:52
-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 es un protocolo muy popular para compartir archivos en redes TCP/IP.\n"
-"Este servicio proporciona la funcionalidad de servidor NFS, que se "
-"configura\n"
-"a travĂŠs del archivo /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS es un protocolo muy popular para compartir archivos en redes TCP/IP.\n"
-"Este servicio proporciona la funcionalidad de bloqueo de archivos por NFS."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Activar el bloqueo numĂŠrico automĂĄticamente bajo la consola y\n"
-"XFree al arrancar."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Admitir las win-impresoras OKI 4w y compatibles."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"El soporte PCMCIA se usa por lo general para admitir cosas como tarjetas\n"
-"de red o mĂłdems en ordenadores portĂĄtiles. No se iniciarĂĄ salvo que\n"
-"estĂŠ configurado, por lo que no es un problema tenerlo instalado\n"
-"en mĂĄquinas que no lo necesiten."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"El portmapper gestiona las conexiones RPC; que usan protocolos como\n"
-"NFS y NIS. El servidor portmap se debe estar ejecutando en los sistemas que "
-"actĂşan\n"
-"como servidores para protocolos que usan el mecanismo RPC."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix es un agente de transporte de correo (MTA), es decir el programa "
-"encargado de enviar el correo electrĂłnico de una mĂĄquina a otra."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Guarda y recupera el mecanismo de entropĂ­a del sistema; usado para la\n"
-"generaciĂłn de nĂşmeros aleatorios de gran calidad."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Asignar dispositivos 'crudos' a dispositivos de bloque (como las "
-"particiones\n"
-"de los discos), para usar aplicaciones como Oracle"
-
-#: ../../services.pm_.c:71
-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 ""
-"El demonio routed permite actualizar automĂĄticamente las tablas de "
-"enrutamiento IP\n"
-"gracias al protocolo RIP. Mientras que RIP se usa bastante en redes "
-"pequeĂąas,\n"
-"para redes mĂĄs complejas, se necesitan protocolos de enrutamiento mĂĄs "
-"complejos."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"El protocolo rstat permite a los usuarios de una red recoger\n"
-"informaciĂłn sobre el rendimiento de cualquier mĂĄquina de dicha red."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"El protocolo rusers permite que los usuarios de una red identifiquen\n"
-"quien estĂĄ conectado en otras mĂĄquinas que respondan."
-
-#: ../../services.pm_.c:78
-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 ""
-"El protocolo rwho permite que los usuarios remotos obtengan una lista\n"
-"de todos los usuarios conectados a una mĂĄquina que ejecuta el demonio rwho\n"
-"(similar al finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Lanza el sistema de sonido en su mĂĄquina"
-
-#: ../../services.pm_.c:81
-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 es el servicio a travĂŠs del que varios demonios van a enviar\n"
-"sus mensajes de registro, que syslog va a redirigir a varios archivos\n"
-"de registro(log). Es una buena idea ejecutar siempre syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Carga los controladores para sus dispositivos USB."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Inicia el servidor de tipografĂ­as X11 (obligatorio para correr XFree)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Seleccione quĂŠ servicios se deben iniciar automĂĄticamente al arrancar"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Imprimiendo"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Compartir archivos"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "Sistema"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "AdministraciĂłn remota"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Servidor de base de datos"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Servicios: %d activados de %d registrados"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Servicios"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "corriendo"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "parado"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Servicios y demonios"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"No hay informaciĂłn adicional para\n"
-"este servicio. Disculpe."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Al iniciar"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Iniciar"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Parar"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Gracias por elegir Mandrake Linux 8.2"
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr "Bienvenido al mundo del CĂłdigo Abierto (Open Source)"
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-"El ĂŠxito de MandrakeSoft se basa en el principio del Software Libre. Su "
-"sistema operativo es el resultado del trabajo colaborativo de parte de la "
-"Comunidad Linux mundial"
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "Únase al mundo del Software Libre"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-"Conozca a la comunidad Open Source y sea un miembro. Aprenda, enseĂąe, y "
-"ayude a otros uniĂŠndose a los foros de discusiĂłn que encontrarĂĄ en nuestras "
-"pĂĄginas web para la \"Comunidad\""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet y MensajerĂ­a"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-"Mandrake Linux 8.2 le brinda la mejor selecciĂłn de software para acceder a "
-"todo lo que tiene para ofrecer la Internet: Navegue la web y vea animaciones "
-"con Mozilla y Konqueror, intercambie correo-e y organice su informaciĂłn "
-"personal con Evolution y KMail, y mucho mĂĄs"
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedios y GrĂĄficos"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-"ÂĄMandrake Linux 8.2 le permitirĂĄ llevar a su computadora multimedios al "
-"lĂ­mite! Use el Ăşltimo software para reproducir mĂşsica y archivos de audio, "
-"edite y organice sus imĂĄgenes y fotos, mire TV y reproduzca vĂ­deos, y mucho "
-"mĂĄs"
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Desarrollo"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-"Mandrake Linux 8.2 es la plataforma de desarrollo definitiva. Descubra el "
-"poder del compilador GNU gcc asĂ­ como tambiĂŠn los mejores entornos de "
-"desarrollo de CĂłdigo Abierto"
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Centro de control de Mandrake"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-"El Centro de Control de Mandrake Linux 8.2 es un lugar Ăşnico para "
-"personalizar y configurar su sistema Mandrake por completo"
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "Interfaces de usuario"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-"Mandrake Linux 8.2 brinda 11 entornos de escritorio grĂĄficos y "
-"administradores de ventanas distintos para elegir, incluyendo a GNOME 1.4, "
-"KDE 2.2.2, Window Maker 0.8, y otros"
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Software de servidor"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-"Transforme su mĂĄquina en un servidor potente con unos pocos clic del ratĂłn: "
-"servidor web, de correo, cortafuegos, router, servidor de archivos e "
-"impresoras, ..."
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Juegos"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-"Mandrake Linux 8.2 brinda lo mejor en juegos de CĂłdigo Abierto - arcade, "
-"acciĂłn, naipes, deportes, estrategia, ..."
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-"ÂżDesea aprender Linux de manera simple, rĂĄpida, y gratis? MandrakeSoft le "
-"proporciona entrenamiento libre en Linux, asĂ­ como tambiĂŠn una manera de "
-"probar su progreso, en MandrakeCampus -- nuestro centro de entrenamiento en "
-"lĂ­nea"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-"El soporte de calidad de la Comunidad Linux, y de MandrakeSoft, estĂĄ "
-"simplemente a la vuelta de la esquina. y si ya es un veterano de Linux, "
-"conviĂŠrtase en \"Experto\" y comparta su conocimiento en nuestro sitio web "
-"de soporte"
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-"Nuestros consultores estĂĄn listos para analizar sus necesidades y ofrecerle "
-"una soluciĂłn persoanlizada para todos sus proyectos de IT. Aproveche la "
-"vasta experiencia de MandrakeSoft como productor de Linux para brindar una "
-"alternativa IT verdadera para su organizaciĂłn de negocios"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-"En nuestra tienda electrĂłnica en lĂ­nea estĂĄn disponibles el rango completo "
-"de soluciones Linux, asĂ­ como tambiĂŠn ofertas especiales sobre los productos "
-"y otras \"cositas\""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-"Para mĂĄs informaciĂłn sobre los Servicios Profesionales de MandrakeSoft y las "
-"ofertas comerciales, por favor vea la pĂĄgina web siguiente:"
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Instalando paquetes..."
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"No se puede leer su tabla de particiones, estĂĄ demasiado deteriorada :-(\n"
-"Se intentarĂĄ ir poniendo en blanco las particiones malas"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "ÂĄError!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "No se encuentra el archivo de imagen `%s' necesario."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Configurador de InstalaciĂłn AutomĂĄtica"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"EstĂĄ a punto de configurar el un disquete de InstalaciĂłn AutomĂĄtica. Esta "
-"caracterĂ­stica es algo peligrosa y debe ser utilizada con cuidado.\n"
-"\n"
-"Con esa caracterĂ­stica, podrĂĄ repetir la instalaciĂłn que ha realizado en "
-"esta computadora, y se le consultarĂĄ interactivamente en algunos pasos, para "
-"poder cambiar los valores de los mismos.\n"
-"\n"
-"Para mĂĄxima seguridad, el particionado y formateado nunca serĂĄ realizado "
-"automĂĄticamente, sin importar lo que eligiĂł durante la instalaciĂłn de esta "
-"computadora.\n"
-"\n"
-"ÂżDesea continuar?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "ConfiguraciĂłn de pasos automĂĄticos"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Por favor, elija para cada paso si desea que se repita como su instalaciĂłn, "
-"o el mismo serĂĄ manual"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Bienvenido.\n"
-"\n"
-"Los parĂĄmetros de la instalaciĂłn automĂĄticas estĂĄn disponibles en las "
-"secciones de la izquierda"
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "ÂĄFelicidades!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"El disquete ha sido generado satisfactoriamente.\n"
-"Ahora puede repetir su instalaciĂłn."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "InstalaciĂłn automĂĄtica"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "AĂąadir un elemento"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Borrar el Ăşltimo elemento"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" Reporte de DrakBackup \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Reporte del servidor DrakBackup\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Detalles del reporte de DrakBackup\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "progreso total"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "Respaldar archivos del sistema..."
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "Respaldar archivos del disco rĂ­gido..."
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "Respaldar archivos de usuario..."
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Progreso de respaldo del disco rĂ­gido..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Respaldar otros archivos..."
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"Lista de archivos envĂ­ada por FTP: %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) Problema en la conexiĂłn FTP. No fue posible enviar sus archivos de copia "
-"de seguridad por FTP.\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Error durante el envĂ­o de correo. \n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "SelecciĂłn de archivos."
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr "Seleccione los archivos o directorios y haga clic sobre 'Agregar'"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Por favor, verifique todas las opciones que necesita.\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Estas opciones pueden respaldar y restaurar todos los archivos en el "
-"directorio /etc.\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Respaldar archivos del sistema. (directorio /etc)"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Usar repaldo incremental (no reemplazar respaldos antiguos)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "No incluir archivos crĂ­ticos (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Con esta opciĂłn podrĂĄ restaurar cualquier versiĂłn de su\n"
-"directorio /etc."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-"Por favor, marque a todos los usuarios que desa incluir en la copia de "
-"respaldo"
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "No incluir el cache del navegador"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Usar respaldos incrementales (no reemplazar respaldos antiguos)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Quitar los seleccionados."
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "Usuarios"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Usar conexiĂłn FTP para realizar copia de respaldo"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Por favor, ingrese el nombre o la IP del host"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-"Por favor, ingrese el directorio en este host para\n"
-" guardar la copia de respaldo."
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Por favor, ingrese su nombre de usuario (login)"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Por favor, ingrese su contraseĂąa"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Recordar esta contraseĂąa"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "ConexiĂłn FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "ConexiĂłn segura"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "Usar CD/DVDROM para la copia de respaldo"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Por favor, elija el espacio de su CD"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "Por favor, verifique que estĂĄ utilizando un soporte CDRW"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Por favor, verifique si desea borrar su CDRW primero"
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Por favor verifique si desea hacer que su\n"
-" CD arranque."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Por favor, ingrese el nombre del dispositivo de\n"
-" su grabadora de CD, ej: 0,1,0"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "Usar cinta para realizar respaldo"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-"Por favor, ingrese el nombre del dispositivo a utilizar para el respaldo"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Por favor, ingrese el tamaĂąo mĂĄximo\n"
-" permitido para Drakbackup"
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Por favor, ingrese el directorio a guardar:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Usar cuota para archivos de respaldo"
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "Red"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "Disco rĂ­gido / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "Cada hora."
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "Cada dĂ­a."
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "Cada semana."
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "Cada mes."
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "Usar servidor"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"Por favor, elija el intervalo de\n"
-" tiempo entre cada copia de respaldo"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"Por favor, elija el soporte\n"
-"para la copia de respaldo."
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Usar el disco rĂ­gido con servidor"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Usar FTP con servidor"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-"Por favor, asegĂşrese que el servidor cron estĂĄ incluĂ­do entre sus servicios."
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "Enviar reporte por correo-e luego de cada respaldo a :"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "QuĂŠ"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "DĂłnde"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "CuĂĄndo"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "MĂĄs opciones"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "ConfiguraciĂłn de Drakbackup"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Por favor, elija dĂłnde desea realizar la copia de respaldo"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "en disco rĂ­gido"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "a travĂŠs de la red"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Por favor, elija quĂŠ desea respaldar"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "Respaldar el sistema"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "Respaldar usuarios"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Seleccionar manualmente el usuario"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Fuentes de respaldo: \n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Archivos del sistema:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Archivos de usuario:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Otros archivos:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- Guardar en el disco en la ruta : %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- Guardar por FTP en el host : %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t nombre de usuario: %s\n"
-"\t\t en ruta: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Opciones:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tNo incluir archivos del sistema\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tRespaldar usando tar y bzip2\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tRespaldar usando tar y gzip\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- Servidor (%s) incluye :\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t-Disco rĂ­gido.\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-CDROM.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Red por FTP.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Red por SSH.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-"Sin configuraciĂłn, por favor haga clic sobre el Asistente o Avanzado.\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Lista de datos a restaurar:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Lista de datos corruptos:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "Por favor, desmarque o quĂ­telo la prĂłxima vez."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "Los archivos de respaldo estĂĄn corruptos"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " Todos los datos seleccionados han sido "
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " Recuperados satisfactoriamente en %s"
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " ConfiguraciĂłn de la restauraciĂłn"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "Se pueden restaurar los otros archivos."
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Lista de usuarios a restaurar (sĂłlo importa la fecha mĂĄs reciente por "
-"usuario)"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "Respaldar los archivos del sistema anteriores a:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "Por favor, elija la fecha para restaurar"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Usar el disco rĂ­gido para copia de respaldo"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Restaurar desde el disco rĂ­gido."
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-"Por favor, ingrese el directorio donde se almacenan las copias de respaldo"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Elija otro soporte desde el cual restaurar"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Otros soportes"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "Restaurar archivos del sistema"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Restaurar usuarios"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Restaurar otros"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "seleccione la ruta para restaurar (en vez de /)"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"Realizar respaldo nuevo antes de restaurar (sĂłlo para respaldos "
-"incrementales)"
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Borrar directorios de los usuarios antes de restaurar."
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Restaurar todas las copias de respaldo"
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "RestauraciĂłn personalizada"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Ayuda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "Anterior"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Guardar"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Realizar copia de respaldo"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Restaurar"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Siguiente"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Por favor, realize la copia de respaldo antes de restaurarla...\n"
-" o verifique que la ruta para almacenar es correcta."
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"Error enviando correo con sendmail\n"
-" su correo-e de reporte no se enviĂł\n"
-" Por favor, configure a sendmail"
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista de paquetes a instalar"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Error enviando el archivo por FTP.\n"
-" Por favor, corrija su configuraciĂłn de FTP."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Por favor, seleccione los datos a restaurar..."
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Por favor, seleccione el soporte para la copia de respaldo..."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Por favor, elija los datos a respaldar..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"No se econtrĂł el archivo de configuraciĂłn,\n"
-" por favor haga clic sobre Asistente o Avanzado."
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "En desarrollo ... por favor, espere."
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "Respaldar archivos del sistema"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "Respaldar archivos de usuarios"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Respaldar otros archivos"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Progreso total"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "EnvĂ­o de archivos por FTP"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Enviando archivos..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "Lista de datos a incluir en el CDROM."
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Por favor, ingrese la velocidad de la grabadora de CDs"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-"Por favor, ingrese el nombre del dispositivo de su grabadora de CDs (ej: "
-"0,1,0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Por favor, verifique si desea hacer que su CD arranque."
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "Respaldar Ahora desde archivo de configuraciĂłn"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Ver configuraciĂłn del respaldo"
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "ConfiguraciĂłn del Asistente"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "ConfiguraciĂłn avanzada"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "Respaldar Ahora"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-"descripciĂłn de las opciones:\n"
-"\n"
-" En este paso Drakbackup le permite cambiar:\n"
-"\n"
-" - El modo de compresiĂłn:\n"
-" \n"
-" Si marca compresiĂłn bzip2, comprimirĂĄ mejor sus datos\n"
-" que gzip (alrededor del 2-10 %).\n"
-" Por defecto, esta opciĂłn no estĂĄ marcada dado que este\n"
-" modo de compresiĂłn necesita mĂĄs tiempo (100 veces mĂĄs)\n"
-" \n"
-" - El modo de actualizaciĂłn:\n"
-"\n"
-" Esta opciĂłn actualizarĂĄ su respaldo, pero no es\n"
-" realmente Ăştil ya que necesita descomprimirlo\n"
-" antes que pueda actualizarlo.\n"
-" \n"
-" - el modo .backupignore:\n"
-"\n"
-" Al igual que cvs, Drakbackup ignorarĂĄ todas las referencias\n"
-" incluĂ­das en los archivos .backupignore de cada directorio.\n"
-" ej: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-"\n"
-" Algunos errores con sendmail son causados por\n"
-" una configuraciĂłn mala de postfix. Para resolverlo tiene\n"
-" que configurar myhostname o mydomain en /etc/postfix/main.cf\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-"descripciĂłn de las opciones:\n"
-"\n"
-" - Respladar archivos del sistema:\n"
-" \n"
-"\tEsta opciĂłn permite respaldar su directorio /etc, que\n"
-"\tcontiene todos los archivos de configuraciĂłn. Por favor\n"
-"\ttenga cuidado durante la restauraciĂłn de no sobre-escribir:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Respaldar archivos de usuario:\n"
-"\n"
-"\tEsta opciĂłn permite seleccionar todos los usuarios que\n"
-"\tdesea respaldar.\n"
-"\tPara preservar espacio, se recomienda no incluir el\n"
-"\tcache del navegador web.\n"
-"\n"
-" - Respaldar otros archivos:\n"
-"\n"
-"\tEsta opciĂłn permite aĂąadir mĂĄs datos a guardar.\n"
-"\tCon el otro respaldo no es posible, por ahora,\n"
-"\tseleccionar el respaldo incremental.\t\t\n"
-" \n"
-" - Respaldo incremental:\n"
-"\n"
-"\tEl respaldo incremental es la opciĂłn mĂĄs potente.\n"
-"\tLe permite respaldar todos sus datos la primera\n"
-"\tvez, y luego sĂłlo aquellos que cambiaron.\n"
-"\tLuego, podrĂĄ, durante la etapa de restauraciĂłn,n\trestaurar sus datos "
-"desde una fecha especificada.\n"
-"\t\n"
-"\tSi no ha seleccionado esta opciĂłn todos los\n"
-"\trespaldos antiguos se borran antes de volver a respaldar.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"descripciĂłn de la restauraciĂłn:\n"
-" \n"
-"SĂłlo se utilizarĂĄ la fecha mĂĄs reciente, ya que con respaldos\n"
-"incrementales sĂłlo es necesario restaurar de uno de los antiguos.\n"
-"\n"
-"Por lo tanto, si no desea restaurar un usuario, por favor desmarque\n"
-"su casilla.\n"
-"\n"
-"En caso contrario, sĂłlo puede seleccionar alguno de ĂŠstos\n"
-"\n"
-" - Respaldos incrementales:\n"
-"\n"
-"\tEl respaldo incremental es la opciĂłn mĂĄs potente.\n"
-"\tLe permite respaldar todos sus datos la primera\n"
-"\tvez, y luego sĂłlo aquellos que cambiaron.\n"
-"\tLuego, podrĂĄ, durante la etapa de restauraciĂłn,\n"
-"\trestaurar sus datos desde una fecha especificada.\n"
-"\tSi no ha seleccionado esta opciĂłn todos los\n"
-"\trespaldos antiguos se borran antes de volver a respaldar...\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft por DUPONT Sebastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft por DUPONT Sebastien <dupont_s\\@epita.fr>\n"
-"\n"
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-"\n"
-" _____________________\n"
-"\n"
-"DescripciĂłn:\n"
-"\n"
-" Drakbackup se usa para respaldar su sistema.\n"
-" Durante la configuraciĂłn puede seleccionar:\n"
-"\t- Archivos del sistema,\n"
-"\t- Archivos de usuarios,\n"
-"\t- Otros archivos.\n"
-"\to Todo su sistema ... y Otros (como Particiones Windows)\n"
-"\n"
-" Drakbackup le permite respaldar su sistema sobre:\n"
-"\t- Disco rĂ­gido.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (con autoboot, rescue y autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Cinta.\n"
-"\n"
-" Drakbackup le permite restaurar su sistema a un\n"
-" directorio seleccionado por el usuario.\n"
-"\n"
-" Predeterminadamente se almacenarĂĄn los respaldos en su\n"
-" directorio /var/drakbackup.\n"
-"\n"
-" Archivo de configuraciĂłn:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Paso de restauraciĂłn:\n"
-" \n"
-" Durante la restauraciĂłn, DrakBackup quitarĂĄ su \n"
-" directorio original y verificarĂĄ que todos \n"
-" los archivos de respaldo no estĂŠn corruptos. Se \n"
-" recomienda que haga un Ăşltimo respaldo antes de restaurar.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-"descricpiĂłn de las opciones:\n"
-"\n"
-"Por favor, tenga cuidado cuando use respaldos por ftp, porque\n"
-"sĂłlo los respaldos ya hechos se envĂ­an al servidor.\n"
-"Por el momento, necesita realizar el respaldo en su disco rĂ­gido\n"
-"antes de enviarlo al servidor.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-"\n"
-"Problemas durante la restauraciĂłn:\n"
-"\n"
-"Durante el paso de restauraciĂłn, Drakbackup verificarĂĄ todos los\n"
-"archivos de respaldo antes de restaurarlos.\n"
-"Antes de la restuaraciĂłn, Drakbackup quitarĂĄ el\n"
-"directorio original, y perderĂĄ todos los datos en el mismo.\n"
-"Es importante ser cuidadoso y no modificar los archivos de\n"
-"datos de respaldo a mano.\n"
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-"DescripciĂłn:\n"
-"\n"
-" Drakbackup se usa para respaldar su sistema.\n"
-" Durante la configuraciĂłn puede seleccionar:\n"
-"\t- Archivos del sistema,\n"
-"\t- Archivos de usuarios,\n"
-"\t- Otros archivos.\n"
-"\to Todo su sistema ... y Otros (como Particiones Windows)\n"
-"\n"
-" Drakbackup le permite respaldar su sistema sobre:\n"
-"\t- Disco rĂ­gido.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (con autoboot, rescue y autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Cinta.\n"
-"\n"
-" Drakbackup le permite restaurar su sistema a un\n"
-" directorio seleccionado por el usuario.\n"
-"\n"
-" Por defecto, se almacenarĂĄn los respaldos en su\n"
-" directorio /var/lib/drakbackup.\n"
-"\n"
-" Archivo de configuraciĂłn:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Paso de restauraciĂłn:\n"
-" \n"
-" Durante la restauraciĂłn, DrakBackup quitarĂĄ su \n"
-" directorio original y verificarĂĄ que todos \n"
-" los archivos de respaldo no estĂŠn corruptos. Se \n"
-" recomienda que haga un Ăşltimo respaldo antes de restaurar.\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "FallĂł la instalaciĂłn de %s. OcurriĂł el siguiente error:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Buscar tipografĂ­as instaladas"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Desmarcar las tipografĂ­as instaladas"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "analizar todas las tipografĂ­as"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "no se encontraron tipografĂ­as"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "hecho"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "no se pueden encontrar tipografĂ­as en las particiones montadas"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Volver a seleccionar tipografĂ­as correctas"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "no se pueden encontrar tipografĂ­as.\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Buscar tipografĂ­as en la lista de instaladas"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Copiar tipografĂ­as"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "InstalaciĂłn de tipografĂ­as True Type"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "por favor, espere mientras corre ttmkfdir..."
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "InstalaciĂłn de True Type realizada"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "ConversiĂłn de tipografĂ­as"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "Construyendo Type1"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr "Referenciando a Ghostscript"
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "ConversiĂłn de tipografĂ­as TTF"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "ConversiĂłn de tipografĂ­as PFM"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Suprimir archivos temporales"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "Reiniciar XFS"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Suprimir archivos de tipografĂ­as"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "Reiniciar XFS"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Antes de instalar cualquier tipografĂ­a, asegĂşrese que tiene derecho de "
-"usarlas\n"
-"e instalarlas en su sistema.\n"
-"\n"
-"-Puede instalar las tipografĂ­as usando la manera normal. En casos raros,\n"
-"puede ser que tipografĂ­as \"falsas\" congelen a su servidor X."
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "ImportaciĂłn de tipografĂ­as"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Obtener tipografĂ­as de Windows"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Desinstalar tipografĂ­as"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Opciones avanzadas"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Lista de tipografĂ­as"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Elija las aplicaciones que soportarĂĄn las tipografĂ­as:"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Impresoras genĂŠricas"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-"Seleccione el archivo o directorio de tipografĂ­as y haga clic sobre 'Agregar'"
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Instalar lista"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "haga clic aquĂ­ si estĂĄ seguro."
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "aquĂ­ si no lo estĂĄ."
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "Deseleccionar todas."
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Seleccionar todas."
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "Quitar lista"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Pruebas iniciales"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Copiar tipografĂ­as en su sistema"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Instalar y convertir tipografĂ­as"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Post-instalaciĂłn"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "Quitar tipografĂ­as de su sistema"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Post-desinstalaciĂłn"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Compartir la conexiĂłn a Internet"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ activada ahora"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Ya se ha realizado la configuraciĂłn de la conexiĂłn compartida a Internet.\n"
-"Ahora estĂĄ activa.\n"
-"\n"
-"ÂżQuĂŠ desea hacer?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "desactivar"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "rechazar"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "reconfigurar"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Desactivando los servidores..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ inactiva."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ desactivada"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Ya se ha realizado la configuraciĂłn de la conexiĂłn compartida a Internet.\n"
-"Ahora estĂĄ inactiva.\n"
-"\n"
-"ÂżQuĂŠ desea hacer?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "activar"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Activando los servidores..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Ahora, la conexiĂłn compartida a Internet estĂĄ activa."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Puede configurar su ordenador para compartir su conexiĂłn a Internet.\n"
-"Con esta caracterĂ­stica, otras mĂĄquinas de su red local podrĂĄn usar la "
-"conexiĂłn a Internet de este ordenador.\n"
-"\n"
-"Aviso: necesita un adaptador de red dedicado para configurar una red de ĂĄrea "
-"local (LAN)."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interfaz %s (usando el mĂłdulo %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Interfaz %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "ÂĄNo hay ningĂşn adaptador de red en su sistema!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"No se ha detectado ningĂşn adaptador de red en su sistema. Por favor, ejecute "
-"la herramienta de configuraciĂłn del hardware."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Interfaz de red"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"SĂłlo hay un adaptador de red configurado en su sistema:\n"
-"\n"
-"%s\n"
-"\n"
-"Se va a configurar su red de ĂĄrea local con ese adaptador."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Por favor, elija quĂŠ adaptador de red estarĂĄ conectado a su red de ĂĄrea "
-"local."
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Interfaz de red ya configurada"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"AtenciĂłn, el adaptador de red (%s) ya estĂĄ configurado.\n"
-"\n"
-"ÂżDesea volver a configurarlo automĂĄticamente?\n"
-"\n"
-"Puede hacerlo manualmente pero necesita saber lo que estĂĄ haciendo."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Volver a configurar automĂĄticamente"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "Mostrar la configuraciĂłn corriente de la interfaz"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"ConfiguraciĂłn corriente de `%s':\n"
-"\n"
-"Red: %s\n"
-"DirecciĂłn IP: %s\n"
-"Atributo IP: %s\n"
-"Controlador: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Puedo mantener su configuraciĂłn corriente y asumir que ya configurĂł un "
-"servidor DHCP; en ese caso, por favor verifique que leo correctamente la Red "
-"Clase C que usĂł para su red local; no la volverĂŠ a configurar y no tocarĂŠ la "
-"configuraciĂłn de su servidor DHCP.\n"
-"\n"
-"Caso contrario, puedo volver a configurar su interfaz y (volver a)configurar "
-"un servidor DHCP por Ud.\n"
-"\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "Red Local Clase C"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "IP de (este) servidor DHCP"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Volver a configurar la interfaz y el servidor DHCP"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "La red local no finalizĂł con `.0', saliendo."
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"ÂĄSe encontrĂł un conflicto potencial de direcciones LAN en la configuraciĂłn "
-"de %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "ÂĄSe detectĂł la configuraciĂłn del cortafuegos!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"ÂĄAtenciĂłn! Se ha detectado la configuraciĂłn del cortafuegos existente. Puede "
-"que necesite algĂşn ajuste manual tras la instalaciĂłn."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Configurando..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Configurando los scripts, instalando el software, iniciando los servidores..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemas al instalar el paquete %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Se ha configurado todo.\n"
-"Ahora puede compartir su conexiĂłn a Internet con otros ordenadores de su red "
-"de ĂĄrea local, usando la configuraciĂłn automĂĄtica de la red (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "La configuraciĂłn ya se ha hecho, pero ahora estĂĄ desactivada."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "La configuraciĂłn ya se ha hecho, y ahora estĂĄ activada."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "No se ha configurado la conexiĂłn compartida a Internet."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "ConfiguraciĂłn de la conexiĂłn compartida a Internet"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"ÂĄBienvenido a la herramienta para compartir la conexiĂłn a Internet!\n"
-"\n"
-"%s\n"
-"\n"
-"Haga click sobre Configurar para lanzar el asistente de configuraciĂłn."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ConfiguraciĂłn de la red (%d adaptadores)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Borrar perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil a borrar:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nuevo perfil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Nombre del perfil a crear (el perfil nuevo se crea como copia del actual):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nombre de la mĂĄquina: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Acceso a Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Pasarela:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfaz:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Estado:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Por favor, espere"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurar el acceso a Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "ConfiguraciĂłn de la red local"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Controlador"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfaz"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocolo"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Estado"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurar la red de ĂĄrea local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Haga clic aquĂ­ para lanzar el asistente ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Asistente..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplicar"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Espere, por favor... Aplicando la configuraciĂłn"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Conectado"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "No conectado"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Desconectar..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"AtenciĂłn, se ha detectado otra conexiĂłn con la Internet, tal vez estĂĄ usando "
-"su red"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"No tiene configurada ninguna interfaz.\n"
-"Configure la primera haciendo clic sobre 'Configurar'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "ConfiguraciĂłn LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocolo de arranque"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciado al arranque"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "cliente DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "activar ahora"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "desactivar ahora"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"TodavĂ­a no se ha configurado esta interfaz.\n"
-"Lance el asistente de configuraciĂłn en la ventana principal"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"No tiene ninguna conexiĂłn a Internet.\n"
-"Primero debe crear una haciendo clic sobre 'Configurar'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "ConfiguraciĂłn de la conexiĂłn a Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "ConfiguraciĂłn de la conexiĂłn a Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipo de conexiĂłn: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "ParĂĄmetros"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Pasarela"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Tarjeta ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Definiendo el nivel de seguridad"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Centro de control"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Elija la herramienta que desea usar"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "CanadĂĄ (cable)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "EEUU (bcast)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "EEUU (cable)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "EEUU (cable-hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "China (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "JapĂłn (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "JapĂłn (cable)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Europa del este"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Irlanda"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "Europa del oeste"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Australia"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "Nueva Zelanda"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "SudĂĄfrica"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Por favor,\n"
-"teclee su norma de tv y paĂ­s"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "Norma de TV:"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Área:"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "Buscando canales de TV, en progreso ..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "Buscando canales de TV"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr "ÂĄNo se detectĂł tarjeta de TV!"
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-"No se detectĂł tarjeta de TV en su mĂĄquina. Por favor, verifique que tiene conectada correctamente una tarjeta de vĂ­deo/TV soportada por Linux.\n"
-"\n"
-"\n"
-"Puede visitar nuestra base de datos de hardware en:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "uso: keyboarddrake [--expert] [teclado]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Seleccione la distribuciĂłn de su teclado."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "ÂżDesea que la tecla BackSpace envĂ­e un Delete en la consola?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Cambie el CD-ROM"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Por favor, inserte el CD-ROM de la instalaciĂłn en su unidad y presione "
-"Aceptar.\n"
-"Si no lo tiene, presione Cancelar para evitar la actualizaciĂłn en vivo."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "ÂĄÂĄÂĄ No se puede iniciar la actualizaciĂłn en vivo !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr "Se ha realizado el cambio, pero no se harĂĄ efectivo hasta que salga"
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "Mostrar sĂłlo para el dĂ­a seleccionado"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Archivo/_Nuevo"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Archivo/_Abrir"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>A"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Archivo/_Guardar"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>G"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Archivo/Guardar _como"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Archivo/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Opciones"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Opciones/Prueba"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ayuda"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Ayuda/_Acerca de..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "Usuario"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "Mensajes"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "Syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Explicaciones de las herramientas de Mandrake"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "buscar"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Una herramienta para ver sus archivos de registro (logs)"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "ConfiguraciĂłn"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "coincidencia"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "pero no hay coincidencias"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Elija un archivo"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Calendario"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Contenido del archivo"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "Alerta por correo/SMS"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "por favor, espere, analizando el archivo: %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "ConfiguraciĂłn de alerta por correo/SMS"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Bienvenido a la herramienta de configuraciĂłn del correo/SMS.\n"
-"\n"
-"AquĂ­ podrĂĄ configurar su sistema de alerta.\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "configuraciĂłn de servicios"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-"RecibirĂĄ una alerta si se detiene la ejecuciĂłn de uno de los servicios "
-"seleccionados"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "configuraciĂłn de la carga"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "RecibirĂĄ una alerta si la carga es mayor que este valor"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "configuraciĂłn de alerta"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "Configura la forma en que el sistema le alertarĂĄ"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Guardar como..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Seleccione el tipo de su ratĂłn, por favor."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "no se encontrĂł ningĂşn usb_serie\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "ÂżEmular el tercer botĂłn?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "se encontrĂł %s en %s, Âżconfigurarlo?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Seleccione un escĂĄner."
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "El escĂĄner %s no estĂĄ soportado"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-"Scannerdrake no pudo detectar su escĂĄner %s.\n"
-"Por favor, seleccione el dispositivo donde estĂĄ conectado su escĂĄner"
-
-#: ../../standalone/scannerdrake_.c:96
-msgid "choose device"
-msgstr "elija el dispositivo"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"printerdrake puede configurar este escĂĄner %s.\n"
-"Puede lanzar printerdrake desde el Centro de control de Mandrake en la "
-"secciĂłn Hardware."
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"Su escĂĄner %s ha sido configurado.\n"
-"Ahora puede escanear documentos usando \"XSane\" en el menĂş Multimedios/GrĂĄficos."
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "ConfiguraciĂłn del cortafuegos"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "ConfiguraciĂłn del cortafuegos"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Cortafuegos\n"
-"\n"
-"Ya tiene configurado un cortafuegos.\n"
-"Haga clic sobre Configurar para cambiar o quitar el cortafuegos"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Cortafuegos\n"
-"\n"
-"Haga clic sobre Configurar para configurar un cortafuegos estĂĄndar"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Elija su idioma"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Tipo de instalaciĂłn"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "DetecciĂłn del disco rĂ­gido"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "ConfiguraciĂłn del ratĂłn"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Elija su teclado"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Seguridad"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Sistemas de archivos"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formateo de particiones"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Elija los paquetes a instalar"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Instalar el sistema"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "AĂąadir un usuario"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Configurar la red"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Servicios al inicio"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Cargador de arranque"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Crear un disco de arranque"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "ConfiguraciĂłn de X"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Actualiz. del sistema"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Salir de la instalaciĂłn"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"configurador de tinyfirewall\n"
-"\n"
-"Esto configura un cortafuegos personal para esta mĂĄquina Mandrake Linux.\n"
-"Para una soluciĂłn potente de cortafuegos dedicada, por favor eche un "
-"vistazo\n"
-"a la distribuciĂłn especializada MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Ahora le preguntaremos a quĂŠ servicios quiere permitir conectarse desde\n"
-"Internet. Por favor, piense cuidadosamente las respuestas, ya que la\n"
-"seguridad de su ordenador es importante.\n"
-"Por favor, si en este momento no estĂĄ usando alguno de estos servicios,\n"
-"protĂŠjalos. ÂĄPuede cambiar esta configuraciĂłn cuando quiera\n"
-"volviendo a ejecutar esta aplicaciĂłn!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"ÂżEstĂĄ corriendo un servidor web en esta mĂĄquina que quiere que vea toda\n"
-"Internet? Si estĂĄ corriendo un servidor web al que sĂłlo necesita acceder\n"
-"desde esta mĂĄquina, aquĂ­ puede responder con seguridad NO.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"ÂżEstĂĄ corriendo un servidor de nombres en esta mĂĄquina? Si no configurĂł uno\n"
-"para entregar informaciĂłn de IP y de la zona a toda Internet, por favor\n"
-"responda no.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"ÂżDesea permitir conexiones de entrada de Secure Shell (ssh)? Este es un\n"
-"reemplazo de telnet que puede usar para la entrada al sistema. Si ahora estĂĄ "
-"usando\n"
-"telnet, definitivamente deberĂ­a cambiar a ssh. telnet no estĂĄ cifrado, por\n"
-"lo tanto algunos atacantes pueden robarle su contraseĂąa si lo usa. ssh estĂĄ\n"
-"cifrado y no permite este tipo de ataque."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"ÂżDesea permitir conexiones entrantes por telnet?\n"
-"Esto es terriblemente inseguro, como explicamos en la pantalla anterior. Es\n"
-"altamente recomendable responder No aquĂ­ y usar ssh en lugar de\n"
-"telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"ÂżEstĂĄ corriendo un servidor FTP que debe ser accesible desde Internet?\n"
-"En ese caso, es altamente recomendable que sĂłlo lo use para transferencias\n"
-"anĂłnimas. Algunos atacantes pueden robar cualquier contraseĂąa enviada por "
-"FTP,\n"
-"ya que FTP tampoco usa cifrado para transferir las contraseĂąas.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"ÂżEstĂĄ corriendo un servidor de correo? Si envĂ­a sus mensajes con pine, "
-"mutt \n"
-"o cualquier otro cliente de correo de modo texto, probablemente sĂ­.\n"
-"En caso contrario, deberĂ­a proteger esto con el cortafuegos.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"ÂżEstĂĄ corriendo un servidor POP o IMAP? Estos deberĂ­an ser\n"
-"usados para almacenar cuentas de correo no basadas en web para las\n"
-"personas en esta mĂĄquina.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Parece que estĂĄ ejecutando un nĂşcleo 2.2. Si una computadora en su casa\n"
-"o en la oficina configura su direcciĂłn IP de red automĂĄticamente\n"
-"(asignaciĂłn dinĂĄmica), debemos permitir esto. ÂżEs este el caso?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"ÂżEl reloj de su computadora estĂĄ sincronizado al reloj de otra computadora?\n"
-"Mayormente, esto es lo que usan las organizaciones con servidores Unix/"
-"Linux\n"
-"medianamente grandes para sincronizar los tiempos de conexiĂłn y cosas asĂ­.\n"
-"Si no es parte de una oficina grande y nunca escuchĂł nada acerca de esto,\n"
-"probablemente no sea su situaciĂłn."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"ConfiguraciĂłn completa. ÂżSe pueden escribir estos cambios al disco?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "No se puede abrir %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "No se puede abrir %s para escribir: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr "No, no necesito DHCP"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr "SĂ­, necesito DHCP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr "No, no necesito NTP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr "SĂ­, necesito NTP"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr "No grabar"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr "Grabar y Salir"
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "Asistente para la configuraciĂłn del Cortafuegos"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr "No (proteger esto de la Internet detrĂĄs del cortafuegos)"
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr "SĂ­ (permitir esto a travĂŠs del cortafuegos)"
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr "Espere por favor... Verificando los paquetes instalados"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Fallo instalando los paquetes necesarios: %s y Bastille.\n"
-" Intente instalarlos a mano."
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Servidor, Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Computadora de Red (cliente)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "Servidor NFS, servidor SMB, servidor proxy, servidor SSH"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Oficina"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "EstaciĂłn de trabajo GNOME"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Herramientas para su Palm Pilot o su Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "EstaciĂłn de trabajo"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Servidor, Cortafuegos/Router"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Servidor de InformaciĂłn de Red y de Nombres de Dominio"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Programas de Oficina: procesadores de palabras (kword, abiword), plantillas "
-"de cĂĄlculo (kspread, gnumeric), visualizadores PDF, etc"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Herramientas de audio: reproductores mp3 o midi, mezcladores, etc"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Libros y COMOs sobre Linux y Software Libre"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "EstaciĂłn de trabajo KDE"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedios - VĂ­deo"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-"Conjunto de herramientas para correo, noticias, web, transferencia de "
-"archivos, y chat"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Servidor, Bases de Datos"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Servidor de base de datos PostgreSQL o MySQL"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Herramientas para facilitar la configuraciĂłn de su computadora"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedios - Sonido"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitarios"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "DocumentaciĂłn"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Herramientas para la consola"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Servidor de correo Postfix, servidor de noticias Inn"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "EstaciĂłn Internet"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "EstaciĂłn Multimedios"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "ConfiguraciĂłn"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "MĂĄs escritorios grĂĄficos (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"El K Desktop Environment, el entorno grĂĄfico bĂĄsico con una colecciĂłn de "
-"herramientas que lo acompaĂąan"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Entorno grĂĄfico"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache y Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Herramientas para crear y grabar CDs"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "EstaciĂłn de trabajo de Oficina"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Servidor"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Programas grĂĄficos, tales como El Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Bibliotecas de desarrollo C y C++, programas y archivos *.h"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Computadora servidor de red"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Servidor, Correo/Groupware/Noticias"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "EstaciĂłn de Juegos"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Reproductores y editores de vĂ­deo"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedios - GrĂĄficos"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Programas de entretenimiento: arcade, tableros, estrategia, etc"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Conjunto de herramientas para leer y enviar correo y noticiar (pine, mutt, "
-"tin...) y para navegar por la Web"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivado, emuladores, monitoreo"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Finanzas personales"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Entorno grĂĄfico con un conjunto de herramientas de escritorio y aplicaciones "
-"amigables"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Clientes para los distintos protocolos incluyendo a ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Pasarela de acceso a Internet"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programas de reproducciĂłn/ediciĂłn de sonido y vĂ­deo"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Otros entornos grĂĄficos"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editores, shells, manipulaciĂłn de archivos, terminales"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programas para administrar sus finanzas, tales como gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "AdministraciĂłn de la informaciĂłn personal"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedios - GrabaciĂłn de CD"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "EstaciĂłn de trabajo CientĂ­fica"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
deleted file mode 100644
index d088213a6..000000000
--- a/perl-install/share/po/et.po
+++ /dev/null
@@ -1,14194 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# Riho Kurg <rx@linux.ee>, 1999-2001.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 1999-10-28 19:54+0200\n"
-"Last-Translator: Riho Kurg <rx@linux.ee>\n"
-"Language-Team: Estonian <et@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-15\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Seadista kőik monitorid sőltumatult"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Kasuta Xinerama laiendusi"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Seadista ainult kaart \"%s\" (%s)"
-
-#
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Mitme monitori seadistamine"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Süsteemis on vőimalik kasutada mitut monitori.\n"
-"Mida Te soovite teha?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Graafikakaart"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Valige graafikakaart"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Valige X server"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Valige X server"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X server"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree86 %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Millise XFree konfiguratsiooni soovite kasutada?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Teie videokaardi 3D graafikakiirendit saab kasutada vaid koos XFree %s-ga.\n"
-"XFree %s toetab Teie videokaarti ja vőib omada paremat 2D tuge."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Teie kaardi 3D graafikakiirendit toetab XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s koos 3D graafikakiirendi toega"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Teie videokaardi 3D graafikakiirendit saab kasutada koos XFree %s-ga.\n"
-"SEE ON AGA EKSPERIMENTAALNE JA VŐIB OLLA EBASTABIILNE."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s koos EKSPERIMENTAALSE 3D kiirendi toega"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Teie videokaardi 3D graafikakiirendit saab kasutada vaid koos XFree %s-ga.\n"
-"SEE ON AGA EKSPERIMENTAALNE JA VŐIB OLLA EBASTABIILNE.\n"
-"Teie kaarti toetab ka XFree %s, millel on ehk parem 2D tugi."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree sätted"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Valige graafikamälu suurus"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Valige X server"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Valige monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Kaks kriitilist suurust on ekraanisagedus, mis määrab kogu kuva\n"
-"uuendamise aja ja realaotussagedus\n"
-"\n"
-"On VÄGA TÄHTIS, et Te ei määraks siinkohal monitori, mille realaotus on\n"
-"suurem kui Teie monitor vőimaldab. Vastasel juhul vőib Teie monitor hävida.\n"
-"Kui kahtlete, valige pigem väiksem väärtus."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Realaotussagedus"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Ekraaniuuendussagedus"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor ei ole seadistatud"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Graafikakaart ei ole veel seatud"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Kuvatihedus ei ole veel seatud"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Kas soovite seadistusi proovida?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Hoiatus: testimine vőib Teie arvuti peatada"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Proovime seadistusi"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"proovige mőnd parameetrit muuta"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Tekkis mingi viga:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Jätkub %d sekundi pärast"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Kas see on őige?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Tekkis mingi viga, proovige mőnd parameetrit muuta"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Kuvatihedus"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Valige kuvatihedus ja värvisügavus"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Graafikakaart: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Veel.."
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "OK"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspertresiim"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Näita kőike"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Kuvatihedused"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Klaviatuuriasetus: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Hiire tüüp: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Hiire port: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Realaotussagedus: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Ekraanisagedus: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Graafikakaart: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Graafikakaart: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Videomälu: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Värvisügavus: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Kuvatihedus: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 server: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 juhtprogramm: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Valmistume X-i seadistamiseks"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Mida Te soovite teha?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Muuda monitori"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Muuda graafikakaardi"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Muuda serveri parameetreid"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Muuda kuvatihedust"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Näita lisainfot"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Proovi veel"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Välju"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Säilita muutused?\n"
-"Olemasolevad sätted:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X stardib nüüd"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Teie arvutis on vőimalik käivitada X juba alglaadimisel.\n"
-"Kas soovite nii teha?"
-
-# c-format
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Muudatuste aktiveerimiseks käivitage %s uuesti"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Palun väljuge ja vajutage siis Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 värvi (8 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tuhat värvi (15 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tuhat värvi (16 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljonit värvi (24 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljardit värvi (32 bitti)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB vői rohkem"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA, 640x400 sagedusel 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "SVGA, 800x600 sagedusel 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-ühilduv, 1024x768, 87 Hz vahelejätuga "
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "SVGA, 1024x768, 87 Hz vahelejätuga, 800x600, 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "SVGA, 800x600 sagedusel 60 Hz, 640x480 sagedusel 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA, 1024x768 sagedusel 60 Hz, 800x600 sagedusel 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Kőrgsageduslik SVGA, 1024x768, 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Mitmesageduslik, 1280x1024 sagedusel 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Mitmesageduslik, 1280x1024 sagedusel 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Mitmesageduslik, 1280x1024 sagedusel 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Partitsiooni algusesse"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Ketta algusesse (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO installimine"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Kuhu soovite alglaaduri installida"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/grub installimine"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO tekstiresiimis"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO graafikaresiimis"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Laadimine DOS/Windowsist (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Alglaaduri peasätted"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Eelistatav alglaadur"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Alglaaduri peasätted"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Alglaadimisseade"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ei tööta vanema BIOSi korral)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Kompaktne"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "kompaktne"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Graafikamood"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Ooteaeg alglaadimisel"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Salasőna"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Salasőna (uuesti)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Piira käsurea suvandeid"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "piiratud"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Puhasta /tmp igal laadimisel"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Kui vaja, täpsusta RAM suurust (leitud %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Vőimalda mitut profiili"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Anna mälu suurus megabaitides"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Säte ``Piira käsurea suvandeid'' on ilma salasőnata mittekasutatav"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Palun proovige veel"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Salasőnad ei klapi"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Initsialiseerimisteade"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Open Firmware viivitus"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Ajapiirang kerneli laadimisel"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "CD-lt laadimine lubatud?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "OF laadimine lubatud?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Vaikimisi OS?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Praegu on kasutusel sellised kirjed.\n"
-"Te vőite neid lisada ning olemasolevaid muuta."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Lisa"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Tehtud"
-
-#: ../../any.pm_.c:265
-#, fuzzy
-msgid "Modify"
-msgstr "Modifitseeri RAIDi"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Millisele sektorile soovite seda tősta?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Muu OS (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Muu OS (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Muu OS (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Laadefail"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Juur"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Lisada"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Read-write"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabel"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Ebaturvaline"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Tähis"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Vaikimisi"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd suurus"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "NoVideo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Eemalda kirje"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Tühi kirjetähis ei ole lubatud"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Teil peab olema saaleala"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Selline tähis on juba kasutusel"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Leiti %s %s liidest"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "On Teil veel kaarte?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Kas Teil on ikka mőni %s liides?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Ei"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Jah"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Info riistvara kohta"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Installime juhtprogrammil %s kaardile %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(moodul %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Millist %s juhtprogrammi peaksime proovima?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Mőnedel juhtudel vajab %s juhtprogramm tööks lisainformatsiooni\n"
-"kuigi tavaliselt saab ka ilma hakkama. Kas soovite eraldi parameetreid\n"
-"määratleda vői lasta juhtprogrammil ise Teie arvutit kompida? Vőib juhtuda,\n"
-"et see viib arvuti segadusse kuid ei tohiks mingit jäävat kahju teha."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Proovida niisama"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Määrake parameetrid"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Nüüd vőite moodulile %s parameetreid määrata.\n"
-"Parameetrid on vormingus \"nimi=väärtus nimi2=väärtus2 ...\".\n"
-"Näiteks: \"io=0x300 irq=7\""
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Mooduli parameetrid:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Moodule %s laadimine ei őnnestunud.\n"
-"Kas soovite proovida parameetreid muuta?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(juba lisatud %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Salasőna on liiga lihtne"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Palun andke kasutajatunnus"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Kasutajatunnus tohib sisaldada ainult väikesi tähti, numbreid, - ja _"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "See kasutajatunnus on juba lisatud"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Lisa kasutaja"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Sisesta kasutaja\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Kasutaja őige"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Pärisnimi"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Kasutajatunnus"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Käsurida"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikoon"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Vaikimisi sisenemine"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Teie arvutit saab seada vaikimisi kasutaja sisenemisele.\n"
-"Kui Te seda ei soovi, valige <Katkesta>"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Valige uus vaikimisi kasutaja :"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Valige palun käivitatav aknahaldur:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Palun valige kasutatav keel"
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Teisi keeli saab valida pärast installimist"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Kőik"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Tavakasutaja"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Isetehtud"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "CUPS käivitatakse"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Valige paketid mida soovite installida"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Katkesta"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Tere tulemast, kräkkerid"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Vähene"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Tavahiir"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Kőrge"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Kőrge"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoiline"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Seda tase muudab küll süsteemi lihtsalt kasutatavaks, kui väga\n"
-"haavatavaks: ligipääsupiirangute puudumise tőttu ei peaks arvutit ühendama\n"
-"ei teiste arvutitega ega ka mitte Internetti."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Salasőnad on nüüd kasutusel, kuid vőrku ühendamine ei ole siiski soovitav."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"See on sobilik turvatase arvutile, mis ühendatakse Internetti kui klient."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr "Sellel turvatasemel vőib süsteemi kasutada Internetis ka serverina."
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Süsteem on täielikult suletud. Vőrgust kasutamine on vőimalik ainult\n"
-"spetsiaalselt loodud juurdepääsuteid kasutades."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Valige turvatase"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Turvataseme seadmine"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Valige X server"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Tere tulemast! Laadimisel aitab Teid %s!\n"
-"\n"
-"Valige nimekirjast eelistatav OS,\n"
-"vaikimisi oodake %d sekundit.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Tere tulemast! Laadimisel aitab Teid GRUB!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Kasutage valiku tegemiseks %c ja %c klahve"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Enter laeb Teie valiku, 'e' laseb muuta"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "suvandeid enne laadimist ja 'c' veel enam."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Valik laetakse automaatselt %d sekundi jooksul"
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "/boot on liiga täis"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Töölaud"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Startmenüü"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Kuhu soovite alglaaduri installida"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "selle kohta (veel) abi ei saa.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Alglaaduri stiil"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Fail"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Fail/_Välju"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "NewStyle kategoriseeritud jälgimine"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "NewStyle jälgimine"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Tavaline jälgimine"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Traditsiooniline Gtk+ jälgimine"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Käivita alglaadimisel Aurora"
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Lilo/grub mode"
-msgstr "Valimisviis"
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Yaboot mode"
-msgstr "Alglaadimismood"
-
-#: ../../bootlook.pm_.c:104
-#, fuzzy, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Internetiühenduse jagamise Abimees!\n"
-"\n"
-"%s\n"
-"\n"
-"Valige Abimehe käivitamiseks ``OK''"
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Seadista"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Töömood"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Käivita X-Windows alglaadimisel"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Ei taha automaatselt siseneda"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-"Jah, soovin automaatset sisselogimist sellele (kasutajale, keskkonnale)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "ei saa lugeda faili /etc/inittab: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutit"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minut"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekundit"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Partitsioone ei saa enam lisada"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Teisi keeli saab valida pärast installimist"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Prantsusmaa"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Belgia"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Saksa"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Kreeka"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Norra"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Vaata"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Itaalia"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "seerial"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Palun tehke oma andmetest enne tagavarakoopia"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Lugege hoolega!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Kui soovite kasutada aboot-i, jätke palun ketta algusesse vähemalt 2048 \n"
-"sektorit vaba ruumi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Viga"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Abimees"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Valige tegevus"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Teil on üks suur FAT partitsioon.\n"
-"(tavaliselt kasutab sellist MS DOS/Windows)\n"
-"Soovitame teil esmalt selle suurust muuta\n"
-"(klikkige ja siis valige \"Muuda\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Palun valige partitsioon"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Üksikasjad"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "ühendamine ebaőnnestus"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Saaleala"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Tühi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Muu"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Failisüsteemi tüübid: "
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Tekita"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tüüp"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Kasutage pigem ``%s''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Kustuta"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Kasutage enne \"Ühenda lahti\""
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "Partitsiooni %s tüübi muutmisel hävivad kőik seal olnud andmed"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Valige tegevus"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Looge uus partitsioon"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "ext2"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Tavakasutaja > Ekspert"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Ekspert > Tavakasutaja"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Tagasi"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Jätkate ikkagi?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Lőpeta ilma salvestamata"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Lőpetate ilma partitsioonitabelit salvestamata?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Kas soovite seadistusi proovida?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Paiguta ise"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Kustuta kőik"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Meili informatsioon"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Kőik primaarsed partitsioonid on kasutusel"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Partitsioone ei saa enam lisada"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Et saada rohkem partitsioone, kustutage palun üks, et luua laiendatud "
-"partitsioon"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Kirjuta partitsioonitabel"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Päästa partitsioonitabel"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Päästa partitsioonitabel"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Päästa partitsioonitabel"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "CD/flopi/.. autoühendamine"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Valige fail"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Tabeli tagavarakoopia ei ole sama suurusega\n"
-"Soovite jätkata?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Hoiatus"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Pange tühi flopi masinasse\n"
-"Kőik andmed sellel hävivad"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Proovin päästa partitsioonitabelit"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "Meili informatsioon"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Ühenduspunkt"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Eelistused"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Muuda suurust"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Liiguta"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Vorminda"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Ühenda"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Lisa RAIDi"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Lisa LVMi"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Ühenda lahti"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Eemalda RAIDist"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Eemalda LVMist"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Modifitseeri RAIDi"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Kasuta loopback-ina"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Looge uus partitsioon"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Algsektor: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Suurus (MB): "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Failisüsteemi tüüp: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Ühenduspunkt:"
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Eelistus: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Vormindan loopback faili %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Muuda partitsiooni tüüp"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Mis failisüsteemi soovite kasutada?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Kuhu soovite loopback-faili %s ühendada?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Kuhu soovite seadme %s ühendada?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Seda ühenduspunkti ei saa eemaldada, kuna partitsioon on kasutusel.\n"
-"loopback-ina. Eemaldage enne loopback"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Arvutan FAT failisüsteemi piire"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Muudan suurust"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "See partitsioon ei ole muudetav"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Selle partitsiooni andmetest vőiks olla tagavarakoopia"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Partitsiooni %s suuruse muutmisel hävivad sellel kőik andmed"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Valige uus suurus"
-
-#: ../../diskdrake/interactive.pm_.c:622
-#, fuzzy
-msgid "New size in MB: "
-msgstr "Suurus (MB): "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Millisele kettale soovite seda ümber paigutada?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Millisele sektorile soovite seda ümber paigutada?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Paigutan ümber"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Liigutan partitsiooni..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Vali olemasolev RAID, millele lisada"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "uus"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Vali olemasolev LVM, millele lisada"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "LVM nimi?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Seda partitsiooni ei saa loopback-ina kasutada"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "loopback faili nimi:"
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Pärisnimi"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "See fail on juba loopback-ina kasutusel, valige mőni muu"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Fail on juba olemas. Kas kasutan seda?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-#, fuzzy
-msgid "Mount options"
-msgstr "Mooduli parameetrid:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "seade"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "tase"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "ühiku suurus"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Vaadake ette: see vőib olla ohtlik."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Mis tüüpi partitsioonid teete?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Vabandan, aga ei saa nőustuda /boot kataloogi paigutamisega kaugemale 1024-"
-"st silindrist.\n"
-"Kui kasutate LILO-t, ei tööta see sel moel, kui aga ei kasuta, ei ole Teile "
-"ka /boot vajalik"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Partitsioon, mida soovite kasutada juurkataloogi (/) hoidmiseks, asub\n"
-"füüsiliselt tagapool 1024-t silindrit ja Teil ei ole /boot partitsiooni.\n"
-"Kui plaanite kasutada LILO alglaadurit, lisage kindlasti /boot partitsioon"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Olete valinud juurpartitsiooniks (/) tarkvaralise RAID-i.\n"
-"Ilma /boot partitsioonita ei ole vőimalik sellist süsteemi laadida.\n"
-"Lisage kindlasti /boot partitsioon!"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Ketta %s partitsioonitabel salvestatakse!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Muudatuste jőustamiseks vajate alglaadimist"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Partitsiooni %s vormindamisel hävivad sellel kőik andmed"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Vormindan"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Vormindan loopback faili %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Vormindan partitsiooni %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid ebaőnnestus"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Kuvatihedus: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Seade: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS kettatähis: %s (arvatavasti)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tüüp: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Nimi: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Algus: sektor %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Suurus: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektorit"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Silindrid %d kuni %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Vormindatud\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Vormindamata\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Ühendatud\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "loopback fail(id): %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partitsioonilt toimub alglaadimine\n"
-" (MS-DOS-i, mitte lilo jaoks)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Tase %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Ühiku suurus %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-kettad %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "loopback faili nimi: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Vőimalik, et on tegemist\n"
-"juhtpartitsiooniga, parem oleks\n"
-"seda mitte puutuda.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"See on eriline, alglaadimisel\n"
-"kasutatav partitsioon, mis\n"
-"vőimaldab mitme operratsioonisüsteemi\n"
-"laadimist.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Suurus: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geomeetria: %s silindrit, %s pead, %s sektorit\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-kettad %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Partitsioonitabeli tüüp: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "siinil %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Eelistused: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Failisüsteemi tüüp: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Salasőna on liiga lihtne (peaks olema vähemalt %d tähemärki)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Salasőnad ei klapi"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "Muuda partitsiooni tüüp"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Palun valige partitsioon"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "Nimeserver"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s vormindamine seadmel %s ebaőnnestus"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Ei oska seadet %s vormindada tüüpi %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "viga %s lahti ühendamisel: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "lihtne"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "server"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "JFS ei ole kasutatav alla 16MB partisioonidel"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "ReiserFS ei ole kasutatav alla 32MB partisioonidel"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Ühenduspunktid peavad algama kaldkriipsuga (/)"
-
-# c-format
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Ühenduspunktile %s on juba üks partitsioon määratud\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Te ei saa ühenduspunkti %s jaoks LVM loogilist ketast kasutada"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "See kataloog peab jääma kokku juurfailisüsteemiga"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr "See ühenduspunkt vajab tőelist (ext2, reiserfs) failisüsteemi\n"
-
-#: ../../fsedit.pm_.c:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Te ei saa ühenduspunkti %s jaoks LVM loogilist ketast kasutada"
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Ei ole piisavalt ruumi automaatpaigutuseks"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Seadme %s avamine kirjutamiseks ebaőnnestus: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Tekkis viga: failisüsteemi loomiseks ei leitud ühtki seadet. Palun\n"
-"kontrollige oma riistvara."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Teil ei ole ühtki partitsiooni!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-#, fuzzy
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Ülalpool on toodud kőik Teie kővakettal olemasolevad Linuxi partitsioonid\n"
-"Vaikimisi on need enamasti üsna mőistlikud. Kui teete nendes muutusi,\n"
-"pidage meeles, et kindlasti vajate juurpartitsiooni (\"/\"). Liiga väikeste\n"
-"partitsioonide puhul vőib tekkida raskusi piisava hulga tarkvara "
-"installimisel\n"
-"Kasutajate jaoks on sageli mőistlik luua eraldi \"/home\" partitsioon.\n"
-"\n"
-"\n"
-"Iga partitsiooni juures on toodud abiinfona \"Nimi\" ja \"Mahutavus\".\n"
-"\n"
-"\n"
-"\"Nimi\" koosneb kővakettatüübist, selle numbrist ja partitsiooni\n"
-"numbrist (näiteks \"hda1\").\n"
-"\n"
-"\n"
-"Kővaketta tüüp on \"hd\" kui on tegemist IDE kettaga ja \"sd\" kui on\n"
-"tegemist SCSI kettaga.\n"
-"\n"
-"\n"
-"Kővaketta number on alati täht \"hd\" vői \"sd\" järel. IDE ketastel:\n"
-"\n"
-" * \"a\" - esmase IDE kontrolleri ülem,\n"
-"\n"
-" * \"b\" - esmase IDE kontrolleri alluv,\n"
-"\n"
-" * \"c\" - teisase IDE kontrolleri ülem,\n"
-"\n"
-" * \"d\" - teisase IDE kontrolleri alluv.\n"
-"\n"
-"SCSI ketaste puhul on \"a\" esimene, \"b\" teine ja nii edasi."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-#, fuzzy
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Nüüd saate valida, milliseid teenused peaks süsteemi laadimisel käivitama.\n"
-"\n"
-"\n"
-"Abiinfo balloonis antakse lühike kirjeldus igaühe kohta neist.\n"
-"\n"
-"Kui kavatsete oma süsteemi kasutada serverina, olge eriti tähelepanelik:\n"
-"tőenäoliselt ei soovi te käivitada mittevajalikke teenuseid."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-#, fuzzy
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Olete jőudnud punkti, kus peate otsustama, kuhu täpselt Mandrake Linux oma\n"
-"kővakettal paigaldada. Kui kővaketas on tühi vői kui mőni muu \n"
-"operatsioonisüsteem seda täielikult kasutab, on vaja partitsioneerida.\n"
-"Partitsioneerimine on tegevus, mille käigus tekitatakse kettale loogilised\n"
-"piirkonnad Teie uue Mandrake Linux süsteemi installimiseks.\n"
-"\n"
-"\n"
-"Kuna partitsioneerimine ei ole pööratav protsess, siis peab kogemusteta\n"
-"kasutaja olema iseäranis ettevaatlik! Selle tegevuse lihtsustamiseks ja\n"
-"vigade vähendamiseks on Teie jaoks loodudki käesolev abimees. Siiski,\n"
-"palun varuga natuke ettevalmistusaega\n"
-"\n"
-"\n"
-"Mandrake Linux jaoks on Teil vaja vähemalt kaht partitsiooni. Ühele "
-"paigutatakse\n"
-"operatsioonisüsteem ise ja teisele luuakse virtuaalmälu (saaleala e. swap).\n"
-"\n"
-"\n"
-"Kui partitsioonid on juba loodud (eelmise installi vői mőne muu vahendi\n"
-"abil), siis peate need lihtsalt Linuxi paigaldamise jaoks välja valima.\n"
-"\n"
-"\n"
-"Kui partitsioone ei ole varem loodud, peate kasutama ülalttoodud abimeest.\n"
-"Abimees hindab Teie kővaketast ja pakub järgmised valikud:\n"
-"\n"
-"* Kasuta olemasolevaid partitsioone: abimees leidis kettalt Linuxi "
-"partitsioonid.\n"
-" Kui soovite neid kasutada, valige see.\n"
-"\n"
-"\n"
-"* Puhasta kogu ketas: kui soovite alustada Mandrake Linux installimist "
-"täiesti tühjale kettale.\n"
-" Tähelepanu: kőik andmed, mis enne kettal olid, hävivad!\n"
-"\n"
-"\n"
-"* Kasuta vaba ruumi Windowsi partitsioonil: kui Microsoft Windows kasutab "
-"kogu Teie kővaketta vaba pinna,\n"
-" saate luua lisaruumi Windowsi partitsiooni suuruse muutmisel.\n"
-" Sageli on see mőistlik, kui soovite kasutada ka Windowst.\n"
-"\n"
-"* Asjatundja: kui soovite ise oma kővaketast jagada, valige see. Nii on Teil "
-"kőige rohkem vőimalusi,\n"
-" aga ka kőige rohkem ohtusid! Ärge valige seda, kui Te täpselt ei tea, mida "
-"teete."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-#, fuzzy
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Kőik värskelt loodud partitsioonid tuleb enne kasutamist vormindada\n"
-"ehk sinna tuleb luua failisüsteemid.\n"
-"\n"
-"\n"
-"Samuti vőib vormindada varem olemas olnud partitsioonid, kui soovite\n"
-"seal leiduvad andmed ära kustutada.\n"
-"\n"
-"\n"
-"Paneme tähele, et alati ei ole kőigi vanade partitsioonide vormindamine\n"
-"vajalik.\n"
-"Kindlasti vőib vormindada partitsioone, kus varem asus \"/\", \"/usr\"\n"
-"vői \"/var\" aga kasutajate faile sisaldav \"/home\" vőiks jääda\n"
-"alles.\n"
-"\n"
-"\n"
-"Klikkige \"OK\", kui olete vormindamiseks valmis."
-
-#: ../../help.pm_.c:404
-#, fuzzy
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Teie Mandrake Linux süsteemi hakati nüüd installima. Selleks vőib\n"
-"olenevalt Teie poolt valitud pakettide arvust ja Teie arvuti kiirusest\n"
-"kuluda mőnikümmend minutit.\n"
-"\n"
-"\n"
-"Palun veidi kannatlikkust."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-#, fuzzy
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Nüüd peate valima partitsiooni(d), kuhu soovite Mandrake Linux installida.\n"
-"\n"
-"Partitsioon on loogiliselt eraldatud kővaketta piirkond, mille suurust\n"
-"ei ole vőimalik hiljem, töötavas süsteemis enam muuta. Samuti hävivad\n"
-"partitsiooni kustutamisel kőik sellel sisalduvad andmed.\n"
-"\n"
-"Et muuta seda tegevust lihtsamaks, on loodud Abimees, mille soovitused\n"
-"on harilikult mőistlikud.\n"
-"\n"
-"\n"
-"Partitsioonide loomiseks valige esmalt kővaketas.\n"
-"\n"
-"\n"
-"Valitud ketta partitsioneerimiseks on järgmised vőimalused:\n"
-"\n"
-" * Puhasta kőik: kustutatakse kőik olemasolevad partitsioonid sellel "
-"kettal\n"
-"\n"
-"\n"
-" * Paiguta ise: sel juhul tekitatakse Linuxi jaoks vajalikud partitsioonid "
-"vabale kettapinnale automaatselt.\n"
-"\n"
-"\n"
-" * Päästa partitsioonitabel: kui partitsioonitabel on vigastatud, vőib "
-"proovida seda parandada. \n"
-" Palun ärge sellega igaks juhuks palju arvestage.\n"
-"\n"
-"\n"
-" * Lae uuesti: kui soovite tühistada kőik enda tehtud muutused ja alustada "
-"algse partitsioonitabeliga\n"
-"\n"
-"\n"
-" * Abimees: kui soovite uue partitsioonitabeli loomisel samm-sammulist "
-"juhatust.\n"
-" Soovitav, kui ei ole varem midagi sellist teinud.\n"
-"\n"
-"\n"
-" * Taasta flopilt: kui olete varem salvestanud koopia "
-"partitsioonitabelist\n"
-" flopile, tuleb see nüüd kasuks\n"
-"\n"
-"\n"
-" * Salvesta flopile: kui soovite salvestada partitsioonitabeli flopile, "
-"et\n"
-" vajadusel oleks vőimalik sealt taastada.\n"
-"\n"
-"\n"
-" * Tehtud: kui olete partitsioneerimise lőpetanud, siis saate muutused "
-"nüüd salvestada\n"
-"\n"
-"\n"
-"Valitud partitsioonil on vőimalikud järgmised tegevused:\n"
-"\n"
-" * Ctrl-c uue partitsiooni loomine\n"
-"\n"
-" * Ctrl-d partitsiooni kustutamine\n"
-"\n"
-" * Ctrl-m ühenduspunkti seadmine"
-
-#: ../../help.pm_.c:513
-#, fuzzy
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Teie arvuti kővakettal on rohkem kui üks Microsoft Windows partitsioon.\n"
-"Palun valige välja see, mille suurust soovite Mandrake Linux jaoks muuta.\n"
-"\n"
-"\n"
-"Teie abistamiseks on iga partitsioonidel näidatud \"Nimi Linuxis\", \"Nimi "
-"Windowsis\" ja \"Mahutavus\".\n"
-"\n"
-"\"Nimi Linuxis\" koosneb kővakettatüübist, selle numbrist ja partitsiooni\n"
-"numbrist (näiteks \"hda1\").\n"
-"\n"
-"\n"
-"Kővaketta tüüp on \"hd\" kui on tegemist IDE kettaga ja \"sd\" kui on\n"
-"tegemist SCSI kettaga.\n"
-"\n"
-"\n"
-"Kővaketta number on alati täht \"hd\" vői \"sd\" järel. IDE ketastel:\n"
-"\n"
-" * \"a\" - esmase IDE kontrolleri ülem,\n"
-"\n"
-" * \"b\" - esmase IDE kontrolleri alluv,\n"
-"\n"
-" * \"c\" - teisase IDE kontrolleri ülem,\n"
-"\n"
-" * \"d\" - teisase IDE kontrolleri alluv.\n"
-"\n"
-"SCSI ketaste puhul on \"a\" esimene, \"b\" teine ja nii edasi.\n"
-"\n"
-"\n"
-"\"Nimi Windowsis\" on täht, millega Microsoft Windows vastavat seadet\n"
-"tähistab."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Palun natuke kannatust. Selleks vőib kuluda mőnigi minut."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Palun valige \"Installimine\" kui Teie arvutis ei ole varasemat Mandrake "
-"Linux\n"
-"versiooni.\n"
-"\n"
-"\n"
-"Palun valige \"Uuendamine\" kui soovite uuendada varasemat Mandrake Linux "
-"versiooni.\n"
-"\n"
-"\n"
-"Sőltuvalt Teie GNU/Linuxi alastest teadmistest saate valida erineva tasemega "
-"installi- vői uuendusmeetodi:\n"
-"\n"
-"* Soovituslik: Te ei ole varem GNU/Linuxit installinud. Kőik tehakse "
-"lihtsaks ja esitatakse vähe küsimusi\n"
-"\n"
-"\n"
-"* Isetehtud: Olete Linuxiga tuttav ja soovite süsteemi kohandada vastavalt\n"
-" Teie vajadustele. Järgmisena saate teha valikud sőltuvalt Teie arvuti \n"
-" edaspidisest kasutusalast.\n"
-"\n"
-"\n"
-"* Ekspert: Te tunnete end GNU/Linux keskkonnas vabalt ja soovite\n"
-" süsteemi, mis sobiks nagu valatult Teie täpsete ootustega.\n"
-" Aga palun, palun: ÄRGE VALIGE SEDA, KUI TE TÄPSELT EI TEA, MIDA TEETE!"
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-#, fuzzy
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Palun valige őige port. Näiteks MS Windows-i COM1 kannab GNU/Linuxis\n"
-"nime ttyS0."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (ehk LInux LOader) ja Grub on alglaadurid: nad vőimaldavad laadida\n"
-"kas GNU/Linuxi vői mőne muu Teie arvutis olevad operatsioonisüsteemi.\n"
-"Tavaliselt tuvastakse teised operatsioonisüsteemid őigesti ja seadistatakse\n"
-"ka alglaadur. Kui Teil aga ei ole őnne, tuleb parameetrid seada\n"
-"käsitsi. Olge sel juhul hoolas valima őiged."
-
-#: ../../help.pm_.c:722
-#, fuzzy
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Nüüd peate valima, milliselt kettaosalt soovite GNU/Linuxit laadida.\n"
-"\n"
-"Valige \"Kővaketta esimene sektor (MBR)\", kui ei tea täpselt, mida\n"
-"teha."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"Esmalt otsib DrakX PCI siini SCSI liideseid. Kui neid leitakse, ja \n"
-"vastav(ad) juhtprogramm(id) on teada, siis laetakse ja installitakse \n"
-"kőik vajalik automaatselt.\n"
-"\n"
-"\n"
-"Kui Teie SCSI liides kasutab ISA siini vői kui DrakX ei tea,\n"
-"millist juhtprogrammi kasutada vői Teil ei ole üldse SCSI liidest,\n"
-"siis küsitakse Teilt selle kohta.\n"
-"Kui Teil SCSI liidest tőesti ei ole, vastake \"Ei\". Kui Teil aga siiski\n"
-"on, siis vastake \"Jah\". Seejärel lastakse Teil nimekirjast sobiv\n"
-"juhtprogramm valida.\n"
-"\n"
-"\n"
-"Kui olete juhtprogrammi välja valinud, on Teil vőimalus anda sellele\n"
-"ka parameetreid. Siiski, enamasti läheb kőik kenasti ka ilma neid\n"
-"sisestamata: vastavad andmed leiab juhtprogramm ise.\n"
-"\n"
-"Kui automaatne parameetrite otsimine ei tööta, tutvuge palun lähemalt\n"
-"oma SCSI liidese dokumentatsiooniga vői küsige abi riistvara müüjalt.\n"
-"Vaadake ka User Guide'i (peatükk 2, lőik \"Collective informations on your\n"
-"hardware\")\n"
-"Ka samas masinas olev Windows oskab vahel SCSI kohta kasulikku \n"
-"informatsiooni anda."
-
-#: ../../help.pm_.c:784
-#, fuzzy
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"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 video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-"\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."
-
-#: ../../help.pm_.c:830
-#, fuzzy
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"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."
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-#, fuzzy
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Valige kővaketas, mida soovite Mandrake Linux installimiseks puhastada\n"
-"Ettevaatust, kőik sellel leiduvad andmed hävitatakse ja ei ole enam\n"
-"taastatavad."
-
-#: ../../help.pm_.c:896
-#, fuzzy
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Valige \"OK\" kui soovite kustutada kőik sellel kettal asuvad "
-"partitsioonid.\n"
-"Ettevaatust, peale \"OK\" klikkimist ei ole enam vőimalik sellelt kettalt\n"
-"andmeid taastada.\n"
-"\n"
-"\n"
-"Katkestamiseks valige \"Katkesta\"."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Üldlevi kasutamine on ilma NIS domeenita vőimatu"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Pane FAT formaadis flopi seadmesse %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "See flopi ei ole FAT formaadis"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Et kasutada seda paketivalikut, alustage installimist käsureaga \"linux "
-"defcfg=floppy\""
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Viga faili %s lugemisel"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Osa teie riistvarast nőuab tarnijapoolseid juhtprogramme.\n"
-"Informatsiooni nende kohta saate: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Teil peab olema juurpartitsioon.\n"
-"Selleks looge uus partitsioon (vői valige üks olemasolevatest).\n"
-"Siis valige tegevus \"Ühenduspunkt\" ja seadke see kui '/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Teil peab olema saaleala"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Saaleala ei ole määratud\n"
-"\n"
-"Jätkate ikkagi?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Teil peab olema saaleala"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Kasuta vaba ruumi"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Kasuta olemasolevat partitsiooni"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Kasutatavat partitsiooni ei leitud"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Kasuta Windowsi partitsiooni loopback-ina"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Millisele partitsioonile soovite installida Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Valige suurused"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Juurpartitsiooni suurus (MB): "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Saaleala suurus (MB): "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Kasuta vaba ruumi Windowsi partitsioonil"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Mis partitsiooni soovite muuta?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Arvutan Windowsi failisüsteemi piire"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"FAT partitsiooni suurust ei őnnestu muuta, \n"
-"ilmnes selline viga: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Teie Windowsi partitsioon on fragmenteerunud, palun kasutada 'defrag'-i"
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"HOIATUS!\n"
-"\n"
-"DrakX hakkab Teie Windowsi partitsiooni suurust muutma. Olge ettevaatlik:\n"
-"see operatsioon vőib olla ohtlik Teie failidele. Palun kasutage enne\n"
-"scandisk-i, defrag-i ja tehke tagavarakoopia.\n"
-"Kui olete oma otsuses kindel, vajutage OK."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Kui palju ruumi jätate Windowsi jaoks?"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "Partitsioon %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Suuruse muutmine ebaőnnestus: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr "Sobivat FAT partitsiooni ei leitud (ei ole piisavalt ruumi)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Tühjenda kogu ketas"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Eemalda Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Teil on rohkem kui üks kővaketas, millisele neis installite Linuxi?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Kettal %s hävivad KŐIK partitsioonid ja andmed"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Partitsioneerin ise"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Kasuta fdisk-i"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Nüüd saate partitsioneerida %s kővaketta\n"
-"Kui olete valmis, salvestage käsuga 'w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Teil ei ole piisavalt vaba ruumi Windowsi partitsioonil"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Installimiseks ei ole üldse ruumi"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX kettajagamise abimees leidis sellised lahendused:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Ketta jagamine ebaőnnestus: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Käivitame vőrguliidesed"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Seiskame vőrguliidesed"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Tekkis mingi viga, aga seda ei suuda programm ise klaarida.\n"
-"Jätkake omal vastutusel."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Ühenduspunkt %s on määratud topelt"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Mőned tähtsad paketid ei saanud korralikult paika.\n"
-"Teie CD-lugeja vői CD on ilmselt vigane.\n"
-"Paketifaile CD-l saate kontrollida käsuga \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "See ongi %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Flopiseade ei ole kättesaadav"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Järgmine samm: '%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Teie süsteemil on ressursiprobleeme ja installimine vőib ebaőnnestuda.\n"
-"Kui nii juhtub, proovige palun tekstipőhjalist paigaldust. Selleks \n"
-"vajutaga laadimisel F1 ja sisestage 'text'"
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Installi klass"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Palun valige üks järgnevatest paigaldusklassidest"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Teie poolt valitud gruppide kogusuurus on umbes %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Kui soovite installida sellest vähem, valige vastav protsent.\n"
-"\n"
-"Madalama protsendi puhul installitakse vaid kőige tähtsamad paketid;\n"
-"100%% tähendab kőige valitud pakettide installimist."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, fuzzy, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Teil on kettal ruumi vaid %d%% pakettide jaoks.\n"
-"\n"
-"Kui soovite sellest vähem, valige väiksem protsent ja installimisele\n"
-"kuuluvad vaid olulisemad paketid."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Täpsemalt saate valida järgmisel sammul"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Installitavate pakettide protsent"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Paketigruppide valik"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Valik paketthaaval"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Suurus kokku: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Vigane pakett"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Nimi: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versioon: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Suurus: %d kB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Tähtsus: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Seda paketti ei saa valida, kettaruumi ei ole paigalsuseks piisavalt"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Installimiseks on valitud järgmised paketid"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Eemaldamiseks on valitud järgmised paketid"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Seda paketti ei saa (mitte) valida"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "See pakett on kohustuslik"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "See pakett on juba installitud"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Selle paketi peaks uuendame\n"
-"Olete kindel, et Te ei vali seda?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Selle paketi peate valima, sest selle uuendamine on kohustuslik"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Näita automaatselt valitud pakette"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Installimine"
-
-#: ../../install_steps_gtk.pm_.c:466
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "Salvesta flopile"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Salvest paketivalik"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "Eemaldamine"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Valige paketid installimiseks"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Installin"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Oletan"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Aega jäänud "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Palun oodake, valmistun installimiseks"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d paketti"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Paketi %s installimine"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Nőus"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Keeldun"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Vahetage CD!\n"
-"\n"
-"Palun sisestage CD pealdisega \"%s\" lugejasse ja vajutage <OK>.\n"
-"Kui teil säherdust ei ole, vajutage <Katkesta>"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Ikkagi edasi?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Pakettide tellimisel tekkis viga:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Pakettide installimisel tekkis viga:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Hoiatus\n"
-"\n"
-"Palun lugege hoolega alltoodud teksti. Kui Te ei ole kőigi alljärgnevate\n"
-"väidetega, on installimine järgmise CD pealt keelatud. Vajutage 'Keeldun', \n"
-"et jätkata installimist ilma selle CD-ta.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Tekkis mingi viga"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Kas soovite vőrguühendust taaskäivitada?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Lőppkasutaja litsentsileping"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Järgnev lőppkasutaja litsents on eksimuste vältimiseks originaalkeeles\n"
-"\n"
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Klaviatuur"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Palun valige klaviatuuriasetus"
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Vőimalike klaviatuuride täielik nimekiri"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Millist installi klassi Te soovite"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Installimine/Uuendus"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "On see installimine vői taastamine?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Soovituslik"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Ekspert"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Uuendus"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Salvest paketivalik"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Palun valige hiire tüüp"
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Hiire port"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Millisesse seerialporti on Teie hiir ühendatud?"
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Nuppude teesklemine"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Teeskle 2 hiirenupp"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Teeskle 3 hiirenuppu"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIA kaartide seadmine..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "IDE seadistamine"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "ei leia partitsioone"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Otsin partitsioonidelt ühenduspunkte"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Valige ühenduspunktid"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Partitsioonitabel on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
-"Proovin loetamatud kirjed puhastada kuid ANDMED NENDEL HÄVIVAD.\n"
-"Teine vőimalus on keelata DrakX-il partitsioonitabeli muutmine.\n"
-"(Viga oli selline: %s)\n"
-"Kas olete nőus partitsioonide kaotamisega?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake ei saanud partitsioonitabeli lugemisega hakkama.\n"
-"Jätkate omal vastutusel!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "Juurpartitsiooni ei leitud"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Juurpartitsioon"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Millisel partitsioonil hoiate juurkataloogi (/)?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Partitsioonitabeli säilitamiseks vajate alglaadimist"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Valige partitsioonid, mida soovite vormindada"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Blokkide kontroll?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Vormindan partitsioone"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Loon ja vormindan faili %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Saaleala on installimiseks liiga väike, palun lisage"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Otsin kättesaadavaid pakette"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Otsin uuendatavaid pakette"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr "Teie kővakettal ei ole piisavalt vaba ruumi (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Täielik (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimaalne (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Soovitatav (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-#, fuzzy
-msgid "Load from floppy"
-msgstr "Taasta flopilt"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Loading from floppy"
-msgstr "Taasta flopilt"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Package selection"
-msgstr "Paketigruppide valik"
-
-#: ../../install_steps_interactive.pm_.c:578
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "Pane flopi seadmesse %s"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Salvesta flopile"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:671
-#, fuzzy
-msgid "Type of install"
-msgstr "Valige pakett installimiseks"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-#, fuzzy
-msgid "With X"
-msgstr "Oodake"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Kui Teil on olemas kőik alltoodud CD-d, klikkige <OK>.\n"
-"Kui Teil ei ole ühtki neist, klikkige <Katkesta>.\n"
-"Kui puuduvad mőned CD-d, märkige vaid olemasolevad ja siis <OK>."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD pealdisega \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Valmistun installimiseks"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Paketi %s installimine\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Paigaldusjärgsed sätted"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Pane flopi seadmesse %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Pange palun tühi flopi seadmesse %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Nüüd on Teil vőimalik oma süsteemi laadida krüptotarkvara.\n"
-"\n"
-"HOIATUS:\n"
-"\n"
-"Lähtuvalt erinevatest sellisele tarkvarale kohaldavatest nőuetest ja \n"
-"mőjutatuna eri jurisdiktsioonide normidest peavad kliendid ja/vői \n"
-"lőppkasutajad olema kindlad, et nende asukohamaa jurisdiktsiooni "
-"őiguslikud \n"
-"aktid lubavad neil alla laadida, säilitada ja/vői kasutada \n"
-"krüptograafiliste algoritmide realisatsioone sisaldavat tarkvara.\n"
-"\n"
-"Lisaks sellele peavad kliendid ja/vői lőppkasutajad jälgima asukohamaa \n"
-"juriidiliste normide täitmist. Kui klient ja/vői lőppkasutaja rikub "
-"kehtivaid \n"
-"őigusnorme, kohaldatakse karistus vastavalt asukohamaa seadustele.\n"
-"\n"
-"Mitte mingil juhul ei kanna Mandrakesoft S.A. ega tarkvara tarnija \n"
-"vastutust ei otseselt ega kaudselt tekkinud kahjude eest (kaasa arvatud, \n"
-"kuid mitte ainult, saamatajäänud tulu, äritegevuse katkestamine, äriinfo \n"
-"kaotsimine ja muud rahalised kaotused ning vőimalikud kohtu poolt välja \n"
-"mőistetud hüvitused), mis tulenevad tarkvara, mis on kasutatav pärast \n"
-"käesoleva lepingu tingimustega nőustumist, alla laadimisest, hoidmisest \n"
-"vői kasutamisest.\n"
-"\n"
-"Kőigi lepinguga seotud küsimuste asjus pöörduge palun aadressil: \n"
-"Mandrakesoft, Inc. \n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Valige peegel, millelt lugeda pakettide nimekiri"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Millises ajavöötmes asute?"
-
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "Kas Teie arvuti sisekell on seatud GMT ajale?"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-#, fuzzy
-msgid "NTP Server"
-msgstr "NIS server:"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "CUPS printserver"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Printerit ei ole"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "On Teil veel kaarte?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Kokkuvőte"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Hiir"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Ajavööde"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Printer"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDN kaart"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Helikaart"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV kaart"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-#, fuzzy
-msgid "NIS"
-msgstr "Kasuta NIS-i"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-#, fuzzy
-msgid "Local files"
-msgstr "Kohalik printer"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Juurkasutaja salasőna"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Salasőna puudub"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Salasőna on liiga lihtne (peaks olema vähemalt %d tähemärki)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autentimisviis"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "Autentimisviis"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-#, fuzzy
-msgid "LDAP Server"
-msgstr "NIS server:"
-
-#: ../../install_steps_interactive.pm_.c:1134
-#, fuzzy
-msgid "Authentication NIS"
-msgstr "NIS autentimine"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS domeen"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS server:"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Isetehtud alglaadimisketas annab Teile vőimaluse laadida Linux flopilt\n"
-"sőltumata tavaliselt alglaadijast. See vőib abiks olla, kui Te ei soovi\n"
-"SILO-t kővakettale kirjutada vői mőni muu operatsioonisüsteem SILO\n"
-"ära kustutab vői ei őnnestu SILO-t Teie riistvara peal kasutada.\n"
-"Alglaadmisflopi on kasutatav ka hädaabikettana, kui kővakettal oleva\n"
-"failisüsteemiga peaks mingi őnnetus juhtuma. Hoidke end ja Teid hoiab\n"
-"ka Jumal!\n"
-"\n"
-"Alglaadimisketta loomiseks asetage flopi esimesse seadmesse ning vajutage\n"
-"\"Ok\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Esimene flopiseade"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Teine flopiseade"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Jäta vahele"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Isetehtud alglaadimisketas annab Teile vőimaluse laadida Linux flopilt\n"
-"sőltumata tavaliselt alglaadijast. See vőib abiks olla, kui Te ei soovi\n"
-"LILO-t (grubi) kővakettale kirjutada vői mőni muu operatsioonisüsteem LILO\n"
-"ära kustutab vői ei őnnestu LILO-t Teie riistvara peal kasutada.\n"
-"Alglaadmisflopi on kasutatav ka hädaabikettana, kui kővakettal oleva\n"
-"failisüsteemiga peaks mingi őnnetus juhtuma. Hoidke end ja Teid hoiab\n"
-"ka Jumal!\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Flopiseade ei ole kättesaadav"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Vali flopiseade, mida kasutad alglaadimisketta tegemiseks"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Pane flopi seadmesse %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Loome alglaadimisketta"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Alglaaduri sätted"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Soovite aboot-i kasutada?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Viga aboot-i installimisel, \n"
-"kas forseerida, riskides esimese partitsiooni hävinguga?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Alglaaduri sätted"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Alglaaduri installimine ebaőnnestus. Tekkis järgnev viga:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, fuzzy, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"You will need to change your Open Firmware boot-device to\n"
-" enable the bootloader. Hold down Command-Option-O-F\n"
-" 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."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Pange palun tühi flopi seadmesse %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Loon kiirpaigaldusflopi"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Mőned sammud ei ole lőpule viidud\n"
-"\n"
-"Olete kindel, et väljute programmist?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Őnnitlen, installimine on edukalt lőpetatud.\n"
-"Vőtke palun välja flopi ja/vői CD ja vajutage Enter alglaadimiseks.\n"
-"\n"
-"\n"
-"Informatsiooni selle distributsiooni paranduste kohta (Errata) saab\n"
-"Mandrake Linux koduleheküljelt \n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Abi süsteemi edasiseks konfigureerimiseks saab eelkőige dokumendist\n"
-"\"Official Mandrake Linux User's Guide\""
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Loo kiirpaigaldusflopi"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"Automaatne install vőib olla ka sedavőrd tegija,\n"
-"et kasutab ära kogu kővaketta !!\n"
-"\n"
-"Vőite valida ka lihtsalt installi kordamise.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automaatne"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Korda"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Salvest paketivalik"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux installimine %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr " <Tab>/<Alt-Tab> väljade vahel | <Space> valib | <F12> järgmine samm "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu puudub"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Valige tegevus"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Edasijőudnud"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Palun oodake"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Ava puu"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sule puu"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Sorteeritud vői sorteerimata"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Halb valik, proovige palun uuesti\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Teie valik? (vaikimisi %s)"
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Teie valik? (vaikimisi %s)"
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Eelistused: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "Soovite aboot-i kasutada?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Teie valik? (vaikimisi %s)"
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "T¨ehhi (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Saksa"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "DVORAK"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Hispaania"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Soome"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Prantsuse"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norra"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Poola"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Vene"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Rootsi"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Briti"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "US"
-
-#: ../../keyboard.pm_.c:188
-#, fuzzy
-msgid "Albanian"
-msgstr "Iraani"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armeenia (vanem)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armeenia (trükimasin)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armeenia (foneetiline)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Aserbaidţaani (ladina)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgia"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Armeenia (foneetiline)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Bulgaaria"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasiilia (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Valgevene"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Đveitsi (Saksa asetus)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Đveitsi (Prantsuse asetus)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Tđehhi (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Saksa (ilma sammuta)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Taani"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "DVORAK (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "DVORAK (Norra)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "DVORAK (US)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Eesti"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Gruusia (vene)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Gruusia (ladina)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Kreeka"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Ungari"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Kroaadi"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Iisraeli"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Iisraeli foneetiline"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iraani"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandi"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Itaalia"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Jaapani 106 klahviga"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Korea"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Ladina-Ameerika"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Leedu AZERTY (vanem)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Leedu AZERTY (uuem)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Leedu numbrireaga QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Leedu foneetiline QWERTY"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Asukoht"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Makedoonia"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Hollandi"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Poola (QWERTY)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Poola (QWERTZ)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugali"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Kanada (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "Vene (Yawerty)"
-
-#: ../../keyboard.pm_.c:248
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "Vene (Yawerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Vene (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Sloveenia"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovaki (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovaki (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "Aserbaidţaani (kirillitsa)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Tabel"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Tai"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Tai"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Türgi (\"F\" mudel)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Türgi (\"Q\" mudel)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukraina"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "US (rahvusvaheline)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnami numbrireaga QWERTY"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslaavia (koos kirillitsaga)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Ringühendus %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Eemalda enne kettarühmad (logical volumes)\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Suni hiir"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Lihtsalt PS2 rattaga hiir"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 nupp"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Lihtsalt 2-nupuline hiir"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Tavaline"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Ratas"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "seerial"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Lihtsalt 3-nupuline hiir"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC seeria (seerial)"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech (seerial, vana C7 tüüpi)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "siinihiir"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 nuppu"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 nuppu"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "ei soovi"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Hiirt ei ole"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Palun testige hiirt"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Hiire aktiveerimiseks"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "KEERUTAGE RATTAKEST!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Lőpeta"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Järgmine ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Eelmine"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Kas see on sobiv?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Loo internetiühendus"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Kőige tavalisem ühendusviis ADSL jaoks on pppoe.\n"
-"Mőnel juhul aga kasutatakse pptp-d, harva dhcp-d.\n"
-"Kui Te ei tea, kasutage pppoe-d"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Mis DHCP klienti soovite kasutada?\n"
-"Vaikimisi on dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Ühtki vőrgukaarti ei őnnestunud tuvastada\n"
-"Seega ei saa ka sellist ühendust seadistada."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Valige vőrguliides"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Palun valige, millist vőrguliidest soovite internetiühenduse jaoks kasutada"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "vőrgukaarti ei leitud"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Vőrguseadistused"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Palun sisestage oma masina nimi.\n"
-"Seda nőuavad ka mőned DHCP serverid.\n"
-"Masina nimi peab olema esitatud täiskujul,\n"
-"nagu ``minumasin.minufirma.ee''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Masinanimi"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Vőrgu sätete abimees"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Väline ISDN modem"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Sisemine ISDN kaart"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Millist ISDN ühendust kasutate?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "Leitud tulemüüri sätted!"
-
-#
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "Leitud tulemüüri sätted!"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN sätted"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Vali oma teenusepakkuja.\n"
-" Kui see ei ole nimekirjas, vali Tundmatu"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol"
-msgstr "Laadimisprotokoll"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Euroopa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "Ülejäänud maailm"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Ülejäänud maailm \n"
-" ilma D-kanalita"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Mis protokolli soovite kasutada?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Mis tüüpi kaart Teil on?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Ei tea"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Kui Teil on ISA kaart, siis peaks järgmised väärtused olema őiged.\n"
-"\n"
-"Kui Teil on PCMCIA kaart, peaksite Te ise teadma selle IRQ ning IO "
-"väärtusi.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Katkesta"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Jätka"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Milline on Teie ISDN kaart?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Leidsin küll PCI ISDN kaardi, kui selle tüüp on tundmatu. Palun valige üks "
-"PCI kaart järgmisel sammul."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "PCI ISDN kaarti ei leitud. Palun valige üks järgmisel sammul."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Millisesse seerialporti on Teie modem ühendatud?"
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "DialUp parameetrid"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Ühenduse nimi"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Sissehelistamiskeskuse number"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Kasutajakonto"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Skriptipőhine"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Terminalipőhine"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Domeeninimi"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Esimene nimeserver (soovituslik)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Teine nimeserver (soovituslik)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Saate ühenduse katkestada vői uuesti seadistada."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Saate seadistada ühenduse uuesti."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Hetkel olete Internetiga ühendatud."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Saate ühenduda Internetti vői seadistada ühendus uuesti."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Hetkel ei ole Te Internetti ühendatud."
-
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
-msgid "Connect"
-msgstr "Ühendatud"
-
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
-msgid "Disconnect"
-msgstr "Lahuta..."
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Seadista TV-kaabli ühendus"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Internetiühenduse seadistamine"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr ""
-"\n"
-"Saate ühenduse katkestada vői uuesti seadistada."
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"Saate ühenduse katkestada vői uuesti seadistada."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Vőrgu sätted"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Vőrguühendus on juba seadistatud, sest installitakse ju vőrgust.\n"
-"Kui soovite neid seadistusi säilitada, valige OK, muidu katkestage ja saate "
-"seadistada uuesti.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Internetiühenduse Abimees\n"
-"\n"
-"Nüüd hakkame internetiühendust seadistama.\n"
-"Kui Te ei soovi automaatset tuvastamist siis jätke see märkimata.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Valige profiil, mida seadistada"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Kasuta automaattuvastust"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Otsin printerit..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Tavaline modemiühendus"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "leiti port %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN ühendus"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "tuvastati %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy
-msgid "ADSL connection"
-msgstr "LAN ühendus"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "leiti liidesel %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Kaabliühendus"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Kaabliühendus"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "LAN ühendus"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "vőrgukaart(i) leiti üles"
-
-#: ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "Valige kasutatav vahend"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-#, fuzzy
-msgid "Internet connection"
-msgstr "Internetiühenduse jagamine"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Kas soovite luua ühenduse juba alglaadimisel?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Vőrgusätted"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, fuzzy, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr "Kas soovite vőrguühendust taaskäivitada?"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Őnnitleme, vőrgundus ja internetiühendus on seadistatud.\n"
-"\n"
-"Sätted salvestatakse nüüd.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Soovitame taaskäivitada ka X keskkonna, et vältida vőimalikke\n"
-"masinanime muutmisest tingitud probleeme."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"HOIATUS: See seade on juba seadistatud Interneti jaoks.\n"
-"Valige lihtsalt OK, et sätteid mitte muuta."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Palun andke IP parameetrid selle masina jaoks.\n"
-"Kőik read tuleb sisestada IP-aadressi kujul\n"
-"(Näiteks 12.34.56.78)"
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Seadistame vőrgukaardi %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (juhtprogramm %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP-aadress"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Vőrgu mask"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Automaatne IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-aadress peab olema formaadis 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Palun sisestage oma masina nimi.\n"
-"Masina nimi peab olema esitatud täiskujul,\n"
-"nagu ``minumasin.minufirma.ee''.\n"
-"Kui Teil on vaikimisi lüüs, siis sisestage ka selle IP-aadress"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "Nimeserver"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Lüüsipoolne seade"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Vahendajate sätted"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP vahendaja"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP vahendaja"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Vahendaja peab olema kujul http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Vahendaja peab olema kujul ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Interneti sätted"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Kas soovite oma internetiühendust proovida?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Testime Teie ühendust..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Süsteem on nüüd Internetti ühendatud"
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Turvakaalutlusel katkestan nüüd ühenduse."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Paistab, et süsteem ei ole Internetti ühendatud.\n"
-"Palun seadistage ühendus uuesti."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Internetiühenduse sätted"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Palun täida allpool olev väli"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "Kaardi IRQ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Kaardi mälu (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "Kaardi IO"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "Kaardi IO_0"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "Kaardi IO_1"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Teie telefoninumber"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Teenusepakkuja tunnus (näiteks minuisp.ee)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Sissehelistamiskeskuse number"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 (vőib jätta tühjaks)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 (vőib jätta tühjaks)"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "Klaviatuuri valik"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Valimisviis"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "Ühenduse tüüp: "
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Ühenduse tüüp: "
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Kasutajatunnus"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Salasőna"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "ühendamine ebaőnnestus: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Sellel platformil ei saa laiendatud partitsiooni luua"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Partitsioonitabelis on miskipärast tühi koht, aga see ei ole kasutatav.\n"
-"Ainuke lahendus on nihutada primaarset partitsiooni, et auk satuks "
-"laiendatud partitsioonide kőrvale"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Taastamine failist %s ebaőnnestus: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Kőlbmatu tagavarakoopia"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Viga faili %s kirjutamisel"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Teie kővakettal juhtub imelikke asju. \n"
-"Andmete pidevuse kontroll ebaőnnestus. \n"
-"See tähendab, et kettale kirjutamisel tekivad jamad"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "vajalik"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "tähtis"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "väga kena"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "kena"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "vőib olla"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Kohalik printer"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Vőrguprinter"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "CUPS printserver"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "lpd printserver"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Vőrguprinter (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Printserver:"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "Printeri seadme URI"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Kohalik printer"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Vőrguprinter"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Viga faili %s kirjutamisel"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(moodul %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "CUPS serveri IP"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Vaikimisi)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Vali printeri ühendusviis"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Kuidas on see printer ühendatud?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"Kui vőrgus on CUPS server, siis ei ole Teil vaja siin\n"
-"printereid seadistada, need leitakse automaatselt.\n"
-"Kui kahtlete, valige \"CUPS printserver\"."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "LAN sätted"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "CUPS printserver"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP-aadress peab olema formaadis 1.2.3.4"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-#, fuzzy
-msgid "The port number should be an integer!"
-msgstr "Pordi number peab olema ikkagi number"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "CUPS serveri IP"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Port"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Alglaaduri stiil"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Otsin printerit..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Proovin porte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Printerit ei ole"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Kohalik printer"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Vőrguprinter"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Kasuta automaattuvastust"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Vőrguprinter"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "tuvastati %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Printeri seadme URI"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Kohalik printer"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Millisesse seerialporti on Teie modem ühendatud?"
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Printeri seadme URI"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Seadistused"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Paketi %s installimine"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Paketi %s installimine"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "Loetakse CUPS juhtprogramme"
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-#, fuzzy
-msgid "Reading printer database ..."
-msgstr "Loetakse CUPS juhtprogramme"
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Vőrguprinteri sätted"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Et kasutada teise masina lpd printerit, peate sisestama\n"
-"printserveri nime ja prindijärjekorra nime, mida soovite\n"
-"serveril kasutada."
-
-#: ../../printerdrake.pm_.c:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "Printserveri nimi:"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Vőrguprinter"
-
-#: ../../printerdrake.pm_.c:630
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "Printserveri nimi:"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Printserveri nimi:"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) printeri sätted"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Et printida SMB printerile, peate andma vastava server SMB nimi\n"
-"(NB! See ei pruugi kokku langeda TCP/IP nimega!) ja vőibolla ka\n"
-"printserveri IP-aadressi, samuti ka serveri poolt jagatava printeri\n"
-"nime ning serveri poolt aktsepteeritud kasutajatunnuse, salasőna ja töögrupi"
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "SMB serveri nimi"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "SMB serveri IP"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Jagatav printer"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Töögrupp"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "NetWare printeri sätted"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Et kasutada NetWare printerit, peate sisestama NetWare printserveri\n"
-"nime (NB! See vőib olla erinev tema TCP/IP nimest!) samuti nagu ka\n"
-"prindijärjekorra nime serveril ning kasutajatunnuse ja salasőna"
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Printserver:"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Prindijärjekorra nimi:"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Pistikprinteri sätted"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Sisestage palun printeri masinanimi ja vőimaluse\n"
-"korral pordi number"
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "Printeri nimi"
-
-#: ../../printerdrake.pm_.c:858
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "Printeri nimi"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Printeri seadme URI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Printeri nimi"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Kirjeldus"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Asukoht"
-
-#: ../../printerdrake.pm_.c:1021
-#, fuzzy
-msgid "Preparing printer database ..."
-msgstr "Loetakse CUPS juhtprogramme"
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Vőrguprinter"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Kas see on sobiv?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Vőrguprinter"
-
-#: ../../printerdrake.pm_.c:1139
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Printeri ühendusviis"
-
-#: ../../printerdrake.pm_.c:1140
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "Mis tüüpi printer see on?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Interneti sätted"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Interneti sätted"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Kas soovite seadistusi proovida?"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "Proovin porte"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-#, fuzzy
-msgid "No test pages"
-msgstr "Jah, trüki mőlemad testleheküljed"
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "Printer"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Standardtööriistad"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "Trükitakse testlehekülg(i)..."
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "Trükitakse testlehekülg(i)..."
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Trükitakse testlehekülg(i)..."
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Trükitakse testlehekülg(i)..."
-
-#: ../../printerdrake.pm_.c:1635
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Testlehekülg on saadetus trükideemonile.\n"
-"Nüüd vőib minna natuke aega.\n"
-"Staatus:\n"
-"%s\n"
-"\n"
-"Kas tulemust on juba näha?"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Testlehekülg on saadetud trükideemonile.\n"
-"Nüüd vőib minna natuke aega.\n"
-"Staatus:\n"
-"%s\n"
-"\n"
-"Kas tulemust on juba näha?"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Printerit ei ole"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Hiir"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Seiskame vőrguliidesed"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Seiskame vőrguliidesed"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Otse ühendatud printeri sätted"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "Loetakse CUPS juhtprogramme"
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Interneti sätted"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Printeri nimi tohib sisaldada vaid tähti, numbreid ja alakriipsu"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "Printerit ei ole"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "Loetakse CUPS juhtprogramme"
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "Sea printer"
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Testime Teie ühendust..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Vőrgusätted"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Monitor ei ole seadistatud"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Vőrguseadistused"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Millist printimissüsteemi soovite kasutada?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Kőrge"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Paranoiline"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Millist printimissüsteemi soovite kasutada?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Vali printeri ühendusviis"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Millist printimissüsteemi soovite kasutada?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Printeri sätted"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Paketi %s installimine"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Otse ühendatud printeri sätted"
-
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "Loetakse CUPS juhtprogramme"
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Printeri sätted"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Kas soovite printerit seadistada?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "PrinterDrake"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Kirjeldatud on järgnevad prindijärjekorrad.\n"
-"Te vőite neid lisada ning olemasolevaid muuta."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Kirjeldatud on järgnevad prindijärjekorrad.\n"
-"Te vőite neid lisada ning olemasolevaid muuta."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Vőrgusätted"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Tavakasutus"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Kas soovite seadistusi proovida?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Interneti sätted"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Kas soovite seadistusi proovida?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Internetiühenduse jagamine"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Printeri ühendusviis"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "Trükitakse testlehekülg(i)..."
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Kas soovite seadistusi proovida?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Vőrguprinter"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Loetakse CUPS juhtprogramme"
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Kohalik printer"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Kas soovite vőrguühendust taaskäivitada?"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Loetakse CUPS juhtprogramme"
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-#, fuzzy
-msgid "Proxy configuration"
-msgstr "Vahendajate sätted"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr ""
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-#, fuzzy
-msgid "port"
-msgstr "Port"
-
-#: ../../proxy.pm_.c:44
-#, fuzzy
-msgid "Url should begin with 'http:'"
-msgstr "Vahendaja peab olema kujul http://..."
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-#, fuzzy
-msgid "The port part should be numeric"
-msgstr "Pordi number peab olema ikkagi number"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Vahendaja peab olema kujul ftp://..."
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-#, fuzzy
-msgid "login"
-msgstr "Vaikimisi sisenemine"
-
-#: ../../proxy.pm_.c:82
-#, fuzzy
-msgid "password"
-msgstr "Salasőna"
-
-#: ../../proxy.pm_.c:84
-#, fuzzy
-msgid "re-type password"
-msgstr "Salasőna puudub"
-
-#: ../../proxy.pm_.c:88
-#, fuzzy
-msgid "The passwords don't match. Try again!"
-msgstr "Salasőnad ei klapi"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Juba vormindatud RAID-ile (md%d) ei saa partitsiooni lisada"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Ei saa kirjutada faili %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid ebaőnnestus"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid ebaőnnestus (puudub 'raidtools'?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Ei ole piisavalt partitsiooni RAID-%d jaoks\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr ""
-"Anacron käivitab programme perioodiliselt analoogiliselt cron-ile.\n"
-"Kasutage seda juhul kui Teie arvuti ei tööta 24h."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd on kasutusel pőhiliselt sülearvutites, akude täituvuse jälgimiseks.\n"
-"Samuti suudab see aku tühjenemisel süsteemi viisakalt maha vőtta."
-
-#: ../../services.pm_.c:18
-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 ""
-"Laseb käivitada ühekordseid käske etteantud ajal vői ootab süsteemi\n"
-"koormuse laskumist käsu käivitamiseks piisavale tasemele."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron on UNIXi süsteemide standardvahend kasutaja programmide perioodiliseks\n"
-"käivitamiseks. Vixie cron sisaldab lisaks veel turvalisust ja kasutus-\n"
-"mugavust tőstvaid omadusi. Soovitav süsteemile mis töötab 24h"
-
-#: ../../services.pm_.c:23
-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 annab vőimaluse kasutada hiirt ka tekstikonsoolil. Lisaks tavalisele\n"
-"lőikamisele/kleepimisele saab kasutada ka menüüsüsteeme."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache on maailma juhtiv veebiserveri programm. Tőenäoliselt\n"
-"ka vőimsaim."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Interneti \"superserver\", nimega inetd laseb käivitada mitmeid vőrgu-\n"
-"teenustel, nagu telnet, ftp, rsh, rlogin jne."
-
-#: ../../services.pm_.c:33
-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:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"See programm laeb süsteemi käivitumisel klaviatuuripaigutuse vastavalt\n"
-"failis /etc/sysconfig/keyboard kirjeldatule."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: ../../services.pm_.c:43
-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 on trükideemon, ilma selleta ei ole vőimalik printida."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) on kasutusel nimeserverites, mis teenindavad DNS\n"
-"hierarhiat, tőlkimaks nimesid IP-aadressideks"
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Ühendab ja lahutab kőiki vőrgufailisüsteeme (nii NFS, SMB\n"
-"kui ka NCP)"
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr "Aktiveerib süsteemi laadimisel Teile vajalikud vőrguliidesed."
-
-#: ../../services.pm_.c:52
-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 on UNIXi keskkonna standardne failijaotusprotokoll. See programm täidab\n"
-"NFS serveri funktsioone, ja konfigureeritakse failis /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS on UNIXi keskkonna standardne failijaotusprotokoll. See programm täidab\n"
-"NFS failide lukustamise funktsioone. Vajalik serveerimisel."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA tugi on tavaliselt vajalik sülearvutitele vőrgu- ja modemiliideste\n"
-"lisamiseks."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"portmapper haldab RPC ühendusi, mida kasutavad NFS ja NIS. Neil \n"
-"serveritel on see hädavajalik."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix on meili transpordiagent, see tähendab programm, mis\n"
-"toimetab meili ühest masinast teise."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Salvestab ja taastab juhuarvude genereerimiseks vajaliku süsteemse\n"
-"entroopiasalve."
-
-#: ../../services.pm_.c:69
-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:71
-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 on RIP deemon, mis vahetab selle protokolli alusel marsruutimis-\n"
-"infot. Kui Teil on RIP kasutusel, on vajalik ka routed."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat protokoll laseb üle vőrgu saada informatsiooni süsteemi\n"
-"töö kohta. Ettevaatust!"
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"rusers protokoll laseb üle vőrgu saada informatsiooni süsteemi\n"
-"kasutajate kohta. Ettevaatust!"
-
-#: ../../services.pm_.c:78
-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 protokoll laseb üle vőrgu saada informatsiooni süsteemi\n"
-"kasutajate kohta. Ettevaatust!"
-
-#: ../../services.pm_.c:80
-#, fuzzy
-msgid "Launch the sound system on your machine"
-msgstr "Käivita X-Windows alglaadimisel"
-
-#: ../../services.pm_.c:81
-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 kaudu toimub süsteemis toimiva logimine. Vajalik!"
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: ../../services.pm_.c:84
-#, fuzzy
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Stardib X fondiserveri, selleta X ei käivitu."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Valige, millised teenused tuleks alglaadimisel käivitada"
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Printer"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Töömood"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Vőrguprinteri sätted"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Server, Andmebaasid"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "seade"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "käimas"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "peatatud"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Teenused ja deemonid"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Selle teenuse kohta ei oska\n"
-"lisainformatsiooni anda."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Alglaadimisel"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Olek:"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Sektor"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Ülejäänud maailm"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Internetiühendus"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimeedia - Graafika"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Arendus"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Juhtimiskeskus"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Vőrguliides"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "SMB serveri nimi"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Mängud"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "ekspert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-#, fuzzy
-msgid "MandrakeStore"
-msgstr "kohustuslik"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Paketi %s installimine"
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Partitsioonitabel on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
-"Proovin loetamatud kirjed puhastada"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Viga"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Paigaldusjärgsed sätted"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Alglaaduri stiil"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Őnnitleme!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Installimine"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Tavakasutaja"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Vormindan loopback faili %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Kőlbmatu tagavarakoopia"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Kőlbmatu tagavarakoopia"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Kőlbmatu tagavarakoopia"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Paketigruppide valik"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Palun valige paketid installimiseks"
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Eemalda prindijärjekord"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Eemalda Windows(TM)"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Kasutajatunnus"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Palun testige hiirt"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Palun proovige veel"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Palun proovige veel"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "Salasőna puudub"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN ühendus"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Vali printeri ühendusviis"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Palun valige klaviatuuriasetus"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Palun valige partitsioon"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Palun valige paketid installimiseks"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Kőlbmatu tagavarakoopia"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Palun testige hiirt"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Kőlbmatu tagavarakoopia"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Vőrgu mask:"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Kasutajatunnus"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Palun valige paketid installimiseks"
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Palun valige kasutatav keel"
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Kas optimiseerime kővaketast?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Kas optimiseerime kővaketast?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-#, fuzzy
-msgid "What"
-msgstr "Oodake"
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "Ratas"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "Ratas"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Mooduli parameetrid:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Vőrgu sätted"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Palun valige paketid installimiseks"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-#, fuzzy
-msgid "across Network"
-msgstr "Vőrgu mask:"
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Palun valige paketid installimiseks"
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Failisüsteemid"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Eelistused"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Millisesse seerialporti on Teie modem ühendatud?"
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Vőrgu sätted"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Kőlbmatu tagavarakoopia"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Palun valige hiire tüüp"
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Kőlbmatu tagavarakoopia"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Taasta flopilt"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Palun valige hiire tüüp"
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Muu"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Süsteemi installimine"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Taasta failist"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Taasta failist"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Isetehtud"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Abi"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- Eelmine"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Olek:"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Kőlbmatu tagavarakoopia"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Taasta failist"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Tekst"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Pakettide valik"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Palun valige kasutatav keel"
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Palun valige kasutatav keel"
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Palun valige kasutatav keel"
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Kőlbmatu tagavarakoopia"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Kőlbmatu tagavarakoopia"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Kőlbmatu tagavarakoopia"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Salvesta faili"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Palun testige hiirt"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Palun valige paketid installimiseks"
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Vőrgu sätted"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Vőrgu sätted"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "LAN sätted"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "ISDN sätted"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Failisüsteemid"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s installimine ebaőnnestus. Tekkis järgnev viga:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "%s ei leitud"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Tehtud"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Vorminda flopi"
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Valmistun installimiseks"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-#, fuzzy
-msgid "Restart XFS"
-msgstr "piiratud"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "piiratud"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Vormindamine"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-#, fuzzy
-msgid "Uninstall Fonts"
-msgstr "RPM-ide eemaldamine"
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "ISDN sätted"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Ühenduspunkt"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Valige partitsioonid, mida soovite vormindada"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Kontor"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Katkesta"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Printer"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Süsteemi installimine"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Valige fail"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Vőrguprinter"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
-msgid "Initials tests"
-msgstr "Initsialiseerimisteade"
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Teie süsteemis ei ole vőrgukaarti!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Installimine"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Teie süsteemis ei ole vőrgukaarti!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Välju programmist"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Internetiühenduse jagamine"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Internetiühenduse jagamine töötab"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Internetiühenduse jagamine on juba seadistatud ja see on\n"
-"ka praegu aktiivne.\n"
-"\n"
-"Mida Te soovite teha?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "keela"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "tühista"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "seadista uuesti"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Peaten serverid..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Internetiühendust nüüd enam ei jagata"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Internetiühendust hetkel ei jagata"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Internetiühenduse jagamine on juba seadistatud aga hetkel\n"
-"on see keelatud.\n"
-"\n"
-"Mida Te soovite teha?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "luba"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Käivitan serverid..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Internetiühenduse jagamine nüüd töötab"
-
-#: ../../standalone/drakgw_.c:201
-#, fuzzy
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Nüüd on Teil vőimalik seadistada oma arvutit internetiühendust jagama.\n"
-"\n"
-"Märkus: kohtvőrgu (LAN) jaoks on vajalik eraldi vőrgukaardi olemasolu."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Liides %s (kasutab moodulit %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Liides %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Teie süsteemis ei ole vőrgukaarti!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Ühtki vőrgukaarti ei ole hetkel seadistatud. Palun kasutage selleks "
-"riistvara sätteseadjat."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Vőrguliides"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Teil on vaid üks seadistatud vőrguliides:\n"
-"\n"
-"%s\n"
-"\n"
-"Kohtvőrgu sätted seotakse selle liidesga."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Palun valige millist vőrguliidest soovite kasutada kohtvőrgu\n"
-"jaoks."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Monitor ei ole seadistatud"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Alglaaduri stiil"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Interneti sätted"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "CUPS serveri IP"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Vőimalik kohtvőrgu aadressi konflikt %s konfiguratsioonis!\n"
-
-#
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Leitud tulemüüri sätted!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Hoiatus! Leiti olemasolevad tulemüüri sätted. Tőenäoliselt peaksite need "
-"hiljem üle vaatame."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Seadistan..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Häälestan skriptid, installin tarkvara, käivitan serverid..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Probleemid paketi %s installimisel"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Kőik on seadistatud.\n"
-"Nüüd saate internetiühendust jagada teistele kohtvőrgu arvutitele, kasutades "
-"neil automaatset konfigureerimist (DHCP)"
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Internetiühenduse jagamine on juba seadistatud aga hetkel keelatud."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-"Internetiühenduse jagamine on juba seadistatud ja see on praegu aktiivne."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Internetiühenduse jagamist ei ole kunagi seadistatud"
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Interneti jagamise seadistamine"
-
-#: ../../standalone/drakgw_.c:703
-#, 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 ""
-"Internetiühenduse jagamise Abimees!\n"
-"\n"
-"%s\n"
-"\n"
-"Valige Abimehe käivitamiseks ``OK''"
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Vőrgusätted (%d liidest)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Kustuta profiil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profiil kustutamiseks:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Uus profiil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Masinanimi: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetiühendus"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tüüp: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Vaikelüüs:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Liides:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Olek:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Seadiste internetiühendus..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN sätted"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Juhtprogramm"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Liides"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokoll"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Olek:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Seadista kohtvőrk (LAN) ..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Abimees..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Rakenda"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Palun oodake... Rakendan seadistusi"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Ühendatud"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ei ole ühendatud"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Ühenda..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Lahuta..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN sätted"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Vőrgukaart %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Laadimisprotokoll"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Käivitub laadimisel"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktiivne"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktiivne"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetiühenduse seadistamine"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetiühenduse seadistamine"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Ühenduse tüüp: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameetrid"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Vaikelüüs"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Vőrgukaart"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Turvataseme seadmine"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Juhtimiskeskus"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Valige kasutatav vahend"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Kanada (Quebec)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "Euroopa"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Islandi"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "Euroopa"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "seerial"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "kasutamiseks: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Palun valige klaviatuuriasetus"
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Kas soovite konsoolil kasutada BackSpace-i kui Delete?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Vaheta CD plaat"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Palun sisestage installeerimise CD pealdisega lugejasse ja vajutage <OK>.\n"
-"Kui teil säherdust ei ole, vajutage <Katkesta>, et kiiruendust vältida."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Ei saa kiiruuendust alustada !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-#, fuzzy
-msgid "logdrake"
-msgstr "DrakNet"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Fail/_Uus"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Fail/_Ava"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Fail/_Salvesta"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Fail/Salvesta _Kui"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Fail/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Eelistused"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Eelistused/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Abi"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Abi/_Misvärk"
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Kasutajatunnus"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "Initsialiseerimisteade"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:191
-#, fuzzy
-msgid "matching"
-msgstr "Masin:"
-
-#: ../../standalone/logdrake_.c:192
-#, fuzzy
-msgid "but not matching"
-msgstr "Masin:"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "LAN sätted"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache ja Pro-ftpd"
-
-#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "varjutatud"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "ext2"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "huvitav"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "vormindatakse"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Seadistused"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Salvesta kui..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Palun valige hiire tüüp"
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "ei leitud: serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Teeskleme keskmist hiirenuppu?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Valige graafikakaart"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Alglaadimisseade"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Tulemüüri sätted"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Tulemüüri sätted"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Tulemüür\n"
-"\n"
-"Tulemüüri olete juba seadistanud.\n"
-"Valige 'Seadista', et midagi muuta"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Tulemüür\n"
-"\n"
-"Valige 'Seadista', selle seadistamiseks nüüd"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Valige sobiv keel"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Valige paigaldusmeetod"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Kővaketta leidmine"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Hiire seadmine"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Klaviatuuri valik"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Turvalisus"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Failisüsteemid"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Vormindamine"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Pakettide valik"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Süsteemi installimine"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Tavakasutaja"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Vőrgusätted"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Teenuste sätted"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Alglaaduri sätted"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Loo alglaadimisflopi"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Seadista X"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Süsteemi installimine"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Välju programmist"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall seadistamine\n"
-"\n"
-"Selle vahendiga saate luua lihtsa kaitse Interneti ohtude vastu.\n"
-"Kui vajate vőimsat tulemüüri, vaadake palun\n"
-"spetsiaalset MandrakeSecurity Firewall distributsiooni."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Nüüd küsitakse Teilt millistele teenustele soovite lubada ligipääsu\n"
-"Internetist. Palun mőelge hoolega, nende vastuste üle, sest tegu on\n"
-"ju Teie arvuti turvalisusega.\n"
-"\n"
-"Palun, kui te ei soovi hetkel mőnd neist kasutada, pange see igaks\n"
-"juhuks tulemüüri taha. Hiljem on Teil soovi korral vaba voli kőike\n"
-"uuesti lubada."
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Kas sellel arvutil hakkab tööle veebiserver, mida külastatakse kogu\n"
-"Internetist? Kui vajate ligipääsu vaid samast arvutist, vastake\n"
-"siin EI.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Kas sellel arvutil hakkab tööle nimeserver? Kui Te seda ei soovi\n"
-"siis vastake palun ei.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Kas soovite sisenevaid SSH ühendusi? SSH on turvaline asendus telnetile.\n"
-"Telneti kaudu üle vőrgu masinasse sisenemine on äärmisel ebaturvaline\n"
-"kuna sel teel on lihtsate vahenditega vőimalik vőrgus paroole varastada.\n"
-"SSH korral on ühendus krüptitud ja pealtkuulamine praktiliselt välistatud."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Kas soovite lubada sisenevaid telneti ühendusi?\n"
-"See on tőeliselt ebaturvaline, vastake siin palun Ei ja kasutage\n"
-"telneti asemel SSH-d.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Kas soovite sellel arvuti käivitada avaliku FTP serveri? Kui see on\n"
-"tőesti Teie soov, siis lubage palun ainult anonüümne ligipääs, sest\n"
-"muul juhul tekib jälle paroolide varastamise oht, sest FTP ei tunne\n"
-"krüptimist.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Kas Teil on jooksmas avalik meiliserver? Vastasel juhul on\n"
-"palju turvalisem siia tulemü ette panna.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Kas vajate sellel masinal POP vői IMAP serverit?\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Teil on kasutusel 2.2 kernel. Kui IP aadress antakse Teie arvutile\n"
-"dünaamiliselt, siis peaks seda siinkohal lubama.\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Kas see arvuti kuulub vőrku, millest masinad sünkroniseerivad\n"
-"omavahel kellaaega? Tőenäoliselt vőite selle rahulikult keelata."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Seadistused tehtud. Kas salvestada sätted kettale?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, fuzzy, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Vőrgukaart %s: %s"
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Seadme %s avamine kirjutamiseks ebaőnnestus: %s"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "Vőrgu sätete abimees"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Palun oodake, valmistun installimiseks"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Server, Veeb/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Vőrguarvuti (klient)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS, SMB, SSH server, vahendaja (proxy)"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Kontor"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome tööjaam"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Suhtlus Palmi vői Visoriga"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Tööjaam"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Tulemüür/marsruuter"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Kontoriprogrammid: tekstitöötlus (kword, abiword), tabelarvutus (kspread, "
-"gnumeric), PDF eelvaade jne"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Audio-värgid: mp3 ja midi, mikserid jms"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Raamatud ja Howto-d Linux ja vabavara kohta"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE tööjaam"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm jt"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimeedia - Video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Meili, uudiste, veebi, jututamise ja failiülekande programmid"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Server, Andmebaasid"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Vahendid lihtsamaks süsteemi administreerimiseks"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimeedia - Heli"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utiliidid"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentatsioon"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Konsooliprogrammid"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Interneti tööjaam"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimeedia tööjaam"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "LAN sätted"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Veel graafilisi töölaudu (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"K Desktop Environment, graafiline töökeskkond ja rida seonduvaid rakendusi"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Graafiline keskkond"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache ja Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Vahendid CD-de kirjutamiseks"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Kontori tööjaam"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm jne"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Graafikaprogrammid nagu Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C ja C++ arendusteegid, programmid ja päisefailid"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer server"
-msgstr "Failiserver"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Server, Meil/grupitöö/uudised"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Mänguvahend"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Video esitamine ja redigeerimine"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimeedia - Graafika"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Meelelahutus: arcade, boards, strategy jne"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr "Komplekt programme meili ja uudiste lugemiseks ning veebi brausimiseks"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhiveerimine, emuleerimine, monitoorimine"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Isiklikud finantsid"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr "Graafiline töökeskkond koos kasutajasőbralike rakendustega"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Mitmete protokollide, sealhulgas ssh kliendid"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet gateway"
-msgstr "Internetiühendus"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Heli ja video esitamine ja redigeerimine"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Muud graafilised töölauad"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editorid, shellid, terminalid, failihaldus"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Isiklike finantside haldusvahendid"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Isikliku info haldamine"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimeedia - CD kirjutamine"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Teadustööjaam"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Katkesta"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Ei soovi"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Valige uus vaikimisi kasutaja :"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Vőrguprinter"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Nüüd vőite moodulile %s parameetreid määrata"
-
-#~ msgid "mount failed"
-#~ msgstr "ühendamine ebaőnnestus"
-
-#~ msgid "Low"
-#~ msgstr "Madal"
-
-#~ msgid "Medium"
-#~ msgstr "Keskmine"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr "Turvataset on parandatud, lisatud on hoiatusi ja piiranguid."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimeedia"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Ekspert"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Linuxil on kombeks hoida sisemist kella Greenwichi (GMT) ajas ja muuta\n"
-#~ "vajadusel süsteemi kella vastavalt Teie valitud ajavööndile."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Loo internetiühendus"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Katkesta internetiühendus"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Seadista vőrguühendus (kohtvőrk vői Internet)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Millisele kettale soovite seda ümber paigutada?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Palun valige paketid installimiseks"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome tööjaam"
-
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "Kasutaja:"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Palun valige hiire tüüp"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Välju"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "CD/flopi/.. autoühendamine"
-
-#~ msgid "Active"
-#~ msgstr "Aktiivne"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Ei"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Leiti printer, nimega \"%s\" "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Otse ühendatud printer"
-
-#~ msgid "Printer Device"
-#~ msgstr "Printeri seade"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "CUPS printserver"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "CUPS printserver"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Töömood"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Muu"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Palun valige klaviatuuriasetus"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Palun valige partitsioon"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tüüp: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Kőlbmatu tagavarakoopia"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Seadista X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Printeri seade"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Katkesta"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "OK"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Hiir"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "tuut"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "Testime Teie ühendust..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Sulgeme nüüd ühenduse..."
-
-#~ 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 ""
-#~ "Vőrguühendus ei ole suletud.\n"
-#~ "Proovige seda teha käsitsi, käivitades\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "juurkasutajana."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Süsteem on nüüd Internetist lahutatud."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Valige paigalduse maht"
-
-#~ msgid "Total size: "
-#~ msgstr "Suurus kokku: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Palun oodake, "
-
-#~ msgid "Total time "
-#~ msgstr "Aega kokku "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Kasutada olemasolevat X-i seadistust?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Mis porti on Teie printer ühendatud? \n"
-#~ "(paneme tähele, et /dev/lp0 on sama mis LPT1:)?\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Hoiatan, vőrguliides on juba seadistatud. Järgnevalt seadistame selle "
-#~ "uuesti."
-
-#~ msgid "New"
-#~ msgstr "Uus"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Eemalda"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Palun valige partitsioon"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Mitmeselt mőistetav (%s), palun täpsustage\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (vaikimisi %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Teie valik? (vaikimisi %s, `none' - ei midagi)"
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "ei saa lugeda faili /etc/sysconfig/autologin: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Kas soovite vőrguühendust taaskäivitada?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Kas olete nőus?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Nüüd taaskäivitan vőrguliidese:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Kas olete valmis vőrguliidese %s taaskäivitamiseks?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Tavaline valik on \"/dev/hda\" (esimese IDE kanali master), kui Te ei\n"
-#~ "tea täpselt, et tahate teisiti teha."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Ühenduse tüüp: "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Valige uus vaikimisi kasutaja :"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Palun testige hiirt"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Valige keel süsteemi installimiseks ja kasutamiseks."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Et installimist jätkata, peate nőustuma ülaltoodud "
-#~ "litsentsitingimustega.\n"
-#~ "\n"
-#~ "\n"
-#~ "Palun valige \"Nőus\", kui nőustute nendega.\n"
-#~ "\n"
-#~ "\n"
-#~ "Palun valige \"Keeldun\", kui ei pea neile tingimistele allumist "
-#~ "vőimalikuks. Installimine lőpetatakse, tegemata Teie süsteemis muutusi."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Valige klaviatuuripaigutus ülaltoodud nimekirjast"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Kui soovite, et peale installimist oleks vőimalik kasutada veel "
-#~ "erinevaid\n"
-#~ "keeli, valige need ülaltoodud nimekirjast. Valik \"Kőik\" lisab toe\n"
-#~ "kőigile keeltele."
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Valige:\n"
-#~ "\n"
-#~ " - Isetehtud: Olete Linuxiga tuttav ja soovite süsteemi kohandada "
-#~ "vastavalt\n"
-#~ " Teie vajadustele. Järgmisena saate teha valikud sőltuvalt Teie "
-#~ "arvuti \n"
-#~ " edaspidisest kasutusalast.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ekspert: Te tunnete end GNU/Linux keskkonnas vabalt ja soovite\n"
-#~ " süsteemi, mis sobiks nagu valatult Teie täpsete ootustega.\n"
-#~ " Aga palun, palun: ÄRGE VALIGE SEDA, KUI TE TÄPSELT EI TEA, MIDA TEETE!"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Nüüd määrake oma arvuti peamne kasutusala. Valikud on:\n"
-#~ "\n"
-#~ "* Tööjaam: valige, kui kavatsete oma arvutit rakendada igapäevategemiste "
-#~ "tarvis (kontorirakendused,\n"
-#~ " graafika ja muu selline).\n"
-#~ "\n"
-#~ "\n"
-#~ "* Arendus: installitakse täiskomplekt vahendeid eri programmeerimiskeelte "
-#~ "kasutamiseks, allikkoodi loomiseks,\n"
-#~ " kompileerimiseks, silumiseks jne.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: valige see, kui vajate Mandrake Linux serverit. Saate "
-#~ "serveerida faile (NFS vői SMB), printida\n"
-#~ " (Unixi stiilis lp vői Windowsi SMB), lisaks andmebaasid, "
-#~ "veebirakendused jms. Installimata\n"
-#~ " jäetakse graafiline kasutajaliides (KDE, GNOME...)."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Nüüd vőite valida paketigruppe installimiseks vői uuendamiseks\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX kontrollib, kas Teil on ikka piisavalt vaba ruumi nende kőigi "
-#~ "jaoks.\n"
-#~ "kui mitte, hoiatab ta Teid. Kui Te hoiatusest ei hooli jäetakse "
-#~ "automaatselt\n"
-#~ "kőrvale vähemolulised paketid.\n"
-#~ "Nimekirja lőpus saate valida \"Valik paketthaaval\"; sel juhul aga peate\n"
-#~ "läbi sirvima üle 1000 üksiku paketi..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Nüüd saate pakette ükshaaval installimiseks valida\n"
-#~ "\n"
-#~ "\n"
-#~ "Paketipuud saate avada ja sulgeda vasakpoolses nurgas asuvatest nuppudest."
-
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Kui Teil on olemas kőik ülaltoodud CD-d, klikkige <OK>.\n"
-#~ "Kui Teil ei ole ühtki neist, klikkige <Katkesta>.\n"
-#~ "Kui puuduvad mőned CD-d, jätke märgituks vaid olemasolevad ja siis <OK>."
-
-#~ 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 "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Kui soovite oma arvuti ühendada Internetti vői kohtvőrku, tehke palun\n"
-#~ "őige valik. Välise seadme korrektseks tuvastamiseks on vajalik, et see "
-#~ "oleks\n"
-#~ "sisse lülitatud ja arvutiga ühendatud\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui Te ei soovi vőrguühendust kasutada, valige \"Keela vőrguühendus\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui soovite vőrguühenduse seadistada hiljem, valige \"Tehtud\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Modemit ei leitud. Palun valige seerialport, kuhu see on ühendatud.\n"
-#~ "\n"
-#~ "\n"
-#~ "Igaks juhuks: esimese seerialpordi (\"COM1\" Microsoft Windowsis) nimi\n"
-#~ "on GNU/Linux süsteemis \"ttyS0\"."
-
-#~ 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 "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Sisestage sissehelistamiskeskuse andmed. Kui Te neid ei tea\n"
-#~ "vői kahtlete, saate oma teenusepakkujalt (ISP-l) kindlasti abi.\n"
-#~ "Näiteks info nimeserveri (DNS) kohta saab tavaliselt ühenduse\n"
-#~ "loomise ajal automaatselt"
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Kui Teil on väline modem, siis lülitage see palun nüüd sisse, et DrakX "
-#~ "saaks seda tuvastada."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Palun lülitage modem sisse ja valige nimekirjast őige."
-
-#~ 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"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Kui Te ei ole kindlad, et ülaltoodud informatsioon vastab tőele\n"
-#~ "vői Te ei tea, mida sisestada, küsige abi oma internetiteenuse pakkujalt\n"
-#~ "(ISP-lt). Näiteks info nimeserveri (DNS) kohta saab tavaliselt ühenduse\n"
-#~ "loomise ajal automaatselt"
-
-#~ 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 ""
-#~ "Nüüd sisestage oma arvuti nimi, kui see on vajalik. Kui kahtlete, siis "
-#~ "peaksite küsima lisainformatsiooni oma ISP käest."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Vőrguliidese seadistamiseks on vajalik:\n"
-#~ "\n"
-#~ " * IP-aadress: kui Te seda ei teha, küsige oma vőrguhaldurilt vői\n"
-#~ "internetiteenuse pakkujalt (ISP).\n"
-#~ "\n"
-#~ " * Vőrgumask: \"255.255.255.0\" on tavaliselt sobiv. Igaks juhuks "
-#~ "vőite\n"
-#~ "vőrguhalduri vői ISP käest üle küsida.\n"
-#~ "\n"
-#~ " * Automaatne IP: Kui Teie vőrgus on kasutusel BOOTP vői DHCP.\n"
-#~ "Selle valimisel ei pea välja \"IP-aadress\" täitma. Kui kahtlete\n"
-#~ "küsige jällegi oma vőrguhaldurilt vői ISP-lt."
-
-#~ 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 ""
-#~ "Kui Teie vőrgus on kasutusel NIS, valige \"Kasuta NIS-i\". Kahtluse "
-#~ "korral\n"
-#~ "küsige vőrguhaldurilt."
-
-#~ 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 ""
-#~ "Kui vaja, sisestage oma süsteemi nimi. Kui Teil ei\n"
-#~ "ole ühtki head mőtet, jätke see rida tühjaks"
-
-#~ 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 ""
-#~ "Nüüd sisestage oma sissehelistamisteenuse pakkuja andmed. Kui ei ole "
-#~ "kindel,\n"
-#~ "mida kuhu sisestada, küsige oma ISP käest üle."
-
-#~ 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 ""
-#~ "Kui peate kasutama vahendajaid (tulemüüri vms), seadistage need nüüd. "
-#~ "Kui\n"
-#~ "kahtlete, on abiks vőrguhaldur vői ISP"
-
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Krüptopakette saate installida pärast Internetiühenduse seadistamist.\n"
-#~ "Esmalt valige peegel, kust soovite pakette alla laadida ja seejärel\n"
-#~ "valige paketid.\n"
-#~ "\n"
-#~ "\n"
-#~ "Märkus: krüptopakettide valimisel peate arvesse vőtma ka vőimalikke\n"
-#~ "őiguslikke piiranguid oma asukohamaal."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Nüüd saate valida ajavőőtme vastavalt oma asukohale."
-
-#~ 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 ""
-#~ "Teil on vőimalus seadistada kas kohalik (Teie arvutiga ühendatud) vői\n"
-#~ "vőrguprinter (Unix, Netware vői Microsoft Windows vőrgus)"
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Kui soovite vahetevahel printida, valige palun selleks sobiv meetod, "
-#~ "CUPS\n"
-#~ "vői LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS on uus, vőimas ja paindlik printimissüsteem Unix keskkonnas (CUPS -\n"
-#~ "Common Unix Printing System). Mandrake Linux kasutab vaikimisi seda.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR on vanem meetod, mis oli kasutusel ka eelmistest Mandrake Linux\n"
-#~ "distributsioonides.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui Teil ei olegi printerit, valige \"Ei soovi\"."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linux oskab toimetada mitut tüüpi printeritega. Igaüht neist "
-#~ "seadistatakse\n"
-#~ "erinevalt.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui Teie printer on füüsiliselt arvutiga ühendatud, valige \"Kohalik "
-#~ "printer\"\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui soovite kasutada vőrguprinterit Unix serveril, valige \"Vőrguprinter"
-#~ "\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui soovite kasutada vőrguprinteri Windows serveril (vői muidu üle SMB\n"
-#~ "protokolli), valige \"SMB/Windows 95/98/NT\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Palun lülitage oma printer sisse ja laske DrakX-il seda tuvastade.\n"
-#~ "\n"
-#~ "Samuti on vaja sisestada lisainformatsiooni:\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printeri nimi: spuuler kasutab vaikimisi printerit \"lp\". Seega "
-#~ "peab Teil olema vähemalt ühe printeri nimi \"lp\".\n"
-#~ " Kui Teil ongi ainult üks printer, saate sellele anda ka mitu nime. "
-#~ "Nimed peavad olema eraldatud sümboliga \"|\"\n"
-#~ " Seega, kui soovite, et nimel oleks ka mingi tähendus, kirjutage "
-#~ "nimeks midagi niisugust: \"Minu printer|lp\".\n"
-#~ " Printer, mille nimede hulgas on \"lp\", saab olema Teie süsteemi "
-#~ "jaoks vaikimisi printeriks.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Kirjeldus: see ei ole kohustuslik, kuid vőib osutuda vajalikuks, kui "
-#~ "Teil on näiteks mitu kohalikku printerit ja soovite neid vőrgus välja "
-#~ "jagada\n"
-#~ "\n"
-#~ "\n"
-#~ " * Asukoht: kui soovite anda täiendavat informatsiooni printeri "
-#~ "asukohast\n"
-#~ " Näiteks: \"Teise korruse keskel\".\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Nüüd on vaja lisainformatsiooni.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printeri nimi: spuuler kasutab vaikimisi printerit \"lp\". Seega "
-#~ "peab Teil olema vähemalt ühe printeri nimi \"lp\".\n"
-#~ " Kui Teil ongi ainult üks printer, saate sellele anda ka mitu nime. "
-#~ "Nimed peavad olema eraldatud sümboliga \"|\"\n"
-#~ " Seega, kui soovite, et nimel oleks ka mingi tähendus, kirjutage "
-#~ "nimeks midagi niisugust: \"Minu printer|lp\".\n"
-#~ " Printer, mille nimede hulgas on \"lp\", saab olema Teie süsteemi "
-#~ "jaoks vaikimisi printeriks.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Spuulkataloog: kataloog, kus spuuler hoiab ajutisi faile enne "
-#~ "printimist. Seda ei ole soovitav muuta.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printeri ühendusviis: Kui Teie printer on füüsiliselt Teie arvuti "
-#~ "küljes, valige \"Kohalik printer\".\n"
-#~ " Kui soovite kasutada printerit UNIX serveri küljes, valige \"lpd "
-#~ "printserver\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Kui soovite kasutada printerit Microsoft Windows vőrgus (vői SMB "
-#~ "serveril) valige \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Kui soovite kasutada NetWare serveril asuvat printerit, valige "
-#~ "\"NetWare\".\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Teie printerit ei őnnestunud tuvastada. Palun abistavat infot vőimaliku\n"
-#~ "ühenduspistiku kohta.\n"
-#~ "\n"
-#~ "\n"
-#~ "Enamasti on printer ühendatud esimesse paralleelporti. GNU/Linuxis on "
-#~ "selle\n"
-#~ "nimeks \"/dev/lp0\" ja Microsoft Windowsis \"LPT1\"."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Valige printer ülaltoodud nimekirjast."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "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 ""
-#~ "Palun valige oma printerile sobivad sätted.\n"
-#~ "Abi saate ilmselt ka printeri dokumentatsioonist.\n"
-#~ "\n"
-#~ "\n"
-#~ "Järgmisel sammul saate oma seadistusi testida ja soovi korral muuta, kui "
-#~ "midagi ei tööta nagu vaja."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Nüüd peate sisestama süsteemi juurkasutaja (root) parooli. Et vähendada\n"
-#~ "eksimisvőimalust, tehke seda kaks korda.\n"
-#~ "\n"
-#~ "\n"
-#~ "Juurkasutaja on süsteemi tähtsaim kasutaja ja ainuke, kes tohib teha\n"
-#~ "muudatusi süsteemi sätetesse. Seepärast valige juurkasutaja parooli "
-#~ "erilise\n"
-#~ "hoolega.\n"
-#~ "\n"
-#~ "Hea salasőna peaks olema kombinatsioon tähtedest ja numbritest \n"
-#~ "ning vähemalt 8 märki pikk. Ärge *kunagi* kirjutage oma parooli üles!\n"
-#~ "\n"
-#~ "\n"
-#~ "Samas ei peaks see olema liiga pikk ja keeruline meelde jätmiseks."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Nüüd saate luua ühe vői rohkem \"tavakasutaja\" kontot. Äärmiselt "
-#~ "soovitav\n"
-#~ "on luua igale arvuti kasutajale eraldi konto(d). Sel viisi saab iga "
-#~ "kasutaja\n"
-#~ "valida ise endale sobiva graafilise keskkonna kujunduse ja programmide "
-#~ "sätted.\n"
-#~ "Kőik kasutaja failid saavad hoitud ja kaitstud tema isiklikus "
-#~ "kodukataloogis.\n"
-#~ "\n"
-#~ "\n"
-#~ "Esmalt looge konto iseendale, ka siis kui olete süsteemi ainuke "
-#~ "kasutaja.\n"
-#~ "Ärge tehke oma igapäevatoimetusi juurkasutajana, suurendades sel viisil\n"
-#~ "turvariski! Vale juurkasutaja näpuliigutus vőib süsteemi kergesti\n"
-#~ "kasutuskőlbmatuks muuta!\n"
-#~ "\n"
-#~ "\n"
-#~ "Juurkasutaja őigused on ainult administreerimiseks ja hoolduseks,\n"
-#~ "kőike muud tehke palun tavakasutajana"
-
-#~ 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 ""
-#~ "Alglaadimisketta loomine on äärmiselt soovitatav. Kui peaks kunagi\n"
-#~ "tekkima probleeme süsteemi laadimisel, vői alglaadmisketas olla Teie\n"
-#~ "ainuke pääsetee uue installimise kőrval."
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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 ja grub-i peamised suvandid on:\n"
-#~ " - Alglaadimisseade: määratakse kővaketas vői partitsioon, kus asub\n"
-#~ "alglaadimissektor. Kui Te just täpselt ei tea, mida teete,\n"
-#~ "\"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ooteaeg alglaadimisel: määratakse ooteaeg sekundikümnendikes enne\n"
-#~ "vaikimisi laadimist.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Graafikamood: määratakse VGA tekstmood süsteemi laadimisel. "
-#~ "Vőimalikud\n"
-#~ "on järgmised valikud:\n"
-#~ "\n"
-#~ " * normal: tavaline 80x25 tekstimood\n"
-#~ "\n"
-#~ " * <number>: numbrile vastav tekstimood. - Puhasta /tmp "
-#~ "alglaadimisel: kui soovite kustutada süsteemi alglaadimisel,\n"
-#~ "valige see\n"
-#~ "\n"
-#~ "\n"
-#~ " - Täpsust RAM hulk kui vajalik: kahjuks ei ole ühtki standardset "
-#~ "meetodit Teie\n"
-#~ "arvutis leiduva operatiivmälu (RAM) koguse äraarvamiseks. Kui siinkohal "
-#~ "on eksimine\n"
-#~ "2 vői 4 MB, siis ei maksa sellele väga tähelepanu pöörata."
-
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 on alglaadur SPARC arhitektuurile: see vőimaldab laadida\n"
-#~ "kas GNU/Linuxi vői mőne muu Teie arvutis oleva operatsioonisüsteemi.\n"
-#~ "Tavaliselt tuvastakse teised operatsioonisüsteemid őigesti ja seadista-\n"
-#~ "takse ka alglaadur. Kui Teil aga ei ole őnne, tuleb parameetrid seada\n"
-#~ "käsitsi. Olge sel juhul hoolas valima őiged."
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "SILO peamised suvandid on:\n"
-#~ " - Alglaaduri paigaldus: määratakse kővaketas vői partitsioon, kus "
-#~ "soovite\n"
-#~ "hoida GNU/Linuxi laadimiseks vajalikku infot. Kui Te just täpselt ei "
-#~ "tea,\n"
-#~ "mida teete, valige \"Kővaketta esimene sektor (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ooteaeg alglaadimisel: määratakse aeg sekundikümnendikes enne "
-#~ "vaikimisi\n"
-#~ "laadimist."
-
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "On aeg konfigureerida \"X Window System\" ehk lihtsalt X. X on\n"
-#~ "GNU/Linuxi graafilise kasutajaliidese süda. Sel eesmärgil peame koos\n"
-#~ "seadistama Teie graafikakaardi ja monitori. Enamus sellest protsessist\n"
-#~ "on automatiseeritud ja Teie ülesandeks on ainult DrakX-i\n"
-#~ "valikutega nőustuda (vői mitte :))\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui saame seadistamisega hakkama, käivitakse X (kui Te ei anna\n"
-#~ "eraldi käsku mitte nii teha)."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Kui midagi on X-i seadistustega valesti, saab siinkohal vőimalikke vigu\n"
-#~ "parandada."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Kui eelistate graafilist süsteemi sisenemist, valige \"Jah\". "
-#~ "Konsoolimoodi\n"
-#~ "eelistamisel valige \"Ei\"."
-
-#~ msgid ""
-#~ "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"
-#~ msgstr ""
-#~ "Nüüd saate valida oma süsteemis kasutatava turvataseme. Palun vaadake "
-#~ "lisainfot selle kohta ka\n"
-#~ " kasutajajuhendist. Üldiselt, kui Te ei tea, mida teete, jätke siia "
-#~ "vaikimisi valik.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Teie süsteem sooritab alglaadimise.\n"
-#~ "\n"
-#~ "Taaskäivitumisel laaditakse Teie uus Mandrake Linux süsteem "
-#~ "automaatselt.\n"
-#~ "Kui soovite laadida mőnd muud operatsioonisüsteemi, lugege palun\n"
-#~ "lisainformatsiooni."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Tđehhi (programmeerijad)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovaki (programmeerijad)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Loodava profiili nimi:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Kirjuta /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Vorminda kőik"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Pärast kőigi partitsioonide vormindamist"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "on kőik andmed neil partitsioonidel hävivad"
-
-#~ msgid "Reload"
-#~ msgstr "Laadi uuesti"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "Kas soovite luua kiirpaigaldusflopi (abiks korduval paigaldusel)?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL sätted"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Kui vőrgus on CUPS server, siis ei ole Teil vaja siin\n"
-#~ "printereid seadistada, need leitakse automaatselt.\n"
-#~ "Kui server asub kuskil kaugemal, peate sisestama CUPS serveri\n"
-#~ "IP-aadress ning soovitavalt ka pordi numbri."
-
-#~ msgid "Remote queue"
-#~ msgstr "Prindijärjekorra nimi"
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Prindijärjekorra nimi"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Domeeninimi"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Printerit ei ole"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Vőrgusätted"
-
-#~ msgid "Profile "
-#~ msgstr "Profiil "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Ühenduse tüüp: "
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Loo internetiühendus"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Katkesta internetiühendus"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Katkesta internetiühendus"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Katkesta internetiühendus"
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Ühenduse nimi"
-
-#, fuzzy
-#~ msgid "average"
-#~ msgstr "rämps"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Vaikimisi"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Sätete fail ei ole arusaadav."
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Tundmatu sättefaili"
-
-#~ msgid "Adapter"
-#~ msgstr "Vőrgukaart"
-
-#~ msgid "Disable network"
-#~ msgstr "Keela vőrguühendus"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Keela vőrguühendus"
-
-#~ 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üüd saate oma hiirt testida. Kasutage nii nuppe kui ratast. Kui tundub\n"
-#~ "midagi valesti olevat, klikkige <Katkesta> uue juhtprogrammi valimiseks."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (vői ADSL) ühendus"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Hiir"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "Vőite anda ette ka URI, mille järgi CUPS printeri leiab."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Jah, trüki ASCII testlehekülg"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Jah, trüki PostSript testlehekülg"
-
-#~ msgid "Paper Size"
-#~ msgstr "Paberi suurus"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Töö lőpetamisel väljasta kogu leht?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Kas optimiseerime kővaketast?"
-
-#~ msgid "Color depth options"
-#~ msgstr "Mooduli parameetrid:"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Trükkida tekst PostScriptina?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Paranda trepitud tekst?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Lehekülgi ühel paberil"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Lehe laiuse märgid punktides (1/72 tollile)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Lehe kőrguse märgid punktides (1/72 tollile)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Lisa GhostScript parameetrid"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Lisa teksti parameetrid"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Viimane leht enne"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Vali vőrguprinteri ühendusviis"
-
-#~ 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 ""
-#~ "Masinal vőib olla mitu printerit, millest igaüks vajab nime\n"
-#~ "(sageli lp) ja printkataloogi. Millist nime peaks kasutama\n"
-#~ "kasutama selle printeri puhul ja kuidas see on ühendatud?"
-
-#~ 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 ""
-#~ "Masinal vőib olla mitu prindijärjekorda, millest igaüks vajab nime\n"
-#~ "(sageli lp) ja spuulkataloogi (ajutiste failide jaoks). Millist nime\n"
-#~ "ja kataloogi peaks kasutama selle printeri puhul ja kuidas see on "
-#~ "ühendatud?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Printeri nimi"
-
-#~ msgid "Spool directory"
-#~ msgstr "Spuulkataloog"
-
-#~ msgid "Disable"
-#~ msgstr "Keela"
-
-#~ msgid "Enable"
-#~ msgstr "Luba"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "LAN sätted"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Teenusepakkuja DNS 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Teenuspakkuja DNS 2"
-
-#, fuzzy
-#~ msgid "fsck failed: "
-#~ msgstr "ühendamine ebaőnnestus: "
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Turvalisema süsteemi saamiseks peaksite valima \"Kasuta varjutatud \n"
-#~ "paroolifaili\" ja \"Kasuta parooli kaitsmiseks MD5 algoritmi\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Kui Teie vőrgus on kasutusel NIS, valige \"Kasuta NIS-i\". Kahtluse "
-#~ "korral\n"
-#~ "küsige vőrguhaldurilt."
-
-#~ msgid "yellow pages"
-#~ msgstr "NIS YP"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Kuidas soovite luua internetiühendust?"
-
-#~ msgid "Configure..."
-#~ msgstr "Seadista..."
-
-#~ msgid "Selected size %d%s"
-#~ msgstr "Valitud suurus %d%s"
-
-#~ msgid "Opening your connection..."
-#~ msgstr "Testime Teie ühendust..."
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Seadistused: Lisa asukoht"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "See skript proovib seadistada USB hiirt"
-
-#~ msgid "Boot style configuration"
-#~ msgstr "Alglaadimise stiil"
-
-#~ 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 ""
-#~ "Nüüd on internetiühendus seadistatud aga Teie arvutit\n"
-#~ "saab panna ka seda jagama teistele arvutitele kohtvőrgus.\n"
-#~ "Märkus: kohtvőrgu jaoks on vajalik eraldi vőrgukaardi olemasolu\n"
-#~ "\n"
-#~ "Kas soovite internetiühendust jagada?\n"
-
-#~ msgid "Welcome to the Internet Connection Sharing utility!"
-#~ msgstr "Internetiühenduse jagamine"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Automaatsed sőltuvused"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "LILO/GRUB seadistamine"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Loo alglaadimisflopi"
-
-#~ msgid "Choice"
-#~ msgstr "Valik"
-
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr "horisontaalne kena aurora"
-
-#~ msgid "vertical traditional aurora"
-#~ msgstr "vertikaalne tavaline aurora"
-
-#~ 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 ""
-#~ "Nüüd saate valida mitmesuguseid süsteemi käitumise vőimalusi.\n"
-#~ "\n"
-#~ "* Optimiseeri kővaketast: selle variandi puhul saate kiirendada\n"
-#~ " kővaketta poole pöördumist, kuid teatud vigaste emaplaatide puhul \n"
-#~ " vőite kővaketta rikkuda. Valige, kui olete endas kindel.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Valige turvatase: saate valida oma süsteemi turvalisuse taseme.\n"
-#~ " Palun vaadake manuaali, et saada turvatasemetest täielik ülevaade.\n"
-#~ " Kui kahtlete, valige \"Keskmine\", et saada tőesti turvalist süsteemi,\n"
-#~ " valige \"Paranoiline\" aga olge ettevaatlik, näiteks EI SAA SELLEL "
-#~ "TASEMEL\n"
-#~ " JUURKASUTAJA SISSE LOGIDA! Peate kasutama käsku 'su'. Mida "
-#~ "turvalisem, \n"
-#~ " seda keerulisem kasutada!\n"
-#~ "\n"
-#~ "* Täpsusta operatiivmälu mahtu: vőib esineda olukord, kus GNU/Linux ei\n"
-#~ " ole suuteline detekteerima täpselt operatiivmälu suurust. Kui see on\n"
-#~ " nii juhtunud, saate öelda ette tegeliku mäluhulga. Paneme tähele, et\n"
-#~ " erinevus 2-4MB tuvastatud ja tegeliku mälu hulga vahel on normaalne.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Irdandmekandjate automaatne ühendamine (supermount): Teie flopid, CD-d\n"
-#~ " ja Zip-kettad ühendatakse automaatselt (ilma mount/umount kasutamata)\n"
-#~ "\n"
-#~ "\n"
-#~ "* Puhasta \"/tmp\" alglaadimisel: süsteemi laadimisel kustutatakse kőik "
-#~ "failid \"/tmp\" kataloogist.\n"
-#~ "\n"
-#~ "* Vőimalda NumLock alglaadimisel: süsteemi laadimisel muudetakse\n"
-#~ " konsoolimoodis NumLock aktiivseks"
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr "Vabandan, aga meili seadistamine ei ole praegu veel vőimalik."
-
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "See siin on vőrguühenduse abimees.\n"
-#~ "Mis komponente soovite seadistada?\n"
-
-#~ msgid "Internet/Network access"
-#~ msgstr "Internetiühendus"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Muud sätted"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Muud küsimused"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Kőrgel turvatasemel ei saa supermount-i kasutada"
-
-#~ 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 ""
-#~ "SELLEL TURVATASEMEL EI OLE VŐIMALIK SÜSTEEMI SISENEDA JUURKASUTAJANA!\n"
-#~ "Juurkasutaja őiguste saamiseks tuleb siseneda tavakasutajana ja siis \n"
-#~ "kasutada \"su\"-d.\n"
-#~ "Serveri puhul on selline piirang täiesti mőistlik.\n"
-#~ "Teid on igal juhul hoiatatud."
-
-#~ 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 ""
-#~ "Olge ettevaatlik, NumLock-i kasutamine vőib pőhjustada (eriti kantavatel\n"
-#~ "arvutitel) probleeme."
-
-#~ msgid "not connected"
-#~ msgstr "ei ole ühendatud"
-
-#~ msgid "Actions"
-#~ msgstr "Tegevused"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Teadusrakendused"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Server, Faili/prindi/samba"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "Server, DNS/DHCP"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Esimene nimeserver:"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Teine nimeserver:"
-
-#~ msgid "using module"
-#~ msgstr "kasutades moodulit"
-
-#~ msgid "Development, Database"
-#~ msgstr "Arendus, Andmebaasid"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr "Arendus, Graafilised keskkonnad"
-
-#~ msgid "Development, Standard tools"
-#~ msgstr "Arendus, standardvahendid"
-
-#~ msgid ""
-#~ "\n"
-#~ "Warning:\n"
-#~ "Applying the changes while running may crash your X environnement."
-#~ msgstr ""
-#~ "\n"
-#~ "Hoiatus:\n"
-#~ "Muudatuste rakendamine vőib X keskkonna endast välja viia."
-
-#~ msgid ""
-#~ "\n"
-#~ "If you continue, I will shut down your %s environnement"
-#~ msgstr ""
-#~ "\n"
-#~ "Jätkamisel olen sunnitud Teie %s keskkonna seiskama"
-
-#~ msgid "loopback"
-#~ msgstr "loopback"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Millist alglaadurit soovite kasutada?"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Kiirpaigaldusflopi"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Kas otsida modemit?"
-
-#~ msgid "Configure an ISDN connection"
-#~ msgstr "Seadista ISDN ühendus"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Keela ühendus Internetti"
-
-#~ msgid "Configure local network"
-#~ msgstr "Kohtvőrgu seadistamine"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Seadista internetiühendus / Seadista kohtvőrk"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ "Kohtvőrk on juba seadistatud.\n"
-#~ "Kas soovite:"
-
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Seadistan uuesti abimehega..."
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Graafikaprogrammid"
-
-#~ msgid "Sciences"
-#~ msgstr "Teadused"
-
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ "Jututamise (IRC vői IM) programmid xchat, licq, gaim ja failiülekande "
-#~ "vahendid"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Suhtlemisvahendid"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Interneti värgid"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Andmebaasiserveri ja -kliendid (mysql ja postgresql)"
-
-#~ msgid "Development C/C++"
-#~ msgstr "C/C++ arendus"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Ajavöötme määramine"
-
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Esimene vőrguliides (eth0)"
-
-#~ msgid "isdn_internal"
-#~ msgstr "isdn_internal"
-
-#~ msgid "ippp0"
-#~ msgstr "ippp0"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(vőib tekitada andmete hävimist)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Lülita Num Lock käivitamisel sisse"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Salasőna uuesti"
-
-#~ msgid "default"
-#~ msgstr "tavaline"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "Milline on Teie süsteemi kasutusala?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Valige paigalduse maht"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Kasuta diskdrake-i"
-
-#~ msgid "Customized"
-#~ msgstr "Isetehtud"
-
-#~ 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 ""
-#~ "Olete ikka kindlasti ekspert? \n"
-#~ "Hei, ilma naljata, eksperdi valikud on laiemad kuid sellevőrra "
-#~ "ohtlikumad.\n"
-#~ "\n"
-#~ "Teilt küsitakse küsimusi näiteks 'paroolifaili varjutamise' jms kohta,\n"
-#~ "olete Te selleks valmis?"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Kasuta varjutatud paroolifaili"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Kasuta parooli kaitsmiseks MD5 algoritmi"
-
-#~ msgid "Search"
-#~ msgstr "Otsi"
-
-#~ msgid "Package"
-#~ msgstr "Pakett"
-
-#~ msgid "Tree"
-#~ msgstr "Puu"
-
-#~ msgid "Sort by"
-#~ msgstr "Sortimine"
-
-#~ msgid "Category"
-#~ msgstr "Kategoori"
-
-#~ msgid "Installed packages"
-#~ msgstr "Installitud paketid"
-
-#~ msgid "Available packages"
-#~ msgstr "Kättesaadavad paketid"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Näita ainult üksikuid"
-
-#~ msgid "Expand all"
-#~ msgstr "Ava kőik"
-
-#~ msgid "Collapse all"
-#~ msgstr "Sule kőik"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Lisa pakettide asukoht"
-
-#~ msgid "Update location"
-#~ msgstr "Uuenda asukoht"
-
-#~ msgid "Find Package"
-#~ msgstr "Leia pakett"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Leia pakett faili järgi"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Installitud/Saadaval"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Kontrollin sőltuvusi"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Eemaldatakse järgmised paketid"
-
-#~ msgid "Regexp"
-#~ msgstr "Regulaaravaldis"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Milline pakett vajab ressurssi"
-
-#~ msgid "No match"
-#~ msgstr "Ei leitud sobivat"
-
-#~ msgid "No more match"
-#~ msgstr "Ei leitud enam sobivaid"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake on hetkel \"säästuresiimil\".\n"
-#~ "Failide otsimiseks käivitan rpmdrake uuesti"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Millist faili Te otsite?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Mida Te otsite?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Andke nimi (nagu: 'extra, 'commercial')"
-
-#~ msgid "Directory"
-#~ msgstr "Kataloog"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "CD-d ei leitud (vähemalt mitte /mnt/cdrom all)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL kataloogile, kus paiknevad RPM-id"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "FTP ja HTTP jaoks on vaja ka hdlist-i asukohta\n"
-#~ "See peab olema antud eelmise URLi suhtes"
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Palun järgmist informatsiooni"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s on juba kasutusel"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Uuendan RPM andmebaasi"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Eemaldan kirje %s"
-
-#~ msgid "Finding leaves"
-#~ msgstr "Leian ülejäägid"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Ülejääkide leidmine vőtab veidi aega"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Leitud ISDN kaart:\n"
-
-#~ msgid "Other countries"
-#~ msgstr "Muud maad"
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "Millisel maal Te praegu olete ?"
-
-#~ 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 "Kui teil on Alcatel-i modem, valige Alcatel. Muidu aga ECI"
-
-#~ msgid "don't use pppoe"
-#~ msgstr "ära kasuta pppoe-d"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (tähtis)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (väga kena)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (kena)"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "Millisesse seerialporti on Teie hiir ühendatud?"
-
-#~ msgid "Czech"
-#~ msgstr "T¨ehhi"
-
-#~ msgid "Slovakian"
-#~ msgstr "Slovaki"
-
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "Ei saa installida 'ipchains' paketti urpmi abil."
-
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "Ei saa installida DHCP paketti urpmi abil."
-
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "Ei saa installida linuxconf-i urpmi abil."
-
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "Ei saa installida 'bind' paketti urpmi abil."
-
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr "Ei saa installida nimeserveri vahendajat urpmi abil."
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Seadista kohtvőrk uuesti"
-
-#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Teie arvutit saab seadistada internetiühenduse jagajana.\n"
-#~ "\n"
-
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "Kőik sai seadistatud.\n"
-
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Kasuta Interneti jaoks tavamodemit"
-
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Kasuta Interneti jaoks ISDN modemit"
-
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Kasuta Interneti jaoks DSL (vői ADSL) modemit"
-
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Kasuta Interneti jaoks DOC kaablimodemit"
-
-#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "Mittekasutamise aeg, mille jooksul ühendus\n"
-#~ "katkestatakse. (vaikimisi ei katkestata)"
-
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Saksa (1TR6)"
-
-#~ msgid "What do you wish to do?"
-#~ msgstr "Mida Te soovite teha?"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Installi/Taasta"
-
-#~ msgid "Rescue"
-#~ msgstr "Taasta"
-
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Mis tüüpi partitsiooni soovite?"
-
-#~ 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 Mandrake Linux "
-#~ "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"
-#~ msgstr ""
-#~ "Valige \"Installimine\" kui varem sellele masinale GNU/Linuxit ei ole "
-#~ "pandud\n"
-#~ "vői soovite kasutada mitut distributsiooni\n"
-#~ "\n"
-#~ "Valige \"Taastamine\" kui soovite taastada mőnd eelmist Mandrake "
-#~ "Linuxit:\n"
-#~ "%s vői %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Valige:\n"
-#~ "\n"
-#~ " - Soovitatav: Te pole kunagi varem GNU/Linuxit installinud. \n"
-#~ "\n"
-#~ " - Isetehtud: Olete Linuxiga tuttav ja soovite süsteemi kohandada "
-#~ "vastavalt\n"
-#~ " Teie vajadustele. Järgmisena saate teha valikud sőltuvalt Teie "
-#~ "arvuti\n"
-#~ " edaspidisest kasutusalast.\n"
-#~ "\n"
-#~ " - Ekspert: Te tunnete end GNU/Linux keskkonnas vabalt ja soovite\n"
-#~ " süsteemi, mis sobiks nagu valatult Teie täpsete ootustega.\n"
-#~ " Aga palun, palun: ÄRGE VALIGE SEDA, KUI TE TÄPSELT EI TEA, MIDA "
-#~ "TEETE!\n"
-
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux 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"
-#~ "SEAL\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üüd peaksite valima partitsioon(id) Mandrake Linux installimiseks\n"
-#~ "kui need on juba varem kettale defineeritud. Kui Te varem ei ole oma\n"
-#~ "kővaketast Linuxi jaoks partitsioneerinud, saate seda järgmises etapis\n"
-#~ "teha. Partitsioneerimine tähendab füüsilise ketta jaotamist loogiliselt\n"
-#~ "eraldatud osadeks.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui ei tunne ennast sel alal kindlalt, valige \"Paiguta ise\", et\n"
-#~ "automaatselt luua Linuxile vajalikud partitsioonid.\n"
-#~ "Linuxi maailmas tähendab \"hda\" esimest, \"hdb\" teist IDE kővaketast,\n"
-#~ "\"sda\" esimest. \"sdb\" teist SCSI kővaketast jne. Partitsioneerimiseks\n"
-#~ "valige kettaseade lihtsalt sellel klikkides.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kaks tavalist partitsiooni on juurpartitsioon (/), kus asub "
-#~ "failisüsteemi\n"
-#~ "hierarhia algus ja /boot, mis sisaldab arvuti alglaadimiseks vajalikke "
-#~ "faile, sealhulgas Linuxi kernelit.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kuna partitsioneerimine ei ole pööratav protsess, vőib see tekitada\n"
-#~ "algajas kerget kőhedust. DiskDrake on selle teinud küll lihtsamaks,\n"
-#~ "aga kindlasti tuleks enne iga liigutust sügavalt järele mőtelda ja\n"
-#~ "soovitavalt ka dokumentatsiooniga tutvuda.\n"
-#~ "\n"
-#~ "Kőiki tegevusi saate teha ka ainult klaviatuuri kasutades: liikuge\n"
-#~ "partitsioonidel <TAB> ja üles-alla noolte abil. Partitsiooni valikul\n"
-#~ "\n"
-#~ "- Ctrl-C loob uue partitsiooni (valige selleks vaba kettaala)\n"
-#~ "- Ctrl-D kustutab partitsiooni\n"
-#~ "\n"
-#~ "- Ctrl-M seab ühenduspunkti\n"
-
-#~ 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 ""
-#~ "Kőik Teie poolt värskelt loodud partitsioonid tuleb kasutamiseks "
-#~ "vormindada\n"
-#~ "(luua failisüsteemid). Partitsiooni vormindamisel hävitatakse kőik "
-#~ "andmed,\n"
-#~ "mis seal iganes leiduvad. Pange tähele, et varem vormindatud ja "
-#~ "vajalikke\n"
-#~ "andmeid sisaldavaid partitsioone, tüüpiliselt /home ja /usr/local, ei "
-#~ "ole\n"
-#~ "mőistlik üle vormindada, vaid need vőib jätta nii nagu on."
-
-#~ 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üüd hakkan Teie valitud pakette installima. Selleks peaks kuluma\n"
-#~ "mőnikümmend minutit. Süsteemi uuendamisel kulub aega küll veidi rohkem,\n"
-#~ "sest siis tuleb enne olemasolevaid pakette analüüsida."
-
-#~ 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"
-#~ "\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"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Kui DrakX ei suutnud Teie hiirt tuvastada, vői soovite vaadata, mida\n"
-#~ "leiti, kuvatakse Teile ülalpool \"hiiretőugude\" nimekiri.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui olete valikuga nőus, minge lihtsalt vasakpoolses menüüs edasi.\n"
-#~ "Vastasel juhul valige hiire tüüp, mis Teie arvates kőige paremini Teie\n"
-#~ "hiirt iseloomustab\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui tegemist on seerialpordi hiirega, peate ütlema ka, mis porti ta on\n"
-#~ "ühendatud."
-
-#~ 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 Mandrake Linux 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 ""
-#~ "See sektsioon on pühendatud kohtvőrgu (LAN) vői sissehelistamisteenuse\n"
-#~ "(DialUp) sätete paikapanemisele.\n"
-#~ "\n"
-#~ "Kui vastate \"LAN\", siis proovitakse Teie arvutist leida vőrgukaarti.\n"
-#~ "Kui Teie vőrgukaart töötab PCI siinil, peaks ta olema leitav ja "
-#~ "kasutatav\n"
-#~ "automaatselt. ISA kaardi puhul, vőib automaatne otsing alt vedada ja Te\n"
-#~ "peate juhtprogrammi ise nimekirjast valima.\n"
-#~ "\n"
-#~ "\n"
-#~ "SCSI kaartide puhul peab juhtprogramm esmalt leidma SCSI liidese, "
-#~ "vastasel\n"
-#~ "juhul peate pöörduma kaardi müüja poole.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui installite Mandrake Linux süsteemi masinale, mis on osake juba "
-#~ "töötavast\n"
-#~ "kohtvőrgust, annab vőrgu haldaja Teile kogu vajaliku informatsiooni (IP-\n"
-#~ "aadressi, alamvőrgu maski ja masina nime). Kui seate üles oma privaatset\n"
-#~ "vőrku, peaksite ise valima aadressid \n"
-#~ "\n"
-#~ "Kui soovite Internetti kasutada modemi ja sissehelistamisteenuse kaudu,\n"
-#~ "valige \"DialUp\" ja DrakX proovib otsida Teie arvutist modemit. Kui\n"
-#~ "modemit ei leita, peate sisestama seerialpordi, kuhu kavatsete modemi\n"
-#~ "ühendada."
-
-#~ 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"
-#~ "\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"
-#~ "\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."
-#~ msgstr ""
-#~ "Linuxi all saate kasutada mitmesuguseid printereid. Igaüks neist nőuab\n"
-#~ "erinevaid sätteid töötamiseks. Siiski tasub tähele panna, et süsteem\n"
-#~ "kasutab nime 'lp' vaikimisi printeri jaoks; seega peab Teil üks \n"
-#~ "selliselt tähistatud, kuigi printeri(te)le vőib panna '|' märgiga "
-#~ "eraldatult\n"
-#~ "mitu nime. Kui eelistate \"tähendusega\" nimesid, pange nimeks\n"
-#~ "näiteks \"Minu printer|lp\" ja see saab olema Teie vaikimisi printer.\n"
-#~ "\n"
-#~ "Kui Teie printer on otse arvuti külge ühendatud, valige \"Kohalik printer"
-#~ "\".\n"
-#~ "Siis saate valida pordi kuhu see on ühendatud ja printerile vastava "
-#~ "filtri.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui soovite kasutada printerit, mis on ühendatud Un*x serveriga, peate\n"
-#~ "Valima \"lpd vőrguprinter\". Niisugusel juhul ei vaja Te kasutajatunnust\n"
-#~ "ega salasőna, vaid ainult serveri nime ja printimisjärje nime serveril.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui soovite kasutada SMB printserverit (st. printerit, mida jagab välja\n"
-#~ "Windows 9x/NT, peate ära näitama serveri SMB nime (mis ei pea olema sama\n"
-#~ "TCP/IP nimega) ja kindluse mőttes ka IP-aadressi. Loomulikult on vaja "
-#~ "teada\n"
-#~ "ka serveri poolt jagatava printeri nime ning kasutajatunnust, salasőna "
-#~ "ja\n"
-#~ "töögrupi nime. Sama, välja arvatud töögrupp, on vaja teada ka NetWare\n"
-#~ "printserveri kasutamise korral."
-
-#~ 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 ""
-#~ "On äärmiselt soovitatav vastata siin \"Jah\"! Näiteks, kui installite\n"
-#~ "samasse masinasse hiljem MS Windowsi, kirjutab see üle bootsektori.\n"
-#~ "Ilma alglaadimisflopita ei ole Teil siis enam vőimalik GNU/Linuxit\n"
-#~ "laadida."
-
-#~ msgid "Move your wheel!"
-#~ msgstr "Liigutage ratast!"
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Muutusi ei teinudki?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Mis tüüpi hiirt kasutate?"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "Väljapakutavad kuvatihedused"
-
-#~ 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 ""
-#~ "Et leida vőimalikke kuvatihedusi, testin erinevaid variante.\n"
-#~ "Ekraan Teie ees hakkab vilkuma...\n"
-#~ "Kui soovite, lülitage monitor välja. Kui valmis saan, kostab piiks"
-
-#~ 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?"
-#~ msgstr ""
-#~ "Me vőime proovida leida kuvatihedust, näiteks 800x600.\n"
-#~ "Siiski, vahel ajab see arvuti segadusse.\n"
-#~ "Soovite proovida?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "Sobivat olekut ei leitud\n"
-#~ "Proovige palun muud graafikakaarti vői monitori"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Automaatne kuvatiheduste otsing"
-
-#~ msgid "pump"
-#~ msgstr "pump"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "dhcp-client"
-#~ msgstr "dhcp-client"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB hiir"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB hiir (2 nuppu)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB hiir (3+ nuppu)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB hiir"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB hiir (2 nuppu)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB hiir (3+ nuppu)"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI Bus hiir"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft Bus hiir"
-
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech Bus hiir"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB hiir (3 vői enam nuppu)"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A vői kőrgem (seerial)"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (seerial)"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (seerial)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (seerial)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Lihtsalt hiir (seerial)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Microsofti ühilduv (seerial)"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Lihtsalt 3-nupuline hiir (seerial)"
-
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse (seerial)"
-
-#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to "
-#~ "internet."
-#~ msgstr "Internetiühenduse jaoks on vaja seadistada vőrguliides."
-
-#~ 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 ""
-#~ "Palun valige millist vőrguliidest soovite kasutada kohtvőrgu\n"
-#~ "jaoks.\n"
-#~ "Kui Te ei tea, valige eth0.\n"
-
-#~ msgid "nfs mount failed"
-#~ msgstr "NFS ühendamine ebaőnnestus"
-
-#~ msgid "Socket"
-#~ msgstr "Pistik"
-
-#~ 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 saab luua sättefailid nii XFree 3.3 kui ka XFree 4.0. \n"
-#~ "Vaikimisi kasutatakse 4.0, kui see toetab Teie riistvara\n"
-#~ "\n"
-#~ "Kas soovite jääda XFree versiooni 3.3 juurde?"
-
-#~ msgid "Cryptographic"
-#~ msgstr "Krüpto"
-
-#~ msgid "Configure LAN"
-#~ msgstr "Seadista X"
-
-#~ msgid "Do not set up networking"
-#~ msgstr "Ei seadista vőrku"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Kas soovite kasutada kohtvőrku?"
-
-#~ msgid "Show less"
-#~ msgstr "Näita vähem"
-
-#~ msgid "Show more"
-#~ msgstr "Näita rohkem"
-
-#~ msgid "Take over the hard drive"
-#~ msgstr "Kasuta kogu ketast"
-
-#~ msgid "URI for Local printer"
-#~ msgstr "Kohalik printer"
-
-#~ msgid "URI for Network printer"
-#~ msgstr "Vőrguliides"
-
-#~ msgid "Local Printer Device (URI)"
-#~ msgstr "Otse ühendatud printer"
-
-#~ msgid ""
-#~ "What URI device is your printer connected to\n"
-#~ "(nte that parallel:/dev/lp0 is equivalent to LPT1:)?"
-#~ msgstr ""
-#~ "Mis porti on Teie printer ühendatud? \n"
-#~ "(paneme tähele, et /dev/lp0 on sama mis LPT1:)?"
-
-#~ msgid "tie"
-#~ msgstr "pintsaklips"
-
-#~ msgid "brunette"
-#~ msgstr "brünett"
-
-#~ msgid "girl"
-#~ msgstr "neiu"
-
-#~ msgid "woman-blond"
-#~ msgstr "blondiin"
-
-#~ msgid "automagic"
-#~ msgstr "automaagiline"
-
-#~ msgid "Have you been provided with a hostname?"
-#~ msgstr "Anti Teile masinanimi"
-
-#~ msgid "Local Area Network specification"
-#~ msgstr "Kohtvőrgu seaded"
-
-#~ msgid "You may now decide which class C network to use.\n"
-#~ msgstr "Millist C-klassi vőrku soovite kasutada.\n"
-
-#~ msgid "Internet Connection Sharing - setup of %s"
-#~ msgstr "Internetiühenduse jagamine - liides %s"
-
-#~ msgid ""
-#~ "The following interface is about to be configured:\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Seatakse sätted järgmisele vőrguliidesele:\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-
-#
-#~ msgid "Everything configured!"
-#~ msgstr "Kőik seadistatud!"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Milline on Teie klaviatuuriasetus"
-
-#~ msgid ""
-#~ "\n"
-#~ "I recommend that you abort, and then launch this internet wizard after "
-#~ "installation.It will then be able to setup ISA or PCMCIA cards easier.\n"
-#~ "\n"
-#~ "But, if you know the irq, dma, io of your card, you can still configure "
-#~ "your card."
-#~ msgstr ""
-#~ "\n"
-#~ "Soovitan teil praegu katkestada ja käivitada vőrguühenduse abimees pärast "
-#~ "installimist uuesti. Siis on vőimalik Teie ISA vői PCMCIA kaarte lihtsam\n"
-#~ "seadistada\n"
-#~ "Muidugi, kui teil on teada oma kaardi IRQ, DMA ja IO, ei ole probleemi."
-
-#~ msgid "pptp alcatel"
-#~ msgstr "Paiguta ise"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Kas otsida PCMCIA kaarte?"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Kas otsida %s seadmeid?"
-
-#~ msgid "Small(%dMB)"
-#~ msgstr "Väike (%d MB)"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr "Kas soovite kasutada DialUp ühendust modemi kaudu?"
-
-#~ msgid "Do you want to configure a ISDN connection for your system?"
-#~ msgstr "Kas soovite kasutada ISDN ühendust?"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Kas otsida PCI seadmeid?"
-
-#~ msgid "Searching root partition."
-#~ msgstr "Otsin juurpartitsiooni.."
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr "%s: See ei ole juurpartitsioon, palun valige mőni muu."
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Millist partitsiooni soovite kasutada juurkataloogi jaoks?"
-
-#~ msgid "Autologin at startup"
-#~ msgstr "X stardib nüüd"
-
-#~ msgid "Autologin - Choose default user"
-#~ msgstr "Valige uus suurus"
-
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "Teil ei ole ühtki Windowsi partitsiooni!"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "Teil ei ole piisavalt ruumi Lnx4win jaoks"
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# 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 ""
-#~ "Tere tulemast! Laadimisel aitab Teid LILO!\n"
-#~ "\n"
-#~ "Valikud kuvab <Tab>.\n"
-#~ "\n"
-#~ "Valimiseks sisestage eelistatava nimi ja vajutage <Enter>\n"
-#~ "vaikimisi oodake %d sekundit.\n"
-
-# 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 ""
-#~ "Tere tulemast! Laadimisel aitab Teid SILO!\n"
-#~ "\n"
-#~ "Valikud kuvab <Tab>.\n"
-#~ "\n"
-#~ "Valimiseks sisestage eelistatava nimi ja vajutage <Enter>\n"
-#~ "vaikimisi oodake %d sekundit.\n"
-
-#~ msgid "SILO main options"
-#~ msgstr "SILO peasätted"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Praegu on SILO jaoks kirjeldatud alltoodud kirjed.\n"
-#~ "Te vőite neid lisada ning olemasolevaid muuta."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Selline tähis on juba kasutusel"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "SILO installimine ebaőnnestus. Tekkis järgnev viga:"
-
-#~ 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 proovib esmalt leida Teie süsteemist SCSI liideseid PCI siinil.\n"
-#~ "Kui neid leitakse, ja vastav juhtprogramm on teada, siis laetakse\n"
-#~ "see mällu automaatselt.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui Teie SCSI liides kasutab ISA siini vői kui DrakX ei tea,\n"
-#~ "millist juhtprogrammi kasutada vői Teil ei ole üldse SCSI liidest,\n"
-#~ "siis küsitakse Teilt selle kohta.\n"
-#~ "Kui Teil SCSI liidest tőesti ei ole, vastake \"Ei\". Kui Teil aga siiski\n"
-#~ "on, siis vastake \"Jah\". Seejärel lastakse Teil nimekirjast sobiv\n"
-#~ "juhtprogramm valida.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui olete juhtprogrammi välja valinud, on Teil vőimalus anda sellele\n"
-#~ "ka parameetreid. Siiski, enamasti läheb kőik kenasti ka ilma neid\n"
-#~ "sisestamata: vastavad andmed leiab juhtprogramm ise.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui automaatne parameetrite otsimine ei tööta, pöörduge palun\n"
-#~ "oma SCSI liidese dokumentatsiooni poole. Ka samas masinas olev Windows\n"
-#~ "oskab vahel SCSI kohta vajalikku informatsiooni anda."
-
-#~ msgid "Shutting down"
-#~ msgstr "Sulgemine"
-
-#~ msgid "useless"
-#~ msgstr "kasutu"
-
-#~ 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."
-#~ msgstr ""
-#~ "Teie arvutist mőned hulk Windowsi TrueType fondid.\n"
-#~ "Soovite Te neid ka Linuxis kasutada (eeldusel, et Teil on need legaalsed)?"
-
-#~ 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 ""
-#~ "Valige \"Installimine\" kui varem sellele masinale Linuxit ei ole pandud\n"
-#~ "vői soovite kasutada mitut distributsiooni\n"
-#~ "\n"
-#~ "\n"
-#~ "Valige \"Uuendamine\" kui soovite uuendada mőnd eelmist Mandrake "
-#~ "Linuxit:\n"
-#~ "5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios),\n"
-#~ "Gold 2000 vői 7.0 (Air)."
-
-#~ msgid "Creating and formatting loopback file %s"
-#~ msgstr "Loon ja vormindan loopback faili %s"
-
-#~ msgid "Do you want to use LILO?"
-#~ msgstr "Soovite LILO-t kasutada?"
-
-#~ 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üüd vőite valida paketigrupi, mida soovite installida vői uuendada.\n"
-#~ "Soovi korral saate valida pakette ka lisaks vastavalt oma äranägemisele\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui olete valinud paigaldusviisi \"Ekspert\", saate pakette ükshaaval\n"
-#~ "Tähelepanu! Mőned paketid vőivad nőuda, et oleks installitud ka mőned\n"
-#~ "teised. Neid nimetatakse paketi sőltuvusteks. Paketi valimisel valitakse\n"
-#~ "automaatselt ka kőik tema sőltuvused. Paketi installimine ilma kőiki\n"
-#~ "sőltuvusi rahuldamata, on vőimatu."
-
-#~ 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) oskab laadida erinevaid Teie arvuti leiduvaid\n"
-#~ "operatsioonisüsteeme. Tavaliselt tuvastatakse need installimise käigus.\n"
-#~ "Kui Te ei näe neid tuvastatuna, saate need nüüd lisada.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kui Te ei soovi mőnd neist laadida, vőite selle kohe eemaldada. Sellisel\n"
-#~ "juhul vajate selle laadimiseks vastavat alglaadimisflopit."
-
-#~ msgid "Choose other CD to install"
-#~ msgstr "Pakettide valik"
-
-#~ 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 ""
-#~ "Valige:\n"
-#~ "\n"
-#~ " - Soovitatav: Te pole kunagi varem Linuxit installinud.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Oma segu: Olete Linuxiga tuttav ja soovite süsteemi kohandada "
-#~ "vastavalt\n"
-#~ "Teie vajadustele. Järgmisena saate teha valikud \"Tööjaam\", \"Arendus\"\n"
-#~ "ja \"Server\", sőltuvalt Teie arvuti edaspidisest kasutusalast.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ekspert: Te tunnete end GNU/Linux keskkonnas vabalt ja soovite\n"
-#~ "süsteemi, mis sobiks nagu valatult Teie täpsete ootustege."
-
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "Laadime krüptopakette"
-
-#~ msgid "Setup SCSI"
-#~ msgstr "SCSI seadistamine"
-
-#~ msgid "Local LAN"
-#~ msgstr "LAN"
-
-#~ msgid "developer"
-#~ msgstr "arendaja"
-
-#~ msgid "beginner"
-#~ msgstr "algaja"
-
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "lineaarne (vajalik mőnedel SCSI ketastel)"
-
-#~ msgid "linear"
-#~ msgstr "linearne"
-
-#~ msgid "After %s partition %s,"
-#~ msgstr "Pärast %s partitsioneeri %s,"
-
-#~ msgid "changing type of"
-#~ msgstr "tüübi muutmine"
-
-#~ msgid "resizing"
-#~ msgstr "suuruse muutumine"
-
-#~ msgid "Size: %s MB"
-#~ msgstr "Suurus: %s MB"
-
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "Loetamatu kickstart fail %s (%s viga)"
-
-#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
-#~ msgstr "Valitud on liiga palju pakette: %dMB ei mahu %dMB-le"
-
-#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr "Paigalduseks valitud %d MB. Vőite veel programme juurde valida"
-
-#~ msgid "Enter a floppy (all data will be lost)"
-#~ msgstr "Pange tühi flopi masinasse (andmed sellel hävivad)"
-
-#~ msgid "Password:"
-#~ msgstr "Salasőna:"
-
-#~ msgid "User name:"
-#~ msgstr "Kasutajatunnus:"
-
-#~ msgid ""
-#~ "Failed to create an HTP boot floppy.\n"
-#~ "You may have to restart installation and give ``%s'' at the prompt"
-#~ msgstr ""
-#~ "HTP alglaadimisketta loomine ebaőnnestus.\n"
-#~ "Taasalustage installimist, andes parameetriks ``%s''"
-
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "Peate taasalustama installimist uute parameetritega"
-
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "Peate taasalustama installimist, laadides flopikettalt"
-
-#~ msgid ""
-#~ "Enter a floppy to create an HTP enabled boot\n"
-#~ "(all data on floppy will be lost)"
-#~ msgstr ""
-#~ "Sisesta flopi HTP alglaadimisketta loomiseks\n"
-#~ "(kőik andmed flopil hävivad)"
-
-#~ msgid "A entry %s already exists"
-#~ msgstr "Kirje %s on juba olemas"
-
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Paigaldus vői uuendamine"
-
-#~ msgid "What usage do you want?"
-#~ msgstr "Mis kasutusala soovite?"
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
deleted file mode 100644
index 2baf3fd1e..000000000
--- a/perl-install/share/po/eu.po
+++ /dev/null
@@ -1,12369 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (c) 1999 MandrakeSoft
-# Joseba Bidaurrazaga van Dierdonck <jbv@euskalnet.net>, 1999-2001.
-# Ińigo Salvador Azurmendi <xalba@euskalnet.net>, 2001
-# Elhuyar, 2002
-# Lore Azkarate <lazkarate@uzei.com>, 2002
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 1999-12-20 11:28+0100\n"
-"Last-Translator: Josu Walińo <josu@elhuyar.com>\n"
-"Language-Team: Euskara <linux-eu@chanae.alphanet.ch>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Buru guztiak independenteki konfiguratu"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Erabili Xinerama hedapena"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfiguratu \"%s\" (%s) txartela soilik"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Buru anitzeko konfigurazioa"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Zure sistemak buru anitzeko konfigurazioa onartzen du.\n"
-"Zer egin nahi duzu?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Txartel grafikoa"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Hautatu txartel grafiko bat"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Aukeratu X zerbitzaria"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X zerbitzaria"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Aukeratu X kontrolatzailea"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X kontrolatzailea"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "XFree-ren zein konfigurazio izan nahi duzu?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Zure txartelak 3D hardware-azelerazioaren euskarria eduki dezake, baina "
-"XFree %s(r)ekin soilik.\n"
-"Zure txartelak XFree %s euskarria du, eta horrek euskarri hobea izan dezake "
-"2Dan."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-"Zure txartelak 3D hardware-azelerazioaren euskarria izan dezake XFree %s(r)"
-"ekin."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s 3D hardware-azelerazioarekin"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Zure txartelak 3D hardware-azelerazioaren euskarria izan dezake XFree %s(r)"
-"ekin,\n"
-"KONTUAN IZAN EUSKARRI ESPERIMENTALA DELA ETA ORDENAGAILUA BLOKEA DEZAKEELA."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s 3D hardware-azelerazio ESPERIMENTALAREKIN"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Zure txartelak 3D hardware-azelerazioaren euskarria izan dezake, baina XFree "
-"%s(r)ekin soilik,\n"
-"KONTUAN IZAN EUSKARRI ESPERIMENTALA DELA ETA ORDENAGAILUA BLOKEA DEZAKEELA."
-"Zure txartelak XFree %s euskarria du, eta horrek euskarri hobea izan dezake "
-"2Dan."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (instalazioaren bistaratze-kontrolatzailea)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfigurazioa"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Hautatu txartel grafikoaren memoria-tamaina"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Hautatu zerbitzariaren aukerak"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Aukeratu monitorea"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitorea"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Bi parametro kritikoak freskatze-maiztasun bertikala eta sinkronizazio-"
-"maiztasun\n"
-"horizontala dira. Lehenengoak pantaila osoa freskatzeko maiztasuna \n"
-"zehazten du eta bigarrenak, eskaneatze-lerroak bistaratzekoa.\n"
-"\n"
-"OSO GARRANTZITSUA da zure monitoreak onar dezakeena baino sinkronizazio-"
-"balio \n"
-" handiagoko monitorerik ez zehaztea: monitorea honda dezakezu.\n"
-" Zalantzarik baduzu, aukeratu ezarpen kontserbadore bat."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Freskatze-maiztasun horizontala"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Freskatze-maiztasun bertikala"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitorea konfiguratu gabe"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Txartel grafikoa oraindik konfiguratu gabe"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Bereizmenak oraindik aukeratu gabe"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Konfigurazioa probatu nahi duzu?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Kontuz: txartel grafiko hau probatzean ordenagailua blokea daiteke"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Konfigurazioaren proba"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"saiatu parametro batzuk aldatzen"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Errorea gertatu da:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d segundo barru irtengo da"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ezarpen hau zuzena da?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Errorea gertatu da, saiatu parametro batzuk aldatzen"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Bereizmena"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Aukeratu bereizmena eta kolorearen sakonera"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Txartel grafikoa: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 zerbitzaria: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Gehiago"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ados"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Aditu modua"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Erakutsi dena"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Bereizmenak"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Teklatu-diseinua: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Sagu-mota: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Sagu-gailua: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitorea: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitorearen SinkHoriz: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitorearen FreskBert: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Txartel grafikoa: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Txartel grafikoaren identifikazioa: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Memoria grafikoa: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Kolorearen sakonera: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Bereizmena: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 zerbitzaria: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 kontrolatzailea: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window konfigurazioa prestatzen"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Zer egin nahi duzu?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Aldatu monitorea"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Aldatu txartel grafikoa"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Aldatu zerbitzariaren aukerak"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Aldatu bereizmena"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Erakutsi informazioa"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Probatu berriro"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Irten"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Aldaketak mantendu?\n"
-"Hau da uneko konfigurazioa:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X abioan"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Ordenagailua abiatzean X automatikoki abiarazteko konfigura dezaket.\n"
-"Berrabiaraztean X hastea nahi duzu?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Hasi berriro saioa %s(e)n aldaketak aktibatzeko"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Amaitu saioa eta, ondoren, sakatu Ktrl-Alt-Atzera"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 kolore (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mila kolore (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mila kolore (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milioi kolore (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 mila milioi kolore (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB edo gehiago"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA estandarra 640x480 - 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 - 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 bateragarria, 1024x768 - 87 Hz gurutzelarkatua (ez 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 - 87 Hz gurutzelarkatua, 800x600 - 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA hedatua, 800x600 - 60 Hz, 640x480 - 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Gurutzelarkatu gabeko SVGA, 1024x768 - 60 Hz, 800x600 - 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Frekuentzia altuko SVGA, 1024x768 - 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "1280x1024 - 60 Hz egin dezakeen multifrekuentzia"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "1280x1024 - 74 Hz egin dezakeen multifrekuentzia"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "1280x1024 - 76 Hz egin dezakeen multifrekuentzia"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "1600x1200 - 70 Hz egin dezakeen monitorea"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "1600x1200 - 76 Hz egin dezakeen monitorea"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Arrankeko partizioaren lehen sektorea"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Unitateko lehen sektorea (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO instalazioa"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Non instalatu nahi duzu abioko kargatzailea?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/grub instalazioa"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO testu-menuarekin"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO menu grafikoarekin"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "DOS/Windows-etik abiarazi (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Abioko kargatzailearen aukera nagusiak"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Erabili beharreko abioko kargatzailea"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Abioko kargatzailearen instalazioa"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Abioko gailua"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ez du funtzionatzen BIOS zaharretan)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Trinkoa"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "trinkotu"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Bideo modua"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Imajina lehenetsia abiarazi arteko atzerapena"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Pasahitza"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Pasahitza (berriro)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Murriztu komando-lerroko aukerak"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "murriztu"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Garbitu /tmp abiatzen den bakoitzean"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Zehaztu RAM tamaina beharrezkoa bada (%d MB aurkituak)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Gaitu profil anitzak"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Eman ram-tamaina MBtan"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"``Murriztu komando-lerroko aukerak'' aukera ezin da erabili pasahitzik gabe"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Saiatu berriro"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Pasahitzak ez datoz bat"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Hasierako mezua"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Open Firmware-ren atzerapena"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Nukleoaren abioaren denbora-muga"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Gaitu CDtik abiaraztea?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Gaitu OF abiaraztea?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "SE lehenetsia?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"Partizio batean abioko kargatzailea instalatzea erabaki duzu.\n"
-"Horrek esan nahi du baduzula abioko kargatzaile bat abioko unitatean (adib.: "
-"System Commander).\n"
-"\n"
-"Zein da zure abioko unitatea?"
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Hauek dira sarrerak.\n"
-"Beste batzuk gehi ditzakezu edo lehendik daudenak aldatu."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Gehitu"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Eginda"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Aldatu"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Zer sarrera-mota gehitu nahi duzu?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Beste SE bat (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Beste SE bat (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Beste SE bat (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Imajina"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Erantsi"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Irakurri/idatzi"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Taula"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Ez-segurua"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Etiketa"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Lehenetsia"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd-tamaina"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "BideorikEz"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Kendu sarrera"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Ez da etiketa hutsik onartzen"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Nukleo-imajina bat zehaztu behar duzu"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Erroko partizio bat zehaztu behar duzu"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Etiketa hau jadanik erabili da"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s %s interfaze aurkitu dira"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Baduzu besterik?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Ba duzu %s interfazerik?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Ez"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Bai"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Ikus hardwarearen informazioa"
-
-# #this syntax doesn't work yet in perl :-(
-# #msgid "Installing driver for %s card %s"
-# #msgstr "%2$s %1$s txartelaren kontrolatzailea instalatzen"
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "%s %s txartelaren kontrolatzailea instalatzen"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(%s modulua)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Zein %s kontrolatzaile probatu behar dut?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Kasu batzuetan, %s kontrolatzaileak informazio gehigarria behar du egoki \n"
-"funtzionatzeko, nahiz eta normalki hori gabe ongi funtzionatzen duen. Aukera "
-"gehigarriak zehaztu \n"
-"nahi dituzu, edo kontrolatzaileari zure makina probatzen\n"
-"utzi, behar duen informazioa bilatzeko? Batzuetan, probatzeak ordenagailua "
-"blokeatuko du, baina\n"
-"horrek ez luke kalterik egin beharko."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Autoproba"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Zehaztu aukerak"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Orain %s moduluari bere aukerak eman dizkiozu.\n"
-"Ohartu helbiderean aurretik 0x aurrizkia jarri behar dela, adlib. '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Orain %s moduluari bere aukerak eman diezazkiokezu.\n"
-"Aukerak ``izena=balioa izena2=balioa2 ...'' formatuan daude.\n"
-"Adibidez, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modulu-aukerak:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Huts egin du %s modulua kargatzean.\n"
-"Beste parametro batzuekin saiatu nahi duzu berriro?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "X programen atzipena"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "rpm tresnen atzipena"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "onartu \"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "administrazio-fitxategien atzipena"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s jadanik gehituta)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Pasahitz hau sinpleegia da"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Eman erabiltzaile-izen bat"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Erabiltzaile-izenak minuskulaz idatzitako letrak, zenbakiak, `-' eta `_' "
-"soilik izan ditzake"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Erabiltzaile-izen hau gehituta dago jadanik"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Gehitu erabiltzailea"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Sartu erabiltzaile bat\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Onartu erabiltzailea"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Benetako izena"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Erabiltzaile-izena"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikonoa"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Automatikoki hasi saioa"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Ordenagailua konfigura dezaket automatikoki erabiltzaile bat sartzeko.\n"
-"Eginbide hau erabili nahi duzu?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Aukeratu erabiltzaile lehenetsia:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Aukeratu exekutatu beharreko leiho-kudeatzailea:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Aukeratu erabiltzeko hizkuntza bat."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr ""
-"Instalatu ondoren erabilgarri egongo diren beste hizkuntza batzuk aukera "
-"ditzakezu"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Denak"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Eman baimena erabiltzaile guztiei"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Pertsonalizatua"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Ez konpartitu"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "%s paketea instalatu egin behar da. Instalatu nahi duzu?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "NFS edo Samba erabiliz esporta dezakezu. Zein nahi duzu"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Derrigorrezko %s paketea falta da"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Utzi"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "Abiarazi userdrake"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"Erabiltzaileen araberako konpartitzeak \"fileshare\". \n"
-"taldea erabiltzen du. Userdrake erabil dezakezu talde \n"
-"honetan erabiltzeak gehitzeko."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Ongi etorri Crackers-era"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Txikia"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Estandarra"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Handia"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "Handiagoa"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoidea"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Maila hau kontuz erabili behar da. Sistema erabilerrazagoa izango da, baina\n"
-"oso erraz erasotzekoa: ez da erabili behar beste ordenagailu batzuekin edo \n"
-"Internetekin konektatuta dauden makinetan. Ez dago pasahitzik."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Pasahitzak gaituta daude orain, baina sareko ordenagailu gisa erabiltzea ez "
-"da komeni oraindik."
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Hau da Internetera bezero gisa konektatzeko erabiliko diren "
-"ordenagailuentzat gomendatzen den segurtasun estandarra. "
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Murriztapen batzuk daude, eta egiaztapen automatiko gehiago gauero egiten "
-"dira."
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Segurtasun-maila honekin, sistema hau erabil liteke zerbitzari gisa.\n"
-"Segurtasun hau nahikoa da sistema bezero askoren konexioak onartzen dituen \n"
-"zerbitzari gisa erabili ahal izateko. Oharra: zure makina Interneteko bezero "
-"soila bada, hobe duzu maila apalagoa."
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Aurreko mailan oinarritua, baina sistema erabat itxita dago.\n"
-"Segurtasun-eginbideak maximoan jarrita daude."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Aukeratu segurtasun-maila"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Segurtasun-maila"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Erabili libsafe zerbitzarietarako"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Buffer-gainezkatzeen eta formatu-kateen erasoen aurka defendatzen duen "
-"liburutegi bat."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Ongi etorri %s sistema eragilearen aukeratzailera!\n"
-"\n"
-"Aukeratu sistema eragile bat goiko zerrendan edo\n"
-"itxaron %d segundo lehenetsitako abiorako.\n"
-"\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Ongi etorri GRUB sistema eragilearen aukeratzailera!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Erabili %c eta %c teklak zein sarrera nabarmenduko den hautatzeko."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Sakatu sartu hautatutako SE abiarazteko, 'e' abiarazi aurreko"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "komandoak editatzeko, edo 'c' komando-lerroa nahi baduzu."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Nabarmendutako sarrera automatikoki abiaraziko da %d segundotan."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "ez dago nahiko leku /boot-en"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Mahaigaina"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Hasi menua"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Abioko kargatzailea ezin da %s partizio batean instalatu\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "oraindik ez da laguntzarik inplementatu.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Abioko estilo-konfigurazioa"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Fitxategia"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Fitxategia/I_rten"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "NewStyle kategorizatze-monitorea"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "NewStyle monitorea"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Monitore tradizionala"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Gtk+ monitore tradizionala"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Abiarazi Aurora abioan"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub modua"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot modua"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Orain %s erabiltzen ari zara Abioko Kudeatzaile gisa.\n"
-"Egin klik 'Konfiguratu'n instalazio-morroia abiarazteko."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Konfiguratu"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Sistema modua"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Abiarazi X-Window sistema hasieran"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Ez, ez dut saioa automatikoki hasi nahi"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Bai, automatikoki honekin hasi nahi dut (erabiltzailea, mahaigaina)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "Ados"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "ezin da ireki /etc/inittab irakurtzeko: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutu"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "minutu bat"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d segundo"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Ezin da pantaila-argazkirik egin partizioak egin aurretik"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-"%s(e)n instalazioa egindakoan pantaila-argazkiak erabilgarri egongo dira"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Frantzia"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "Belgika"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Txekiar errepublika"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Alemania"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Grezia"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Norvegia"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Suedia"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Herbehereak"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Italia"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Austria"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Estatu Batuak"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Egin zure datuen babeskopia lehendabizi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Irakurri arretaz"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Aboot erabiltzeko asmoa baduzu, utzi lekua (2048 sektore nahikoa da)\n"
-"diskoaren hasieran"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Errorea"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Morroia"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Aukeratu ekintza"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"FAT partizio handi bat duzu\n"
-"(normalean MicroSoft Dos/Windows-ek erabilia).\n"
-"Lehendabizi partizio horri tamaina aldatzea gomendatzen dizut\n"
-"(egin klik bertan, gero egin klik \"Aldatu tamaina\"n)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Egin klik partizio batean"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Xehetasunak"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Hutsik"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Bestelakoa"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Fitxategi-sistemen motak:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Sortu"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Mota"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Erabili ``%s'' horren ordez"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Ezabatu"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Erabili ``Desmuntatu'' lehendabizi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"%s partizio-mota aldatu ondoren, partizio honetako datu guztiak galdu egingo "
-"dira"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Aukeratu partizio bat"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Aukeratu beste partizio bat"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Irten"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Aldatu aditu modura"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Aldatu modu normalera"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Desegin"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Jarraitu hala ere?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Irten gorde gabe"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Irten partizio-taula idatzi gabe?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "/etc/fstab aldaketak gorde nahi dituzu?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Auto-esleitu"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Garbitu dena"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Disko gogorraren informazioa"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Lehen mailako partizio guztiak erabilita daude"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Ezin da partizio gehiago gehitu"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Partizio gehiago edukitzeko, ezabatu horietako bat partizio hedatu bat sortu "
-"ahal izateko"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Gorde partizio-taula"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Leheneratu partizio-taula"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Berreskuratu partizio-taula"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Birkargatu partizio-taula"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Euskarri aldagarrien automuntatzea"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Hautatu fitxategia"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Babeskopiako partizio-taulak ez du tamaina bera\n"
-"Jarraitu hala ere?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Kontuz"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Sartu diskete bat unitatean\n"
-"Disketeko datu guztiak galdu egingo dira"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Partizio-taula berreskuratzen saiatzen"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Informazio xehea"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Muntatze-puntua"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Aukerak"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Aldatu tamaina"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Lekuz aldatu"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formateatu"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Muntatu"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Gehitu RAIDi"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Gehitu LVMri"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Desmuntatu"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Kendu RAIDetik"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Kendu LVMtik"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Aldatu RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Erabili atzera-begiztarako"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Sortu partizio berria"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Hasierako sektorea: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Tamaina MBtan: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Fitxategi-sistemaren mota: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Muntatze-puntua: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Hobespena: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Atzera-begiztako fitxategia kendu?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Aldatu partizio-mota"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Zein fitxategi-sistema nahi duzu?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "ext2tik ext3ra aldatzen"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Non muntatu nahi duzu %s atzera-begiztako fitxategia?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Non muntatu nahi duzu %s gailua?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Ezin da muntatze-puntuaren ezarpena kendu, partizio hau atzera-begiztarako "
-"erabiltzen delako\n"
-"Kendu atzera-begizta lehendabizi"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "FAT fitxategi-sistemaren mugak kalkulatzen"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Tamaina aldatzen"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Partizio honi ezin zaio tamaina aldatu"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Partizio honetako datu guztiek babeskopia eduki beharko lukete"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"%s partizioa tamainaz aldatu ondoren, partizioko datu guztiak galdu egingo "
-"dira"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Aukeratu tamaina berria"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Tamaina berria MBtan: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Zein diskotara eraman nahi duzu?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektorea"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Zein sektoretara eraman nahi duzu?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Lekuz aldatzen"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Partizioa lekuz aldatzen..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Aukeratu lehendik dagoen RAID bat gehitzeko"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "berria"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Aukeratu lehendik dagoen LVM bat gehitzeko"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "LVM izena?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Partizio hau ezin da atzera-begiztarako erabili"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Atzera-begizta"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Atzera-begiztako fitxategi-izena: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Eman fitxategi-izen bat"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr ""
-"Fitxategi hau beste atzera-begizta batek erabiltzen du, aukeratu beste bat"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Fitxategia badago lehendik ere. Erabili?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Muntatze-aukerak"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Hainbat"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "gailua"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "maila"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "zatiaren tamaina"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Kontuz ibili: eragiketa hau arriskutsua da."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Nolako partizioa?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Ezin dut onartu /boot hain urrun sortzea unitatean (zilindroa > 1024).\n"
-"Edo LILO erabiltzen duzu eta ez du funtzionatuko, edo ez duzu LILO "
-"erabiltzen eta ez duzu /boot erabili beharrik"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Erro gisa gehitzeko hautatu duzun partizioa (/) fisikoki disko gogorraren\n"
-"1024. zilindroaz haratago dago, eta ez duzu /boot partiziorik.\n"
-"LILO abioko kudeatzailea erabiltzeko asmoa baduzu, ez ahaztu /boot partizioa "
-"gehitzea"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Softwareko RAID partizio bat hautatu duzu erro gisa (/).\n"
-"Ez dago abioko kargatzailerik hori /boot partiziorik gabe erabil "
-"dezakeenik.\n"
-"Beraz, kontuan izan /boot partizioa gehitu behar duzula"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "%s unitatearen partizio-taula diskoan idatziko da!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Berrabiarazi egin beharko duzu aldaketek eragina izan dezaten"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"%s partizioa formateatu ondoren, partizioko datu guztiak galdu egingo dira"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formateatzen"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "%s atzera-begiztako fitxategia formateatzen"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "%s partizioa formateatzen"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Ezkutatu fitxategiak"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Eraman fitxategiak partizio berrira"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-" %s direktorioak baditu datu batzuk\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Fitxategiak partizio berrira eramaten"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "%s kopiatzen"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "%s kentzen"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "%s partizioa %s da orain"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Gailua: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS unitate-letra: %s (uste hutsa)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Mota: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Izena: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Hasi: %s sektorea\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Tamaina: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektore"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "%d zilindrotik %d zilindrora\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formateatua\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Formateatu gabe\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Muntatuta\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Atzera-begiztako fitxategia(k):\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Lehenespenez abiarazteko partizioa\n"
-" (MS-DOS abiorako, ez lilo-rako)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "%s maila\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "%s zatiaren tamaina\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "%s RAID-diskoak\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Atzera-begiztako fitxategi-izena: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Partizio hau kontrolatzailearen \n"
-"partizioa izan daiteke, hobe duzu\n"
-"bere horretan uztea.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Bootstrap partizio berezi hau\n"
-"sistemaren abio bikoitza\n"
-"egiteko da.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Tamaina: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometria: %s zilindro, %s buru, %s sektore\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "%s LVM-diskoak\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Partizio-taularen mota: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr " - bus %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Aukerak: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Fitxategi-sistema enkriptatzeko gakoa"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Aukeratu fitxategi-sistema enkriptatzeko gakoa"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Enkriptatze-gako hau sinpleegia da (gutxienez %d karaktere izan behar ditu)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "Enkriptatze-gakoak ez datoz bat"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Enkriptatze-gakoa"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Enkriptatze-gakoa (berriro)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Aldatu mota"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Egin klik euskarri batean"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Bilatu zerbitzarietan"
-
-# #this syntax doesn't work yet in perl :-(
-# #msgid "%s formatting of %s failed"
-# #msgstr "%2$s(r)i %1$s formatua emateak huts egin du"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s %s(r)i formatua emateak huts egin du"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Ez dakit nola formateatu %s %s motan"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "%s partizioa %s direktorioan muntatzeak huts egin du"
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck-k huts egin du %d irteera-kodearekin edo %d seinalearekin"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "errorea %s desmuntatzean: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "sinplea"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "/usr-rekin"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "zerbitzaria"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Ezin da JFS erabili 16MB baino gutxiagoko partizioetarako"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Ezin da ReiserFS erabili 32MB baino gutxiagoko partizioetarako"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Muntatzen-puntuek / batez hasi behar dute"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Jadanik badago %s muntatze-puntua duen partizio bat\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Ezin da LVM bolumen logikoa erabili %s muntatze-punturako"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Direktorio honek erroko fitxategi-sisteman egon behar du"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Egiazko fitxategi-sistema (ext2, reiserfs) behar duzu muntatze-puntu "
-"honetarako\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Ezin da fitxategi-sistema enkriptatua erabili %s muntatze-punturako"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Ez dago nahikoa leku libre auto-esleitzeko"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Ez dago zer eginik"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Errorea %s idazteko irekitzean: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Errorea gertatu da - ez da fitxategi-sistema berriak sortzeko gailu "
-"baliozkorik aurkitu. Aztertu zure hardwarea arazo honen arrazoia bilatzeko"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Ez duzu partiziorik!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux erabiltzaile anitzeko sistema da, hau da, erabiltzaile bakoitzak\n"
-"bere hobespenak eta bere fitxategiak eduki ditzake. Gehiago jakiteko\n"
-"``Erabiltzailearen gida'' irakurri. Baina administratzailea den \"root\"-ak\n"
-"ez bezala, hemen gehitutako erabiltzaileek debekatuta izango dute ezer\n"
-"aldatzea euren fitxategiak eta konfigurazioa izan ezik. Zuretzat gutxienez\n"
-"ohiko erabiltzaile bat sortu beharko duzu. Eta kontu horretan hasi beharko\n"
-"zenuke eguneroko saioa. Eguneroko saioa \"root\" gisa hastea oso\n"
-"erabilgarria den arren, oso arriskutsua ere izan daiteke! Hutsegiterik\n"
-"txikienak sistemak gehiago ez funtzionatzea eragin lezake. Ohiko\n"
-"erabiltzaile gisa hutsegite larri bat egiten baduzu, informazioren bat gal\n"
-"dezakezu, baina ez sistema osoa.\n"
-"\n"
-"Lehendabizi, zure benetako izena sartu beharko duzu. Hori ez da\n"
-"derrigorrezkoa noski - berez nahi duzuna sar dezakezu. DrakXk gero zuk\n"
-"laukian sartutako lehen hitza hartu eta \"Erabiltzaile-izena\" delakora\n"
-"eramango du. Hori izango da erabiltzaile jakin horrek sisteman saioa\n"
-"hasteko erabiliko duen izena. Alda dezakezu. Gero pasahitz bat sartu\n"
-"beharko duzu hemen. Erabiltzaile ez-pribilegiatuaren (arruntaren) pasahitza\n"
-"ez da \"root\"-arena bezain funtsezkoa segurtasunaren aldetik, baina ez da\n"
-"horregatik arduragabekeriaz jokatu behar - izan ere, zure fitxategiak\n"
-"baitaude arriskuan.\n"
-"\n"
-"\"Onartu erabiltzailea\"n klik eginez gero, nahi adina gehi ditzakezu.\n"
-"Gehitu erabiltzaile bat zure lagun bakoitzeko: zure aita edo ahizpa,\n"
-"adibidez. Nahi dituzun erabiltzaile guztiak gehitu ondoren, hautatu\n"
-"\"Eginda\".\n"
-"\n"
-"\"Aurreratua\" botoian klik eginez, erabiltzaile horren \"shell\"-a alda\n"
-"dezakezu (bash lehenespenez)."
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Goiko zerrendan zure disko gogorrean detektatutako Linux partizioak daude.\n"
-"Morroiak egindako aukerak manten ditzakezu, egokiak dira instalazio \n"
-"ohikoenetarako. Aldaketarik egiten baduzu, gutxienez erroko partizio bat\n"
-"definitu behar duzu (\"/\"). Ez aukeratu partizio txikiegirik edo ezin "
-"izango duzu\n"
-"nahikoa software instalatu. Datuak beste partizio batean biltegiratu\n"
-"nahi badituzu, \"/home\"rako partizio bat ere sortu beharko duzu\n"
-"(Linux partizio bat baino gehiago baduzu soilik da posible).\n"
-"\n"
-"Partizio bakoitza honela zerrendatzen da: \"Izena\", \"Edukiera\".\n"
-"\n"
-"\"Izena\" honela egituratzen da: \"disko gogorraren mota\", \"disko "
-"gogorraren zenbakia\",\n"
-"\"partizio-zenbakia\" (adibidez, \"hda1\").\n"
-"\n"
-"\"Disko gogorraren mota\" \"hd\" da zure diskoa IDE disko gogorra bada eta\n"
-"\"sd\" SCSI disko gogorra bada.\n"
-"\n"
-"\"Disko gogorraren zenbakia\" beti \"hd\" edo \"sd\"ren ondoko letra bat "
-"izaten da. IDE\n"
-"disko gogorretan:\n"
-"\n"
-" * \"a\"k \"IDE kontroladore primarioko disko gogor nagusia \" esan nahi "
-"du,\n"
-"\n"
-" * \"b\"k \"IDE kontroladore primarioko mendeko disko gogorra\" esan nahi "
-"du,\n"
-"\n"
-" * \"c\"k \"IDE kontroladore sekundarioko disko gogor nagusia\" esan nahi "
-"du,\n"
-"\n"
-" * \"d\"k \"IDE kontroladore sekundarioko mendeko disko gogorra\" esan nahi "
-"du,\n"
-"\n"
-"\n"
-"SCSI disko gogorretan, \"a\" letrak \"SCSI ID baxuena\" esan nahi du, \"b"
-"\"letrak \"bigarren SCSI ID baxuena\", etab."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"Mandrake Linux instalazioa hainbat CD-ROMetan dago banatuta dago. DrakXk\n"
-"badaki hautatako pakete bat beste CD-ROM batean kokatuta dagoen edo ez, eta\n"
-"uneko CDa atera eta beste bat sartzeko eskatuko dizu behar ahala."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"Sisteman zein programa instalatu nahi dituzun zehazteko garaia da. Milaka\n"
-"pakete daude Mandrake Linux-entzat erabilgarri, eta ez duzu denak buruz\n"
-"jakin beharrik.\n"
-"\n"
-"CD-ROMetik instalazio estandarra egin behar baduzu, lehendabizi Orain\n"
-"dituzun CDak zehazteko eskatuko zaizu,(Aditu moduan soilik). Egiaztatu CDen\n"
-"etiketak eta nabarmendu instalaziorako erabilgarri dituzun CDei dagozkien\n"
-"laukiak. Sakatu \"Ados\" jarraitzeko prest zaudenean.\n"
-"\n"
-"Paketeak zure ordenagailuaren erabilera zehatz bati dagozkion Taldeetan\n"
-"ordenatzen dira. Taldeak berak lau sekziotan sailkatzen dira:\n"
-"\n"
-" * \"Lan-estazioa\": zure ordenagailua lan-estazio gisa erabiltzeko asmoa\n"
-"baduzu, hautatu talde bat edo gehiago.\n"
-"\n"
-" * \"Garapena\": ordenagailua programatzeko erabili behar baduzu, aukeratu\n"
-"nahi d(it)uzun taldea(k).\n"
-"\n"
-" * \"Zerbitzaria\": ordenagailua zerbitzari izateko erabili nahi baduzu,\n"
-"bertan instalatu nahi dituzun zerbitzurik ohikoenak hautatu ahal izango\n"
-"dituzu.\n"
-"\n"
-" * \"Ingurune grafikoa\": azkenik, hemen hautatuko duzu zure ingurune\n"
-"grafiko gogokoena. Gutxienez bat hautatu behar duzu, lan-estazio grafikoa\n"
-"eduki nahi baduzu!\n"
-"\n"
-"Saguaren kurtsorea talde-izen baten gainean mugituz, talde horri buruzko\n"
-"azalpen-testu labur bat bistaratuko da.\n"
-"\n"
-"\"Pakete indibidualen hautapena\" laukia hauta dezakezu. Lauki hori oso\n"
-"erabilgarri izango zaizu eskaintzen diren paketeak ezagutzen badituzu, edo\n"
-"instalatutako dena erabat kontrolatu nahi baduzu.\n"
-"\n"
-"Instalazioa \"Eguneratu\" moduan hasi baduzu, talde guztia desauta dezakezu\n"
-"beste paketerik instala ez dadin. Hori erabilgarria da lehendik dagoen\n"
-"sistema bat konpontzeko edo eguneratzeko."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Azkenik, pakete indibidualak hautatu ala ez aukeraren arabera, taldetan eta\n"
-"azpitaldetan sailkatutako pakete guztiak dituen zuhaitz bat aurkeztuko\n"
-"zaizu. Zuhaitza arakatzen duzun bitartean, talde osoak, azpitaldeak nahiz\n"
-"pakete indibidualak hautatu ahal izango dituzu.\n"
-"\n"
-"Pakete bat zuhaitzean hautatzen duzun bakoitzean, azalpen bat agertuko da\n"
-"eskuinean. Hautaketa amaitutakoan, egin klik \"Instalatu\" botoian, eta\n"
-"instalazio-prozesua abiaraziko du. Zure hardwarearen abiaduraren arabera\n"
-"eta instalatu behar diren paketeen kopuruaren arabera, denbora-tarte bat\n"
-"beharko da prozesua burutzeko. Erabat burutzeko denboraren estimazioa\n"
-"bistaratzen da pantailan, kafetxo bat hartzeko denbora nahikorik ote duzun\n"
-"jakin dezazun.\n"
-"\n"
-"!! Zerbitzari-pakete bat hautatu baduzu, nahita edo talde oso baten zati\n"
-"zelako, zerbitzari horiek benetan instalatu nahi dituzun berresteko\n"
-"eskatuko zaizu. Mandrake Linux-en barruan, instalatutako edozein zerbitzari\n"
-"lehenetsitako moduan hasieratzen da. Seguruak diren arren eta banaketa\n"
-"argitaratu zen unean arazorik sortu ez bazuten ere, gerta liteke\n"
-"segurtasun-hutsuneak aurkitzea Mandrake Linux-en bertsio hau bukatu\n"
-"ondoren. Zerbitzu jakin batek zer egin behar duen edo zergatik instalatzen\n"
-"den ez badakizu, hautatu \"Ez\". \"Bai\" sakatzean zerrendatutako\n"
-"zerbitzuak instalatuko dira, eta lehenespen gisa automatikoki abiaraziko\n"
-"dira. !!\n"
-"\n"
-"\"Mendekotasun automatikoak\" aukerak Abisua elkarrizketa-koadroa\n"
-"desgaitzen du instalatzaileak pakete bat hautatzen duen bakoitzean. Hori\n"
-"gertatzen da instalazioa ongi burutzeko behar den beste pakete batekiko\n"
-"mendekotasuna erabaki duelako.\n"
-"\n"
-"Zerrendaren beheko aldean dagoen disketearen ikono txikiak aurreko\n"
-"instalazio batean aukeratutako pakete-zerrenda kargatzea ahalbidetzen du.\n"
-"Ikono horretan klik egitean, beste instalazio baten bukaeran aurrez\n"
-"sortutako diskete bat sartzeko eskatuko zaizu. Ikus diskete hori sortzeko\n"
-"moduari buruzko azken urratsaren bigarren iradokizuna."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"Zure ordenagailua Internetera edo sare lokal batera konektatu nahi baduzu,\n"
-"egin aukera zuzena. Aktibatu zure gailua aukera zuzena hautatu aurretik\n"
-"DrakXk automatikoki detekta dezan.\n"
-"\n"
-"Mandrake Linux-ek instalazioa egitean Interneteko konexio bat konfiguratzea\n"
-"proposatzen du. Erabilgarri dauden konexioak: modem tradizionala, ISDN\n"
-"modema, ADSL konexioa, kable-modema, eta azkenik, LAN konexio soila\n"
-"(Ethernet).\n"
-"\n"
-"Hemen ez dugu konfigurazio bakoitza zehaztuko. Ziurtatu Interneteko\n"
-"zerbitzu-hornitzailearen edo sistema-administratzailearen parametro guztiak\n"
-"dituzula.\n"
-"\n"
-"Eskuliburuan Interneteko konexioei buruzko kapitulua kontsulta dezakezu\n"
-"konfigurazioaren xehetasunak ezagutzeko, edo bestela, sistema instalatu\n"
-"arte itxaron, eta zure konexioa konfiguratzeko bertan deskribatzen zaizun\n"
-"programa erabili.\n"
-"\n"
-"Sarea geroago, instalazioa egin ondoren, konfiguratu nahi baduzu, edo\n"
-"sare-konexioa konfiguratzen bukatu baduzu, sakatu \"Utzi\"."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Orain abiarazteko orduan zein zerbitzu abiaraztea nahi duzun aukera\n"
-"dezakezu.\n"
-"\n"
-"Hemen uneko instalazioarekin erabilgarri dauden zerbitzu guztiak ageri\n"
-"dira. Berrikusi arretaz eta kendu hautatze-marka abiaraztean beti behar ez\n"
-"direnei.\n"
-"\n"
-"Zerbitzu jakin bat hautatuz, zerbitzu horri buruzko azalpen-testu labur bat\n"
-"eskuratuko duzu. Hala ere, zerbitzu bat erabilgarria den ala ez ziur ez\n"
-"bazaude, seguruagoa da jokabide lehenetsia uztea.\n"
-"\n"
-"Etapa honetan, kontuz ibili zure ordenagailua zerbitzari gisa erabiltzeko\n"
-"asmoa baduzu: ziur aski ez duzu nahi izango behar ez duzun zerbitzurik\n"
-"abiaraztea. Gogoan izan zerbitzu batzuk arriskutsuak izan daitezkeela\n"
-"zerbitzari batean gaitzen badira. Oro har, benetan behar dituzun zerbitzuak\n"
-"soilik hautatu."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"GNU/Linux-ek GMT (Greenwich Mean Time) ordua erabiltzen du eta tokian\n"
-"tokiko ordura aldatzen du, hautatutako ordu-zonaren arabera. Desaktibatu\n"
-"nahi baduzu, desautatu \"Hardwarearen ordua GMTn ezarria\" eta hardwarearen\n"
-"ordua eta sistemaren ordua berdinak izango dira. Erosoa da makinan beste\n"
-"sistema eragile bat dagoenerako, esate baterako, Windows.\n"
-"\n"
-"\" Ordu-sinkronizazio automatikoa\" aukerak automatikoki doituko du "
-"erlojua \n"
-"Interneteko urruneko ordu-zerbitzari batekin konektatuz. Aukera ezazu\n"
-"zuregandik hurbil dagoen zerbitzari bat. Eginbide hau erabili ahal izateko \n"
-"Interneteko konexioa beharko duzu, noski. Zure makinan ordu-zerbitzari bat\n"
-"instalatuko du eta zure sare lokaleko beste makina batzuetatik ere erabili \n"
-"ahal izango duzu, nahi izanez gero."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X (X Window sistema) GNU/Linux-en interfaze grafikoaren bihotza da, eta\n"
-"Mandrake Linux-en dauden ingurune grafiko guztiak (KDE, Gnome, AfterStep,\n"
-"WindowMaker...) horren araberakoak dira. Atal honetan, DrakX X automatikoki\n"
-"konfiguratzen saiatuko da.\n"
-"\n"
-"Oso gutxitan huts egiten du, baldin eta hardwarea ez bada oso zaharra (edo\n"
-"oso berria). Ongi badoa, X automatikoki abiaraziko du ahalik eta\n"
-"bereizmenik onenarekin, monitorearen tamainaren arabera. Orduan leiho bat\n"
-"agertuko da eta ikus dezakezun galdetuko dizu.\n"
-"\n"
-"\"Aditu\" instalazio bat egiten ari bazara, X konfigurazioaren morroia\n"
-"sartuko duzu. Ikus eskuliburuan dagokion atala morroi honi buruzko\n"
-"informazio gehiago lortzeko.\n"
-"\n"
-"Menua ikus badezakezu eta \"Bai\" erantzun baduzu, DrakX hurrengo urratsera\n"
-"joango da. Mezua ikusi ezin baduzu, konfigurazioa okerra dela esan nahi du\n"
-"horrek, eta proba automatikoki bukatuko da 10 segundo igarota; pantaila\n"
-"leheneratu egingo da."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"X konfigurazioa probatzen duzun lehen aldian, baliteke oso pozik ez\n"
-"geratzea ikusten denarekin (pantaila txikiegia, ezkerrera edo eskuinera\n"
-"mugitua...). Beraz, X zuzen abiarazten bada ere DrakXk gero konfigurazioa\n"
-"zuretzat egokia den galdetuko dizu. Aldatzea ere proposatuko dizu aurki\n"
-"ditzakeen baliozko moduen zerrenda bistaratuz eta bat hautatzeko eskatuz.\n"
-"\n"
-"Azken baliabide gisa, oraindik Xk funtzionatzea lortu ez baduzu, aukeratu\n"
-"\"Aldatu txartel grafikoak\", hautatu \"Zerrendatu gabeko txartela\", eta\n"
-"zein zerbitzari nahi duzun galdetzean, aukeratu \"FBDev\". Hau aukera\n"
-"segurua da, edozein txartel grafiko modernorekin funtzionatzen duena. Gero,\n"
-"aukeratu \"Probatu berriro\" ziur egoteko."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Azkenik, interfaze grafikoa abiaraztean ikusi nahi duzun galdetuko zaizu.\n"
-"Kontuan eduki galdera hori konfigurazioa ez probatzea aukeratu baduzu ere\n"
-"egingo zaizula. Jakina, \"Ez\" erantzun nahi izango duzu zure ordenagailuak\n"
-"zerbitzari gisa jokatu behar badu, edo bistaratzea konfiguratuta edukitzea\n"
-"lortzen ez baduzu."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"Mandrake Linux-en CD-ROMak Berreskuratu modu inkorporatua dauka. Hiru\n"
-"modutan eskura dezakezu: CD-ROMetik abiaraziz, abioan >>F1<< tekla sakatuz\n"
-"eta, gonbitean, >>berreskuratu<< idatziz. Baina zure ordenagailua\n"
-"CD-ROMetik abiarazi ezin bada, urrats hau erabili beharko zenuke bi egoera\n"
-"hauetan gutxienez:\n"
-"\n"
-" * abioko kargatzailea instalatzean, DrakXk zure disko nagusiko abioko\n"
-"sektorea berridatziko du (MBR) (baldin eta ez bazara beste abioko\n"
-"kudeatzaile bat erabiltzen ari), beraz Windows-ekin nahiz GNU/Linux-ekin\n"
-"(zure sisteman Windows baduzu) has zaitezke. Windows atzera berriz\n"
-"instalatu behar baduzu, Microsoft-en instalazio-prozesuak abioko sektorean\n"
-"gainidatziko du eta ezin izango duzu GNU/Linux abiarazi!\n"
-"\n"
-" * arazoren bat sortzen bada eta GNU/Linux disko gogorretik abiarazi ezin\n"
-"baduzu, diskete hau izango da GNU/Linux abiarazteko bide bakarra. Sistema\n"
-"leheneratzeko makina bat sistema-tresna ditu, eta oso erabilgarria da\n"
-"sistemak huts egiten duenean, argindarra joan delako, idazketa-akats bat\n"
-"egin delako, pasahitzean akats tipografiko bat egin delako edo beste\n"
-"zerbait gertatu delako.\n"
-"\n"
-"Urrats honetan klik egitean, unitatean disko bat sartzeko eskatuko zaizu.\n"
-"Sartzen duzun disketeak hutsik egon behar du, edo behar ez dituzun datuak\n"
-"eduki behar ditu. Ez duzu formateatu beharrik DrakXk disko osoa\n"
-"berridatziko baitu."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Hona iritsita, Mandrake Linux sistema eragilea disko gogorrean non\n"
-"instalatu aukeratu beharko duzu. Disko gogorra hutsik badago edo lehendik\n"
-"dagoen sistema eragile batek leku erabilgarri guztia betetzen badu,\n"
-"partizioa egin beharko duzu. Funtsean, disko gogorrean partizioa egitea\n"
-"diskoa logikoki zatitzea da, Mandrake Linux sistema berria instalatzeko\n"
-"lekua sortzeko.\n"
-"\n"
-"Partizio-prozesuaren ondorioak itzulbiderik gabekoak izan ohi direnez,\n"
-"partizioa egitea korapilatsua eta deserosoa izan daiteke esperientziarik\n"
-"gabeko erabiltzailea bazara. Zorionez, badago prozesu hau errazten duen\n"
-"morroi bat. Hasi baino lehen, kontsultatu eskuliburua eta hartu behar duzun\n"
-"denbora.\n"
-"\n"
-"Instalazioa Aditu moduan exekutatzen baduzu, Mandrake Linux-en\n"
-"partizio-tresna den DiskDrake sartuko duzu, partizioak doitzea ahalbidetuko\n"
-"baitizu. Ikusi eskuliburuko DiskDrake-ren atala. Instalazioaren\n"
-"interfazetik, morroiak hemen deskribatu bezala erabil ditzakezu,\n"
-"elkarrizketako \"Morroia\" botoian klik eginez.\n"
-"\n"
-"Partizioak jadanik definitu badira, lehendik dagoen instalazio batetik\n"
-"nahiz beste partizio-tresna batetik, hautatu zure Linux sistema\n"
-"instalatzekoak.\n"
-"\n"
-"Partizioak definitu ez badira, morroia erabiliz sortu beharko dituzu. Disko\n"
-"gogorraren konfigurazioaren arabera, hainbat aukera daude erabilgarri:\n"
-"\n"
-" * \"Leku librea erabili\": aukera honek unitate huts(ar)en partizio\n"
-"automatikoa ekarriko du. Ez zaizu beste galderarik egingo.\n"
-"\n"
-" * \"Lehendik dagoen partizioa erabili\": morroiak lehendik dagoen Linux\n"
-"partizio bat edo gehiago detektatu du disko gogorrean. Erabili nahi\n"
-"badituzu, hautatu aukera hau.\n"
-"\n"
-" * \"Erabili Windows-en partizio leku librea \": zure disko gogorrean\n"
-"Microsoft Windows instalatuta badago eta bertako leku erabilgarri guztia\n"
-"betetzen badu, lekua libratu beharko duzu Linux-en datuentzat. Horretarako,\n"
-"Microsoft Windows-en partizioa eta datuak ezaba ditzakezu (ikus \"Ezabatu\n"
-"disko osoa\" edo \"Aditu modua\"ren irtenbideak) edo Microsoft Windows-en\n"
-"partizioaren tamaina aldatu. Tamaina-aldaketa daturik galdu gabe egin\n"
-"daiteke. Irtenbide hau da gomendagarriena zure ordenagailuan Mandrake Linux\n"
-"eta Microsoft Windows erabili nahi badituzu.\n"
-"\n"
-" Aukera hau egin baino lehen, kontuan eduki prozedura honen ondoren\n"
-"Microsoft Windows-en partizioa orain baino txikiagoa izango dela. Leku\n"
-"gutxiago izango duzu, beraz, Microsoft Windows-eko datuak gordetzeko edo\n"
-"software berria instalatzeko.\n"
-"\n"
-" * \"Ezabatu disko osoa\": disko gogorreko datu eta partizio guztiak "
-"ezabatu\n"
-"eta Mandrake Linux sistema berriaz ordeztu nahi badituzu, aukeratu hau.\n"
-"Kontuz ibili irtenbide honekin, ezin izango baituzu aukeran atzera egin\n"
-"berretsi ondoren.\n"
-"\n"
-" !! Aukera hau egiten baduzu, diskoko datu guztiak galdu egingo dira. !!\n"
-"\n"
-" * \"Kendu leihoak\": honek unitateko guztia ezabatuko du eta berriro "
-"hasiko\n"
-"da, denean hasieratik partizioa eginez. Diskoko datu Guztiak galdu egingo\n"
-"dira.\n"
-"\n"
-" !! Aukera hau egiten baduzu, diskoko datu guztiak galduko dira. !!\n"
-"\n"
-" * \"Aditu modua\": hautatu aukera hau zure disko gogorrean partizioa eskuz\n"
-"egin nahi baduzu. Kontuz - aukera ahaltsua, baina arriskutsua da. Datu\n"
-"guztiak oso erraz gal ditzakezu. Beraz, ez aukeratu hau baldin eta ez\n"
-"badakizu zer egiten ari zaren."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"Hortxe duzu. Instalazioa burutu da eta zure GNU/Linux sistema prest duzu\n"
-"erabiltzeko. Sakatu \"Ados\" sistema berrabiarazteko. GNU/Linux edo Windows\n"
-"abiaraz dezakezu, nahiago duzuna (abio bikoitza eginez gero), ordenagailua\n"
-"berrabiarazi bezain laster.\n"
-"\n"
-"\"Aurreratua\" botoiak (Aditu moduan bakarrik) beste bi botoi erakutsiko\n"
-"ditu:\n"
-"\n"
-" * \"auto-instalazioko disketea sortu\": eragile baten laguntzarik gabe\n"
-"oraintsu konfiguratu duzun instalazioaren moduko beste bat automatikoki\n"
-"burutuko duen instalazio-disketea sortzeko.\n"
-"\n"
-" Kontuan eduki beste bi aukera daudela erabilgarri botoian klik egitean:\n"
-"\n"
-" * \"Errepikatu\". Hau partzialki automatizatutako instalazioa da,\n"
-"partizio-urratsa (eta hau soilik) interaktibo geratzen denean.\n"
-"\n"
-" * \"Automatizatua\". Erabat automatizatutako instalazioa: disko gogorra\n"
-"erabat berridazten da, eta datu guztiak galdu egingo dira.\n"
-"\n"
-" Eginbide hau oso praktikoa da antzeko ordenagailu asko instalatzean. "
-"Ikus\n"
-"Auto instalazioa atala gure web gunean.\n"
-"\n"
-" * \"Gorde pakete-hautapena\"(*) : paketeen hautapena lehen bezala "
-"gordetzen\n"
-"du. Gero, beste instalazio bat egitean, sartu disketea kontrolatzailean eta\n"
-"exekutatu instalazioa [F1] tekla sakatuz eta >>linux defcfg=\"floppy\"<<\n"
-"bidaliz, laguntza- pantailara joanez.\n"
-"\n"
-"(*) FAT formatudun disketea behar duzu (GNU/Linux-en bat sortzeko, idatzi\n"
-"\"mformat a:\")"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Berriki definitutako edozein partizio bere erabilerarako formateatu behar\n"
-"da (formatua emateak fitxategi-sistema sortzea esan nahi du).\n"
-"\n"
-"Une honetan, baliteke lehendik dauden partizio batzuei berriro formatua\n"
-"eman nahi izatea dauzkaten datuak ezabatzeko. Hori egin nahi baduzu,\n"
-"partizio horiek ere hautatu.\n"
-"\n"
-"Kontuan hartu ez dela beharrezkoa lehendik dauden partizioei formatua\n"
-"ematea. Sistema eragilea daukaten partizioei eman behar diezu formatua\n"
-"(esaterako \"/\", \"/usr\" edo \"/var\"), baina ez mantendu nahi dituzun\n"
-"datuak dituztenei (normalki, \"/home\").\n"
-"\n"
-"Kontuz ibili partizioak hautatzean. Formateatu ondoren, hautatutako\n"
-"partizioetako datu guztiak ezabatu egingo dira eta ezin izango duzu bat ere\n"
-"berreskuratu.\n"
-"\n"
-"Sakatu \"Ados\" partizioak formateatzeko prest zaudenean.\n"
-"\n"
-"Sakatu \"Utzi\" Mandrake Linux sistema eragile berriaren instalaziorako\n"
-"beste partizio bat aukeratu nahi baduzu.\n"
-"\n"
-"Sakatu \"Aurreratua\" diskoko bloke okerretarako egiaztatuko diren\n"
-"partizioak hautatzeko."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Mandrake Linux sistema eragile berria instalatzen ari zara orain. Zenbat\n"
-"pakete instalatu nahi dituzun eta zure ordenagailuak zein abiadura duen,\n"
-"eragiketa honek minutu batzuk edo denbora-tarte handi samarra beharko\n"
-"izango du.\n"
-"\n"
-"Pazientzia izan."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-"Mandrake Linux instalatzen duzunean, litekeena da pakete batzuk aldatu\n"
-"izana hasierako argitalpenetik. Beharbada akats batzuk konponduko ziren, \n"
-"eta segurtasun-arazoak gaindituko ziren. Eguneratzeez baliatu ahal izan\n"
-"zaitezen, Internetik deskargatzea gomendatzen dizugu.\n"
-"AUkeratu \"Bai\" Interneteko konexioa martxan badaukazu, edo \"Ez\" pakete\n"
-"eguneratuak geroago instalatu nahi badituzu.\n"
-"\n"
-"\"Bai\" aukeratzen baduzu, eguneratzeak eskaintzen dituzten lekuen "
-"zerrenda \n"
-"azalduko da. Aukeratu zuregandik hurbilen dagoena. Paketeak hautatzeko \n"
-"zuhaitza agertuko da orduan: egin hautapena eta sakatu \"Instalatu\" "
-"hautatutako \n"
-"paketek hartu eta instalatzeko, edo \"Utzi\" abortatzeko."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Aurrera jarraitu baino lehen lizentziaren baldintzak arretaz irakurri.\n"
-"Mandrake Linux banaketa osoari dagozkio eta baldintza guztiekin ados ez\n"
-"bazaude, egin klik \"Ezetsi\" botoian; horrela berehala amaituko da\n"
-"instalazioa. Instalazioarekin aurrera jarraitzeko, egin klik \"Ados\"\n"
-"botoian."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"Honaino iritsita, ordenagailuarentzat nahi duzun segurtasun-maila\n"
-"aukeratzeko garaia da. Oro har, zenbat eta babesgabeago egon eta zenbat eta\n"
-"funtsezko datu gehiago eduki biltegiratuta, orduan eta segurtasun-maila\n"
-"handiagoa behar da. Segurtasun-maila handiagoa, ordea, erabiltzeko\n"
-"erraztasunaren kalterako izan ohi da. Ikus ``Erreferentziazko\n"
-"eskuliburua''ren MSEC atala maila horien esanahiari buruzko informazio\n"
-"gehiago lortzeko.\n"
-"\n"
-"Zer aukeratu ez badakizu, eutsi aukera lehenetsiari."
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Orain, Mandrake Linux sistema instalatzeko zein partizio erabiliko \n"
-"d(ir)en aukeratu behar duzu. Partizioak jadanik definituta badaude, \n"
-"(GNU/Linux-en aurreko instalazio batek edo beste partizio-tresna batek "
-"definituta),\n"
-"lehendik dauden partizioak erabil ditzakezu. Bestela, disko gogorreko\n"
-"partizioak definitu behar dira.\n"
-"\n"
-"Partizioak sortzeko, lehendabizi disko gogor bat hautatu behar duzu. "
-"Partizioa egiteko\n"
-"diskoa hauta dezakezu, \"hda\" sakatuz lehen IDE unitaterako,\n"
-"\"hdb\" bigarrenerako, \"sda\" lehen SCSI unitaterako eta abar.\n"
-"\n"
-"Hautatutako disko gogorraren partizioa egiteko, aukera hauek erabil\n"
-"ditzakezu:\n"
-" * \"Dena garbitu\": aukera honek hautatutako disko gogorreko partizio "
-"guztiak \n"
-"ezabatzen ditu.\n"
-"\n"
-" * \"Auto-esleitu\": aukera honekin automatikoki sor ditzakezu Ext2 eta\n"
-"swap partizioak disko gogorreko leku librean.\n"
-"\n"
-" * \"Gehiago\": eginbide gehiagotarako aukera ematen du:\n"
-"\n"
-" * \"Gorde partizio-taula\": partizio-taula diskete batean gordetzen du. "
-"Baliagarria\n"
-"de geroago partizio-taula berreskuratzeko, behar izanez gero. Oso "
-"gomendagarria \n"
-"da urrats hau egitea.\n"
-"\n"
-" * \"Leheneratu partizio-taula\": lehen gordetako partizio-taula\n"
-"disketetik berreskuratzeko erabil daiteke.\n"
-"\n"
-" * \"Berreskuratu partizio-taula\": partizio-taula hondatuta badago, \n"
-"berreskuratzen saia zaitezke aukera honen bidez. Kontuz ibili eta gogoan \n"
-"izan huts egin dezakeela.\n"
-"\n"
-" * \"Birkargatu partizio-taula\": aldaketa guztiak desegin nahi badituzu "
-"eta \n"
-"hasierako partizio-taula kargatu nahi baduzu, aukera hau erabil dezakezu \n"
-"\n"
-" * \"euskarri aldagarriak automuntatzea\": aukera hau desgaitzen baduzu, "
-"euskarri \n"
-"aldagarriak (disketeak, CD-ROMak eta horrelakoak) eskuz muntatu eta \n"
-"desmuntatzera behartuko dituzu erabiltzaileak.\n"
-"\n"
-" * \"Morroia\": erabili aukera hau disko gogorreko partizioa egiteko "
-"morroia\n"
-"erabili nahi baduzu. Partizioak egiten ongi ez badakizu, morroia erabiltzea\n"
-"gomendatzen dizugu.\n"
-"\n"
-" * \"Desegin\": aukera hau aldaketak bertan behera uzteko erabil "
-"dezakezu.\n"
-"\n"
-" * \"Eginda\": disko gogorrean partizioak egiten bukatutakoan, aldaketak\n"
-"berriro diskoan gordeko ditu.\n"
-"\n"
-"Oharra: edozein aukera eskura dezakezu teklatuaren bidez. Partizio batetik \n"
-"bestera joateko, [Tab] eta [Gora/Behera] geziak erabil ditzakezu.\n"
-"\n"
-"Partizio bat hautatuta dagoenean, aukera hauek dituzu:\n"
-"\n"
-" * Ktrl-c beste partizio bat sortzeko (partizio huts bat hautatuta "
-"dagoenean);\n"
-"\n"
-" * Ktrl-d partizio bat ezabatzeko;\n"
-"\n"
-" * Ktrl-m muntatze-puntua ezartzeko.\n"
-"\n"
-"Erabil daitezkeen fitxategi-sistema desberdinei buruzko informazioa nahi \n"
-" baduzu, irakurri 'Erreferentzia-eskuliburu'ko ext2fs kapitulua.\n"
-"\n"
-"PPC makina batean instalatu behar baduzu, gutxienez 1 MBko HFS \"bootstrap"
-"\"\n"
-"partizio txiki bat sortu nahi izango duzu, yaboot abioko kargatzaileak\n"
-"erabiliko duena. Partizioa zertxobait handiagoa egitea hautatzen baduzu, "
-"adibidez 50 MBkoa, leku egokia izan daiteke ordezko nukleo bat eta ramdisk \n"
-"imajinak biltegiratzeko emergentziazko abioa egin ahal izateko."
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Microsoft Windows partizio bat baino gehiago detektatu da zure disko\n"
-"gogorrean. Aukeratu Mandrake Linux sistema eragile berria instalatzeko\n"
-"tamainaz aldatu nahi duzuna.\n"
-"\n"
-"Partizio bakoitza honela azaltzen da: \"Linux izena\", \"Windows izena\"\n"
-"\"Edukiera\".\n"
-"\n"
-"\"Linux izena\" honela egituratzen da: \"disko gogorraren mota\", \"disko \n"
-"gogorraren zenbakia\", \"partizio-zenbakia\" (adibidez, \"hda1\").\n"
-"\n"
-"\"Disko gogorraren mota\" \"hd\" da zure diskoa IDE disko gogorra bada eta\n"
-"\"sd\" SCSI disko gogorra bada.\n"
-"\n"
-"\"Disko gogorraren zenbakia\" beti \"hd\" edo \"sd\"ren ondoko letra bat \n"
-"izaten da. IDE disko gogorretan:\n"
-"\n"
-" * \"a\"k \"IDE kontroladore primarioko disko gogor nagusia\" esan nahi du,\n"
-"\n"
-" * \"b\"k \"IDE kontroladore primarioko mendeko disko gogorra\" esan nahi "
-"du,\n"
-"\n"
-" * \"c\"k \"IDE kontroladore sekundarioko disko gogor nagusia\" esan nahi "
-"du,\n"
-"\n"
-" * \"d\"k \"IDE kontroladore sekundarioko mendeko disko gogorra\" esan nahi "
-"du,\n"
-"\n"
-"SCSI disko gogorretan, \"a\" letrak \"SCSI ID baxuena\" esan nahi du, \"b\"\n"
-"letrak \"bigarren SCSI ID baxuena\", etab.\n"
-"\"Windows izena\" Windows-en dagoen disko gogorraren letra da (lehen\n"
-"diskoak edo partizioak \"C:\" du izena)."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Izan pazientzia. Eragiketa honek minutu batzuk beharko ditu."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"DrakXk lehenetsitako instalazioa (\"Gomendatua\") egin nahi duzun edo\n"
-"kontrol handiagoa eduki nahi duzun (\"Aditua\") jakin behar du orain.\n"
-"Gainera, instalazio berri bat egiteko edo lehendik dagoen Mandrake Linux\n"
-"sistema eguneratzeko aukera izango duzu. \"Instalatu\" sakatzen baduzu,\n"
-"sistema zaharra erabat garbituko da. Hautatu \"Bertsio-berritu\" lehendik\n"
-"dagoen sistema baten bertsioa berritzen edo konpontzen ari bazara.\n"
-"\n"
-"Aukeratu \"Instalatu\" Mandrake Linux-en beste bertsiorik ez badago edo\n"
-"hainbat sistema-eragileren artean abiarazi nahi baduzu.\n"
-"\n"
-"Aukeratu \"Eguneratu\" Mandrake Linux-en jadanik instalatutako bertsio bat\n"
-"eguneratu edo konpondu nahi baduzu.\n"
-"\n"
-"GNU/Linux-i buruz dakizunaren arabera, aukeratu ondoko hauetako bat\n"
-"Mandrake Linux sistema eragilea instalatzeko edo eguneratzeko:\n"
-"\n"
-" * Gomendatua: aukeratu hau GNU/Linux sistema eragilea inoiz instalatu ez\n"
-"baduzu. Instalazioa oso erraza izango da eta galdera batzuk besterik ez\n"
-"zaizkizu egingo.\n"
-"\n"
-" * Aditua: GNU/Linux ongi ezagutzen baduzu, instalazio-mota hau aukera\n"
-"dezakezu. Instalazio adituak oso instalazio pertsonalizatua egiteko aukera\n"
-"emango dizu. Galdera batzuei erantzutea zaila izan daiteke GNU/Linux ongi\n"
-"ezagutzen ez baduzu, beraz ez aukeratu hau baldin eta zer egiten ari zaren\n"
-"ez badakizu."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Normalki, DrakXk teklatu egokia hautatzen dizu (aukeratutako hizkuntzaren\n"
-"arabera) eta urrats hau ez duzu ikusi ere egingo. Dena den, baliteke zure\n"
-"hizkuntzari zehazki dagokion teklatua ez edukitzea: adibidez, ingelesez\n"
-"dakien suitzarra bazara, baliteke hala ere Suitzako teklatua nahi izatea.\n"
-"Edo ingeles hiztuna bazara baina Quebec-en bazaude, egoera berean egon\n"
-"zintezke. Bi kasuetan, instalazio-urrats honetan atzera jo eta teklatu\n"
-"egokia hautatu beharko duzu zerrendan.\n"
-"\n"
-"Egin klik \"Gehiago\" botoian onartzen diren teklatuen zerrenda osoa\n"
-"ikusteko."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Aukeratu instalaziorako eta sistemaren erabilerarako hizkuntzarik\n"
-"gogokoena.\n"
-"\n"
-"\"Aurreratua\" botoian klik egiten baduzu, instalaziorako beste hizkuntza\n"
-"batzuk aukeratu ahal izango dituzu lan-estazioan. Beste hizkuntza bat\n"
-"hautatzean, sistemaren dokumentaziorako eta aplikazioetarako fitxategi\n"
-"espezifikoak instalatuko dira. Adibidez, zure ordenagailuan Espainiako\n"
-"erabiltzaileei ostatu eman behar badiezu, zuhaitz-ikuspegian hautatu\n"
-"euskara hizkuntza nagusi gisa, eta Aurreratua atalean, egin klik\n"
-"\"espainiera|Espainia\"ri dagokion izar grisean.\n"
-"\n"
-"Kontuan hartu hizkuntza bat baino gehiago instala daitezkeela. Lokal\n"
-"gehigarriak aukeratutakoan, egin klik \"Ados\" botoian jarraitzeko."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"Lehenespenez, DrakXk bi botoiko Sagua duzula suposatuko du, eta hirugarren\n"
-"botoia emula dezan konfiguratuko du. DrakXk automatikoki jakingo du sagua\n"
-"PS/2, seriekoa edo USB motakoa den.\n"
-"\n"
-"Beste mota bateko sagua zehaztu nahi baduzu, hautatu dagokion mota\n"
-"zerrendan.\n"
-"\n"
-"Lehenetsitakoa ez den sagu bat aukeratzen baduzu, sagua egiaztatzeko\n"
-"pantailan agertuko zaizu. Erabili botoiak eta gurpila ezarpenak egokiak\n"
-"direla egiaztatzeko. Saguak ez badu behar bezala funtzionatzen, sakatu\n"
-"zuriune-barra edo ITZULI \"Uzteko\", eta aukeratu berriro."
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Hautatu ataka zuzena. Adibidez, MS Windows-eko \"COM1\" atakak\n"
-"\"ttyS0\"du izena GNU/Linux-en."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"Hau da erabakigunerik funtsezkoena GNU/Linux sistemaren Segurtasunerako:\n"
-"\"root\"-aren pasahitza sartu duzu. \"root\" sistema-administratzailea da\n"
-"eta berak bakarrik dauka eguneratzeko, erabiltzaileak gehitzeko, sistemaren\n"
-"konfigurazio orokorra aldatzeko eta abar egiteko baimena. Bi hitzetan,\n"
-"\"root\"-ak dena egin dezake! Horregatik, asmatzen zaila den pasahitza\n"
-"aukeratu behar duzu - DrakXk errazegia den esango dizu. Ikus dezakezunez,\n"
-"pasahitza ez sartzea ere aukera dezakezu, baina horrelakorik ez egiteko\n"
-"aholkua emango genizuke, arrazoi batengatik: ez pentsa GNU/Linux abiarazi\n"
-"duzulako zure beste sistema eragileek akatsik eduki ezin dutenik.\n"
-"\"root\"-ak muga guztiak gaindi ditzakeenez, eta partizioetan arduragabeki\n"
-"sartuz partizioetako datu guztiak nahi gabe ezaba ditzakeenez,\n"
-"garrantzitsua da \"root\" bilakatzea zaila izatea.\n"
-"\n"
-"Pasahitzak karaktere alfanumerikoen nahasketa izan behar du eta gutxienez 8\n"
-"karaktere izan behar ditu. Ez idatzi inoiz \"root\"-aren pasahitza -\n"
-"sistema errazegi konprometituko bailuke.\n"
-"\n"
-"Dena den, pasahitza ez egin luzeegia, ahalegin handirik gabe gogoratu behar\n"
-"duzulako.\n"
-"\n"
-"Pasahitza ez da idatzi ahala pantailan bistaratuko. Horregatik, pasahitza\n"
-"bi aldiz idatzi beharko duzu, akats tipografikoen aukera murrizteko. Akats\n"
-"tipografiko bera bi aldiz egiten baduzu, pasahitz \"oker\" hori erabili\n"
-"beharko da konektatzen zaren lehen aldian.\n"
-"\n"
-"Aditu moduan, NIS edo LDAP moduko autentifikazio-zerbitzari batekin\n"
-"konektatuko zaren galdetuko zaizu.\n"
-"\n"
-"Zure sareak autentifikaziorako LDAP (edo NIS) protokoloa erabiltzen badu,\n"
-"hautatu \"LDAP\" (edo \"NIS\") autentifikazio gisa. Ezagutzen ez baduzu,\n"
-"galdetu sareko administratzaileari.\n"
-"\n"
-"Zure ordenagailua administratutako ezein sareri konektatua ez badago,\n"
-"beharbada \"Fitxategi lokalak\" aukeratu nahi izango dituzu\n"
-"autentifikaziorako."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"LILO eta GRUB GNU/Linux-en abioko kargatzaileak dira. Etapa hau,normalean,\n"
-"erabat automatizatuta egoten da. Izan ere, DrakXk diskoaren abioko sektorea\n"
-"aztertu eta horren arabera jokatzen baitu, hor aurkitutakoaren arabera:\n"
-"\n"
-" * Windows-en abioko sektorea aurkitzen bada, GRUB/LILO abioko sektore "
-"batez\n"
-"ordeztuko du. Beraz, GNU/Linux edo beste OS bat kargatu ahal izango duzu;\n"
-"\n"
-" * GRUB edo LILO abioko sektore bat aurkitzen bada, berriz ordeztuko du;\n"
-"\n"
-"Zalantzarik badago, DrakXk hainbat aukera duen elkarrizketa-koadroa\n"
-"bistaratuko du.\n"
-"\n"
-" * \"Erabili beharreko abioko kargatzailea\": hiru aukera dituzu:\n"
-"\n"
-" * \"LILO menu grafikoarekin\": LILO bere interfaze grafikoarekin "
-"nahiago\n"
-"baduzu.\n"
-"\n"
-" * \"GRUB\": GRUB nahiago baduzu (testu-menua).\n"
-"\n"
-" * \"LILO testu-menuarekin\": LILO bere testu-menuaren interfazearekin\n"
-"nahiago baduzu.\n"
-"\n"
-" * \"Abioko gailua\": kasu gehienetan, ez duzu (\"/dev/hda\") lehenetsia\n"
-"aldatuko, baina nahiago baduzu, abioko kargatzailea bigarren unitate\n"
-"gogorrean (\"/dev/hdb\") edo diskete batean (\"/dev/fd0\")instala daiteke.\n"
-"\n"
-" * \"Atzeratu lehenetsitako irudia abiarazi baino lehen\": ordenagailua\n"
-"berrabiaraztean, hau da erabiltzaileari aukeratzeko emandako atzerapena -\n"
-"abioko kargatzailearen menuan lehenetsia ez den beste sarrera bat.\n"
-"\n"
-"!! Kontuan eduki abioko kargatzaile bat ez instalatzea aukeratzen baduzu\n"
-"(hemen \"Utzi\" hautatuz), Mandrake Linux sistema abiarazteko bide bat\n"
-"dagoela! Beraz, ziurtatu edozein aukera aldatu baino lehen zer egiten duzun\n"
-"badakizula. !!\n"
-"\n"
-"Elkarrizketa-koadro honetako \"Aurreratua\" botoian klik eginda aukera\n"
-"aurreratu ugari lortuko dituzu, erabiltzaile adituentzat erreserbatuak.\n"
-"\n"
-"Mandrake Linux-ek abioko bere kargatzailea instalatzen du, eta GNU/Linux\n"
-"edo zure sisteman duzun beste edozein sistema eragile abiarazteko aukera\n"
-"emango dizu.\n"
-"\n"
-"Ordenagailuan beste sistema eragile bat instalatuta baduzu, automatikoki\n"
-"gehituko zaio abioko menuari. Hemen, lehendik dauden aukerak optimizatzea\n"
-"hauta dezakezu. Lehendik dagoen sarrera batean klik bikoitza egitean, bere\n"
-"parametroak aldatu edo kendu egingo dituzu; \"Gehitu\"k beste sarrera bat\n"
-"sortzen du; eta \"Eginda\" instalazioaren hurrengo urratsera joaten da."
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (LInux LOader) eta grub abioko kargatzaileak dira: GNU/Linux edo \n"
-"ordenagailuan dagoen beste edozein sistema eragile abiaraz dezakete.\n"
-" Normalki, beste sistema eragile horiek ongi detektatzen eta instalatzen\n"
-"dira. Horrela ez bada, pantaila honetan sarrera bat eskuz gehi \n"
-"dezakezu. Kontuz ibili parametroak aukeratzean okerrik ez egiteko.\n"
-"\n"
-"Halaber, baliteke beste sistema eragile horietan inori sartzen utzi nahi ez\n"
-"izatea. Horretarako, sistema eragile horien sarrerak ezaba ditzakezu. Baina\n"
-"gero, abioko disko bat beharko duzu beste sistema eragile horiek abiarazteko!"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"GNU/Linux-ekin abiarazteko behar den informazioa non kokatu nahi duzun \n"
-"adierazi behar duzu.\n"
-"\n"
-"Zer egiten ari zaren oso ongi ez badakizu, aukeratu \"Unitateko lehen\n"
-"sektorea (MBR)\"."
-
-#: ../../help.pm_.c:729
-#, fuzzy
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-"Hemen zure ordenagailuaren inprimatzeko sistema hautatuko dugu. Beste\n"
-"SE batzuek bakarra eskainiko dute beharbada, baina Mandrake-k hiru \n"
-"eskaintzen ditu.\n"
-"\n"
-" * \"pdq\" - ``print, don't queue'' esan nahi du, hau da, 'inprimatu, ez "
-"egon\n"
-"ilaran'. Aukera egokia da inprimagailua zuzenean konektatuta baduzu, papera\n"
-"trabatzen denean ohartu nahi baduzu eta sareko inprimagailurik ez baduzu. "
-"Sareko oso kasu\n"
-"sinpleak maneiatuko ditu eta mantso samarra da sarerako. Aukeratu\n"
-"\"pdq\" GNU/Linux-eko zure lehen bidaia bada. Instalazioa egin\n"
-"ondoren aukerak aldatu nahi badituzu, exekutatu Mandrake-ren kontrol-"
-"zentroko\n"
-"PrinterDrake eta egin klik 'aditua' botoian.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'' oso ona da zure inprimagailu\n"
-"lokalean inprimatzeko eta baita munduaren beste aldean ere. Sinplea da eta \n"
-"\"lpd\" inprimatze-sistema zaharraren zerbitzari edo bezero gisa joka "
-"dezake,\n"
-"beraz bateragarria da lehenagoko sistemekin. Gauza asko egin ditzake,\n"
-"baina oinarrizko konfigurazioa \"pdq\" bezain erraza da. \"lpd\" zerbitzari "
-"bat\n"
-"emulatzeko behar baduzu, \"cups-lpd\" daemon-a aktibatu behar duzu. "
-"Inprimagailuaren\n"
-"aukerak hautatzeko edo inprimatzeko interfaze grafikoak ditu.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. Sistema honek\n"
-"besteek egin ditzaketen gauza bertsuak egin ditzake, baina Novell sarean\n"
-"muntatutako inprimagailuetan inprimatuko du, IPX protokoloa onartzen "
-"duelako,\n"
-"eta shell komandoetan zuzenean inprima dezakeelako. Novell behar baduzu "
-"edo \n"
-"hodirik erabili gabe komandoetan inprimatu behar baduzu, erabili lprNG.\n"
-"Bestela, hobe da CUPS, sareetan lan egiteko sinpleagoa eta hobea delako."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX orain zure ordenagailuan dagoen edozein IDE gailu detektatzen ari da.\n"
-"Zure sistemako PCI SCSI txartel bat edo gehiago ere eskaneatuko ditu. SCSI\n"
-"txartela aurkitzen badu, DrakXek automatikoki instalatuko du unitate\n"
-"egokia.\n"
-"\n"
-"Hardwarearen detekzioak batzuetan hardware-elementurik detektatuko ez\n"
-"duenez, DrakXk PCI SCSI txartelik ote dagoen berresteko eskatuko dizu.\n"
-"Sakatu \"Bai\" zure ordenagailuan SCSI txartela instalatuta dagoela\n"
-"badakizu. SCSI txartelen zerrenda bat aurkeztuko zaizu, bertan aukeratzeko.\n"
-"Sakatu \"Ez\" SCSI hardwarerik ez baduzu. Ziur ez bazaude, zure\n"
-"ordenagailuan detektatutako hardware-zerrenda ikus dezakezu \"Ikus\n"
-"hardwareari buruzko informazioa\" hautatuz eta \"Ados\" sakatuz. Aztertu\n"
-"hardware- zerrenda eta egin klik \"Ados\" botoian SCSI interfazearen\n"
-"galderara itzultzeko.\n"
-"\n"
-"Moldagailua eskuz zehaztu baduzu, DrakXk haren aukerak zehaztu nahi dituzun\n"
-"galdetuko dizu. Hardwareak hasieratzeko behar dituen aukera zehatzak bila\n"
-"ditzan, hardwarea aztertzen utzi beharko zenioke DrakXri. Horrek ondo\n"
-"funtzionatu ohi du.\n"
-"\n"
-"DrakXk pasatu behar diren aukerak egiaztatu ezin baditu, aukerak eskuz eman\n"
-"beharko dizkiozu kontrolatzaileari.Eskatutako parametroak\n"
-"frabrikatzailearen web orritik (Interneteko sarbidea baduzu) edo Microsoft\n"
-"Windows-etik (hardware hau zure sisteman Windows-ekin erabili baduzu)\n"
-"berreskuratzeko aholkuak lortzeko, ikus ``Erabiltzailearen gida '' (3.\n"
-"atala, \"Hardwareari buruzko informazioa biltzen\" sekzioa) ."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"Sarrera gehiago erants ditzakezu yaboot-entzat, beste sistema eragile\n"
-"batzuk, nukleo alternatiboak edo emergentziazko abioko imajina gehitzeko.\n"
-"\n"
-"Beste SEentzat, etiketa eta erroko partizioa soilik da sarrera.\n"
-"\n"
-"Linux-entzat, hainbat aukera daude:\n"
-"\n"
-" * Etiketa: yaboot-en gonbitean idatzi beharko duzun izena da, abioko\n"
-"aukera hau hautatzeko.\n"
-"\n"
-" * Imajina: abiarazi beharreko nukleoaren izena izango litzateke. Normalki, "
-"vmlinux\n"
-"edo vmlinux-en aldaera bat, luzapen batekin.\n"
-"\n"
-" * Root: zure Linux instalazioaren \"root\" gailua edo \"/\" \n"
-"\n"
-" * Erantsi: Apple hardwarean, nukleoa eransteko aukera bideo-hardwarea "
-"hasieratzen\n"
-"laguntzeko erabiltzen da askotan, edo ohiko Apple saguetan gehienetan\n"
-"falta izaten diren 2. eta 3. botoien emulazioa gaitzeko teklatuan.\n"
-" Hona hemen adibide batzuk:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: aukera hau hasierako moduluak kargatzeko erabil daiteke, abioko\n"
-"gailua erabilgarri egon aurretik, edo ramdisk imajina bat kargatzeko \n"
-"emergentziazko abioa egin behar denean.\n"
-"\n"
-" * Initrd-tamaina: ramdisk-tamaina lehenetsia 4.096 bytekoa izan ohi da. "
-"Ramdisk\n"
-"handi bat esleitu behar baduzu, aukera hau erabil dezakezu.\n"
-"\n"
-" * Irakurri/idatzi: normalki \"root\" partizioa irakurtzeko soilik agertzen "
-"da hasieran,\n"
-"fitxategi-sistemak egiaztatu ahal izateko, sistema \"aktibo\" egin "
-"aurretik.\n"
-"Hemen, aukera hori gainidatz dezakezu.\n"
-"\n"
-" * BideorikEz: Apple bideoaren hardwarea bereziki problematikoa bada,\n"
-"aukera hau hauta dezakezu \"bideorikez\" moduan abiarazteko, jatorrizko\n"
-"frame buffer euskarriarekin.\n"
-"\n"
-" * Lehenetsia: sarrera hau hautatzen du Linux-en hautapen lehenetsi gisa,\n"
-"eta yaboot-en gonbitean SARTU sakatuz hauta daiteke. Sarrera hau\n"
-"\"*\" batez nabarmenduko da, [Tab] sakatzen baduzu abioko hautapenak\n"
-"ikusteko."
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"NewWorld MacIntosh hardwarearentzako abioko kargatzaile bat da Yaboot. GNU/"
-"Linux, \n"
-"MacOS, edo MacOSX abiaraz dezake, ordenagailuan badago.\n"
-"Normalean,\n"
-"beste sistema eragile horiek ongi detektatzen eta instalatzen dira. Horrela "
-"ez bada,\n"
-"pantaila honetan sarrera bat eskuz gehi dezakezu. Kontuz ibili\n"
-"parametroak aukeratzean okerrik ez egiteko\n"
-"\n"
-"Yaboot-en aukera nagusiak hauek dira:\n"
-"\n"
-" * Hasierako mezua: abioko gonbitaren aurretik bistaratzen den mezu-testu\n"
-"laburra.\n"
-"\n"
-" * Abioko gailua: adierazi non kokatu nahi duzun GNU/Linux-ekin abiarazteko "
-"behar den\n"
-"informazioa. Normalean, bootstrap partizio bat konfiguratuko duzu lehenago\n"
-"informazio hau edukitzeko.\n"
-"\n"
-" * Open Firmware atzerapena: LILOrekin ez bezala, bi atzerapen daude "
-"erabilgarri\n"
-"yaboot-ekin. Lehen atzerapena segundotan neurtzen da, eta hemen CD, OF "
-"abioa\n"
-"MacOS edo Linux aukera dezakezu.\n"
-"\n"
-" * Nukleoaren abioaren denbora-muga: denbora-muga hau LILOren abioko "
-"atzerapenaren antzekoa da.\n"
-"Linux hautatu ondoren, 0,1 segundoko atzerapen hau izango duzu "
-"lehenetsitako\n"
-"nukleo-deskribapena hautatu aurretik.\n"
-"\n"
-" * Gaitu CDtik abiaraztea?: aukera hau hautatzen baduzu, \"C\" aukeratu ahal "
-"izango\n"
-"duzu CDarentzat abioko lehen gonbitean.\n"
-"\n"
-" * Gaitu OF abioa?: aukera hau hautatzen baduzu, \"N\" aukeratu ahal izango\n"
-"duzu Open Firmware-rentzat abioko lehen gonbitean.\n"
-"\n"
-" * SE lehenetsia: lehenespenez zein SE abiaraziko den hauta dezakezu Open\n"
-"Firmware Atzerapena igarotzen denean."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"Hemen zure ordenagailuari dagozkion parametroak aurkezten dira. Zein\n"
-"hardware instalatuta daukazun, ondoko sarrerak ikusiko dituzu - edo ez:\n"
-"\n"
-" * \"Sagua\": egiaztatu saguaren konfigurazioa eta, beharrezkoa bada, egin\n"
-"klik botoian aldatzeko.\n"
-"\n"
-" * \"Teklatua\": egiaztatu une honetako teklatuaren konfigurazioa eta,\n"
-"beharrezkoa bada, egin klik botoian aldatzeko.\n"
-"\n"
-" * \"Ordu-zona\": DrakXk, lehenespenez, aukeratutako hizkuntzatik asmatzen\n"
-"du zure ordu-zona. Baina teklatuaren aukerari dagokionez, baliteke\n"
-"aukeratutako hizkuntzari dagokion herrialdean ez egotea. Horregatik,\n"
-"\"Ordu-zona\" botoian klik egin beharko duzu ordularia zu zauden\n"
-"ordu-zonaren arabera konfiguratzeko.\n"
-"\n"
-" * \"Inprimagailua\": \"Inprimagailurik ez\" botoian klik eginez,\n"
-"inprimagailuaren konfigurazio-morroia irekiko da.\n"
-"\n"
-" * Zure sisteman \"Soinu-txartela\": soinu-txartela detektatzen bada, hemen\n"
-"bistaratuko da. Instalatzean ezin da aldaketarik egin.\n"
-"\n"
-" * \"telebista-txartela\": zure sisteman telebista-txartela detektatzen\n"
-"bada, hemen bistaratuko da. Instalatzean ezin da aldaketarik egin.\n"
-"\n"
-" * \"ISDN txartela\": zure sisteman ISDN txartela detektatzen bada, hemen\n"
-"bistaratuko da. Egin klik botoian dagozkion parametroak aldatzeko."
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Aukeratu Mandrake Linux-en partizio berria instalatzeko ezabatu nahi duzun\n"
-"disko gogorra. Kontuz ibili, bertako datu guztiak galdu egingo dira eta "
-"ezin\n"
-"izango dira berreskuratu!"
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Sakatu \"Ados\" disko gogor honetako datu eta partizio guztiak ezabatu \n"
-"nahi badituzu. Kontuz ibili, \"Ados\" sakatu ondoren, ezin izango duzu \n"
-"disko gogor honetako daturik eta partiziorik berreskuratu,\n"
-"Windows-eko datuak barne.\n"
-"\n"
-"Sakatu \"Utzi\" disko gogor honetako daturik eta partiziorik galdu gabe\n"
-"eragiketa hau bertan behera uzteko."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "%s ere formateatu behar duzu"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Zerbitzari hau(ek) hautatu d(it)uzu: %s\n"
-"\n"
-"\n"
-"Zerbitzari horiek lehenespenez aktibatzen dira. Ez dute segurtasun-arazo "
-"ezagunik,\n"
-"baina berriren bat ager liteke. Kasu horretan, ziurtatu ahal bezain laster\n"
-"eguneratzen duzula.\n"
-"\n"
-"\n"
-"Zerbitzari horiek benetan instalatu nahi dituzu?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Ezin da difusioa erabili NIS domeinurik gabe"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Sartu FAT formatuko diskete bat %s unitatean"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Diskete honek ez du FAT formaturik"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Gordetako pakete-hautapen hau erabiltzeko, abiarazi instalazioa ``linux "
-"defcfg=floppy''rekin"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Errorea %s fitxategia irakurtzean"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Zure ordenagailuko hardware batzuek kontrolatzaile ``jabea'' behar dute.\n"
-"Horiei buruzko informazioa hemen aurki dezakezu: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Erroko partizioa eduki behar duzu.\n"
-"Horretarako, sortu partizio bat (edo egin klik lehendik dagoen batean).\n"
-"Gero aukeratu ``Muntatze-puntua'' ekintza eta ezarri `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Swap partizio bat eduki behar duzu"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Ez duzu swap partiziorik\n"
-"\n"
-"Jarraitu hala ere?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "FAT partizio bat eduki behar duzu /boot/efi-n muntatuta"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Erabili leku librea"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Ez dago partizio berriak esleitzeko adina leku"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Lehendik dagoen partizioa erabili"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Ez dago erabiltzeko moduko partiziorik"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Erabili Windows partizioa atzera-begiztarako"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Zein partizio erabili nahi duzu Linux4Win-erako?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Aukeratu tamainak"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Erroko partizioaren tamaina MBtan: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Swap partizioaren tamaina MBtan: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Erabili Windows-en partizioko leku librea"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Zein partiziori aldatu nahi diozu tamaina?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Windows fitxategi-sistemaren mugak kalkulatzen"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"FAT tamaina-aldatzaileak ezin du zure partizioa maneiatu, \n"
-"errore hau gertatu da: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Zure Windows partizioa fragmentatuegia dago, exekutatu ``defrag'' lehendabizi"
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"KONTUZ!\n"
-"\n"
-"DrakX Windows partizioari tamaina aldatzera doa. Kontuz ibili:\n"
-"eragiketa hau arriskutsua da. Inoiz ez baduzu horrelakorik egin, \n"
-"hobe izango duzu instalaziotik irten eta scandisk exekutatzea \n"
-"Windows-en (eta nahi izanez gero defrag); gero, hasi berriro \n"
-"instalazioarekin. Datuen babeskopia egitea ere komeni da.\n"
-"Ziur zaudenean, sakatu Ados."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Zein tamaina utzi nahi duzu Windows-entzat"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "%s partizioan"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT tamaina-aldaketak huts egin du: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Ez dago FAT partiziorik tamainaz aldatzeko edo atzera-begizta gisa "
-"erabiltzeko (edo ez dago nahikoa leku)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Ezabatu disko osoa"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Kendu Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Disko gogor bat baino gehiago duzu, zeinetan instalatuko duzu linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "%s unitatean dauden partizio eta datu GUZTIAK galdu egingo dira"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Disko-partizio pertsonalizatua"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Erabili fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Orain egin dezakezu %s partizioa.\n"
-"Egin ondoren, ez ahaztu `w' erabiliz gordetzea"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Ez duzu behar adina leku libre Windows partizioan"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Ezin dut instalatzeko lekurik aurkitu"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX Partizio-morroiak irtenbide hauek aurkitu ditu:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partizioak huts egin du: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Sarea irekitzen"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Sarea ixten"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Errore bat gertatu da, baina ez dakit behar bezala maneiatzen.\n"
-"Jarraitu zure ardurapean."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Bikoiztu %s muntatze-puntua"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Pakete garrantzitsu batzuk ez dira behar bezala instalatu.\n"
-"Zure CDROM unitateak edo CDROMak akatsak ditu.\n"
-"Probatu CDROMa ordenagailu instalatu batean \"rpm -qpl Mandrake/RPMS/*.rpm\" "
-"erabiliz.\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Ongi etorri %s(e)ra"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Ez dago diskete-unitate erabilgarririk"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "`%s' urratsean sartzen\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Sistemak baliabide gutxi ditu. Arazoak izan ditzakezu Mandrake \n"
-"Linux instalatzeko. Horrela bada, testu-instalazioa egiten saia zaitezke. "
-"Horretarako,\n"
-"sakatu `F1' CDROMetik abiaraztean, gero sartu `text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Instalazio-klasea"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Aukeratu instalazio-klase hauetako bat:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Hautatu dituzun taldeen tamaina osoa %d MBkoa da gutxi gorabehera.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Tamaina hori baino gutxiago instalatu nahi,\n"
-"baduzu, hautatu instalatu nahi duzun pakete-portzentajea.\n"
-"\n"
-"Ehuneko txiki batekin pakete garrantzitsuenak soilik instalatuko dira;\n"
-"%% 100 aukeratzen baduzu, hautatutako pakete guztiak instalatuko ditu."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Pakete horien %% %d instalatzeko lekua besterik ez duzu diskoan.\n"
-"\n"
-"Hori baino gutxiago instalatu nahi baduzu,\n"
-"hautatu instalatu nahi duzun pakete-portzentajea.\n"
-"Ehuneko txiki batekin pakete garrantzitsuenak soilik instalatuko ditu;\n"
-"%% %d hautatzen baduzu, ahalik eta pakete gehien instalatuko ditu."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Hurrengo urratsean zehazkiago aukeratu ahal izango dituzu."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Instalatzeko pakete-ehunekoa"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Pakete-taldearen hautapena"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Pakete indibidualen hautapena"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Guztira: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Pakete txarra"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Izena: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Bertsioa: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Tamaina: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Garrantzia: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Ezin duzu pakete hori hautatu: ez dago instalatzeko lekurik"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Ondorengo pakete hauek instalatuko dira"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Ondorengo pakete hauek kenduko dira"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Ezin duzu pakete hau hautatu/desautatu"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Nahitaezko paketea da, ezin da desautatu"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Ezin duzu pakete hau desautatu. Dagoeneko instalatuta dago"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Pakete hau bertsio-berritu beharrean dago\n"
-"Ziur zaude desautatu nahi duzula?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Ezin duzu pakete hau desautatu. Bertsio-berritu egin behar da"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Erakutsi automatikoki hautatutako paketeak"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Instalatu"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Kargatu/Gorde disketean"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Pakete-hautapena eguneratzen"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Gutxieneko instalazioa"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Aukeratu instalatu nahi dituzun paketeak"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Instalatzen"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Kalkulatzen"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Geratzen den denbora "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Itxaron, instalazioa prestatzen"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d paketeak"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "%s paketea instalatzen"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Onartu"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Ezetsi"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Aldatu CDROMa!\n"
-"\n"
-"Sartu \"%s\" etiketa duen CDROMa unitatean eta sakatu Ados.\n"
-"Ez baduzu, sakatu Utzi instalazioa CDROM horretatik egin ez dezan."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Jarraitu hala ere?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Errore bat izan da paketeak ordenatzean:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Errore bat izan da paketeak instalatzean:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Abisua\n"
-"\n"
-"Irakurri arretaz ondorengo baldintzak. Zerbaitekin ados ez bazaude,\n"
-"ez duzu hurrengo CDa instalatzeko baimenik. Sakatu 'Ezetsi' \n"
-"instalazioa euskarri horiek erabili gabe jarraitzeko.\n"
-"\n"
-"\n"
-"Hurrengo CDko osagai batzuk ez dira GPL Lizentziaren edo\n"
-"antzeko akordioen araberakoak. Osagai horietako bakoitza\n"
-"bere lizentzia zehatzaren baldintzen araberakoa da. \n"
-"Irakurri arretaz lizentzia horiek eta bete bertako baldintzak osagai \n"
-"horiek erabili edo birbanatu aurretik. \n"
-"Lizentzia horiek oro har osagaia transferitzea, bikoiztea (babeskopiak\n"
-"egiteko izan ezik), birbanatzea, ingeniaritza alderantzikatzea, \n"
-"desmihiztatzea, deskonpilatzea edo aldatzea eragotziko dute. \n"
-"Kontratua ez betetzeak lizentzia zehatzak ematen dituen eskubide guztiak \n"
-"kentzea ekarriko du berehala. Baldin eta lizentzia zehatzaren baldintzek "
-"eskubidea ematen\n"
-"ez badizute, normalki ezin izango dituzu programak sistema batean baino\n"
-"gehiagotan instalatu, edo sarean erabiltzeko egokitu. Zalantzarik baduzu, "
-"jarri harremanetan\n"
-"osagaiaren banatzailearekin edo editorearekin zuzenean. \n"
-"Osagai horiek hirugarrenei transferitzea edo kopiatzea, dokumentazioa\n"
-"barne, debekatuta egoten da normalki.\n"
-"\n"
-"\n"
-"Hurrengo CDko osagaiei dagozkien eskubide guztiak haien egileenak \n"
-"dira eta software-programei aplikatzen zaizkien jabetza \n"
-"intelektualaren eta copyright-aren legeek babesten dituzte.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Errore bat izan da"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "Ziur zaude instalazioa bertan behera utzi nahi duzula?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Lizentzia-kontratua"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Sarrera\n"
-"\n"
-"Mandrake Linux banaketako sistema eragileari eta erabilgarri dauden osagaiei "
-"\"Software-produktuak\"\n"
-"deituko zaie aurrerantzean. Software-produktuetan sartzen dira, besteak \n"
-"beste, Mandrake Linux banaketako sistema eragileari eta osagaiei dagozkien "
-"programak, \n"
-"metodoak, arauak eta dokumentazioa.\n"
-"\n"
-"\n"
-"1. Lizentzia-kontratua\n"
-"\n"
-"Irakurri arretaz dokumentu hau. Dokumentu hau zure eta MandrakeSoft S.A.ren "
-"arteko lizentzia-kontratu bat da,\n"
-"Software-produktuei dagokiena.\n"
-"Software-produktuak instalatu, bikoiztu edo era batean edo bestean erabiliz, "
-"esplizituki \n"
-"onartzen dituzu eta erabateko adostasuna adierazten diezu Lizentzia honen "
-"baldintzei. \n"
-"Lizentziaren zatiren batekin ados ez bazaude, ez duzu baimenik izango "
-"Software-produktuak instalatu, \n"
-"bikoiztu edo erabiltzeko. \n"
-"Software-produktuak Lizentzia honekin bat ez datorren moduan instalatu, "
-"bikoiztu edo erabiltzeko \n"
-"saio oro deuseza izango da eta Lizentziari dagozkion eskubideak amaitu "
-"egingo \n"
-"dira. Lizentzia amaitzean, Software-produktuen kopia guztiak berehala "
-"suntsitu \n"
-"behar dituzu.\n"
-"\n"
-"\n"
-"2. Berme mugatua\n"
-"\n"
-"Software-produktuak eta erantsitako dokumentuak \"dauden-daudenean\" ematen "
-"dira, bermerik gabe, \n"
-"legeak onartzen duen neurrian.\n"
-"MandrakeSoft S.A.k ez du, ezein kasutan eta legeak onartzen duen neurrian, "
-"erantzukizunik izango\n"
-"Software-produktuen erabileraren edo erabiltzeko ezgaitasunaren ondorioz "
-"sortutako kalte berezi, ustekabeko,\n"
-"zuzeneko edo zeharkakoengatik (lana galtzea, lana etetea, finantza-galera, "
-"epai baten ondorioz ordaindu \n"
-"beharreko kuotak eta zigorrak edo beste edozein ondoriozko galera barne, "
-"mugarik gabe), \n"
-"MandrakeSoft S.A. jakinaren gainean egon arren halako kalteak gerta "
-"litezkeela.\n"
-"\n"
-"HERRIALDE BATZUETAN SOFTWARE DEBEKATUA EDUKITZEARI EDO ERABILTZEARI LOTUTAKO "
-"ERANTZUKIZUN MUGATUA\n"
-"\n"
-"Legeak onartzen duen neurrian, MandrakeSoft S.A.k edo bere banatzaileek, ez "
-"dute, ezein kasutan,\n"
-"erantzukizunik izango herrialde batzuetan, bertako legeek debekatutako edo "
-"mugatutako software-osagaiak edo\n"
-"Mandrake Linux-en guneetatik deskargatutako software-osagaiak eduki eta "
-"erabiltzearen ondorioz \n"
-"sortutako kalte berezi,ustekabeko,zuzeneko edo zeharkakoengatik (lana "
-"galtzea, lana etetea,\n"
-"finantza-galera, epai baten ondorioz ordaindu beharreko kuotak eta zigorrak "
-"edo beste edozein ondoriozko \n"
-"galera barne, mugarik gabe).\n"
-"Erantzukizun mugatu hau Software-produktuetan sartzen diren kriptografia "
-"handiko osagaiei aplikatzen \n"
-"zaie, baina ez da horietara mugatzen.\n"
-"\n"
-"\n"
-"3. GPL Lizentzia eta Lizentzia erlazionatuak\n"
-"\n"
-"Software-produktuak hainbat pertsonak edo erakundek sortutako osagaiak dira. "
-"Osagai \n"
-"horietako gehienak aurrerantzean\"GPL\" deituko diogun GNU Lizentzia Publiko "
-"Orokorraren\n"
-"edo antzeko lizentzien baldintzen araberakoak dira. Lizentzia horietako "
-"gehienek, \n"
-"beren osagaiak bikoizteko, egokitzeko edo birbanatzeko aukera ematen dute. "
-"Osagai bat erabili aurretik, irakurri \n"
-"arretaz osagai horren lizentzia-kontratuko baldintzak. Osagaiaren "
-"lizentziari\n"
-"buruzko galdera oro osagaiaren egileari egin beharko zaio, eta ez "
-"MandrakeSoft-i.\n"
-"MandrakeSoft S.A.k garatutako programak GPL Lizentziaren araberakoak dira. "
-"MandrakeSoft S.A.k\n"
-"idatzitako dokumentazioa lizentzia zehatz baten araberakoa da. Xehetasun "
-"gehiago nahi izanez gero, \n"
-"jo dokumentaziora.\n"
-"\n"
-"\n"
-"4. Jabetza intelektualaren eskubideak\n"
-"\n"
-"Software-produktuen osagaiei dagozkien eskubide guztiak haien \n"
-"egileenak dira eta software-programei\n"
-"aplikatzen zaizkien jabetza intelektualaren eta copyriht-aren legeek "
-"babesten dituzte.\n"
-"MandrakeSoft S.A.k eskubidea du Software-produktuak bere osotasunean edo "
-"zatika aldatzeko, \n"
-"bide guztiak erabiliz eta helburu guztietarako.\n"
-"\"Mandrake\", \"Mandrake Linux\" eta asoziatutako logotipoak MandrakeSoft S."
-"A.ren marka erregistratuak dira \n"
-"\n"
-"\n"
-"5. Lege arautzaileak \n"
-"\n"
-"Kontratu honen edozein zati epai batek deuseztzat, legez kanpokotzat edo "
-"aplikaezintzat jotzen badu, \n"
-"zati hori kendu egingo da kontratutik. Kontratuaren gainerako atal "
-"aplikagarriek ezarritakoa \n"
-"bete behar duzu.\n"
-"Lizentzia honetako baldintzak Frantziako legeen araberakoak dira.\n"
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Teklatua"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Aukeratu zure teklatu-diseinua."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Hona hemen teklatu erabilgarri guztien zerrenda"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Zein instalazio-klase nahi duzu?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Instalatu/Eguneratu"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Zer egin nahi duzu: instalazioa ala eguneratzea?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Gomendatua"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Aditua"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Bertsio-berritu"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Paketeak bakarrik bertsio-berritu"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Aukeratu sagu-mota."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Sagu-ataka"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Aukeratu sagua konektatuta dagoen serieko ataka."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Botoien emulazioa"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "2. botoiaren emulazioa"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "3. botoiaren emulazioa"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIA txartelak konfiguratzen..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "IDE konfiguratzen"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "ez dago partizio erabilgarririk"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Partizioak eskaneatzen muntatze-puntuak aurkitzeko"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Aukeratu muntatze-puntuak"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ezin dut zure partizio-taula irakurri, hondatuegia dago :(\n"
-"Jarraitzen saia naiteke, partizio txarrak garbituz (DATU GUZTIAK galduko "
-"dira!).\n"
-"Beste irtenbidea DrakXri partizio-taula aldatzeko baimenik ez ematea da.\n"
-"(errorea %s da)\n"
-"\n"
-"Ados zaude partizio guztiak galtzearekin?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake-k ezin izan du partizio-taula behar bezala irakurri.\n"
-"Jarraitu zure ardurapean!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Ez dago lekurik 1 MBko bootstrap-a sortzeko! Instalazioak jarraituko du, "
-"baina zure sistema abiarazteko, bootstrap partizioa sortu beharko duzu "
-"DiskDrake-rekin"
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Ez da erroko partiziorik aurkitu bertsio-berritzea egiteko"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Erroko partizioa"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Zein da zure sistemaren (/) erroko partizioa?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Berrabiarazi egin behar duzu partizio-taulako aldaketek eragina izateko"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Aukeratu formateatu nahi dituzun partizioak"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Bloke txarrak egiaztatu?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Partizioak formateatzen"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "%s fitxategia sortzen eta formateatzen"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Ez dago nahikoa swap instalazioa burutzeko, gehitu egin beharko duzu"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Pakete erabilgarriak bilatzen"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Bertsio-berritzeko paketeak bilatzen"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Zure sistemak ez du nahikoa leku instalatzeko edo bertsio-berritzeko (%d > %"
-"d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Osoa (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Gutxienekoa (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Gomendatua (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Aukeratu pakete-hautapena disketean kargatzea edo gordetzea.\n"
-"Formatua instalazio automatikoa egiteko sortutako disketeena bezalakoa da."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Disketetik kargatu"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Disketetik kargatzen"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Pakete-hautapena"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Sartu pakete-hautapena daukan diskete bat"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Gorde disketean"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Hautatutako tamaina handiagoa da leku erabilgarria baino"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Instalazio-mota"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Ez duzu talde edo paketerik hautatuta\n"
-"Nahi duzun gutxieneko instalazioa hautatu behar duzu"
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "Xrekin"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "Oinarrizko dokumentazioarekin (gomendatua)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Instalazio minimo-minimoa (batez ere, urpmi gabe)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Beheko zerrendako CD guztiak badituzu, sakatu Ados.\n"
-"CD horietako bat ere ez baduzu, sakatu Utzi.\n"
-"CDetako batzuk soilik falta badituzu, desauta itzazu, eta sakatu Ados."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "\"%s\" etiketadun CDROMa"
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Instalazioa prestatzen"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"%s paketea instalatzen\n"
-"%% %d"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Instalazio-ondorengo konfigurazioa"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Sartu abioko disketea %s unitatean"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Sartu moduluak eguneratzeko disketea %s unitatean"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Enkriptatzeko softwarea deskargatzeko aukera duzu orain.\n"
-"\n"
-"ABISUA:\n"
-"\n"
-"Software horiei aplika dakizkiekeen eta hainbat jurisdikziok ezartzen "
-"dituzten eskakizun \n"
-"orokor desberdinak direla eta, software horien bezeroek edo/eta azken "
-"erabiltzaileek \n"
-"segurtatu beharko dute beren jurisdikzioko legeek baimena ematen dutela "
-"softwareok \n"
-"deskargatzeko, biltegiratzeko edo/eta erabiltzeko.\n"
-"\n"
-"Gainera, bezeroek edo/eta azken erabiltzaileek bereziki arduratu behar dute "
-"beren\n"
-"jurisdikzioko legeak ez urratzeaz. Bezeroek edo/eta azken erabiltzaileek\n"
-"lege aplikagarri horiek xedatutakoa betetzen ez badute, zigor handiak "
-"jasoko\n"
-"dituzte.\n"
-"\n"
-"Ezein kasutan, Mandrakesoft-ek eta bere fabrikatzaileek edo/eta banatzaileek "
-"ez dute\n"
-"erantzukizunik izango bezeroak edo/eta azken erabiltzaileak kontratu hau\n"
-"sinatu ondoren eskuratutako softwareak erabiltzearen, edukitzearen edo \n"
-"deskargatze hutsaren ondorioz sortutako kalte berezi, zeharkako edo "
-"ustekabekoengatik \n"
-"(hala nola, irabaziak galtzea, lana etetea, datu komertzialak galtzea\n"
-"eta bestelako diru-galerak eta epai baten erabakiari jarraiki ordaindu\n"
-"beharreko erantzukizunak eta kalte-ordainak, besteak beste).\n"
-"\n"
-"\n"
-"Kontratu honi buruzko edozein kontsulta egiteko, jarri harremanetan\n"
-"Mandrakesoft, Inc.-ekin\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Banaketa erabilgarri izan ondoren kaleratutako pakete eguneratuak\n"
-"deskargatzeko aukera duzu.\n"
-"\n"
-"Segurtasun eta akatsen konponketak hartuko dituzu, baina Interneteko\n"
-"konexio bat behar duzu konfiguratuta, aurrera jarraitzeko.\n"
-"\n"
-"Eguneratze horiek instalatu nahi dituzu?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Mandrake Linux-en web gunearekin kontaktatzen ispiluen zerrenda lortzeko"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Aukeratu ispilu bat paketeak bertatik hartzeko"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Ispiluarekin kontaktatzen pakete erabilgarrien zerrenda lortzeko"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Zein da zure ordu-zona?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Hardwarearen ordua GMTn ezarria"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Ordu-sinkronizazio automatikoa (NTP erabiliz)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP Zerbitzaria"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Urruneko CUPS zerbitzaria"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Inprimagailurik ez"
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "ISA soinu-txartela duzu?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-"Instalazioa egindakoan, exekutatu \"sndconfig\" soinu-txartela "
-"konfiguratzeko "
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Ez da soinu-txartelik detektatu. Instalazioa egin ondoren, saiatu \"harddrake"
-"\"rekin "
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Laburpena"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Sagua"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Ordu-zona"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Inprimagailua"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDN txartela"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Soinu-txartela"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "Telebista-txartela"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Fitxategi lokalak"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Ezarri root-aren pasahitza"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Pasahitzik ez"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Pasahitz hau sinpleegia da (gutxienez %d karaktere izan behar ditu)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autentifikazioa"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "LDAP autentifikazioa"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP basea dn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAP Zerbitzaria"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "NIS Autentifikazioa"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS domeinua"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS zerbitzaria"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Abioko disko pertsonalizatuak Linux sistema abiarazteko aukera ematen du\n"
-"abioko kargatzaile normala erabili gabe. Baliagarria da zure sisteman SILO\n"
-"instalatu nahi ez baduzu, edo beste sistema eragile batek SILO kentzen badu, "
-"edo SILOk\n"
-"zure hardware-konfigurazioarekin funtzionatzen ez badu. Abioko disko "
-"pertsonalizatua Mandrake\n"
-"berreskuratzeko imajinarekin ere erabil daiteke, sistemaren hutsegite "
-"larriak\n"
-"errazago gainditu ahal izateko.\n"
-"\n"
-"Zure sistemarako abioko disko bat sortu nahi baduzu, sartu diskete bat "
-"lehen\n"
-"unitatean eta sakatu \"Ados\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Lehen diskete-unitatea"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Bigarren diskete-unitatea"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Saltatu"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Abioko disko pertsonalizatuak Linux sistema abiarazteko aukera ematen du\n"
-"abioko kargatzaile normala erabili gabe. Baliagarria da zure sisteman LILO "
-"(edo grub)\n"
-"instalatu nahi ez baduzu, edo beste sistema eragile batek LILO kentzen badu, "
-"edo LILOk\n"
-"zure hardware-konfigurazioarekin funtzionatzen ez badu. Abioko disko "
-"pertsonalizatua Mandrake\n"
-"berreskuratzeko imajinarekin ere erabil daiteke, sistemaren hutsegite "
-"larriak\n"
-"errazago gainditu ahal izateko.\n"
-"Zure sistemarako abioko disko bat sortu nahi duzu?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-"\n"
-"\n"
-"(KONTUZ! XFS erabiltzen ari zara erroko partizioan,\n"
-"abioko diskoa 1,44 Mb-ko disketean sortzeak huts egingo du\n"
-"seguru asko, XFSk oso kontrolatzaile handia behar duelako)."
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Ez dago diskete-unitate erabilgarririk"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Aukeratu abioko diskoa egiteko erabili nahi duzun diskete-unitatea"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Sartu diskete bat %s unitatean"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Abioko disketea sortzen"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Abioko kargatzailea prestatzen"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Badirudi makina zaharra edo ezezaguna duzula,\n"
-"yaboot abioko kargatzaileak ez du funtzionatuko.\n"
-"Instalazioak jarraitu egingo du, baina\n"
-"BootX erabili beharko duzu makina abiarazteko"
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "aboot erabili nahi duzu?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Errorea aboot instalatzean, \n"
-"instalazioa ezartzen saiatu lehen partizioa suntsitzen badu ere?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Abioko kargatzailea instalatzen"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Abioko kargatzailea instalatzeak huts egin du. Errore hau gertatu da:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Baliteke Open Firmware abioko gailua aldatu behar izatea\n"
-" abioko kargatzailea gaitzeko. Berrabiaraztean abioko kargatzailearen "
-"gonbita ez\n"
-" baduzu ikusten, eduki sakatuta Command-Option-O-F abiaraztean eta sartu:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Gero, idatzi: shut-down\n"
-"Hurrengo abiaraztean abioko kargatzailearen gonbita ikusi behar duzu."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Sartu diskete huts bat %s unitatean"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Auto-instalazioko disketea sortzen"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Urrats batzuk ez dira osatu.\n"
-"\n"
-"Ziur zaude orain irten nahi duzula?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Zorionak, instalazioa burutu da.\n"
-"Atera abioko diskoa eta sakatu itzulera-tekla berrabiarazteko.\n"
-"\n"
-"\n"
-"Mandrake Linux-en bertsio honetarako erabilgarri dauden konponbideen "
-"informaziorako,\n"
-"kontsultatu Erratak helbide honetan:\n"
-"\n"
-"\n"
-"http://www.mandrakelinux.com/.\n"
-"\n"
-"\n"
-"Zure sistema konfiguratzeko informazioa Mandrake-ren Erabiltzailearen \n"
-"Gida Ofizialeko instalatu ondorengo azalpenei buruzko kapituluan duzu."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Sortu auto-instalazioko disketea"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"Auto-instalazioa erabat automatiza daiteke nahi izanez gero,\n"
-"kasu horretan, disko gogorra hartuko du!!\n"
-"(beste makina batean instalatzeko pentsatua da aukera hau).\n"
-"\n"
-"Beharbada nahiago izango duzu instalazioa errepikatzea.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automatizatua"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Errepikatu"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Gorde pakete-hautapena"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux-en %s instalazioa"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> elementuz aldatzeko | <Zuriunea> hautatzeko | <F12> hurr. "
-"pantaila"
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu falta da"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "consolehelper falta da"
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Aukeratu fitxategi bat"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Aurreratua"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Oinarrizkoa"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Itxaron"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informazioa"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Zabaldu zuhaitza"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Tolestu zuhaitza"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Txandakatu alfabetikoaren eta taldeka ordenatuaren artean"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Aukera okerra, saiatu berriro\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Zure aukera? (%s lehenetsia) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Zuk bete beharreko sarrerak:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Zure aukera? (0/1, lehenetsia `%s' da) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "`%s' botoia : %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "Botoi honetan klik egin nahi duzu?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Zure aukera? (lehenetsia: `%s'%s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Hainbat gauza dituzu aukeran (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Aukeratu editatu nahi duzun 10 barrutiko lehen zenbakia,\n"
-"edo sakatu Sartu, jarraitzeko.\n"
-"Zure aukera? "
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Kontuz, etiketa bat aldatu da:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Berriro bidali"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "txekiarra (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "alemana"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "espainiarra"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "finlandiarra"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "frantsesa"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "norvegiarra"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "poloniarra"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "errusiarra"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "suediarra"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Erresuma Batuko teklatua"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Estatu Batuetako teklatua"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "albaniarra"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "armeniarra (zaharra)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "armeniarra (idazmakina)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "armeniarra (fonetikoa)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "azerbaijandarra (latinoa)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "belgikarra"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "bulgariarra (fonetikoa)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "bulgariarra (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "brasildarra (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "bielorrusiarra"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "suitzarra (diseinu alemana)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "suitzarra (diseinu frantsesa)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "txekiarra (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "alemana (letra zaharkiturik ez)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "daniarra"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (Estatu Batuak)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (norvegiarra)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (suediarra)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "estoniarra"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "georgiarra (diseinu \"errusiarra\")"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "georgiarra (diseinu \"latinoa\")"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "grekoa"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "hungariarra"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "kroaziarra"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "israeldarra"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "israeldarra (fonetikoa)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "iraniarra"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "islandiarra"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "italiarra"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "japoniarra 106 tekla"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Koreako teklatua"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "latinamerikarra"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituaniako AZERTY (zaharra)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituaniako AZERTY (berria)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituaniako QWERTY \"ilara numerikoa\""
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituaniako QWERTY \"fonetikoa\""
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "letoniarra"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "mazedoniarra"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "holandarra"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "poloniarra (qwerty diseinua)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "poloniarra (qwertz diseinua)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "portugesa"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "kanadarra (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "errumaniarra (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "errumaniarra (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "errusiarra (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "esloveniarra"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "eslovakiarra (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "eslovakiarra (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "serbiarra (zirilikoa)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "tamila"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Thailandiako teklatua"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Tajikistango teklatua"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "turkiarra (tradizionala \"F\" modeloa)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "turkiarra (modernoa \"Q\" modeloa)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "ukrainarra"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Estatu Batuetako teklatua (nazioartekoa)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "vietnamdarra QWERTY \"ilara numerikoa\""
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "jugoslaviarra (latinoa)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr "Eskuineko Alt tekla"
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr "Bi Maius teklak batera"
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr "Kontrol eta Maius teklak batera"
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr "BlokMaius tekla"
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ktrl eta Alt teklak batera"
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt eta Maius teklak batera"
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr "\"Menu\" tekla"
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr "Ezkerreko \"Windows\" tekla"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr "Eskuineko \"Windows\" tekla"
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "%s muntaketa zirkularrak\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Kendu bolumen logikoak lehendabizi\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr "PCMCIA euskarririk ez dago 2.2 nukleoentzat. Erabili 2.4 nukleoa."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Sagua"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Gurpildun PS2 sagu generikoa"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking sagua"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 botoi"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "2 botoiko sagu generikoa"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generikoa"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Gurpila"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "seriekoa"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "3 botoiko sagu generikoa"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech sagua (seriekoa, C7 mota zaharrekoa)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "bus-sagua"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 botoi"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 botoi"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "bat ere ez"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Sagurik gabe"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Probatu sagua"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Sagua aktibatzeko,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "MUGITU GURPILA!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Amaitu"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Hurrengoa ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Aurrekoa"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Zuzena da?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Konektatu Internetekin"
-
-#: ../../network/adsl.pm_.c:20
-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-rekin konektatzeko modurik ohikoena pppoe da.\n"
-"Konexio batzuek pptp erabiltzen dute, bakan batzuek dhcp.\n"
-"Ez badakizu, aukeratu 'erabili pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "erabili dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "erabili pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "erabili pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Zein dhcp bezero erabili nahi duzu?\n"
-"Lehenetsia dhcpcd da"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Zure sisteman ez da ethernet sare-moldagailurik detektatu.\n"
-"Ezin dut konexio-mota hau konfiguratu."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Aukeratu sare-interfazea"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Aukeratu zein sare-moldagailu erabili nahi duzun Internetera konektatzeko"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "ez da sare-txartelik aurkitu"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Sarea konfiguratzen"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Sartu zure ostalari-izena, baldin badakizu.\n"
-"DHCP zerbitzari batzuek ostalari-izena behar dute funtzionatzeko.\n"
-"Ostalari-izenak osoa izan behar du, erabat kualifikatua,\n"
-"esate baterako, ``mybox.mylab.myco.com''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Ostalari-izena"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Sarea konfiguratzeko morroia"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Kanpoko ISDN modema"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Barneko ISDN txartela"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Nolakoa da zure ISDN konexioa?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Zein ISDN konfigurazio duzu nahiago?\n"
-"\n"
-"* Konfigurazio zaharrak isdn4net erabiltzen du. Tresna ahaltsuak\n"
-" dauzka, baina korapilatsua da konfiguratzeko, eta ez da estandarra.\n"
-"\n"
-"* Konfigurazio berria errazagoa da ulertzeko, estandarragoa,\n"
-" baina tresna gutxiago ditu.\n"
-"\n"
-"Konfigurazio erraza gomendatzen dugu.\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Konfigurazio berria (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Konfigurazio zaharra (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN konfigurazioa"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Hautatu hornitzailea.\n"
-" Zerrendan ez badago, aukeratu Zerrendatu gabe"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Europako protokoloa"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Europako protokoloa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Munduko gainerako protokoloa"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Munduko gainerako protokoloa \n"
-" D kanalik ez (linea alokatuak)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Zein protokolo erabili nahi duzu?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Nolako txartela duzu?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Ez dakit"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"ISA txartela baduzu, hurrengo pantailako balioek zuzenak izan behar dute.\n"
-"\n"
-"PCMCIA txartela baduzu, txartelaren irq eta io jakin behar dituzu.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Abortatu"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Jarraitu"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Zein da zure ISDN txartela?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"ISDN PCI txartel bat detektatu dut, baina ez dakit zein motatakoa den. "
-"Hautatu PCI txartel bat hurrengo pantailan."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Ez da ISDN PCI txartelik aurkitu. Hautatu bat hurrengo pantailan."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Aukeratu modema konektatuta dagoen serieko ataka."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Telefonoz deitzeko aukerak"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Konexio-izena"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Telefono-zenbakia"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Saio-hasierako ID"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Script-ean oinarritua"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Terminalean oinarritua"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Domeinu-izena:"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Lehen DNS zerbitzaria (aukerakoa)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Bigarren DNS zerbitzaria (aukerakoa)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Deskonektatu egin zaitezke edo konexioa birkonfiguratu."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Konexioa birkonfigura dezakezu."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Orain Internetekin konektatuta zaude."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Internetekin konekta zaitezke, edo konexioa birkonfiguratu."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Orain ez zaude Internetekin konektatuta."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Konektatu"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Deskonektatu"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Konfiguratu konexioa"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Interneteko konexioa eta konfigurazioa"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "%s konexioa konfiguratuko dugu orain."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"%s konexioa konfiguratuko dugu orain.\n"
-"\n"
-"\n"
-"Jarraitzeko, sakatu Ados."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Sare-konfigurazioa"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Sare-instalazioa egiten ari zarenez, zure sarea konfiguratuta dago jadanik.\n"
-"Hautatu Ados zure konfigurazioa mantentzeko, edo hautatu Utzi Internet eta "
-"Sare-konexioa birkonfiguratzeko.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Ongi etorri Sarea konfiguratzeko morroira\n"
-"\n"
-"Zure Internet/sare-konexioa konfiguratzera goaz.\n"
-"Ez baduzu auto-detekzioa erabili nahi, desautatu kontrol-laukia.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Aukeratu konfiguratzeko profila"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Erabili auto-detekzioa"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Gailuak detektatzen..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Modem-konexio normala"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "%s atakan detektatua"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN konexioa"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "%s detektatua"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ADSL konexioa"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "%s interfazean detektatua"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Kable-konexioa"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "kable bidezko konexioa detektatu da"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Sare lokaleko konexioa (LAN)"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "ethernet txartela(k) detektatuta"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Aukeratu konfiguratu nahi duzun konexioa"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Internetera konektatzeko modu bat baino gehiago konfiguratu duzu.\n"
-"Aukeratu erabili nahi duzuna.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Interneteko konexioa"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Abioan hasi nahi duzu konexioa?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Sare-konfigurazioa"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "Sarea berrabiarazi egin behar da"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Arazo bat izan da sarea berrabiaraztean: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Zorionak, sarearen eta Interneten konfigurazioa amaitu da.\n"
-"\n"
-"Konfigurazioa zure sistemari aplikatuko zaio orain.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Ondoren, zure X ingurunea berrabiaraztea gomendatzen dugu,\n"
-"ostalari-izena aldatzearen arazoa saihesteko."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"Arazoak izan dira konfigurazioan zehar.\n"
-"Probatu konexioa net_monitor edo mcc bidez. Konexioak funtzionatzen ez badu, "
-"konfigurazioa berrabiarazi beharko duzu"
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"ABISUA: Gailu hau Internetera konektatzeko konfiguratu da aldez aurretik.\n"
-"Gailu hau konfiguratuta mantentzeko, onartu, besterik gabe.\n"
-"Ondoko eremuak aldatzen badituzu konfigurazio hau gainidatziko da."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Sartu makina honen IP konfigurazioa.\n"
-"Elementu bakoitza IP helbide gisa sartu behar da puntuz\n"
-"bereizitako zenbakizko notazioan (adibidez, 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Sareko %s gailua konfiguratzen"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (%s kontrolatzailea)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP helbidea"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Sare-maskara"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "IP automatikoa"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP helbideak 1.2.3.4 formatua izan behar du"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Sartu zure ostalari-izena.\n"
-"Ostalari-izenak osoa izan behar du, erabat kualifikatua,\n"
-"esate baterako, ``mybox.mylab.myco.com''.\n"
-"Atebidearen IP helbidea ere sar dezakezu, baldin baduzu"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS zerbitzaria"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Atebidea (adib. %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Atebide-gailua"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Proxy-en konfigurazioa"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy-a"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy-a"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Sare-txartelaren identifikazioa (eramangarrientzat baliagarria)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy-ak http://... izan behar du"
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy-ak ftp://... izan behar du"
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Interneteko konfigurazioa"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Internetera orain konektatu nahi duzu?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Konexioa probatzen..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Sistema Internetera konektatuta dago orain."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Segurtasun-arrazoiengatik, deskonektatu egingo da orain."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Badirudi sistema ez dagoela Internetera konektatuta.\n"
-"Saiatu konexioa birkonfiguratzen."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Konexioaren konfigurazioa"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Bete edo egiaztatu ondoko eremua"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "Txartelaren IRQ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Txartelaren mem (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "Txartelaren S/I"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "Txartelaren S/I_0"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "Txartelaren S/I_1"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Zure telefono-zenbakia"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Hornitzailearen izena (adib. hornitzailea.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Hornitzailearen telefono-zenbakia"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Hornitzailearen dns 1 (aukerakoa)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Hornitzailearen dns 2 (aukerakoa)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Aukeratu zure herrialdea edo estatua"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Markatzeko modua"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Konexioaren abiadura"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Konexioaren denbora-muga (segundotan)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Kontuaren identifikatzailea (erabiltzaile-izena)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Kontuaren pasahitza"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "muntatzeak huts egin du: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Partizio hedatua ez da plataforma honetan onartzen"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Hutsune bat duzu partizio-taulan baina ezin dut erabili.\n"
-"Irtenbide bakarra lehen mailako partizioak mugitzea da, hutsunea partizio "
-"hedatuen ondoren gera dadin"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Huts egin du %s fitxategitik leheneratzean: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Babeskopia txarra"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Errorea %s fitxategian idaztean"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Okerren bat gertatzen ari da zure unitatean. \n"
-"Datuen osotasuna egiaztatzeko probak huts egin du. \n"
-"Horrek esan nahi du, diskoan ezer idazten bada, zaborra sortuko dela ausaz"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "ezinbestekoa"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "garrantzitsua"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "oso baliagarria"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "baliagarria"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "beharbada"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Belaunaldi berrikoa"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue (Inprimatu, ez egon ilaran)"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Inprimagailu lokala"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Urruneko inprimagailua"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Urruneko CUPS zerbitzariko inprimagailua"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Urruneko lpd zerbitzariko inprimagailua"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Sareko inprimagailua (TCP/socket-a)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT zerbitzariko inprimagailua"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "NetWare zerbitzariko inprimagailua"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Adierazi inprimagailuaren URI bat"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Kanalizatu lana komando batean"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Modelo ezezaguna"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Inprimagailu lokalak"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Urruneko inprimagailuak"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " - \\/*%s ataka paraleloan"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", \\/*%s USB inprimagailua"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", funtzio anitzeko gailua \\/*%s ataka paraleloan"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", funtzio anitzeko gailua - USB"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", funtzio anitzeko gailua - HP JetDirect"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", funtzio anitzeko gailua"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", %s(e)n inprimatzean"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr " - \"%s\" LPD zerbitzaria, \"%s\" inprimagailua"
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", \"%s\" TCP/IP ostalaria, %s ataka"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr " - \"%s\" Windows zerbitzaria, \"%s\" konpartitzea"
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr " - \"%s\" Novell zerbitzaria, \"%s\" inprimagailua"
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", %s komandoaren bidez"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Inprimagailu gordina (kontrolatzailerik ez)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(%s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(makina honetan)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "\"%s\" CUPS zerbitzarian"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (lehenetsia)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Hautatu inprimagailu-konexioa"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Nola dago konektatuta inprimagailua?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Urruneko CUPS zerbitzariko inprimagailuak ez dituzu hemen konfiguratu behar; "
-"horrelako inprimagailuak automatikoki detektatuko dira."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-msgid "CUPS configuration"
-msgstr "CUPSen konfigurazioa"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-msgid "Specify CUPS server"
-msgstr "Zehaztu CUPS zerbitzaria"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"Sare lokaleko urruneko CUPS zerbitzarietarako sarbidea izateko, ez daukazu "
-"ezer konfiguratu beharrik; CUPS zerbitzariek automatikoki emango diote zure "
-"makinari beren inprimagailuen berri. Zure makinak ezagutzen dituen "
-"inprimagailu guztiak Printerdrake-ren leiho nagusiko \"Urruneko "
-"inprimagailuak\" ataleko zerrendan daude. CUPS zerbitzaria zure sarelokalean "
-"ez badago, CUPS zerbitzariaren IP helbidea eman behar duzu, eta nahi baduzu "
-"atakaren zenbakia, zerbitzaritik inprimagailuaren informazioa eskuratzeko; "
-"bestela, utzi eremu hauek hutsik."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Normalean, CUPS automatikoki konfiguratzen da sare-ingurunearen\n"
-"arabera, sare lokaleko CUPS zerbitzarietako inprimagailuetara\n"
-"iritsi ahal izan zaitezen. Horrek ez badu ondo funtzionatzen, \n"
-"desaktibatu \"CUPS konfigurazio automatikoa\" eta editatu\n"
-"/etc/cups/cupsd.conf fitxategia eskuz. Ez ahaztu gero CUPS\n"
-"berrabiaraztea (komandoa: \"service cups restart\")."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP helbideak honelako itxura izan behar du: 192.168.1.20"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Ataka-zenbakiak osoko zenbakia izan behar du!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "CUPS zerbitzariaren IP"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Ataka"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "CUPS konfigurazio automatikoa"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Gailuak detektatzen..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Probatu atakak"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Gehitu inprimagailu berria"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Ongi etorri inprimagailua instalatzeko morroira\n"
-"\n"
-"Morroi honen bidez, ordenagailuan erabil daitezkeen inprimagailu urruneko "
-"edo lokalak instalatzeko laguntza jasoko duzu, baita saretik instalatzeko "
-"ere.\n"
-"\n"
-"Inprimagailua instalatzeko behar duen informazioa eskatuko dizu eta "
-"inprimagailu-kontrolatzaile, kontrolatzaile-aukera eta konexio-mota "
-"erabilgarri guztiak jarriko ditu zure esku."
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Inprimagailu lokala"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Ongi etorri inprimagailuak instalatzeko morroira\n"
-"\n"
-"Morroi honen bidez, ordenagailuarekin konektatutako inprimagailuak "
-"instalatzeko laguntza jasoko duzu.\n"
-"\n"
-"Konektatu inprimagailua ordenagailuarekin eta piztu ezazu. Aurrera "
-"jarraitzeko, egin klik \"Hurrengoa\"n, eta instalazioa bertan behera uzteko "
-"egin klik \"Utzi\"n .\n"
-"\n"
-"Ordenagailu batzuk kraskatu egin daitezke inprimagailuen auto-detekzioan, "
-"desaktibatu \"Automatikoki detektatu inprimagailuak\", auto-detekzioa ez "
-"erabiltzeko. Erabili \"Aditu modua\" PrinterDrake-n, urruneko inprimagailu "
-"batean inprimatzea konfiguratu nahi baduzu eta zerrendan agertzen ez bada."
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Automatikoki detektatu inprimagailuak"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"Zorionak, inprimagailua instalatuta eta konfiguratuta duzu!\n"
-"\n"
-"Inprimatzeko, aplikazioko \"Inprimatu\" komandoa erabil dezakezu (normalean "
-"\"Fitxategia\" menuan izan ohi da).\n"
-"\n"
-"Inprimagailu bat gehitu, kendu, edo izenez aldatu nahi baduzu, edo ezarpen "
-"lehenetsiak (paper-iturria, inprimatze-kalitatea...) aldatu nahi badituzu, "
-"hautatu \"Inprimagailua\" Mandrake Kontrol Zentroko \"Hardwarea\" atalean."
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Inprimagailuen detekzio automatikoa"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake-k lokalki konektatutako paraleloko edo USB inprimagailuak "
-"detekta ditzake automatikoki, baina sistema batzuetan auto-detekzioak "
-"BLOKEATU ETA HONDATU EGIN DITZAKE FITXATEGI-SISTEMAK! Beraz, ZUREA DA "
-"ARRISKUAREN ARDURA!\n"
-"\n"
-"Inprimagailuak automatikoki detektatu nahi dituzu?"
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Egin auto-detekzioa"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Ezarri inprimagailua eskuz"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "%s detektatua"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "\\/*%s ataka paraleloko inprimagailua"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "\\/*%s USB inprimagailua"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Ez da inprimagailu lokalik aurkitu! Inprimagailua eskuz instalatzeko, idatzi/"
-"gailu/fitxategi izena (Ataka paraleloak: /dev/lp0, /dev/lp1, ..., "
-"baliokideak dira LPT1:, LPT2:..., lehen USB inprimagailua: /dev/usb/lp0, "
-"bigarren USB inprimagailua: /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Gailua edo fitxategi-izena adierazi behar duzu!"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Ez da inprimagailu lokalik aurkitu!\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Sareko inprimagailuak soilik instalazioaren ondoren instala daitezke. "
-"Hautatu \"Hardwarea\" eta gero \"Inprimagailuak\" Mandrake Kontrol Zentroan."
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Sareko inprimagailuak inprimatzeko, hautatu \"Utzi\", hautatu \"Aditu modua"
-"\", eta egin klik \"Gehitu inprimagailu berria\" aukeran berriro."
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"Inprimagailu hau detektatu da automatikoki, zuk konfiguratu nahi duzuna ez "
-"bada, idatzi gailuaren izena/fitxategi-izena"
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"Automatikoki detektatutako inprimagailuen zerrenda da hau. Hautatu "
-"konfiguratu nahi duzuna edo idatzi gailuaren izena/fitxategi-izena"
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-"Inprimagailu hau detektatu da automatikoki. Inprimagailuaren konfigurazioa "
-"automatikoki egingo da. Inprimagailua ondo detektatu ez bada edo nahiago "
-"baduzu konfigurazio pertsonalizatua, aldatu \"Eskuzko konfigurazioa"
-"\"aukerara."
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Automatikoki detektatutako inprimagailuen zerrenda da hau. Hautatu "
-"konfiguratu nahi duzuna. . Inprimagailuaren konfigurazioa zeharo "
-"automatikoki egingo da. Inprimagailua ondo detektatu ez bada edo nahiago "
-"baduzu konfigurazio pertsonalizatua, hautatu \"Eskuzko konfigurazioa\"."
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Hautatu inprimagailua konektatuta dagoen ataka edo idatzi gailuaren izena/"
-"fitxategi-izena"
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Aukeratu inprimagailua konektatuta dagoen ataka."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Ataka paraleloak: /dev/lp0, /dev/lp1..., baliokideak dira LPT1:, LPT2:..., "
-"lehen USB inprimagailua: /dev/usb/lp0, 2. USB inprimagailua: /dev/usb/"
-"lp1, ...)."
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Inprimagailua/gailua aukeratu/adierazi behar duzu!"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Eskuzko konfigurazioa"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-"Zure inprimagailua funtzio anitzeko HP gailua da (OfficeJet, PSC, "
-"PhotoSmart, LaserJet 1100/1200/1220/3200/3300 eskanerrarekin)?"
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "HPOJ paketea instalatzen..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Gailua egiaztatzen eta HPOJ konfiguratzen..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "SANE paketea instalatzen..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Funtzio anitzeko HP gailuan eskaneatzen"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "Inprimagailu-ataka CUPSerako erabilgarri egiten..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Inprimagailuaren datu-basea irakurtzen..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Urruneko lpd inprimagailuaren aukerak"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Urruneko lpd inprimagailua erabiltzeko, inprimagailu-zerbitzariaren "
-"ostalari-\n"
-"izena eta zerbitzari horretako inprimagailu-izena eman behar dituzu."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Urruneko ostalari-izena"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Urruneko inprimagailu-izena"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Urruneko ostalari izena falta da!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Urruneko inprimagailu-izena falta da!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) inprimagailuaren aukerak"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"SMB inprimagailuan inprimatzeko, SMB ostalari-izena eman behar duzu (Oharra! "
-"Baliteke TCP/IP ostalari-izena desberdina izatea!) eta beharbada inprimaketa-"
-"zerbitzariaren IP helbidea eta baita atzitu nahi duzun inprimagailuaren "
-"konpartitze-izena eta erabiltzaile-izenak, pasahitzak eta lantalde-"
-"informazioa ere."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "SMB zerbitzariaren ostalaria"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "SMB zerbitzariaren IP"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Konpartitze-izena"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Lantaldea"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Zerbitzari-izena edo zerbitzariaren IP eman behar da!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Samba konpartitze-izena falta da!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "NetWare inprimagailuaren aukerak"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"NetWare inprimagailuan inprimatzeko, NetWare inprimaketa-zerbitzariaren "
-"izena eman behar duzu (Oharra! baliteke bere TCP/IP ostalari-izena "
-"desberdina izatea!) eta baita atzitu nahi duzun inprimagailuaren inprimaketa-"
-"ilararen izena eta erabiltzaile-izenak eta pasahitzak ere."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Inprimagailu-zerbitzaria"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Inprimaketa-ilararen izena"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "NCP zerbitzari-izena falta da!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "NCP ilara-izena falta da!"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Socket inprimagailuaren aukerak"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Socket inprimagailuan inprimatzeko, inprimagailuaren ostalari-izena\n"
-"eman behar duzu eta, nahi baduzu, ataka-zenbakia. HP JetDirect "
-"zerbitzarietan ataka-zenbakia normalki 9100 izaten da, beste zerbitzari "
-"batzuetan aldatu egin daiteke. Begiratu zure hardwarearen eskuliburuan."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Inprimagailuaren ostalari-izena"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Inprimagailuaren ostalari izena falta da!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Inprimagailuaren URIa"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Inprimagailua atzitzeko URIa zuzenean zehatz dezakezu. URIak CUPS edo "
-"Foomatic zehaztapenak bete behar ditu. Kontuan izan spooler guztiek ez "
-"dituztela URI mota guztiak onartzen."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Baliozko URI bat sartu behar da!"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Inprimagailu bakoitzak izen bat behar du (adibidez \"inprimagailua\"). "
-"Azalpenaren eta Kokalekuaren eremuak ez dira nahitaez bete behar. "
-"Erabiltzaileentzako iruzkinak dira."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Inprimagailuaren izena"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Azalpena"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Kokalekua"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Inprimagailuaren datu-basea prestatzen..."
-
-#: ../../printerdrake.pm_.c:1112
-msgid "Your printer model"
-msgstr "Zure inprimagailu-modeloa"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Printerdrake-k inprimagailua auto-detektatzean lortutako modelo-izena "
-"inprimagailuen datu-basean dituen modeloekin konparatu du, egokiena "
-"aurkitzeko. Aukera okerrekoa izan daiteke, batez ere zure inprimagailua ez "
-"bada azaltzen datu-baseko zerrendan. Beraz, begiratu aukera egokia den eta, "
-"hala bada, egin klik \"Modeloa zuzena da\"n, bestela, egin klik \"Hautatu "
-"modeloa eskuz\"en hurrengo pantailara joan eta modeloa eskuz hautatzeko.\n"
-"\n"
-"Hau aurkitu du Printerdrake-k zure inprimagailuarentzat:\n"
-"\n"
-"%s"
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-msgid "The model is correct"
-msgstr "Modeloa zuzena da"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-msgid "Select model manually"
-msgstr "Hautatu modeloa eskuz"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Inprimagailu-modeloaren hautapena"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Zein inprimagailu-modelo daukazu?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Begiratu Printerdrake-k ondo detektatu duen automatikoki zure inprimagailu-"
-"modeloa. Bilatu modelo egokia zerrendan kurtsorea okerreko modeloan edo "
-"\"Inprimagailu gordinean\" badago."
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Zure inprimagailua ez badago zerrendan, aukeratu bateragarria (ikus "
-"inprimagailuaren eskuliburua) edo antzekoa den bat "
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "OKI winprinter-en konfigurazioa"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"OKI laser winprinter inprimagailua konfiguratzen ari zara. Inprimagailu "
-"horiek oso komunikazio-protokolo berezia erabiltzen dute eta beraz "
-"paraleloko lehen atakara konektatuta soilik funtzionatzen dute. "
-"Inprimagailua beste ataka batera edo inprimaketa-zerbitzari batera "
-"konektatuta badago, konektatu inprimagailua paraleloko lehen atakarekin "
-"probako orria inprimatu aurretik. Bestela, inprimagailuak ez du "
-"funtzionatuko. Zure konexio-motaren ezarpena ez du kontuan hartuko "
-"kontrolatzaileak."
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjet inprimagailuaren konfigurazioa"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Lexmark-en Inkjet inprimagailu-kontrolatzaileek inprimagailu lokalak soilik "
-"onartzen dituzte, ez urruneko makinetako inprimagailuak edo inprimaketa-"
-"zerbitzariak. Konektatu zure inprimagailua ataka lokal batera edo konfigura "
-"ezazu konektatuta dagoen makinan."
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-"Lexmark inkjet-ekin eta konfigurazio honekin inprimatu ahal , izateko, "
-"Lexmark-ek emandako inkjet inprimagailu-kontrolatzaileak behar dituzu "
-"(http://www.lexmark.com/). Joan Estatu Batuetako gunera eta egin klik "
-"\"Drivers\" botoian. Gero aukeratu modeloa eta ondoren \"Linux\" sistema "
-"eragile gisa. Kontrolatzaileak RPM pakete gisa edo instalazio grafiko "
-"interaktiboa duten shell script gisa egoten dira. Ez da beharrezkoa "
-"konfigurazio hau interfaze grafikoen bidez egitea. Ezeztatu zuzenean "
-"lizentzia-kontratuaren ondoren. Gero inprimatu inprimatze-burua lerrokatzeko "
-"orriak \"lexmarkmaintain\"ekin eta doitu burua lerrokatzeko ezarpenak "
-"programa honekin."
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Inprimagailuaren ezarpen lehenetsiak\n"
-"\n"
-"Ziurtatu orri-tamaina eta tinta-mota/inprimatzeko modua (erabilgarri badago)"
-"eta laser inprimagailuaren hardware-konfigurazioa zuzen ezarri direla. "
-"Kontuan hartu inprimatzeko kalitatea oso handia bada askoz mantsoago "
-"inprimatuko duela segurutik."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "%s aukerak osoko zenbakia izan behar du!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "%s aukerak zenbakia izan behar du!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "%s aukera barrutitik kanpo dago!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Inprimagailu hau (\"%s\")\n"
-"lehenetsi nahi duzu?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Proba-orriak"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Hautatu inprimatu nahi dituzun proba-orriak.\n"
-"Kontuan hartu: argazkien proba-orriak denbora asko behar izan dezake "
-"inprimatzeko, eta memoria gutxiko laser inprimagailuetan baliteke ez "
-"ateratzea ere. Gehienetan nahikoa izaten da proba-orri estandarra "
-"inprimatzea."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Proba-orririk ez"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Inprimatu"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Proba-orri estandarra"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Proba-orri alternatiboa (Letter)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Proba-orri alternatiboa (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Argazkien proba-orria"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "Ez inprimatu proba-orririk"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Proba-orria(k) inprimatzen..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Proba-orria(k) inprimagailura bidali dira.\n"
-"Denbora pixka bat igaro liteke inprimatzen hasi arte.\n"
-"Inprimatze-egoera:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Proba-orria(k) inprimagailura bidali dira.\n"
-"Denbora pixka bat igaro liteke inprimatzen hasi arte.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "Ongi egin du?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Inprimagailu \"gordina\""
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Fitxategi bat komando-lerrotik (terminal-leihoa) inprimatzeko, \"%s "
-"<fitxategia>\" komandoa edo inprimatze-tresna grafiko bat erabil dezakezu: "
-"\"xpp <fitxategia>\" edo \"kprinter <fitxategia>\". Tresna grafikoak "
-"inprimagailua hautatzeko eta aukeren ezarpenak erraz aldatzeko erabiltzen "
-"dira.\n"
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Komando horiek aplikazio askotako inprimatze-elkarrizketetako \"Inprimatzeko "
-"komandoa\" eremuan erabil ditzakezu ere, baina hor ez eman fitxategi-izena, "
-"inprimatu behar den fitxategia aplikazioak ematen baitu.\n"
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"\"%s\" komandoaren bidez ere alda daitezke inprimatze-lan jakin baten aukera-"
-"ezarpenak. Gehitu nahi dituzun ezarpenak komando-lerroari, adib. \"%s "
-"<fitxategia>\". "
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"Uneko inprimagailuak dituen aukerak ezagutzeko, irakurri ondoko zerrenda edo "
-"egin klik \"Inprimatzeko aukeren zerrenda\" botoian.%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Hemen duzu inprimagailu honen inprimatzeko aukeren zerrenda:\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Fitxategi bat komando-lerrotik (terminal-leihoa) inprimatzeko, erabili \"%s "
-"<fitxategia>\" komandoa.\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Komando hau aplikazio askotako inprimatze-elkarrizketetako \"Inprimatzeko "
-"komandoa\" eremuan ere erabil dezakezu. Baina hor ez eman fitxategi-izena, "
-"inprimatu behar den fitxategia aplikazioak ematen baitu.\n"
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Uneko inprimagailuaren aukera erabilgarrien zerrenda eskuratzeko, egin klik "
-"\"Inprimatzeko aukeren zerrenda\" botoian."
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Fitxategi bat komando-lerrotik (terminal-leihoa) inprimatzeko, erabili \"%s "
-"<fitxategia>\" komandoa edo \"%s <fitxategia>\".\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"\"xpdq\" interfaze grafikoa ere erabil dezakezu aukerak ezartzeko eta "
-"inprimatze-lanak maneiatzeko.\n"
-"KDE erabiltzen baduzu mahaigaineko ingurune gisa, \"estualdi-botoi\" bat "
-"egongo da, \"GELDITU inprimagailua!\" dioena, eta inprimatze-lan guztiak "
-"berehala etengo ditu bertan klik egitean. Papera trabatzen denean eta "
-"horrelakoetan erabili ohi da.\n"
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"\"%s\" eta \"%s\" komandoen bidez inprimatze-lan baten aukera-ezarpenak alda "
-"daitezke. Aski da nahi diren ezarpenak komando-lerroan gehitzea, adib.: \"%s "
-"<fitxategia>\".\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Itxi"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "\"%s\": inprimatzen/eskaneatzen"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "\"%s\" inprimagailuan inprimatzen"
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Inprimatzeko aukeren zerrenda"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Funtzio anitzeko HP gailua automatikoki konfiguratuta dago eskaneatzeko. "
-"Orain \"scanimage\"rekin eskanea dezakezu (\"scanimage -d hp:%s\" eskanerra "
-"zehazteko, bat baino gehiago badituzu) komando-lerrotik edo \"xscanimage\" "
-"edo \"xsane\" interfaze grafikoekin. GIMP erabiltzen baduzu, \"File\"/"
-"\"Acquire\" menuko puntu egokiaren bidez ere eskanea dezakezu. Informazio "
-"gehiago nahi baduzu, idatzi \"man scanimage\" eta \"man sane-hp\" komando-"
-"lerroan.\n"
-"\n"
-"Ez erabili \"scannerdrake\" gailu honekin!"
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Funtzio anitzeko HP gailua automatikoki konfiguratuta dago eskaneatzeko. "
-"Orain komando-lerrotik eskanea dezakezu \"ptal-hp %s scan ...\"ekin. Zure "
-"gailuak ez du onartzen interfaze grafikoaren edo GIMPen bidez eskaneatzea. "
-"Informazio gehiago, sistemako \"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" "
-"fitxategian aurkituko duzu. HP LaserJet 1100 edo 1200 baldin baduzu, "
-"eskanerraren aukera instalatuta daukazunean bakarrik eskaneatu ahal izango "
-"duzu.\n"
-"\n"
-"Ez erabili \"scannerdrake\" gailu honekin!"
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Inprimagailu-datuak irakurtzen..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Transferitu inprimagailu-konfigurazioa"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"%s spooler-erako egin duzun inprimagailu-konfigurazioa %s spooler-era (uneko "
-"spooler-era) kopia dezakezu. Konfigurazio-datu guztiak (inprimagailuaren "
-"izena, azalpena, kokalekua, \n"
-"konexio-mota eta aukera-ezarpenak lehenetsiak) hartuko ditu, baina lanak ez "
-"dira transferituko.\n"
-"Ilara guztiak ezin dira transferitu, ondorengo arrazoiak direla eta:\n"
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPSek ez ditu onartzen Novell zerbitzarietako inprimagailuak edo datuak "
-"libre osatutako komando batean bidaltzen dituztenak.\n"
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQk inprimagailu lokalak, urruneko LPD inprimagailuak eta Socket/TCP "
-"inprimagailuak soilik onartzen ditu.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPDk eta LPRng-ek ez dute IPP inprimagailurik onartzen.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Gainera, programa honen edo \"foomatic-configure\"ren bidez sortu ez diren "
-"ilarak ezin dira transferitu."
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Halaber, fabrikatzaileek emandako PPD fitxategiekin edo jatorrizko CUPS "
-"kontrolatzaileekin konfiguratutako inprimagailuak ezin dira transferitu."
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Markatu transferitu nahi dituzun inprimagailuak eta sakatu\n"
-"\"Transferitu\"."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Ez transferitu inprimagailuak"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Transferitu"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"\"%s\" izeneko inprimagailu bat badago %s(e)n. \n"
-"Sakatu \"Transferitu\" gainidazteko.\n"
-"Beste izen bat idatz dezakezu, edo inprimagailu hori saltatu."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"Inprimagailu-izenak letrak, zenbakiak eta azpimarra soilik eduki behar ditu"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"\"%s\" inprimagailua badago lehendik ere,\n"
-"bere konfigurazioa gainidatzi nahi duzu?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Inprimagailu-izen berria"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "%s transferitzen..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Zure lehengo inprimagailu lehenetsia (\"%s\") transferitu duzu, Inprimagailu "
-"lehenetsia izan behar du %s inprimatze-sistema berrian ere?"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Inprimagailuaren datuak freskatzen..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Urruneko inprimagailu baten konfigurazioa"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Sarea abiarazten ..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Konfiguratu sarea orain"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "Sare-funtzionalitatea ez dago konfiguratuta"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Urruneko inprimagailu bat konfiguratzera zoaz. Sarerako sarbidea behar duzu "
-"horretarako, baina sarea konfiguratu gabe dago. Aurrera jarraitzen baduzu "
-"sarea konfiguratu gabe, ezin izango duzu orain konfiguratzen ari zaren "
-"inprimagailua erabili. Zer egin nahi duzu?"
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Jarraitu sarea konfiguratu gabe"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-"Instalazioan egindako sare-konfigurazioa ezin da abiarazi orain. "
-"Berrabiarazi sistema eta begiratu ea sarean sartzen zaren eta, ondoren, "
-"zuzendu konfigurazioa Mandrake Kontrol Zentroko \"Sarea eta Internet\"/"
-"\"Konexioa\" atalean, eta gero konfiguratu inprimagailua, Mandrake Kontrol "
-"Zentroan bertan, \"Hardwarea\"/\"Inprimagailua\" atalean."
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Sarerako sarbidea ez dago martxan eta ezin da abiarazi. Begiratu "
-"konfigurazioa eta hardwarea ondo dauden. Gero saiatu berriro urruneko "
-"inprimagailua konfiguratzen."
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Inprimatze-sistema berrabiarazten ..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "handia"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "paranoidea"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Inprimatze-sisteman segurtasun-maila %s instalatzen"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"%s inprimatze-sistema segurtasun-maila %sn dabilen sisteman instalatzera "
-"zoaz.\n"
-"\n"
-"Inprimatze-sistema honek inprimatze-lanei itxaroteko eta lanak maneiatzeko "
-"daemon (atzeko planoko prozesu) bat exekutatzen du. Daemon hori urruneko "
-"makinek ere atzitu dezakete sarearen bitartez eta hala, erasoak jasateko "
-"gunea izan daiteke. Beraz, daemon hautatu bakan batzuk besterik ez dira "
-"abiarazten lehenespenez segurtasun-maila honetan.\n"
-"\n"
-"Makina honetan konfiguratu nahi duzu inprimaketa?"
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Abioan inprimatze-sistema abiarazi"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"(%s) inprimatze-sistema ez da automatikoki hasiko makina abiarazten denean.\n"
-"\n"
-"Baliteke abiarazte automatikoa desaktibatuta egotea segurtasun-maila "
-"handiagora aldatu delako, eta inprimatze-sistema eraso-gune potentziala "
-"delako.\n"
-"\n"
-"Inprimatze-sistema automatikoki hastea berriro aktibatu nahi duzu?"
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Instalatutako softwarea egiaztatzen..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "LPRng kentzen..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "LPD kentzen..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Hautatu inprimagailuaren spooler-a"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Zein inprimatze-sistema (spooler) erabili nahi duzu?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "\"%s\" inprimagailua konfiguratzen..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "Foomatic instalatzen ..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Inprimagailuaren aukerak"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "PrinterDrake prestatzen..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-msgid "Configuring applications..."
-msgstr "Aplikazioak konfiguratzen..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Inprimaketa konfiguratu nahi duzu?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Inprimatze-sistema: "
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Ondoko inprimagailuak daude konfiguratuta. Egin klik bikoitza inprimagailu "
-"batean ezarpenak aldatzeko; inprimagailua lehenesteko; informazioa ikusteko; "
-"edo urruneko CUPS zerbitzari bateko inprimagailu bat Star Office/OpenOffice."
-"org-rentzat erabilgarri egiteko."
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Ondoko inprimagailuak daude konfiguratuta. Ezarpenak aldatzeko, inprimagailu "
-"bat lehenesteko edo informazioa ikusteko, egin klik bikoitza inprimagailu "
-"batean."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "Freskatu inprimagailu-zerrenda (urruneko CUPS inprimagailuak ikusteko)"
-
-#: ../../printerdrake.pm_.c:2464
-msgid "Change the printing system"
-msgstr "Aldatu inprimatzeko sistema"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Modu normala"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Beste inprimagailu bat konfiguratu nahi duzu?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Aldatu inprimagailuaren konfigurazioa"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"%s inprimagailua\n"
-"Zer da inprimagailu honetan aldatu nahi duzuna?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "Egin!"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Inprimagailuaren konexio-mota"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Inprimagailuaren izena, azalpena, kokalekua"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Inprimagailuaren fabrikatzailea, modeloa, kontrolatzailea"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Inprimagailuaren fabrikatzailea, modeloa"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Ezarri inprimagailu hau lehenetsi gisa"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Gehitu inprimagailu hau Star Office/OpenOffice.org-n"
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Kendu inprimagailu hau Star Office/OpenOffice.org-tik"
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Inprimatu proba-orriak"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Ikasi inprimagailua erabiltzen"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Kendu inprimagailua"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "\"%s\" inprimagailu zaharra kentzen..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Inprimagailu lehenetsia"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "\"%s\" inprimagailua lehenetsi gisa ezarri da orain."
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Star Office/OpenOffice.org-n inprimagailua gehitzen"
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-"\"%s\" inprimagailua behar bezala gehitu da Star Office/OpenOffice.org-n."
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-"Huts egin du \"%s\" inprimagailua Star Office/OpenOffice.org-n gehitzean."
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Inprimagailua Star Office/OpenOffice.org-tik kentzen"
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-"\"%s\" inprimagailua behar bezala kendu da Star Office/OpenOffice.org-tik."
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-"Huts egin du \"%s\" inprimagailua Star Office/OpenOffice.org-tik kentzean."
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "\"%s\" inprimagailua kendu nahi duzu?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "\"%s\" inprimagailua kentzen..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Proxy-konfigurazioa"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Ongi etorri proxy-a konfiguratzeko utilitatera.\n"
-"\n"
-"Hemen zure http eta ftp proxy-ak konfiguratu ahal izango\n"
-"dituzu, erabiltzaile-izenarekin eta pasahitzarekin edo gabe.\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Bete http proxy-aren datuak\n"
-"Utzi hutsik ez baduzu http proxy-rik nahi"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URLa"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "ataka"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "URLaren hasieran 'http:' jarri behar du"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Atakaren zatiak zenbakizkoa izan behar du"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Bete ftp proxy-aren datuak\n"
-"Utzi hutsik ez baduzu ftp proxy-rik nahi"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "URLaren hasieran 'ftp:' jarri behar du"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Sartu proxy-aren erabiltzaile-izena eta pasahitza, baldin badago.\n"
-"Utzi hutsik ez baduzu erabiltzaile-izen/pasahitzik nahi"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "erabiltzaile-izena"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "pasahitza"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "idatzi pasahitza berriro"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Pasahitzak ez datoz bat. Saiatu berriro!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Ezin zaio partizio bat gehitu RAID md%d-ri (formateatuta dago)"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Ezin da %s fitxategia idatzi"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid-ek huts egin du"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid-ek huts egin du (beharbada raid-tresnak faltako dira?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Ez dago nahikoa partizio %d RAID mailarako\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Abiarazi ALSA (Advanced Linux Sound Architecture) soinu-sistema"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, komando-antolatzaile periodikoa."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd bateriaren egoera kontrolatzeko eta syslog-en jasotzeko erabiltzen\n"
-"da. Bateria gutxi dagoenean makina itzaltzeko ere erabil daiteke."
-
-#: ../../services.pm_.c:18
-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 ""
-"at komandoaren bidez programatutako komandoak exekutatzen ditu at \n"
-"exekutatzean zehaztutako orduan, eta batch komandoak exekutatzen ditu \n"
-"batezbesteko karga nahikoa baxua denean."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron UNIX programa estandar bat da, erabiltzaileak zehaztutako programak\n"
-"programatutako orduan exekutatzen dituena. vixie cron-ek hainbat eginbide \n"
-"gehitzen dizkio oinarrizko UNIX cron-i, hala nola segurtasun hobea eta "
-"konfigurazio-aukera ahaltsuagoak."
-
-#: ../../services.pm_.c:23
-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 ""
-"GPMk saguaren euskarria gehitzen die Midnight Commander bezalako\n"
-"testuan oinarritutako Linux aplikazioei. Halaber kontsolan saguaren bidez "
-"ebaki eta itsasteko aukera ematen du eta laster-menuen euskarria eransten du."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake-k hardware-proba bat exekutatzen du eta nahi izanez \n"
-"gero hardware berria/aldatua konfiguratzen du."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache World Wide Web-eko zerbitzari bat da. HTML fitxategiak eta CGI "
-"zerbitzatzeko erabili ohi da."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Interneteko superzerbitzariaren daemon-ak (normalki inetd deitua) beste\n"
-"hainbat Internet-zerbitzu abiarazten ditu, behar izan ahala. Zerbitzu asko "
-"abiarazten ditu,\n"
-"hala nola telnet, ftp, rsh, eta rlogin. inetd desgaitzean bere ardurapeko\n"
-"zerbitzu guztiak desgaitzen dira."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Abiarazi Linux-nukleoen 2.2 serieko pakete-iragazketa, zure \n"
-"makina sareko erasoetatik babesteko suebaki bat ezartzeko."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Pakete honek hautatutako teklatu-mapa kargatzen du\n"
-"/etc/sysconfig/keyboard fitxategian ezarritakoaren arabera. kbdconfig "
-"utilitatearen bidez hauta daiteke teklatu-mapa.\n"
-"Zerbitzu hau gaituta uztea komeni da makina gehienetan."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Nukleoaren goiburukoaren birsortze automatikoa /boot-en\n"
-"honentzat: /usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Hardwarea automatikoki detektatu eta konfiguratzea abioan."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf-ek batzuetan hainbat ataza egiten ditu abioan\n"
-"sistemaren konfigurazioa mantentzeko."
-
-#: ../../services.pm_.c:43
-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 inprimaketako daemon-a da. Beharrezkoa da lpr-k ondo funtziona\n"
-"dezan. Inprimatze-lanak inprimagailu(eta)ra esleitzen dituen zerbitzaria da."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux-en Zerbitzari Birtuala, performantzia handiko zerbitzari oso\n"
-"erabilgarria eraikitzeko erabiltzen da."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) domeinu-izenen zerbitzari bat (DNS) da, ostalari-izenak ebatzi "
-"eta IP helbide bihurtzeko erabiltzen dena."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Network File System (NFS), SMB (Lan Manager/Windows), eta NCP \n"
-"(NetWare) muntatze-puntu guztiak muntatu eta desmuntatzen ditu."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Abioan hasteko konfiguratuta dauden sare-interfaze guztiak\n"
-"aktibatzen/desaktibatzen ditu."
-
-#: ../../services.pm_.c:52
-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 protokolo ezagun bat da, TCP/IP sareetan fitxategiak konpartitzeko.\n"
-"Zerbitzu honek NFS zerbitzariaren funtzionaltasuna (/etc/exports "
-"fitxategian\n"
-"konfiguratua) eskaintzen du."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS protokolo ezagun bat da, TCP/IP sareetan fitxategiak \n"
-"konpartitzeko. Zerbitzu honek NFS fitxategi-blokeatzearen funtzionalitatea\n"
-"eskaintzen du."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Abioan automatikoki aktibatu BlokZenb tekla (zenbakiak\n"
-"blokeatzekoa) kontsolan eta XFree-n."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Onartu OKI 4w eta winprinter bateragarriak."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA euskarria eramangarrietan ethernet eta modemak\n"
-"eta horrelakoak onartzeko izaten da normalki. Ez da abiaraziko "
-"konfiguratuta izan ezean, beraz\n"
-"lasai eduki daiteke instalatuta premiarik izan ez arren."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Ataka-mapatzaileak RPC konexioak kudeatzen ditu. Konexio horiek\n"
-"NFS eta NIS moduko protokoloek erabiltzen dituzte. RPC mekanismoa erabiltzen "
-"duten\n"
-"protokoloen zerbitzari gisa jokatzen duten makinetan aktibatu behar da\n"
-"ataka-maparen zerbitzaria."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix posta garraiatzeko agentea da (Mail Transport Agent - MTA), hau da, "
-"posta elektronikoa makina batetik bestera eramaten duen programa."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Sistemaren entropia gorde eta leheneratzen du ausazko zenbakiak\n"
-"hobeto sortzeko."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Esleitu gailu \"gordinak\" (raw devices) blokeko gailuei \n"
-"(disko gogorreko partizioak adib.), Oracle bezalako aplikazioentzat."
-
-#: ../../services.pm_.c:71
-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 daemon-arekin IP bidatze-taula automatikoki egunera daiteke,\n"
-"RIP protokoloaren bidez. RIP asko erabiltzen da sare txikietan, baina\n"
-"banabide-protokolo konplexuagoak behar dira sare konplexuetan."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat protokoloari esker, sareko erabiltzaileek sare horretako \n"
-"edozein makinaren performantzia nolakoa den jakin dezakete."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"rusers protokoloak sare bateko erabiltzaileei beste makina batzuetan\n"
-"nor sartzen den identifikatzeko aukera ematen die."
-
-#: ../../services.pm_.c:78
-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 protokoloak urruneko erabiltzaileei rwho daemon-a (finger-en antzekoa)\n"
-"duen makina batean sartutako erabiltzaile guztien zerrenda eman diezaieke."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Abiarazi zure makinako soinu-sistema"
-
-#: ../../services.pm_.c:81
-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, daemon askok erabiltzen duten zerbitzua da, mezuak sistemako\n"
-"hainbat egunkari-fitxategitan sartzeko. Komeni izaten da syslog beti "
-"exekutatzea."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Kargatu USB gailuen kontrolatzaileak."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"X letra-tipoen zerbitzaria abiarazten du (nahitaezkoa da XFree-k\n"
-"funtzionatu ahal izan dezan.)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Aukeratu zein zerbitzari abiarazi behar den automatikoki abioan"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Inprimatzea"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Fitxategi-konpartitzea"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "Sistema"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Urruneko administrazioa"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Datu-baseen zerbitzaria"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Zerbitzuak: %d aktibatuta / %d erregistratuta"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Zerbitzuak"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "martxan"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "geldituta"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Zerbitzuak eta daemon-ak"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Ez dago zerbitzu honi buruzko\n"
-"informazio gehiago."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Abioan"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Hasi"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Gelditu"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Eskerrik asko Mandrake Linux 8.2 aukeratzeagatik"
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr "Ongi etorri iturburu irekiaren mundura"
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-"MandrakeSoft-en arrakastaren funtsa software librearen printzipioa da. Zure "
-"sistema eragile berria mundu osoko Linux komunitatearen elkarlanaren emaitza "
-"da"
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "Sar zaitez software librearen munduan"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-"Ezagutu iturburu irekiaren komunitatea eta egin zaitez partaide. "
-"Sartu eztabaida-taldeetan \"Komunitatearen\" web orrien bidez eta ikasi, "
-"irakatsi eta lagundu beste batzuei."
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet eta mezularitza"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-"Mandrake Linux 8.2k software-aukera onenak eskaintzen dizkizu Internetek "
-"eman lezakeen guztia eskura dezazun. Murgildu amaraunean eta ikusi "
-"animazioak Mozilla eta Konqueror-ekin, trukatu mezuak eta antolatu zure "
-"informazio pertsonala Evolution eta Kmail-ekin, eta askoz ere gehiago"
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedia eta grafikoak"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-"Mandrake Linux 8.2ekin zure multimedia ordenagailua mugaraino eramango duzu! "
-"Erabili audio-fitxategiak erreproduzitzeko, irudiak eta argazkiak editatu "
-"eta manipulatzeko eta TB eta bideoak ikusteko eta beste gauza askotarako "
-"azken softwarea "
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Garapena"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-"Mandrake Linux 8.2 garapen-plataforma ezin hobea da. Ezagutu GNU gcc "
-"konpilatzailearen ahalmen osoa eta iturburu irekiko garapen-ingurune onenak"
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Mandrake-ren Kontrol Zentroa"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-"Mandrake Linux 8.2ren Kontrol Zentroak leku bakarretik zure Mandrake sistema "
-"erabat konfiguratu eta pertsonalizatzeko aukera ematen dizu"
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "Erabiltzaile-interfazeak"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-"Mandrake Linux 8.2k 11 mahaigaineko ingurune grafiko eta leiho-kudeatzaile "
-"desberdin ematen ditu aukeran, horien artean, GNOME 1.4, KDE 2.2.2, Window "
-"Maker 0.8, eta abar"
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Zerbitzari-softwarea"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-"Bihur ezazu zure makina zerbitzari ahaltsu, saguaren klik gutxi batzuk "
-"eginez: Web zerbitzaria, posta, suebakia, bidatzailea, fitxategi- eta "
-"inprimaketa-zerbitzaria,..."
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Jokoak"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-"Mandrake Linux 8.2k iturburu irekiko jokorik onenak eskaintzen ditu - makina-"
-"jokoak, kiroletakoak, estrategiakoak, ..."
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-"Linux erabiltzen ikasi nahi duzu erraz, bizkor, eta doan? MandrakeSoft-ek "
-"Linux ikasteko doako zerbitzua eskaintzen dugu, zure aurrerapena neurtuz, "
-"MandrakeCampus lineako trebakuntza-zentroaren bidez"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-"Kalitatezko laguntza-zerbitzua eskaintzen dute Linux komunitateak eta "
-"MandrakeSoft-ek, eta hortxe bertan duzu. Linux-en beteranoa bazara, egin "
-"zaitez \"Aditu\", eta konpartitu zure jakituria eta gure laguntzako web "
-"gunea "
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-"Zure IT proiektuetarako, hor dituzu gure ahokulariak, zure premiak ulertu "
-"eta konponbide pertsonalizatua emateko prest. MandrakeSoft-ek, Linux ekoizle "
-"gisa duen esperientzia handiarekin, benetako IT alternatiba ematen du "
-"enpresa-antolamendurako"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-"Gure denda elektronikoan eskuragai dituzu gure Linux soluzioen aukera "
-"zabala, produktuei buruzko eskaintza bereziak eta bestelako 'gutiziak'"
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-"MandrakeSoft-en Zerbitzu Profesionalei eta eskaintza komertzialei buruzko "
-"informazioa nahi baduzu, ikus web orri hau:"
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Paketeak instalatzen..."
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Ezin dut zure partizio-taula irakurri, hondatuegia dago :(\n"
-"Partizio txarrak garbitzen saiatuko naiz"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Errorea!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Ezin da aurkitu `%s' imajina-fitxategia, eta beharrezkoa da."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Instalazio automatikoaren konfiguratzailea"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Auto-instalazioko diskete bat konfiguratzera zoaz. Eginbide hau arriskutsu "
-"samarra da eta kontuz ibili behar da.\n"
-"\n"
-"Eginbide honekin, ordenagailu honetan egin duzun instalazioa errepikatu ahal "
-"izango duzu, eta urrats batzuetan datuak eskatuko zaizkizu interaktiboki, "
-"balioak aldatu ahal izateko.\n"
-"\n"
-"Ahalik eta segurtasun handiena izateko, partizioa egitea eta formateatzea ez "
-"dira inoiz automatikoki egingo, berdin dio zer aukeratu duzun ordenagailu "
-"hau instalatu duzunean.\n"
-"\n"
-"Jarraitu nahi duzu ?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Urrats automatikoen konfigurazioa"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Aukeratu urrats bakoitzean instalazioa errepikatuko den, ala eskuz egingo "
-"duzun"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Ongi etorri.\n"
-"\n"
-"Auto-instalazioko parametroak ezkerreko sekzioetan daude erabilgarri"
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Zorionak!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Disketea behar bezala sortu da.\n"
-"Orain zure instalazioa errepika dezakezu."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Instalazio automatikoa"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Gehitu elementu bat"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Kendu azken elementua"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr "***********************************************************************\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup-en berri-ematea \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Daemon-aren berri-ematea\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup-en berri-ematearen xehetasunak\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "progresioa guztira"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "Sistema-fitxategien babeskopia"
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "Disko gogorraren babeskopia fitxategiak... "
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "Erabiltzaile-fitxategien babeskopia... "
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Disko gogorraren babeskopia egiten..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Beste fitxategi batzuen babeskopia... "
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"FTPk bidalitako fitxategi-zerrenda: %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) FTP konexio-arazoa: zure babeskopien fitxategiak ezin izan dira bidali "
-"FTP bidez.\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Errorea posta bidaltzean. \n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "Fitxategi-hautapena"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr "Hautatu fitxategiak edo direktorioak eta egin klik 'Gehitu'n"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Hautatu behar dituzun aukera guztiak.\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Aukera horiek /etc direktorioko fitxategi guztiak kopiatu eta leheneratu "
-"ditzakete.\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Sistema-fitxategien babeskopia. ( /etc direktorioa )"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Erabili babeskopia inkrementala (ez ordeztu kopia zaharrak)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Ez sartu fitxategi kritikoak (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Aukera honekin /etc direktorioaren edozein bertsio leheneratu\n"
-"ahal izango duzu."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr "Hautatu babeskopian sartu nahi dituzun erabiltzaile guztiak."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "Ez sartu arakatzailearen cache-a"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Erabili babeskopia inkrementalak (ez ordeztu kopia zaharrak)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Kendu hautatutakoak"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows(FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "Erabiltzaileak"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Erabili FTP konexioa babeskopia egiteko"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Idatzi ostalariaren izena edo IPa."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-"Adierazi ostalariko direktorioa\n"
-"babeskopia jartzeko."
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Sartu saioa hasteko izena"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Sartu pasahitza"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Gogoratu pasahitza"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP konexioa"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Konexio segurua"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "Erabili CD/DVDROMa babeskopia egiteko"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Aukeratu CDko lekua"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Hautatu instalazio-abioa gehitu nahi\n"
-" baduzu CDan."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Adierazi CD idazgailuaren gailu-izena \n"
-" adib.: 0,1,0"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "Erabili zinta babeskopia egiteko"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "Adierazi babeskopiarako erabiliko den gailuaren izena"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Adierazi Drakbackup-en gehieneko\n"
-" tamaina "
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Adierazi gorde beharreko direktorioa:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Erabili kuota babeskopia-fitxategientzat"
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "Sarea"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "HardDrive / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "orduero"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "egunero"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "astero"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "hilero"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "Erabili daemon-a"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"Aukeratu babeskopiak egiteko \n"
-"maiztasuna"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"Aukeratu babeskopia \n"
-"egiteko euskarria."
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Erabili Disko gogorra daemon-arekin"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Erabili FTP daemon-arekin"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Ziurtatu cron daemon-a zerbitzuetan sartuta daukazula."
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "Babeskopia egindakoan, bidali berri-emateko mezua hona :"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "Zer"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "Non"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "Noiz"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "Aukera gehiago"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr " Drakbackup-en konfigurazioa"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Aukeratu non egin nahi duzun babeskopia"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "disko gogorrean"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "sarean zehar"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Aukeratu zeren kopia egin nahi duzun"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "Sistemaren babeskopia "
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "Erabiltzaileen babeskopia"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Hautatu erabiltzailea eskuz"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Babeskopien iturburua: \n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Sistema-fitxategiak:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Erabiltzaile-fitxategiak:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Bestelako fitxategiak:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- Gorde disko gogorrean, bide-izen honetan: %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- Gorde FTPan, ostalari honetan : %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t erabiltzaile-izena: %s\n"
-"\t\t bide-izena: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Aukerak:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tEz sartu sistema-fitxategiak\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tBabeskopietan erabili tar eta bzip2\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tBabeskopietan erabili tar eta gzip\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- Daemon-ean (%s) sartzen da :\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t Disko gogorra.\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-CDROMa.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\tFTP bidezko sarea.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\tSSH bidezko sarea.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Ez dago konfiguraziorik, egin klik Morroian edo Aurreratuan.\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Leheneratu beharreko datuen zerrenda:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Hondatutako datuen zerrenda:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "Desautatu edo kendu hurrengo aldian."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "Babeskopien fitxategiak hondatuta daude"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " Hautatu dituzun datu guztiak "
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " behar bezala leheneratu dira hona: %s "
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " leheneratzeko konfigurazioa "
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "Ados, leheneratu beste fitxategiak"
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Leheneratzeko erabiltzaile-zerrenda (erabiltzaile bakoitzaren datu berrienak "
-"bakarrik dira garrantzitsuak)"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "Kopiatu sistema-fitxategiak lehenago:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "aukeratu leheneratzeko data"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Erabili disko gogorra babeskopia egiteko"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Leheneratu disko gogorretik"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "Adierazi zein direktoriotan dauden babeskopiak"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Hautatu beste euskarri bat leheneratzeko"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Beste euskarri bat"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "Leheneratu sistema"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Leheneratu erabiltzaileak"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Leheneratu bestelakoak"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "hautatu leheneratzeko bidea ( / ordez)"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Egin babeskopia berria leheneratu aurretik (inkrementaletan soilik.)"
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Kendu erabiltzaile-direktorioak leheneratu aurretik."
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Leheneratu babeskopia guztiak."
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "Leheneratze pertsonalizatua"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Laguntza"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "Aurrekoa"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Gorde"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Egin babeskopia"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Leheneratu"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Hurrengoa"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Egin babeskopia leheneratu aurretik...\n"
-" edo egiaztatu gordetzeko bidea zuzena dela."
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"Errorea posta bidaltzean\n"
-" berri emateko mezua ez da bidali\n"
-" Konfiguratu posta-bidalketa"
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Instalatu beharreko pakete-zerrenda"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Errorea FTP bidez fitxategia bidaltzean.\n"
-" Zuzendu FTP konfigurazioa."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Hautatu leheneratzeko datuak..."
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Hautatu babeskopiaren euskarria..."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Hautatu babeskopia egiteko datuak..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Ez da konfigurazio-fitxategirik aurkitu \n"
-"egin klik Morroia-n edo Aurreratua-n."
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "Garatzen... itxaron."
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "Sistema-fitxategien babeskopia"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "Erabiltzaile-fitxategien babeskopia"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Bestelako fitxategien babeskopia"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Guztizko progresioa"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "fitxategiak FTP bidez bidaltzen"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Fitxategiak bidaltzen..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "CDROMean gehitzeko datu-zerrenda"
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Idatzi CD idazgailuaren abiadura"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Idatzi zure CD idazgailuaren izena (adib.: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Hautatu instalazio-abioa gehitu nahi baduzu CDan."
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "Egin babeskopia konfigurazio-fitxategitik"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Ikusi babeskopiaren konfigurazioa"
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "Morroiaren konfigurazioa"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "Konfigurazio aurreratua"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "Egin babeskopia orain"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-"aukeren azalpena:\n"
-"\n"
-" Urrats honetan, Drakbackup-en bidez aldatuko dituzu:\n"
-"\n"
-" - Konprimitze-modua:\n"
-" \n"
-" bzip2 konpresioa hautatuz, gzip-ekin baino hobeto\n"
-" konprimituko dituzu datuak (% 2-10 inguru).\n"
-" Aukera hau ez da lehenespen gisa hautatzen konpresio-modu\n"
-" honek denbora gehiago (% 1000 gehiago) hartzen duelako.\n"
-" \n"
-" - Eguneratze-modua:\n"
-"\n"
-" Aukera honek babeskopia eguneratuko du, baina ez da\n"
-" oso erabilgarria, eguneratu aurretik babeskopia\n"
-" deskonprimitu egin behar baita.\n"
-" \n"
-" - .backupignore modua:\n"
-"\n"
-" cvs-rekin bezala, Drakbackup-ek ezikusi egingo die\n"
-" .backupignore fitxategietako erreferentzia guztiei.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-"\n"
-" Posta bidaltzean izandako errore batzuk postfix gaizki \n"
-" konfiguratuta dagoelako izan dira. Konpontzeko, \n"
-" myhostname edo mydomain ezarri behar duzu hemen: /etc/postfix/main.cf\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-"aukeren azalpena:\n"
-"\n"
-" - Sistema-fitxategien babeskopia:\n"
-" \n"
-"\tAukera honen bidez konfigurazio-fitxategi guztiak dituen\n"
-"\t/etc direktorioaren babeskopia egin daiteke. Kontuz ibili\n"
-"\tleheneratze-urratsean, eta ez gainidatzi hauek:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Erabiltzaile-fitxategien babeskopia: \n"
-"\n"
-"\tAukera honen bidez, babeskopia egiteko erabiltzaileak\n"
-"\thauta ditzakezu.\n"
-"\tDisko-lekua gordetzeko, web arakatzailearen cachea ez \n"
-"\tsartzea komeni da.\n"
-"\n"
-" - Bestelako fitxategien babeskopia: \n"
-"\n"
-"\tAukera honen bidez, gordetzeko datu gehiago gehituko dituzu.\n"
-"\tBeste babeskopiekin ezin da oraindik babeskopia inkrementala hautatu.\t\t\n"
-" \n"
-" - Babeskopia inkrementalak:\n"
-"\n"
-"\tBabeskopia-aukera ahaltsuena da. Aukera honen\n"
-"\tbidez, lehen aldian datu guztien babeskopia egin\n"
-"\tdaiteke, eta gero aldatuenak bakarrik.\n"
-"\tGero, leheneratze-urratsean, data jakin bateko\n"
-"\tdatuak leheneratu ahal izango dituzu.\n"
-"\tAukera hau hautatuta ez baduzu, babeskopia zahar guztiak\n"
-"\tezabatzen dira babeskopia bakoitza egin aurretik. \n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"leheneratze-azalpena:\n"
-" \n"
-"Data berrienak soilik erabiliko dira, babeskopia inkrementalean\n"
-"beharrezkoa delako babeskopia zaharrak banan-banan ezabatzea.\n"
-"\n"
-"Erabiltzaile bat leheneratu nahi ez baduzu, desautatu haren \n"
-"kontrol-laukia.\n"
-"\n"
-"Bestela, hauetako bakarra hautatu ahal izango duzu\n"
-"\n"
-" - Babeskopia inkrementalak:\n"
-"\n"
-"\tBabeskopia-aukera ahaltsuena da. Aukera honen\n"
-"\tbidez, lehen aldian datu guztien babeskopia egin\n"
-"\tdaiteke, eta gero aldatuenak bakarrik.\n"
-"\tGero, leheneratze-urratsean, data jakin bateko\n"
-"\tdatuak leheneratu ahal izango dituzu.\n"
-"\tAukera hau hautatuta ez baduzu, babeskopia zahar guztiak\n"
-"\tezabatzen dira babeskopia bakoitzaren aurretik. \n"
-"\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft, DUPONT Sebastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-" Programa hau software librea da; birbana eta/edo alda dezakezu\n"
-" Software Foundation-ek argitaratutako GNU Lizentzia Publiko Orokorraren\n"
-" 2. bertsioan, edo (nahiago baduzu) beste berriago batean, jasotako\n"
-" baldintzak betez gero.\n"
-"\n"
-" Programa hau erabilgarria izango delakoan banatzen da, baina\n"
-" INOLAKO BERMERIK GABE; era berean, ez da bermatzen beraren\n"
-" EGOKITASUNA MERKATURATZEKO edo HELBURU PARTIKULARRETARAKO ERABILTZEKO.\n"
-" Argibide gehiago nahi izanez gero, ikus GNU Lizentzia Publiko Orokorra.\n"
-"\n"
-" Programa honekin batera GNU Lizentzia Publiko Orokorraren kopia bat\n"
-" jasoko zenuen; hala ez bada, idatzi hona: Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-"Azalpena:\n"
-"\n"
-" Drakbackup zure sistemaren babeskopia egiteko erabiltzen da.\n"
-" konfigurazioan zehar hauta ditzakezu: \n"
-"\t- Sistema-fitxategiak, \n"
-"\t- Erabiltzaile-fitxategiak, \n"
-"\t- Bestelako fitxategiak.\n"
-"\tedo Sistema osoa ... eta Bestelakoa (Windows partizioetan bezala)\n"
-"\n"
-" Drakbackup-en bidez, babeskopiak egiteko erabil daiteke:\n"
-"\t- Disko gogorra.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM.\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Zinta.\n"
-"\n"
-" Drakbackup erabiliz, zure sistema hautatutako\n"
-" direktorio batean lehenera dezakezu.\n"
-"\n"
-" Lehenespen gisa, babeskopia guztiak \n"
-" /var/lib/drakbackup direktorioan gordeko dira\n"
-"\n"
-" Konfigurazio-fitxategia:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Leheneratze-urratsa:\n"
-" \n"
-" Leheneratze-urratsean, DrakBackup.ek kendu egingo du\n"
-" jatorrizko direktorioa eta babeskopia-fitxategiak ez\n"
-" daudela hondatuta egiaztatuko du. Leheneratu aurretik\n"
-" babeskopia egitea gomendatzen da.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-"aukeren azalpena:\n"
-"\n"
-"Kontuz ftp backup erabiltzean, eginda dauden babeskopiak \n"
-"soilik bidaliko direlako zerbitzarira.\n"
-"Beraz, orain, disko gogorrean egin behar duzu babeskopia\n"
-"zerbitzarira bidali aurretik.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-"\n"
-"Leheneratze-arazoak:\n"
-"\n"
-"Leheneratze-urratsean, Drakbackup-ek babeskopia-fitxategi\n"
-"guztiak egiaztatuko ditu leheneratu aurretik.\n"
-"Leheneratu aurretik, Drakbackup-ek kendu egingo du\n"
-"jatorrizko direktorioa, eta datu guztiak galduko dituzu.\n"
-"Garrantzizkoa da kontuz ibiltzea eta babeskopia-fitxategiak\n"
-"eskuz ez aldatzea.\n"
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-"Azalpena:\n"
-"\n"
-" Drakbackup zure sistemaren babeskopia egiteko erabiltzen da.\n"
-" konfigurazioan zehar hauta ditzakezu: \n"
-"\t- Sistema-fitxategiak, \n"
-"\t- Erabiltzaile-fitxategiak, \n"
-"\t- Bestelako fitxategiak.\n"
-"\tedo Sistema osoa ... eta Bestelakoa (Windows partizioetan bezala)\n"
-"\n"
-" Drakbackup-en bidez, babeskopiak egiteko erabil daiteke:\n"
-"\t- Disko gogorra.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM.\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Zinta.\n"
-"\n"
-" Drakbackup erabiliz, zure sistema hautatutako\n"
-" direktorio batean lehenera dezakezu.\n"
-"\n"
-" Lehenespen gisa, babeskopia guztiak \n"
-" /var/lib/drakbackup direktorioan gordeko dira\n"
-"\n"
-" Konfigurazio-fitxategia:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Leheneratze-urratsa:\n"
-" \n"
-" Leheneratze-urratsean, DrakBackup.ek kendu egingo du\n"
-" jatorrizko direktorioa eta babeskopia-fitxategiak ez\n"
-" daudela hondatuta egiaztatuko du. Leheneratu aurretik\n"
-" babeskopia egitea gomendatzen da.\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%sren instalazioak huts egin du. Errore hau gertatu da:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Bilatu instalatutako letra-tipoak"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Desautatu instalatutako letra-tipoak"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "analizatu letra-tipo guztiak"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "ez da letra-tiporik aurkitu"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "eginda"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "ezin izan da letra-tiporik aurkitu muntatutako partizioetan"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Hautatu berriro letra-tipo egokiak"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "ezin izan da letra-tiporik aurkitu.\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Bilatu letra-tipoak instalatutakoen zerrendan"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Letra-tipoen kopia"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "True Type letra-tipoen instalazioa"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "itxaron... ttmkfdir egin bitartean..."
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "True Type instalazioa eginda"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "Letra-tipoen bihurketa"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "type1inst eraikitzen"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr "Ghostscript erreferentzia"
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "ttf letra-tipoen bihurketa"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "pfm letra-tipoen bihurketa"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Ezabatu aldi baterako fitxategiak"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "Berrabiarazi XFS"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Ezabatu letra-tipoen fitxategiak"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "xfs berrabiarazi"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Letra-tipoak instalatu aurretik, ziurtatu sisteman erabili eta instalatzeko "
-"baimena duzula.\n"
-"\n"
-"-Letra-tipoak instalatzeko ohiko era erabil dezakezu. Oso gutxitan, akastun "
-"letra-tipoek zure X Zerbitzaria blokea dezakete."
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "Letra-tipoen inportazioa"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Hartu Windows letra-tipoak"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Desinstalatu letra-tipoak"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Aukera aurreratuak"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Letra-tipoen zerrenda"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Hautatu letra-tipoak onartuko dituzten aplikazioak :"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Inprimagailu generikoak"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-"Hautatu letra-tipoen fitxategia edo direktorioa eta egin klik 'Gehitu'n"
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Instalatu zerrenda"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "egin klik hemen, ziur bazaude."
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "egin klik hemen, ziur ez bazaude."
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "Desautatutako guztiak"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Hautatutako guztiak"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "Kendu zerrenda"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Hasierako probak"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Kopiatu zure sistemako letra-tipoak"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Instalatu eta bihurtu letra-tipoak"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Posta-instalazioa"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "Kendu zure sistemako letra-tipoak"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Posta-desinstalazioa"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Interneteko konexioa konpartitzea"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Interneteko konexioa konpartitzea gaituta dago orain"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Interneteko konexioa konpartitzeko konfigurazioa eginda dago.\n"
-"Gaituta dago orain.\n"
-"\n"
-"Zer egin nahi duzu?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "desgaitu"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "itxi"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "birkonfiguratu"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Zerbitzariak desgaitzen..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Interneteko konexioa konpartitzea desgaituta dago orain."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Interneteko konexioa konpartitzea desgaituta dago orain"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Interneteko konexioa konpartitzeko konfigurazioa eginda dago.\n"
-"Desgaituta dago orain.\n"
-"\n"
-"Zer egin nahi duzu?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "gaitu"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Zerbitzariak gaitzen..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Interneteko konexioa konpartitzea gaituta dago orain."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Ordenagailua Interneteko konexioa konpartitzeko konfiguratzera zoaz.\n"
-"Eginbide horrekin, sare lokaleko ordenagailuek zure ordenagailuko "
-"Interneteko konexioa erabili ahal izango dute.\n"
-"\n"
-"Kontuan hartu: Sare-moldagailu dedikatu bat behar duzu sare lokala (LAN) "
-"konfiguratzeko."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "%s interfazea (%s modulua erabiliz)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "%s interfazea"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Ez dago sare-moldagailurik zure sisteman!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Zure sisteman ez da ethernet sare-moldagailurik detektatu. Exekutatu "
-"hardwarea konfiguratzeko tresna."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Sare-interfazea"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Sare-moldagailu konfiguratu bakarra dago zure sisteman:\n"
-"\n"
-"%s\n"
-"\n"
-"Zure sare lokala moldagailu horrekin konfiguratzera noa."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Aukeratu zein sare-moldagailu konektatuko den zure sare lokalarekin."
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Sareko interfazea konfiguratuta dago"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"Kontuz, sare-moldagailua (%s) jadanik konfiguratuta dago.\n"
-"\n"
-"Automatikoki birkonfiguratu nahi duzu?\n"
-"\n"
-"Eskuz egin dezakezu, baldin eta zertan zabiltzan badakizu."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Birkonfigurazio automatikoa"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "Erakutsi uneko interfaze-konfigurazioa"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"`%s' - uneko konfigurazioa:\n"
-"\n"
-"Sarea: %s\n"
-"IP helbidea: %s\n"
-"IP atribuzioa: %s\n"
-"Kontrolatzailea: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Uneko konfigurazioa gorde eta DHCP zerbitzari bat konfiguratuta duzula "
-"pentsa dezaket; hala bada, ziurtatu ondo irakurri dudala sare lokalerako "
-"erabiltzen duzun C klaseko sarea; ez dut birkonfiguratuko eta ez dut ukituko "
-"zure DHCP zerbitzariaren konfigurazioa.\n"
-"\n"
-"Gainera, zure interfazea eta DHCP zerbitzaria (bir)konfigura ditzaket.\n"
-"\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "C klaseko sare lokala"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "DHCP zerbitzariaren IPa"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Birkonfiguratu interfazea eta DHCP zerbitzaria"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Sare lokalak ez du `.0' amaieran; irteten. "
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"LAN helbide-gatazka potentziala aurkitu da %s(r)en uneko konfigurazioan!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Suebaki-konfigurazioa detektatu da!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Kontuz! Lehendik dagoen suebaki-konfigurazio bat detektatu da. Beharbada "
-"eskuz konponketa batzuk egin beharko dituzu instalazioaren ondoren."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Konfiguratzen..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Script-ak konfiguratzen, softwarea instalatzen, zerbitzariak abiarazten..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Arazoa %s paketea instalatzean"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Dena konfiguratu da.\n"
-"Orain Interneteko konexioa konparti dezakezu sare lokaleko beste ordenagailu "
-"batzuekin, sare-konfigurazio automatikoa (DHCP) erabiliz."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Konfigurazioa eginda dago, baina orain desgaituta dago."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Konfigurazioa eginda dago, eta orain gaituta dago."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Interneteko konexioa konpartitzea ez da inoiz konfiguratu."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Interneteko konexioa konpartitzeko konfigurazioa"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Ongi etorri Interneteko konexioa konpartitzeko utilitatera!\n"
-"\n"
-"%s\n"
-"\n"
-"Egin klik 'Konfiguratu'n instalazio-morroia abiarazteko."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Sare-konfigurazioa (%d moldagailuak)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profila: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Ezabatu profila..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Ezabatu beharreko profila:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Profil berria..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Sortu beharreko profilaren izena (profil berria oraingoaren kopia gisa "
-"sortuko da) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Ostalari-izena: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Interneterako sarbidea"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Mota:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Atebidea:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfazea:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Egoera:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Itxaron"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfiguratu Interneterako sarbidea..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Sare lokalaren konfigurazioa (LAN)"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Kontrolatzailea"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfazea"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokoloa"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Egoera"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Konfiguratu sare lokala..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Egin klik hemen morroia abiarazteko ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Morroia..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplikatu"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Itxaron... Konfigurazioa aplikatzen"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Konektatuta"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Konektatu gabe"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konektatu..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Deskonektatu..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Kontuz, beste Internet konexio bat detektatu da, agian zure sarea erabiltzen "
-"ariko da"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Ez duzu interfaze konfiguraturik.\n"
-"Konfigura itzazu lehendabizi, 'Konfiguratu'n klik eginda"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Sare lokalaren konfigurazioa (LAN)"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "%s moldagailua: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Abioko protokoloa"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Abioan abiaraztekoa"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP bezeroa"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktibatu orain"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "desaktibatu orain"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Interfaze hau ez dago konfiguratuta.\n"
-"Abiarazi konfigurazio-morroia leiho nagusian"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Ez duzu Interneteko konexiorik.\n"
-"Sortu bat lehendabizi, 'Konfiguratu'n klik eginda"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Interneteko konexioaren konfigurazioa"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Interneteko konexioaren konfigurazioa"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Konexio-mota: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametroak"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Atebidea"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet txartela"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP bezeroa"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Segurtasun-maila ezartzen"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Kontrol Zentroa"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Aukeratu erabili nahi duzun tresna"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "Kanada (kablea)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "AEB (bcast)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "AEB (kablea)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "AEB (kablea-hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Txina (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japonia (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "Japonia (kablea)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Europa Ekialdea"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Irlanda"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "Europa Mendebaldea"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Australia"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "Zeelanda Berria"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "Hegoafrika"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Idatzi\n"
-"zure TB araua eta estatua"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "TB araua :"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Area :"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "TB kanalak bilatzen..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "TB kanalak bilatzen"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "erabilera: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Aukeratu zure teklatu-diseinua."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Atzera-teklak Ezabatu itzultzea nahi duzu kontsolan?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Aldatu CDROMa"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Sartu instalazioko CDROMa unitatean eta sakatu Ados.\n"
-"Ez baduzu, sakatu Utzi bertsio-berritzea saihesteko."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Ezin da bertsio-berritzea abiarazi!!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr "Aldaketa egin da, baina, eragina izan dezan, saioa amaitu behar duzu"
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "Erakutsi bakarrik hautatutako egunerako"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Fitxategia/_Berria"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Fitxategia/_Ireki"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Fitxategia/_Gorde"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Fitxategia/Gorde _honela"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Fitxategia/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Aukerak"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Aukerak/Probatu"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Laguntza"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Laguntza/_Honi buruz..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "Erabiltzailea"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "Mezuak"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "Syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Mandrake Tools-en azalpenak"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "bilatu"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Zure erregistroak ikusteko tresna"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Ezarpenak"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "bat badatoz"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "bat ez badatoz"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Aukeratu fitxategia"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Egutegia"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Fitxategiaren edukia"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "Posta/SMSren abisua"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "itxaron, fitxategia analizatzen: %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "Posta/SMSren abisuaren konfigurazioa"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Ongi etorri Posta/SMS konfiguratzeko utilitatera.\n"
-"\n"
-"Hemen zure abisu-sistema konfiguratu ahal izango duzu.\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "zerbitzuaren ezarpena"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr "Hautatutako zerbitzuetakoren bat martxan ez badago, abisua jasoko duzu"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "kargatzeko ezarpenak"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Karga balio hau baino handiagoa bada, abisua jasoko duzu"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "abisu-konfigurazioa"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "Konfiguratu abisuak jasotzeko modua"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Gorde honela.."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Aukeratu sagu-mota."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "ez da serieko USBrik aurkitu\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Hirugarren botoia emulatu?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "%s aurkitu da hemen: %s. Konfiguratu nahi duzu ?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Hautatu eskaner bat"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "%s eskaner hori ez da onartzen"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Abioko gailua"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"%s eskaner hau printerdrake-rekin konfiguratu behar da.\n"
-"Mandrake Kontrol Zentroko Hardwarearen ataletik abiaraz dezakezu "
-"printerdrake."
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Suebakiaren konfigurazioa"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Suebakiaren konfigurazioa"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Suebakia\n"
-"\n"
-"Jadanik konfiguratu duzu suebaki bat.\n"
-"Suebakia aldatzeko edo kentzeko, egin klik 'Konfiguratu'n"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Suebakia\n"
-"\n"
-"Suebaki estandar bat konfiguratzeko, egin klik 'Konfiguratu'n"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Aukeratu hizkuntza"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Hautatu instalazio-klasea"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Disko gogorren detekzioa"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Konfiguratu sagua"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Aukeratu teklatua"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Segurtasuna"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Ezarri fitxategi-sistemak"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Eman formatua partizioei"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Aukeratu instalatu beharreko paketeak"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Instalatu sistema"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Gehitu erabiltzaile bat"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Konfiguratu sarea"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Konfiguratu zerbitzuak"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Instalatu abioko kargatzailea"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Sortu abioko disko bat"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Konfiguratu X"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Instalatu sistema-eguneratzeak"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Irten instalaziotik"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall konfiguratzailea\n"
-"\n"
-"Mandrake Linux makina honetarako suebaki pertsonala konfiguratzen du.\n"
-"Suebaki ahaltsuagoa nahi baduzu, begiratu MandrakeSecurity Firewall \n"
-"banaketa espezializatua."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Orain galdera batzuk egingo dizkizugu, Interneteko zein zerbitzutara \n"
-"konektatu nahi duzun jakiteko. Ongi pentsatu erantzun aurretik, \n"
-"zure ordenagailuaren segurtasuna garrantzitsua baita.\n"
-"\n"
-"Horietako zerbitzuren bat erabiltzen ez baduzu, desaktiba\n"
-"ezazu. Konfigurazio hau nahi duzunean alda dezakezu,\n"
-"aplikazio hau berriro exekutatuz!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Internet osotik ikusi behar den web zerbitzari bat daukazu martxan\n"
-"makina honetan? Makina honetatik bakarrik erabili behar den web zerbitzari\n"
-"bat badaukazu, lasai erantzun dezakezu EZ hemen.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Izen-zerbitzari bat erabiltzen duzu makina honetan? Izen-zerbitzaririk ez \n"
-"badaukazu ezarrita IP eta zonako informazioa emateko Internet osorako,\n"
-"erantzun EZ.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Secure Shell (ssh) konexioei sartzeko baimena eman nahi diezu? \n"
-"Telnet-en ordezkoa da, urruneko makinetan sartzeko erabil dezakezuna. \n"
-"telnet erabiltzen baduzu, ssh-ra aldatu behar duzu zalantzarik gabe. \n"
-"telnet ez dago enkriptatuta - hortaz, erasotzaileek zure pasahitza lapur \n"
-"dezakete. ssh enkriptatuta dago eta beraz ezin da harrapatu."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"telnet konexioei sartzen utzi nahi diezu?\n"
-"Hori ez da batere batere segurua, aurreko pantailan azaldu dugunez. \n"
-"Biziki gomendatzen dugu hemen EZ erantzutea eta telnet-en ordez ssh\n"
-"erabiltzea.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Internetetik ikusi behar den FTP zerbitzaririk erabiltzen duzu?\n"
-"Horrela bada, biziki gomendatzen dizugu transferentzia anonimoetarako\n"
-"bakarrik erabiltzea. FTP bidez bidalitako pasahitzak lapurtu egin "
-"ditzakete,\n"
-"FTPk ere ez baitu enkriptatzerik erabiltzen pasahitzak transferitzeko.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Posta-zerbitzaririk baduzu martxan hemen? Mezuak pine, mutt edo\n"
-"testuan oinarritutako beste posta-bezeroren baten bidez bidaltzen\n"
-"badituzu, ziur aski izango duzu. Bestela, desaktibatzea komeni da.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"POP edo IMAP zerbitzaririk baduzu hemen? \n"
-"Web-ean oinarritu gabeko posta-kontuen ostalari izateko \n"
-"erabiltzen da hau.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Badirudi 2.2 bertsioko nukleoa erabiltzen duzula. Zure sarearen \n"
-"IP helbidea automatikoki ezartzen badu zure etxeko edo \n"
-"bulegoko ordenagailu batek (dinamikoki esleituta), onartu \n"
-"egin beharko dugu. Horrela da?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Zure ordenagailua beste batekin sinkronizatuta dabil?\n"
-"Nagusiki, hori Unix/Linux antolamendu ertain eta handiek \n"
-"erabiltzen dute, konexio-orduak sinkronizatzeko eta horrelakoetarako. "
-"Bulego handi batean ari ez bazara eta \n"
-"honelako konturik entzun ez baduzu, ziur aski ez zara\n"
-"inorekin sinkronizatuta egongo."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfigurazioa osatu da. Diskoan idatziko ditugu aldaketak?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Ezin da %s ireki: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ezin da %s idazteko ireki: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr "Ez, ez dut DHCP behar"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr "Bai, DHCP behar dut"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr "Ez, ez dut NTP behar"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr "Bai, NTP behar dut"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr "Ez gorde"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr "Gorde eta irten"
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "Suebakia konfiguratzeko morroia"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr "Ez (egin suebakia Internetetik)"
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr "Bai (onartu hau suebakian zehar)"
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr "Itxaron... instalatutako paketeak egiaztatzen"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Huts egin du beharrezko pakete hauek instalatzean: %s eta Bastille.\n"
-" Saiatu eskuz instalatzen."
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Sare-ordenagailua (bezeroa)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS zerbitzaria, SMB zerbitzaria, Proxy zerbitzaria, ssh zerbitzaria"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Office"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome-ren lan-estazioa"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Palm Pilot edo Visor-erako tresnak"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Lan-estazioa"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Suebakia/Bidatzailea"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domeinu-izenen eta sareko informazioaren zerbitzaria"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Bulego-lanetako programak: testu-prozesadoreak (kword, abiword), kalkulu-"
-"orriak (kspread, gnumeric), pdf ikustaileak, etab."
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Audio tresnak: mp3 edo midi erreproduzigailuak, nahastaileak, etab."
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Linux eta Software libreari buruzko liburuak eta azalpenak"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE lan-estazioa"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etab."
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedia - Bideoa"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-"Posta, berriak, web-a, fitxategi-transferentzia eta berriketa kudeatzeko "
-"tresnak"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Datu-basea"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL edo MySQL datu-baseen zerbitzaria"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Zure ordenagailuaren konfigurazioa errazteko tresnak"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedia - Soinua"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitateak"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentazioa"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Kontsola-tresnak"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix posta-zerbitzaria, Inn berri-zerbitzaria"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Interneteko estazioa"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimediako estazioa"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Konfigurazioa"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Mahaigain grafiko gehiago (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"KDE, K Desktop Environment, hainbat tresna duen oinarrizko ingurune grafikoa."
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Ingurune grafikoa"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "CDak sortzeko eta grabatzeko tresnak"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Bulegoko lan-estazioa"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Zerbitzaria"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etab."
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "The Gimp bezalako programa grafikoak"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C eta C++ garapen-liburutegiak, programak eta fitxategiak"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Sare-zerbitzaria"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Posta/Groupware/Berriak"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Joko-estazioa"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Bideo-erreproduzigailuak eta editoreak"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedia - Grafikoak"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-"Denbora-pasako programak: makina-jokoak, taula-jokoak, estrategiakoak, etab."
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Posta eta berriak irakurtzeko eta bidaltzeko (pine, mutt, tin..) eta web-a "
-"arakatzeko tresnak"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Artxibatzea, emulatzaileak, monitorizatzea"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Finantza pertsonalak"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Aplikazio-multzo eta mahaigaineko tresna lagungarri eta atseginak dituen "
-"ingurune grafikoa"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Hainbat protokolotako bezeroak, ssh-renak barne"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Interneteko atebidea"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Soinua eta bideoa jotzeko/editatzeko programak"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Beste mahaigain grafiko batzuk"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editoreak, shell-ak, fitxategi-tresnak, terminalak"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Zure finantzak kudeatzeko programak, hala nola gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Informazio pertsonalaren kudeaketa"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedia - CD grabatzea"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Lan-estazio zientifikoa"
diff --git a/perl-install/share/po/fake_c.pl b/perl-install/share/po/fake_c.pl
deleted file mode 100755
index 21cf25b04..000000000
--- a/perl-install/share/po/fake_c.pl
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/perl -lp
-
-s|^(__?\()| $1|; # add a blank at the beginning (?!)
-
-s|_\(\[(.*),\s*(.*),\s*(.*)\]|ngettext($2,$3,$1)|; # special plural form handling
-
-s,\Qs/#.*//,,; # ugly special case
-
-s,(^|[^\$])#([^+].*),"$1/*" . simpl($2) . "*/",e;
- # rewrite comments to C format except for:
- # - ``#+ xxx'' comments which are kept
- # - ``$#xxx'' which are not comments
-
-s|//|/""/|g; # ensure // or not understood as comments
-
-s|$|\\n\\|; # multi-line strings not handled in C
-
-sub simpl {
- local $_ = $_[0];
- s,\*/,,g;
- $_;
-}
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
deleted file mode 100644
index a3cc4183d..000000000
--- a/perl-install/share/po/fi.po
+++ /dev/null
@@ -1,11489 +0,0 @@
-# Translation file of Mandrake graphic install
-# Copyright (C) 1999, 2002 Mandrakesoft
-# Kim Enkovaara <kim.enkovaara@iki.fi>, 1999, 2000
-# Matias Griese <mahagr@utu.fi>, 2001, 2002
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-02-20 22:55EET\n"
-"Last-Translator: Matias Griese <mahagr@utu.fi>\n"
-"Language-Team: Finnish\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-15\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Aseta kaikki näytöt erikseen"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Käytä Xinerama-laajennusta"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Määrittele vain kortin \"%s\" (%s) asetukset"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Monen näytön asettaminen"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Järjestelmäsi tukee monen näytön laitteistokokoonpanoa.\n"
-"Mitä haluat tehdä?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Näytönohjain"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Valitse näytönohjain"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Valitse X-palvelin"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-palvelin"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Valitse X-palvelin"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X-palvelin"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Mitä versiota XFree-serveristä haluat käyttää?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit vain XFree %s:"
-"ssa.\n"
-"Korttisi on tuettu myös XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s laitteistokiihdytetyllä 3D-tuella"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa.\n"
-"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s KOKEELLISELLA laitteistokiihdytetyllä 3D-tuella"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit vain XFree %s:"
-"ssa.\n"
-"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI.Korttisi on "
-"tuettu myös XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (näytönohjaimen ajurin asennus)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFreen asentaminen"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Valitse näytönohjaimen muistin määrä"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Valitse optioita palvelimelle"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Valitse monitori"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Näyttö"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Sinun tulee valita vaakavirkistystaajuus näytöllesi. Voit joko valita "
-"jonkin\n"
-"allaolevista alueista, jotka vastaavat teollisuusstandardityyppejä tai "
-"syöttää\n"
-"jonkin muun alueen.\n"
-"\n"
-"On HYVIN TÄRKEÄÄ, että et valitse näyttötyyppiä, jonka "
-"vaakavirkistystaajuus\n"
-"on suurempi kuin oman näyttösi. Jos epäröit, valitse pienempi taajuus."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Vaakavirkistystaajuus"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Pystyvirkistystaajuus"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Näyttöä ei ole asetettu"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Näytönohjainta ei ole vielä asetettu"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Näytön resoluutiota ei ole vielä valittu"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Haluatko kokeilla asetuksia?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Varoitus: näytönohjaimesi testaaminen voi jumittaa tietokoneen"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Kokeile asetuksia"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"kokeile joidenkin parametrien muuttamista"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Tapahtui virhe:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Lopetan %d sekunnissa"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Onko tämä oikea asetus?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Tapahtui virhe, kokeile joidenkin parametrien vaihtamista"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Resoluutio"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Valitse resoluutio ja värisyvyys"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Näytönohjain: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 palvelin: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Lisäasetukset"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Asiantuntijatila"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Näytä kaikki"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resoluutiot"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Näppäinasettelu: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Hiiren tyyppi: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Hiiren laite: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Näyttö: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Näytön vaakajuovataajuus: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Näytön virkistystaajuus: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Näytönohjain: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Näytönohjaimen tunniste: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Grafiikkamuisti: %s kt\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Värisyvyys: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Resoluutio: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 palvelin: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 ajurit: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Valmistelen X-Windowin asetuksia"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Mitä haluat tehdä?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Vaihda näyttöä"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Vaihda näytönohjainta"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Vaihda palvelimen optioita"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Vaihda resoluutiota"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Näytä tiedot"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Kokeile uudelleen"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Lopeta"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Säilytä muutokset?\n"
-"Nykyiset asetukset ovat:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "Käynnistettäessä X:ää"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"X voidaan laittaa käynnistymään automaattisesti käynnistyksen yhteydessä.\n"
-"Haluatko käynnistää X:n automaattisesti?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Kirjaudu uudelleen %s:een aktivoidaksesi muutokset"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Kirjaudu ulos ja kirjoita sitten Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 väriä (8 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tuhatta väriä (15 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tuhatta väriä (16 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljoonaa väriä (24 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljardia väriä (32 bittiä)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kt"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kt"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mt"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mt tai enemmän"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Perus-VGA, 640x480 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "SVGA, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-yhteensopiva, 1024x768 @ 87 Hz lomitettu (ei 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "SVGA, 1024x768 @ 87 Hz lomitettu, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Laajennettu SVGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Lomittamaton SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Korkeataajuuksinen SVGA, 1024x768 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Näyttö, joka pystyy 1280x1024 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Näyttö, joka pystyy 1280x1024 @ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Näyttö, joka pystyy 1280x1024 @ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Näyttö, joka pystyy 1600x1200 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Näyttö, joka pystyy 1600x1200 @ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Ensimmäinen sektori käynnistysosiolla"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Levyn ensimmäinen sektori (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILOn asennus"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Minne haluat asentaa käyttöjärjestelmän lataajan?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/grub asennus"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO tekstipohjaisella valikolla"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO graafisella valikolla"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Käynnistä DOSista/Windowsista (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Käyttöjärjestelmän lataajan pääasetukset"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Käytettävä käyttöjärjestelmän lataaja"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Käyttöjärjestelmän lataajan asennus"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Käynnistyslaite"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ei toimi vanhoissa BIOSeissa)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Tiivis"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "tiivis"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Näyttötila"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Tauko ennen oletusjärjestelmän käynnistystä"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Salasana"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Salasana (uudelleen)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Rajoita komentorivioptioita"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "rajoita"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Tyhjennä /tmp jokaisella käynnistyskerralla"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Tarkka muistin koko, jos tarpeen (löydettiin %d Mt)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Käytä montaa profiilia"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Anna muistin koko megatavuina"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Asetus ``Rajoita komentorivioptioita'' ei ole hyödyllinen ilman salasanaa"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Yritä uudelleen"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Salasanat poikkeavat toisistaan"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Käynnistysviesti"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Vapaa Firmware-viive"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Timeout ytimen käynnistyksessä"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Mahdollista käynnistys CD:ltä"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Mahdollista käynnistys OFilta"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Oletuskäyttöjärjestelmä?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Tässä ovat asetustietueet.\n"
-"Voit lisätä uusia tai muuttaa olemassaolevia."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Lisää"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Valmis"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Muokkaa"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Minkä tyyppisen tietueen haluat lisätä"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Muu käyttöjärjestelmä (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Muu käyttöjärjestelmä (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Muu käyttöjärjestelmä (Windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Kuva"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Juuri"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Liitä"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Luku-kirjoitus"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Taulukko"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Turvaton"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Otsikko"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Oletus"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd:n koko"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "Ei Näyttöä"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Poista tietue"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Tyhjää otsikkoa ei sallita"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Sinun täytyy määritellä ydin"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Sinulla täytyy määritellä juuriosio"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Otsikko on jo käytössä"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Löysin %s %s liitännät"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Onko sinulla muita?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Onko koneessa %s liityntää?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Ei"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Kyllä"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Katso laitteistotietoja"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Asetan ajuria %s ohjaimelle %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(moduli %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Mitä %s-ajuria kokeillaan?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Joissakin tapauksissa %s-ajuri tarvitsee lisätietoja toimiakseen kunnolla,\n"
-"joskin tavallisesti se toimii hyvin ilmankin. Haluaisitko antaa ajurille\n"
-"lisämääreitä vai annatko sen itse etsiä tarvitsemansa tiedot? Joskus haku\n"
-"voi jumittaa tietokoneen, mutta se ei aiheuta vahinkoa."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Automaattihaku"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Lisäasetukset"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Voit antaa lisäasetuksia modulille %s.\n"
-"Asetukset ovat muotoa ``nimi=arvo nimi2=arvo2 ...''.\n"
-"Esimerkiksi, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Moduulin optiot:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Modulin %s lataaminen epäonnistui.\n"
-"Haluatko yrittää muilla asetuksilla?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "oikeudet X-ohjelmille"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "oikeudet rpm-työkaluihin"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "salli \"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "oikeudet ylläpidollisiin tiedostoihin"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(lisätty jo %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Salasana on liian yksinkertainen"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Anna käyttäjätunnus"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Käyttäjätunnus saa sisältää vain pieniä kirjaimia, numeroita, `-' ja `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Käyttäjätunnus on jo lisätty"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Lisää käyttäjä"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Lisää käyttäjä\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Hyväksy käyttäjä"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Oikea nimi"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Käyttäjätunnus"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Komentotulkki"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Kuvake"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Automaattinen kirjautuminen"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Yksi käyttäjä voidaan asettaa kirjautumaan automaattisesti sisään "
-"tietokoneellesi.\n"
-"Haluatko käyttää tätä ominaisuutta?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Valitse oletuskäyttäjä:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Valitse käytettävä ikkunointijärjestelmä:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Valitse käytettävä kieli."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Voit valita kielet jotka ovat käytettävissä asennuksen jälkeen"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Kaikki"
-
-# Asennuksen sivuvalikko
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Salli kaikille käyttäjille"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Mukautettu"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Ei jaettu"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Paketti %s pitää asentaa. Haluatko asentaa sen?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Voit jakaa sekä NFS:llä että Samballa. Kumpaa haluat käyttää"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Pakollinen paketti %s puuttuu"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Peruuta"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Tervetuloa murtautujat"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Huono"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standardi"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Korkea"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Korkea"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoidi"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Tätä tasoa tulee käyttää varoen. Se tekee järjestelmästäsi helpomman "
-"käyttää,\n"
-"mutta hyvin herkän: sitä ei tule käyttää koneessa joka on kytketty muihin "
-"koneisiin\n"
-"tai Internettiin. Koneessa ei ole salasanoja."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Salasanat ovat nyt käytössä mutta koneen käyttö verkossa ei ole suositeltua."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Tämä on normaaliturvallisuustaso jota suositellaan tietokoneelle jota\n"
-"käytetään Internettiin liitettynä. Järjestelmässä on "
-"turvallisuustarkastuksia."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Tällä turvallisuustasolla järjestelmän käyttö palvelimena on mahdollista.\n"
-"Järjestelmää voidaan käyttää palvelimena joka hyväksyy yhteyksiä monilta\n"
-"asiakkailta. "
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Pohjautuu edelliseen tasoon, mutta järjestelmä on kokonaan suljettu.\n"
-"Turvallisuusasetukset ovat tiukimmillaan."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Valitse turvataso"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Turvataso"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Käytä libsafea palvelimille"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Kirjasto joka suojelee puskurin ylivuoto ja merkkijonon muotovirhehykkäyksiä "
-"vastaan."
-
-# 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)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Tervetuloa %s kayttojarjestelmanvalitsijaan!\n"
-"\n"
-"Valitse k~^Dytt~^Tj~^Drjestelm~^D yll~^D olevasta listasta tai\n"
-"odota %d sekuntia oletusk~^Dynnistyst~^D.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Kayt~^D %c- ja %c-napp~^Dimi~^D valitaksesi korostetun tietueen"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr ""
-"Paina enter kaynnist~^D~^Dksesi valitun kaytt”j„rjestelm„n, 'e' muokataksesi"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "komennot ennen k„ynnistyst„, tai 'c' komentoriville"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Korostettu tietue k„ynnistet„„n automaattisesti %d sekunnissa."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "ei tarpeeksi tilaa /boot-hakemistossa"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Työpöytä"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Käynnistysvalikko"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Et voi asentaa käyttöjärjestelmän lataajaa partitiolle %s\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "ohjeita ei ole vielä olemassa.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Käynnistyksen tavan asetus"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Tiedosto"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Tiedosto/_Poistu"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Uuden tyylin kategoroiva tarkkailija"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Uuden tyylin tarkkailija"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Perinteinen tarkkailija"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Perinteinen Gtk+ tarkkailija"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Käytä Auroraa käynnistyksen aikana"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub-tila"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot-tila"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Tällä hetkellä käytössä oleva järjestelmälataaja on %s.\n"
-"Valitse Aseta käynnistääksesi asennusohjelman."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Määrittele"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Järjestelmän tila"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Käytä X-Window-järjestelmää"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Ei, en halua autologinia"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Kyllä, haluan autologinin (käyttäjä, ympäristö)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "ei voi lukea tiedostoa /etc/inittab: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "Gt"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "Kt"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "Mt"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "Tt"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minuuttia"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minuutti"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekuntia"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Kuvankaappauksia ei voi tehdä ennen osiointia"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Kuvankaappaukset löytyvät asennuksen jälkeen hakemistosta %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Ranska"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "Belgia"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "T'sekin tasavalta"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Saksa"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Kreikka"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Norja"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Ruotsi"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Alankomaat"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Italia"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Itävalta"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Yhdysvallat"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Tee ensin varmuuskopio tiedoistasi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Lue tarkkaan!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Jos aiot käyttää aboot:ia, varmista että jätät vapaata tilaa levyn alkuun\n"
-"(2048 sektoria on tarpeeksi)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Virhe"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Velho"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Valitse toiminta"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Sinulla on yksi suuri FAT-osio.\n"
-"(Yleensä Microsoft DOS/Windowsin käytössä).\n"
-"Ehdotus: muuta ensimmäiseksi osion kokoa\n"
-"(klikkaa osiota ja valitse sitten \"Uusi koko\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Klikkaa osiota"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Yksityiskohdat"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Journaloitu FS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Tyhjä"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Muut"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Tiedostojärjestelmien tyypit:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Luo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tyyppi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Käytä sen sijaan ``%s'':ää"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Poista"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Käytä ensin komentoa ``Irroita''"
-
-# mat
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "Vaihdettuasi osion %s tyyppiä kaikki sillä olevat tiedot häviävät"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Valitse osio"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Valitse toinen osio"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Poistu"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Vaihda asiantuntijatilaan"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Vaihda normaalitilaan"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Peruuta"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Jatka joka tapauksessa?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Lopeta tallentamatta"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Lopeta kirjoittamatta osiotalua?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Haluatko tallentaa muutokset tiedostoon /etc/fstab"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Automaattinen varaus"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Tyhjennä kaikki"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Kiintolevyn tiedot"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Kaikki primääriosiot käytetty"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Uusia osioita ei voida lisätä"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Voidaksesi luoda lisää osioita tuhoa yksi olemassaoleva osio jotta voisit "
-"luoda laajennetun osion"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Tallenna osiotaulu"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Palauta osiotaulu"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Pelasta osiotaulu"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Uudelleenlataa osiotaulu"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Vaihdettavan median automaattinen liittäminen"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Valitse tiedosto"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Osiotaulun varmuuskopio ei ole saman kokoinen\n"
-"Jatka silti?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Varoitus"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Aseta levyke asemaan\n"
-"Kaikki levykkeen tiedot häviävät"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Yritän osiotalulun palautusta"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Yksityiskohtaiset tiedot"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Liitospaikka"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Optiot"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Uusi koko"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Siirrä"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Alusta"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Liitä"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Lisää RAIDiin"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Lisää LVM:iin"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Irroita"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Poista RAIDista"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Poista LVM:stä"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Muokkaa RAIDia"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Käytä loopback-tiedostoa"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Luo uusi osio"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Aloitussektori: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Koko Mt: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Tiedostojärjestelmä: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Liitospaikka: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Etuoikeus: "
-
-# mat
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Poista loopback-tiedosto?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Muuta osiotyyppiä"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Minkä tiedostojärjestelmän haluat?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Vaihdan ext2:sta ext3:een"
-
-# mat
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Minne haluat liittää loopback-tiedoston %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Minne haluat liittää laitteen %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Ei voida poistaa liitospaikkaa koska osiota käytetään loopback-tilassa.\n"
-"Poista loopback-tiedosto ensin"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Lasken FAT-tiedostojärjestelmän rajoja"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Muutan kokoa"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Tämän osion kokoa ei voi muuttaa"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Kaikki osion tiedot tulee varmuuskopioida"
-
-# mat
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Osion %s koon muuttamisen jälkeen kaikki osion tiedot tuhoutuvat"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Valitse uusi koko"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Uusi koko (Mt): "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Mille levylle haluat siirtää?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektori"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Mille sektorille haluat siirtää?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Siirrän"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Siirrän osiota..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Valitse olemassaoleva RAID johon lisätään"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "uusi"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Valitse olemassaoleva LVM johon lisätään"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "LVM:n nimi?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Osiota ei voida käyttää loopback-osiona"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Loopback tiedostonimi: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Anna tiedostonimi"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Tiedosto on jo käytössä toiselle loopbackille, valitse toinen"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Tiedosto on jo olemassa. Käytä sitä?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Liittämisen optiot"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Useita"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "laite"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "taso"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "palan koko"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Varo: tämä on vaarallinen toiminto"
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Minkä tyyppinen osiointi?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 hakemistoa ei voida luoda näin kauas levyn alusta (sylinterille joka "
-"on > 1024).\n"
-"Joko käytät LILOa ja se ei toimi, tai et käytä LILOa, jolloin et tarvitse /"
-"boot -hakemistoa"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Osio jolle valitsit juuren (/) on fyysisesti yli 1024 sylinterin levyllä,\n"
-"eikä sinulla ole /boot osiota.\n"
-"Jos haluat käyttää LILO-käynnistyksenhallintaa, lisää Linuxille /boot osio."
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Olet valinnut ohjelmallisen RAID-osion juuriosioksi (/).\n"
-"Mikään käynnistyslataaja ei osaa käsitellä tätä ilman /boot -osiota.\n"
-"Lisää /boot -osio, jos haluat käyttää liloa tai grubia"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Levyn %s osiotaulu kirjotetaan levylle!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Sinun täytyy käynnistää kone uudelleen ennen kuin muutos tulee voimaan"
-
-# mat
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Kaikki osiolla %s olevat tiedot häviävät osion alustuksen yhteydessä"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Alustan"
-
-# mat
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Alustan loopback-osiota %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Alustan osiota %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Piilota tiedostot"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Siirrä tiedostot uuteen osioon"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"Hakemisto %s sisältää jo jotakin tietoa\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Siirrän tiedostoja uudelle osiolle"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Kopioidaan %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Poistetaan %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "osio %s tunnetaan nyt nimellä %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Laite: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS-asema: %s (vain arvaus)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tyyppi: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Nimi: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Alkaa: sektori %s\n"
-
-# mat
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Koko: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektoria"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Sylinteristä %d sylinteriin %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Alustettu\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Ei alustettu\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Liitetty\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Loopback tiedosto(t):\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Osiolta käynnistetään oletuksena\n"
-" (MS-DOS käynnistys, ei lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Taso %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Palan koko %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-levyt %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Loopback-tiedoston nimi: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"On mahdollista, että tämä osio on\n"
-"ajuriosio. Sinun olisi kaiketi\n"
-"parasta jättää se rauhaan.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Tämä erityinen Bootsrap-\n"
-"osio on järjestelmäsi\n"
-"kaksoiskäynnistämiseksi.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Koko: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometria: %s sylinteriä, %s lukupäätä, %s sektoria\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Tietoja: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-levyt %s\n"
-
-# mat
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Osion tyyppi: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "väylässä %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Optiot: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Tiedostojärjestelmän salausavain"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Valitse tiedostojärjestelmäsi salausavain"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Salausavain on liian yksinkertainen (sen pitää olla ainakin %d merkkiä pitkä)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "Salausavaimet eivät täsmää"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Salausavain"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Salausavain (uudelleen)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Muuta tyyppiä"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Klikkaa mediaa"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Hae palvelimet"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s:n alustus %s:ta epäonnistui"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "en osaa alustaa %s:ää tyyppiä %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck epäonnistui virhekoodilla %d tai signaalilla %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "virhe irroitettaessa %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "yksinkertainen"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "palvelin"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Et voi käyttää JFS:ää alle 16 Mt osioilla"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Et voi käyttää ReiserFS:ää alle 32 Mt osioilla"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Liitospaikan pitää alkaa /-merkillä."
-
-# mat
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "On jo olemassa osio, jonka liitospaikka on %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Et voi käyttää LVM loogista taltiota liitekohtana %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Tämän hakemiston pitäisi olla juuritiedostojärjestelmässä"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Tarvitset tähän liitoskohtaan oikean tiedostojärjestelmän (ext2, reiserfs)\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Et voi käyttää salattua tiedostojärjestelmää liitoskohdassa %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Vapaa tila ei riitä automaattiseen varaukseen"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Ei mitään tekemistä"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Virhe kirjoitettaessa tiedostoon %s: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"On tapahtunut virhe - ei löytynyt ainuttakaan laitetta, joille voi luoda "
-"uuden tiedostojärjestelmän. Tarkista laitteistosi korjataksesi ongelman"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Sinulla ei ole yhtään osiota!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-#, fuzzy
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Yllä olevassa listassa ovat kiintolevyiltä löytyneet Linux-osiot. Voit pitää "
-"velhon \n"
-"tekemät valinnat, sillä ne sopivat useimpiin asennuksiin. Jos teet "
-"muutoksia,\n"
-"sinun täytyy määritellä vähintään juuriosio (\"/\"). Älä valitse juureksi "
-"liian pientä \n"
-"osiota, sillä silloin kaikkia ohjelmia ei voida asentaa. Jos haluat "
-"tallettaa tiedot \n"
-"erilliselle osiolle, sinun täytyy luoda oma osio myös \"/home\"-"
-"hakemistolle \n"
-"(mikä on mahdollista vain, jos sinulla on enemmän kuin yksi Linux-osio).\n"
-"\n"
-"Jokaisesta osiosta on listattu seuraavat tiedot: \"Nimi\", \"Kapasiteetti"
-"\".\n"
-"\n"
-"\"Nimi\"-kohdan rakenne on: \"Kiintolevyn tyyppi\", \"Kiintolevyn numero"
-"\",\n"
-"\"Osion numero\" (esimerkiksi \"hda1\").\n"
-"\n"
-"\"Kiintolevyn tyyppi\" on \"hd\", jos kiintolevysi on IDE-levy, ja \"sd\", "
-"jos \n"
-"se on SCSI-levy.\n"
-"\n"
-"\"Kiintolevyn numero\" on aina kirjain heti \"hd\":n tai \"sd\":n jälkeen. \n"
-"IDE-asemilla:\n"
-"\n"
-" * \"a\" tarkoittaa \"herraksi määritelty kiintolevy ensisijaisella IDE-"
-"laitteella\",\n"
-"\n"
-" * \"b\" tarkoittaa \"orjaksi määritelty kiintolevy ensisijaisella IDE-"
-"laitteella\",\n"
-"\n"
-" * \"c\" tarkoittaa \"herraksi määritelty kiintolevy toissijaisella IDE-"
-"laitteella\",\n"
-"\n"
-" * \"d\" tarkoittaa \"orjaksi määritelty kiintolevy toissijaisella IDE-"
-"laitteella\",\n"
-"\n"
-"SCSI-levyillä \"a\" tarkoittaa \"pienin SCSI ID\", \"b\" taas \"toiseksi "
-"pienin \n"
-"SCSI ID\", jne..."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"Mandrake Linuxin asennus koostuu useasta CD-ROM-levystä. DrakX\n"
-"tietää, onko valittu paketti toisella CD:llä ja osaa tarvittaessa syöttää\n"
-"nykyisen levyn ulos ja kysyä oikeaa."
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Voit nyt valita mitkä palvelut haluat käynnistää konetta käynnistettäessä.\n"
-"\n"
-"Tässä on lista kaikista palveluista, jotka löytyvät nykyisestä "
-"asennuksesta.\n"
-"Käy lista läpi huolellisesti ja poista kaikki ne palvelut, joita ei tarvita "
-"jokaisella\n"
-"käynnistyskerralla.\n"
-"\n"
-"Saat kustakin palvelusta lyhyen kuvaustekstin valitsemalla sen. Jos et\n"
-"kuitenkaan ole varma palvelun hyödyllisyydestä, on yleensä varmempaa\n"
-"jättää se oletusarvoiseksi.\n"
-"\n"
-"!! Tässä vaiheessa sinun pitää olla erityisen huolellinen, jos aiot käyttää\n"
-"konettasi palvelimena: et varmaankaan halua käynnistää niitä palveluita,\n"
-"joita et tarvitse. Muista myös, että jotkin palvelut voivat olla "
-"vaarallisia,\n"
-"jos ne ovat aktivoituja palvelimessa. Yleensä kannattaa valita vain\n"
-"ne palvelut, joita todella tarvitaan.\n"
-"!!"
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Kun kokeilet ensimmäistä kertaa X:n asetuksiasi, et ole välttämättä kovin\n"
-"tyytyväinen sen näyttöön (ruutu on liian pieni, siirtynyt vasemmalle tai\n"
-"oikealle...). Vaikka X käynnistyisikin oikein, DrakX kysyy sinulta, "
-"sopivatko\n"
-"asetukset sinulle. Se ehdottaa myös myös muutoksia näyttämällä listan\n"
-"sen löytämistä voimassa olevista näyttötiloista, pyytäen sinua valitsemaan\n"
-"niistä yksi.\n"
-"\n"
-"Jos et millään saa X:ää toiminaan, kannattaa viimeisenä valita \"Vaihda\n"
-"näytönohjain\", sieltä \"Listaamaton kortti\", ja kun sinulta kysytään, "
-"minkä\n"
-"palvelimen haluat, valitse \"FBDev\". Tämä on vikasietoinen valinta, joka\n"
-"toimii kaikilla nykyaikaisilla näytönohjaimilla. Lopuksi valitse \"Testaa\n"
-"uudelleen\" varmistaaksesi toimimisen."
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Lopuksi sinulta kysytään, haluatko käynnistyksessä graafisen rajapinnan.\n"
-"Huomaa, että kysymys esitetään vaikka et olisi testannut asetuksia.\n"
-"Haluat varmaankin vastata \"Ei\", jos koneesi on tarkoitettu palvelimeksi\n"
-"tai jos näytön asetus epäonnistui."
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-#, fuzzy
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Tässä vaiheessa sinun pitää valita mihin haluat asentaa Mandrake Linux\n"
-"-käyttöjärjestelmän. Jos kiintolevysi on tyhjä tai olemassaoleva "
-"käyttöjärjestelmä\n"
-"käyttää kaiken siinä olevan tilan, sinun pitää osioida kiintolevysi. "
-"Yksinkertaistaen\n"
-"kiintolevyn osiointi koostuu levytilan jakamisesta loogisiin osiin tilan "
-"saamiseksi\n"
-"Mandrake Linux -järjestelmälle.\n"
-"\n"
-"Koska osiointiprosessin vaikutukset ovat tavallisesti peruuttamattomia, voi\n"
-"osiointi olla pelottavaa ja stressaavaa kokemattomalle käyttäjälle. Onneksi\n"
-"on olemassa velho, joka on tehty helpottamaan prosessia. Ennen kuin "
-"aloitat,\n"
-"käytä riittävästi aikaa ohjekirjan lukemiseen.\n"
-"\n"
-"Jos asennus on asiantuntijatilassa, pääset DiskDrakeen, Mandrake Linuxin\n"
-"osiointityökaluun, joka antaa sinun hienosäätää osioitasi. Katso tässä "
-"tapauksessa\n"
-"ohjekirjan DiskDrakea koskeva kappale. Voit myös käyttää asennuksen velhoa\n"
-"painamalla dialogin \"Velho\"-painiketta.\n"
-"\n"
-"Jos osiot on jo määritelty, joko edellisessä asennuksessa tai jonkin toisen\n"
-"osiointityökalun toimesta, voit yksinkertaisesti valita niistä ne, joihin "
-"haluat asentaa\n"
-"Linux-järjestelmäsi.\n"
-"\n"
-"Jos osioita ei ole vielä määritelty, sinun pitää luoda ne käyttämällä "
-"velhoa.\n"
-"Riippuen kiintolevyn asetuksista, on käytössä erilaisia vaihtoehtoja:\n"
-"\n"
-" * \"Käytä vapaa tila\": tämä vaihtoehto osioi automaattisesti tyhjät "
-"kovalevyt.\n"
-"Sinua ei vaivata päätäsi sen enempää.\n"
-"\n"
-" * \"Käytä olemassaolevaa osiota\": velho on löytänyt yhden tai useamman\n"
-"olemassaolevan Linux.osion kiintolevylläsi. Jos haluat käyttää niitä, "
-"valitse\n"
-"tämä vaihtoehto.\n"
-"\n"
-" * \"Käytä tyhjää tilaa Windows-osiossa\": Jos Microsoft Windows on "
-"asennettuna\n"
-"kiintolevyllesi ja se käyttää kaiken levyllä olevan tilan, sinun täytyy "
-"tehdä vapaata\n"
-"tilaa Linuxin tiedoille. Tehdäksesi sen, voit tuhota Microsoft Windowsin "
-"käyttämän\n"
-"osion ja tiedot (katso kohta \"Tyhjennä koko lavy\" tai \"Asiantuntijatila"
-"\") tai voit\n"
-"muuttaa Microsoft Windowsin käyttämän osion kokoa. Koon muuttaminen voidaan "
-"tehdä hävittämättä mitään levyllä olevista tiedoista. Tämä vaihtoehto on "
-"suositeltu,\n"
-"mikäli haluat käyttää sekä Mandrake Linuxia että Microsoft Windowsia "
-"samalla\n"
-"tietokoneella.\n"
-"\n"
-" Ennen kuin valitset tämän vaihtoehdon, sinun tulee tietää, että "
-"Microsoft\n"
-"Windowsin käyttämän osion koko pienenee operaarion johdosta. Sinulla tulee\n"
-"siis olemaan nykyistä vähemmän tilaa uusien ohjelmien asentamiseen ja "
-"tietojen\n"
-"tallentamiseen Microsoft Windowsin alla.\n"
-"\n"
-" * \"Tyhjennä koko lavy\": jos haluat tuhota kaikki levyllä olevan tiedon "
-"sekä sillä\n"
-"olevat osiot ja asentaa Mandrake Linux -järjestelmän niiden tilalle, voit "
-"valita\n"
-"tämän vaihtoehdon. Ole varovainen, sillä et pysty enää palauttamaan levyn "
-"sisältöä\n"
-"ennalleen sen jälkeen, kun olet hyväksynyt toiminnon.\n"
-"\n"
-" !! Jos valitset tämän vaihtoehdon, kaikki levylläsi oleva tieto "
-"tuhoutuu. !!\n"
-"\n"
-" * \"Poista Windows\": tämä yksinkertaisesti poistaa kaiken, mitä levyllä "
-"on, ja\n"
-"aloittaa puhtaasti osioimalla kaiken alusta alkaen. Kaikki levyllä oleva "
-"tieto tuhoutuu.\n"
-"\n"
-" !! Jos valitset tämän vaihtoehdon, kaikki levylläsi oleva tieto "
-"tuhoutuu. !!\n"
-"\n"
-" * \"Asiantuntijatila\": jos haluat osioida kiintolevysi itse, voit valita "
-"tämän\n"
-"vaihtoehdon. Ole varovainen - tämä on tehokas, mutta vaarallinen valinta.\n"
-"Voit todella helposti menettää kaiken tiedon. Joten älä valitse tätä "
-"ratkaisua,\n"
-"ellet tiedä, mitä olet tekemässä."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Kaikki vasta määritellyt osiot täytyy alustaa käyttöä varten (alustaminen\n"
-"tarkoittaa tiedostojärjestelmän luontia).\n"
-"\n"
-"Samalla voit haluta alustaa uudelleen myös olemassaolevia osioita\n"
-"poistaaksesi kaiken niissä olevan tiedon. Jos haluat haluat tehdä niin,\n"
-"valitse myös ne osiot.\n"
-"\n"
-"Huomaa, että sinun ei ole pakko alustaa kaikkia jo olemassa olevia\n"
-"osioita. Sinun pitää alustaa ne osiot, joilla käyttöjärjestelmä\n"
-"sijaitsee (kuten \"/\", \"/usr\" ja \"/var\"), mutta voit säilyttää osiot,\n"
-"joilla henkilökohtaiset tiedostosi sijaitsevat (tavallisesti \"/home\").\n"
-"\n"
-"Ole huolellinen osioita valitessasi. Alustamisen jälkeen kaikki tieto\n"
-"valituilla osioilla on poissa eikä niiden palauttaminen enää onnistu.\n"
-"\n"
-"Valitse \"Ok\", kun olet valmis alustamaan osiot.\n"
-"\n"
-"Valitse \"Peruuta\", jos haluat valita toisen osion Mandrake Linuxin\n"
-"asentamiseen.\n"
-"\n"
-"Valitse \"Lisäasetukset\", jos haluat valita osiot, jotka tarkistetaan "
-"levyllä\n"
-"olevien huonojen kohtien varalta."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Uutta Mandrake Linux -käyttöjärjestelmääsi asennetaan parasta aikaa.\n"
-"Asennettavien pakettien määrästä ja koneesi nopeudesta riippuen\n"
-"vie tämä toiminto muutamasta minuutista useaan tuntiin.\n"
-"\n"
-"Kärsivällisyyttä."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Ennen jatkamista sinun pitäisi lukea huolellisesti lisenssin ehdot. "
-"Lisenssi\n"
-"kattaa koko Mandrake Linux -jakelun, ja jos et hyväksy kaikkia ehtoja,\n"
-"paina \"Kieltäydy\"-painiketta joka keskeyttää asennuksen heti. Jatkaaksesi\n"
-"asennusta paina \"Hyväksy\"-painiketta."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"Tässä vaiheessa on aika valita tietokoneellesi sopiva turvataso.Yleisesti\n"
-"mitä avoimempi koneesi on ja mitä enemmän tärkeää tietoa on talletettu\n"
-"koneellesi, sitä korkeampi turvatason pitäisi olla. Huomaa kuitenkin, että\n"
-"korkeampi turvallisuustaso saavutetaan yleensä käytettävyyden\n"
-"kustannuksella. Lue MSEC-kappale \"Reference Manualista\" saadaksesi\n"
-"lisää tietoa turvatasojen merkityksestä.\n"
-"\n"
-"Jos et tiedä mitä valita, käytä oletuksena olevaa vaihtoehtoa."
-
-#: ../../help.pm_.c:442
-#, fuzzy
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Tässä vaiheessa sinun pitää valita mille osioille haluat asentaa Mandrake "
-"Linux\n"
-"-käyttöjärjestelmän. Jos osiot on jo määritelty (edellisessä asennuksessa \n"
-"tai jonkin toisen osiointiohjelman toimesta), voit käyttää olemassaolevia "
-"osioita.\n"
-"Muuten kiintolevyosiot täytyy määrittää.\n"
-"\n"
-"\n"
-"Luodaksesi osioita, sinun täytyy ensiksi valita kiintolevy. Voit valita \n"
-"levyn osioitavaksi painamalla \"hda\" ensimmäille IDE-asemalle, \"hdb\"\n"
-"toiselle tai \"sda\" ensimmäiselle SCSI-levylle ja niin edelleen.\n"
-"\n"
-"\n"
-"Osioidaksesi valitun kiintolevyn, voit käyttää seuraavia vaihtoehtoja:\n"
-"\n"
-"\n"
-" * Tyhjennä kaikki: tämä valinta tuhoaa kaikki osiot valitulla "
-"kiintolevyllä.\n"
-"\n"
-"\n"
-" * Automaattinen varaus: Tämä valinta luo automaattisesti Ext2- ja "
-"virtuaalimuistiosiot kiintolevysi käyttämättömästä osasta.\n"
-"\n"
-"\n"
-" * Pelasta osiointitaulu: jos osiointitaulu on vaurioitunut, voit yrittää "
-"toipua vaurioista käyttämällä tätä valintaa.\n"
-" Muista, että tämä toimenpide voi myös epäonnistua.\n"
-"\n"
-"\n"
-" * Peruuta: voit käyttää tätä valintaa peruaksesi tehdyt muutokset.\n"
-"\n"
-"\n"
-" * Palauta: voit käyttää tätä valintaa, jos haluat perua kaikki muutokset "
-"ja palauttaa alkuperäisen osiointitaulun.\n"
-"\n"
-"\n"
-" * Velho: jos haluat käyttää velhoa kiintolevysi osiointiin, voit käyttä "
-"tätä valintaa. Tämä on \n"
-" suositeltu valinta, jos sinulla ei ole paljoa kokemusta osioinnista.\n"
-"\n"
-"\n"
-" * Palauta levykkeeltä: jos olet tallentanut osiointitaulun levykkeelle, "
-"voit palauttaa tallennushetkellä \n"
-" voimassa olleet asetukset.\n"
-"\n"
-"\n"
-" * Tallenna levykkeelle: jos haluat tallentaa osiointitaulun levylle "
-"pystyäksesi palauttamaan sen,\n"
-" voit käyttää tätä valintaa. Suosittelen, että teet tämän ennen kuin "
-"muutat osiointitietoja.\n"
-"\n"
-"\n"
-" * Valmis: kun olet osioinut kiintolevysi, käytä tätä valintaa "
-"tallentaaksesi muutokset levylle.\n"
-"\n"
-"\n"
-"Kun osio on valittuna voit käyttää:\n"
-"\n"
-"\n"
-" * Ctrl-c luodaksesi uuden osion (kun tyhjä osio on valittuna)\n"
-"\n"
-" * Ctrl-d tuhotaksesi osion\n"
-"\n"
-" * Ctrl-m asettaaksesi osion liitoskohdan tiedostojärjestelmässä\n"
-"\n"
-"\n"
-"Mikäli asennat järjestelmää PPC-koneelta, haluat luoda pienen HFS "
-"'bootstrap'-osion, jonka koko on vähintään \n"
-"1 Mt yaboot-järjestelmänlataajan käyttöön. Jos haluat, voit tehdä "
-"tuostaosiosta myös suuremman, sanotaan 50 Mt, \n"
-"käyttääksesi sitä varaytimen ja ramdisk-imagen tallentamiseksi järjestelmän "
-"latauksen hätätilanteita varten."
-
-#: ../../help.pm_.c:513
-#, fuzzy
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Kiintolevyltä on löytynyt useampia kuin yksi Microsoft Windows -osio.\n"
-"Valitse niistä se, jonka kokoa haluat muuttaa pystyäksesi asentamaan\n"
-"Mandrake Linuxn tietokoneeseesi.\n"
-"\n"
-"\n"
-"Tiedoksi: jokaisesta osiosta on listattu seuraavat tiedot: \"Nimi Linuxissa"
-"\", \n"
-"\"Nimi Windowsissa\", \"Kapasiteetti\".\n"
-"\n"
-"\n"
-"\"Nimi Linuxissa\" on koodattu seuraavalla tavalla: \"Kiintolevyn tyyppi"
-"\", \n"
-"\"Kiintolevyn numero\", \"Osion numero\" (esimerkiksi \"hda1\").\n"
-"\n"
-"\n"
-"\"Kiintolevyn tyyppi\" on \"hd\" jos kiintolevysi on IDE-levy ja \"sd\" jos "
-"se on\n"
-"SCSI-levy.\n"
-"\n"
-"\n"
-"\"Kiintolevyn kirjain\" on aina kirjain heti \"hd\":n tai \"sd\":n jälkeen. "
-"IDE-asemilla:\n"
-"\n"
-" * \"a\" tarkoittaa \"herraksi määritelty kiintolevy ensisijaisella IDE-"
-"laitteella\",\n"
-"\n"
-" * \"b\" tarkoittaa \"orjaksi määritelty kiintolevy ensisijaisella IDE-"
-"laitteella\",\n"
-"\n"
-" * \"c\" tarkoittaa \"herraksi määritelty kiintolevy toissijaisella IDE-"
-"laitteella\",\n"
-"\n"
-" * \"d\" tarkoittaa \"orjaksi määritelty kiintolevy toissijaisella IDE-"
-"laitteella\",\n"
-"\n"
-"\n"
-"SCSI-levyillä \"a\" tarkoittaa \"ensisijainen kiintolevy\", \"b\" "
-"puolestaan\n"
-"\"toissijainen kiintolevy\", jne...\n"
-"\n"
-"\"Nimi Windowsissa\" on kiintolevysi kirjain Windowsin alla ( ensimmäinen "
-"levy\n"
-"tai osio on nimetty \"C:\":ksi)."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Kärsivällisyyttä. Tämä toiminto voi kestää useita minuutteja."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Valitse \"Asenna\", jos sinulla ei ole aikaisempaa versiota Mandrake "
-"Linuxsta\n"
-"asennettuna tai haluat käyttää useaa käyttöjärjestelmää.\n"
-"\n"
-"\n"
-"Valitse \"Päivitä\", jos haluat päivittää olemassaolevan version Mandrake "
-"Linuxsta.\n"
-"\n"
-"\n"
-"Riippuen osaamisestasi GNU/Linux-järjestelmissä, voit valita jonkin "
-"seuraavista tasoista Mandrake Linux -käyttöjärjestelmän asentamiseen tai "
-"päivittämiseen:\n"
-"\n"
-"\n"
-"* Suositeltu: jos et ole ikinä asentanut GNU/Linux-käyttöjärjestelmää, "
-"valitse tämä vaihtoehto.\n"
-" Asennus tulee olemaan helppo ja sinulta tullaan kysymään vain muutama "
-"kysymys.\n"
-"\n"
-"\n"
-"* Mukautettu: jos tunnet GNU/Linuxin tarpeeksi hyvin, voit valita "
-"järjestelmän tyypin käytön mukaan\n"
-" (työasema, palvelin, kehitys). Sinun tarvitsee vastata useampaan "
-"kysymykseen, kuin \"Suositellussa\" asennuksessa,\n"
-" joten sinun täytyy tietää miten GNU/Linux toimii, jos haluat valita tämän "
-"asennusluokan.\n"
-"\n"
-"\n"
-"* Asiantuntija: jos tunnet GNU/Linux-järjestelmän hyvin, voit valita tämän "
-"asennusluokan. Kuten\n"
-" \"Mukautetussa\" asennuksessa, sinun täytyy valita ensisijainen "
-"käyttökohde (työasema,\n"
-" palvelin, kehitys). Tämä asennusluokka tarjoaa joustavimman asennuksen, "
-"mutta jotkin kysymykset\n"
-" voivat osoittautua erittäin vaikeiksi niille, jotka eivät tunne GNU/"
-"Linuxia riittävän hyvin.\n"
-" Älä valitse tätä asennusluokkaa, ellet ole aivan varma, mitä olet "
-"tekemässä."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Tavallisesti DrakX valitsee sinulle oikean näppäimistön (sen mukaan, minkä\n"
-"kielen olet valinnut) ja et edes näe tätä kohtaa. Kuitenkaan sinulla ei "
-"välttämättä\n"
-"ole näppäimistöä, joka vastaa suoraan kieltäsi. Jos olet esimerkiksi "
-"englanninkielinen\n"
-"sveitsiläinen, voit silti haluta sveitsiläisen näppäimistön. Tai jos puhut "
-"Englantia,\n"
-"mutta asut Quebecissä, sinulla voi olla samanlainen tilanne. Molemmissa "
-"tapauksissa\n"
-"sinun pitää palata takaisin kyseiseen asennusvaiheeseen ja valita sopiva "
-"näppäimistö\n"
-"listasta.\n"
-"\n"
-"Paina \"Lisää\"-painiketta saadaksesi täydellisen listan tuetuista "
-"näppäimistöistä. "
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Valitse mieleisesi kieli asennukseen ja järjestelmän käyttöön.\n"
-"\n"
-"Painamalla \"Lisäasetukset\"-painiketta saat mahdollisuuden valita myös\n"
-"muita kieliä asennettavaksi työasemallesi. Muiden kielien valitseminen\n"
-"asentaa kielikohtaiset tiedostot järjestelmän dokumentoinnista ja\n"
-"ohjelmistoista. Esimerkiksi jos sinulla koneessasi Espanjalaisia käyttäjiä,\n"
-"valitse englanti (tai suomi) pääkieleksi ja lisäasetusten puolelta paina\n"
-"harmaata tähteä, joka vastaa Espanjaa.\n"
-"\n"
-"Huomaa, että voit valita useita kieliä. Kun olet valinnut haluamasi "
-"ylimääräiset\n"
-"kielet, paina \"Ok\"-painiketta jatkaaksesi."
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"DrakX olettaa yleisesti, että sinulla on kaksinäppäiminen hiiri ja kytkee\n"
-"sen kolmannen näppäimen emulaatiolla. DrakX tietää myös\n"
-"automaattisesti, onko se PS/2, sarja- vai USB-hiiri.\n"
-"\n"
-"Jos haluat asettaa eri tyyppisen hiiren, valitse sopiva tyyppi oheisesta\n"
-"listasta.\n"
-"\n"
-"Jos valitset muun kuin oletushiiren, saat eteesi hiiren testiruudun. Käytä\n"
-"hiiren nappeja ja rullaa varmistaaksesi, että asetukset ovat oikeat. Jos\n"
-"hiiri ei toimi kunnolla, paina välilyöntiä tai enteriä peruttaaksesi, minkä\n"
-"jälkeen voit valita uudelleen."
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Valitse oikea portti. Esimerkiksi \"COM1\" portti Windowsissa\n"
-"on nimetty \"ttyS0\":ksi GNU/Linuxissa."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (the LInux LOader) ja grub ovat järjestelmälataajia: ne voivat\n"
-"käynnistää joko GNU/Linuxin tai mikä tahansa tietokoneellasi olevan\n"
-"käyttöjärjestelmän. Tavallisesti kaikki käyttöjärjestelmät tunnistuvat ja\n"
-"asentuvat oikein. Jos edellinen ei kuitenkaan pidä paikkaansa, voit lisätä\n"
-"kyseisen kohdan käsin tässä ruudussa. Ole huolellinen, että tulet\n"
-"valinneeksi oikeat parametrit.\n"
-"\n"
-"Jos et halua kenenkään pääsevän osaan käyttöjärjestelmistä, voit\n"
-"tuhoa kyseiset kohdat. Mutta että siinä tapauksessa tarvitset itse\n"
-"käynnistyslevykettä päästäksesi kyseisiin käyttöjärjestelmiin!"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Sinun pitää osoittaa paikka, jonne haluat asettaa tarvittavat tiedot\n"
-"GNU/Linuxin käynnistämiseksi.\n"
-"\n"
-"Jos et tiedä tarkalleen mitä olet tekemässä, valitse \"Levyn ensimmäinen\n"
-"sektori (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX hakee koneeseen asennettuja PCI-väyläisiä SCSI-laitteita. \n"
-"Jos SCSI-laite löytyy ja DrakX tietää mitä ajuria käyttää, laite otetaan \n"
-"automaattisesti käyttöön.\n"
-"\n"
-"\n"
-"Jos tietokoneessasi ei ole SCSI-laitetta tai DrakX ei tunnista sinulla \n"
-"olevaa ISA- tai PCI-väyläistä SCSI-laitetta, DrakX kysyy onko koneessasi\n"
-"SCSI-liityntää. Jos ei, voit vallita \"Ei\". Jos valitset \"Kyllä\", tulee \n"
-"näkyviin lista ajureista, josta voit valita sinulla olevan laitteen.\n"
-"\n"
-"\n"
-"Jos sinun täytyy valita ajuri manuaalisesti, DrakX kysyy, haluaisitko "
-"määrittää\n"
-"sille lisäoptioita. Sinun kannattaa antaa DrakX:n tutkia laitteistosi "
-"optioiden\n"
-"löytämiseksi, sillä yleensä kyseinen toiminto toimii hyvin.\n"
-"\n"
-"\n"
-"Jos ei, sinun pitää itse antaa optiot kyseiselle ajurille. Katso lisätietoja "
-"käyttöohjeesta\n"
-"(luku 3, osa \"Collective informations on your hardware\"), jossa on "
-"vinkkejä\n"
-"miten nämä tiedot löytyvät laitteiston ohjekirjoista, "
-"laittteistovalmistajan\n"
-"webbisivuilta (jos sinulla on internetyhteys) tai Microsoft Windowsista "
-"(jos\n"
-"se on asennettu tietokoneeseesi)."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Valitse kiintolevy, jonka haluat tyhjentää uudelle Mandrake Linux -osiolle.\n"
-"Ole varovainen, koska kaikki asemalla oleva tieto tuhoutuu eikä ole enää\n"
-"palautettavissa!"
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Paina \"OK\", jos haluat tuhota kaiken tällä kiintolevyllä olevan tiedon\n"
-"sekä osiot. Ole varovainen, sillä painettuasi \"OK\" et voi enää palauttaa\n"
-"mitään tällä kiintolevyllä olleita tietoja ja osioita, mukaanlukien kaikki\n"
-"Windows-tiedostot.\n"
-"\n"
-"Paina \"Peruuta\" keskeyttääksesi tämän toiminnon ilman että menetät\n"
-"mitään kiintolevyllä ollutta tietoa ja osoita."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "Sinun täytyy myös alustaa %s"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Olet valinnut seuraavat palvelimet: %s\n"
-"\n"
-"\n"
-"Nämä palvelimet otetaan oletuksena käyttöön. Niissä ei ole tunnettuja \n"
-"turvallisuusaukkoja, mutta sellaisia voi löytyä ajan mittaan. Mikäli niin \n"
-"tapahtuu, pitäisi sinun päivittää kyseiset palvelimet niin nopeasti kuin \n"
-"suinkin mahdollista.\n"
-"\n"
-"\n"
-"Haluatko todella asentaa nämä palvelimet?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr ""
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Aseta tyhjä FAT-alustettu levyke levyasemaan %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Tämä levyke ei ole FAT-alustettu"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Käyttääksesi tätä \"tallennetut paketit\" valintaa, käynnistä asennus "
-"optiolla \"linux defcfg=floppy\""
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Virhe lukiessa tiedostoa %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Jokin osa laitteistoasi tarvitsee laitteistovalmistajan ajurit toimiakseen "
-"kunnolla.\n"
-"Voit löytää lisätietoja edellämainituista täältä: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Sinulla tulee olla juuriosio.\n"
-"Tätä varten luo osio (tai klikkaa olemassaolevaa).\n"
-"Valitse sitten toiminto ``Liitospaikka'' ja aseta se arvoon `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Sinulla tulee olla heittovaihtotiedosto"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Sinulla ei ole heittovaihto-osiota\n"
-"\n"
-"Jatka kuitenkin?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Sinulla pitää olla FAT-osio liitettynä hakemistoon /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Käytä tyhjää tilaa"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Ei tarpeeksi tilaa uusien osioiden luomiseksi"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Käytä olemassa olevia osioita"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Ei ole olemassa olevaa osiota käytettäväksi"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Käytä Windows-osiota loopback-tiedostona"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Mille osiolle haluat laittaa Linux4Win:in?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Valitse koot"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Juuriosion koko Mt: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Sivutusosion koko Mt: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Käytä tyhjää tilaa Windows-osiolla"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Minkä osion kokoa haluat muuttaa?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Lasken Windows-tiedostojärjestelmän rajoja"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"FAT-järjestelmän koon muuttaja ei osaa käsitellä osiotasi,\n"
-"saatiin seuraava virhe: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Windows-osiosi on liian pirstoutunut, mene Windowsiin ja aja \"defrag\" ensin"
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"VAROITUS!\n"
-"\n"
-"DrakX aikoo nyt muuttaa Windows-osiosi kokoa. Ole varovainen:\n"
-"tämä toimenpide on vaarallinen. Jos et ole vielä tarkistanut \n"
-"Windows-osioitasi, sinun tulisi poistua asennuksesta, ajaa\n"
-"kiintolevyjen tarkistus Windowsissa (sekä mahdollisesti myös\n"
-"eheyttää levyt). Sen jälkeen voit aloittaa asennuksen uudelleen.\n"
-"Samalla suosittelen ottamaan varmuuskopiot tärkeistä tiedoista.Kun olet "
-"varma, paina Ok."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Kuinka paljon tilaa haluat säilyttää Windowsilla"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "osio %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT-tiedostojärjestelmän koon muuttaminen epäonnistui: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Ei ole FAT-osioita, joiden kokoa voisi muuttaa tai käyttää loopback-"
-"tiedostoina (tai osiot ovat täynnä)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Tyhjennä koko levy"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Poista Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Sinulla on enemmän kuin yksi kiintolevy. Mille haluat asentaa Linuxin?"
-
-# mat
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "KAIKKI olemassaolevat osiot ja niissä oleva tieto tuhoutuu asemalta %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Mukautettu levyn osiointi"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Käytä fdiskiä"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Voit nyt osioda kiintolevysi %s\n"
-"Kun olet valmis, älä unohda tallettaa asetuksia komennolla `w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Sinulla ei ole tarpeeksi tilaa Windows-osiollasi"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Ei ole tarpeeksi tilaa asentamiseen"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX-Osiointivelho löysi seuraavat ratkaisut:"
-
-# mat
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Osiointi epäonnistui: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Käynnistän verkkoa"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Ajan alas verkkoa"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Tapahtui virhe, sitä ei voida käsitellä kunnolla.\n"
-"Jatka omalla riskilläsi."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Kahdentunut liitospaikka %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Osa tärkeistä paketeista jäi asentamatta loppuun asti.\n"
-"Joko cdrom-asemasi tai levy on viallinen.\n"
-"Tarkista cdrom Linux-koneessa käyttämällä \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-
-# mat
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Tervetuloa %s:n"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Ei levykeasemaa käytettävissä"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Siirryn vaiheeseen `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Järjestelmäsi resurssit ovat lopussa. Voit kohdata ongelmia Mandrake Linuxa "
-"asentaessasi.\n"
-"Jos näin tapahtuu, voit kokeilla tekstipohjaista asennusta. Tehdäksesi niin "
-"paina `F1' kun\n"
-"käynnistät asennusohjelmaa CDROM-asemasta. Tämän jälkeen kirjoita `text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Asennusluokka"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Valitse yksi seuraavista asennusluokista:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Valitsemiesi ryhmien kokonaiskoko on suunnilleen %d Mt.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Jos haluat asentaa vähemmän kuin tämä koko,\n"
-"valitse prosenttiosuus paketeista jonka haluat asentaa.\n"
-"\n"
-"Pieni prosenttiosuus asentaa vain tärkeimmät paketit,\n"
-"100%% osuus asentaa kaikki paketit."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Sinulla on levyllä tilaa vain %d%% paketeista\n"
-".Jos haulat asentaa vähemmän kuin tämän osan,\n"
-"valitse prosenttiosuus paketeista jotka haluat asentaa.\n"
-"Pieni prosentti asentaa vain tärkeimmät paketit, %d%%\n"
-" prosenttiosuus asentaa niin monta pakettia kuin on mahdollista."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Voit valita paketit tarkemmin seuraavassa vaiheessa"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Prosenttiosuus asennettavista paketeista"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Pakettiryhmien valinta"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Yksittäisten pakettien valinta"
-
-# mat
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Koko yhteensä: %d / %d Mt"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Viallinen paketti"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Nimi: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versio: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Koko: %d Kt\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Tärkeys: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Et voi asentaa tätä pakettia, koska levyllä ei ole tarpeeksi tilaa sen "
-"asentamiseksi"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Seuraavat paketit asennetaan"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Seuraavat paketit poistetaan"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Et voi valita/poistaa tätä pakettia"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Tämä on pakollinen paketti, sitä ei voida poistaa valinnoista"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Et voi poistaa tämän paketin valintaa. Se on jo asennettu"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Tämä paketti tulee päivittää\n"
-"Oletko varma että haluat poistaa valinnan?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Et voi poistaa tämän paketin valintaa. Paketti pitää päivittää."
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Näytä automaattisesti valitut paketit"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Asenna"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Lataa/Tallenna levykkeelle"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Päivitän pakettien valintaa"
-
-# Asennuksen sivuvalikko
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Minimaalinen asennus"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Valitse asennettavat paketit"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Asennan"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Arvioin aikaa"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Jäljellä "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Valmistelen asennusta"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pakettia"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Asennan pakettia %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Hyväksy"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Hylkää"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Vaihda CD-levyä!\n"
-"\n"
-"Aseta CD-levy nimeltään \"%s\" CD-asemaan ja paina Ok kun olet valmis.\n"
-"Jos sinulla ei ole levyä, paina Peruuta välttääksesi asennukset tältä "
-"levyltä."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Jatka kuitenkin?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Tapahtu virhe järjestettäessä paketteja:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Tapahtu virhe asennettaessa paketteja:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Varoitus\n"
-"\n"
-"Lue huolellisesti alla olevat ehdot. Jos et ole samaa mieltä kaikkien\n"
-"ehtojen kanssa, sinulla ei ole oikeuksia asentaa seuraavaa CD-levyä.\n"
-"Paina 'Kieltäydyn' jos haluat jatkaa asennusta käyttämättä näitä osia.\n"
-"\n"
-"\n"
-"Jotkin seuraavalla CD-levyllä olevat komponentit eivät ole GPL:n tai \n"
-"vastaavanlaisen lisenssin alaisia. Jokaisen tällaisen komponentin ehdot \n"
-"on määritelty erikseen niiden omien lisenssien mukaan. Tutustu näihin \n"
-"lisensseihin huolellisesti ennen kuin käytät tai levität näitä "
-"komponentteja \n"
-"eteenpäin. Tällaiset lisenssit kieltävät tavallisesti siirtämisen, "
-"kopioimisen\n"
-"(lukuunottamatta varmuuskopioita), uudelleenlevityksen, "
-"käänteissuunnittelun \n"
-"binäärikoodin kääntämisen tai muokkaamisen. Jokainen rike sopimusta \n"
-"vastaan päättää oikeutesi kyseiseen lisenssiin. Ellei ole olemassa "
-"erityisiä \n"
-"ehtoja, jotka sallivat ohjelmiston asentamisen useaan koneeseen tai \n"
-"niiden käyttämistä verkon yli, et saa myöskään tehdä niin. Jos et ole \n"
-"varma kaikista ehdoista, ota yhteys suoraan kyseisen komponentin \n"
-"tekijään tai jakelijaan. Yllä mainittujen komponenttien tai niiden \n"
-"dokumentaation saattaminen kolmannen osapuolen käsiin on tavallisesti \n"
-"kieletty.\n"
-"\n"
-"\n"
-"Kaikki oikeudet seuraavan levyn komponentteihin kuuluvat niiden \n"
-"asianomaisille tekijöille ja ne on suojattu yksityisen omaisuuden ja \n"
-"ohjelmiston tekijänoikeuslakien avulla.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Tapahtui virhe"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "Haluatko todella poistua asennuksesta?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Lisenssin hyväksyminen"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Näppäimistö"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Valitse näppäimistösi asettelu."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Tässä on koko lista olemassa olevista näppäimistöistä"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Valitse asennuksen luokka?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Asenna/Päivitä"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Onko tämä asennus vai päivitys?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Suositeltu"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Asiantuntija"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Päivitä"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Päivitä vain paketit"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Valitse hiiren tyyppi."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Hiiren portti"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Mihin sarjaporttiin hiiresi on liitetty."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Näppäinemulaatio"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "2. näppäimen emulaatio"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "3. näppäimen emulaatio"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Asetan PCMCIA kortteja...."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Asetan IDE-levyä"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "ei vapaita osioita"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Tarkistan osioita löytääkseni liitoskohdat"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Valitse liitospaikat"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Osiotaulua ei voida lukea, siinä on liikaa virheitä :(\n"
-"Asennusta voidaan jatkaa yrittämällä tyhjentää virheelliset osiot\n"
-"(KAIKKI TIETO tuhoutuu!). Toinen vaihtoehto on kieltää DrakX:ää\n"
-"muokkaamasta osiointitaulua. (virhe on: %s)\n"
-"\n"
-"Hyväksytkö kaikkien osioiden menettämisen?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake ei pystynyt lukemaan osiotaulua oikein.\n"
-"Jatka omalla vastuullasi!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Ei vapaata tilaa 1 Mt:n käynnistyslohkoa varten! Asennusta jatketaan, mutta "
-"käynnistääksesi järjestelmän, sinun pitää luoda käynnistyslohko-osio "
-"DiskDrakessa."
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Päivitykseen tarvittavaa juuriosiota ei löytynyt"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Juuriosio"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Mikä on järjestelmäsi juuriosio (/) ?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Sinun tulee käynnistää järjestelmä uudelleen jotta muutokset tulevat voimaan"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Valitse alustettavat osiot"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Tarkista vialliset lohkot?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Alustan osioita"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Luon ja alustan tiedostoa %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Heittovaihtotiedosto ei ole riittävän suuri, suurenna sitä"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Etsin saatavilla olevia paketteja"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Etsin päivitettäviä paketteja"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Järjestelmässäsi ei ole riittävästi tilaa asennukseen tai päivitykseen (%d > "
-"%d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Täydellinen (%dMt)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimi (%dMt)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Suositeltu (%dMt)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Lataa tai tallenna pakettien valinta levykkeelle.\n"
-"Muoto on sama kuin auto_install-toiminnon luomilla levykkeillä."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Lataa levykkeeltä"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Ladataan levykkeeltä"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Pakettien valinta"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Aseta levyke, jossa on pakettien valinta"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Tallenna levykkeelle"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Valittu koko on suurempi kuin olemassa oleva levytila"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Asennuksen tyyppi"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Et ole valinnut yhtäkään pakettiryhmää\n"
-"Valitse haluamasti minimaalinen asennus"
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "X:llä"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "Perusdokumentaation kanssa (suositeltu!)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Pienin mahdollinen asennus (erityisesti ei urpmia)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Jos sinulla on kaikki CD.levyt allaolevalta listalta, paina OK.\n"
-"Jos sinulla ei ole mitään levyistä, paina Peruuta.\n"
-"Jos jotkut levyistä puuttuvat, poista niiden valinnat, ja paina OK."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom nimeltään \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Valmistelen asennusta"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Asennan pakettia %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Asennuksen jälkeiset toiminnot"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Aseta käyttämäsi käynnistyslevyke asemaan %s"
-
-# mat
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Aseta moduulien päivityslevyke asemaan %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Sinulla on nyt mahdollisuus hakea internetistä ne ohjelmistot, jotka on \n"
-"suunnattu tiedon salakirjoittamiseen.\n"
-"\n"
-"VAROITUS:\n"
-"\n"
-"Näitä ohjelmistoja koskevien eri tasoisten vaatimusten ja eri "
-"lainsäädäntöjen \n"
-"määräysten vuoksi näiden ohjelmistojen asiakkaan ja/tai loppukäyttäjän \n"
-"pitää varmistaa, että hänen maansa lainsäädäntö sallii hänen hakea, "
-"tallentaa \n"
-"ja käyttää näitä ohjelmistoja.\n"
-"\n"
-"Lisäksi asiakkaan ja/tai loppukäyttäjän tulee olla erityisen varmoja siitä, "
-"etteivät \n"
-"he riko maansa lainsäädäntöä vastaan.Mikäli asiakas ja/tai loppukäyttäjä "
-"ei \n"
-"noudata näiden lakien määräyksiä, heille voidaan langettaa vakaviakin \n"
-"rangaistuksia.\n"
-"\n"
-"Missään tilanteissa ei Mandrakesoft tai sen valmistajat ja/tai "
-"jälleenmyyjät \n"
-"ole vastuuvelvollisia erityisiin, epäsuoriin tai satunnaisiin vahinkoihin, "
-"jotka\n"
-"voivat aiheutua (mukaan lukien, mutta ei rajoittuen: tulonmenetykset, \n"
-"yritystoiminnan katkeaminen, kaupallisten tietojen menetys ja muut \n"
-"rahalliset menetykset, sekä mahdolliset vahingonkorvaukset, jotka oikeus \n"
-"päättää langettaa). ohjelmiston käyttämisestä, hallussapidosta, tai "
-"pelkästä \n"
-"internetistä hakemisesta, jossa asiakas ja/tai loppukäyttäjä voi saada \n"
-"haltuunsa nämä ohjelmistot hyväksyttyään tämän sopimuksen.\n"
-"\n"
-"\n"
-"Mihin tahansa tätä sopimusta koskeviin tiedusteluihin, ota yhteys:"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Sinulla on nyt mahdollisuus hakea päivitetyt paketit, jotka on julkaistu\n"
-"jakelun ilmestymisen jälkeen.\n"
-"\n"
-"Saat turva- ja ohjelmistokorjaukset, mutta tarvitset toimivan internet-\n"
-"yhteyden jatkaaksesi.\n"
-"\n"
-"Haluatko asentaa päivitykset ?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Otan yhteyttä Mandrake Linuxin sivustolle saadakseni listan olemassaolevista "
-"peileistä"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Valitse peilijärjestelmä josta paketit haetaan"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Yhdistän peilijärjestelmään hakeakseni uusimman pakettilistan"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Mikä on järjestelmäsi aikavyöhyke?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Laitteistokello asetettu GMT-aikaan"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automaattinen kellon synkronisointi (käyttäen NTP:tä)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP-palvelin"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Ulkoinen CUPS-palvelin"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Ei kirjoitinta"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Onko sinulla muita?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Johtopäätös"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Hiiri"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Aikavyöhyke"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Kirjoitin"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDN-kortti"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Äänikortti"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV-kortti"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Paikalliset tiedostot"
-
-# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Ylläpitäjän salasana"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Ei salasanaa"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr ""
-"Salasana on liian yksinkertainen (sen tulee olla ainakin %d merkkiä pitkä)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Tunnistustapa"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Tunnistus LDAPilla"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP perus-dn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAP-palvelin"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "Tunnistus NIS:llä"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS-alue"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS-palvelin"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Mukautetulla käynnistyslevykkeellä voit käynnistää järjestelmän ilman\n"
-"tavanomaisen käyttöjärjestelmälataajan apua. Tästä on hyötyä, jos et halua\n"
-"asentaa SILOa järjestelmääsi, toinen käyttöjärjestelmä poistaa SILOn,\n"
-"tai SILO ei toimi laitteistossasi. Mukautettua käynnistyslevykettä voidaan\n"
-"käyttää myös Mandraken vikasietolevykkeen kanssa, jolloin vakavista\n"
-"järjestelmän virhetilanteista on helpompi toipua.\n"
-"\n"
-"Jos haluat luoda käynnistyslevykkeen järjestelmääsi, aseta levyke\n"
-"ensimmäiseen asemaan ja paina \"Ok\","
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Ensimmäinen levyasema"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Toinen levyasema"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Ohita"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Mukautetulla käynnistyslevykkeellä voit käynnistää järjestelmän ilman\n"
-"tavanomaisen käyttöjärjestelmälataajan apua. Tästä on hyötyä, jos et halua\n"
-"asentaa LILOa (tai grubia) järjestelmääsi, toinen käyttöjärjestelmä poistaa\n"
-"LILOn, tai LILO ei toimi laitteistossasi. Mukautettua käynnistyslevykettä "
-"voidaan\n"
-"käyttää myös Mandraken vikasietolevykkeen kanssa, jolloin vakavista\n"
-"järjestelmän virhetilanteista on helpompi toipua.\n"
-"Haluatko luoda käynnistyslevykkeen järjestelmääsi?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Levyajuria ei ole saatavilla"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Valitse levyasema jolla luot käynnistyslevykkeen"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Aseta levyke asemaan %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Luon käynnistyslevykettä"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Valmistelen käyttöjärjestelmän lataajaa"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Sinulla on vanhanaikainen tai tuntematon tietokone,\n"
-"joten yaboot järjestelmänlataaja ei toimi koneessasi.\n"
-"Asennus jatkuu, mutta sinun täytyy käyttää BootX:ää\n"
-"koneesi käynnistämiseen"
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Haluatko käyttää aboot:ia?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Virhe asennettaessa aboot:a,\n"
-"yritä pakkoasennusta vaikka se tuhoaa ensimmäisen osion?"
-
-# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Asennan käyttöjärjestelmän lataajaa"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Järjestelmälataajan asennus epäonnistu. Seuraava virhe tapahtui:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Sinun pitää ehkä muuttaa Open Firmware -käynnistyslaitetta\n"
-"aktivoidaksesi järjeslelmälataajan. Jos et näe järjeslelmälataajaa\n"
-"käynistäessäsi konettasi uudelleen, Paina Command-Option-O-F\n"
-"käynnistyksen yhteydessä ja kirjoita:\n"
-"setenv boot-device %s,\\\\:tbxi\n"
-"sitten kirjoita: shut-down\n"
-"Seuraavalla käynnistyskerralla sinun pitäisi nähdä käynnistyslataajan\n"
-"komentokehoite."
-
-# mat
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Aseta tyhjä levyke levyasemaan %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Valmistelen automaattiasennuslevykettä"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Joitain vaiheita ei ole saatettu loppuun.\n"
-"\n"
-"Haluatko todella lopettaa?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Onnittelut, asennus on valmis.\n"
-"Poista käynnistettävä media ja paina Enter käynnistääksesi koneen "
-"uudelleen.\n"
-"\n"
-"\n"
-"Löydät tähän Mandrake Linuxin versioon olemassaolevat korjaukset ja\n"
-"korjattujen virheiden listan osoitteesta:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Järjestelmän asettamisesta saat tietoja virallisen Linux Mandraken\n"
-"käyttäjäoppaan jälkiasennuskappaleesta."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Valmistelen automaattista asennuslevykettä"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"Automaattinen asennus voi olla täysin automatisoitu,\n"
-"jos niin halutaan. Siinä tapauksessa asennus täyttää\n"
-"koko kiintolevyn! (tarkoitettu toisen koneen asentamiseksi),\n"
-"\n"
-"Ehkä haluat mieluummin toistaa asennuksen.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automaattinen"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Toista"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Yksittäisten pakettien valinta"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux Asennus %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> vaihtaa elementtiä | <Space> valitsee | <F12> seuraava "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu puuttuu"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Valitse tiedosto"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Lisäasetukset"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Perusasetukset"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Odota hetki"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Tietoja"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Laajenna puu"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sulje puu"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Vaihda tasaisen ja ryhmäjärjestyksen välillä"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Huono valinta, yritä uudelleen\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Valintasi? (oletus %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Kohdat, jotka sinun pitää täyttää:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Valintasi? (0/1, oletus '%s') "
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Painike '%s': %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "Haluatko klikata tätä painiketta? "
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Valintasi? (oletus '%s'%s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> On monta asiaa, joista valita (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Valitse ensimmäinen numero 10-välistä, jota haluat muokata,\n"
-"tai paina vain Enter jatkaaksesi.\n"
-"Valintasi? "
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Huomaa, nimike vaihtui:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Lähetä uudelleen"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Tsekki (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Saksa"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Espanja"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Suomi"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Ranska"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norja"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Puola"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Venäjä"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Ruotsi"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "UK näppäimistö"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "US näppäimistö"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Albaani"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armeenia (vanha)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armeenia (kirjoituskone)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armeenia (foneettinen)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgia"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgaria (foneettinen)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "Bulgaria (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasilia"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Valkovenäjä"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Sveitsi (Saksalainen järjestys)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Sveitsi (Ranskalainen järjestys)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Tsekki (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Saksa (ei kuolleita näppäimiä)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Tanska"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Norja (Dvorak)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Ruotsi)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Eesti"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgia (\"Venäläinen\"-järjestys)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgia (\"Latin\"-järjestys)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Kreikka"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Unkari"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Kroatia"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Israeli"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Israeli (Foneettinen)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iran"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islanti"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italia"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japani 106-näppäiminen"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Korealainen näppäimistö"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latinalainen amerikka"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Liettua AZERTY (vanha)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Liettua AZERTY (uusi)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Liettua \"numerorivi\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Liettua \"foneettinen\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "Latvia"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Makedonia"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Hollanti"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Puola (qwerty järjestys)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Puola (qwertz järjestys)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugali"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Kanada (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Romania (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Romania (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Venäjä (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slovenia"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovakia (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovakia (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Serbia (cyrillic)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "Tamil"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Thai-näppäimistö"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Tajik-näppäimistö"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turkki (perinteinen \"F\"-malli)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turkki (perinteinen \"Q\"-malli)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukraina"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "US näppäimistö (kansainvälinen)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamilainen \"numerorivi\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslavia (latin)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-#, fuzzy
-msgid "Left \"Windows\" key"
-msgstr "Hae Windowsin kirjasimet"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Rengasmaisia liitoksia %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Poista loogiset osiot ensin\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr "PCMCIA:ta ei tueta enää 2.2-sarjan ytimissä. Käytä 2.4 ydintä."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Hiiri"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Yleinen PS2 rullahiiri"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 näppäin"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Yleinen 2-nappinen hiiri"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Yleinen"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Rulla"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "sarja"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Yleinen 3-nappinen hiiri"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (sarja, vanha C7 tyyppi)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "väylähiiri"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 näppäintä"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 näppäintä"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "ei mikään"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Ei hiirtä"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Testaa hiiri"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Aktivoidaksesi hiiren,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "PYÖRITÄ HIIREN RULLAA!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Loppu"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Seuraava ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Edellinen"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Onko tämä oikein?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Ota yhteys internettiin"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Yleisin tapa liittyä asdl-verkkoon on käyttää pppoe:a.\n"
-"Jotkin yhteydet käyttävät pptp:tä, muutamat dhcp:tä.\n"
-"Jos et tiedä, mitä valita, valitse 'käytä pppoe:a'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "käytä dhpc:tä"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "käytä pppoe:a"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "käytä pptp:tä"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Mitä dhcp-asiakasohjelmaa haluat käyttää?\n"
-"Oletus on dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Ethernet-verkkokorttia ei löytynyt järjestelmästä.\n"
-"Ei voida asentaa tämän tyyppistä yhteyttä."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Valitse verkkoliittymä"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Valitse mitä verkkokorteista haluat käyttää internetiin liittymiseen"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "verkkokorttia ei löytynyt"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Asetan verkkoa"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Syötä koneesi nimi, jos tiedät sen.\n"
-"Jotkin DHCP-palvelimet tarvitsevat koneen nimen toimiakseen.\n"
-"Koneesi nimen pitäisi olla täysin laillinen nimi, kuten\n"
-"\" minunkone.omapaikka.net\"."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Koneen nimi"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Verkkoasetusten velho"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Ulkoinen ISDN-modeemi"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Sisäinen ISDN-kortti"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Minkälainen ISND-yhteytesi on?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Mitä ISDN-asetuksia haluat käyttää?\n"
-"\n"
-"* Vanha asetusjärjestelmä käyttää isdn4net:iä. Se sisältää tehokkaat\n"
-" työkalut, mutta on vaikea asettaa, eikä se ole standardi.\n"
-"\n"
-"* Uusi asetusjärjestelmä on helpompi ymmärtää, enemmän käytöss',\n"
-" mutta se sisältää vähemmän työkaluja.\n"
-"\n"
-"Suositus on käyttää uutta ja kevyempää asetusjärjestelmää.\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Uusi kokoonpano (isdn-kevyt)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Vanha kokoonpano (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN:n asetus"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Valitse palveluntarjoajasi.\n"
-" Jos se ei ole listassa, valitse `Ei listattu'"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Eurooppalainen protokolla"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Eurooppalainen protokolla (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Muun maailman käyttämä protokolla"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Muun maailman käyttämä protokolla \n"
-" ei D-kanavaa (leased lines)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Mitä protokollaa haluat käyttää?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Millainen kortti sinulla on?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "En tiedä"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Jos sinulla on ISA-kortti, seuraavien arvojen pitäisi olla oikeat.\n"
-"\n"
-"Jos sinulla on PCMIA-kortti sinun täytyy tietää korttisi IRQ ja IO.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Hylkää"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Jatka"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Mikä ISDN-kortti sinulla on?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Olen havainnut ISDN PCI-kortin, mutta en tunnista tyyppiä. Valitseyksi "
-"seuraavassa ruudussa olevista korteista."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "ISDN PCI-korttia ei löydetty. Valitse yksi seuraavasta ruudusta."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Valitse sarjaportti, johon modeemisi on kytketty."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Soittoasetukset"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Yhteyden nimi"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Puhelinnumero"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Käyttäjä ID"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Script-pohjainen"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Terminaalipohjainen"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Verkkoalueen nimi"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Ensimmäinen nimipalvelin (ei pakollinen)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Toinen nimipalvelin (ei pakollinen)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Voit joko katkaista yhteyden tai asettaa sen uudelleen."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Voit asettaa yhteytesi uudelleen."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Olet parasta aikaa yhteydessä internettiin."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Voit joko ottaa yhteyden internettiin tai asettaa yhteyden uudelleen."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Et ole juuri nyt yhteydessä internettiin."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Ota yhteys"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Katkaise yhteys"
-
-# Asennuksen sivuvalikko
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Aseta verkkoyhteys"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Internetyhteyden muodostus ja asetukset"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Asetamme seuraavaksi %s-yhteyden."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Asetamme seuraavaksi %s-yhteyden.\n"
-"\n"
-"\n"
-"Paina Ok jatkaaksesi."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Verkon asetukset"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Koska asennat käyttöjärjestelmää verkon yli, verkkon asetukset ovat jo "
-"tehty.\n"
-"Paina Ok säilyttääksesi nykyiset asetukset tai peruuta asettaaksesi "
-"internet- ja verkkoasetukset uudelleen.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Tervetuloa verkon asettamisvelhoon\n"
-"\n"
-"Seuraavassa vaiheessa määritellään sinun internet- / verkkoasetukset.\n"
-"Jos et halua käyttää automaattista tunnistusta, poista kyseinen valinta.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Valitse uusi asetusprofiili"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Käytä automaattista tunnistusta"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Etsin laitteita...."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Tavallinen modeemiyhteys"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "löydetty portista %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN-yhteys"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "löydetty %s:sta"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ADSL-yhteys"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "löydetty seuraavasta liitännästä: %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Kaapeliyhteys"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "Kaapeliyhteys havaittu"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Lähiverkko"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "seuraavat ethernet-verkkokortit löydetty"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Valitse yhteys, jonka haluat asettaa"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Olet asettanut useita eri tapoja ottaa yhteys internetiin.\n"
-"Valitse se, jota haluat käyttää.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Internetyhteys"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Haluatko ottaa yhteyden koneen käynnistyksen yhteydessä?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Verkon asetukset"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "Verkko pitää käynnistää uudelleen"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Ongelma käynnistettäessä verkkoa uudelleen: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Onnittelut, verkko- ja internetyhteyksien asetus valmis.\n"
-"\n"
-"Asetukset tulevat käyttöön myös itse järjestelmässä.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Kun tämä on tehty, suosittelemme käynnistämään X-ympäristön\n"
-"uudelleen välttääksesi järjestelmän nimen vaihdoksesta tulevat ongelmat."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"Ongelmia asettamisen aikana.\n"
-"Testaa yhteytesi net_monitor- tai mcc-työkalulla. Jos yhteytesi ei toimi, "
-"voit käynnistää asetustyökalun uudelleen"
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"VAROITUS: Tämä laite on aikaisemmin määritelty internetyhteyden ottoon.\n"
-"Hyväksy, jos haluat pitää laitteen asetukset sellaisina, kun ne olivat.\n"
-"Alla olevien kohtien muokkaaminen korvaa voimassa olevat asetukset."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Anna koneen IP-asetukset. Kukin kohta tulee syöttää IP-osoitteena,\n"
-"pisteillä eroteltuna nelinumeroisena lukuna (esim. 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Asetan verkkolaitetta %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (ajuri %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP-osoite"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Verkkopeite"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Automaattinen IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-osoitteen tullee olla muotoa 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Syötä koneesi nimi.\n"
-"Koneesi nimen pitäisi olla täydellinen, kuten ``minunkone.yritys.fi''.\n"
-"Voit antaa myös yhdyskäytävän IP-osoitteen jos sinulla on sellainen."
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "Nimipalvelin"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Yhdyskäytävä (esim. %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Yhdyskäytävän laite"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Proxyjen asettaminen"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP-välityspalvelin:"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP-välityspalvelin:"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Selvitä verkkokortti-id (hyödyllistä sylimikroille)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Välityspalvelimen tulee olla muotoa http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Välityspalvelimen tulee olla muotoa ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Internetin asetukset"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Haluatko kokeilla internetyhteyttä nyt?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Testaan yhteyttäsi..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Järjestelmä on nyt internetissä."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Turvallisuussyistä yhteys suljetaan nyt."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Järjestelmä ei näytä olevan internetissä.\n"
-"Yritä muuttaa internet-asetuksia."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Yhteyden asetus"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Valitse alla olevista kohdista"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "Kortin IRQ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Kortin muisti (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "Kortin IO"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "Kortin IO_0"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "Kortin IO_1"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Henkilökohtainen puhelinnumerosi"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Palveluntarjoajan nimi (esim: tarjoaja.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Palveluntarjoajan puhelinnumero"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Yhteydentarjoajan dns 1 (vapaaehtoinen)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Yhteydentarjoajan dns 2 (vapaaehtoinen)"
-
-# Asennuksen sivuvalikko
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Valitse maasi"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Soittotila"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Yhteyden nopeus"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Yhteyden aikaraja (sekunneissa)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Käyttäjätunnus (käyttäjän nimi)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Salasana"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "liittäminen epäonnistui: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Laajennettua osiotyyppiä ei ole tuettu tässä ympäristössä"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Sinulla on reikä osiotaulussasi eikä sitä voida käyttää.\n"
-"Ainoa ratkaisu on siirtää primääriosioita siten että reikä on ennen "
-"laajennettuja osioita"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Palautus tiedostosta %s epäonnistui: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Huono varmuuskopiotiedosto"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Virhe kirjoitettaessa tiedostoon %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Jotakin kamalaa on tapahtunut kiintolevyllesi.\n"
-"Tiedon oikeellisuuden tarkistus epäonnistui.\n"
-"Kaikki asemalle kirjoitettu tieto muuttuu tunnistamattomaksi"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "pakollinen"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "tärkeä"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "erittäin hyvä"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "hyvä"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "ehkä"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Paikallinen tulostin"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Ulkoinen tulostin"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Tulostin ulkoisella CUPS-palvelimella"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Tulostin ulkoisella lpd-palvelimella"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Verkkotulostin (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Tulostin SMB/Windows 95/98/NT -palvelimella"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Tulostin NetWare-palvelimella"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Syötä tulostinlaitteen osoite (URI)"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Putkita työ käskylle"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Tuntematon malli"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Paikalliset tulostimet"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Ulkoiset tulostimet"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " rinnakkaisliitännässä \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", USB tulostin \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", monikäyttölaite rinnakkaisportissa \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", monikäyttölaite USB:ssa"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", monitoimilaite HP JetDirectissä"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", monitoimilaite"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", tulostetaan: %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "LPD-palvelimella \"%s\", tulostin \"%s\""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP -verkkopäätteellä \"%s\", portissa %s"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "Windows-palvelimella \"%s\", jako \"%s\""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "Novell-palvelimella \"%s\", tulostin \"%s\""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", käyttäen komentoa %s"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Raakatulostin (ei ajuria)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(%s:ssa)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(tällä koneella)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "CUPS-palvelimella \"%s\""
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Oletus)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Valitse tulostinyhteys"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Miten tulostin on liitetty?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Tulostimia, jotka ovat ulkoisella CUPS-palvelimella, ei tarvitse asettaa\n"
-"tässä; nämä tulostimet tunnistetaan automaattisesti."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Asetustyökalut"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Ulkoinen CUPS-palvelin"
-
-#: ../../printerdrake.pm_.c:71
-#, fuzzy
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"CUPS-etäpalvelimilla sinun ei tarvitse asettaa tulostinta tässä; CUPS-"
-"palvelimet kertovat niillä olevat tulostimet itse koneellesi. Kaikki tällä "
-"hetkellä tunnetut tulostimet on listattu \"Oletustulostin\" -kentässä. "
-"Valitse sieltä koneesi oletustulostin ja paina \"Toteuta/Lue uudelleen "
-"tulostimet\" -painiketta. Klikkaamalla samaa painiketta voit myös virkistää "
-"listan (CUPS-tulostimet ilmestyvät 30 sekunnin sisällä). Kun CUPS-"
-"pelvelimesi on eri aliverkossa, sinun pitää antaa CUPS-palvelimesi IP-osoite "
-"ja mahdollisesti myös portin numero saadaksesi tiedot palvelimelta. Muussa "
-"tapauksessa jätä kentät tyhjiksi."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP-osoitteen tullee olla muotoa 192.168.1.20"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Portin numeron pitäisi olla kokonaisluku!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "CUPS-palvelimen IP"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Portti"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "CUPSin automaattinen asettaminen"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Etsin laitteita ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Kokeile portteja"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Lisää uusi tulostin"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Paikallinen tulostin"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Etsi tulostimet"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Tulostimien automaattinen löytäminen"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Tee automaattinen tunnistus"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Aseta tulostin manuaalisesti"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "Löydetty %s:sta"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Tulostin rinnakkaisportissa \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "USB-tulostin \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Sinun täytyy syöttää laitteen tai tiedoston nimi!"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Paikallisia tulostimia ei löytynyt!\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"Seuraava tulostin löydettiin, jos se ei ole se, jonka haluat asettaa, syötä "
-"laite- tai tiedostonimi syöteriville"
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"Tässä on lista löydetyistä tulostimista. Valitse se tulostin, jonka haluat "
-"asettaa tai syötä laite- tai tiedostonimi syöteriville"
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Valitse portti, johon tulostimesi on kytketty tai syötä laitteen tai "
-"tiedoston nimi syöteriville"
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Valitse portti, johon tulostimesi on kytketty."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Rinnakkaisportit: /dev/lp0, /dev/lp1, ..., vastaavat LPT1:, LPT2:, ..., 1. "
-"USB-tulostin: /dev/usb/lp0, 2. USB-tulostin: /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Sinun täytyy valita tai syöttää tulostinlaite!"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Manuaalinen asettaminen"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "Asennetaan HPOJ-pakettia..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Tarkistetaan laite ja asetetaan HPOJ ..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Asennetaan SANE-paketteja..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Skannataan HP-monikäyttölaitteella"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "Asetetaan tulostusportti CUPSin saataville..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Luetaan tulostintietokantaa ..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Ulkoisen lpd-palvelimen tulostimen parametrit"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Jotta voisit käyttää ulkoista lpd-tulostinta, sinun pitäisi syöttää "
-"tulostuspalvelimen verkkonimi sekä tulostimen nimi kyseisellä palvelimella."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Palvelimen verkkonimi"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Ulkoisen tulostimen nimi"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Palvelimen verkkonimi puuttuu!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Ulkoisen tulostimen nimi puuttuu!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) -tulostimen parametrit"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"SMB-palvelimen tulostimelle tulostaaksesi sinun pitäisi syöttää SMB-koneen "
-"nimi (joka ei aina ole sama kuin koneen TCP/IP nimi!) ja mahdollisesti "
-"tulostuspalvelimen IP-osoite, tulostimen jakonimi sekä soveltuva "
-"käyttäjätunnus, salasana ja työryhmä-tieto."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "SMB-palvelimen nimi"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "SMB-palvelimen IP"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Jakonimi"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Työryhmä"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Joko palvelimen nimi tai IP-numero on annettava!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Samba-jaon nimi puuttuu!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "NetWare-palvelimen tulostimen parametrit"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"NetWare-palvelimen tulostimelle tulostaaksesi sinun pitäisi syöttää NetWare-"
-"palvelinkoneen nimi (joka ei aina ole sama kuin koneen TCP/IP nimi!) ja "
-"mahdollisesti tulostusjonon nimi sille tulostimelle, jota haluat käyttää, "
-"sekä soveltuva käyttäjätunnus ja salasana."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Tulostuspalvelin"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Tulostusjonon nimi"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "NCP-palvelimen nimi puuttuu!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "NCP-jonon nimi puuttuu!"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Socket -tulostimen parametrit"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Tulostaaksesi TCP- tai socket-tulostimella, sinun täytyy antaa tulostimen "
-"verkkonimi ja mahdollisesti portin numero. HP JetDirect-palvelimissa "
-"porttinumero on useimmiten 9100, muissa palvelimissa portti voi vaihdella. "
-"Tarkista portti laitteistosi ohjekirjasta."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Tulostinlaitteen verkkonimi"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Tulostinlaitteen verkkonimi puuttuu!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Tulostinlaitteen osoite (URI)"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Sinun pitää syöttää laillinen URI!"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Tulostimen nimi"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Kuvaus"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Paikka"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Valmistellaan tulostintietokantaa ..."
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Ulkoisen tulostimen nimi"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Onko tämä oikein?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Valitse käyttäjät yksitellen"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Tulostimen mallin valinta"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Mikä tulostinmalli sinulla on?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "OKI winprinterin asettaminen"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjetin asettaminen"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Valitsimen %s pitää olla kokonaisluku!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Valitsimen %s pitää olla luku!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Valitsin %s on arvoalueensa ulkopuolella!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Haluatko asettaa tämän tulostimen (\"%s\")\n"
-"oletustulostimeksi?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Testisivut"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Ei testisivuja"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Tulosta"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Standardi testisivu"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Vaihtoehtoinen testisivu (Letter)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Vaihtoehtoinen testisivu (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Valokuvatestisivu"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "Älä tulosta testisivua"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Tulostan testisivu(j)a..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Testisivu(t) on lähetetty tulostimelle.\n"
-"Voi kestää hetken ennen kuin tulostus alkaa.\n"
-"Tulostuksen tila:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Testisivu(t) on lähetetty tulostimelle.\n"
-"Voi kestää hetken ennen kuin tulostus alkaa.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "Toimiko tulostus kunnolla?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Raakatulostin"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"Saadaksesi selville nykyisen tulostimen parametrit lue joko alla oleva lista "
-"tai klikkaa \"Tulostuksen valintalista\"-painiketta.%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Tässä on lista nykyisen tulostinen käytössä olevista tulostusvalinnoista:\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Tulostaaksesi tiedoston komentoriviltä (pääteikkunasta) käytä komentoa \"%s "
-"<tiedosto>\".\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Saadaksesi listan nykyisen tulostimen parametreistä klikkaa \"Tulostuksen "
-"valintalista\"-painiketta."
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Tulostaaksesi tiedoston komentoriviltä (pääteikkunasta) käytä komentoa \"%s "
-"<tiedosto>\". tai \"%s <tiedosto>\".\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Sulje"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Tulostetaan/skannataan laitteella \"%s\""
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Tulostus käynnissä tulostimella \"%s\""
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Tulostusparametrien lista"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Luetaan tulostimen tietoja ..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Siirrä tulostimen asetukset"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD ja LPRng eivät tue IPP-tulostimia.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Älä siirrä tulostimia"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Siirrä"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Tulostimen nimi saa sisältää vain kirjaimia, numeroita ja alaviivan"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Tulostin \"%s\" on jo olemassa,\n"
-"haluatko todellakin tuhota olemassa olevat asetukset?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Uuden tulostimen nimi"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "Siirrän %s ..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Päivitetään tulostintietoja ..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Ulkoisen tulostimen asetukset"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Luon verkkoyhteyttä ..."
-
-# Asennuksen sivuvalikko
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Aseta verkkoyhteys nyt"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "Verkkotoimintoja ei ole asetettu"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Jatka asettamatta verkkoyhteyttä"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Käynnistän tulostusjärjestelmää uudelleen ..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "korkea"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "paranoidi"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Asennan tulostusjärjestelmän turvatasolla %s"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Käynnistää tulostusjärjestelmän käynnistyksen aikana"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Tarkistan asennetut ohjelmistot..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "Poistetaan LPRng..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "Poistetaan LPD..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Valitse tulostusjono"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Mitä tulostusjärjestelmää (jonoa) haluat käyttää?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Asetetaan tulostinta \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "Asennan Foomaticin ..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Tulostimen asetukset"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "Valmistellaan PrinterDrakea ..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Asetetaan tulostinta \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Haluatko asettaa tulostuksen?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Tulostusjärjestelmä: "
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Päivitä tulostinlistaa (näytä kaikki saatavilla olevat CUPS-etätulostimet)"
-
-# Asennuksen sivuvalikko
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Aseta tulostusjärjestelmä"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Perustila"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Haluatko asettaa toisen tulostimen?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Muokkaa tulostimen asetuksia"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Tulostin %s\n"
-"Mitä haluat muokata tästä tulostimesta?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "Tee se!"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Tulostusyhteyden tyyppi"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Tulostimen nimi, kuvaus, paikka"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Tulostimen valmistaja, malli, ajuri"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Tulostimen valmistaja, malli"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Aseta tämä tulostin oletukseksi"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Tulosta testisivut"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Tiedä kuinka käyttää tätä tulostinta"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Poista tulostin"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Poistetaan vanha tulostin \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Oletustulostin"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Tulostin \"%s\" on asetettu oletustulostimeksi."
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Haluatko todella poistaa tulostimen \"%s\"?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Poistetaan tulostin \"%s\" ..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Proxy-asetukset"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Tervetuloa proxyn asettamisohjelmaan.\n"
-"\n"
-"Täältä voit asettaa http- ja ftp-proxysi sisäänkirjautumisen ja\n"
-"salasanojen kanssa tai ilman niitä\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Täytä http-proxyn tiedot\n"
-"Jätä kohta tyhjäksi, jos et haluat http-proxyä"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "portti"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "Web-osoitteen tulee alkaa etuliitteellä 'http:'"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Porttiosan pitäisi olla numeerinen"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Täytä ftp-proxyn tiedot\n"
-"Jätä kohta tyhjäksi, jos et haluat ftp-proxyä"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Web-osoitteen tulee alkaa etuliitteellä 'ftp:'"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Syötä proxyn käyttäjätunnus ja salasana, jos sellaiset on.\n"
-"Jätä kohdat tyhjiksi, jos et halua käyttää tunnus/salasana-yhdistelmää"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "käyttäjätunnus"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "salasana"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "salasana uudelleen"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Salasanat poikkeavat toisistaan. Kokeile uudelleen!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "En voi lisätä osiota _alustetulle_ RAID:lle md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "En voi kirjoittaa tiedostoa %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid epäonnistui"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid epäonnistui (ehkä raid-työkalut puuttuvat?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Ei riittävästi osioita RAID tasolle %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Käynnistä ALSA (Advanced Linux Sound Architecture) äänijärjestelmä"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron on jaksottainen komentojen ajastaja."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd:ta käytetään valvomaan paristojen tilaa ja raportoimaan siitä syslogin\n"
-"kautta. apmd:tä voidaan myös käyttää sulkemaan kone patterien ollessa tyhjiä."
-
-#: ../../services.pm_.c:18
-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 ""
-"Ajaa komentoja määrätyillä ajanhetkillä, jotka on määritelty at-komennolla.\n"
-"Ajaa myös eräajoja, kun järjestelmän kuormitus on riittävän matala."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron on UNIX:n perusohjelma joka ajaa määriteltyjä ohjelmia määrätyillä\n"
-"ajanhetkillä. vixie cron lisää monia omianisuuksia verrattuna normaaliin\n"
-"UNIX:n cron ohjelmaan, kuten paremman turvallisuuden ja laajemmat asetukset."
-
-#: ../../services.pm_.c:23
-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 lisää hiirituen tekstipohjaisiin Linux-sovelluksiin kuten Midnight\n"
-"Commander. GPM mahdollistaa myös leikkaa/liimaa toiminnot hiirellä,\n"
-"ja sisältää tuen valikoille konsolissa."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake etsii uutta laitteistoa ja mahdollisesti konfiguroi\n"
-"uuden/muuttuneen laitteiston."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache on WWW-palvelin. Palvelinta käytetään jakamaan HTML-\n"
-"tiedostoja ja ajamaan CGI-ohjelmia."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Internet pääpalvelin (yleensä inetd) käynnistää useita eri\n"
-"internet palveluita tarpeen mukaan. Palvelin käynnistää useita\n"
-"palveluita, kuten telnet, ftp, rsh ja rlogin. inetd:n poistaminen\n"
-"poistaa myös nämä palvelut käytöstä."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Käynnistä pakettifiltteri Linux 2.2-sarjalle, jos haluat\n"
-"pystyttää palomuurin suojaamaan konettasi verkkohyökkäyksiltä."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Paketti lataa valitun näppäinkartan /etc/sysconfig/keyboard\n"
-"tiedoston asetusten mukaisesti. Asetukset voidaan valita kbdconfig "
-"työkalulla.\n"
-"Tämä tulisi ottaa käyttöön lähes kaikissa järjestelmissä."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Automaattinen ytimen otsikkotiedoston korjaus /boot-hakemistossa "
-"tiedostolle\n"
-"/usr/include/linux/{autoconf,versio}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-"Automaattinen uuden laitteiston havaitseminen ja asettaminen "
-"käynnistettäessä."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf järjestää joskus aikaa erilaisten tehtävien hoitamiseen\n"
-"käynnistyksen aikana pitääkseen yllä järjestelmän asetuksia."
-
-#: ../../services.pm_.c:43
-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 on tulostuspalvelin, jonka lpr ohjelma vaatii toimiakseen.\n"
-"lpd on palvelin joka jakaa tulostustöitä kirjoittimille."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual Server, jonka avulla voidaan rakentaa suuritehoinen\n"
-"korkean käytettävyyden palvelin."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) on nimipalvelin (DNS) jota käytetään muunnettaessa koneiden "
-"verkkonimiä IP-osoitteiksi."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Liittää ja irroittaa NFS (Network File System), SMB (Lan\n"
-"Manager/Windows) ja NCP (NetWare) liitospaikat."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktivoi/Poistaa kaikki verkkoliittymät jotka on asetettu\n"
-"käynnistyksessä."
-
-#: ../../services.pm_.c:52
-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 on yleinen protokolla tiedostojen jakoon TCP/IP-\n"
-"verkoissa. Tämä palvelu mahdollistaa NFS-palvelimen\n"
-"käynnistyksen, jakoa ohjataan tiedostosta /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS on yleinen protokolla tiedostojen jakoon TCP/IP-\n"
-"verkoissa. Tämä palvelu mahdollistaa NSF-tiedostolukot."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Asettaa käynnistyksessä numlock-näppäinlukitsimen päälle\n"
-"sekä konsolille että XFree:lle."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Tuki OKI 4w -yhteensopiville Windows-tulostimille."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMIA tukea käytetään yleensä kannettavissa ethernet- ja modeemi-\n"
-"korttien tukemiseen. Palvelu ei käynnisty ellei sitä ole asetettu, joten\n"
-"sen voi asentaa myös koneisiin jotka eivät sitä tarvitse."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"portmapper hallitsee RPC-yhteyksiä, joita käyttävät esimerkiksi\n"
-"NFS ja NIS-protokollat. portmap-palvelin on oltava käynnissä\n"
-"järjestelmissä jotka haluavat tarjota näitä protokollia."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix on sähköpostin siirtoagentti, eli ohjelma joka välittää postia "
-"koneelta toiselle."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Tallentaa ja palauttaa järjestelmän satunnaislukualtaan, tämä parantaa\n"
-"satunnaislukujen laatua."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Määrää raakalaitteet blokkilaitteiksi (kuten kiintolevyn\n"
-"osiot) tietyn tyyppisten sovellusten (esim. Oracle) käyttöön"
-
-#: ../../services.pm_.c:71
-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-palvelin mahdollistaa automaattiset IP-reititystaulun päivitykset\n"
-"RIP-protokollalla. Vaikka RIP-protokolla on paljon käytetty pienissä "
-"verkoissa,\n"
-"monimutkaisemmat verkot vaativat parempia reititysprotokollia."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstart-protokolla mahdollistaa verkkokäyttäjille\n"
-"eri koneiden tilatietojen haun."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"rusers-protokolla verkon käyttäjille mahdollisuuden tunnistaa, ketkä\n"
-"ovat sisällä eri koneissa."
-
-#: ../../services.pm_.c:78
-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-protokollalla etäkäyttäjät voivat listata kaikki koneella\n"
-"olevat käyttäjät (vastaa fingeriä)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Käynnistä äänijärjestelmä tietokoneessasi"
-
-#: ../../services.pm_.c:81
-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 on tapa jolla monet palvelimet kirjottavat viestinsä talteen\n"
-"useisiin lokitiedostoihin. On järkevää käyttää syslog-ohjelmaa."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Lataa usb-laitteiden ajurit."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Käynnistää X-kirjasinpalvelimen (pakollinen, jos haluat ajaa XFree:tä)"
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Valitse mitkä palvelut käynnistetään automaattisesti"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Tulostus"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Tiedostojen jako"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "Järjestelmä"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Etähallinta"
-
-# ../../share/compssUsers
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Tietokantapalvelin"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Palvelut: %d activoitu %d:stä rekisteröidystä"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Palvelut"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "käynnissä"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "pysähtynyt"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Palvelut ja demonit"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Ei lisätietoja\n"
-"tälle palvelulle."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Käynnistyksen yhteydessä"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Käynnistä"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Sammuta"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "Liity vapaan ohjelmiston maailmaan"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet ja viestintä"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedia - Grafiikka"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Kehitysympäristö"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Mandraken hallintapaneeli"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "Käyttöliittymät"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Palvelinohjelmisto"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Pelit"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Asennan paketteja..."
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Osiotaulua ei voida lukea, siinä on liikaa virheitä :(\n"
-"Taulu yritetään korjata nollaamalla se"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Virhe!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Tarvittavaa esitystiedostoa `%s' ei löytynyt."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Asenna asennusohjelma automaattisesti"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Automaattisten vaiheiden asetus"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Välitse jokaiselle vaiheelle toistetaanko asennus samalla tapaa kuin nyt vai "
-"onko kyseinen vaihe manuaalinen"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Tervetuloa.\n"
-"\n"
-"Automaattisen asennuksen parametrit löytyvät vasemmalla olevista lohkoista"
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Onnittelut!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Levykkeen luominen onnistui.\n"
-"Voit nyt toistaa asennuksesi."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Automaattinen asennus"
-
-# Asennuksen sivuvalikko
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Lisää alkio"
-
-# mat
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Poista viimeinen alkio"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup-raportti \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Daemonin raportti\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup-raportin yksityiskohdat\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "kokonaisedistyminen"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "Varmuuskopioi järjestelmätiedostot..."
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "Kiintolevyn varmuuskopiotiedostot..."
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "Varmuuskopioi käyttäjätiedostot..."
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Kiintolevyn varmuuskopion edistyminen..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Varmuuskopioi muut tiedostot..."
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"tiedostolistan lähetti FTP : %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) FTP-yhteysongelma: varmuuskopion lähettäminen FTPn kautta epäonnistui.\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Virhe lähetettäessä sähköpostia. \n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "Tiedostojen valinta"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr "Valitse tiedostot tai hakemistot ja klikkaa 'Lisää'"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Valitse kaikki asetukset, jotka tarvitset.\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Naillä asetuksilla voit varmuuskopioida ja palauttaa kaikki tiedostot /etc-"
-"hakemistosta.\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Varmuuskopioi systeemitiedostot ( /etc-hakemisto )"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Käytä kasvavaa varmuuskopiointia (älä korvaa vanhoja varmuuskopioita)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Älä sisällytä kriittisiä tiedostoja (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Tällä valitsimella voit palauttaa minkä tahansa version\n"
-"/etc-hakemistostasi."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr "Valitse kaikki ne käyttäjät, jotka haluat sisällyttää varmuuskopioosi."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "Älä sisällytä selaimen välimuistia"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Käytä kasvavia varmuuskopitoita (älä korvaa vanhoja varmuuskopioita)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Poista valitut"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "Käyttäjät"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Käytä FTP-yhteyttä varmuuskopiointiin"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Syötä verkkoaseman nimi tai IP."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-"Syötä hakemisto, johon tämän\n"
-"koneen varmuuskopio laitetaan."
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Syötä käyttäjätunnuksesi"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Syötä salasanasi"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Muista tämä salasana"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP-yhteys"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Salattu yhteys"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "Käytä CD/DVD-ROM -levyä varmuuskopioille"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Valitse käytettävä CD:n koko"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "Valitse, jos käytät CD-RW-mediaa"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Valitse, jos haluat tyhjentää CD-RW:n ennen kopiointia"
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Valitse, jos haluat tehdä CD-levystäsi\n"
-"käynnistettävän."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Syötä kirjoittavan CD-asemasi laitenimi\n"
-"esim: 0,1,0"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "Käytä nauhaa varmuuskopioinnissa"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "Syötä varmuuskopioinnissa käytettävän laitteen nimi"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Syötä suurin sallittu koko\n"
-"Drakbackup-varmuuskopiolle"
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Syötä hakemisto, johon tallennetaan:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Käytä quotaa varmuuskopiotiedostoille."
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "Verkko"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CD-ROM / DVD-ROM"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "Kiintolevy / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "tunneittain"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "päivittäin"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "viikoittain"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "kuukausittain"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "Käytä daemonia"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"Valitse peräkkäisten\n"
-"varmuuskopioiden aikaväli"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"Valitse varmuuskopiointiin\n"
-"käytettävä media."
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Käytä kiintolevyä daemonilla"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Käytä FTPtä daemonilla"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Varmista että cron-daemon on mukana käytössä olevissa palveluissa."
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "Lähetä raportti jokaisesta varmuuskopiosta sähköpostitse :"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "Mitä"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "Missä"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "Koska"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "Lisävalinnat"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup-asetukset"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Valitse, mihin haluat tehdä varmuuskopiot"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "kiintolevylle"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "verkon yli"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Valitse mitä haluat varmuuskopioida"
-
-# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "Varmuuskopioi järjestelmä"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "Varmuuskopioi käyttäjät"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Valitse käyttäjät yksitellen"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Varmuuskopion lähteet: \n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Järjestelmätiedostot:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Käyttäjätiedostot:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Muut tiedostot:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- Tallenna kiintolevylle polulle : %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- Tallenna FTP:llä verkkoasemalle : %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t käyttäjätunnus: %s\n"
-"\t\t polulla: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Valitsimet:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tÄlä sisällytä järjestelmätiedostoja\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tVarmuuskopiot käyttävät: tar ja bzip2\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tVarmuuskopiot käyttävät: tar ja gzip\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- Daemon (%s) sisältää :\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t-Kiintolevy.\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-CD-ROM.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Verkkoon käyttäen SSH:ta.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Ei asetettu, valitse Velho tai Edistynyt.\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Lista palautettavista tiedoista:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Lista vahingoittuneista tiedoista:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "Poista valinta tai poista se seuraavalla kerralla."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "Varmuuskopiot ovat vahingoittuneet"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " Kaikki valitsemasi tieto on "
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " onnistuneesti palautettu paikkaan %s "
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " Palauta asetukset "
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "Ok palauttaakseen muut tiedostot."
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Palautettava käyttäjälista (vain uusin päivä kutakin käyttäjää kohti on "
-"tärkeä)"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "Tee järjestelmätiedostoista varmuuskopio ennen:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "Valitse päivämäärä, johon tiedon palauttaminen tehdään"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Käytä kiintolevyä varmuuskopiointiin"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Palauta kiintolevyltä."
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "Anna hakemisto, johon varmuuskopiot on tallennettu"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Valitse toinen media, josta palauttaa"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Muu media"
-
-# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "Palauta järjestelmä"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Palauta käyttäjät"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Palauta muut"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "valitse polku, josta palautat (juurihakemiston sijaan)"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"Tee uusi varmuuskopio ennen palauttamista (vain kasvavilla varmuuskopioilla)"
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Poista käyttäjien hakemistot ennen palauttamista."
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Palauta kaikki varmuuskopiot"
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "Mukautettu palautus"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Apua"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "Edellinen"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Tallenna"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Tee varmuuskopio"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Palauta"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Seuraava"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Tee varmuuskopio ennen kuin yrität palauttaa sen...\n"
-"tai tarkista että tallennuspolku on oikea."
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"Virhe sendmailin aikana\n"
-" raporttipostiasi ei lähetetty\n"
-" Konfiguroi sendmail"
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista asennettavista paketeista"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Virhe FTP-siirron aikana.\n"
-" Korjaa FTP-asetuksesi."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Valitse palautettava tieto..."
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Valitse varmuuskopioinnissa käytettävä media..."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Valitse varmuuskopioitava tieto..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Asetustiedostoa ei löytynyt\n"
-"valitse joko Velho tai Kehittynyt."
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "Kehityksen alla ... odota."
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "Varmuuskopioi järjestelmätiedostot"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "Varmuuskopioi käyttäjätiedostot"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Varmuuskopioi muut tiedostot"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Kokonaisedistyminen"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "tiedostoja lähetetään FTP:n yli"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Lähetän tiedostoja..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "Tietolista sisällytettäväksi CD-ROMiin"
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Valitse kirjoittavan CD-aseman nopeus"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Valitse kirjoittavan CD-aseman laitenimi (esim. 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Valitse, jos haluat tehdä käynnistettävän CD:n."
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "Tee heti asetustiedoston varmuuskopio"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Näytä varmuuskopioinnin asetukset."
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr ""
-
-# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "Varmuuskopioi heti"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft. Tekijä: DUPONT Sebastien <dupont_s\\@epita."
-"fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s:n asennus epäonnistu. Seuraava virhe tapahtui:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Etsi asennetut kirjasimet"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Poista asetettujen kirjasimien valinta"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "jäsennä kaikki kirjasimet"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "kirjasimia ei löytynyt"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "valmis"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "liitetyiltä osioilta ei löytynyt ainoatakaan kirjasinta"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Valitse uudelleen oikeat kirjasimet"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "kirjasimia ei löytynyt.\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Etsi kirjasimia asennettujen listalta"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Kirjasimet kopioi"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "True Type kirjasimien asennus"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "odota kunnes ttmkfdir on valmis..."
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "True Type -asennus valmis"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "Kirjasinten muuntaminen"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "rakennetaan: type1inst"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "ttf kirjasinten muunnos"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "pfm kirjasinten muunnos"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Poista väliaikaistiedostot"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "Käynnistä XFS uudelleen"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Poista kirjasintiedostot"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "xfs:n uudelleenkäynnistys"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Ennen kuin asennat uusia kirjasimia, varmista että sinulla on oikeudet "
-"käyttää ja asentaa ne järjestelmääsi.\n"
-"\n"
-"- Voit asentaa kirjasimet perinteisellä tavalla. Harvoissa tapauksissa bogus-"
-"kirjasimet voivat lukitä X-palvelimen."
-
-# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "Kirjasinten tuonti"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Hae Windowsin kirjasimet"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Poista kirjasimet levyltä"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Lisävalinnat"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Kirjasinlista"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Valitse sovellukset, jotka tukevat kirjasimia :"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Yleiset tulostimet"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Valitse kirjasintiedosto tai hakemisto ja klikkaa 'Lisää'"
-
-# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Asenna lista"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "paina tähän, kun olet varma."
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "tähän jos et ole."
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "Poista valinta kaikista"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Valitse kaikki"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "Poista lista"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Alkutestit"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Kopioi kirjasimet järjestelmääsi"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Asenna & muunna kirjasimia"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Asennuksen jälkeiset toiminnot"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "Poista järjestelmässäsi olevia kirjasimia"
-
-# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Poistamisen jälkeiset toiminnot"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Internetyhteyden jakaminen"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Internetyhteyden jakaminen on käytössä"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Internetyhteyden jakaminen on jo asetettu.\n"
-"Sen nykyinen tila on: käytössä.\n"
-"\n"
-"Mitä haluat tehdä?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "poista käytöstä"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "lopeta"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "aseta uudelleen"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Poistan palvelut käytöstä..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Internetyhteyden jakaminen ei ole enää käytössä."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Internetyhteyden jakaminen ei ole käytössä"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Internetyhteyden jakaminen on jo asetettu.\n"
-"Sen nykyinen tila on .ei käytössä\n"
-"\n"
-"Mitä haluat tehdä?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "ota käyttöön"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Otan palvelut käyttöön.."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Internetyhteyden jakaminen on nyt käytössä."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Olet aikeissa asettaa tietokoneesi jakamaan internetyhteyden muiden koneiden "
-"kanssa.\n"
-"Tällä ominaisuudella muut paikallisverkossa olevat tietokoneet voivat "
-"käyttää tämän tietokoneen internetyhteyttä.\n"
-"\n"
-"Huomaa: tarvitset erityisen verkkokortin pystyttääksesi oman paikallisverkon."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Liittymä %s (käyttäen moduulia %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Liittymä %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Koneessasi ei ole verkkokorttia!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Koneestasi ei löytynyt yhtään verkkokorttia. Aja laitteistonhakutyökalu."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Verkkoliittymä"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Tietokoneessasi on vain yksi verkkokortti:\n"
-"\n"
-"%s\n"
-"\n"
-"Valmistaudun asettamaan lähiverkkosi asetukset kyseiselle laitteelle."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Valitse verkkokortti, joka on kytketty paikallisverkkoon."
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Verkkoliitäntä on jo asetettu"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"Varoitus, verkkokortti (%s) on jo asetettu.\n"
-"\n"
-"Haluatko automaattisen uudelleenasetuksen?\n"
-"\n"
-"Voit asettaa sen myös manuaalisesti, mutta silloin sinun pitää tietää, mitä "
-"olet tekemässä."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Automaattinen uudelleenasetus"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "Näytä nykyiset liitäntäasetukset"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"Koneen `%s' nykyiset asetukset:\n"
-"\n"
-"Verkko: %s\n"
-"IP-osoite: %s\n"
-"IP-määreet: %s\n"
-"Ajuri: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Voin säilyttää nykyiset asetuksesi ja olettaa, että olet jo pystyttänyt DHCP-"
-"palvelimen. Siinä tapauksessa varmista että luen oikein C-luokan verkon, "
-"jota käytät paikallisverkkonasi, sillä en muuta sen asetuksia tai koske DHCP-"
-"palvelimesi asetuksiin.\n"
-"\n"
-"Muussa tapauksessa voin asettaa liitäntäsi ja asettaa (uudelleen) DHCP-"
-"palvelimen puolestasi.\n"
-"\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "C-luokan paikallisverkko"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "(Tämän) DHCP-palvelimen IP"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Aseta liityntärajapinta ja DHCP-palvelin uudelleen"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Paikallisverkko ei loppunut '.0':aan, töydennetään."
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Mahdollinen lähiverkon osoitetörmäys löydetty nykyisillä asetuksilla %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Palomuuri löydetty!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Varoitus! Olemassaoleva palomuuri löydetty. Tarvitset mahdollisesti käsin "
-"tehtäviäkorjauksia asennuksen jälkeen."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Määrittelen..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Määrittelen komentotiedostot, asennan ohjelmistot, käynnistän palvelimet..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Asennan pakettia %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Kaikki asetettu.\n"
-"Voit nyt jakaa internetyhteyden muiden lähiverkon koneiden kanssakäyttämällä "
-"automaattista lähiverkon määrittelyä (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-"Asetukset on jo tehty, mutta ne ovat tällä hetkellä poistettu käytöstä."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Asetukset on jo tehty ja ne ovat käytössä."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Internetyhteyden jakamista ei ole koskaan asetettu."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Internetyhteyden jakamisen asetukset"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Tervetuloa internetyhteyden jakamisen apuohjelmaan!\n"
-"\n"
-"%s\n"
-"\n"
-"Paina Aseta käynnistääksesi asennusohjelman."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Verkon asetukset (%d-laitteille)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiili: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Poista profiili..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Valitse poistettava profiili:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Uusi profiili..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Luotavan profiilin nimi (uusi profiili luodaan kopioimalla nykyisen tiedot) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Koneen nimi:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internetyhteys"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tyyppi:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Yhdyskäytävä:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Liitäntä:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Tila:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Odota hetki"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Määrittele internetyhteys..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Lähiverkon asetukset"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Ajurit"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Liitäntä"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokolla"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Tila"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Aseta paikallisverkko..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Paina tähän käynnistääksesi asennusohjelman ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Velho..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Toteuta"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Odota hetki... Otetaan asetukset käyttöön"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Yhteys muodostettu"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ei yhteyttä"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Yhdistä..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Katkaise yhteys..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Varoitus, toinen internet-yhteys on havaittu, mahdollisesti käyttäen sinun "
-"vekkoasi"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Sinulla ei ole ainoatakaan asetettua liityntää.\n"
-"Aseta ne ensin klikkaamalla 'Aseta'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Lähiverkon asetukset"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Laite %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Käynnistysprotokolla"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Käynnistetty koneen käynnistämisen yhteydessä"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-asiakas"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivoi nyt"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivoi nyt"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Tätä liityntärajapintaa ei ole vielä asetettu.\n"
-"Käynnistä pääikkunasta löytyvä asetusvelho"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Sinulla ei ole ainoatakaan internet-yhteyttä.\n"
-"Luo sellainen ensin klikkaamalla 'Aseta'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetyhteyden asetus"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetyhteyden asetus"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Yhteyden nimi: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametrit"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Yhdyskäytävä"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Verkkokortti"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-asiakas"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Asetan turvatasoa"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Kontrollipaneeli"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Valitse haluamasi työkalu"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "Kanada (kaapeli)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "Yhdysvallat (bcast)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "Yhdysvallat (kaapeli)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "Yhdysvallat (hrc-kaapeli)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Kiina (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japani (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "Japani (kaapeli)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Itä-Eurooppa"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Irlanti"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "Länsi-Eurooppa"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Australia"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "Uusi-Seelanti"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "Etelä-Afrikka"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Argentiina"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Ole hyvä,\n"
-"kirjoita käyttämäsi tv-normi sekä asuinmaa"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "TV-normi :"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Alue :"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "TV-kanavien haku käynnissä ..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "Haetaan TV-kanavia"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "käyttö: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Valitse näppäimistösi asettelu."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Haluatko BackSpace-näppäimen toimivan kuten Delete konsolissa?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Vaihda CD-levyä"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Aseta asennuslevy CD-asemaan ja paina Ok.\n"
-"Jos sinulla ei ole levyä, paina Peruuta estääksesi järjestelmän päivityksen."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Järjestelmän päivitystä ei voida aloittaa!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "Näytä vain valittu päivä"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Tiedosto/_Uusi"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>U"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Tiedosto/_Avaa"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>A"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Tiedosto/_Tallenna"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>T"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/File/Tallenna _Nimellä"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Tiedosto/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Valinnat"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Valinnat/Testi"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ohje"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Ohje/_Tietoja..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "Käyttäjä"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "Viestit"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "Järjestelmäloki"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Mandraken työkälujen selitykset"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "etsi"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Työkalu lokien seuraamiseen"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Asetukset"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "täsmää"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "mutta ei täsmää"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Valitse tiedosto"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Kalenteri"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Tiedoston sisältö"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "Posti- ja SMS-hälytys"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "odota hetki, jäsennän tiedostoa : %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "Posti- ja SMS-hälytyksen asetukset"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Tervetuloa sähköpostin ja SMS-viestien asettamisohjelmaan.\n"
-"\n"
-"Täällä voit pystyttää hälyytysjärjestelmän.\n"
-
-# ../../share/compssUsers
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "Palveluiden asettaminen"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr "Saat hälytyksen kun jokin valituista palveluista ei ole enää käynnissä"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "lataa asetukset"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Saat hälytyksen jos kuorma on tätä arvoa suurempi"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "hälytyksen asetukset"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "Aseta tapa, jolla järjestelmä hälyttää sinulle"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Tallenna nimellä.."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Valitse hiiren tyyppi."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "serial_usb:ta ei löytynyt\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Emuloi kolmatta näppäintä?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "%s löytyi paikasta %s, aseta se ?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Valitse skanneri"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "Tätä %s skanneria ei ole tuettu"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Käynnistyslaite"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Palomuurin asetukset"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Palomuurin asetukset"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Palomuurin asettaminen\n"
-"\n"
-"Olet jo määritellyt palomuurin. Paina \"Määrittele\" \n"
-"poistaaksesi palomuurin tai muuttaaksesi sen asetuksia"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Palomuurin asettaminen\n"
-"\n"
-"Paina \"Määrittele\" pystyyttääksesi palomuurin"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Kieliasetukset"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Asennuksen luokka"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Kiintolevyjen tunnistus"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Hiiren määrittely"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Näppäimistön valinta"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Tietoturva"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Tiedostojärjestelmät"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Levyjen osiointi"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Asennettavat paketit"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Asenna järjestelmä"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Käyttäjien lisääminen"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Verkkoasetukset"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Palvelujen asettaminen"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Lataajan asetus"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Käynnistyslevyke"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Asenna X"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Asenna päivitykset"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Lopeta asennus"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewallin asettaminen\n"
-"\n"
-"Tämä vaihe asettaa henkilökohtaisen palomuurin Mandrake Linux\n"
-"-järjestelmääsi. Mikäli haluat tehokkaan palomuuriratkaisun, hae\n"
-"lisätietoja MandrakeSecurity Firewall distribuutiosta."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Tässä vaiheessa kysytään mitä palveluita haluat haluat sallia muille\n"
-"internetin käyttäjille siksi aikaa kun tietokoneesi on internetissä. \n"
-"Harkitse huolellisesti, ennen kuin vastaat näihin kysymyksiin,\n"
-"sillä nämä vaikuttavat tietokoneesi tietoturvaan.\n"
-"\n"
-"Jos et käytä tällä hetkellä ainoatakaan seuraavista palveluista,\n"
-"suojaa tietokoneesi palomuurilla. Voit muuttaa näitä asetuksia milloin \n"
-"haluat vain käynnistämällä tämän ohjelman uudelleen."
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Onko tietokoneessasi webbisivuja, joiden haluat näkyvän kaikkialle\n"
-"internettiin? Jos ajat webbipalvelinta, jonka tarvitsee näkyä väin\n"
-"omalle tietokoneellesi, voit turvallisesti vastata EI tähän kysymykseen.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Haluatko koneesi toimivan nimipalvelimena? Jos et halua pystyttää \n"
-"nimipalvelinta jakamaan IP- ja vyöhyketietoja internettiin, vastaa ei.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Haluatko sallia koneellesi tulevat Secure Shell (ssh) -yhteydet? Tämä\n"
-"on telnetin korvaava palvelu, jota voit käyttää kirjoittautuaksesi sisään\n"
-"internetin kautta. Jos käytät vielä telnetiä, sinun pitäisi vaihtaa se \n"
-"ssh:iin. Telnet-yhteydet eivät ole suojattuja -- hyökkääjä voi varastaa\n"
-"salasanasi, jos käytät sitä. Ssh-yhteys on sitävastoin suojattu, joten\n"
-"kukaan ei pysty salakuuntelemaan sitä."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Haluatko sallia sisään tulevat telnet-yhteydet?\n"
-"Tämä on hirvittävän vaarallista, kuten edellinen kohta osoitti.\n"
-"Suosittelemme että vastaisit Ei tähän kohtaan ja käyttäisit\n"
-"telnetin sijaan ssh:ta.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Ajatko tietokoneellasi FTP-palvelinta, jonka haluat näkyvän myös\n"
-"internettiin? Jos vastasit kyllä, suosittelemme, että käyttäisit sitä\n"
-"vain anonyymeihin siirtoihin. Mikä tahansa salasana voidaan varastaa,\n"
-"mikäli se siirretään FTP-protokollan kautta, sillä FTP ei suojaa\n"
-"siirrettäviä salasanoja.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Toimiiko tietokoneesi postipalvelimena? Jos lähetät sähköpostiviestisi\n"
-"pinen, muttin tai minkä tahansa tekstipohjaisen postinlukuohjelmiston\n"
-"avulla, se on todennäköistä. Muussa tapauksessa sinun pitäisi suojata\n"
-"ominaisuus pois palomuurin avulla.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Ajatko POP- tai IMAP-palvelinta koneellasi? Näitä palvelimia\n"
-"käytetään ylläpitämään ei-webbipohjaisia sähköpostitunnuksia\n"
-"ihmisille, jotka haluavat hakea postinsa tältä koneelta omillensa.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Käytät 2.2-sarjan Linuxin ydintä. Jos internetosoite (IP),\n"
-"jota tietokoneesi käyttää, asetetaan automaattisesti\n"
-"toisesta kotonasi tai työpaikallasi olevasta tietokoneesta\n"
-"(eli se on dynaamisesti määrätty), ominaisuuden käyttö \n"
-"pitää sallia. Pitääkö paikkaansa?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Onko tietokoneesi kello synkronoitu toisen tietokoneen kanssa?\n"
-"Useimmiten tätä ominaisuutta käytetään keskisuurissa Unix/Linux\n"
-"-organisaatioissa esimerkiksi lokin synkronointiin. Jos tietokoneesi\n"
-"ei ole osa suurempaa toimistoa tai et ole kuullut tällaisesta, \n"
-"järjestelmä ei luultavasti ole synkronoitu."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Asetukset tehty. Kirjoitetaanko muutokset levylle?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "En voi avata %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Tiedostoa %s ei voi avata kirjoittamista varten: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Palomuurin asetukset"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Valmistelen asennusta"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Verkkopääte (asiakas)"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS-, SMB-, SSH- ja välipalvelin"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Toimistosovellukset"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome-työasema"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Työkalut Palm Pilotin tai Visorin liittämiseksi"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Työasema"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Palomuuri / Reititys"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Nimipalvelin ja tietoverkon informaatiopalvelin"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Office-ohjelmistot: tekstinkäsittely (kword, abiword), taulukkolaskenta "
-"(kspread,gnumeric), pdf-lukijat jne"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Äänenkäsittely: mp3, midi, mikserit, jne"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Kirjoja ja ohjeita Linuxista sekä vapaan lähdekoodin ohjelmista"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE-työasema"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, jne"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedia - Video"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-"Kokoelma työkaluja sähköpostiin, nyytisiin, webiin, tiedostonsiirtoon ja "
-"jutusteluun"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Tietokanta"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL tai MySQL tietokantapalvelin"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Työkalut, jotka helpottavat tietokoneesi asetusten muokkaamista"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedia - Ääni"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Apuohjelmat"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentaatio"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Komentorivityökalut"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix-postipalvelin, Inn-nyytispalvelin"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internet-asema"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimedia-asema"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Asetustyökalut"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Lisää graafisia työpöytiä (Gnome, IceWM)"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"K-työpöytäympäristö. Graafinen perusympäristö ja sen mukana tulevat työkalut"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Graafinen ympäristö"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache WWW-palvelin ja Pro-ftpd FTP-palvelin"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Työkalut CD:iden luomiseen ja polttamiseen"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Toimistotyöasema"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Palvelin"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, jne"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Grafiikkaohjelmistot, kuten Gimp"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C ja C++ ohjelmointityökalut, kirjastot ja include-tiedostot"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Verkkotietokone (palvelin)"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Sähköposti/Groupware/Nyytiset"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Pelikone"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Videon katselu ja editointi"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedia - Grafiikka"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Pelit: tasohyppely, korttipelit, strategia, jne"
-
-# ../../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 ""
-"Valikoima työkaluja sähköpostin ja nyytisten lukemiseen (pine, mutt, tin...) "
-"sekä internetissä surffailuun"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Varmuuskopiointi, emulaattorit, järjestelmän tarkkailu"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Henkilökohtainen kirjanpito"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Graafinen ympäristö käyttäjäystävällisellä ohjelmistolla ja työkaluilla."
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Asiakasohjelmat eri protokollille (ssh jne)"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Internetyhdyskäytävä"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Äänen sekä videon soitto- ja editointiohjelmat"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Muut graafiset käyttöympäristöt"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editorit, komentotulkit, tiedostotyökalut, terminaalit"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Tilinpito-ohjelmia, kuten gnucash"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Henkilökohteisen tiedon hallinta"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedia - CD:n poltto"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Tieteelliinen työasema"
-
-#~ msgid "About"
-#~ msgstr "Tietoja"
-
-#~ msgid " Help "
-#~ msgstr " Apua "
-
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr "Ei saantia käytössä olevan ytimen moduuleihin (tiedosto %s puuttuu)"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Ei asetettu"
-
-#~ msgid "Choose a default printer!"
-#~ msgstr "Valitse oletustulostin !"
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Toteuta/Lue uudelleen tulostimet"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Voit antaa lisäasetuksia modulille %s."
-
-#~ msgid "Low"
-#~ msgstr "Matala"
-
-#~ msgid "Medium"
-#~ msgstr "Keskitaso"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Muutamia parannuksia tällä turvaasolla, suurimpana se että "
-#~ "järjestelmässä\n"
-#~ "on enemmän turvallisuusvaroituksia ja tarkistuksia."
-
-#~ msgid "mount failed"
-#~ msgstr "liittäminen epäonnistui"
-
-#~ msgid "Boot mode"
-#~ msgstr "Käynnistila"
-
-#~ msgid "Export"
-#~ msgstr "Vie"
-
-#~ msgid "click here"
-#~ msgstr "klikkaa tähän"
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
deleted file mode 100644
index abfe2a8c9..000000000
--- a/perl-install/share/po/fr.po
+++ /dev/null
@@ -1,12589 +0,0 @@
-# Translation file of Mandrake graphic install
-# Copyright (C) 1999 Mandrakesoft
-# David BAUDENS <baudens@mandrakesoft.com>, 1999-2002
-# David ODIN <odin@mandrakesoft.com>, 2000
-# Pablo Saratxaga <pablo@mandrakesoft.com>, 2001
-# KAtiOS <katios@nolabel.net>, 2001
-# Guillaume Cottenceau <gc@mandrakesoft.com>, 2001-2002
-# Thierry Vignaud <tvignaud@mandrakesoft.com>, 2001-2002
-# Combelles Christophe <ccomb@club-internet.fr>, 2002
-#
-# Veuillez ne pas mettre ŕ jour ce fichier ŕ moins d'ętre
-# certain tant de vos traductions que de votre grammaire et
-# de votre orthographe. Ces derničres sont trop souvent
-# approximatives. Elles nécessitent alors des relectures et
-# des corrections qui n'ont d'autre conséquence que de faire
-# perdre du temps ŕ tout le monde (ŕ vous si votre travail est
-# imparfait et aux relecteurs qui doivent rechercher puis corriger
-# vos éventuelles fautes).
-#
-# VEUILLEZ RESPECTER LA TYPOGRAPHIE FRANÇAISE !
-# Les majuscules doivent ętre accentuées si besoin est. Respectez
-# les espaces nécessaires pour la ponctuation (espace aprčs la virgule et
-# le point, espace insécables avant les points d'interrogation,
-# d'exclamation, les deux-points et le point virgule, espace aussi aprčs
-# le point virgule).
-#
-# ESPACES INSÉCABLES
-# Vous devez utiliser un espace insécable (c'est un espace qui ne peut
-# pas servir de rupture ŕ la ligne) avant le point d'exclamation, le
-# point d'interrogation, le deux-points, le point virgules, et pour les
-# "quantités", entre le nombre et l'unité abbrégée (par exemple "10 g").
-# L'espace normal en ISO et UTF8 est le caractere 0x20 tandis que l'espace
-# insécable est le caractčre 0xA0. Sous Emacs en utilisant le po mode
-# livré avec gettext >= 0.10.40-4mdk vous pouvez voir celui-ci avec un
-# fond de couleur spécial. Sous Vi celui-ci est normalement affiché
-# précédé du caractčre pipe "|". Pour le tapper sous la plupart des
-# éditeurs, vous pouvez utiliser la touche "Compose" puis en tappant
-# deux espaces. Si vous n'avez pas de touche compose, vous pouvez
-# donner cette fonction ŕ la touche "Windows" droite de votre clavier
-# avec la commande suivante :
-# xmodmap -e 'keycode 116 = Multi_key'
-#
-# Les guillemets françaises sont Ť et ť et non ". La guillemet ouvrante
-# Ť est suivie d'un espace insécable et la guillemet fermante ť est
-# précédée du męme type d'espace. Pour le tapper, vous pouvez utiliser
-# la combinaison Compose < <, et Compose > >.
-#
-# Enfin, traduisez INTELLIGEMMENT et non mot ŕ mot. Certaines traductions
-# n'ont aucun sens en français.
-#
-# Nous vous remercions de votre compréhension.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX for MDK 8.1\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-06 01:36GMT+1\n"
-"Last-Translator: Combelles Christophe <ccomb@club-internet.fr>\n"
-"Language-Team: french <fr@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-15\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configurer les écrans séparément"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Étaler l'affichage sur plusieurs écrans (Xinerama)"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configurer seulement la carte Ť %s ť (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Configuration multi-écrans"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Votre systčme peut utiliser simultanément plusieurs écrans.\n"
-"Que souhaitez-vous faire ?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Carte graphique"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Choisissez une carte graphique"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Choisissez un serveur d'affichage (serveur XFree)"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "serveur XFree"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Choisissez un pilote d'affichage X11"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "serveur X11"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Quelle configuration d'XFree désirez-vous utiliser ?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Votre carte vidéo peut utiliser l'accélération 3D matérielle mais\n"
-"uniquement en utilisant XFree %s.\n"
-"Votre carte vidéo est supportée par XFree %s. Ce dernier peut ętre plus\n"
-"performant en 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-"Votre carte vidéo peut utiliser l'accélération 3D matérielle avec XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s avec accélération 3D matérielle"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Votre carte vidéo peut utiliser l'accélération 3D matérielle en utilisant\n"
-"XFree %s.\n"
-"Veuillez noter que ce support est EXPÉRIMENTAL et qu'il peut BLOQUER VOTRE\n"
-"ORDINATEUR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s avec support EXPÉRIMENTAL de l'accélération 3D matérielle"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Votre carte vidéo peut utiliser l'accélération 3D matérielle mais\n"
-"uniquement en utilisant XFree %s.\n"
-"Attention, veuillez noter que ce support est EXPÉRIMENTAL et peut BLOQUER\n"
-"VOTRE ORDINATEUR.\n"
-"\n"
-"Votre carte vidéo est supportée par XFree %s. Ce dernier peut ętre plus\n"
-"performant en 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installation du pilote d'affichage)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuration d'XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr ""
-"Veuillez préciser la quantité de mémoire vidéo de votre carte graphique"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Choisissez les options du serveur d'affichage"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Choisissez un moniteur"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Moniteur"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Les deux paramčtres importants sont la fréquence de rafraîchissement\n"
-"verticale (qui détermine la vitesse ŕ laquelle l'écran est rafraîchi)\n"
-"et, surtout, la fréquence de synchronisation horizontale (qui détermine\n"
-"la vitesse ŕ laquelle les lignes sont tracées).\n"
-"\n"
-"Il ne faut SURTOUT PAS choisir un type de moniteur ayant\n"
-"une fréquence de rafraîchissement excédant les capacités de votre\n"
-"moniteur. Vous risqueriez de l'endommager.\n"
-"En cas de doute, choisissez un réglage moins performant mais\n"
-"sans risque pour votre matériel."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Fréquence horizontale"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Fréquence verticale"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Le moniteur n'est pas configuré"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "La carte graphique n'est pas encore configurée"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "La résolution n'a pas encore été choisie"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Désirez-vous tester la configuration ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Attention : tester cette carte vidéo peut bloquer votre ordinateur"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test de la configuration"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"essayez de modifier quelques paramčtres"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Une erreur est survenue :"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Fin du test dans %d secondes"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ętes-vous satisfait(e) ?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr ""
-"Une erreur est survenue, essayez de modifier\n"
-"quelques paramčtres"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Résolution"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Choix de la résolution et du nombre de couleurs"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Carte graphique : %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Serveur XFree86 : %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Davantage"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mode expert"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Tout montrer"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Résolutions"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Type de clavier : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Type de souris : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Périphérique : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Moniteur : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Fréquence horizontale : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Fréquence verticale : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Carte graphique : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Indentification de la carte graphique : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Mémoire vidéo : %s ko\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Nombre de couleurs : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Résolution : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Serveur XFree86 : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Pilote XFree86 : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Préparation de la configuration de X Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Que désirez-vous faire ?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Choisir un type de moniteur"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Choisir un type de carte graphique"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Changer les options du serveur d'affichage"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Changer la résolution"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Afficher la configuration actuelle"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Tester ŕ nouveau"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Quitter"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Désirez-vous conserver les changements ?\n"
-"La configuration actuelle est :\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "Interface graphique lors du démarrage"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Voulez-vous que l'interface graphique soit\n"
-"automatiquement lancée lors du démarrage ?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Veuillez relancer %s pour activer les changements"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-"Veuillez vous déconnecter puis presser simultanément les touches Ctrl-Alt-"
-"BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 couleurs (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 768 couleurs (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 536 couleurs (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16,7 millions de couleurs (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4,3 milliards de couleurs (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mo ou plus"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 ŕ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 ŕ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 ŕ 87 Hz entrelacé (sans 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ŕ 87 Hz entrelacé, 800x600 ŕ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA étendu, 800x600 ŕ 60 Hz, 640x480 ŕ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA non entrelacé, 1024x768 ŕ 60 Hz, 800x600 ŕ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA haute fréquence, 1024x768 ŕ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-fréquences supportant le 1280x1024 ŕ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-fréquences supportant le 1280x1024 ŕ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-fréquences supportant le 1280x1024 ŕ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Moniteur supportant le 1600x1200 ŕ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Moniteur supportant le 1600x1200 ŕ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Premier secteur de la partition d'amorçage"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Premier secteur du disque (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Installation de SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Oů désirez-vous installer le programme d'amorçage ?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Installation de LILO ou Grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO en mode texte"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO en mode graphique"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Démarrer ŕ partir de DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Principales options du programme d'amorçage"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Programme d'amorçage ŕ utiliser"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Installation du programme d'amorçage"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Périphérique d'amorçage"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ne fonctionne pas avec des BIOS anciens)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Compact"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "compact"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Mode vidéo"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Délai avant l'activation du choix par défaut"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Mot de passe"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Mot de passe (vérif)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Protéger par mot de passe les options"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "Protection des options"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Vider le dossier /tmp ŕ chaque démarrage"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Précisez la taille mémoire si nécessaire (%d Mo trouvés)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Autoriser plusieurs profils"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Indiquez la quantité de mémoire en Mo"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Le protection des options est inutile sans mot de passe"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Veuillez réessayer"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Les mots de passe ne correspondent pas"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Message de démarrage"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Délai de l'Open Firmware"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Délai d'amorçage du noyau"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Autoriser le démarrage sur CD ?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Autoriser le démarrage sur l'OF ?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "OS par défaut ?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"Vous avez décidé d'installer le programme d'amorçage sur une partition.\n"
-"Cela implique que vous ayez déjŕ un programme d'amorçage sur le disque dur "
-"sur lequel le systčme démarre (ie: System Commander).\n"
-"\n"
-"Sur quel disque est-ce que le systčme démarre ?"
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Voici les différentes entrées.\n"
-"Vous pouvez en rajouter de nouvelles ou changer les entrées existantes."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Ajouter"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Terminer"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Modifier l'élément sélectionné"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Quel type de systčme voulez-vous ajouter ?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Autres systčmes (SunOS, etc.)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Autres systčmes (MacOS, etc.)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Autres systčmes (Windows, etc.)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "fichier noyau"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Partition racine"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "options passées au noyau"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Fichier RamDisk"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Préactivé en écriture"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Table des partitions"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Peu sűr"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Label"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Choix par défaut"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Taille du RamDisk"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "NoVideo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Supprimer l'entrée"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Un label vide n'est pas autorisé"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Vous devez spécifier l'image noyau désirée"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Vous devez spécifier une partition racine"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Ce label est déjŕ utilisé"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Interface(s) %s %s détectée(s)"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "En possédez-vous d'autres ?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Possédez-vous des interfaces %s ?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Non"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Oui"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Voir les informations sur le matériel"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Installation du pilote pour la carte %s %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(module %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Quel pilote %s faut-il essayer ?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Le pilote de matériel Ť %s ť a parfois besoin d'options supplémentaires\n"
-"pour fonctionner de maničre optimale.\n"
-"Vous pouvez lui fournir manuellement ces options,\n"
-"ou bien lui laisser les détecter automatiquement.\n"
-"(La détection peut dans certains cas bloquer l'ordinateur,\n"
-"mais sans lui causer de dommage.)"
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Détection automatique"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Spécifier des options"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Vous pouvez maintenant founir des options au module %s.\n"
-"Veuillez noter que les adresses doivent ętre généralement préfixées de 0x, "
-"comme '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Vous pouvez maintenant préciser les options du module %s.\n"
-"Les options sont de la forme Ť nom=valeur nom2=valeur2 ... ť.\n"
-"Par exemple, Ť io=0x300 irq=7 ť"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Options du module :"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Le chargement du module %s a échoué.\n"
-"Désirez-vous réessayer avec d'autres paramčtres ?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "accčs aux programmes graphiques"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "accčs aux outils rpm"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "autoriser Ť su ť"
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "accčs aux fichiers d'administration"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "Utilisateur(s) existant(s) : %s"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Ce mot de passe est trop simple"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Veuillez taper un nom d'utilisateur"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Le nom d'utilisateur ne peut contenir que des lettres minuscules,\n"
-"des nombres, ainsi que les caractčres Ť - ť et Ť _ ť"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Ce nom d'utilisateur est déjŕ utilisé"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Ajouter un utilisateur"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Créer un compte utilisateur\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Accepter"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Nom et prénom"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Nom d'utilisateur"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Interpréteur"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Icône"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Connexion automatique"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Lors du démarrage, voulez-vous que le systčme connecte\n"
-"automatiquement un utilisateur par défaut ?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Choisissez l'utilisateur par défaut :"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Choisissez l'environnement graphique :"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Choisissez la langue :"
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr ""
-"Vous pouvez choisir d'autres langues.\n"
-"Elles seront disponibles aprčs l'installation."
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Tout"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Autoriser tous les utilisateurs"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personnalisée"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Pas de partage"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Le paquetage %s doit ętre installé. Voulez-vous l'installer ?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-"Voulez-vous exporter par NFS (protocole Unix) ou SMB (protocole Windows)?"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Le paquetage %s, qui est obligatoire, est manquant"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-"Voulez-vous permettre aux utilisateurs de partager certains sous-répertoires de leur répertoire personnel (/home) ?\n"
-"Permettre cela autorisera les utilisateurs ŕ cliquer simplement sur Ť Partager ť dans konqueror et nautilus.\n"
-"\n"
-"Ť Personnalisée ť permet de choisir pour chaque utilisateur.\n"
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Annuler"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "Lancer userdrake"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"Le partage par utilisateur utilise le groupe Ť fileshare ť.\n"
-"Vous pouvez utiliser userdrake pour rajouter un utilisater dans ce groupe."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Bienvenue aux pirates"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Trčs faible"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standard"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Élevée"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "Plus élevée"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoďaque"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Ce niveau de sécurité doit ętre utilisé avec précaution. Il rend votre\n"
-"systčme plus facile ŕ utiliser, aux dépens de la sécurité. Il ne devrait\n"
-"donc pas ętre utilisé sur une machine connectée ŕ un réseau ou ŕ "
-"l'internet.\n"
-"Aucun mot de passe n'est requis."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Les mots de passe sont maintenant requis. Pour autant, il n'est pas\n"
-"recommandé d'utiliser cette machine sur un réseau."
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Ceci est le niveau de sécurité standard recommandé pour un ordinateur \n"
-"utilisé pour se connecter ŕ l'internet en tant que client."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Il y a déjŕ des restrictions, et des vérifications automatiques sont "
-"effectuées chaque nuit."
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Avec ce niveau de sécurité, l'utilisation de cette machine en tant que\n"
-"serveur devient envisageable. La sécurisation est suffisamment forte pour\n"
-"accepter les connexions de nombreux clients. Note : si votre machine est\n"
-"seulement connectée en tant que client sur Internet, vous devriez plutôt\n"
-"choisir un niveau inférieur."
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Ce niveau de sécurité est basé sur le précédent mais le systčme est "
-"maintenant\n"
-"complčtement clos (vu du réseau). La sécurité est maximale."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Choisissez le niveau de sécurité"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Niveau de sécurité"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Utilisation de Ť libsafe ť pour les serveurs"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Une bibliothčque qui protčge contre les attaques par débordement de pile.\n"
-"(les plus fréquentes)"
-
-# 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)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Bienvenue dans %s, le chargeur de systemes d'exploitation.\n"
-"\n"
-"Choisissez un systeme d'exploitation dans la liste ci-dessus.\n"
-"-- Demarrage automatique dans %d secondes.\n"
-"\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Bienvenue dans GRUB, le chargeur de systemes d'exploitation"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Utilisez les touches %c et %c pour faire votre choix."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Appuyez sur <Entree> pour demarrer, sur <e> pour modifier la"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "commande de demarrage ou sur <c> pour utiliser la ligne de commande."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Demarrage automatique dans %d secondes."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "il n'y a pas assez de place dans le dossier /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Bureau"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Menu Démarrer"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr ""
-"Vous ne pouvez pas installer le programme d'amorçage\n"
-"sur une partition %s\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "pas d'aide disponible pour l'instant.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Configuration du style de démarrage"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Fichier"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Fichier/_Quitter"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Moniteur nouveau style avec catégorisation"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Moniteur nouveau style"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Moniteur traditionnel"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Moniteur traditionnel Gtk+"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Démarrage entičrement graphique (Aurora)"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Menu d'amorçage"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Menu d'amorçage"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Le choix du systčme d'exploitation est actuellement géré par %s.\n"
-"Vous pouvez ici modifier la liste du menu d'amorçage."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Configurer"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Choix pour l'interface utilisateur"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Lancer l'interface graphique au démarrage"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Ne pas connecter automatiquement un utilisateur"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Connexion automatique (choisir utilisateur et environnement)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "Impossible de lire le fichier /etc/inittab  : %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "Go"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "Ko"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "Mo"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "To"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutes"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minute"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d secondes"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Impossible de faire des captures d'écran avant le partitionnement"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Les captures d'écran seront disponibles aprčs l'installation dans %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "France"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "Belgique"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "République Tchčque"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Allemagne"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Grčce"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Norvčge"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Sučde"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Pays-Bas"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Italie"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Autriche"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "États-Unis"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr ""
-"Avant d'utiliser un logiciel de partitionnement de disques,\n"
-"il est prudent de faire une copie de sauvegarde de vos données !!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "MISE EN GARDE"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Si vous voulez utiliser Ť aboot ť, vous devez réserver\n"
-"un espace libre d'au moins 2048 secteurs au début du disque."
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Erreur"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Assistant"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Choisissez une action"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Votre disque possčde une seule grande partition, qui est de type FAT\n"
-"(généralement utilisé par Microsoft DOS ou Windows).\n"
-"Vous devriez la réduire pour pouvoir créer d'autres partitions :\n"
-"cliquez sur la partition puis sur Ť Redimensionner ť."
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Veuillez cliquer sur une partition"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Détails"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "SF journalisé"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Vide"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Autre"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Types des systčmes de fichiers :"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Créer"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Type"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Utilisez plutôt Ť %s ť"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Supprimer"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Cliquez d'abord sur Ť Démonter ť"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Aprčs avoir modifié le type de la partition %s, toutes les données\n"
-"présentes sur cette partition seront perdues."
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Choisissez une partition"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Choisissez une autre partition"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Quitter"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Passer en mode expert"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Passer en mode normal"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "État précédent"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Désirez-vous tout de męme continuer ?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Quitter sans sauvegarder"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Désirez-vous réellement quitter sans écrire la table des partitions ?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Désirez-vous sauvegarder les modifications de /etc/fstab"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Partitionnement automatique"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Supprimer toutes les partitions"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Informations sur les disques durs"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Toutes les partitions primaires sont utilisées"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Impossible d'ajouter une partition"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Pour pouvoir utiliser plus de partitions, vous devez d'abord en supprimer "
-"une pour la remplacer par une partition étendue."
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Sauvegarder la table des partitions..."
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Charger une table des partitions..."
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Deviner automatiquement la table des partitions"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Relire la table des partitions"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Auto-montage des périphériques amovibles"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Sélectionnez un fichier"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"La table des partitions contenue sur la sauvegarde\n"
-"n'a pas la męme taille que le disque.\n"
-"Désirez-vous tout de męme continuer ?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Attention"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Insérez une disquette dans le lecteur.\n"
-"Toutes les données présentes sur cette disquette seront perdues."
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Tentative de lecture de l'organisation des partitions..."
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Informations détaillées"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Point de montage"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Options"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Redimensionner"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Déplacer"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formater"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Monter"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Ajouter au RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Ajouter au LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Démonter"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Supprimer du RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Supprimer du LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Modifier le RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Utiliser pour loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Créer une nouvelle partition"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Secteur de début : "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Taille en Mo : "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Type du systčme de fichiers : "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Point de montage : "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Préférence : "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Supprimer le fichier loopback ?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Changement du type de partition"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Quel systčme de fichiers désirez-vous utiliser ?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Passage de ext2 ŕ ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Oů désirez-vous monter le fichier loopback %s ?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Oů désirez-vous monter la partition %s ?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Il est impossible de désélectionner ce point de montage car il est\n"
-"utilisé pour le loopback. Veuillez supprimer ce dernier d'abord."
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Calcul des limites du systčme de fichiers FAT ..."
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Redimensionnement"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Cette partition ne peut pas ętre redimensionnée"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr ""
-"Toutes les données présentes sur cette partition\n"
-"devraient avoir été sauvegardées."
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Aprčs avoir redimensionné la partition %s, toutes les données présentes\n"
-"sur cette partition seront perdues"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Choisissez la nouvelle taille"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Nouvelle taille en Mo : "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Sur quel disque voulez-vous la déplacer ?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Secteur"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Sur quel secteur voulez-vous la déplacer ?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Déplacement"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Déplacement de la partition..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Choisissez un RAID existant"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "Nouveau"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Choisissez un LVM existant"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "Nom LVM ?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Cette partition ne peut pas ętre utilisée pour du loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Nom du fichier loopback :"
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Donnez un nom de fichier"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr ""
-"Ce fichier est déjŕ utilisé par un autre loopback.\n"
-"Veuillez en choisir un autre."
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Le fichier existe déjŕ. Faut-il l'utiliser ?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Options de montage"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Divers"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "Périphérique"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "Niveau de RAID"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "Taille de bloc"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Soyez prudent : cette opération est dangereuse."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Quel type de partitionnement ?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Le programme d'amorçage LILO ne peut pas fonctionner si vous placez\n"
-"la partition du dossier /boot aussi loin sur le disque (c'est-ŕ-dire\n"
-"au delŕ du 1024čme cylindre). Si vous n'utilisez pas LILO, vous n'avez\n"
-"pas besoin de partition spécifique pour le dossier /boot."
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Attention, votre partition racine se situe au delŕ du 1024čme cylindre.\n"
-"Si vous comptez utiliser le programme d'amorçage LILO, vous devez créer\n"
-"une autre partition juste pour le dossier /boot en deçŕ du 1024čme cylindre."
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Attention, vous avez choisi une partition RAID logiciel comme partition\n"
-"racine. Pour que votre systčme puisse démarrer, vous devez ajouter\n"
-"une partition non RAID, spécifique pour le dossier /boot."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr ""
-"La table des partitions de %s va maintenant ętre écrite sur le disque !"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr ""
-"Vous devez redémarrer pour que les modifications soient prises en compte"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Aprčs avoir formaté la partition %s, toutes les données présentes\n"
-"sur cette partition seront perdues."
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formatage"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formatage du fichier loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formatage de la partition %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Cacher les fichiers"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Déplacer les fichiers sur la nouvelle partition"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"Le dossier %s contient déjŕ des données\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Déplacement des fichiers sur la nouvelle partition..."
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Copie de %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Suppression de %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "la partition %s est maintenant connue comme %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Périphérique : "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Lettre de lecteur DOS supposée : %s:\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Type : "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Nom : "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Début : secteur %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Taille : %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s secteurs"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cylindre %d ŕ %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formatée\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Non formatée\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Montée\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "Appartient au RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Fichier(s) loopback :\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partition d'amorçage par défaut\n"
-"(pour DOS/Windows, pas pour LILO)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "RAID de niveau %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Taille de bloc %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "disques RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Nom du fichier loopback : %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Il y a des chances que cette partition\n"
-"soit une partition de pilotes systčmes,\n"
-"vous ne devriez pas la toucher.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Cette partition d'amorçage (bootstrap)\n"
-"est nécessaire si vous avez plusieurs\n"
-"systčmes d'exploitation. \n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Taille : %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Géométrie : %s cylindres, %s tętes, %s secteurs\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Information : "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "disques LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Table des partitions de type : %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "sur bus %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Options : %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Clef de chiffrement du systčme de fichiers"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Choisissez la clef de chiffrement du systčme de fichiers"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Cette clef de chiffrement est trop courte (minimum %d caractčres)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "Les clefs de chiffrement ne correspondent pas"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Clef de chiffrement"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Clef de chiffrement (confirmation)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Changer le type"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Veuillez cliquer sur une source"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Rechercher les serveurs"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "le formatage au format %s de %s a échoué"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Impossible de formater %s au format %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "le montage de la partition %s dans le répertoire %s a échoué"
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck a échoué avec le code de sortie %d ou le signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "Le démontage de %s a échoué : %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "simple"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "avec /usr"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "serveur"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Les partitions JFS doivent faire plus de 16 Mo."
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Les partitions ReiserFS doivent faire plus de 32 Mo."
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Les points de montage doivent commencer par /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Le point de montage %s est déjŕ utilisé\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr ""
-"Vous ne pouvez pas utiliser une partition logique LVM pour le point de "
-"montage %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Ce dossier devrait rester dans la partition racine"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Vous avez besoin d'un vrai systčme de fichiers (ext2, reiserfs) pour ce "
-"point de montage\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-"Vous ne pouvez pas utiliser de systčme de fichiers crypté pour le point de "
-"montage %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Pas assez d'espace libre pour le partitionnement automatique"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Rien ŕ faire"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Erreur lors de l'ouverture de %s en écriture : %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Une erreur est survenue : aucun périphérique valide n'a été trouvé pour\n"
-"créer de nouvelles partitions. Veuillez vérifier votre matériel."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Vous n'avez défini aucune partition !"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux est un systčme multi-utilisateurs, ce qui signifie généralement que chaque\n"
-"utilisateur peut avoir des préférences différences, ses propres fichiers,\n"
-"etc. Pour plus d'informations, consultez le manuel d'utilisation.\n"
-"Contrairement ŕ Ť root ť qui a tous les droits, les utilisateurs que vous\n"
-"ajouterez ici n'auront que des permissions pour agir sur leurs propres\n"
-"fichiers exclusivement.\n"
-"\n"
-"L'utilisateur/administrateur devrait également se créer un compte\n"
-"Ť normal ť. C'est ŕ travers cet utilisateur que celui-ci devrait se\n"
-"connecter pour accomplir ses tâches quotidiennes. Car, bien qu'il soit\n"
-"pratique d'avoir tous les accčs, cette situation peut également engendrer\n"
-"des situations désastreuses si un fichier est détruit par inadvertance. Un\n"
-"utilisateur normal n'ayant pas accčs aux fichiers sensibles, ne peut causer\n"
-"de dommages majeurs.\n"
-"\n"
-"Il faut d'abord entrer le vrai nom de la personne. Évidemment, vous pouvez\n"
-"y inscrire n'importe quoi. DrakX prendra le premier mot inséré et le\n"
-"transposera comme Ť Nom de login ť. C'est le nom qui sera utilisé pour se\n"
-"connecter au systčme. Vous pouvez le modifier. Il faut maintenant entrer un\n"
-"mot de passe. Celui-ci n'est pas aussi crucial que le mot de passe de\n"
-"Ť root ť, mais ce n'est pas une raison pour rentrer 123456. Aprčs tout,\n"
-"ceci mettrait vos fichiers en péril.\n"
-"\n"
-"Si vous cliquez Ť Accepter ť, il vous sera possible d'ajouter d'autres\n"
-"utilisateurs. Créez un utilisateur différent pour chaque personne devant\n"
-"utiliser votre ordinateur. Une fois chaque utilisateur défini, cliquez sur\n"
-"Ť Terminer ť.\n"
-"\n"
-"En cliquant sur Ť Avancé ť, vous pourrez sélectionner un Ť shell ť\n"
-"différent pour cet utilisateur (bash est assigné par défaut)."
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Ci-dessus sont listées les partitions linux existantes détectées sur votre "
-"systčme.\n"
-"Vous pouvez garder les choix faits par l'assistant, ils sont corrects pour "
-"la plupart\n"
-"des installations courantes. Si vous changez quoi que ce soit, vous devez au "
-"moins\n"
-"définir une partition racine Ť / ť. Ne choisissez pas une partition trop "
-"petite, sinon\n"
-"vous ne pourrez pas installer assez de logiciels. Si vous voulez stocker vos "
-"données\n"
-"sur une partition séparée, vous devrez également créer une partition pour le "
-"dossier\n"
-"Ť /home ť (seulement possible si vous avez au moins deux partitions linux "
-"disponibles).\n"
-"\n"
-"Chaque partition est décrite comme suit : Ť Nom ť, Ť Capacité ť.\n"
-"\n"
-"Le Ť Nom ť est codé comme suit : Ť type du disque dur ť,\n"
-"Ť numéro du disque dur ť, Ť numéro de la partition ť (par exemple,\n"
-"Ť hda1 ť).\n"
-"\n"
-"Le Ť type du disque dur ť est Ť hd ť si votre disque dur\n"
-"est un disque dur IDE ou Ť sd ť s'il s'agit d'un disque SCSI.\n"
-"\n"
-"Le Ť numéro du disque dur ť est toujours une lettre qui suit Ť hd ť ou Ť sd "
-"ť :\n"
-"- avec un disque dur IDE,\n"
-" * Ť a ť signifie Ť disque maître sur le premier port IDE ť,\n"
-" * Ť b ť signifie Ť disque esclave sur le premier port IDE ť,\n"
-" * Ť c ť signifie Ť disque maître sur le second port IDE ť,\n"
-" * Ť d ť signifie Ť disque esclave sur le second port IDE ť.\n"
-"- avec un disque dur SCSI, un Ť a ť signifie Ť premier disque dur ť,\n"
-"Ť b ť signifie Ť second disque dur ť, etc. dans l'ordre des IDs SCSIť."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"Les paquetages requis ŕ l'installation de Mandrake Linux sont distribués sur plusieurs\n"
-"CDROM. Heureusement, DrakX connaît l'emplacement de chacun des paquetages.\n"
-"Il éjectera celui présent dans le lecteur et vous demandera d'insérer le\n"
-"CDROM approprié, selon le cas."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"C'est maintenant le moment de choisir les paquetages qui seront installés\n"
-"sur votre systčme. Sachez que Mandrake Linux contient plusieurs milliers de paquetages ŕ\n"
-"installer, et qu'il n'est pas nécessaire de tous les connaître par coeur.\n"
-"\n"
-"Si vous ętes en train de faire une installation normale ŕ partir d'un\n"
-"CDROM, il vous sera d'abord demandé de spécifier quel CD vous avez (en mode\n"
-"Expert). Vérifier les étiquettes et cliquez sur les boîtes leur étant\n"
-"associées. Cliquez sur Ť OK ť, lorsque vous ętes pręt ŕ continuer.\n"
-"\n"
-"Les paquetages sont regroupés selon la nature de l'installation. Les\n"
-"groupes sont divisés en quatre sections principales:\n"
-"\n"
-" * Ť Station de travail ť: si vous comptez utiliser votre machine ainsi,\n"
-"sélectionner un ou plusieurs groupes y correspondant.\n"
-"\n"
-" * Ť Environnement graphique ť: ce groupe vous permettra de déterminer quel\n"
-"environnement graphique vous voulez avoir sur votre systčme. Évidemment, il\n"
-"vous en faut au moins un pour utiliser votre station en mode graphique.\n"
-"\n"
-" * Ť Développement ť: si votre systčme sera utilisé pour la programmation,\n"
-"choisissez les groupes désirés.\n"
-"\n"
-" * Ť Serveur ť: finalement, si vous systčme doit agir en tant que serveur,\n"
-"vous pourrez sélectionner les services que vous voulez installer.\n"
-"\n"
-" * Ť Environnement graphique ť: ce groupe vous permettra de déterminer quel\n"
-"environnement graphique vous voulez avoir sur votre systčme. Évidemment, il\n"
-"vous en faut au moins un pour utiliser votre station en mode graphique.\n"
-"\n"
-"En plaçant votre souris au dessus d'un nom de groupe, vous verrez\n"
-"apparaître une courte description de ce groupe. Si vous désélectionnez tous\n"
-"les groupes lors d'une installation standard (par opposition ŕ une mise ŕ\n"
-"jour), un dialogue apparaîtra proposant différentes options pour une\n"
-"installation minimale:\n"
-"\n"
-" * Ť Avec X ť: installe le moins de paquetages possible pour avoir un\n"
-"environnement de travail graphique;\n"
-"\n"
-" * Ť Avec la documentation de base ť: installe le systčme de base plus\n"
-"certains utilitaires de base et leur documentation. Cette installation est\n"
-"utilisable comme base pour monter un serveur;\n"
-"\n"
-" * Ť Installation vraiment minimale ť: installera le strict minimum\n"
-"nécessaire pour obtenir un systčme fonctionnel, en ligne de commande. Cette\n"
-"installation prends ŕ peu prčs 65Mo.\n"
-"\n"
-"Vous pouvez finalement cocher l'option Ť Sélection individuelle des\n"
-"paquetages ť. Cette option est ŕ utiliser si vous connaissez exactement le\n"
-"paquetage désiré ou si vous voulez avoir le contrôle total de votre\n"
-"installation.\n"
-"\n"
-"Si vous avez démarré l'installation en mode \"mise ŕ jour\", vous pouvez\n"
-"\"dé-sélectionner\" tous les groupes afin d'éviter l'installation de\n"
-"nouveaux programmes. Cette option est trčs utile pour restaurer un systčme\n"
-"défectueux."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Finalement, si vous avez choisi de sélectionner individuellement les\n"
-"paquetages ŕ installer, DrakX vous présentera un arbre contenant tous les\n"
-"paquetages, classés par groupes et sous-groupes. En naviguant ŕ travers\n"
-"l'arbre, vous pouvez sélectionner des groupes, des sous-groupes ou des\n"
-"paquetages individuels.\n"
-"\n"
-"Dčs que vous sélectionnez un paquetage dans l'arbre, une descriptions\n"
-"apparaît ŕ droite. Une fois votre sélection complétée, cliquez sur\n"
-"Ť Installation ť pour lancer le processus. Soyez patient, car en fonction\n"
-"du type d'installation choisi ou du nombre de paquetages sélectionnés, le\n"
-"temps requis peut ętre substantiellement différent. Une estimation du temps\n"
-"requis est présentée sur l'écran en cours d'opération afin de vous\n"
-"permettre d'évaluer de combien de temps vous disposez pour prendre votre\n"
-"déjeuner.\n"
-"\n"
-"!! Si un logiciel serveur a été sélectionné, vous devrez confirmer que vous\n"
-"voulez vraiment que celui-ci soit installé. Sous Mandrake, par défaut, tous\n"
-"les serveurs installés sont lancés au démarrage. Malgré tous les efforts\n"
-"investis pour vous livrer une distribution Linux sécuritaire, il est\n"
-"possible que certaines failles de sécurité affectes les serveurs installés\n"
-"au-delŕ de la date de publication. Si vous ne savez pas précisément ŕ quoi\n"
-"sert un serveur en particulier ou pourquoi il est installé, cliquez sur\n"
-"Ť NON ť. En cliquant sur Ť OUI ť, le serveur sera installé et le service\n"
-"rendu disponible au démarrage. !!\n"
-"\n"
-"L'option Ť Dépendances automatiques ť désactive les avertissements qui\n"
-"apparaissent ŕ chaque fois que l'installeur sélectionne un nouveau paquet.\n"
-"Ces avertissements surviennent parce que DrakX a déterminé que pour qu'un\n"
-"paquetage soit fonctionnel, il lui en faut un autre dont il est dépendant.\n"
-"\n"
-"La petite icône de disquette qui apparaît au bas de la liste permet de\n"
-"récupérer une liste de paquetages sélectionnés durant une autre\n"
-"installation. En cliquant dessus, on vous demandera d'insérer la disquette\n"
-"créée lors d'une installation précédente. Voir la deuxičme note de la\n"
-"derničre étape afin de savoir comment créer une telle disquette."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"Si vous désirez connecter votre systčme ŕ un réseau ou ŕ l'Internet,\n"
-"cliquez sur Ť OK ť. L'autodétection des périphériques réseau et modems sera\n"
-"alors lancée. Si cette détection échoue, décochez la case Ť Utiliser\n"
-"l'autodétection ť. Vous pouvez aussi choisir de ne pas configurer le\n"
-"réseau, ou de le faire plus tard. Dans ce cas, cliquez simplement sur\n"
-"Ť Annuler ť.\n"
-"\n"
-"Les types de connexion supportées sont: modem téléphonique, modem ISDN,\n"
-"connexion ADSL, modem câble ou simplement LAN (réseau ethernet).\n"
-"\n"
-"Nous ne détaillerons pas ici chacune des configurations possible. Assurez\n"
-"vous seulement que vous avez toutes les informations de votre fournisseur\n"
-"de service Internet ŕ portée de main.\n"
-"\n"
-"Vous pouvez consulter le chapitre du ŤGuide de l'utilisateurť concernant les connexions ŕ Internet\n"
-"pour plus de détails ŕ propos des configurations spécifiques de chaque type\n"
-"de connexion. Vous pouvez également configurer votre connexion ŕ Internet\n"
-"une fois l'installation terminée.\n"
-"\n"
-"Si vous désirez configurer votre réseau plus tard ou si vous avez terminé\n"
-"l'installation de votre réseau, cliquez sur Ť Annuler ť."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Vous pouvez maintenant choisir les services disponibles au démarrage de\n"
-"votre systčme.\n"
-"\n"
-"Ici sont présentés tous les services disponibles avec l'installation en\n"
-"place. Faites une bonne vérification et enlevez tout ce qui n'est pas\n"
-"absolument nécessaire au démarrage du systčme.\n"
-"\n"
-"Vous pouvez obtenir une courte explication des services en les\n"
-"sélectionnant spécifiquement. Cela dit, si vous n'ętes pas certain de\n"
-"l'application d'un service, conservez les paramčtres par défaut\n"
-"\n"
-"!! Ŕ cette étape, soyez particuličrement attentif dans le cas d'un systčme\n"
-"destiné ŕ agir comme serveur. Dans ce cas, vous voudrez probablement\n"
-"permettre exclusivement les services nécessaires. !!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"GNU-Linux manipule l'heure au format GMT (Greenwich Mean Time) et la "
-"convertit en\n"
-"temps local selon le fuseau horaire choisi. Il est néanmoins possible de\n"
-"désactiver cela en désélectionnant Ť Horloge systčme réglée sur le méridien\n"
-"de Greenwich ť de façon ŕ ce que l'horloge matérielle soit la męme que\n"
-"celle du systčme. Cela est particuličrement utile si la machine accueille\n"
-"un autre systčme d'exploitation tel que .\n"
-"\n"
-"La Ť Synchronisation automatique ť permet de régler l'heure automatiquement\n"
-"en se connectant ŕ un serveur de temps sur Internet. Dans la liste qui est\n"
-"alors présentée, choisissez un serveur géographiquement proche de vous.\n"
-"Vous devez avoir une connexion Internet pour que cela fonctionne bien\n"
-"entendu. Cela installera en fait sur votre machine un serveur de temps\n"
-"local qui pourra optionnellement ętre lui-męme utilisé par d'autres\n"
-"machines de votre réseau local."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X (pour le X Window system) est le coeur de votre interface graphique sous\n"
-"GNU/Linux. Tous les environnements graphiques (Gnome, KDE, Afterstep, ...) présents\n"
-"sur Mandrake Linux dépendent de X. A cette étape, DrakX, va tenter de le configurer\n"
-"automatiquement.\n"
-"\n"
-"Il est trčs rare que cette étape échoue, ŕ moins d'avoir un équipement\n"
-"obsolčte (ou trop récent). Si le processus réussit, il va démarrer X\n"
-"automatiquement avec la meilleure résolution d'écran possible, en fonction\n"
-"de la taille du moniteur. Une fenętre apparaît alors vous demandant si\n"
-"cette configuration vous convient.\n"
-"\n"
-"Si vous faites une installation Ť Expert ť, vous entrerez dans\n"
-"l'information de configuration de X. Voir les sections correspondantes du\n"
-"manuel pour plus d'information.\n"
-"\n"
-"Si vous pouvez voir le message et cliquez sur oui, DrakX continuera ŕ la\n"
-"prochaine étape. Si vous ne pouvez voir la fenętre, ceci signifie que le\n"
-"test a échoué et vous serez ramené ŕ l'écran précédant en 10 secondes."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Il se peut que vous ne soyez pas entičrement satisfait ŕ la premičre\n"
-"tentative de configuration graphique (écran trop petit, peu de\n"
-"couleurs...). Ainsi, męme si X démarre correctement, DrakX vous demande si\n"
-"la configuration vous convient. Il proposera aussi de la changer en\n"
-"affichant une liste des modes valides, si possible.\n"
-"\n"
-"En dernier recours, si vous ne pouvez pas faire fonctionner X, choisissez\n"
-"Ť Changer la carte graphique ť, sélectionnez Ť carte non listée ť, et\n"
-"lorsqu'il vous sera demandé le serveur graphique, choisissez Ť FBDev ť.\n"
-"c'est une option de secours qui fonctionnera sur n'importe quelle carte\n"
-"graphique moderne. Choisissez ensuite Ť Tester ŕ nouveau ť pour vous\n"
-"assurer que tout va bien."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Finalement, il vous sera demandé si vous souhaitez obtenir l'interface\n"
-"graphique dčs le démarrage ou non. Notez que cette question sera posée męme\n"
-"si vous choisissez de ne pas tester la configuration. Il est évidemment\n"
-"souhaitable de répondre Ť Non ť si cette machine est un serveur sur\n"
-"laquelle personne n'est censée travailler en mode graphique."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"Le CDROM d'installation de Mandrake Linux a un mode de récupération prédéfini. Vous pouvez\n"
-"y accéder en démarrant l'ordinateur sur le CDROM. Selon la version de votre\n"
-"Ť BIOS ť, il faut lui spécifier de démarrer sur le CDROM. Vous devriez\n"
-"revenir au disquette de démarrage dans deux cas précis :\n"
-"\n"
-" * Au moment d'installer le Ť Programme d'amorce ť, DrakX va réécrire sur le\n"
-"secteur (MBR) contenant le programme d'amorce (boot loader) afin de vous\n"
-"permettre de démarrer avec Linux ou Windows (en prenant pour acquis que\n"
-"vous avez deux systčmes d'exploitation installés. Si vous réinstallez\n"
-"Windows, celui-ci va réécrire sur le MBR et il vous sera désormais\n"
-"impossible de démarrer Linux.\n"
-"\n"
-" * Si un problčme survient et qu'il vous est impossible de démarrer ŕ partir\n"
-"du disque dur, cette disquette deviendra votre seul moyen de démarrer votre\n"
-"systčme Linux. Elle contient un bon nombre d'outils pour récupérer un\n"
-"systčme défectueux, peu importe la source du problčme.\n"
-"\n"
-"En cliquant sur cette étape, on vous demandera d'insérer une disquette. La\n"
-"disquette insérée sera complčtement effacée et DrakX se chargera de la\n"
-"formater et d'y insérer les fichiers nécessaires."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Cette étape vous permet de déterminer précisément l'emplacement de votre\n"
-"installation de Mandrake Linux. Si votre disque est vide ou utilisé par un autre systčme\n"
-"d'exploitation, vous devrez repartitionner votre disque. Partitionner un\n"
-"disque signifie de le diviser précisément afin de créer un espace pour\n"
-"votre installation.\n"
-"\n"
-"Comme les effets du partition sont irréversibles (l'ensemble du disque est\n"
-"effacé), le partitionnement est généralement intimidant et stressant pour\n"
-"un utilisateur inexpérimenté. Heureusement, une interface a été prévue ŕ\n"
-"cet effet. Avant de commencer, révisez vos manuels et surtout, prenez votre\n"
-"temps.\n"
-"\n"
-"Si vous ętes en mode expert, l'application DiskDrake, l'outil de\n"
-"partitionnement de Mandrake Linux, vous permettra de déterminer précisément l'emplacement\n"
-"de chacune de vos partitions. Ŕ partir de l'interface d'installation, vous\n"
-"pouvez lancer les assistants en cliquant sur Ť Assistant ť.\n"
-"\n"
-"Si des partitions ont déjŕ été définies, peu importe qu'elles proviennent\n"
-"d'une autre installation ou d'un autre outil de partitionnement, il vous\n"
-"suffit de simplement choisir sur quelle partition vous voulez installer\n"
-"Mandrake.\n"
-"\n"
-"Si vos partitions ne sont pas définies, vous devrez les créer en utilisant\n"
-"l'assistant. Selon la configuration de votre disque, plusieurs options sont\n"
-"disponibles :\n"
-"\n"
-" * Ť Utilisez l'espace disponible ť: cette option tentera simplement de\n"
-"partitionner automatiquement l'espace inutilisé sur votre disque. Il n'y\n"
-"aura pas d'autre question.\n"
-"\n"
-" * Ť Utiliser les partitions existantes ť: l' assistant a détecté une ou\n"
-"plusieurs partitions existants sur votre disque. Si vous voulez les\n"
-"utiliser, choisissez cette option.\n"
-"\n"
-" * Ť Utilisez l'espace libre sur une partition Windows ť: si Microsoft Windows est installé\n"
-"sur votre disque et prend l'ensemble de l'espace vous devez créer une place\n"
-"pour votre installation Mandrake. Pour ce faire, vous pouvez tout effacer\n"
-"(voir Ť effacer tout le disque ť ou Ť Mode expert ť) ou vous pouvez\n"
-"redimensionner l'espace utilisé par GNU/Linux. Le redimensionnement peut ętre\n"
-"effectué sans pertes de données, ŕ condition que vous ayez préalablement\n"
-"défragmenté la partition Windows. Une sauvegarde de Vos données ne fera pas de mal\n"
-"non plus. Cette seconde option peut ętre accomplie sans perte de données.\n"
-"Cette solution est recommandée pour faire cohabiter Linux et Windows sur le\n"
-"męme ordinateur.\n"
-"\n"
-" Avant de choisir cette option, il faut comprendre qu'aprčs cette procédure\n"
-"l'espace disponible pour Windows sera réduit. Vous aurez moins d'espace\n"
-"pour installer des logiciels ou sauvegarder de l'information avec Windows.\n"
-"\n"
-" * Ť Effacer tout le disque ť: si vous voulez effacer toutes les données et\n"
-"les applications installées sur votre systčme et les remplacer par votre\n"
-"nouveau systčme Mandrake Linux, choisissez cette option. Soyez prudent, car ce choix est\n"
-"irréversible et permanent. Il vous sera impossible de retrouver vos données\n"
-"effacées.\n"
-"\n"
-" !! En choisissant cette option, l'ensemble du contenu de votre disque sera\n"
-"détruit. !!\n"
-"\n"
-" * Ť Supprimer Microsoft Windows ť: ce choix effacera tout simplement ce que\n"
-"contient le disque et recommencera ŕ zéro. Toutes les données et les\n"
-"programmes présents sur le disque seront effacés.\n"
-"\n"
-" !! En choisissant cette option, l'ensemble de votre disque sera effacé. !!\n"
-"\n"
-" * Ť Mode expert ť: permet de partitionner manuellement votre disque. Soyez\n"
-"prudent, parce que bien que plus puissante, cette option est dangereuse.\n"
-"Vous pouvez facilement perdre l'ensemble du contenu d'un disque. Donc, ne\n"
-"choisissez pas cette option si vous ne savez pas exactement ce que vous\n"
-"devez faire."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"Votre installation de Mandrake Linux est maintenant terminée et votre systčme est pręt ŕ\n"
-"ętre utilisé. Cliquez sur Ť OK ť pour redémarrer votre systčme. Vous aurez\n"
-"alors le choix de démarrer ou Windows (s'il est présent).\n"
-"\n"
-"Le bouton Ť Avancée ť (en mode Expert uniquement) permet deux autres\n"
-"options:\n"
-"\n"
-" * Ť Générer une disquette d'auto-install ť: Pour créer une disquette\n"
-"d'installation qui permettra de reproduire l'installation que vous venez de\n"
-"réaliser sans l'aide d'un administrateur.\n"
-"\n"
-" Notez que les deux options suivantes apparaissent aprčs avoir cliqué sur le\n"
-"bouton:\n"
-"\n"
-" * Ť Replay ť. C'est une installation partiellement automatique oů il est\n"
-"possible de personnaliser le partitionnement du disque (exclusivement).\n"
-"\n"
-" * Ť Automatique ť. Complčtement automatique, cette installation reformate\n"
-"le disque au complet.\n"
-"\n"
-" Cette fonctionnalité est particuličrement pratique pour l'installation de\n"
-"multiples systčmes. Voir la sectionAuto install de notre site Web.\n"
-"\n"
-" * Ť Sauvegarder les paquetages sélectionnés ť(*) sauve la sélection des\n"
-"paquetages installés. Puis, lorsque vous ferez une autre installation,\n"
-"insérer la disquette dans le lecteur et accéder au menu d'aide en tapant\n"
-"[f1], et entrez la commande suivante: Ť linux defcfg=\"floppy\" ť.\n"
-"\n"
-"(*) Vous avez besoin d'une disquette formatée avec FAT (pour la créer sous\n"
-"Linux, tapez Ť mformat a: ť)"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Chaque partition nouvellement définie doit ętre formatée, c'est ŕ dire\n"
-"qu'un systčme de fichier (filesystem) doit y ętre créé.\n"
-"\n"
-"Durant cette étape, vous pouvez également choisir de reformater d'autres\n"
-"partitions existantes afin d'effacer les données qu'elles contiennent. Si\n"
-"c'est ce que vous désirez, il faut également choisir ces partitions.\n"
-"\n"
-"Sachez qu'il n'est pas nécessaire de reformater toutes les partitions\n"
-"existantes. Vous devez reformater les partitions contenant le systčme\n"
-"d'exploitation, (tel que : Ť / ť, Ť /usr ť ou Ť /var ť) mais vous n'avez\n"
-"pas ŕ reformater les partitions de données que vous voulez garder,\n"
-"habituellement Ť /home ť.\n"
-"\n"
-"Restez prudent au moment de sélectionner les partitions. Une fois formatée,\n"
-"toutes les données contenues sur les partitions sélectionnées seront\n"
-"détruites et il sera impossible de les récupérer.\n"
-"\n"
-"Cliquez sur Ť OK ť lorsque vous ętre pręt ŕ formater vos partitions.\n"
-"\n"
-"Cliquez sur Ť Annuler ť si vous voulez choisir d'autres partitions pour\n"
-"votre installation.\n"
-"\n"
-"Cliquez sur Ť Avancé ť, si vous désirez choisir les partitions qui seront\n"
-"vérifiées pour des secteurs corrompus."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Votre nouveau systčme Mandrake Linux est maintenant en cours d'installation. Selon le\n"
-"nombre de paquetages ŕ installer et la puissance de votre ordinateur, cette\n"
-"opération peut prendre de quelques minutes ŕ quelques heures."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-"Au moment oů vous ętes en train d'installer Mandrake Linux, il est possible que certains\n"
-"paquetages aient été mis ŕ jour depuis la sortie du produit. Des bogues ont\n"
-"pu ętre corrigés, et des problčmes de sécurité résolus. Pour vous permettre\n"
-"de bénéficier de ces mises ŕ jour, il vous est maintenant proposé de les\n"
-"télé-charger sur Internet. Choisissez Ť Oui ť si vous avez une connexion\n"
-"Internet, ou Ť Non ť si vous préférez installer les mises ŕ jour plus tard.\n"
-"\n"
-"En choisissant Ť Oui ť, la liste des sites depuis lesquels les mises ŕ\n"
-"jours peuvent ętre télé-chargées est affichée. Choisissez le site le plus\n"
-"proche. Puis un arbre de choix des paquetages apparaît: vérifiez la\n"
-"sélection, puis cliquez sur Ť Installer ť pour télé-charger et installer\n"
-"les mises ŕ jour sélectionnées, ou Ť Annuler ť pour abandonner."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Avant d'aller plus loin, il est fortement recommandé de lire attentivement\n"
-"les termes et conditions d'utilisations de la licence. Celle-ci régit\n"
-"l'ensemble de la distribution Mandrake Linux. Si, pour une raison ou une\n"
-"autre, vous n'acceptez pas ces conditions, cliquez sur Ť Refuser ť.\n"
-"L'installation sera alors immédiatement interrompue. Pour continuer,\n"
-"cliquez sur Ť Accepter ť."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"Ŕ cette étape, vous devrez déterminer le niveau de sécurité requis par\n"
-"votre systčme. Le niveau de sécurité requis se détermine en fonction de\n"
-"l'exposition du systčme ŕ d'autres utilisateurs (s'il est connecté\n"
-"directement sur Internet par exemple) et selon le niveau de sensibilité de\n"
-"l'information contenu dans le systčme (des numéros de carte de crédit par\n"
-"exemple). Sachez que, de maničre générale, plus la sécurité d'un systčme\n"
-"est élevée, plus il est complexe ŕ opérer. Référez-vous au chapitre\n"
-"Ť msec ť du Ť Manuel de référence ť pour obtenir plus d'informations sur\n"
-"les niveaux de sécurité.\n"
-"\n"
-"Si vous ne savez pas quel niveau choisir, gardez la sélection par défaut."
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"A cette étape, vous devez choisir quelles partitions seront utilisées pour\n"
-"l'installation de votre systčme Mandrake Linux. Si des partitions ont déjŕ\n"
-"été définies, soit par une installation précédente de GNU/Linux soit grace\n"
-"ŕ un autre outil de partitionnement, vous pouvez les utiliser.\n"
-"Sinon, de nouvelles partitions doivent ętre définies.\n"
-"\n"
-"Pour ce faire, vous devez d'abord sélectionner un disque dur. Vous pouvez\n"
-"ainsi cliquer sur Ť hda ť pour choisir le premier disque IDE (primary "
-"master),\n"
-"Ť hdb ť pour le deuxičme disque IDE (primary slave), Ť sda ť pour le \n"
-"premier disque SCSI, Ť sdb ť pour le second, etc.\n"
-"\n"
-"Pour partitionner le disque sélectionné, vous pouvez utiliser ces options :\n"
-"\n"
-"- Ť Supprimer toutes les partitions ť : efface toutes les partitions du\n"
-"disque choisi. \n"
-"\n"
-"- Ť Partitionnement automatique ť : crée automatiquement les partitions\n"
-"Ext2 et Swap dans l'espace libre du disque. \n"
-"\n"
-"- Ť Davantage ť : donne accčs ŕ des fonctionnalités supplémentaires. \n"
-"\n"
-"- Ť Sauvegarder la table des partitions... ť : sauve la table des "
-"partitions\n"
-" sur une disquette, ce qui est fortement recommandé. Cela peut ętre\n"
-"trčs utile pour la restaurer si elle est endommagée. \n"
-"\n"
-"- Ť Charger une table des partitions... ť : permet de restaurer une table\n"
-"des partitions ŕ partir d'une disquette.\n"
-"\n"
-"- Ť Deviner automatiquement la table des partitions ť : si votre table des\n"
-"partitions est endommagée, vous pouvez essayer de la récuperer \n"
-"automatiquement grace ŕ cette option. Soyez prudent et rappelez-vous\n"
-"que cela peut échouer.\n"
-"\n"
-"- Ť Relire la table des partitions ť : annule tous les changements et \n"
-"recharge votre table des partitions initiale.\n"
-"\n"
-"- Ť Auto-montage des périphériques amovibles ť : désélectionner cette\n"
-"option obligera les utilisateurs ŕ monter et démonter manuellement les\n"
-"périphériques amovibles tels que les disquettes ou cédéroms.\n"
-"\n"
-"- Ť Assistant ť : ŕ utiliser si vous n'avez pas une bonne connaissance\n"
-"du partitionnement.\n"
-"\n"
-"- Ť État précédent ť : pour annuler vos derničres modifications.\n"
-"\n"
-"- Ť Passer en mode expert ť : permet des actions supplémentaires\n"
-"(Type de partition, options, formatage), et donne plus d'informations.\n"
-"\n"
-"- Ť Terminer ť : enregistre physiquement vos changements sur le disque.\n"
-"\n"
-"Note : vous pouvez atteindre les options grace au clavier, en utilisant la\n"
-"touche <Tab> et les flčches haut/bas.\n"
-"Quand une partition est sélectionnée, vous pouvez utiliser :\n"
-"- <Ctrl-C> pour créer une nouvelle partition lorsque une partition vide\n"
-"est sélectionnée. \n"
-"- <Ctrl-D> pour effacer une partition. \n"
-"- <Ctrl-M> pour attribuer un point de montage ŕ la partition.\n"
-"\n"
-"Pour obtenir des informations sur les différents systčmes de fichiers\n"
-"disponibles, vous pouvez lire le chapitre ext2fs du Manuel de Référence.\n"
-"\n"
-"S vous installez une machine ŕ base de PowerPC (Mac), vous devrez\n"
-"créer une petite partition d'amorçage (bootstrap) de type HFS d'au moins\n"
-"1 Mo, qui sera utilisé par le programme d'amorçage Ť yaboot ť. Si vous \n"
-"optez pour une partition un peu plus grande, disons 50 Mo, vous pouvez\n"
-"l'utiliser pour stocker un noyau additionnel et des images ramdisk pour\n"
-" des situations de démarrage de secours."
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Plus d'une partition DOS/Windows ont été détectées sur votre disque dur.\n"
-"Veuillez choisir celle que vous désirez redimensionner pour installer votre\n"
-"nouveau systčme d'exploitation Mandrake Linux.\n"
-"\n"
-"Pour information, chaque partition est décrite comme suit :\n"
-"Ť Nom Linux ť, Ť Nom Windows ť, Ť Capacité ť.\n"
-"\n"
-"Le champ Ť Nom linux  ť est codé comme suit : Ť type du disque dur ť,\n"
-"Ť numéro du disque dur ť, Ť numéro de la partition ť (par exemple,\n"
-"Ť hda1 ť).\n"
-"\n"
-"Le champ Ť type du disque dur ť est Ť hd ť si votre disque dur\n"
-"est un disque dur IDE ou Ť sd ť s'il s'agit d'un disque SCSI.\n"
-"\n"
-"Avec un disque dur IDE,\n"
-" * Ť a ť signifie Ť disque maître sur le premier port IDE ť,\n"
-" * Ť b ť signifie Ť disque esclave sur le premier port IDE ť,\n"
-" * Ť c ť signifie Ť disque maître sur le second port IDE ť,\n"
-" * Ť d ť signifie Ť disque esclave sur le second port IDE ť.\n"
-"\n"
-"Avec un disque dur SCSI, un Ť a ť signifie Ť premier disque dur ť,\n"
-"Ť b ť signifie Ť second disque dur ť, etc. dans l'ordre des IDs SCSIť\n"
-"\n"
-"Le champ Ť Nom Windows ť correspond ŕ la lettre identifiant votre disque\n"
-"dur sous DOS/Windows (le premier disque (ou la premičre partition)\n"
-"est appelé Ť C: ť)."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Veuillez patienter. Cette opération peut prendre plusieurs minutes."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"DrakX doit maintenant savoir quel type d'installation vous désirez\n"
-"réaliser. Deux types d'installations sont proposés: Par défaut (Ť \n"
-"Recommandée ť), qui limite le nombre de questions ŕ l'utilisateur au\n"
-"minimum ou Ť Expert ť qui vous permet de sélectionner individuellement\n"
-"chacune des composantes ŕ installer. Également, on vous propose de faire\n"
-"une Ť Installation ť ou une Ť Mise ŕ jour ť d'un systčme existant:\n"
-"\n"
-" * Ť Installation ť: balaye l'ancien systčme. En fait, selon ce que votre\n"
-"machine comporte, vous pourrez garder intacte certaines des anciennes\n"
-"partition (Linux ou autres);\n"
-"\n"
-" * Ť Mise ŕ jour ť: cette classe d'installation permet de simplement mettre\n"
-"ŕ jours les paquetages qui composent votre systčme GNU/Linux. Elle conserve les\n"
-"partitions existantes, ainsi que la configuration des utilisateurs. Toutes\n"
-"les autres étapes de l'installation sont accessibles en comparaison avec\n"
-"une installation classique;\n"
-"\n"
-" * Ť Mise ŕ jour des paquetages uniquement ť: Cette nouvelle classe\n"
-"d'installation permet de mettre ŕ jour un systčme Mandrake Linux existant, tout en gardant\n"
-"sa configuration inchangée. L'ajout de nouveaux paquetages durant la mise ŕ\n"
-"jour est cependant possible.\n"
-"\n"
-"La mise ŕ jour devrait fonctionner correctement pour les systčmes Mandrake Linux ŕ partir\n"
-"de la version Ť 8.1 ť.\n"
-"\n"
-"Selon votre niveau d'expertise avec les systčmes d'exploitations GNU/Linux, il faut\n"
-"choisir l'un des deux types d'installations suivants:\n"
-"\n"
-" * Ť Recommandée ť: choisissez cette option si vous n'avez jamais installé\n"
-"de systčme d'exploitation GNU/Linux. C'est la méthode la plus facile, la plupart des\n"
-"choix ont déjŕ été fait pour vous.\n"
-"\n"
-" * Expert: si vous avez une bonne connaissance de GNU/Linux, vous pouvez choisir ce\n"
-"type d'installation. Cette méthode vous permettra de personnaliser\n"
-"l'ensemble des composantes de votre systčme. Ces questions peuvent s'avérer\n"
-"complexes, particuličrement en matičre de partitionnement et du choix des\n"
-"paquetages installés. En conséquence, il n'est pas recommandé de s'y\n"
-"aventurer sans de bonnes connaissances au préalable."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Normalement, DrakX sélectionne le clavier approprié en fonction de la\n"
-"langue choisie et vous ne devriez pas voir cette étape. Cela dit, il est\n"
-"possible que vous ayez un clavier ne correspondant pas exactement ŕ votre\n"
-"langue d'utilisation. Par exemple, si vous habitez le Québec et parlez le\n"
-"français et l'anglais, vous pouvez vouloir avoir votre clavier anglais pour\n"
-"les tâches d'administration systčme et votre clavier français pour écrire\n"
-"de la poésie. Dans ces cas, il vous faudra revenir ŕ cette étape\n"
-"d'installation et sélectionner un autre clavier ŕ partir de la liste.\n"
-"\n"
-"Vous n'avez qu'a choisir la disposition de clavier qui vous convient.\n"
-"\n"
-"Cliquez sur Ť Davantage ť pour voir toutes les options proposées."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Veuillez choisir votre langue de communication. Celle-ci sera utilisée\n"
-"durant le processus d'installation, ainsi que durant les mises ŕ jour de\n"
-"votre systčme.\n"
-"\n"
-"En cliquant sur Ť Avancé ť, le programme vous proposera également d'autres\n"
-"langues pouvant ętre installées sur votre station de travail. En\n"
-"choisissant d'autres langues, le programme vous installera toute la\n"
-"documentation et les applications nécessaires ŕ l'utilisation de cette\n"
-"autre langue. Par exemple, si vous prévoyez d'accueillir des utilisateurs\n"
-"d'Espagne sur votre serveur, choisissez l'anglais comme langue principale,\n"
-"et, dans la section avancée, cliquez sur l'étoile grise correspondant ŕ\n"
-"Spanish|Spain.\n"
-"\n"
-"Sachez que plusieurs langues peuvent ętre installées. Une fois votre\n"
-"sélection complčte terminée, cliquez sur Ť OK ť pour continuer."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"DrakX détecte généralement le nombre de boutons de votre souris. Sinon, il\n"
-"prend pour acquis que vous avez une souris ŕ deux boutons et configurera\n"
-"l'émulation du troisičme bouton. Également, DrakX saura automatiquement si\n"
-"vous avez une souris PS/2, série ou USB.\n"
-"\n"
-"Si vous désirez installer une souris différente, veuillez la sélectionner ŕ\n"
-"partir de la liste qui vous est proposée.\n"
-"\n"
-"Si vous sélectionnez une souris différente de celle choisie par défaut,\n"
-"DrakX vous présentera un écran de test. Utilisez les boutons et la roue\n"
-"pour vous assurer que tout fonctionne correctement. Si votre souris ne\n"
-"fonctionne pas normalement, appuyer sur la barre d'espacement ou [Entrée]\n"
-"ou encore Ť Annuler ť, puis, sélectionner une autre souris."
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Veuillez sélectionner le bon port. Par exemple, le port Ť COM1 ť de Windows\n"
-" est appelé Ť ttyS0 ť sous GNU-Linux."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"Vous avez ŕ prendre ici une décision cruciale pour la sécurité de votre\n"
-"systčme. L'utilisateur Ť root ť est l'administrateur du systčme qui a tous\n"
-"les droits d'accčs aux fichiers de configuration, etc. Il est donc\n"
-"impératif de choisir un mot de passe difficile ŕ deviner (pensez aux\n"
-"systčmes prévus ŕ cet effet qui anticipent les combinaisons communes des\n"
-"utilisateurs). DrakX vous avertira si le mot de passe entré est trop facile\n"
-"ŕ deviner. Comme vous pouvez le voir, il est également possible de ne pas\n"
-"entrer de mot de passe. Nous déconseillons fortement cette pratique. Comme\n"
-"l'erreur est humaine, un utilisateur avec tous les droits peut tout\n"
-"détruire sur votre systčme, c'est pourquoi le mot de passe doit agir comme\n"
-"barričre ŕ l'entrée.\n"
-"\n"
-"Le mot de passe choisi devrait contenir au moins 8 caractčres\n"
-"alphanumériques. Ne jamais écrire un mot de passe, forcez-vous ŕ vous en\n"
-"souvenir par coeur. Il faut donc ménager accessibilité et mémoire, donc un\n"
-"mot de passe de 30 caractčres est presque impossible ŕ mémoriser.\n"
-"\n"
-"Afin d'éviter les regards indiscrets, le mot de passe n'apparaîtra pas ŕ\n"
-"l'écran. Il vous faudra donc l'inscrire deux fois afin d'éviter les erreurs\n"
-"de frappe. Évidemment, si vous faites deux fois la męme erreur, celle-ci\n"
-"sera sauvegardée et vous devrez la reproduire afin d'accéder ŕ votre\n"
-"systčme pour la premičre fois.\n"
-"\n"
-"En mode expert, on vous demandera si vous comptez vous connecter sur un\n"
-"serveur d'authentification, tel que NIS ou LDAP. Si votre réseau utilise un\n"
-"de ces protocoles, il faut le sélectionner. Si vous n'en avez aucune idée,\n"
-"demandez ŕ votre administrateur de réseau.\n"
-"\n"
-"Si votre ordinateur n'est pas connecté sur un réseau administré, vous devez\n"
-"choisir Ť Fichiers Locaux ť pour l'authentification."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"LILO et grub sont deux programmes d'amorce pour GNU/Linux. Cette étape est normalement\n"
-"complčtement automatique. En fait, DrakX analyse le secteur de démarrage\n"
-"(master boot record) et agit en fonction de ce qu'il peut y lire:\n"
-"\n"
-" * Si un secteur de démarrage Windows est détecté, il va ętre remplacer par\n"
-"LILO/GRUB. Donc, vous serez capable de démarrer et tout autre systčme\n"
-"d'exploitation.\n"
-"\n"
-" * si GRUB ou LILO est détecté, il sera remplacé par la nouvelle version;\n"
-"\n"
-"En cas de doute, DrakX affiche différentes options.\n"
-"\n"
-" * Ť Programme d'amorçage ŕ utiliser ť vous propose trois choix:\n"
-"\n"
-" * Ť GRUB ť: si vous préférer GRUB (menu texte).\n"
-"\n"
-" * Ť LILO en mode graphique ť: si vous préférez l'interface graphique.\n"
-"\n"
-" * Ť LILO en mode texte ť: si vous préférez la version texte de LILO.\n"
-"\n"
-" * Ť Périphériques de démarrage ť: dans la plupart des cas, vous n'aurez pas\n"
-"ŕ changer le disque par défaut (Ť /dev/hda ť, mais si vous le désirez, le\n"
-"programme d'amorce peut ętre installé sur un second disque, Ť /dev/hdb ť,\n"
-"ou męme sur une disquette, Ť /dev/fd0 ť.\n"
-"\n"
-" * Ť Délais avant l'activation du choix par défaut ť: au redémarrage de\n"
-"l'ordinateur, il s'agit du temps accordé ŕ l'utilisateur pour démarrer un\n"
-"autre systčme d'exploitation.\n"
-"\n"
-"!! Prenez garde, si vous décidez de ne pas installer de programme d'amorce\n"
-"(en cliquant sur Ť Annuler ť), vous devez vous assurez d'avoir une méthode\n"
-"pour démarrer le systčme. Aussi, assurez vous de bien savoir ce que vous\n"
-"faites si vous modifiez les options. !!\n"
-"\n"
-"En cliquant sur Ť Avancée ť, vous aurez accčs ŕ plusieurs autres options de\n"
-"configuration. Sachez que celles-ci sont réservées aux experts en la\n"
-"matičre.\n"
-"\n"
-"Si vous avez d'autres systčmes d'exploitation installés sur votre\n"
-"ordinateur, ils seront automatiquement détectés et ajout ŕ vos menus de\n"
-"démarrage. Ŕ cette étape, vous pouvez décider de préciser ces options. En\n"
-"double-cliquant sur une entrée existante vous pourrez la paramétrer ŕ votre\n"
-"guise, ou l'enlever. Ť Ajouter ť permet de créer de nouvelles entrées, et\n"
-"Ť terminer ť vous conduit ŕ la prochaine étape d'installation."
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (LInux LOader) et grub sont des programme d'amorcage: ils sont\n"
-"capables de démarrer GNU/Linux ou n'importe quel autre systčme\n"
-"d'exploitation présent sur votre machine. Normalement, ces autres\n"
-"systčmes sont censés ętre correctement détectés et installés. Si ce\n"
-"n'est pas le cas, vous pouvez ajouter manuellement une nouvelle entrée \n"
-"via cet écran. Veillez ŕ choisir les paramčtres corrects.\n"
-"\n"
-"Vous pouvez également supprimer l'accčs ŕ ces autres systčmes en\n"
-"détruisant les entrées correspondantes. Mais vous aurez alors besoin\n"
-"d'une disquette de démarrage afin de lancer ces autres systčmes!"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Vous devez maintenant choisir oů placer le programme d'amorçage, LILO ou "
-"Grub,\n"
-"nécessaire au démarrage de GNU/Linux.\n"
-"\n"
-"Ŕ moins de savoir exactement ce que vous faites, choisissez\n"
-"toujours Ť Premier secteur du disque (MBR) ť."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-"Il s'agit ici de choisir un gestionnaire d'impression pour votre "
-"ordinateur.\n"
-"Les autres systčmes peuvent n'en proposer qu'un, Mandrake vous en offre "
-"trois :\n"
-"\n"
-"Ť PDQ ť (Print Don't Queue), vous suffira si votre imprimante est\n"
-"reliée directement ŕ votre ordinateur, et que vous ne voulez pas faire\n"
-"d'impression en réseau. C'est une solution fiable, sűre, et simple pour un\n"
-"débutant ŕ GNU/Linux. PDQ peut quand męme gérer certains cas simples\n"
-"d'imprimantes en réseau. Vous pourrez de toute façon modifier votre choix\n"
-"aprčs installation en lançant PrinterDrake en mode expert.\n"
-"\n"
-"Ť CUPS ť (Common Unix Printing System) est excellent ŕ la fois pour\n"
-"l'impression locale et l'impression réseau. Il est simple d'utilisation et "
-"peut\n"
-"agir aussi bien comme serveur que comme client pour l'ancien systčme\n"
-"d'impression LPD. Il est donc rétro-compatible. Il peut faire beaucoup de\n"
-"choses, mais la configuration minimale est aussi simple que pour PDQ,\n"
-"et il possčde une interface graphique pour l'impression et ses options.\n"
-"Si vous avez besoin d'émuler un serveur LPD, vous devez activer le\n"
-"service Ť cups-lpd ť.\n"
-"\n"
-"Ť LPRng ť (Line Printer New Generation) fait approximativement\n"
-"la męme chose que les deux autres, mais il peut en plus imprimer\n"
-"ŕ travers un réseau Novell Network car il supporte le protocole IPX,\n"
-"et il peut également diriger une impression vers une commande shell.\n"
-"Si vous n'avez pas besoin de ces deux fonctionnalités, CUPS est\n"
-"préférable car plus simple, et plus performant pour les réseaux."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX détecte maintenant tous les périphériques IDE présents sur votre\n"
-"systčme. Également, DrakX recherchera les périphériques SCSI. Finalement,\n"
-"selon les composantes détectées, DrakX installera tous les pilotes\n"
-"nécessaires ŕ son fonctionnement.\n"
-"\n"
-"Compte tenu de la vaste gamme de périphériques disponibles sur le marché,\n"
-"dans certain cas la détection de matériel ne fonctionnera pas. Dans ce cas,\n"
-"DrakX vous demandera de confirmer si des composantes SCSI sont présentes\n"
-"sur votre systčme. Cliquez sur Ť Oui ť si vous ętes certain d'avoir un\n"
-"périphérique SCSI sur votre systčme. DrakX vous présentera alors une liste\n"
-"de carte SCSI disponibles. Sélectionnez la vôtre. Évidement, cliquez sur\n"
-"Ť Non ť, si vous n'en avez pas. Si vous n'ętes pas certain, cliquez sur\n"
-"Ť Voir les informations sur le matériel ť, puis sur Ť OK ť. Vérifiez la\n"
-"liste du matériel, puis cliquez sur Ť OK ť pour retourner ŕ la question\n"
-"concernant les périphériques SCSI.\n"
-"\n"
-"Si vous devez spécifier votre carte SCSI manuellement, DrakX vous demandera\n"
-"de confirmer les options du périphérique. Vous devriez permettre ŕ DrakX de\n"
-"vérifier automatiquement votre carte pour les options nécessaires ŕ\n"
-"déterminer.\n"
-"\n"
-"Il peut arriver que DrakX soit incapable de vérifier les options\n"
-"nécessaires. Dans ce cas, vous devrez les déterminer manuellement.\n"
-"Consultez le guide d'utilisation (Chapitre 3, section \"Obtenir des\n"
-"informations sur votre matériel\") pour quelques astuces pour retrouver les\n"
-"paramčtres nécessaires dans la documentation de vos périphériques, sur le\n"
-"site du fabricant (si vous avez un accčs ŕ Internet) ou ŕ partir des menus\n"
-"de Microsoft Windows (si vous utilisiez ce périphérique avec Windows)."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"Vous pouvez ajouter des entrées supplémentaires dans Ť yaboot ť, soit\n"
-"pour démarrer un autre systčme d'exploitation, soit pour des noyaux de\n"
-"secours.\n"
-"\n"
-"Pour les autres systčmes, l'entrée consiste en un label et la partition "
-"racine.\n"
-"\n"
-"Pour Linux, voici les options possibles :\n"
-"\n"
-"- label : le nom que vous devrez taper au message d'invite de yaboot pour\n"
-"activer cette option d'amorçage. \n"
-"\n"
-"- racine : le périphérique racine ou Ť / ť pour votre installation Linux. \n"
-"\n"
-"- options passées au noyau : sur les matériels Apple, des options sont\n"
-" souvent transmises au noyau pour l'initialisation de la carte graphique,\n"
-"ou pour activer l'émulation (au clavier) des deux boutons qui manquent\n"
-"souvent aux souris d'Apple. Voici quelques exemples : \n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-"- Fichier RamDisk : cette option peut ętre utilisée pour charger des\n"
-"modules avant que le périphérique d'amorçage ne soit disponible, ou\n"
-"pour charger une image ramdisk pour un démarrage de secours.\n"
-"\n"
-"- Taille du RamDisk : la taille par défaut est généralement de 4096 octets.\n"
-"Si vous voulez une taille plus grande, utilisez cette option.\n"
-"- Préactivé en écriture : normalement, la partition racine est initialement\n"
-"montée en mode lecture seulement, pour vérifier le systčme de fichier\n"
-"avant qu'il ne soit activé. Avec cette option, vous pouvez autoriser la\n"
-"partition racine ŕ ętre montée directement en mode écriture.\n"
-"\n"
-"- NoVideo : si la carte graphique devait poser trop de problčmes, vous \n"
-"pouvez activer cette option pour démarrer en mode Ť framebuffer ť natif.\n"
-"\n"
-"- Defaut : sélectionne cette entrée comme choix par défaut, activé en \n"
-"pressant juste <ENTREE> au message d'invite de Ť yaboot ť. C'est cette\n"
-"entrée qui sera alors précédée d'un Ť * ť, si vous pressez <Tab> pour voir\n"
-"la liste des possibilités."
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Ť Yaboot ť est un programme d'amorçage pour les MacIntosh dotés de\n"
-"l'architecture NewWorld (iMac, G3, G4, PowerBook G3 Series 99, iBook, etc.)\n"
-"Il est capable de faire démarrer GNU/Linux, MacOS, ou MacOSX, si\n"
-"ces systčmes sont présents sur votre ordinateur. Normalement, les\n"
-"systčmes d'exploitation déjŕ présents devraient avoir été détectés.\n"
-"Si ce n'est pas le cas, vous pouvez ajouter manuellement l'entrée manquante\n"
-"sur cet écran. Veuillez faire attention de choisir les bons paramčtres.\n"
-"\n"
-"Les principales options de Yaboot sont :\n"
-"\n"
-"- Message de démarrage : un simple texte, affiché avant l'amorçage.\n"
-"\n"
-"- Périphérique d'amorçage : indique oů vous souhaitez installer le\n"
-"programme d'amorçage. Généralement, vous aurez configuré auparavant\n"
-"une partition d'amorçage (bootstrap) pour contenir ces informations.\n"
-"\n"
-"- Délai de l'OpenFirmware : ŕ la différence de LILO, il y a deux\n"
-"délais disponibles avec Yaboot. Pendant le premier (mesuré en secondes),\n"
-"vous pouvez choisir entre CD, OF, MacOS, et Linux.\n"
-"\n"
-"- Délai d'amorçage du noyau : ce délai est similaire ŕ celui de\n"
-"LILO. Aprčs avoir sélectionné Linux, vous aurez ce délai (en dixičmes\n"
-"de seconde) avant d'accepter les paramčtres noyau par défaut.\n"
-"\n"
-"- Autoriser l'amorçage sur CD ? : si vous activez cette option, vous\n"
-"pourrez choisir 'C', pour le CD, ŕ la premičre invite d'amorçage.\n"
-"\n"
-"- Autoriser l'amorçage sur l'OF ? : si vous activez cette option, vous\n"
-"pourrez choisir 'N' pour l'OpenFirmware ŕ la premičre invite d'amorçage.\n"
-"\n"
-"- choix par défaut : vous pouvez sélectionner quel systčme démarrera par\n"
-"défaut aprčs expiration du délai de l'Open Firmware."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"On vous présente ici les différents paramčtres de votre systčme. Selon le\n"
-"matériel installé, certaines entrées seront présentes et d'autres pas.\n"
-"\n"
-" * Ť Souris ť: pour vérifier la configuration actuelle de la souris. "
-"Cliquez\n"
-"sur le bouton pour modifier les options.\n"
-"\n"
-" * Ť Clavier ť: vérifie la configuration choisie pour le clavier. Cliquez\n"
-"sur le bouton pour la modifier.\n"
-"\n"
-" * Ť Fuseau horaire ť: DrakX, par défaut, essaie de trouver le fuseau\n"
-"horaire dans lequel vous ętes. Encore une fois, il est possible que vous ne\n"
-"soyez pas dans le fuseau horaire qui vous convient. Donc, vous aurez\n"
-"peut-ętre ŕ cliquer sur le bouton Ť fuseau horaire ť pour identifier\n"
-"précisément l'heure qui doit apparaître dans vos horloges.\n"
-"\n"
-" * Ť Imprimante ť: en cliquant sur Ť Pas d'imprimante ť, l'outil de\n"
-"configuration sera démarré.\n"
-"\n"
-" * Ť Carte son ť: si une carte son a été détectée, elle apparaîtra ici.\n"
-"Aucune modification n'est possible ŕ cette étape.\n"
-"\n"
-" * Ť Carte TV ť: si une carte d'entrée/sortie vidéo (carte TV) a été\n"
-"détectée, elle apparaîtra ici. Aucune modification possible ŕ cette étape.\n"
-"\n"
-" * Ť Carte ISDN ť: si une carte ISDN est détectée, elle apparaîtra ici. "
-"Vous\n"
-"pouvez cliquer sur le bouton pour en modifier les paramčtres."
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Choisissez le disque dur que vous souhaitez effacer pour installer votre\n"
-"nouvelle partition Mandrake Linux. Soyez prudent, toutes les données\n"
-"présentes sur ce disque seront perdues et ne seront pas récupérables !"
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Cliquez sur Ť OK ť seulement si vous désirez supprimer toutes les données\n"
-"et partitions présentes sur ce disque dur. Soyez prudent. Aprčs avoir "
-"cliqué\n"
-"sur Ť OK ť, vous n'aurez aucun moyen de récupérer ces données et\n"
-"partitions, y compris celles de Windows."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Impossible d'accéder aux modules correspondant ŕ votre noyau (le fichier %s "
-"est manquant), cela veut généralement dire que votre disquette de boot est "
-"désynchronisée par rapport ŕ votre medium d'Installation (veuillez créer une "
-"disquette de boot plus récente)"
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "Vous devez aussi formater %s"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Vous avez sélectionné le(s) serveur(s) suivant(s) : %s\n"
-"\n"
-"\n"
-"Ces serveurs seront activés par défaut. Ils n'ont pas de trou\n"
-"de sécurité connu, mais de nouveaux problčmes peuvent ętre\n"
-"découverts par la suite. Dans ce cas, vous devrez vous assurer\n"
-"de mettre ŕ jour vos serveurs le plus rapidement possible.\n"
-"\n"
-"\n"
-"Confirmez vous l'installation de ces serveurs ?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "On ne peut pas utiliser l'option broadcast sans domaine NIS"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Insérez une disquette formatée en FAT (format DOS/Windows) %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Cette disquette n'est pas au format DOS/Windows"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Pour utiliser cette sauvegarde de sélection des paquetages, veuillez "
-"redémarrer l'installation avec la commande Ť linux defcfg=floppy ť."
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Erreur lors de la lecture du fichier %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Certains périphériques présents sur votre systčme nécessitent des pilotes\n"
-"Ť propriétaires ť pour pouvoir fonctionner. Vous pouvez trouver plus\n"
-"d'informations les concernant ici : %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Vous devez avoir une partition racine.\n"
-"Pour la définir, créez une partition (ou choisissez-en une déjŕ\n"
-"existante) puis cliquez sur Ť Point de montage ť et choisissez Ť / ť."
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Vous devez créer une partition d'échange (swap)"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Vous n'avez pas de partition d'échange (swap).\n"
-"\n"
-"Désirez-vous tout de męme continuer ?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Vous devez disposer d'une partition FAT montée en /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Utiliser l'espace libre"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Pas assez d'espace libre pour créer de nouvelles partitions"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Utiliser une partition existante"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Pas de partition existante ŕ utiliser"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Utiliser la partition Windows pour le loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Quelle partition désirez-vous utiliser pour Linux4Win ?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Choix des tailles"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Taille de la partition racine en Mo : "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Taille de la partition d'échange (swap) en Mo : "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Utiliser l'espace libre sur la partition de Windows"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Quelle partition désirez-vous redimensionner ?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Calcul des limites du systčme de fichiers de Windows en cours"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Le programme de redimensionnement des partitions FAT ne peut gérer votre\n"
-"partition. L'erreur suivante est survenue : %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Votre partition FAT est trop fragmentée. Redémarrez sous Windows\n"
-"et lancez le programme de défragmentation Ť defrag ť,\n"
-"puis relancez l'installation de Mandrake Linux."
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"ATTENTION !\n"
-"\n"
-"La taille de votre partition Windows va maintenant ętre réduite.\n"
-"\n"
-"Soyez prudent : cette opération est dangereuse. Si ce n'est pas déjŕ\n"
-"fait, vous devriez tout d'abord sauvegarder vos données et lancer les\n"
-"programmes Ť scandisk ť et Ť defrag ť (fournis avec Windows)\n"
-"sur cette partition.\n"
-"\n"
-"Si vous ętes sűr de vous, cliquez sur OK."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Quelle taille désirez-vous allouer ŕ Windows ?"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "partition %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Le redimensionnement de la partition FAT a échoué: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Il n'y a aucune partition FAT ŕ redimensionner ou ŕ utiliser en tant que "
-"loopback (ou trop peu d'espace est disponible)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Effacer tout le disque"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Supprimer Microsoft Windows"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"Vous possédez plus d'un disque dur.\n"
-"Sur lequel désirez vous installer Linux ?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"TOUTES les partitions et les données présentes sur le disque %s seront "
-"perdues"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Partitionnement personnalisé"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Utiliser fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Vous pouvez maintenant partitionner %s.\n"
-"\n"
-"Lorsque vous aurez terminé, n'oubliez pas d'enregistrer vos\n"
-"modifications en appuyant sur la touche Ť w ť."
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Utiliser l'espace libre sur la partition de Windows"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Pas de place disponible pour l'installation"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr ""
-"L'assistant de partitionnement de DrakX\n"
-"a trouvé les solutions suivantes :"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Le partitionnement a échoué : %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Démarrage de l'interface réseau"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Arręt de l'interface réseau"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Une erreur est survenue et semble difficile ŕ résoudre correctement.\n"
-"Vous pouvez continuer, mais ŕ vos risques et périls."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Point de montage en double : %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Quelques paquetages importants n'ont pas été correctement installés. Il se\n"
-"peut que le lecteur de cédérom ou le cédérom lui-męme soit défectueux. Vous\n"
-"pouvez vous assurer du bon état de ce dernier en exécutant la commande "
-"suivante\n"
-"sur un ordinateur fonctionnant correctement : Ť rmp -qpl Mandrake/RPMS/*."
-"rpm ť\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Bienvenue sur %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Aucun lecteur de disquette disponible"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Démarrage de l'étape Ť %s ť\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Votre ordinateur possčde peu de mémoire. Vous aurez peut-ętre quelques\n"
-"problčmes pour installer Mandrake Linux. Si cela se produit, vous pouvez\n"
-"essayer de procéder ŕ une installation en mode texte. Pour cela, appuyez\n"
-"sur la touche Ť F1 ť aprčs l'amorçage sur cédérom puis entrez Ť text ť."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Classe d'installation"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Veuillez choisir une des classes d'installation ci-dessous :"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"La taille totale pour les groupes sélectionnés est approximativement de %d "
-"Mo.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Si vous voulez réduire la taille de votre installation,\n"
-"choisissez le pourcentage de paquetages que vous souhaitez installer.\n"
-"\n"
-"Un faible pourcentage ne conservera que les paquetages les plus importants.\n"
-"Un pourcentage de 100%% installera tous les paquetages sélectionnés."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Vous n'avez d'espace sur votre disque que pour %d%% de ces paquetages.\n"
-"\n"
-"Si vous souhaitez réduire encore la taille de l'installation,\n"
-"choisissez un pourcentage encore plus faible.\n"
-"\n"
-"Un faible pourcentage ne conserve que les paquetages les plus importants.\n"
-"Un pourcentage de %d%% installera le maximum possible de packages."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-"Vous pourrez affiner la sélection des paquetages lors de la prochaine étape."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Pourcentage de paquetages ŕ installer"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Sélection des groupes de paquetages"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Sélection individuelle des paquetages"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Taille totale : %d / %d Mo"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Mauvais paquetage"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Nom : %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Version : %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Taille : %d Ko\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Importance : %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Il n'y a pas assez de place pour installer ce paquetage"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Les paquetages suivants vont ętre installés"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Les paquetages suivants vont ętre désinstallés"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Vous ne pouvez pas sélectionner/désélectionner ce paquetage"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Ce paquetage est nécessaire, vous ne pouvez pas l'enlever."
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Vous ne pouvez pas désélectionner ce paquetage. Il est déjŕ installé."
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Ce paquetage doit ętre mis ŕ jour.\n"
-"Ętes-vous certain de vouloir le désélectionner ?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr ""
-"Vous ne pouvez pas désélectionner ce paquetage, il doit ętre mis ŕ jour."
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Montrer les paquetages sélectionnés automatiquement"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Installation"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Charger/Sauver sur disquette"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Mise-ŕ-jour de la sélection des paquetages"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Installation minimale"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Choisissez les paquetages que vous voulez installer"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Installation"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Estimation en cours"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Temps restant "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Veuillez patienter, préparation de l'installation..."
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d paquetages"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Installation du paquetage %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Accepter"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Refuser"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"--Changement de cédérom--\n"
-"\n"
-"Veuillez insérer le cédérom nommé Ť %s ť,\n"
-"puis cliquez sur Ť OK ť.\n"
-"\n"
-"Si vous ne le possédez pas, cliquez sur Ť Annuler ť."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Souhaitez-vous tout de męme continuer ?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Erreur lors du tri des paquetages :"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Erreur lors de l'installation du paquetage :"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Important\n"
-"\n"
-"Veuillez lire attentivement le présent document. En cas de désaccord \n"
-"avec l'un de ses termes vous n'ętes pas autorisé ŕ installer les cédéroms\n"
-"suivants. Dans ce cas, Cliquez sur Ť Refuser ť pour continuer \n"
-"l'installation sans ces médias.\n"
-"\n"
-"Certains composants logiciels contenus dans les prochains cédéroms \n"
-"ne sont pas soumis aux licences GPL ou similaires permettant la copie, \n"
-"la modification ou la redistribution. Chacun de ces composants logiciels \n"
-"est distribué sous les termes et conditions d'un accord de licence qui \n"
-"lui est propre. Veuillez vous y référer et vous y soumettre avant de les \n"
-"installer ou de les redistribuer. Généralement, ces licences n'autorisent\n"
-"pas la copie (autre qu'ŕ titre de sauvegarde), la redistribution, \n"
-"la décompilation, la désassemblage, l'ingénierie inverse ni la modification "
-"des\n"
-"Logiciels auxquels elles s'appliquent. Toute violation d'un des termes de la "
-"licence applicable entraîne généralement sa\n"
-"résiliation, sans préjudice de tous autres droits ou actions ŕ votre "
-"encontre.\n"
-"Ŕ moins que l'accord de licence ne vous l'y autorise, vous ne pouvez pas \n"
-"installer ces Logiciels sur plus d'une machine ni adapter les Logiciels \n"
-"pour une utilisation en réseau. Le cas échéant, veuillez contacter le \n"
-"distributeur du programme pour acquérir des licences additionnelles.\n"
-"La distribution ŕ des tiers de copies des Logiciels ou de la documentation\n"
-"qui les accompagne est généralement interdite.\n"
-"\n"
-"Tous les droits, titres et intéręt de ces Logiciels sont la propriété \n"
-"exclusive de leurs auteurs respectifs et sont protégés au titre des \n"
-"droits de propriété intellectuelle et de copyright applicables aux "
-"logiciels.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Une erreur est survenue"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "Désirez-vous vraiment quitter l'installation?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Licence"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Introduction\n"
-"\n"
-"Le systčme d'exploitation et les divers composants disponibles dans la \n"
-"distribution Mandrake Linux sont ci-aprčs dénommés les Ť Logiciels ť.\n"
-"Les Logiciels comprennent notamment, mais de façon non limitative,\n"
-"l'ensemble des programmes, procédés, rčgles et documentations \n"
-"relatifs au systčme d'exploitation et aux divers composants de la \n"
-"distribution Mandrake Linux.\n"
-"\n"
-"\n"
-"1. Licence\n"
-"\n"
-"Veuillez lire attentivement le présent document. Ce document constitue \n"
-"un contrat de licence entre vous (personne physique ou personne morale) et \n"
-"MandrakeSoft S.A. portant sur les Logiciels.\n"
-"Le fait d'installer, de reproduire ou d'utiliser les Logiciels de quelque \n"
-"maničre que ce soit indique que vous reconnaissez avoir préalablement eu \n"
-"connaissance et que vous acceptez de vous conformer aux termes et "
-"conditions \n"
-"du présent contrat de licence. En cas de désaccord avec le présent "
-"document \n"
-"vous n'ętes pas autorisé ŕ installer, reproduire et utiliser de quelque \n"
-"maničre que ce soit ce produit.\n"
-"Le contrat de licence sera résilié automatiquement et sans préavis dans le \n"
-"cas oů vous ne vous conformeriez pas aux dispositions du présent document. \n"
-"En cas de résiliation vous devrez immédiatement détruire tout exemplaire "
-"et \n"
-"toute copie de tous programmes et de toutes documentations qui constituent \n"
-"le systčme d'exploitation et les divers composants disponibles dans la \n"
-"distribution Mandrake Linux.\n"
-"\n"
-"\n"
-"2. Garantie et limitations de garantie\n"
-"\n"
-"Les Logiciels et la documentation qui les accompagne sont fournis en "
-"l'état \n"
-"et sans aucune garantie. MandrakeSoft S.A. décline toute responsabilité \n"
-"découlant d'un dommage direct, spécial, indirect ou accessoire, de quelque \n"
-"nature que ce soit, en relation avec l'utilisation des Logiciels, "
-"notamment \n"
-"et de façon non limitative, tout dommage entraîné par les pertes de \n"
-"bénéfices, interruptions d'activité, pertes d'informations commerciales ou \n"
-"autres pertes pécuniaires, ainsi que des éventuelles condamnations et \n"
-"indemnités devant ętre versées par suite d'une décision de justice, et ce \n"
-"męme si MandrakeSoft S.A. a été informée de la survenue ou de \n"
-"l'éventualité de tels dommages.\n"
-"\n"
-"AVERTISSEMENT QUANT Ŕ LA DÉTENTION OU L'UTILISATION DE LOGICIELS \n"
-"PROHIBÉS DANS CERTAINS PAYS \n"
-"\n"
-"En aucun cas, ni MandrakeSoft S.A. ni ses fournisseurs ne pourront ętre \n"
-"tenus responsable ŕ raison d'un préjudice spécial, direct, indirect ou \n"
-"accessoire, de quelque nature que ce soit (notamment et de façon non \n"
-"limitative les pertes de bénéfices, interruptions d'activité, pertes \n"
-"d'informations commerciales ou autres pertes pécuniaires, ainsi que \n"
-"des éventuelles condamnations et indemnités devant ętre versées par suite \n"
-"d'une décision de justice) qui ferait suite ŕ l'utilisation, la détention \n"
-"ou au simple téléchargement depuis l'un des sites de téléchargement de \n"
-"Mandrake Linux de logiciels prohibés par la législation ŕ laquelle vous \n"
-"ętes soumis. Cet avertissement concerne notamment certains logiciels de \n"
-"cryptographie fournis avec les Logiciels.\n"
-"\n"
-"\n"
-"3. Licence GPL et autres licences\n"
-"\n"
-"Les Logiciels sont constitués de modules logiciels créés par diverses \n"
-"personnes (physiques ou morales). Nombre d'entre eux sont distribués sous \n"
-"les termes de la Licence Publique Générale GNU (ci-aprčs dénommée Ť GPL ť)\n"
-"ou d'autres licences similaires. La plupart de ces licences vous "
-"permettent \n"
-"de copier, d'adapter ou de redistribuer les modules logiciels qu'elles \n"
-"régissent. Veuillez lire et agréer les termes et conditions des licences \n"
-"accompagnant chacun d'entre eux avant de les utiliser. Toute question \n"
-"concernant la licence d'un Logiciel est ŕ soumettre ŕ l'auteur (ou ŕ ses\n"
-"représentants) du Logiciel et non ŕ MandrakeSoft. \n"
-"Les programmes conçus par MandrakeSoft sont régis par la licence GPL. \n"
-"La documentation rédigée par MandrakeSoft fait l'objet d'une licence \n"
-"spécifique. Veuillez vous référez ŕ la documentation pour obtenir plus \n"
-"de précisions.\n"
-"\n"
-"\n"
-"4. Propriété intellectuelle\n"
-"\n"
-"Tous les droits, titres et intéręts des différents Logiciels sont la \n"
-"propriété exclusive de leurs auteurs respectifs et sont protégés au titre \n"
-"des droits de propriété intellectuelle et de copyright applicables aux "
-"Logiciels.\n"
-"Les marques \"Mandrake\" et \"Mandrake Linux\" ainsi que les \n"
-"logotypes associés sont déposés par MandrakeSoft S.A. \n"
-"\n"
-"\n"
-"5. Dispositions diverses\n"
-"\n"
-"Si une disposition de ce contrat de licence devait ętre déclarée nulle, \n"
-"illégale ou inapplicable par un tribunal compétent, cette disposition sera \n"
-"exclue du présent contrat. Vous continuerez ŕ ętre liés aux autres \n"
-"dispositions, qui recevront leurs pleins effets. Le contrat de licence \n"
-"est soumis ŕ la Loi française. Toute contestation relative aux présentes \n"
-"dispositions sera réglée préalablement par voie amiable. A défaut d'accord\n"
-"avec MandrakeSoft S.A., les tribunaux compétents de Paris seront saisis du \n"
-"litige. Pour toute question relative au présent document, veuillez \n"
-"contacter MandrakeSoft S.A.\n"
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Clavier"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Veuillez choisir votre type de clavier."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Voici la liste complčte des claviers disponibles"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Quelle classe d'installation désirez-vous utiliser ?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Installation/Mise-ŕ-jour"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Désirez-vous faire une installation ou une mise-ŕ-jour ?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Recommandée"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Expert"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Mise-ŕ-jour"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Mise-ŕ-jour seulement des paquetages"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Veuillez choisir le type de votre souris."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Port souris"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Veuillez choisir le port série sur lequel votre souris est connectée."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Émulation des boutons"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Émulation du bouton 2"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Émulation du bouton 3"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Configuration des cartes PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Configuration IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "Aucune partition disponible"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Examen des partitions afin d'identifier les points de montage"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Choix des points de montage"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"La table des partitions ne peut ętre lue car elle est trop endommagée.\n"
-"Il est possible de réinitialiser les partitions endommagées (TOUTES LES\n"
-"DONNÉES seront perdues). Une autre solution consiste ŕ ne pas autoriser\n"
-"le logiciel DrakX ŕ modifier la table des partitions (l'erreur est %s)\n"
-"\n"
-"Ętes-vous d'accord pour perdre toutes vos partitions ?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake ne peut pas lire la table des partitions de façon satisfaisante.\n"
-"Vous pouvez continuer, mais ŕ vos risques et périls."
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Pas de place libre pour la partition d'amorçage (bootstrap) de 1 Mo."
-"L'installation va\n"
-"continuer, mais pour que votre systčme puisse démarrer, vous aurez besoin "
-"de\n"
-"créer la partition d'amorçage avec DiskDrake."
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr ""
-"Impossible de trouver une partition racine pour procéder ŕ une mise ŕ jour."
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Partition racine"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Quelle est la partition racine (/) de votre systčme ?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Vous devez redémarrer pour que les modifications apportées ŕ la\n"
-"table des partitions soient prises en compte"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Sélectionnez les partitions que vous souhaitez formater"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Vérifier la présence de secteurs endommagés ?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formatage des partitions"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Création et formatage du fichier %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr ""
-"Le swap est insuffisant pour achever l'installation, veuillez en ajouter."
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Recherche des paquetages disponibles..."
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Recherche des paquetages ŕ mettre ŕ jour..."
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Votre systčme ne dispose pas d'assez d'espace libre pour l'installation ou "
-"la mise-ŕ-jour (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Complčte (%d Mo)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimale (%d Mo)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recommandée (%d Mo)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Vous avez le choix entre :\n"
-"- Sauver sur disquette la sélection des paquetages.\n"
-"- Établir un nouveau choix de sélection ŕ partir d'une sauvegarde sur "
-"disquette.\n"
-"Le format est le męme que celui des disquettes générées pour l'installation "
-"automatisée."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Charger ŕ partir d'une disquette..."
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Chargement depuis la disquette..."
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Sélection des paquetages"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Insérez une disquette contenant une sélection de paquetages."
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Sauvegarder sur disquette..."
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "La taille sélectionnée est plus importante que la place disponible"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Type d'installation"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Vous n'avez sélectionné aucun groupe de paquetages\n"
-"Veuillez choisir l'installation minimale voulue."
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "Avec X"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "Avec la documentation de base (recommandé !)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Installation vraiment minimale (et en particulier pas d'urpmi)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Si vous possédez tous les cédéroms ci-dessous, cliquez sur Ť OK ť.\n"
-"Si vous n'en possédez aucun, cliquez sur Ť Annuler ť.\n"
-"Sinon désélectionnez ceux que vous n'avez pas, puis cliquez sur Ť OK ť."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "cédérom Ť %s ť"
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Préparation de l'installation"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Installation du paquetage %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Configuration post-installation"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Insérez la disquette d'amorçage utilisée dans le lecteur %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Insérez la disquette de mise-ŕ-jour de modules dans le lecteur %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Vous avez maintenant la possibilité de télécharger des paquetages contenant "
-"des logiciels faisant usage de cryptographie si votre connexion internet est "
-"correctement configurée.\n"
-"\n"
-"\n"
-"ATTENTION : EN RAISON DE LA DIVERSITÉ DES RÉGLEMENTATIONS CONCERNANT CES "
-"LOGICIELS, VOUS DEVEZ VOUS ASSURER QUE LES LOIS ET RČGLEMENTS AUXQUELS VOUS "
-"ĘTES SOUMIS VOUS AUTORISENT Ŕ LES TÉLÉCHARGER, LES STOCKER ET/OU LES "
-"UTILISER.\n"
-"\n"
-"\n"
-"NOUS ATTIRONS TOUT PARTICULIČREMENT VOTRE ATTENTION SUR LE RESPECT DE LA "
-"RÉGLEMENTATION EN VIGUEUR DANS VOTRE PAYS. VOUS VOUS EXPOSEZ Ŕ DE GRAVES "
-"SANCTIONS EN CAS DE VIOLATION DESDITES RČGLES.\n"
-"\n"
-"\n"
-"EN AUCUN CAS, NI MANDRAKESOFT NI SES FOURNISSEURS NE POURRONT ĘTRE TENUS "
-"RESPONSABLES Ŕ RAISON D'UN PRÉJUDICE SPÉCIAL, INDIRECT OU ACCESSOIRE, DE "
-"QUELQUE NATURE QUE CE SOIT (NOTAMMENT LES PERTES DE BÉNÉFICES, INTERRUPTIONS "
-"D'ACTIVITÉ, PERTES D'INFORMATIONS COMMERCIALES OU AUTRES PERTES PÉCUNIAIRES, "
-"AINSI QUE DES ÉVENTUELLES CONDAMNATIONS ET INDEMNITÉS DEVANT ĘTRE VERSÉES "
-"PAR SUITE D'UNE DÉCISION DE JUSTICE) QUI FERAIT SUITE Ŕ L'UTILISATION, LA "
-"DÉTENTION OU AU SIMPLE TÉLÉCHARGEMENT DES LOGICIELS DE CRYPTOGRAPHIE "
-"AUXQUELS VOUS POURREZ ÉVENTUELLEMENT ACCÉDER APRČS AVOIR VALIDÉ LE PRÉSENT "
-"ACCORD.\n"
-"\n"
-"\n"
-"Si vous résidez en France, le présent accord est soumis ŕ loi française. Si "
-"vous résidez hors de France, le droit local pourra, le cas échéant, "
-"s'appliquer.\n"
-"\n"
-"\n"
-"Au cas oů vous auriez des questions concernant cet accord, veuillez vous "
-"mettre en relation avec :\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Vous avez maintenant la possibilité de télécharger les mises ŕ jour\n"
-"créées depuis la sortie de cette version de Mandrake Linux.\n"
-"\n"
-"Il s'agit de correctifs de sécurité, ou de correction de bogues,\n"
-"et vous aurez besoin d'une connexion internet pour les obtenir.\n"
-"\n"
-"Voulez-vous installer les mises-ŕ-jour ?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Connexion au site web de Mandrake Linux pour obtenir la liste des serveurs "
-"miroirs disponibles..."
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Choisissez un serveur miroir d'oů télécharger les paquetages"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Téléchargement de la liste des paquetages disponibles..."
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Quelle est votre fuseau horaire ?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Horloge systčme réglée sur le Temps Universel (GMT)"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Synchronisation automatique de l'horloge (via NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "Serveur NTP"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Serveur CUPS distant"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Pas d'imprimante"
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "Possédez-vous une carte son ISA ?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "Lancez Ť sndconfig ť aprčs l'installation pour configurer la carte son"
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Aucune carte son detectée. Essayez avec Ť harddrake ť aprčs l'installation"
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Résumé"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Souris"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Fuseau horaire"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Imprimante"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "Carte RNIS/ISDN"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Carte son"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "Carte TV"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Fichiers locaux"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Mot de passe root"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Pas de mot de passe"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Ce mot de passe est trop court (minimum %d caractčres)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Authentification"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Authentification LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "Racine (dn) LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "Serveur LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "Authentification NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "Domaine NIS"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "Serveur NIS"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Une disquette d'amorçage permet de lancer votre systčme Linux\n"
-"sans utiliser le programme d'amorçage du disque dur.\n"
-"\n"
-"C'est utile si vous ne voulez pas installer SILO sur votre systčme,\n"
-"si un autre systčme d'exploitation supprime le programme d'amorçage, ou "
-"encore\n"
-"si ce dernier ne peut ętre installé sur votre machine.\n"
-"\n"
-"Vous pouvez également utiliser cette disquette avec l'image de secours "
-"Mandrake.\n"
-"Cela permet une récupération plus aisée du systčme en cas de problčmes "
-"majeurs.\n"
-"\n"
-"Si vous voulez créer une disquette d'amorçage pour votre systčme, insérez \n"
-"une disquette dans le premier lecteur et appuyer sur \"Ok\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Premier lecteur de disquette"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Second lecteur de disquette"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Abandonner"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Une disquette d'amorçage permet de lancer votre systčme Linux\n"
-"sans utiliser le programme d'amorçage du disque dur.\n"
-"\n"
-"C'est utile si vous ne voulez pas installer LILO sur votre systčme,\n"
-"si un autre systčme d'exploitation supprime le programme d'amorçage, ou "
-"encore\n"
-"si ce dernier ne peut ętre installé sur votre machine.\n"
-"\n"
-"Vous pouvez également utiliser cette disquette avec l'image de secours "
-"Mandrake.\n"
-"Cela permet une récupération plus aisée du systčme en cas de problčmes "
-"majeurs.\n"
-"\n"
-"Désirez-vous créer une disquette d'amorçage pour votre systčme ?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-"\n"
-"\n"
-"(ATTENTION ! Vous utilisez XFS pour votre partition racine,\n"
-"créer une disquette de boot 1.44 Mb va probablement échouer,\n"
-"parce que XFS a besoin d'un pilote trčs gros)."
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Désolé, aucun lecteur de disquette ne semble disponible"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
-"Choisissez le lecteur de disquette ŕ utiliser pour\n"
-"créer votre disquette d'amorçage."
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Insérez une disquette dans le %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Création de la disquette d'amorçage..."
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Préparation du programme d'amorçage..."
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Il semble que votre machine ne soit pas dotée de l'architecture Ť NewWorld "
-"ť.\n"
-"Le programme d'amorçage Ť yaboot ť ne fonctionnera pas.\n"
-"L'installation va continuer, mais vous aurez besoin de Ť BootX ť pour "
-"démarrer\n"
-"votre machine."
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Désirez-vous utiliser Ť aboot ť ?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Une erreur est survenue lors de l'installation de Ť aboot ť.\n"
-"Désirez-vous forcer l'installation au risque de détruire la\n"
-"premičre partition du disque ?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Installation du programme d'amorçage..."
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr ""
-"L'installation du programme d'amorçage a échoué pour la raison suivante :"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Vous aurez peut-ętre besoin de changer le périphérique d'amorçage\n"
-"de l'OpenFirmware pour activer le programme d'amorçage. Si vous\n"
-"ne voyez pas apparaître l'invite du programme d'amorçage lorsque\n"
-"vous redémarrerez, appuyez sur Command-Option-O-F au démarrage et\n"
-"entrez :\n"
-"setenv boot-device %s,\\\\:tbxi\n"
-"Puis tapez : shut-down\n"
-"Au prochain démarrage vous devriez voir apparaître l'invite du\n"
-"programme d'amorçage."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Insérez une disquette vierge dans le lecteur %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Création de la disquette d'auto-installation..."
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Certaines étapes ne sont pas terminées.\n"
-"\n"
-"Voulez-vous vraiment quitter maintenant ?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Félicitations, l'installation est terminée.\n"
-"Enlevez la disquette ou le cédérom d'amorçage et appuyez sur Ť Entrée ť.\n"
-"\n"
-"\n"
-"Pour toutes informations sur les corrections disponibles pour cette version "
-"de Mandrake Linux, consultez les Errata disponibles depuis :\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Des informations sur la configuration de votre systčme sont \n"
-"disponibles dans le Guide de l'Utilisateur de Mandrake Linux."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Créer une disquette d'auto-installation"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"L'auto-installation peut ętre complčtement automatique si nécessaire,\n"
-"dans ce cas elle prend le contrôle du disque dur !!\n"
-"(prévu pour l'installation d'une autre machine).\n"
-"\n"
-"Vous pouvez préférer rejouer l'installation.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automatisée"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Rejouer"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Sauvegarder la sélection des paquetages..."
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Installation de Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-"<Tab> suivant | <Alt-Tab> précédent | <Espace> sélectionner | <F12> Écran "
-"suivant "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "le programme Ť kdesu ť est introuvable"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "le programme Ť consolehelper ť est introuvable"
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Choisissez un fichier"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Avancé"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Basique"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Veuillez patienter"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Information"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Développer l'arborescence"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Réduire l'arborescence"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Basculer entre tri alphabétique et tri par groupes"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Choix erroné. Veuillez recommencer\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Que choisissez-vous ? (%s par défaut) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Champs que vous devrez remplir :\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Votre choix ? (0/1, défaut Ť %s ť)"
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Bouton Ť %s ť : %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "Désirez-vous cliquer sur ce bouton ?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Que choisissez-vous ? (Ť %s ť%s par défaut) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Il y a beaucoup de choses ŕ choisir (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Veuillez choisir le premier nombre du groupe de 10 que vous\n"
-"souhaitez modifier, ou appuyez juste sur <Entrée> pour continuer.\n"
-"Votre choix ? "
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Notez qu'un message a changé :\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Revalider"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "tchčque (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "allemand"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak standard"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "espagnol"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "finlandais"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "français"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "norvégien"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "polonais"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "russe"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "suédois"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "anglais"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "américain (États-Unis)"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "albanais"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "arménien (ancien)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "arménien (machine ŕ écrire)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "arménien (phonétique)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "azerbaďdjanais (latin)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "belge"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "bulgare (phonétique)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "bulgare (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "brésilien"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "blélorusse"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "suisse (allemand)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "suisse (français)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "tchčque (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "allemand (sans touches mortes)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "danois"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak américain"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak norvégien"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak suédois"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "estonien"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "géorgien (disposition russe)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "géorgien (disposition latine)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "grec"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "hongrois"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "croate"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "israélien"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "israélien (phonétique)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "iranien"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "islandais"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "italien"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "japonais 106 touches"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "coréen"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "latino-américain"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "lituanien (AZERTY, ancien modčle)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "lituanien (AZERTY, nouveau modčle)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "lituanien Ť ligne de nombres ť QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "lituanien Ť phonétique ť QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "letton"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "macédonien"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "hollandais"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "polonais (QWERTY)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "polonais (QWERTZ)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "portugais"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "canadien (Québec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "roumain (QWERTZ)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "roumain (QWERTY)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "russe (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "slovénien"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "slovaque (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "slovaque (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "serbe (cyrillique)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "tamoul"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "thaďlandais"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "tadjik"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "turc (modčle traditionnel Ť F ť)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "turc (modčle moderne Ť Q ť)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "ukrainien"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "américain (international)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "vietnamien Ť colonne numérique ť QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "yougoslave (latin)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr "Touche Alt droite"
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr "Deux touches Shift simultanément"
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr "Touches Control et Shift simultanément"
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr "Touche CapsLock (verrouillage majuscule)"
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Touches Ctrl et Alt simultanément"
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr "Touches Alt et Shift simultanément"
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr "Touche Ť Menu ť"
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr "Touche Ť Windows ť gauche"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr "Touche Ť Windows ť droite"
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Points de montage circulaires %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Enlevez d'abord les volumes logiques\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"Le support du PCMCIA n'est plus disponible avec les noyaux 2.2. Veuillez "
-"utiliser un noyau 2.4."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Souris SUN"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Souris standard PS2 ŕ molette"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 bouton"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Souris standard ŕ 2 boutons"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Générique"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Roulette"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "série"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Souris standard ŕ 3 boutons"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Souris Logitech (série, ancien modčle C7)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "souris bus"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 boutons"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 boutons"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "aucun"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Pas de souris"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Veuillez tester votre souris"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Pour activer la souris,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "veuillez faire tourner la molette"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Terminer"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Suivant ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Précédent"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Est-ce correct ?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Connexion ŕ l'internet"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"La façon la plus courante de se connecter ŕ l'internet en utilisant\n"
-"une ligne ADSL est d'utiliser Ť pppoe ť.\n"
-"\n"
-"Certaines connexions utilisent Ť pptp ť, quelques unes se servent de Ť DHCP "
-"ť.\n"
-"\n"
-"Si vous ne savez pas quoi choisir, utilisez pppoe."
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel Speedtouch USB"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "utiliser Ť dhcp ť"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "utiliser Ť pppoe ť"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "utiliser Ť pptp ť"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Quel client DHCP désirez-vous utiliser ?\n"
-"\n"
-"Le client par défaut est Ť dhcpcd ť."
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Aucune carte réseau n'a été détectée sur votre systčme.\n"
-"La connexion ne peut donc pas ętre configurée."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Choisissez la carte réseau"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Veuillez choisir la carte réseau qui sera connectée ŕ l'internet"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "Aucune carte réseau n'a été identifiée"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Configuration du réseau"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Veuillez indiquer le nom d'hôte de votre machine si vous le connaissez.\n"
-"Certains serveurs DHCP ont besoin de ce nom d'hôte pour fonctionner.\n"
-"Celui-ci doit ętre pleinenement qualifié, comme par exemple :\n"
-"mamachine.monlabo.masociete.com"
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Nom d'hôte :"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Assistant de configuration réseau"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Modem RNIS/ISDN externe"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Carte RNIS/ISDN interne"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Quel est le type de votre connexion RNIS/ISDN ?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Quelle configuration RNIS/ISDN préférez-vous?\n"
-"\n"
-"- L'ancienne configuration contient des outils puissants,\n"
-" mais est difficile ŕ configurer, et n'est pas standard.\n"
-" Elle utilise Ť isdn4net ť\n"
-"- La nouvelle configuration est plus facile ŕ comprendre\n"
-" et plus standard, mais a moins d'outils.\n"
-" Elle utilise Ť isdn-light ť\n"
-"Nous recommandons la seconde (isdn-light)\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "nouvelle configuration (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "ancienne configuration (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Configuration RNIS/ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Veuillez choisir votre fournisseur d'accčs.\n"
-"S'il ne figure pas dans la liste, choisissez Ť Non listé ť."
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Protocole pour l'Europe"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Protocole pour l'Europe (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protocole pour le reste du monde"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protocole pour le reste du monde \n"
-" Pas de D-Channel (lignes louées)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Quel protocole désirez-vous utiliser ?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Quel type de carte possédez-vous ?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Je ne sais pas"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Si vous possédez une carte ISA, les données du prochain écran devraient\n"
-"ętre correctes.\n"
-"\n"
-"Si vous possédez une carte PCMCIA, vous avez besoin de connaître\n"
-"les réglages Ť IRQ ť et Ť IO ť de votre carte.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Arręter"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Continuer"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Quel est le modčle de votre carte RNIS/ISDN ?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Une carte RNIS/ISDN a été détectée mais son type est inconnu. Veuillez "
-"sélectionner une carte PCI dans le prochain écran."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Aucune carte RNIS/ISDN identifiée. Veuillez en sélectionner une dans le\n"
-"prochain écran."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Veuillez choisir le port série sur lequel votre modem est connecté."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Options d'appel"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Nom de la connexion"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Numéro de téléphone"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Identifiant de connexion"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Basée sur un script"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Manuelle par terminal"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Nom de domaine"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "serveur DNS principal (optionnel)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "serveur DNS secondaire (optionnel)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Vous pouvez vous déconnecter ou reconfigurer votre connexion."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Vous pouvez reconfigurer votre connexion."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Vous ętes actuellement connecté ŕ l'internet."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Vous pouvez vous connecter ŕ l'internet ou reconfigurer votre connexion."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Vous n'ętes actuellement pas connecté ŕ l'internet."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Connecter"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Se déconnecter"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Configurez la connection"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Connexion internet et configuration"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Nous allons configurer la connexion %s."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Nous allons maintenant configurer la connexion %s.\n"
-"\n"
-"\n"
-"Cliquez sur OK pour continuer."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Configuration du réseau"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Comme vous ętes en train de faire une installation réseau,\n"
-" cela veut dire que votre réseau est déjŕ configuré.\n"
-"Cliquez sur <Ok> pour conserver votre configuration,\n"
-"ou sur <Annuler> pour reconfigurer votre connexion internet et réseau.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Bienvenue dans l'assistant de configuration réseau.\n"
-"\n"
-"Nous sommes sur le point de configurer votre connexion internet et réseau.\n"
-"Si vous ne souhaitez pas utiliser la détection automatique, désélectionnez "
-"la case correspondante.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Choisissez le profil ŕ configurer"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Utiliser la détection automatique"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Détection des périphériques..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Connexion par modem"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "détecté sur le port %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "Connexion par RNIS/ISDN"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "détecté %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "Connexion par ADSL"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "détecté sur l'interface %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Connexion par Cable"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "Connexion par Cable détectée"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Connection ŕ travers un réseau local (LAN)"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "carte(s) ethernet détectée(s)"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Choisissez la connexion que vous voulez configurer"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Vous avez configuré plusieurs moyens d'accčs ŕ l'internet.\n"
-"Choisissez celui que vous voulez utiliser.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Connexion internet"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Désirez-vous activer la connexion lors du démarrage ?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Configuration du réseau"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "Le réseau doit ętre redémarré"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Un problčme est survenu pendant le redémarrage du réseau : \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Félicitations, votre choix de configuration internet et réseau est "
-"terminée.\n"
-"La configuration va maintenant ętre appliquée ŕ votre systčme.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Une fois terminé, il est recommandé de redémarrer votre interface graphique, "
-"afin d'éviter les problčmes liés au changement de nom d'hôte de la machine."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"Des problčmes sont apparus pendant la configuration.\n"
-"Testez votre connexion avec le Ť Centre de Contrôle Mandrake ť (dans la "
-"section Ť réseau ť) ou la commande Ť net_monitor ť. Si votre connexion ne "
-"fonctionne pas, vous pouvez essayer de relancer la configuration."
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"ATTENTION : Ce périphérique a déjŕ été configuré pour la connexion "
-"internet.\n"
-"\n"
-"Cliquez simplement sur Ť OK ť pour conserver sa configuration.\n"
-"Sinon la configuration actuelle sera écrasée par les modifications que vous "
-"ferez."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Veuillez indiquer la configuration IP de cette machine.\n"
-"Chaque champ doit ętre complété avec une adresse IP en notation\n"
-"décimale pointée (par exemple, 12.34.56.78)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Configuration du périphérique réseau %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (pilote %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "Adresse IP"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Masque de sous-réseau"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(BOOTP/DHCP)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Attribution automatique de l'adresse IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "L'adresse IP doit ressembler ŕ quelque chose comme Ť 192.168.1.20 ť"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Veuillez indiquer un nom d'hôte pour la machine.\n"
-"Celui-ci doit ętre un nom de machine pleinement qualifié, par exemple :\n"
-"mamachine.monlabo.masociete.com\n"
-"Vous pouvez également indiquer l'adresse IP de la passerelle\n"
-"si votre réseau local en possčde une."
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "Serveur DNS"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Passerelle (p.ex. %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Périphérique passerelle"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Configuration des serveurs mandataires (proxy)"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "Serveur mandataire HTTP"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "Serveur mandataire FTP"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Identifiant de la carte réseau (utile pour les portables)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "La syntaxe doit ętre http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "La syntaxe doit ętre ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Configuration de l'accčs internet"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Voulez-vous vous connecter ŕ l'internet maintenant ?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Test de votre connexion..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Le systčme est ŕ présent connecté ŕ l'internet."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Pour des raisons de sécurité, il va ętre déconnecté maintenant."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Le systčme ne semble pas connecté ŕ l'internet.\n"
-"Essayez de reconfigurer votre connection."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Configuration de la connexion"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Veuillez compléter ou vérifier les champs ci-dessous"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "n° IRQ de la carte"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Plage mémoire (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "E/S de la carte"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "E/S_O de la carte"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "E/S_1 de la carte"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Votre numéro de téléphone personnel"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Fournisseur d'accčs (ex.: provider.fr)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Numéro de téléphone pour l'accčs"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "1er DNS du fournisseur (optionnel)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "2čme DNS du fournisseur (optionnel)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Choisissez votre pays"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Numérotation"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Vitesse de connexion"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Temps maxi pour établir la connexion (en sec.)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "nom d'utilisateur du compte"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Mot de passe du compte"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "Le montage a échoué : "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Les partitions étendues ne sont pas supportée par cette plateforme"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Il y a un espace vide dans la table des partitions mais il est\n"
-"inutilisable. La seule solution est de déplacer vos partitions primaires\n"
-"de telle façon que cet espace soit placé contre les partitions étendues."
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Restauration impossible depuis le fichier %s : %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Mauvais fichier de sauvegarde"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Erreur d'écriture dans le fichier %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Votre disque dur semble avoir un problčme matériel :\n"
-"le test pour vérifier son aptitude ŕ conserver l'intégrité des données a "
-"échoué.\n"
-"Cela signifie que serez victime de pertes aléatoires de données."
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "doit avoir"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "important"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "trčs utile"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "utile"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "éventuellement"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Nouvelle Génération"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Imprimante locale"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Imprimante distante"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Imprimante sur serveur CUPS distant"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Imprimante sur serveur LPD distant"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Imprimante réseau autonome (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Imprimante sur serveur SMB (Windows 95/98/NT)"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Imprimante sur serveur NetWare"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Indiquer l'adresse du périphérique d'impression"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Impression vers une commande shell"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Modčle inconnu"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Imprimantes locales"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Imprimantes distantes"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " sur port parallčle \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", imprimante USB \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", périphérique multi-fonctions sur le port parallčle \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", périphérique USB multi-fonctions"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", périphérique HP JetDirect multi-fonctions"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", périphérique multi-fonctions"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", impression sur %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "sur serveur d'impression LPD Ť %s ť, imprimante Ť %s ť"
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", hôte TCP/IP Ť %s ť, port Ť %s ť"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "sur serveur Windows Ť %s ť, partage Ť %s ť"
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "sur serveur Novell Ť %s ť, imprimante Ť %s ť"
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", en utilisant la commande %s"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Imprimante ŕ accčs direct (pas de pilote)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(sur %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(sur cette machine)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Sur serveur CUPS Ť %s ť"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Défaut)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Type de connexion de l'imprimante"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Quel est le type de connexion de l'imprimante ?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Si vous utilisez un serveur CUPS distant, vous n'avez pas besoin de "
-"configurer d'imprimante ici. Elles seront automatiquement détectées."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-msgid "CUPS configuration"
-msgstr "Configuration de CUPS"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-msgid "Specify CUPS server"
-msgstr "Specifiez le serveur CUPS"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"Avec les serveurs CUPS distants, vous n'avez pas besoin de configurer "
-"d'imprimante ici ; ceux-ci doivent fournir automatiquement ŕ votre machine "
-"des informations sur les imprimantes disponibles. Toutes les imprimantes "
-"connues de votre ordinateur sont actuellement listées dans le champ "
-"Ť Imprimante par défaut ť. Choisissez l'imprimante par défaut pour votre "
-"machine, puis cliquez sur le bouton Ť Valider / Rafraîchir ť. Ce bouton sert "
-"également ŕ rafraîchir la liste. (il peut se passer jusqu'ŕ 30 secondes "
-"avant que toutes les imprimantes distantes soient visibles). Si le serveur "
-"CUPS est sur un réseau différent, vous devez préciser son adresse IP, et "
-"éventuellement le numéro de port afin d'obtenir les informations sur les "
-"imprimantes. Sinon, laissez ces champs vides."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Normalement, CUPS est configuré automatiquement en fonction de votre "
-"environnement réseau, de façon que vous puissiez accéder aux imprimantes "
-"gérées par les serveurs CUPS de votre réseau local. Si cela ne fonctionne "
-"pas, désactivez Ť configuration automatique de CUPS ť et éditez le fichier "
-"manuellement le fichier /etc/cups/cupsd.conf. N'oubliez pas ensuite de "
-"relancer CUPS (ŕ l'aide de la commande : Ť service cups restart ť ou bien "
-"avec le Ť Centre de Contrôle Mandrake ť dans la section Ť Services ť)."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "L'adresse IP doit ressembler ŕ quelque chose comme Ť 192.168.1.20 ť"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Le numéro de port doit ętre un nombre entier !"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "Adresse IP du serveur CUPS"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Port"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Configuration automatique du serveur CUPS"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Détection des périphériques..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test des ports"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Ajouter une nouvelle imprimante"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Bienvenue dans l'Assistant de Configuration d'Imprimante\n"
-"\n"
-"Cet assistant permet de configurer des imprimantes locales ou réseau afin "
-"d'ętre utilisée ŕ partir de cette machine ainsi que des autres machines du "
-"réseau.\n"
-"\n"
-"Toutes les informations nécessaires pour configurer l'imprimante vous seront "
-"demandées; vous aurez également accčs ŕ tous les pilotes d'imprimantes "
-"disponibles ainsi qu'ŕ toutes leurs options et ŕ tous les types de "
-"connection."
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Imprimante locale"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Bienvenue dans l'Assistant de configuration de l'imprimante.\n"
-"\n"
-"Cet assistant vous aidera ŕ installer les imprimantes connectées\n"
-"ŕ cet ordinateur.\n"
-"\n"
-"Veuillez maintenant brancher vos imprimantes sur l'ordinateur, \n"
-"et allumez-les, puis cliquez sur Ť suivant ť. Si vous ne voulez pas\n"
-" installer d'imprimante maintenant, cliquez sur Ť annuler ť.\n"
-"\n"
-"Notez que certains ordinateurs peuvent planter pendant\n"
-"l'autodétection, donc dans ce cas déselectionnez Ť Détection\n"
-"automatique des imprimantes ť. Utilisez le mode expert de\n"
-"printerdrake si vous voulez installer une imprimante réseau\n"
-"qui n'est pas listée automatiquement."
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Détection automatique des imprimantes"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"Félicitation, votre imprimante est maintenant installée et configurée.\n"
-"\n"
-"Vous pouvez imprimer en utilisant la commande Ť imprimer ť de vos\n"
-"applications (souvent dans le menu Ť fichier ť).\n"
-"\n"
-"Si vous voulez ajouter, enlever ou renommer une imprimante, ou sivous voulez "
-"changer les options par défaut (alimentation papier,qualité d'impression, "
-"etc.), rendez-vous dans la partie Ť imprimante ťde la section Ť matériel ť "
-"du Centre de Contrôle Mandrake."
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Détection automatique des imprimantes"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake est capable d'auto-détecter les imprimantes parallčle et USB\n"
-"connectées directement ŕ votre ordinateur, mais veuillez noter que sur\n"
-"certains systčmes la détection automatique PEUT BLOQUER VOTRE ORDINATEUR\n"
-"ET DONC PEUT-ĘTRE CORROMPRE VOTRE SYSTČME DE FICHIERS !\n"
-"Faites-le donc Ŕ VOS RISQUES ET PÉRILS !\n"
-"\n"
-"Voulez-vous vraiment auto-détecter vos imprimantes ?"
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Lancer la détection automatique"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Configurer l'imprimante manuellement"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "Détecté %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Imprimante sur le port parallčle \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "Imprimante USB \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Aucune imprimante locale n'a pu ętre trouvée!\n"
-"Pour en installer une manuellement entrez un nom de périphérique ou de "
-"fichier sur la ligne d'entrée (Ports parallčles : /dev/lp0, /dev/lp1, ..., "
-"équivalents ŕ LPT1:, LPT2:, ..., premičre imprimante USB : /dev/usb/lp0, "
-"deuxičme imprimante USB : /dev/usb/lp1, ...) "
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Vous devez enter un nom de fichier ou de périphérique!"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Aucune imprimante locale n'a pu ętre trouvée!\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Les imprimantes réseaux ne peuvent ętre configurées qu'aprčs l'installation. "
-"Choississez Ť Matériel ť puis Ť Imprimantes ť dans le Centre de Contrôle de "
-"Mandrake."
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Pour installer les imprimantes réseaux, cliquez sur Ť Annuler ť, puis passez "
-"en Ť Mode Expert ť et cliquez ŕ nouveau sur Ť Ajouter une nouvelle "
-"imprimante ť."
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"L'imprimante suivante a été auto-détectée; si ce n'est pas celle que vous "
-"voulez configurer, tapez un nom de fichier ou de périphérique dans le champs "
-"d'entrée"
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"Voici une liste de toutes les imprimantes auto-détectées. Veuillez choisir "
-"l'imprimante que vous voulez configurer ou tapez un nom de périphérique ou "
-"de fichier dans le champs d'entrée"
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-"L'imprimante suivante a été auto-détectée. La configuration de cette "
-"imprimante sera effectuée automatiquement. Si votre imprimante n'a pas été "
-"correctement détectée ou si vous préférer effectuer une configuration "
-"personalisée, activez Ť Configuration Manuelle  ť ."
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Voici une liste de toutes les imprimantes auto-détectées. Veuillez choisir "
-"l'imprimante que vous voulez configurer. La configuration de cette "
-"imprimante sera effectuée automatiquement. Si votre imprimante n'a pas été "
-"correctement détectée ou si vous préférer effectuer une configuration "
-"personalisée, activez Ť Configuration Manuelle  ť .\""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Veuillez choisir le port sur laquelle votre imprimante est connectée ou "
-"tapez le nom du périphérique ou de fichier dans le champs d'entrée"
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Veuillez choisir le port sur lequel votre imprimante est connectée."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-"(Ports parallčles : /dev/lp0, /dev/lp1, ..., équivalents ŕ LPT1:, "
-"LPT2:, ..., premičre imprimante USB : /dev/usb/lp0, deuxičme imprimante "
-"USB : /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Vous devez choisir ou entrer une imprimante ou un périphérique !"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Configuration manuelle"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-"Votre imprimante est-elle un appareil multifonction de HP (OfficeJet, PSC, "
-"PhotoSmart LaserJet 1100/1200/1220/3200/3300 with scanner) ?"
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "Installation du paquetage HPOJ..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Vérification du périphérique et configuration de HPOJ ..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Installation du paquetage SANE ..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Acquisition ŕ partir de votre périphérique multi-fonction HP"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "Mise ŕ disposition du port imprimante pour CUPS ..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Lecture de la base de données des imprimantes..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Configuration d'une imprimante Unix (lpd) distante"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Pour utiliser une imprimante Unix distante, vous devez indiquer le nom "
-"d'hôte du serveur LPD et le nom attribué ŕ l'imprimante par ce serveur."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Nom d'hôte du serveur"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Nom de l'imprimante"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Nom du serveur distant manquant !"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Le nom de l'imprimante est manquant !"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Configuration d'une imprimante SMB (Windows 9x/NT)"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Afin de pouvoir accéder ŕ une imprimante connectée ŕ un serveur SMB, vous "
-"devez indiquer le nom SMB du serveur (attention, ce dernier peut ętre "
-"différent de son nom TCP/IP) et, éventuellement, son adresse IP ainsi que le "
-"nom de l'imprimante et toute information applicable quant au nom "
-"d'utilisateur, mot de passe et groupe de travail nécessaires pour accéder ŕ "
-"l'imprimante."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Nom du serveur"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "Adresse IP du serveur"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Nom de partage de l'imprimante"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Groupe de travail"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Il faut au moins préciser le nom du serveur ou son adresse IP."
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Il faut préciser le nom de partage de l'imprimante."
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr "ALERTE DE SÉCURITÉ !"
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Options de l'imprimante NetWare"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Pour pouvoir utiliser une imprimante connectée ŕ un serveur Netware, vous "
-"devez au moins indiquer le nom Netware du serveur (qui peut ętre différent "
-"du nom d'hôte TCP/IP) et le nom de la file d'impression ŕ laquelle vous "
-"voulez accéder ainsi qu'un nom de login et un mot de passe si nécessaire."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Nom du serveur d'impression"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Nom de la file d'impression"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "Nom du serveur NCP manquant!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "Nom de la file d'attente NCP manquant!"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "Options de l'imprimante réseau (TCP/socket)"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Pour imprimer sur une imprimante TCP ou socket, vous devez indiquer le\n"
-"nom d'hôte de l'imprimante et, optionellement, le numéro du port.\n"
-"Pour les serveurs d'impression Ť HP JetDirect ť, le numéro du\n"
-"port est habituellement 9100, mais cela peut ętre différent pour\n"
-"d'autres serveurs. Veuillez consulter le manuel de votre imprimante."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Nom d'hôte de l'imprimante"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Nom d'hôte de l'imprimante manquant !"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Adresse réseau du périphérique d'impression"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Si vous la connaissez, vous pouvez spécifier directement l'adresse réseau "
-"(URL) qui permet d'accéder ŕ l'imprimante. Choisissez un en-tęte puis "
-"complétez l'adresse en respectant les spécifications CUPS ou Foomatic. Notez "
-"que tous les types d'URL ne sont pas supportés par tous les gestionnaires "
-"d'impression."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Une adresse valide doit ętre entrée !"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Toute imprimante a besoin d'un nom (par exemple Ť lpr ť) auquel on se réfčre "
-"pour pouvoir imprimer.\n"
-"Les champs Ť Description ť et Ť Emplacement ť n'ont pas besoin d'ętre "
-"remplis. Ce sont de simples commentaires pour les utilisateurs."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Nom de l'imprimante"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Description"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Emplacement"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Préparation de la base de données des imprimantes..."
-
-#: ../../printerdrake.pm_.c:1112
-msgid "Your printer model"
-msgstr "Le modčle de votre imprimante"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Le nom de modčle résultant de l'autodétection a été comparée ŕ la basede "
-"données d'imprimantes pour trouver la meilleure correspondance.Ce choix peut "
-"ętre mauvais, particuličrement si votre modčle d'imprimanten'apparaît pas "
-"dans la base de données. Vérifiez ce choix, puis cliquez surŤ Le modčle est "
-"correct ť, ou le cas échéant sur Ť Sélectionner manuellement le modčle ť.\n"
-"\n"
-"Votre imprimante a été détectée comme étant :\n"
-"\n"
-"%s"
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-msgid "The model is correct"
-msgstr "Le modčle est correct"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-msgid "Select model manually"
-msgstr "Sélectionner manuellement le modčle"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Sélection du modčle de l'imprimante"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Quel modčle d'imprimante possédez-vous ?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Veuillez vérifier si l'imprimante a été correctement détectée Cherchez le "
-"modčle correct dans la liste si le curseur se situe sur un modčle erroné ou "
-"sur Ť Imprimante ŕ accčs direct ť."
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Si votre imprimante n'est pas listée, choisissez-en une compatible (voir le "
-"manuel de l'imprimante) ou similaire."
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "Configuration de l'imprimante OKI winprinter"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Vous ętes en train de configurer une imprimante laser OKI winprinter.\n"
-"Ces imprimantes utilisent un protocole de communication trčs spécial, et "
-"elles ne fonctionnent que si elles sont connectées au premier port "
-"parallčle. Si votre imprimante est connectée ŕ un autre port ou ŕ un serveur "
-"d'impression, veuillez la connecter au premier port parallčle avant "
-"l'impression de la page de test. Sans cela, l'imprimante ne fonctionnera pas "
-"Vos paramčtres de type de connexion seront ignorés par le pilote."
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Configuration de l'imprimante Lexmark inkjet"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Les pilotes d'impression inkjet fournis par Lexmark ne permettent que "
-"l'utilisation des imprimantes locales, et pas des imprimantes distantes ou "
-"des serveurs d'impression. Veuillez connecter votre imprimante sur un port "
-"local ou configurez-la sur la machine ŕ laquelle elle est connectée."
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-"Afin de pouvoir imprimer avec votre imprimante Lexmark inkjet et la "
-"configuration actuelle, vous avez besoin des pilotes d'impression inkjet "
-"fournis par Lexmark (http://www.lexmark.com/). Allez sur la section "
-"Ť Drivers ť du site américain de Lexmark, puis choisissez votre modčle et "
-"enfin Ť Linux ť comme systčme d'exploitation. Les pilotes sont des "
-"paquetages RPM ou des scripts shell avec une installation graphique "
-"interactive. Vous n'avez pas besoin de faire cette configuration avec "
-"l'interface graphique. Annulez directement aprčs l'acceptation de la "
-"licence. Ensuite, imprimez les pages pour l'alignement des tętes "
-"d'impression avec Ť lexmarkmaintain ť et ajustez les paramčtres de ces tętes "
-"avec ce programme."
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Paramétrage de l'imprimante par défaut.\n"
-"\n"
-"Assurez-vous que la taille de la page et le type d'encre (si disponible) "
-"sont correctement indiqués. Notez que la vitesse d'impression peut diminuer "
-"si vous augmentez la qualité d'impression."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "L'option %s doit ętre un nombre entier !"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "L'option %s ętre un nombre !"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "L'option %s est en dehors des limites !"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Désirez-vous que l'imprimante Ť %s ť soit l'imprimante\n"
-"par défaut ?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Pages de test"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Merci de sélectionner les pages de test que vous voulez imprimer.\n"
-"Note : la page de test photo peut prendre un temps assez long pour "
-"s'imprimer, et sur les imprimantes laser avec trop peu de mémoire, elle peut "
-"męme ne pas sortir.\n"
-"Dans la plupart des cas, l'impression de la page de test standard suffit."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Pas de page de test"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Imprimer"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Page de test standard"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Page de test alternative (Letter)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Page de test alternative (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Page de test photo"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "Ne pas imprimer de page de test"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Impression des pages de test..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Les pages de test ont été envoyées ŕ l'imprimante.\n"
-"Il peut se passer un certain temps avant le début effectif de l'impression.\n"
-"Statut de l'impression :\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Les pages de test ont été envoyées ŕ l'imprimante.\n"
-"Il peut se passer un certain temps avant le début effectif de l'impression.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "Ętes-vous satisfait du résultat ?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Imprimante ŕ accčs direct"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Pour imprimer un fichier depuis la ligne de commande (une fenętre de "
-"terminal), vous pouvez soit utiliser la commande Ť %s <fichier> ť ou un "
-"utilitaire d'impression graphique: Ť xpp <fichier> ť ou Ť kprinter "
-"<fichier> ť. Les utilitaires graphiques vous permettent de choisir "
-"l'imprimante et de modifier les paramčtres d'impression facilement.\n"
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Vous pouvez également utiliser ces commandes dans le champ Ť commande "
-"d'impression ť des boîtes de dialogue d'impression dans de nombreuses "
-"applications. Dans ce cas n'indiquez pas le nom du fichier puisqu'il sera "
-"fourni par l'application elle-męme.\n"
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"La commande Ť %s ť permet également de modifier les paramčtres d'impression "
-"pour une impression particuličre. Il suffit pour cela d'ajouter les "
-"paramčtres voulus sur la ligne de commande. Par exemple, Ť %s <fichier> ť. "
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"Pour obtenir la liste des paramčtres disponibles pour l'imprimante courante, "
-"lisez la liste ci-dessous ou cliquez sur le bouton Ť liste des options "
-"d'impression ť.%s\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Voici la listes des options d'impression disponibles pour l'imprimante "
-"courante:\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Pour imprimer un fichier depuis la ligne de commande (une fenętre de "
-"terminal), utilisez la commande Ť %s <fichier>ť.\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Cette commande peut également ętre utilisée dans le champ Ť commande "
-"d'impression ť des boîtes de dialogue d'impression dans de nombreuses "
-"applications. Dans ce cas, n'indiquez pas le nom du fichier ŕ imprimer "
-"puisque celui-ci sera fourni par l'application elle-męme.\n"
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Pour obtenir la liste des paramčtres disponibles pour l'imprimante courante, "
-"cliquez sur le bouton Ť liste des options d'impression ť."
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Pour imprimer un fichier depuis la ligne de commande (une fenętre de "
-"terminal), utilisez la commande Ť %s <fichier> ť ou Ť %s <fichier> ť.\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Vous pouvez également utiliser l'interface graphique Ť xpdq ť pour "
-"positionner des options d'impression et administrer les travaux "
-"d'impression.\n"
-"Si vous utiliser le bureau KDE, vous disposez d'un Ť bouton panique ť, une "
-"icône sur le bureau, nommé Ť STOP Imprimante ! ť, qui peut suspendre tous "
-"les travaux d'impression. Ceci peut ętre utile en cas de bourrage papier, "
-"par exemple.\n"
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Les commandes Ť %s ť et Ť %s ť permettent également de modifier les "
-"paramčtres d'impression pour une impression particuličre. Il suffit pour "
-"cela d'ajouter les paramčtres voulus sur la ligne de commande, par exemple "
-"Ť %s <fichier> ť.\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Fermer"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Impression/Acquisition sur l'imprimante Ť %s ť"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Impression sur l'imprimante Ť %s ť"
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Liste des options d'impression"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Votre appareil multifonction HP a été configuré automatiquement pour ętre "
-"capable de scanner. Maintenant vous pouvez scanner avec "
-"Ť scanimage ť ( Ť scanimage -d hp:%s ť pour spécifier le scanner si vous en "
-"avez plus d'un) ŕ partir de la ligne de commande, ou avec des interfaces "
-"graphiques comme Ť xscanimage ť ou Ť xsane ť. Si vous utilisez Ť Le Gimp ť, "
-"vous pouvez aussi scanner grace au menu Ť Fichier / Acquisition ť. Pour "
-"avoir plus d'information, vous pouvez taper Ť man scanimage ť ou Ť man sane-"
-"hp ť dans une fenętre de commandes.\n"
-"\n"
-"N'utilisez pas Ť scannerdrake ť pour cet appareil ! "
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Votre appareil multifonction HP a été configuré automatiquement pour ętre "
-"capable de scanner. Maintenant vous pouvez scanner avec Ť tal-hp %s scan ... "
-"ť dans une fenętre de commandes. L'acquisition par interface graphique ou "
-"grace ŕ Ť Gimp ť n'est pas encore suportée avec cet appareil. Vous trouverez "
-"plus d'informations dans le fichier /usr/share/doc/hpoj-0.8/ptal-hp-scan."
-"html sur votre systčme. Si vous avez une HP LaserJet 1100 ou 1200, vous "
-"pouvez seulement scanner si vous avez l'option Ť scanner ť installée.\n"
-"\n"
-"N'utilisez pas Ť scannerdrake ť pour cet appareil ! "
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Lecture des données de l'imprimante..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Transfert de la configuration de l'imprimante"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Vous pouvez copier la configuration de l'imprimante faite pour le "
-"gestionnaire %s vers votre gestionnaire actuel %s. Toutes les données de "
-"configuration (nom de l'imprimante, description, emplacement, type de "
-"connexion, et paramčtres par défaut) sont récupérées, mais les travaux ne "
-"seront pas transférés.\n"
-"Toutes les files d'attente n'ont pas pu ętre transférées ŕ cause des raisons "
-"suivantes :\n"
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS ne supporte pas les imprimantes sur les serveurs Novell ni les "
-"impressions vers des commandes shell.\n"
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ ne supporte que les imprimantes locales, les imprimantes LPD distantes, "
-"et les imprimantes réseau autonomes.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD et LPRng ne supportent pas les imprimantes IPP.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"De plus, les files d'attente qui n'ont pas été créées avec ce programme ou "
-"avec Ťfoomatic-configureť ne peuvent pas ętre transférées."
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Aussi, les imprimantes configurées avec les fichiers PPD fournis par leur "
-"fabriquant ou avec des pilotes CUPS natifs ne peuvent pas ętre transférées."
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Cochez les imprimantes que vous voulez transférer, et\n"
-"cliquez sur Ť Transfert ť."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Ne pas transférer les imprimantes"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Transfert"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Une imprimante nommée Ť %s ť existe déjŕ sous %s.\n"
-"Cliquez sur Ť Transfert ť pour la remplacer.\n"
-"Vous pouvez également taper un nouveau nom ou\n"
-"simplement ignorer cette imprimante."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"Le nom de l'imprimante ne devrait contenir que des lettres, des nombres et "
-"des tirets bas (_)"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"L'imprimante Ť %s ť existe déjŕ,\n"
-"voulez-vous vraiment écraser sa configuration ?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Nouveau nom de l'imprimante"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "Transfert de %s..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Vous avez transféré votre précédente imprimante par défaut (Ť %s ť). Doit-"
-"elle ętre également l'imprimante par défaut de votre nouveau systčme "
-"d'impression %s ?"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Mise ŕ jour des données de l'imprimante..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Configuration d'une imprimante distante"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Démarrage du réseau..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Configurez le réseau maintenant"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "Les fonctionnalités du réseau ne sont pas configurées"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Vous ętes sur le point de configurer une imprimante distante. Cela nécessite "
-"un accčs au réseau, mais votre réseau n'est pas encore configuré. Si vous "
-"voulez continuer sans configurer le réseau, vous ne pourez pas utiliser "
-"l'imprimante que vous ętes en train de configurer. Que voulez-vous faire ?"
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Continuer sans configurer le réseau"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-"L'interface réseau qui a été configurée pendant l'installation ne peut pas "
-"ętre démarrée maintenant. Veuillez vérifier si votre réseau est activé aprčs "
-"démarrage. Démarrez le Ť Centre de Contrôle Mandrake ť, vérifiez la "
-"configuration dans la section Ť réseau et internet / connexion ť. Puis "
-"essayez ŕ nouveau de configurer l'imprimante dans la section Ť Matériel / "
-"Imprimante ť."
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"L'accčs réseau n'a pas pu ętre démarré. Veuillez vérifier la configuration "
-"de votre matériel et de votre accčs réseau grâce au Ť Centre de Contrôle "
-"Mandrake ť puis essayez ŕ nouveau de configurer l'imprimante distante."
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Redémarrage du systčme d'impression..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "élevé"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "paranoďaque"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Installation du systčme d'impression sous le niveau de sécurité Ť %s ť"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Vous ętes sur le point d'installer le systčme d'impression %s sur un systčme "
-"dont le niveau de sécurité est réglé sur Ť %s ť.\n"
-"\n"
-"Ce systčme d'impression écoute en permanence le réseau afin de répondre aux "
-"requętes d'impression. Ceci se fait grâce ŕ un processus (daemon) qui tourne "
-"en tâche de fond et qui est accessible par les autres machines du réseau. "
-"C'est donc une cible possible pour des attaques réseau éventuelles. C'est "
-"pourquoi le minimum possible de Ť daemons ť doivent ętre démarrés dans ce "
-"niveau de sécurité.\n"
-"\n"
-"Voulez-vous réellement installer un systčme d'impression ?"
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Activation du systčme d'impression au démarrage"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Le systčme d'impression (%s) ne sera pas activé automatiquement lors du "
-"démarrage de la machine.\n"
-"\n"
-"Il est possible que l'activation automatique ait été supprimée par "
-"l'utilisation d'un plus grand niveau de sécurité, car les systčmes "
-"d'impression sont des cibles potentielles d'attaque.\n"
-"\n"
-"Voulez-vous rétablir l'activation automatique du systčme d'impression ?"
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Vérification du logiciel installé..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "Suppression de LPRng..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "Suppression de LPD..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Choisissez le gestionnaire d'impression"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Quel systčme d'impression désirez-vous utiliser ?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Configuration de l'imprimante Ť %s ť..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "Installation de Foomatic ..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Options de l'imprimante"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "Préparation de PrinterDrake..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-msgid "Configuring applications..."
-msgstr "Configuration des applications...."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Désirez-vous configurer l'impression ?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Systčme d'impression : "
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Les imprimantes suivantes sont configurées. Double-cliquez sur l'une d'entre "
-"elles pour modifier ses paramčtres, en faire l'imprimante par défaut, "
-"consulter les informations ŕ son propos ou pour rendre une imprimante d'un "
-"serveur CUPS distant utilisable par Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Les imprimantes suivantes sont configurées. Cliquez sur l'une d'entre elles "
-"pour modifier ses paramčtres, en faire l'imprimante par défaut ou consulter "
-"les informations ŕ son propos."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Rafraîchir la liste des imprimantes (pour afficher toutes les imprimantes "
-"CUPS distantes)"
-
-#: ../../printerdrake.pm_.c:2464
-msgid "Change the printing system"
-msgstr "Changer le systčme d'impression"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Mode normal"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Désirez-vous configurer une autre imprimante ?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Modifier la configuration de l'imprimante"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Imprimante %s\n"
-"Que souhaitez-vous modifier sur cette imprimante ?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "Faire"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Type de connexion"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Nom, description, emplacement"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Marque, modčle, pilote"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Marque, modčle"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Choisir comme imprimante par défaut"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Ajouter cette imprimante ŕ StarOffice/OpenOffice"
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Retirer cette imprimante de StarOffice/OpenOffice"
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Imprimer des pages de test"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Savoir comment utiliser cette imprimante"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Désinstaller l'imprimante"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Désinstallation de l'ancienne imprimante Ť %s ť..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Imprimante par défaut"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "L'imprimante Ť %s ť est maintenant celle par défaut."
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Ajout de l'imprimante ŕ StarOffice/OpenOffice"
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr "L'imprimante Ť %s ť a été ajoutée avec succčs ŕ StarOffice/OpenOffice"
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr "Impossible d'ajouter l'imprimante Ť %s ť ŕ StarOffice/OpenOffice"
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Retrait de l'imprimante de StarOffice/OpenOffice"
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr "L'imprimante Ť %s ť a été retirée avec succčs de StarOffice/OpenOffice"
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "Impossible de retirer l'imprimante Ť %s ť de StarOffice/OpenOffice"
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Désirez-vous vraiment désinstaller l'imprimante Ť %s ť?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Suppression de l'imprimante Ť %s ť..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Configuration des serveurs mandataires (proxy)"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Bienvenue dans la configuration du serveur mandataire (proxy).\n"
-"\n"
-"Vous allez pouvoir configurer ici vos serveurs mandataires http et ftp\n"
-"avec ou sans identifiant et mot de passe\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Veuillez entrer les informations concernant le mandataire http\n"
-"ou laissez-les vide si vous ne voulez pas de ce mandataire"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "port"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "L'URL doit commencer par 'http:'"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Le numéro de port doit ętre numérique"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Veuillez entrer les informations concernant le mandataire ftp\n"
-"ou laissez-les vide si vous ne voulez pas de ce mandataire"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "L'URL doit commencer par 'ftp:'"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Veuillez entrer l'identifiant et le mot de passe pour le mandataire,\n"
-"si nécessaire.\n"
-"Laissez-les vides si vous n'en voulez pas"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "identifiant"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "Mot de passe"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "Ré-entrer le mot de passe"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Les mots de passe ne correspondent pas. Réessayez !"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr ""
-"Impossible d'ajouter une partition au RAID md%d car\n"
-"celui-ci est déjŕ formaté"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Impossible d'écrire le fichier %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "Ť mkraid ť a échoué"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "Ť mkraid ť a échoué (les Ť raidtools ť sont-ils installés ?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Trop peu de partitions pour du RAID de niveau %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-"Démarrage ou arręt du systčme sonore ALSA (Advanced Linux Sound "
-"Architecture) Il charge le pilote pour votre carte son, et restaure les "
-"réglages du périphérique de mixage."
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr ""
-"Anacron exécute des tâches périodiques avec une précision exprimée en jours. "
-"Les tâches sont exécutées automatiquement au redémarrage de la machine si "
-"elles ont expirés leur délai. Quelques tâches de maintenance quotidiennes et "
-"hebdomadaires sont préconfigurées pour le systčme Mandrake.(Plus d'infos "
-"dans Ť man anacron ť)"
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"Apmd surveille l'état de la batterie d'un portable, et en garde une trace "
-"(via syslog). Il peut ętre utilisé pour arręter proprement la machine "
-"lorsque la batterie est trčs faible et aprčs avoir averti les utilisateurs."
-
-#: ../../services.pm_.c:18
-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 ""
-"Service qui permet de démarrer une tâche ŕ une heure précise. Chaque tâche "
-"doit ętre créée par la commande Ť at ť, puis, a l'heure dite, le service "
-"Ť atd ť lance cette tâche. Par exemple pour éteindre automatiquement la "
-"machine ce soir ŕ 23h59, tapez Ť at 23:59 ť dans une fenętre de commande, "
-"puis Ť halt ť et <Ctrl-D>."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"Cron est un planificateur de tâches. Contrairement ŕ Anacron, les tâches "
-"sont exécutées ŕ des moments précis, pendant lesquels la machine doit ętre "
-"allumée. Ť Vixie cron ť ajoute des fonctionnalités au Ť cron ť UNIX de base "
-"(notamment une meilleure sécurité et des options de configuration plus "
-"complčtes)."
-
-#: ../../services.pm_.c:23
-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 permet d'utiliser la souris dans des applications fonctionnant en mode "
-"texte dans la console (comme par exemple Midnight Commander) . Il permet "
-"également d'utiliser le copier-coller et inclut le support des menus "
-"contextuels sur la console."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake effectue une détection matérielle, et configure éventuellement le "
-"nouveau matériel."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache est un serveur web (HTTP). Il est utilisé pour faire fonctionner un "
-"site internet."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Le métaserveur Ť inetd ť sert ŕ démarrer automatiquement les autres serveurs "
-"réseau lorsqu'une requęte est détectée. Il est notamment responsable du "
-"démarrage des serveurs telnet, ftp, rsh et rlogin, etc. Le désactiver "
-"revient ŕ désactiver tous les services qu'il gčre."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Démarre le filtrage des paquets réseau pour la série 2.2 des noyaux Linux, "
-"afin de mettre en place un pare-feu (firewall) pour protéger votre machine "
-"des attaques réseau. "
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Ce paquetage active la disposition de clavier défini dans le fichier /etc/"
-"sysconfig/keyboard. Cette disposition peut ętre modifiée en utilisant "
-"l'outil kbdconfig. Ce service devrait ętre activé sur la plupart des "
-"machines."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Régénération automatique des fichiers d'en-tętes pour le noyau\n"
-"dans le dossier /boot pour /usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Détection automatique et configuration du matériel au démarrage."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf effectue certaines tâches au démarrage afin de maintenir la "
-"configuration du systčme."
-
-#: ../../services.pm_.c:43
-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 est le serveur d'impression nécessaire au bon fonctionnement de la "
-"commande lpr. Il permet gérer les files d'attente et les demandes "
-"d'impression."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Activation / désactivation du Linux Virtual Server, qui est un service "
-"utilisé pour créer un serveur virtuel haute-performance et haute "
-"disponibilité, composé d'un ensemble de serveur linux reliés entre eux."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"Named (BIND) est un Serveur de Noms de Domaine (DNS) qui est utilisé pour "
-"convertir les adresses internet en adresses IP. (Il est principalement mis "
-"en place par les fournisseur d'accčs)"
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Effectue la connexion ou la déconnexion (montage et démontage) vers les "
-"systčmes de fichiers distants ou répertoires partagés de type NFS (Unix), "
-"SMB (Windows), et NCP (Netware) que vous avez configurés. (Pour NFS et SMB, "
-"voir le Ť Centre de contrôle Mandrake ť, dans la section Ť matériel / "
-"points de montage ť)"
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Gestion groupée de toutes les connexions réseau que vous avez configurées et "
-"que vous avez choisi d'activer dčs le démarrage du systčme. (par ex. vos "
-"connexions pour le réseau local et l'ADSL ou le Cable). Vous pouvez accéder "
-"séparément ŕ vos interfaces réseau grâce au Ť Centre de Contrôle Mandrake ť "
-"dans la section Ť Internet et réseau ť."
-
-#: ../../services.pm_.c:52
-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 ""
-"Démarrage ou arręt du serveur NFS. Un serveur NFS permet d'effectuer un "
-"partage de fichiers en ouvrant l'accčs ŕ certains dossiers depuis un réseau. "
-"Les dossiers partagés sont listés dans le fichier /etc/exports, mais vous "
-"pouvez l'éditer grâce ŕ Ť linuxconf ť dans la section Ť réseau / serveur ť."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"Ce service permet le démarrage des fonctionnalités de verrouillage des "
-"fichiers pour NFS, lorsque le noyau ne les a pas démarrées lui-męme. Cela "
-"dit les noyaux récents n'en ont pas besoin. Cependant, le service statd est "
-"aussi démarré et sert ŕ avertir les clients distants de l'arręt du serveur "
-"NFS."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Activation de la touche Ť Verr Num ť du pavé numérique du clavier au "
-"démarrage."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Support des imprimantes winprinter OKI 4w et compatibles."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA permet d'utiliser des périphériques PCCARD comme des cartes Ethernet "
-"ou des modems avec des ordinateurs portables. Ce service ne sera pas démarré "
-"ŕ moins qu'il soit correctement configuré. Il peut donc ętre activé sans "
-"danger sur des machines ne possédant pas ce type de périphériques."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Le portmapper gčre les connexions RPC qui sont utilisées par des serveurs "
-"comme NFS et NIS. Le serveur portmap doit ętre activé sur des machines "
-"jouant le rôle de serveur pour des protocoles utilisant le mécanisme RPC."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix est un agent de transport du courrier (Mail Transport Agent - MTA) "
-"permettant l'échange de courriers électroniques entre machines."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Sauvegarde et restaure l'entropie du systčme pour une meilleure génération "
-"de nombres aléatoires. (utile par exemple pour la création de clefs de "
-"cryptographie)"
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Permet de faire apparaître des périphériques de type bloc (par ex. "
-"partitions de disque dur) comme des périphériques bruts ŕ accčs direct (raw "
-"devices). Les correspondances sont établies dans le fichier /etc/sysconfig/"
-"rawdevices, et c'est la commande Ť raw ť qui est utilisée. Cela peut ętre "
-"utilisé par des bases de données comme Oracle."
-
-#: ../../services.pm_.c:71
-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 ""
-"Le service routed permet la mise ŕ jour automatique des tables de routage IP "
-"grâce au protocole RIP. Bien que RIP soit trčs utilisé sur les petits "
-"réseaux, des protocoles de routage plus complets sont nécessaires pour les "
-"réseaux de plus grande taille. "
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Le protocole rstat permet aux utilisateurs sur un męme réseau d'obtenir des "
-"mesures de la performance de n'importe quelle machine sur ce réseau."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Le protocole rusers permet aux utilisateurs de connaître tous les "
-"utilisateurs connectés aux machines supportant ce protocole."
-
-#: ../../services.pm_.c:78
-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 ""
-"Le protocole rwho permet aux utilisateurs distants d'obtenir une liste des "
-"utilisateurs connectés ŕ une machine qui fait tourner le démon rwho "
-"(similaire ŕ finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Démarrer le systčme de gestion du son sur votre machine."
-
-#: ../../services.pm_.c:81
-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 est un service utilisé par beaucoup d'autres services pour "
-"enregistrer des rapports d'activité. C'est une trčs bonne idée de toujours "
-"l'activer."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Charger les pilotes pour vos périphériques usb."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Démarre le serveur de polices de caractčres, obligatoire pour le "
-"fonctionnement de l'interface graphique (XFree)"
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-"Choisissez les services ŕ démarrer automatiquement lors du démarrage du "
-"systčme"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Impression"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Partage de fichiers"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "Systčme"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Administration ŕ distance"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Serveur de base de données"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Services : %d activés sur %d enregistrés"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Services"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "actif"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "arręté"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Serveurs et services"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr "Pas d'autre information au sujet de ce service, désolé."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Au démarrage"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Démarrer"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Arręter"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Merci d'avoir choisi Mandrake Linux 8.2"
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr "Bienvenue dans le monde Open Source"
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-"Le principe du logiciel libre est ŕ l'origine de MandrakeSoft et de son "
-"succčs. Ce systčme d'exploitation est le fruit du travail collaboratif et "
-"ouvert de la communauté Linux. Ses contributeurs passionnés sont répartis "
-"dans le monde entier."
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "Rejoignez le monde du logiciel libre !"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-"Pour mieux connaître la communauté Open Source et y contribuer, apprendre, "
-"partager vos connaissances, aider les autres membres et participer au "
-"développement d'outils, vous pouvez accéder aux nombreux forums de "
-"discussions sur nos pages Ť Communauté ť."
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet et Messagerie"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-"Mandrake Linux 8.2 vous fournit les meilleures applications pour accéder au "
-"meilleur de l'Internet: parcourir le web, visualiser des animations via "
-"Mozilla ou Konqueror, échanger des e-mails et gérer vos informations "
-"personnelles avec Evolution ou Kmail, et bien plus."
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimédia et Graphisme"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-"Grâce ŕ Mandrake Linux 8.2, profitez au maximum des capacités multimédia de "
-"votre ordinateur. Utilisez les plus récentes applications pour gérer vos "
-"fichiers audio et vidéo, éditer vos images ou collections de photos et "
-"regarder la télévision et vos vidéos, et bien plus."
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Développement"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-"Mandrake Linux 8.2 est la plate-forme de choix pour le développement. "
-"Découvrez la puissance du compilateur GNU gcc ainsi que les meilleurs "
-"environnements Open Source."
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Mandrake Control Center"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-"Le Centre de Contrôle Mandrake de Mandrake Linux 8.2 vous permet de "
-"configurer entičrement vos matériels et administrer votre machine depuis la "
-"męme application."
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "Interfaces utilisateur"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-"Mandrake Linux 8.2 fournit 11 environnements graphiques et gestionnaires de "
-"fenętres différents : GNOME 1.4, KDE 2.2.2, Window Maker 0.8, ..."
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Logiciels Serveurs"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-"En quelques clics, transformer votre ordinateur en un puissant serveur : "
-"Serveur Web, e-Mail, Pare-Feu, Routeur, Partage de Fichiers et "
-"d'Imprimantes..."
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Jeux"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-"Mandrake Linux 8.2 vous fournit les meilleurs Jeux Open Source en arcade, "
-"action, sport, réflexion, stratégie, ..."
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-"Voulez-vous apprendre au sujet de Linux de maničre simple, rapide et "
-"gratuite ? MandrakeCampus fournit un service d'apprentissage en ligne "
-"gratuit et Open Source, ainsi que des tests pour mesurer vos progrčs, sur "
-"MandrakeCampus -- votre centre d'apprentissage en ligne."
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-"Bénéficiez de l'aide de la communauté et de MandrakeSoft pour obtenir un "
-"support de qualité. En tant qu'expert, vous pourrez partagez vos "
-"connaissances et proposer du support ŕ d'autres utilisateurs sur :"
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-"Parce que chaque projet soulčve une problématique particuličre, nos "
-"consultants sont ŕ vos cotés pour vous aider ŕ trouver les réponses. "
-"MandrakeSoft vous apporte une véritable alternative informatique issue de "
-"son expérience d'éditeur."
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-"L'ensemble de nos solutions Linux, de nos offres exclusives sur nos produits "
-"et goodies sont disponibles via notre site de vente en ligne"
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-"Pour plus d'informations sur les services professionnels et les offres "
-"commerciales de MandrakeSoft, veuillez consulter la page web suivante :"
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Installation des paquetages..."
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"La table des partitions ne peut ętre lue car elle semble endommagée.\n"
-"Une réinitialisation des partitions endommagées va ętre tentée."
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Erreur !"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Impossible de trouver le fichier image Ť %s ť."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Configurateur d'installation automatisée"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Vous ętes sur le point de configurer une disquette d'auto-installation. "
-"Cette fonctionnalité est relativement dangereuse, et doit donc ętre utilisée "
-"avec précaution.\n"
-"\n"
-"La disquette d'auto-installation vous permettra d'installer un autre "
-"ordinateur avec exactement la męme configuration que le vôtre. Mais parmi "
-"l'ensemble des étapes d'installation, vous pouvez choisir lesquelles seront "
-"complčtement automatisées et lesquelles seront manuelles.\n"
-"Pour une sűreté maximale, les étapes de partitionnement et de formatage ne "
-"seront jamais faites automatiquement, quels que soient les choix que vous "
-"aviez fait lors de la premičre installation de cet ordinateur.\n"
-"\n"
-"Souhaitez-vous continuer ?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Configuration des étapes automatiques"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Veuillez choisir, pour chaque étape, si celle-ci doit ętre rejouée comme "
-"pendant votre installation, ou si elle doit s'effectuer manuellement."
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Bienvenue.\n"
-"\n"
-"Les paramčtres de l'installation automatique sont disponibles dans les "
-"sections sur la gauche."
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Félicitations !"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"La disquette a été générée avec succčs.\n"
-"Vous pouvez maintenant rejouer votre installation."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Installation automatique"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Ajouter un élément"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Supprimer le dernier élément"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" Rapport de sauvegarde (DrakBackup) \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Rapport de sauvegarde périodique (DrakBackup)\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Détails du rapport de sauvegarde\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "TOTAL :"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "Sauvegarde des fichiers systčmes..."
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "Sauvegarde sur disque dur..."
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "Sauvegarde des comptes utilisateurs..."
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Sauvegarde sur disque dur..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Sauvegarde des autres fichiers..."
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"liste envoyée par FTP : %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) Problčme de connection FTP: impossible d'envoyer les sauvegardes par "
-"FTP.\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Erreur lors de l'envoi du mail?\n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "Sélection de fichiers ou dossiers"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr "Sélectionnez les fichiers ou dossiers puis cliquez sur Ť Ajouter ť"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Veuillez cocher toutes les options dont vous avez besoin.\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Ces options peuvent sauvegarder et restaurer\n"
-"tous les fichiers du dossier de configuration systčme Ť /etc ť\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Sauvegarder le dossier de configuration systčme (dossier /etc)"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Sauvegardes incrémentales (économie d'espace)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Ne pas inclure les fichiers critiques (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Note : la sauvegarde incrémentale n'écrase pas les anciennes sauvegardes."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr "Veuillez cocher tous les comptes utilisateurs ŕ sauvegarder"
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "Ne pas inclure le cache du navigateur internet (fichiers tampon)"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Sauvegardes incrémentales (économie d'espace)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Supprimer sélection"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "Utilisateurs..."
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Sauvegarder par FTP"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Nom d'hôte ou adresse IP de la machine de sauvegarde"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr "Dossier oů poser la sauvegarde sur cette machine"
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Nom de connexion sur cette machine"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Veuillez entrer votre mot de passe"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Se souvenir du mot de passe"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "par connexion FTP..."
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "par connexion sécurisée..."
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "Sauvegarder sur CDR (ou DVDR)"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Veuillez choisir la taille de votre CD"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "CD Réinscriptible"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Effacer le CDRW avant sauvegarde"
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Veuillez vérifier que vous voulez inclure\n"
-"le lanceur de l'installation sur votre CD"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Veuillez entrer l'emplacement de votre graveur (bus,id,lun)\n"
-"(détecter avec Ť cdrecord -scanbus ť. Par exemple : 0,1,0 )"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "Sauvegarde sur cartouche"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "Nom de périphérique du matériel de sauvegarde (/dev/...?)"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr "Taille maximale de sauvegarde :"
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Dossier oů poser la sauvegarde :"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Limiter la taille de la sauvegarde"
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "par transfert réseau..."
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "Dans un dossier (local ou partagé)..."
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "toutes les heures"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "tous les jours"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "toutes les semaines"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "tous les mois"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "Sauvegarde périodique"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Veuillez choisir l'intervalle de temps entre les sauvegardes"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Quelle sauvegarde sera périodique ?"
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "celle sur Disque dur / NFS"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "celle par FTP"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-"ATTENTION : Le Ť cron ť doit ętre actif dans vos services. (voir le Ť Centre "
-"de Contrôle Mandrake ť section Ť systčme / services ť)"
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "Envoyer un rapport par mail aprčs chaque sauvegarde ŕ :"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "Quoi..."
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "Oů..."
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "Quand..."
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "Plus d'options..."
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "Configuration de sauvegarde Drakbackup"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Veuillez choisir oů stocker la sauvegarde"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "sur disque dur"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "par réseau"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Veuillez choisir ce que vous voulez sauvegarder"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "Sauvegarder le systčme"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "Sauvegarder les comptes utilisateurs"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Sélectionner individuellement les utilisateurs"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Sources de sauvegarde : \n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Fichiers systčme:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Données des utilisateurs :\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Autres fichiers ou dossiers :\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- Sauvegarde sur le disque dur dans le dossier : %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- Sauvegarde par FTP sur la machine : %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t nom de connexion : %s\n"
-"\t\t dans le dossier : %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Options:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tFichiers systčmes non inclus\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tLe sauvegarde utilise Ť tar ť et Ť bzip2 ť\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tLa sauvegarde utilise Ť tar ť et Ť gzip ť\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- Le Démon (%s) comprend :\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t-celle sur Disque dur.\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-celle sur CDR.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-celle par transfert FTP.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-celle par transfert SSH.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-"La configuration de sauvegarde n'est pas encore définie. \n"
-"Veuillez cliquer sur Ť Configuration par assistant ť, ou Ť Configuration "
-"manuelle ť\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Liste de données ŕ restaurer :\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Liste des données corrompues :\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "Veuillez le décocher ou le retirer la prochaine fois"
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "Les fichiers de sauvegarde sont corrompus"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " Toutes vos données sélectionnées ont été "
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-" correctement restaurées en prenant Ť %s ť comme dossier racine "
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " Restauration de la configuration "
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "OK pour restaurer les autres fichiers."
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "Fichiers de sauvegarde ŕ restaurer (seul le plus récent compte)"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "Sauvegarder les fichiers systčme avant :"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "Veuillez choisir la date ŕ restaurer"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Sauvegarde sur disque dur"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Restaurer ŕ partir d'un dossier"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "Veuillez entrer le dossier oů résident les sauvegardes"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Choisir un autre support de sauvegarde"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Autre support"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "Restaurer le systčme"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Restaurer les comptes utilisateurs"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Restaurer les autres fichiers ou dossiers"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "Choisir un autre dossier racine de restauration ( au lieu de / )"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Nouvelle sauvegarde avant restauration (seulement pour l'incrémental)"
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Retirer les dossiers personnels ds utilisateurs avant restauration"
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Restaurer toutes les sauvegardes..."
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "Restauration personnalisée..."
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Aide"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "<- Précédent"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Valider"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Sauvegarder !"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Restaurer !"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Suivant ->"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Merci de vouloir faire une sauvegarde avant de vouloir restaurer... (ou bien "
-"vérifiez que votre dossier de sauvegarde est correct)"
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"Impossible d'envoyer un mail\n"
-" Votre rapport n'a pas été envoyé\n"
-" Veuillez configurer Ť sendmail ť"
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Liste des paquetages ŕ installer"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Erreur pendant l'envoi par FTP.\n"
-" Veuillez corriger votre configuration FTP"
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Veuillez choisir les données ŕ restaurer..."
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Veuillez choisir le support de sauvegarde..."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Veuillez choisir les données ŕ sauvegarder..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"La configuration de sauvegarde n'est pas encore définie. \n"
-"Veuillez cliquer sur Ť Configuration par assistant ť, ou Ť Configuration "
-"manuelle ť"
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "En développement ... veuillez patienter."
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "Sauvegarde des fichiers systčmes..."
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "Sauvegarde des comptes utilisateurs..."
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Sauvegarde des autres fichiers ou dossiers..."
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "TOTAL :"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "Envoi par FTP"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Envoi des fichiers..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "Liste ŕ include sur le CDR"
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Veuillez taper la vitesse de gravure :"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-"Veuillez entrer l'emplacement de votre graveur (bus,id,lun)\n"
-"(détecter avec Ť cdrecord -scanbus ť. Par exemple : 0,1,0 )"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Veuillez vérifier si vous voulez Inclure l'install boot sur le CD"
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "Sauvegarder ŕ partir de la configuration définie"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Voir la configuration de sauvegarde"
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "Configuration par assistant"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "Configuration manuelle"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "Sauvegarder !"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-"description des options :\n"
-"\n"
-" Ŕ cette étape, Drakbackup vous permet de changer :\n"
-"\n"
-" - Le mode de compression :\n"
-" \n"
-" Si vous cochez la compression bzip2, vous compresserez\n"
-" mieux qu'avec gzip (de 2 ŕ 10 %).\n"
-" Cette option n'est pas choisie par défaut\n"
-" parce qu'elle est beaucoup plus lente.\n"
-" \n"
-" - Le mode de mise-ŕ-jour:\n"
-"\n"
-" Cette option mets ŕ jour votre sauvegarde, mais\n"
-" n'est pas vraiment utile car vous devez la\n"
-" décompresser avant de la mettre ŕ jour.\n"
-" \n"
-" - le mode .backupignore :\n"
-"\n"
-" Comme avec CVS, Drakbackup va ignorer les références\n"
-" incluses dans les fichiers .backupignore de chaque dossier.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-"\n"
-" Certaines erreurs lors de l'envoi de mails peuvent ętre causées par\n"
-" une mauvaise configuration de postfix. Pour le résoudre, vous devez\n"
-" configurer le nom de machine ou de domaine dans /etc/postfix/main.cf.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-"description des options :\n"
-"\n"
-" - Sauvegarde des fichiers systčmes :\n"
-" \n"
-"\tCette option vous permet de sauvegarder votre dossier /etc,\n"
-"\tqui contient tous les fichiers de configuration. Faites attention\n"
-"\tpendant la restauration de ne pas écraser :\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Sauvegarde des comptes utilisateurs :\n"
-"\n"
-"\tCette option vous permet de choisir les utilisateurs \n"
-"\tŕ sauvegarder.\n"
-"\tPour préserver l'espace disque, il est recommandé\n"
-"\tde ne pas inclure les dossier Ť cache ť des navigateurs.\n"
-"\n"
-" - Sauvegarde des autres fichiers : \n"
-"\n"
-"\tCette option vous permet d'ajouter d'autres données\n"
-"\tŕ sauvegarder. Pour l'instant il n'est pas possible de faire\n"
-"\tune sauvegarde incrémentale avec cette option.\t\t\n"
-" \n"
-" - Sauvegardes incrémentales:\n"
-"\n"
-"\tLa sauvegarde incrémentale est l'option la \n"
-"\tplus puissante pour la sauvegarde. Elle vous permet \n"
-"\tde tout sauver la premičre fois, puis seulement les \n"
-"\tchangements les fois suivantes.\n"
-"\tAinsi vous serez capable de restaurer les données\n"
-"\tcorrespondant ŕ n'importe quelle sauvegarde précédente.\n"
-"\t\n"
-"\tSi vous n'avez pas sélectionné cette option, toutes\n"
-"\tvos sauvegardes précédentes sont préalablement éffacées. \n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"description de la restauration :\n"
-" \n"
-"Seule la date de sauvegarde choisie la plus récente sera utilisée, car avec\n"
-"le mode incrémental, toutes les sauvegardes précédentes doivent ętre "
-"restaurées.\n"
-"\n"
-"Donc si vous ne voulez pas restaurer un utilisateur, décochez toutes ses "
-"cases\n"
-"\n"
-"Sinon, vous ne pouvez en choisir qu'une\n"
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft par DUPONT Sébastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-" Ce programme est un logiciel libre : vous pouvez le redistribuer\n"
-"et/ou le modifier selon les termes de la Ť GNU General Public\n"
-"License ť, tels que publiés par la Ť Free Software Foundation ť; soit\n"
-"la version 2 de cette licence ou (ŕ votre choix) toute version\n"
-"ultérieure.\n"
-"\n"
-"Ce programme est distribué dans l'espoir qu'il sera utile, mais\n"
-"SANS AUCUNE GARANTIE, ni explicite ni implicite; sans męme les\n"
-"garanties de commercialisation ou d'adaptation dans un but spécifique.\n"
-"Se référer ŕ la Ť GNU General Public License ť pour plus de détails.\n"
-"\n"
-"Vous devriez avoir reçu une copie de la Ť GNU General Public License ť\n"
-"en męme temps que ce programme; sinon, écrivez ŕ la Ť Free Software\n"
-"Foundation ť, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-"Description:\n"
-"\n"
-" Drakbackup sert ŕ sauvegarder votre systčme.\n"
-" Pendant sa configuration vous pouvez sélectionner: \n"
-"\t- des fichiers systčmes, \n"
-"\t- des comptes utilisateur, \n"
-"\t- d'autres données.\n"
-"\tou Tout votre systčme ... et d'autres (comme des partitions Windows)\n"
-"\n"
-" Drakbackup vous permet de faire des sauvegarde sur:\n"
-"\t- Disque dur.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (avec autoboot, récupération and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Cartouche.\n"
-"\n"
-" Drakbackup peut restaurer votre systčme vers un dossier choisi\n"
-"\n"
-" Par défaut toute sauvegarde sera stockée dans le\n"
-" dossier /var/lib/drakbackup\n"
-"\n"
-" Fichier de configuration :\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Étape de restauration :\n"
-" \n"
-" Pendant l'étape de restauration, DrakBackup va retirer \n"
-" votre dossier d'origine et vérifier que tous les \n"
-" fichiers de sauvegarde ne sont pas corrompus. Il est recommandé \n"
-" de faire une derničre sauvegarde avant restauration.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-"description des options :\n"
-"\n"
-"Attention en utilisant la sauvegarde par FTP, car seulement \n"
-"les sauvegardes déjŕ construites sont envoyées vers le serveur.\n"
-"Ainsi, pour le moment, vous devez faire une sauvegarde sur disque dur\n"
-"avant de l'envoyer vers le serveur.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-"\n"
-"Problčmes de restauration :\n"
-"\n"
-"Avant l'étape de restauration, Drakbackup va vérifier tous vos\n"
-"fichiers de sauvegarde. Les dossiers originaux seront effacés\n"
-"et vous allez perdre toutes vos données. Il est important de \n"
-"faire les choses avec précaution et de ne pas modifier ŕ la main\n"
-"les fichiers de sauvegarde.\n"
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-"Description:\n"
-"\n"
-" Drakbackup sert ŕ sauvegarder votre systčme.\n"
-" Pendant sa configuration vous pouvez sélectionner: \n"
-"\t- des fichiers systčmes, \n"
-"\t- des comptes utilisateur, \n"
-"\t- d'autres données.\n"
-"\tou Tout votre systčme ... et d'autres (comme des partitions Windows)\n"
-"\n"
-" Drakbackup vous permet de faire des sauvegarde sur:\n"
-"\t- Disque dur.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (avec autoboot, récupération and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Cartouche.\n"
-"\n"
-" Drakbackup peut restaurer votre systčme vers un dossier choisi\n"
-"\n"
-" Par défaut toute sauvegarde sera stockée dans le\n"
-" dossier /var/lib/drakbackup\n"
-"\n"
-" Fichier de configuration :\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Étape de restauration :\n"
-" \n"
-" Pendant l'étape de restauration, DrakBackup va retirer \n"
-" votre dossier d'origine et vérifier que tous les \n"
-" fichiers de sauvegarde ne sont pas corrompus. Il est recommandé \n"
-" de faire une derničre sauvegarde avant restauration.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "L'installation de %s a échoué pour la raison suivante :"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Chercher les polices installées"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Désélectionner les polices installées"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "Parcourir toutes les polices"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "aucune fonte trouvée"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "terminé"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "impossible de trouver des polices dans vos disques"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Résélectionnez des polices correctes"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "impossible de trouver des polices.\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Chercher des polices dans la liste des installées"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Copie des fontes"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "Installation de polices Ť True Type ť"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "Veuillez patienter pendant Ť ttmkfdir ť"
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "Installation Ť True Type ť terminée"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "Conversion de polices"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "création de type1inst"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr "Inscription dans ghoscript"
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "Conversion de polices Ť True Type ť"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "Conversion de polices Ť pfm ť"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Supprimer les fichiers temporaires"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "Relancer le serveur de polices"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Supprimer les fichiers de polices"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "redémarrage du serveur de fonte"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Avant d'installer des polices de caractčres, assurez-vous que vous avez\n"
-"les permissions de les utiliser et de les installer sur votre systčme. \n"
-"\n"
-"- Vous pouvez installer les polices par la voie habituelle. Dans de rares "
-"cas,\n"
-"des polices boguées peuvent bloquer votre serveur d'affichage XFree."
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "Importation de polices"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Récupérer les polices de Windows"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Désinstaller des polices"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Options avancées"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Liste des polices"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Choisissez les applications qui supporteront ces polices"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Imprimante générique"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Sélectionnez les polices ou dossiers et cliquez sur Ť Ajouter ť"
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Installe la liste"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "Cliquez ici si vous ętes sűr"
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "Ici sinon"
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "Désélectionne tout"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Sélectionne tout"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "Désinstalle la liste"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Tests initiaux"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Copier les polices sur votre systčme"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Installe et convertit des polices"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Post-installation"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "Retirer des polices de votre systčme"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Post-désinstallation"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Partage de la connexion internet"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Le partage de la connexion internet est activé"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"La configuration du partage de la connexion ŕ l'internet a déjŕ été\n"
-"effectuée. Elle est actuellement activée.\n"
-"\n"
-"Que voulez-vous faire ?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "désactiver"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "ne rien faire"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "reconfigurer"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Désactivation des serveurs..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Le partage de la connexion ŕ l'internet est maintenant désactivé."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Le partage de la connexion ŕ l'internet est désactivé"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"La configuration du partage de la connexion ŕ l'internet a déjŕ été\n"
-"effectuée. Elle est actuellement désactivée.\n"
-"\n"
-"Que voulez-vous faire ?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "activer"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Activation des serveurs..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Le partage de la connexion internet est maintenant activé."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Votre ordinateur peut ętre paramétré afin de partager sa connexion "
-"internet.\n"
-"Avec cette fonctionnalité, d'autres ordinateurs sur votre réseau local "
-"pourront utiliser la connexion internet de cet ordinateur.\n"
-"\n"
-"Veuillez noter que vous avez besoin d'une carte réseau dédiée ŕ votre réseau "
-"local."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interface %s (utilisant le module %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Interface %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Aucune carte réseau n'est présente dans votre systčme"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Aucune carte réseau n'a été détectée sur votre systčme. Veuillez utiliser "
-"l'outil de configuration du matériel."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Carte réseau"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Une seule carte réseau est configurée sur votre systčme :\n"
-"\n"
-"%s\n"
-"\n"
-"Je vais configurer votre réseau local avec cette carte réseau."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Veuillez choisir quelle carte réseau sera connectée ŕ votre réseau local"
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Interface réseau déjŕ configurée"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"Attention, la carte réseau (%s) est déjŕ configurée.\n"
-"\n"
-"Désirez-vous une reconfiguration automatique ?\n"
-"\n"
-"Vous pouvez le faire manuellement, mais vous devez savoir ce que vous faites."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Reconfiguration automatique"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "Montrer la configuration actuelle"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"Configuration actuelle de Ť %s ť :\n"
-"\n"
-"Réseau : %s\n"
-"Adresse IP : %s\n"
-"Attribution de l'adresse : %s\n"
-"Pilote : %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Je peux conserver votre configuration actuelle, et supposer que vous avez "
-"déjŕ\n"
-"configuré un serveur DHCP ; dans ce cas veuillez vérifier que j'ai "
-"correctement\n"
-"lu l'adresse du réseau de Classe C que vous utilisez pour votre réseau "
-"local ;\n"
-"je ne le reconfigurerai pas et je ne toucherai pas ŕ la configuration de "
-"votre\n"
-"serveur DHCP.\n"
-"\n"
-"Sinon, je peux reconfigurer votre interface et (re)configurer un serveur "
-"DHCP.\n"
-"\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "Réseau Local de class C"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "Adresse IP du serveur DHCP"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Re-configurer l'interface et le serveur DHCP"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Le réseau local ne finissait pas par `.0', j'abandonne."
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Conflit potentiel d'adresses du réseau local trouvé dans la configuration de "
-"%s !\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Configuration du Firewall détectée"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Attention ! Une configuration existante du Firewall a été détectée. Vous "
-"devrez peut-ętre modifier la configuration manuellement aprčs l'installation."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Configuration en cours..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Configuration des scripts, installation des logiciels, démarrage des "
-"serveurs..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Des problčmes sont apparus en installant le paquetage %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Tout a été configuré.\n"
-"Vous pouvez maintenant partager votre connexion internet avec d'autres "
-"ordinateurs sur votre réseau local, en utilisant la configuration réseau "
-"automatique (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-"La configuration a déjŕ été effectuée, mais elle est actuellement désactivée."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-"La configuration a déjŕ été effectuée, et elle est actuellement activée."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Le partage de la connexion internet n'a encore jamais été configuré."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Configuration du partage de la connexion internet"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Bienvenue dans l'utilitaire de partage de connexion internet !\n"
-"\n"
-"%s\n"
-"\n"
-"Cliquez sur Configurer pour lancer l'assistant de configuration."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuration du réseau (%d cartes réseaux)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil : "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Effacer le profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil ŕ effacer :"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nouveau profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Nom du profil ŕ créer (le nouveau profil est créé comme une copie du profil "
-"courant :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nom de machine : "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Accčs internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Type :"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Passerelle :"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface :"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "État :"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Veuillez patienter"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurer l'accčs ŕ l'internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuration LAN (réseau local)"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Pilote"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocole"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "État"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurer le réseau local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Cliquez ici pour lancer l'assistant ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistant..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Appliquer"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Veuillez patienter... mise en place de la configuration"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Connecté"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Non connecté"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Se connecter..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Se déconnecter..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Attention, une autre connexion internet a été détectée, peut-ętre utilisant "
-"votre réseau"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Vous n'avez aucune interface réseau configurée.\n"
-"Vous pouvez en configurer une en cliquant sur Ť Configurer ť"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuration du LAN (réseau local)"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Carte réseau %s : %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocole d'amorçage"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Lancer au démarrage"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "activer maintenant"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "désactiver maintenant"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Cette interface n'a pas encore été configurée.\n"
-"Lancez l'assistant de configuration dans la fenętre principale"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Vous n'avez aucune connection internet.\n"
-"Vous pouvez en créer une en cliquant sur Ť Configurer ť"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuration de la connexion internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuration de la connexion internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Type de connexion : "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Paramčtres"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Passerelle"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Carte ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Mise en place du niveau de sécurité"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Centre de contrôle"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Choisissez l'outil que vous voulez utiliser"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "Canada (cable)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (hertzien)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "USA (cable)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "USA (cable ou HRC)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Chine (hertzien)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japon (hertzien)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "Japon (cable)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Europe de l'est"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Irlande"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "Europe de l'ouest"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Australie"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "Nouvelle Zélande"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "Afrique du Sud"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Argentine"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"SVP,\n"
-"Veuillez choisir votre région et votre norme de TV"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "Norme TV :"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Zone :"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "Recherche des canaux de télévision en cours ..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "Recherche des canaux de télévision"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr "Aucune carte TV détectée !"
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-"Aucune carte TV n'a été détectée sur votre ordinateur. Veuillez vérifier qu'une carte TV/Vidéo supportée par Linux est correctement branchée.\n"
-"\n"
-"\n"
-"Vous pouvez visiter notre base de données de support matériel ŕ :\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "utilisation : keyboarddrake [--expert] [clavier]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Veuillez choisir votre type de clavier."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Voulez-vous que la touche BackSpace retourne Delete en console ?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Changer de cédérom"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Changement de cédérom\n"
-"\n"
-"Veuillez insérer le cédérom d'Installation dans votre lecteur.\n"
-"Ceci fait, cliquez sur Ť OK ť.\n"
-"\n"
-"Si vous ne le possédez pas, cliquez sur Ť Annuler ť pour annuler la mise ŕ "
-"jour."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Impossible de démarrer la mise ŕ jour !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-"Les changements ont été effectués mais ne seront effectifs qu'aprčs votre "
-"déconnection"
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "N'afficher que les pour les jours sélectionnés"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Fichier/_Nouveau"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Fichier/_Ouvrir"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Fichier/_Enregistrer"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Fichier/Enregistrer _Sous"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Fichier/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Options"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Options/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Aide"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Aide/_A propos..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "Utilisateur"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "Messages"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "Syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Explications sur les Outils Mandrake"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "chercher"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Un outil pour voir vos fichiers journaux"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Paramčtres"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "contenant"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "mais ne contenant pas"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Choisir le fichier"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Calendrier"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Contenu du fichier"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "Alerte mail/SMS"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "s'il vous plaît attendez, examen du fichier : %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "Configuration des alertes mail/SMS"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Bienvenue dans l'utilitaire de configuration mail/SMS.\n"
-"\n"
-"Vous allez pouvoir configurer ici vos les alertes systčmes.\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "configuration des services"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-"Vous recevrez une alerte si l'un des services sélectionnés ne tourne plus"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "chargement des paramčtres"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Vous recevrez une alerte si la charge machine dépasse cette valeur"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "configuration des alertes"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "Configurer les moyens de vous alerter"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Enregistrer sous..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Veuillez choisir le type de votre souris."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "aucun périphérique USB série trouvé\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Émuler le troisičme bouton ?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "%s trouvé sur %s, configurer ?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Sélectionnez un scanner"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "Ce scanner %s n'est pas supporté"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-"Scannerdrake n'a pas réussi ŕ détecter votre scanner %s.\n"
-"Veuillez sélectionner le périphérique sur lequel votre scanner est branché"
-
-#: ../../standalone/scannerdrake_.c:96
-msgid "choose device"
-msgstr "choisissez le périphérique"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"Ce scanner (%s) doit ętre configurée par printerdrake.\n"
-"Vous pouvez lancer printerdrake depuis le Centre de Contrôle Mandrake dans "
-"la section Matériel"
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"Votre scanner %s a été configuré.\n"
-"Vous pouvez maintenant scanner des documents en utilisant Ť XSane ť ŕ partir de Multimédia/Graphisme dans le menu des applications."
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Configuration du Firewall"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Configuration du Firewall"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewall (pare-feu)\n"
-"\n"
-"Vous avez déjŕ configuré un firewall.\n"
-"Cliquez sur Ť Configurer ť pour changer ou supprimer le firewall"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Pare-feu (Firewall)\n"
-"\n"
-"Cliquez sur Configurer pour mettre en place un pare-feu standard"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Choix de la langue"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Classe d'installation"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Détection des disques durs"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Configuration de la souris"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Choix du clavier"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Sécurité"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Systčmes de fichiers"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formatage des partitions"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Choix des paquetages"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Installation du systčme"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Ajout des utilisateurs"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Configuration du réseau"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Configuration des services"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Programme d'amorçage"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Disquette d'amorçage"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Configuration de X"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Mise-ŕ-jour systčme"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Fin de l'installation"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Configuration d'un mini-firewall\n"
-"\n"
-"Cela configure un firewall (pare-feu) personnel pour votre machine Mandrake "
-"Linux.\n"
-"Si vous souhaitez un firewall plus puissant ou dédié, veuillez plutôt "
-"utiliser\n"
-"la distribution spécialisée Ť MandrakeSecurity ť."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Nous allons maintenant vous poser des questions sur quels services vous\n"
-"souhaitez pouvoir connecter ŕ l'internet. Veuillez réfléchir avec soin sur\n"
-"chacune de ces questions, car la sécurité de votre ordinateur est\n"
-"importante.\n"
-"\n"
-"S'il vous plaît, si vous n'utilisez par l'un de ces services,\n"
-"désactivez-le. Vous pouvez changer cette configuration n'importe quand, en\n"
-"redémarrant cette application !"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Utilisez-vous un serveur web sur cette machine, que vous avez besoin de\n"
-"rendre visible depuis tout l'internet ? Si vous utilisez un serveur web\n"
-"pour seulement cette machine, vous pouvez répondre NON ici.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Utilisez-vous un serveur de nom sur cette machine ? Si vous n'avez pas\n"
-"configuré un tel serveur pour donner des informations d'IP et de zone\n"
-"pour tout l'internet, veuillez répondre NON.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Voulez-vous permettre les connexions sécurisées entrantes (par le\n"
-"protocole ssh) ? C'est un remplacement de telnet que vous pouvez utiliser\n"
-"pour vous connecter sur une machine distante. Si vous utilisez telnet en\n"
-"ce moment, vous devriez vraiment passer ŕ ssh. telnet n'est pas encrypté\n"
-"-- par exemple des pirates peuvent voler votre mot de passe. ssh est\n"
-"encrypté et interdit les écoutes clandestines (eavesdropping)."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Voulez-vous permettre les connexions entrantes en telnet ?\n"
-"C'est trčs dangereux, comme nous l'avons expliqué dans l'écran précédent.\n"
-"Nous recommandons fortement de répondre NON ici et d'utiliser ssh ŕ\n"
-"la place de telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Utilisez-vous un serveur FTP, que vous voulez visible depuis l'internet ?\n"
-"Si c'est le cas, nous recommandons fortement de ne l'utiliser que\n"
-"pour les transferts en mode anonyme. Tous les mots de passe envoyés\n"
-"par FTP peuvent ętre volés par des pirates, car FTP n'utilise pas\n"
-"non plus d'encryption pour transférer les mots de passe.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Utilisez-vous un serveur de mail (courrier électronique) ? Si vous\n"
-"envoyez des messages avec pine, mutt ou d'autres clients mail texte,\n"
-"vous en utilisez probablement un. Sinon, vous devriez répondre NON.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Utilisez-vous un serveur POP ou IMAP ? C'est utilisé pour\n"
-"héberger des comptes mail qui ne sont pas basés sur des interfaces\n"
-"web.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Vous utilisez un noyau en version 2.2. Si votre adresse IP réseau est\n"
-"attribuée automatiquement par un ordinateur sur votre réseau (adresse\n"
-"dynamique), nous avons besoin d'autoriser cela. Est-ce le cas ?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Est-ce que l'heure de votre ordinateur est synchronisée avec un\n"
-"autre ordinateur ? La plupart du temps, c'est utilisé par des\n"
-"sociétés de taille moyenne ou grande, basées sur Unix/Linux,\n"
-"pour synchroniser les heures de connexion, etc. Si vous ne\n"
-"faites pas partie d'une telle société et n'avez pas entendu\n"
-"parler de ce problčme, vous n'avez probablement pas besoin\n"
-"de ce service."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"La configuration est terminée. Devons nous écrire ces changements sur "
-"disque ?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Échec de l'ouverture de %s : %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Échec de l'ouverture de %s en écriture : %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr "Non, je n'ai pas besoin de DHCP"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr "Oui, j'ai besoin de DHCP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr "Non, je n'ai pas besoin de NTP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr "Oui, j'ai besoin de NTP"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr "Ne pas sauver"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr "Sauver et Quitter"
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "Assisatant de Configuration du Firewall"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr "Non (en bloquer l'accčs depuis le réseau)"
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr "Oui (autoriser ceci ŕ traverser le firewall)"
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr "Veuillez patientez... Vérification des paquetages installés"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Échec lors de l'installation des paquetages nécessaires : %s et Bastille.\n"
-"Essayez de les installer manuellement."
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Ordinateur réseau (client)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "Serveur NFS, serveur SMB, serveur Proxy (mandataire), serveur SSH"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Bureautique"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Station de travail Gnome"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Outils pour votre Palm Pilot ou votre Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Station de travail"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Firewall/Routeur"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Serveur de Nom et serveur d'Information Réseau"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Programmes pour la bureautique : traitements de texte (kword, abiword), "
-"tableurs (kspread, gnumeric), visualiseur pdf, etc"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Outils audio : lecteurs mp3 ou midi, mixeurs, etc"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Livres et Howto's sur Linux et le Logiciel Libre"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Station de travail KDE"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimédia - Vidéo"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-"Utilitaires pour le courrier électronique, les news, le web, le transfert de "
-"fichiers, les discussions en ligne"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Base de Données"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Serveurs de bases de données PostgreSQL ou MySQL"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Outils pour faciliter la configuration de votre ordinateur"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimédia - Son"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitaires"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Documentation"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Utilitaires console"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Serveur de courrier Postfix, serveur de news Inn"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "internet"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimédia"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Configuration"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Plus d'Environnements de Bureau (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"Le K Desktop Environement, l'environnement de bureau de base avec sa "
-"collection d'outils"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Environnement graphique"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache et Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Outils pour créer et graver des CDs"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Station de travail bureautique"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Serveur"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Programmes de graphisme comme The gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr ""
-"Bibliothčques de développement C et C++, programmes et fichiers d'en-tęte"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Serveur réseau"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "E-mail/Groupware/News"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Jeux"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Lecteurs et éditeurs vidéo"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimédia - Graphisme"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-"Programmes de divertissement : jeux d'arcade, de plateaux, de stratégie, etc"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Ensemble d'outils pour lire ou envoyer des courriers électronique (pine, "
-"mutt), des news (tin), et pour naviguer sur le Web"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivage, émulateurs, surveillance"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Gestion Financičre"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Un environnement de bureau avec un ensemble d'applications et d'outils "
-"intuitifs"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Clients pour différents protocoles dont ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Passerelle internet"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programmes pour jouer/éditer du son et de la vidéo"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Autres Environnements de Bureau"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Éditeurs, interpréteurs, utilitaires fichiers, terminaux"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programmes pour gérer votre finance, comme gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Gestionnaire d'Information Personnel"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimédia - Gravage de CD"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Applications scientifiques"
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
deleted file mode 100644
index 30649a12a..000000000
--- a/perl-install/share/po/ga.po
+++ /dev/null
@@ -1,11023 +0,0 @@
-# Irish translations for DrakX, the Mandrake Installer.
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Irish Linux Users Group <ilug@linux.ie>, 1999
-#
-# Credits where due:
-# Proinnsias Breathnach <breatpro@dublin.ml.com-nospam>
-# Donncha Ó'Caoimh <donncha.ocaoimh@tradesignals.com-nospam>
-# Barra Ó'Caoimh <Care of donncha.ocaoimh@tradesignals.com-nospam>
-# John McDonnell <johnmc@student.nuigalway.ie-nospam>
-# <Alastair McKinstry <mckinstry@computer.org>
-# Who've all contributed so far.
-# Proinnsias 16-Dec-1999
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 1999-12-16 10:33+0100\n"
-"Last-Translator: Proinnsias Breathnach <breatpro@dublin.ml.com>\n"
-"Language-Team: Gaeilge <ga@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Cumraigh gach cinn ar leith"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Cumraigh carta \"%s\" (%s) amhain"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Cumraíochti gach cinn iolrach"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Carta Grafach"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Roghnaigh carta grafachach"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Roghnaigh freastalaí X"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X freastalaí"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Roghnaigh freastalaí X"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X freastalaí"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "Freastalaí XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s le luadghearú crua-earraí 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "Freastalaí XFree %s le luasghearú crua-earraí 3D TRIALACH"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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:417
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Cumraíocht XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Roghnaigh an méid cuimhne atá id' charta grafachach"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Roghnaigh cumraíocht an freastalaí"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Roghnaigh scáileán"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Scáileán"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Ráta athnuachana cothrománach"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Ráta athnuachana ingearach"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Níl aon scáileán cumraithe"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Níl aon carta grafachach cumraithe"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Níl aoin réiteach cumraithe"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Trialaigh an cumraíocht"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"bain trial as roinnt paraiméadair a athrú"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Tharla Earráid:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Ag éalú i %d siocand"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "An bhfuil seo ceart?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Tharla earráid, bain trial as roinnt paraiméadair a athrú"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Réiteach"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Roghnaigh Réiteach agus an méid dath"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Carta Grafach: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Freastalaí XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mór"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ceart go Leor"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mód Saineolaí"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Taispéan gach ceann"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Réiteachaí"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Leagan amach eocharchlára: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Cineál luchóg: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Gaireas luchóige: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Scáileán: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Scáileán HorizSync: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Scáileán VertRefresh: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Carta Grafach: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Carta Grafach: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Cuimhne grafach: %s kb\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, fuzzy, c-format
-msgid "Color depth: %s\n"
-msgstr "Scáileán VertRefresh: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Réiteachaí: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Freastalaí XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Tiománaí XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Ag ullmhú cumraíocht X-Windows"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Céard a theastaíonn uait a dhéanamh?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Athraigh Scáileán"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Athraigh carta grafach"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Athraigh cumraíocht an freastalaí"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Athraigh Réiteach"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Taispeán Eolas"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Bain trial as arís"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Éalaigh"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, fuzzy, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr "Coimead an cumraíocht IP atá ann"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X ag tús"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Is féidir linn do ríomhaire a shocrú le X a thosnú i ndhiadh bootáil.\n"
-"An dteastaíonn uait go dtosnófar X nuair a aththosnítear an ríomhaire?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Éirigh as le do thoil agus Crtl-Alt-BackSpace a úsáid"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 dath (8 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 míle dath (15 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 míle dath (16 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milliún dath (24 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 billiún dath (32 giotáin)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB nó níos mó"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Gnáth VGA, 640x480 ag 60Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 ag 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Cinéal 8514, 1024x768 ag 87 Hz Idirdhuillith (gan 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ag 87 Hz Idirdhuillithe, 800x600 ag 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "SVGA Leathnaithe, 800x600 ag 60 Hz, 640x480 ag 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA Neamh-idirdhuillithe, 1024x768 ag 60 Hz, 800x600 ag 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA d'árd minicíocht, 1024x768 ag 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Scáileán ilmhinicíocht a bhfuil in ann do 1280x1024 ag 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Scáileán a bhfuil in ann do 1600x1200 ag 70Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Scáileán a bhfuil in ann do 1600x1200 ag 76Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr ""
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr ""
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Roghnaigh rang feistiú"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr ""
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Feistiú LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO le chlár teacs"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO le Chlár Graphaice"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Bootáil as DOS/Windows (loadin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Príomhroghanna bootáil"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Ríomhchlar Tosnaithe a úsáid "
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Feistiú cód tosnaithe"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Gaireas bootáil"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr ""
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Compact"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "compact"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Mód fís"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr ""
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Pasfhocal"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Pasfhocal (arís)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Teorannaigh roghanna líne ordú"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "teorannaigh"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Glan /tmp nuair a thosnaigh an coráis"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr ""
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr ""
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Tabhair na Méid Cuimhne as MB"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Aththrialaigh"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Ní mar a chéile na pasfhocail"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Scéal Tosnú"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr ""
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr ""
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "OS Loiceadh?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Suim"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Críochnithe"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Athraigh"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Cén sort iontráil a suimigh do"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "CO Eile (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "CO Eile (MunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "CO Eile (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Iomha"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Append"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Léamh-Scríobh"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Table"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Baolach"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Lipéad"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Gnáth"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Méid-Initrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "GanBhideó"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Scrios iontráil"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Níl ceadaigh an lipéad folamh ann"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Níl aon ranna agat!"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Is ann cheana don ainm úsáideora seo"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Fuair %s %s comhéadan"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "An bhfuil ceann eile agat?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "An bhfuil comhéadan %s agat?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Níl"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Tá"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Leámh an t-eolais crua-earra"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Ag feistáil tiomanaí do %s, carta %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modíl %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr ""
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr ""
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Cumraigh roghanna"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Roghachais modúil:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr ""
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Tá an pasfhocal seo ro-shimplí"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr ""
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Is ann cheana don ainm úsáideora seo"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Suimigh úsáideoir"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr ""
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Fíor ainm"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Ainm úsáideora"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Blaosc"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Dealbh"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Uath-Logann"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Is féidir linn do ríomhaire a shocrú le X a thosnú i ndhiadh bootáil.\n"
-"An dteastaíonn uait go dtosnófar X nuair a aththosnítear an ríomhaire?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Roghnagih an úsáidoer gneás:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Roghnaigh an Bainistéoir Fhuinneoga a úsásd:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Roghnaight do theangam le do thoil."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr ""
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Gach Rud"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Suimigh úsáideoir"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Socraithe"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "Ag Tosnaigh CUPS"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cealaigh"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr ""
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Bocht"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr ""
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Árd"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Árd"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranóid"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Roghnaigh liebhéal slándáil"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Roghnaigh liebhéal slándáil"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Roghnaigh cumraíocht an freastalaí"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-
-# 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
-#
-# FIXME
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Fáile go GRUB, an roghnóir Choráis "
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr ""
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr ""
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Deasc"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Clár Tosnú"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr ""
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr ""
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Cumraíocht Stíl Tosnú"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/C_omhad"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Comhad/_Ealu"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>E"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Scáileán Stíl Nua"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Scáileán Tradisiúnta"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Monatóir Tradisiúnta Gtk+"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Tosnaigh Aurora "
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Mód Lilo/Grub"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Mód Yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Cumraigh"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Mód Coras"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr ""
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr ""
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "Ceart go Leor"
-
-#: ../../bootlook.pm_.c:229
-#, fuzzy, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "Earráid ag oscailt %s do scríobh: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d noiméaid"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 noiméad"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d siocand"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Ní féidir liom rann eile a cur isteach"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Fraince"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Belgáiris"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-#, fuzzy
-msgid "Germany"
-msgstr "Gearmáinis"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Greicís"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Ioruais"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Amharc"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Iodálais"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "srathach"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Léigh go curamach"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Earráid"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Draíodoir"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Roghnaigh gníomh"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Tá rann mór FAT amháin agat.\n"
-"Molaim dhuit an rann sin a athmhéadú ar dtús\n"
-"(roghnaigh an rann agus brú ar \"Athméidigh\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Roghnaigh rann le do thoil"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Sonraí"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Malairte"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Folamh"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Eile"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Cineál córais-comhadlanna"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Cruthaigh"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Cineál"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Scríos"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Roghnaigh gníomh"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Cruthaigh rann nua"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Leasú"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Lean ar aghaidh ar aon nós?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Éalaigh gan sabháil"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Éalaigh gan an clár-ranna a scríobh?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Glan gach ceann"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Eolas R-Phost"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Tá na ranna príofa uilig úsáidthe"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Ní féidir liom rann eile a cur isteach"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Le breis ranna a bheith agat, dealaigh ceann amháin le bheith in ann "
-"rannsínithe a cruthú"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Scriobh clár-ranna"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Scriobh clár-ranna"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Scriobh clár-ranna"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Roghnaigh Comhad"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Níl an méid céanna ar an rann cúltaca\n"
-"Lean ar aghaidh ar aon nós?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Rabhadh"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Cur diosca flapach sa dioscthiomant\n"
-"Caillfear gach sonra ar an dhiosca seo"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Ag iarraidh an clár-ranna a tarrtháil"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "Eolas R-Phost"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Roghnachais"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Athméidigh"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Bog"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formáidigh"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Cur le RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Cur le LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Bain ó RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Bain ó RAID"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Athraigh RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Cruthaigh rann nua"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Teascán tosasch: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Méid i MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Cineál córas-comhadlanna:"
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Tosaíocht: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Ag formáidiú comhad 'loopback' %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Athraigh cineál ranna"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-#, fuzzy
-msgid "Which filesystem do you want?"
-msgstr "Cén rann atá uait?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Ag ríomhadh teorainn na córais-comhadlanna FAT"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Ag athméadú"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:614
-#, fuzzy
-msgid "All data on this partition should be backed-up"
-msgstr "caillfear gach sonra ar an rann seo"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Roghnaigh an méid nua"
-
-#: ../../diskdrake/interactive.pm_.c:622
-#, fuzzy
-msgid "New size in MB: "
-msgstr "Méid i MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Teascán"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Cén tescán ag a dteastaíonn uait é a bhogadh?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Ag bogadh"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Ag bogadh rann..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Roghnaigh RAID atá ann le méadú"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "nua"
-
-#: ../../diskdrake/interactive.pm_.c:714
-#, fuzzy
-msgid "Choose an existing LVM to add to"
-msgstr "Roghnaigh RAID atá ann le méadú"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "ainm LVM?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Fíor ainm"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:804
-#, fuzzy
-msgid "Mount options"
-msgstr "Roghachais modúil:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "gaireas"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "leibhéal"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "méid smután"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Cén sort rannú atá ort?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Níl mé sasta /boot a cruthú comh fada sin isteach sa diosca, (ar sorcóir > "
-"1024).\n"
-"Má tá tú ag úsáid LILO ní oibróidh sé, nó níl /boot uait muna n-úsáideann tú "
-"LILO"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Tá an rann atá roghnaithe agat don fréamh (/) suitithe i ndhiadh an 1024ú\n"
-"sorcóir ar an dhiosca, agus níl aon rann /boot agat.\n"
-"Má tá tú chun LILO a úsáid, beidh ort rann /boot a cruthú ar ball."
-
-#: ../../diskdrake/interactive.pm_.c:934
-msgid ""
-"You've selected a software RAID partition as root (/).\n"
-"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Scríobhfar clár diosca %s go dhiosca!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Beidh ort an ríomhaire a aththosnú sula ndéanfar an athrú"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Ag formáidiú"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Ag formáidiú comhad 'loopback' %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Ag formáidiú rann %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "teip ar 'mkraid'"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Cruthaigh rann nua"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Cruthaigh rann nua"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Réiteachaí: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Gaireas: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Litir Dioscthiománt DOS: %s (buile faoi thuraim)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Cineál: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Ainm: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Tús: teascán %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Méid: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s teascáin"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Sorcóir %d go sorcóir %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formáidithe\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Neamhformáidithe\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Rann tosaithe de ghnáth\n"
-" (do thosnú MS-DOS, ní lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Leibhéal %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Méid smután %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Dioscaí RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Méid: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Céimseasamh: %s sorcóir, %s ceann, %s teascán\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-#, fuzzy
-msgid "Info: "
-msgstr "Eolas"
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Dioscaí LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Cinéal tabla rann: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "ar bhús %d, id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Roghnachais: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Cineál córas-comhadlanna:"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Ní mar a chéile na pasfhocail"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "Athraigh cineál ranna"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Roghnaigh rann le do thoil"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "freastalaí DNS"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "Formáidiú %s de %s teipithe"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "níl a fhios agam conas %s a formáidiú go %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "simplí"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "Freastalaí"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr ""
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr ""
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr ""
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr ""
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr ""
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Earráid ag oscailt %s do scríobh: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Tharla earráid - ní fhuaireadh aon gaireas ar a bhféadfaí córais-comhadlanna "
-"nua a cruthu. Ba chóir duit do chuid crua-earraí a seiceáil le cúis an fadhb "
-"a aimsiú"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Níl aon ranna agat!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr ""
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr ""
-
-#: ../../install_any.pm_.c:793
-#, fuzzy, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Cur isteach diosca sa dioscthiomant %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr ""
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Earráid ag léamh comhad %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Níl aon ranna malairte agat\n"
-"\n"
-"x1Lean ar aghaidh ar aon nós?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Úsáid spás saor"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:102
-#, fuzzy
-msgid "There is no existing partition to use"
-msgstr "Ag iarraidh an clár-ranna a tarrtháil"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:112
-#, fuzzy
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Cén rann a bhfuil tú ag iarraidh úsáid mar rann fréamhach"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Roghnaigh an méid nua"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Méid i MB do Rhann Fréamhach:"
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Méid i MB do rhann malairte:"
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:130
-#, fuzzy
-msgid "Computing Windows filesystem bounds"
-msgstr "Ag ríomhadh teorainn na córais-comhadlanna FAT"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "rann %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Theip ar uathathmhéadú FAT: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Glan diosca ina iomlán"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Dealaigh Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Úsáid fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:226
-#, fuzzy
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Níl aon ranna agat!"
-
-#: ../../install_interactive.pm_.c:242
-#, fuzzy
-msgid "I can't find any room for installing"
-msgstr "Ní féidir liom rann eile a cur isteach"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Theip ar rannú: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Ag tosnú suas an ghréasán"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Ag dúnadh síos an ghreasán"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Ta earraid ann, níl a fhios agam conas é a cheartú.\n"
-"Lean ort, ar do phriacal féin."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Pointe taca dublach %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Fáilte go %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Níl dioscthiománt flapach ar fáil"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Ag tosnú ar céim `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Rann Feistiú"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Roghnú Grúpa Pacáistí"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Méid iomlán: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Pacáiste mícheart"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Ainm: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Leagan: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Méid: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Tábhacht: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Feistiú"
-
-#: ../../install_steps_gtk.pm_.c:466
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "Sabháil ar dhiosca flapach"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Roghnú Grúpa Pacáistí"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "Eirigh as Feistiú"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Ag Feistiú"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Ag meastú"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Am fagtha "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Fan tamall, ag ullmhaigh feistiú"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pacáistí"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Ag feistiál pacáiste %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Aontaigh"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Tarrtháil"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Lean ar aghaidh ar aon nós?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Tharla earráid"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Ceadúnas"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Eocharclár"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Cén leagan amach atá ar d'eocharchlársa"
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Cén rann feistiú atá uait?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Feistiúi/Uadgrádaigh"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Feistigh nó uasgrádaigh ?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Molta"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Saineolaí"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Uasgrádaigh"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Roghnú Grúpa Pacáistí"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Gaireas luchóige"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Cumraigh Cártaí PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Ag cumraigh IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "níl aon ranna saora ann"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:357
-#, fuzzy, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ni féidir liom an tábla rainn a léamh, tá máchaillí ann :(\n"
-"Leanfaidh mé orm ag cealú droch rainn"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"Theip ar DiskDrake an tabla rainn a léamh i gceart.\n"
-"Lean ort, ar do phriacal féin!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "Roghnaigh na ranna atá le formáidiú"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Rann Fréamhach"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Céard é an rann fréamhach (/) ded' chóras?"
-
-#: ../../install_steps_interactive.pm_.c:411
-#, fuzzy
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Beidh ort an ríomhaire a aththosnú sula ndéanfar an athrú"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Roghnaigh na ranna atá le formáidiú"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Ag formáidiú ranna"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Nil dothain spas malartu chun insealbhu, chuir leis an spas"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Ag curdach do na pacáistí atá ar fáil"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Ag cúrdach pacáistí le húasgrádú"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Críochnaithe (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Íosta (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Molta (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Aisig ó dhiosca flapach"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Aisig ó dhiosca flapach"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Roghnú Grúpa Pacáistí"
-
-#: ../../install_steps_interactive.pm_.c:578
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "Cur isteach diosca sa dioscthiomant %s"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Sabháil ar dhiosca flapach"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:671
-#, fuzzy
-msgid "Type of install"
-msgstr "Roghnaigh pacáistí a feistiú ..."
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-#, fuzzy
-msgid "With X"
-msgstr "Fan tamall"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Ag Ullmhaigh feistiú"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Ag feisteáil pacáiste %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Cumraíocht Iar-feistú"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Cur isteach diosca sa dioscthiomant %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Cén ceann do chrois ama"
-
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "An bhfuil an clog cruaearrach ar GMT?"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "Freastalaí NTP"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Scrios Freastalaí CUPS"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Gan Printéir"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "An bhfuil ceann eile agat?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Coimriú"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Luchóg"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Am Críos"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Printéir"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "Carta ISDN"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Carta Fuaim"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "Carta Telefís"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Chomaid Áitiúl"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Socraigh pasfhocal root"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Gan pasfhocal"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Deimniú"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Deimniú LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "Freastalaí LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "Deimniú NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "Fearannas NIS"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "Freastalaí NIS"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Cead dioscthiománt flapach"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Dara dioscthiomáint flapach"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Scipeáil"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Brón orm, níl aon dioscthiománt flapach ar fáil"
-
-#: ../../install_steps_interactive.pm_.c:1212
-#, fuzzy
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Roghnaigh na ranna atá le formáidiú"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Cur isteach diosca sa dioscthiomant %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Ag Cruthaigh diosca thosnaithe"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Ag Ullmhaigh ríomhchlar thosnaithe"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-#, fuzzy
-msgid "Do you want to use aboot?"
-msgstr "Céard a theastaíonn uait a dhéanamh?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Feistigh cód tosnaithe"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1354
-#, fuzzy
-msgid "Generate auto install floppy"
-msgstr "Cruthaigh flapach bootáil"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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:1361
-msgid "Automated"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Athlódaigh"
-
-#: ../../install_steps_interactive.pm_.c:1364
-#, fuzzy
-msgid "Save packages selection"
-msgstr "Roghnú Grúpa Pacáistí"
-
-#: ../../install_steps_newt.pm_.c:22
-#, fuzzy, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Feistiú Linux-Mandrake %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu ar iarraidh"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Roghnaigh gníomh"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Réamhioaíocht"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Fan tamall"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Eolas"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Droch rogha, aththrialaigh\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Do rogha? (gnás %s)"
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Do rogha? (gnás %s)"
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Roghnachais: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "Céard a theastaíonn uait a dhéanamh?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Do rogha? (gnás %s)"
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Ceichís (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Gearmáinis"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Spáinis"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Fionlainnais"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Francaigh"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Ioruais"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polainnais"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Ruislís"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr ""
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Méarchlár UK"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Meárchlár US"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgáiris"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgáiris"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Bulgáiris"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Belarúisis"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Eilvéis (Stíl Ghearmánais)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Eilvéis (Stíl Francaigh)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Ceichís (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Gearmáinis (gach meachlár marbh)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Danmharghais"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (Meiriceá)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Ioruais)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Meiriceá)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Eastóinis"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Greicís"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Ungárais"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Cróitis"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr ""
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr ""
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Iodálais"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Seápainis (106 eochair)"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Méarchlár Chóiris"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Mheirceá Theas"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr ""
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr ""
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Áit"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr ""
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr ""
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:247
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "Rúisis (Yawerty)"
-
-#: ../../keyboard.pm_.c:248
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "Rúisis (Yawerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Rúisis (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slóbaicis (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slóbaicis (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Table"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr ""
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Meárchlár US"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Mearchlár US (idirnaisiúnta)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr ""
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr ""
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr ""
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Luchóg - Sun"
-
-#: ../../mouse.pm_.c:32
-#, fuzzy
-msgid "Logitech MouseMan+"
-msgstr "Luchóg Bus Logitech"
-
-#: ../../mouse.pm_.c:33
-#, fuzzy
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Mouse Gnáth (PS/2)"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 Cnaipe"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Luchóg 2-cnaipe Loiceadh"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Gnáth"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Rothar"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "srathach"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Luchóg Gnáth 3-cnaipe"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Luchóg MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Luchóg Logitech CC"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Luchóg Logitech (srathach, séan cinéal C7)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 cnaipí"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 cnaipí"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "Ar bith"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Luchóg ar bith"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Teastáil an luchóg, le do thoil"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr ""
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "BOG DO ROTHAR!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Fionnlainnis"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "An bhfuil seo ceart?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "úsáid dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "úsáid pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "úsáid pppoe"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Roghnaigh an cláréadan ghréasán"
-
-#: ../../network/ethernet.pm_.c:93
-#, fuzzy
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "ní fuaireathas cárta gréasánú"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Cumraigh gréasánú"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "ÓstAinm"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Draíodóir Cumraíocht Gréasánú"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Móideam ISDN seantrach"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Carta ISDN inmheánamach"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "Éirigh as cumraíocht"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Cumraigh ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Eorap (EDS11)"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "Trialaigh an cumraíocht"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Cén cinéal c atá uait?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Níl fhíos agam"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA/ PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Tobscoir"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Lean"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Cén sort carta ISDN atá uait?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-
-#: ../../network/modem.pm_.c:39
-#, fuzzy
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Roghanna 'Dialup'"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Ainm Nasc"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Uimhir fón"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Ainm Login:"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Script-bhunaithe"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Teirminéal-bhunaithe"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Ainm Fearannas"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-#, fuzzy
-msgid "First DNS Server (optional)"
-msgstr "Cead Freastalaí DNS"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-#, fuzzy
-msgid "Second DNS Server (optional)"
-msgstr "Dara Freastalaí DNS"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr "Cumraigh nasc ghréasán"
-
-#: ../../network/netconnect.pm_.c:34
-#, fuzzy
-msgid "You are currently connected to internet."
-msgstr "Bainteach le hIdirlíon"
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid "You are not currently connected to Internet."
-msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
-msgid "Connect"
-msgstr "Lean"
-
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
-msgid "Disconnect"
-msgstr "Cumraigh nasc ghréasán"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Cumraigh gréasánú"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Cumraigh nasc ghréasán"
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-
-#: ../../network/netconnect.pm_.c:167
-#, fuzzy
-msgid "Choose the profile to configure"
-msgstr "Roghnagih an úsáidoer gneás:"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, fuzzy
-msgid "Normal modem connection"
-msgstr "Cumraigh nasc ghréasán"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, fuzzy, c-format
-msgid "detected on port %s"
-msgstr "Pointe taca dublach %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, fuzzy
-msgid "ISDN connection"
-msgstr "Cumraigh ISDN"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy
-msgid "ADSL connection"
-msgstr "Nasc LAN"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy, c-format
-msgid "detected on interface %s"
-msgstr "Cláréadan Gréasán"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Cumraigh nasc ghréasán"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Nasc LAN"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "Roghnaigh na ranna atá le formáidiú"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-#, fuzzy
-msgid "Internet connection"
-msgstr "Nasc Printéir"
-
-#: ../../network/netconnect.pm_.c:233
-#, fuzzy
-msgid "Do you want to start the connection at boot?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, fuzzy, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-
-#: ../../network/network.pm_.c:297
-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 ""
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Ag cumrú gléas gréasánú %s"
-
-#: ../../network/network.pm_.c:307
-#, fuzzy, c-format
-msgid " (driver %s)"
-msgstr " (tiomáint $module)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "Seoladh IP"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr ""
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Uath-IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr ""
-
-#: ../../network/network.pm_.c:361
-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 ""
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "freastalaí DNS"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Gaireas na hInneal Geata"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Cumraigh seach-freastalaí"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "Seach-HTTP"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "Seach-FTP"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr ""
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr ""
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../network/tools.pm_.c:40
-#, fuzzy
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-#, fuzzy
-msgid "Testing your connection..."
-msgstr "Cumraigh nasc ghréasán"
-
-#: ../../network/tools.pm_.c:50
-#, fuzzy
-msgid "The system is now connected to Internet."
-msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr ""
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Cumraíocht Idirlíon."
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr ""
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ na Carta"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Cuimhne Charta (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "I/A Carta"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "I/A_0 Carta"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "I/A_1 Carta"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-#, fuzzy
-msgid "Your personal phone number"
-msgstr "Uimhir fón"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Uimhir fón"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-#, fuzzy
-msgid "Provider dns 1 (optional)"
-msgstr "Roghanna Printéir"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-#, fuzzy
-msgid "Provider dns 2 (optional)"
-msgstr "Roghanna Printéir"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "Roghnaigh mhéarchlár"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr ""
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "Athraigh cineál ranna"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Ainm Nasc"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Pasfhocal"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr ""
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr ""
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr ""
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Droch comhad chúltaca"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Earráidh ag scríobh comhad %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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:24
-msgid "must have"
-msgstr "riachtanas"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "tábhachtach"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "an-dheas"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "deas"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "b'fhéidir"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Printéir áitiúl"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Scríos Printéir"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Scrios Freastalaí CUPS"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "Scrios freastalaí lpd"
-
-#: ../../printer.pm_.c:51
-#, fuzzy
-msgid "Network printer (TCP/Socket)"
-msgstr "Printéir Gréasán (lpd)"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Freastalaí Printéir"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "Gaireas Printéir (URI)"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Printéir áitiúl"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Scríos Printéir"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Earráidh ag scríobh comhad %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(modíl %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP freastalaí SMP"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-#, fuzzy
-msgid " (Default)"
-msgstr "Gnáth"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "cumraíocht"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Scrios Freastalaí CUPS"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:87
-#, fuzzy
-msgid "CUPS server IP"
-msgstr "IP freastalaí SMP"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Poirt"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Cumraigh ADSL"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Gan Printéir"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Printéir áitiúl"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Scríos Printéir"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Scríos Printéir"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Scríos Printéir"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "Pointe taca dublach %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Gaireas Printéir (URI)"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Printéir áitiúl"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Gaireas Printéir (URI)"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Ag feistiál pacáiste %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Ag feistiál pacáiste %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "ÓstAinm"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Scríos Printéir"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Scríos Printéir"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Roghanna Printéir SMB (Fuinneoga 9x/NT)"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "freastalaí óstann SMB"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP freastalaí SMP"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Comh. ainm"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Grupa na hOibre"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Roghanna Printéir NetWare"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Freastalaí Printéir"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Roghanna Printéir NetWare"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "Óstainm Printéir"
-
-#: ../../printerdrake.pm_.c:858
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "Óstainm Printéir"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Gaireas Printéir (URI)"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Ainm Printéir"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Cuntas"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Áit"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Scríos Printéir"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "An bhfuil seo ceart?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Scríos Printéir"
-
-#: ../../printerdrake.pm_.c:1139
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Nasc Printéir"
-
-#: ../../printerdrake.pm_.c:1140
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "Cén sort printéir atá ort?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "Bain trial as arís"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "Printéir"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Uirlisí gnáth"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Óstainm Printéir"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Gan Printéir"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Dún"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Ag dúnadh síos an ghreasán"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Ag dúnadh síos an ghreasán"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Roghanna Printéir"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "Gan Printéir"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "Cumraigh Printéir"
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Nasc Printéir"
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Cumraigh gréasánú"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Níl aon scáileán cumraithe"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Cumraigh gréasánú"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Scríos Printéir"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Árd"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Paranóid"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Nasc Printéir"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Cén rann atá uait?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Cumraigh printéir"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Ag feistiál pacáiste %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Roghanna Printéir"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Cumraigh printéir"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "An dteastaěonn uait printéir a chumrú?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Clódóir"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Cumraigh gréasánú"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Normal Mode"
-msgstr "Luchóg ar bith"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Nasc Printéir"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "Óstainm Printéir"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Scríos Printéir"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Printéir áitiúl"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Scríos Printéir"
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-#, fuzzy
-msgid "Proxy configuration"
-msgstr "Cumraigh seach-freastalaí"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr ""
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-#, fuzzy
-msgid "port"
-msgstr "Poirt"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr ""
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr ""
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr ""
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "Logann"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "Pasfhocal"
-
-#: ../../proxy.pm_.c:84
-#, fuzzy
-msgid "re-type password"
-msgstr "Gan pasfhocal"
-
-#: ../../proxy.pm_.c:88
-#, fuzzy
-msgid "The passwords don't match. Try again!"
-msgstr "Ní mar a chéile na pasfhocail"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr ""
-
-#: ../../raid.pm_.c:111
-#, fuzzy, c-format
-msgid "Can't write file %s"
-msgstr "Earráidh ag scríobh comhad %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "teip ar 'mkraid'"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr ""
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr ""
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr ""
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-
-#: ../../services.pm_.c:18
-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 ""
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-
-#: ../../services.pm_.c:23
-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 ""
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-
-#: ../../services.pm_.c:33
-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:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: ../../services.pm_.c:43
-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 ""
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-
-#: ../../services.pm_.c:52
-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 ""
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-
-#: ../../services.pm_.c:69
-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:71
-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 ""
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-
-#: ../../services.pm_.c:78
-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 ""
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr ""
-
-#: ../../services.pm_.c:81
-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 ""
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Printéir"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Idirlíon"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Mód Coras"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Scríos Printéir"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Freastalaí Printéir"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Seirbishí"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "ag rith"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "ag stoppadh"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr ""
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Ar Tús"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Clár Tosnú"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Teascán"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Trialaigh an cumraíocht"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "suimiúil"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Ilmheánach"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Forbairt"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Bainteach le hIdirlíon"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Cláréadan Gréasán"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "freastalaí óstann SMB"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Cluichí"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Saineolaí"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-#, fuzzy
-msgid "MandrakeStore"
-msgstr "sainordaitheach"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Ag feistiál pacáiste %s"
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Ni féidir liom an tábla rainn a léamh, tá máchaillí ann :(\n"
-"Leanfaidh mé orm ag cealú droch rainn"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Earráid"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Cumraíocht Iar-feistú"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Cumraíocht Stíl Tosnú"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Comhghairdeas!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Feistiú"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Suimigh úsáideoir"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Ag formáidiú comhad 'loopback' %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Droch comhad chúltaca"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Droch comhad chúltaca"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Droch comhad chúltaca"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Roghnú Grúpa Pacáistí"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Roghnaight do theangam le do thoil."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Scrios ciú"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Dealaigh Windows(TM)"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Ainm úsáideora"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Teastáil an luchóg, le do thoil"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Aththrialaigh"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Aththrialaigh"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "Gan pasfhocal"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Nasc LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Nasc Printéir"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Cén leagan amach atá ar d'eocharchlársa"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Roghnaigh rann le do thoil"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Droch comhad chúltaca"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Teastáil an luchóg, le do thoil"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Droch comhad chúltaca"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Cláréadan Gréasán"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Ainm úsáideora"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Roghnaight do theangam le do thoil."
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Roghnaight do theangam le do thoil."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Athraigh cumraíocht an freastalaí"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Athraigh cumraíocht an freastalaí"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-#, fuzzy
-msgid "What"
-msgstr "Fan tamall"
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "Rothar"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "Rothar"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Roghachais modúil:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Roghnaight do theangam le do thoil."
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Socraigh córas chomhad"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Roghnachais"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Droch comhad chúltaca"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Droch comhad chúltaca"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Aisig ó dhiosca flapach"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Eile"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Feistigh córas"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Aisig ó comhad"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Aisig ó comhad"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Socraithe"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/C_úidiú"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Clár Tosnú"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Droch comhad chúltaca"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Aisig ó comhad"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Teacs"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Roghnaigh pacáistí ..."
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Roghnaight do theangam le do thoil."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Roghnaight do theangam le do thoil."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Roghnaight do theangam le do thoil."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Droch comhad chúltaca"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Droch comhad chúltaca"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Droch comhad chúltaca"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Sabháil i gcomhad"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Teastáil an luchóg, le do thoil"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "cumraíocht"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Éirigh as cumraíocht"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Socraigh córas chomhad"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "Teip ag cuardach %s"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Críochnithe"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Formadaigh flapach"
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Ag Ullmhaigh feistiú"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "teorannaigh"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Formáidigh ranna"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Éirigh as cumraíocht"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Roghnaigh na ranna atá le formáidiú"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Oifig"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Tobscoir"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Printéir"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Feistigh córas"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Roghnaigh Comhad"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Scríos Printéir"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
-msgid "Initials tests"
-msgstr "Scéal Tosnú"
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Níl aon gaireas ghreasán san do chorás!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Feistiú"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Níl aon gaireas ghreasán san do chorás!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Eirigh as Feistiú"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:154
-#, fuzzy
-msgid "Internet connection sharing is now disabled."
-msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:180
-#, fuzzy
-msgid "Internet connection sharing is now enabled."
-msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:228
-#, fuzzy, c-format
-msgid "Interface %s"
-msgstr "suimiúil"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Níl aon gaireas ghreasán san do chorás!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Cláréadan Gréasán"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Níl aon scáileán cumraithe"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Cumraigh ADSL"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "IP freastalaí SMP"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:340
-#, fuzzy
-msgid "Configuring..."
-msgstr "Ag cumraigh IDE"
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:378
-#, fuzzy, c-format
-msgid "Problems installing package %s"
-msgstr "Ag feistiál pacáiste %s"
-
-#: ../../standalone/drakgw_.c:672
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:691
-#, fuzzy
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#: ../../standalone/drakgw_.c:696
-#, fuzzy
-msgid "Internet connection sharing configuration"
-msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr ""
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Ainm úsáideora"
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "suimiúil"
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Cineál: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Inneal Geata:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "suimiúil"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Cumraigh gréasánú"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Cumraigh ADSL"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Tiománaí"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "Cláréadan Gréasán"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Clár Tosnú"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Cumraigh gréasánú"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Draíodoir..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Trialaigh an cumraíocht"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Ainm Nasc"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Cumraigh ADSL"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "cumraíocht"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Athraigh cineál ranna"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Inneal Geata:"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr ""
-
-#: ../../standalone/drakxconf_.c:47
-#, fuzzy
-msgid "Control Center"
-msgstr "Bainteach le hIdirlíon"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "Eorap"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Athlódaigh"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "Eorap"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "srathach"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Cén leagan amach atá ar d'eocharchlársa"
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Athraigh CD-ROM"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr ""
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Comhad/_Nua"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Comhad/_Oscail"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Comhad/_Sábháil"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Comhad/Sábháil _Mar"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Comhad/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Roghanna"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Roghnachais/Teastáil"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/C_úidiú"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Cúidiú/_Faoi..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Ainm úsáideora"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "scéalaí"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "faigh"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Roghnachais"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Tóg comhad"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Feilire"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "Ag Parsáil an comhad %s, fan tamall"
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Cumraigh Lilo/Grub"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "scáil"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "suimiúil"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "Ag formáidiú"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Sábháil mar..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr ""
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Roghnaigh carta grafachach"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Gaireas bootáil"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "ag leámh cumraíocht"
-
-#: ../../standalone/tinyfirewall_.c:44
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "ag leámh cumraíocht"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Roghnaigh do theanga"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Roghnaigh rang feistiú"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr ""
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Cumraigh luchóg"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Roghnaigh mhéarchlár"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Slándáil"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Socraigh córas chomhad"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formáidigh ranna"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Roghnaigh pacáistí ..."
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Feistigh córas"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Suimigh úsáideoir"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Cumraigh gréasánú"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Cumraigh seirbhisí"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Feistigh cód tosnaithe"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Cruthaigh an diosca "
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Cumraigh X"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Feistigh córas"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Eirigh as Feistiú"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Earráid ag oscailt %s do scríobh: %s"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "ag leámh cumraíocht"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Fan tamall, ag ullmhaigh feistiú"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Greasan/FTP"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer (client)"
-msgstr "Printéir Gréasán (lpd)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Oifig"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Stáisiún Gnome"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Stáisiún Oibre"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Stáisiún KDE"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - Video"
-msgstr "Ilmheánach"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Tools to ease the configuration of your computer"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - Sound"
-msgstr "Ilmheánach"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Documentation"
-msgstr "Áit"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Stáisiún Idirlíon"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia station"
-msgstr "Stáisiún Ilmheánach"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "cumraíocht"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Stáisiún Oibre"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Freastalaí"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer server"
-msgstr "Cláréadan Gréasán"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Post/Nuacht/Groupware"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Stáisiún Cluichí"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - Graphics"
-msgstr "Ilmheánach"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-
-#: ../../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:999
-msgid "Archiving, emulators, monitoring"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Deasc Graphaicí Eile"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - CD Burning"
-msgstr "Ilmheánach"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Scientific Workstation"
-msgstr "Stáisiún Oibre"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Tobscoir"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Ar bith"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Roghnagih an úsáidoer gneás:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Scríos Printéir"
-
-#~ msgid "Low"
-#~ msgstr "Bun"
-
-#~ msgid "Medium"
-#~ msgstr "Gnáth"
-
-#, fuzzy
-#~ msgid "mount failed"
-#~ msgstr "teip ar 'mkraid'"
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Ilmheánach"
-
-#~ msgid "Boot mode"
-#~ msgstr "Mód Bootáil"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Saineolaí"
-
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Cumraigh nasc ghréasán"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Cén cinéal luchóg atá agat?"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Eolas"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Stáisiún Gnome"
-
-#~ msgid "authentification"
-#~ msgstr "údarú"
-
-#~ msgid "user"
-#~ msgstr "úsáideoir"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Cén cinéal luchóg atá agat?"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Éalaigh"
-
-#~ msgid "Active"
-#~ msgstr "Gníomhach"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Níl"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Gaireas na Printéir Áitiúl"
-
-#~ msgid "Printer Device"
-#~ msgstr "Gaireas Printéir"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Scrios Freastalaí CUPS"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mód Coras"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Eile"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Cén leagan amach atá ar d'eocharchlársa"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Roghnaigh rann le do thoil"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Cineál: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Droch comhad chúltaca"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Cumraigh X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Gaireas Printéir"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Cealaigh"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ceart go Leor"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Dún"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "toot"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Nasc Printéir"
-
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "Cumraigh nasc ghréasán"
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#~ msgid "Total size: "
-#~ msgstr "Méid iomlán: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Fan tamall, "
-
-#~ msgid "Total time "
-#~ msgstr "Am iomlán "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Bain úsáid as an cumraíocht X11 atá ann?"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid "New"
-#~ msgstr "Nua"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Scríos"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Roghnaigh rann le do thoil"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Débhríoch (%s), bí níos cruinn\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (gnás %s)"
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Do rogha? (gnás %s úsáid `none' do ceann ar bith) "
-
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Rithléibheal Loiceadh"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Scríobh /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formáidigh gach ceann"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "I ndhiadh na rann ar fad formáidiú,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "caillfear gach sonra ar na ranna"
-
-#~ msgid "Error reading file $f"
-#~ msgstr "Earráid ag léamh comhad $f"
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Ceichis (FIXME)"
-
-#, fuzzy
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Cumraigh nasc ghréasán"
-
-#~ msgid "Choose"
-#~ msgstr "Rogha"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Remote queue"
-#~ msgstr "Scrios ciú"
-
-#~ msgid "Paper Size"
-#~ msgstr "Méid Páipéir"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Roghanna tiománaí Uniprint"
-
-#~ msgid "Name of queue"
-#~ msgstr "Ainm ciú"
-
-#, fuzzy
-#~ msgid "Disable"
-#~ msgstr "Table"
-
-#, fuzzy
-#~ msgid "Enable"
-#~ msgstr "Table"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Cumraíocht Gréasánú"
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Bainteach le hIdirlíon"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Bainteach le hIdirlíon"
-
-#~ msgid "yellow pages"
-#~ msgstr "leathanaigh buí"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Cumraigh ADSL"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Roghnaigh Comhad"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Cumraigh nasc ghréasán"
-
-#~ msgid "Configure..."
-#~ msgstr "Cumraigh..."
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "cumraíocht"
-
-#, fuzzy
-#~ msgid "Boot style configuration"
-#~ msgstr "Trialaigh an cumraíocht"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Cumraigh LILO/GRUB"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Cruthaigh flapach bootáil"
-
-#~ msgid "Choice"
-#~ msgstr "Rogha"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Eile"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Ceisteanna eile"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Cead Freastalaí DNS"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Dara Freastalaí DNS"
-
-#, fuzzy
-#~ msgid "using module"
-#~ msgstr "Luchóg ar bith"
-
-#, fuzzy
-#~ msgid "Development, Database"
-#~ msgstr "Forbairt"
-
-#, fuzzy
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Cén tescán ag a dteastaíonn uait é a bhogadh?"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Déan iarracht móideam a aimsiú?"
-
-#, fuzzy
-#~ msgid "Configure local network"
-#~ msgstr "Cumraigh gréasánú"
-
-#, fuzzy
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#, fuzzy
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr "Tá gréasánú lóganta cumraithe cheana féin. An dteastaíonn uait:"
-
-#, fuzzy
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Cumraigh Cártaí PCMCIA"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Uirlisí Idirlíon"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Forbairt C/C++"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Cumraigh crios ama"
-
-#, fuzzy
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Printéir Gréasán (lpd)"
-
-#, fuzzy
-#~ msgid "Enable num lock at startup"
-#~ msgstr "X ag tús"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Pasfhocal (arís)"
-
-#~ msgid "Gateway device:"
-#~ msgstr "Gaireas na hInneal Geata:"
-
-#~ msgid "default"
-#~ msgstr "gnáth"
-
-#, fuzzy
-#~ msgid "What is your system used for?"
-#~ msgstr "Cén ceann do chrois ama"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Úsáid diskdrake"
-
-#~ msgid "Customized"
-#~ msgstr "Socraithe"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Bain úsáid as scáilcomhad"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Bain úsáid as pasfhocail MD5"
-
-#~ msgid "Search"
-#~ msgstr "Cuardaigh"
-
-#~ msgid "Package"
-#~ msgstr "Pacáiste"
-
-#~ msgid "Tree"
-#~ msgstr "Crann"
-
-#~ msgid "Category"
-#~ msgstr "Saghas"
-
-#~ msgid "Installed packages"
-#~ msgstr "Pacáistí feistiú"
-
-#~ msgid "Available packages"
-#~ msgstr "Pacáistí le fáil"
-
-#~ msgid "Find Package"
-#~ msgstr "Cuardaigh Pacáiste"
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Directory"
-#~ msgstr "Eolaire"
-
-#~ msgid "Other countries"
-#~ msgstr "Tír Eile"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "móideim alcatel"
-
-#~ msgid "ECI modem"
-#~ msgstr "móideim ECI"
-
-#~ msgid "don't use pppoe"
-#~ msgstr "ná úsáid pppoe"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (tábhachtach)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (an-dheas)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (deas)"
-
-#~ msgid "Czech"
-#~ msgstr "Ceichís"
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Athchumraigh an gréasánú áitiúl"
-
-#, fuzzy
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#, fuzzy
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Bainteach le hIdirlíon"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "Uath-Réiteach"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Uath-cuardaigh réiteach"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Feistiú/Tarrtháil"
-
-#~ msgid "Rescue"
-#~ msgstr "Tarrtháil"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Luchóg ADB Apple"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Luchóg ADB Apple (2 Cnaipí)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Luchóg Apple ADB (3+ Cnaipí)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Luchóg USB Apple"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Luchóg USB Apple (2 Cnaipí)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Luchóg USB Apple (3+ Cnaipí)"
-
-#~ msgid "Generic Mouse (PS/2)"
-#~ msgstr "Mouse Gnáth (PS/2)"
-
-#~ msgid "Logitech MouseMan/FirstMouse (ps/2)"
-#~ msgstr "Logitech MouseMan/FirstMouse (ps/2)"
-
-#~ msgid "ASCII MieMouse (PS/2)"
-#~ msgstr "ASCII MieMouse (PS/2)"
-
-#~ msgid "Genius NetMouse Pro (PS/2)"
-#~ msgstr "Genius NetMouse Pro (PS/2)"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "Luchóg Bus ATI"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Luchóg Bus Microsoft"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "Luchóg USB (3 cnaipí nó níos mó)"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A nó barr (srathach)"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (srathach)"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (srathach)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (srathach)"
-
-#~ msgid "Microsoft IntelliMouse (serial)"
-#~ msgstr "Microsoft IntelliMouse (srathach)"
-
-#~ msgid "Logitech MouseMan/FirstMouse (serial)"
-#~ msgstr "Logitech MouseMan/FirstMouse (srathach)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Luchóg de gnáth (srathach)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Microsoft nó comhoriúnach (srathach)"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Luchóg 3-cnaipe de gnáth (srathach)"
-
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse (srathach)"
-
-#~ msgid "What do you wish to do?"
-#~ msgstr "Céard a theastaíonn uait a dhéanamh?"
-
-#~ msgid "pump"
-#~ msgstr "pump"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "dhcp-client"
-#~ msgstr "dhcp-client"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Cén cinéal luchóg atá agat?"
-
-#~ msgid "Cryptographic"
-#~ msgstr "Rúnscríobhach"
-
-#~ msgid "Configure LAN"
-#~ msgstr "Cumraigh LAN"
-
-#~ msgid "Show less"
-#~ msgstr "Taispéan níos lú"
-
-#~ msgid "Show more"
-#~ msgstr "Taispeán níos mo"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
deleted file mode 100644
index a0f63f21a..000000000
--- a/perl-install/share/po/gl.po
+++ /dev/null
@@ -1,12241 +0,0 @@
-# Translation file of Mandrake graphic install
-# Copyright (C) 1999, 2000 Mandrakesoft.
-# Copyright (C) 2000 Jesús Bravo Álvarez.
-# José Manuel Cambre <asforber@asforber.com>, 1999
-# Jesús Bravo Álvarez <jba@pobox.com>, 2000
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-06-08 18:14+0200\n"
-"Last-Translator: Jesús Bravo Álvarez (mdk) <jba@pobox.com>\n"
-"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:243
-#, fuzzy
-msgid "Use Xinerama extension"
-msgstr "Usar detección automática"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:249
-#, fuzzy
-msgid "Multi-head configuration"
-msgstr "lendo a configuración"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Tarxeta gráfica"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Seleccione unha tarxeta gráfica"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Escolla un servidor X"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Escolla un servidor X"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Servidor X"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "żQue configuración de XFree quere usar?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"A súa tarxeta pode ter soporte de aceleración 3D por hardware, pero só con\n"
-"XFree %s. A tarxeta está soportada por XFree %s, que pode ter un mellor\n"
-"soporte en 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-"A súa tarxeta pode ter soporte de aceleración 3D por hardware con XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s con aceleración 3D por hardware"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"A súa tarxeta pode ter soporte de aceleración 3D por hardware, pero só con\n"
-"XFree %s, ADVIRTA QUE ESTE SOPORTE É EXPERIMENTAL E PODE COLGAR O SISTEMA."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s con aceleración 3D por hardware EXPERIMENTAL"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"A súa tarxeta pode ter soporte de aceleración 3D por hardware, pero só con\n"
-"XFree %s, ADVIRTA QUE ESTE SOPORTE É EXPERIMENTAL E PODE COLGAR O SISTEMA.\n"
-"A súa tarxeta está soportada por XFree %s, que pode ter un mellor soporte en "
-"2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuración de XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Seleccione a cantidade de memoria da tarxeta gráfica"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Escolla as opcións para o servidor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Escolla o monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Os dous parámetros críticos son a taxa de actualización vertical, que\n"
-"indica a frecuencia coa que a pantalla completa é actualizada, e máis\n"
-"importante aínda é a taxa de sincronismo horizontal, que é a\n"
-"frecuencia coa que se mostran as lińas de barrido horizontal.\n"
-"\n"
-"É MOI IMPORTANTE que non especifique un tipo de monitor cun intervalo\n"
-"de frecuencias de sincronismo superior á capacidade real do seu monitor,\n"
-"xa que pode danalo.\n"
-"No caso de dúbida, escolla unha configuración conservadora."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Frecuencia de actualización horizontal"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Frecuencia de actualización vertical"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "O monitor non está configurado"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "A tarxeta gráfica aínda non está configurada"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resolucións aínda non escollidas"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "żDesexa probar a configuración?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Aviso: probar esta tarxeta gráfica pode colgar o ordenador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Proba da configuración"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probe a cambiar algúns parámetros"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ocorreu un erro:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Saíndo en %d segundos"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "żÉ esta a configuración correcta?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ocorreu un erro, probe a cambiar algúns parámetros"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Resolución"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Escolla a resolución e a profundidade de cor"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Tarxeta gráfica: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servidor XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Máis"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Aceptar"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modo experto"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ver todo"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolucións"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Disposición do teclado: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Tipo de rato: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Dispositivo do rato: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Frecuencia horizontal do monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Frecuencia vertical do monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Tarxeta gráfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Tarxeta gráfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Memoria da tarxeta gráfica: %s KB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Profundidade de cor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Resolución: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Servidor XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Controlador de XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Preparando a configuración de X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "żQué desexa facer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Mudar o monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Mudar a tarxeta gráfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Mudar as opcións do servidor"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Mudar a resolución"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostrar información"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Probar de novo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Saír"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"żManter os cambios?\n"
-"A configuración actual é:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "Lanzar X11 ó arrincar"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Pódese configurar o seu ordenador para que entre automaticamente\n"
-"en X ó arrincar. żDesexa que se execute X ó reiniciar?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Entre de novo en %s para activar os cambios"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Saia da sesión e use Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 cores (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil cores (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil cores (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millóns de cores (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 mil millóns de cores (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB ou máis"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA estándar, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA estendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA non-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Monitor multi-frecuencia soportando 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Monitor multi-frecuencia soportando 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Monitor multi-frecuencia soportando 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor soportando 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor soportando 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Primeiro sector da partición de arranque"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Primeiro sector do disco (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Instalación do SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "żOnde quere instalar o cargador de arrinque?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Instalación do LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO con menú de texto"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO con menú gráfico"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Arrincar dende DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Opcións principais do cargador de arrinque"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Cargador de arrinque que usar"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Instalación do cargador de arrinque"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Dispositivo de arrinque"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (non funciona en BIOS antigas)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Compacto"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "compacto"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Modo de vídeo"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Retardo antes de arrincar a imaxe por omisión"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Contrasinal"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Contrasinal (de novo)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Restrinxir opcións da lińa de comandos"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "restrinxir"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Baleirar /tmp en cada arrinque"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Tamańo exacto de memoria se for necesario (atopáronse %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Activar perfís múltiples"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Indicar o tamańo da memoria en MB"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"A opción ``restrinxir opcións da lińa de comandos'' non ten sentido sen "
-"contrasinal"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Tente de novo"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Os contrasinais non coinciden"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Mensaxe inicial"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr ""
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr ""
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "żPermitir o arrinque de CD?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "żSO por omisión?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Estas son as diferentes entradas.\n"
-"Pode engadir algunhas máis ou cambiar as que xa existen."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Engadir"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Feito"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Modificar"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "żQue tipo de entrada desexa engadir?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Outros SO (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Outros SO (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Outros SO (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Imaxe"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Raíz"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Agregar"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Lectura-escritura"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Táboa"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Inseguro"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Etiqueta"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Por omisión"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr ""
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr ""
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Quitar entrada"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Etiqueta baleira non permitida"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Debe ter unha partición de intercambio"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Esta etiqueta xa se está a usar"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s interfaces %s atopadas"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "żTen algunha outra?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "żTen algunha interface %s?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Non"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Si"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Mire a información sobre o hardware"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instalando o controlador para a tarxeta %s %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(módulo %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "żQue controlador de %s desexa probar?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Nalgúns casos, o controlador de %s necesita información extra\n"
-"para funcionar correctamente, aínda que normalmente funcione sen ela.\n"
-"żDesexa especificar información extra para o controlador ou deixar que el\n"
-"analice o seu equipo e atope a información que necesita? Ás veces,\n"
-"analizar o equipo pode provocar que se pare, pero non debería\n"
-"causar ningún dano."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Autodetección"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Especificar as opcións"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Aquí deben ir as diferentes opcións para o módulo %s.\n"
-"As opcións son da forma Ťnome=valor nome2=valor2 ...ť.\n"
-"Por exemplo pode ter Ťio=0x300 irq=7ť"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcións do módulo:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Fallo o cargar o módulo %s\n"
-"żDesexa retentalo con outros parámetros?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s xa foi engadido)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Este contrasinal é demasiado simple"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Indique o nome de usuario"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "O nome de usuario (login) só debe conter letras, números, '-' e '_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Este nome de usuario xa está engadido"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Engadir usuario"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Introduza un usuario\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Aceptar usuario"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Nome real"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Nome de usuario"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Icona"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Login automático"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Pódese configurar o ordenador para que se autentique automaticamente\n"
-"como un usuario. Se non quere usar esta característica, prema o botón\n"
-"cancelar."
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Escolla o usuario por defecto:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Escolla o xestor de fiestras para executar:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Escolla a lingua que desexe usar."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Pode escoller outras linguas que estarán dispońibles trala instalación"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Todas"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Engadir usuario"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalizado"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "CUPS iniciando"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"Este paquete ten que ser actualizado\n"
-"żEstá seguro de que quere deseleccionalo?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Benvida ós crackers"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Pobre"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Estándar"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Alto"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Alto"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoico"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Este nivel hai que usalo con coidado. Fai que o seu sistema sexa máis\n"
-"sinxelo de utilizar, pero é moi sensible: non debe usarse nunha máquina\n"
-"conectada a outras ou á Internet. Non hai contrasinais de acceso."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Os contrasinais están activados, pero o uso como ordenador de rede aínda\n"
-"non se recomenda."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Esta é a seguridade recomendada para un ordenador usado para conectar\n"
-"á Internet como cliente. Agora hai más comprobacións de seguridade."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Con este nivel de seguridade, é posible usar este sistema coma servidor.\n"
-"A seguridade é agora alta dabondo para usar o sistema coma un servidor\n"
-"que acepta conexións de múltiples clientes."
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Tómanse características do nivel 4, pero agora o sistema está completamente\n"
-"pechado. As características de seguridade están ó máximo nivel."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Escola o nivel de seguridade"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Establecendo o nivel de seguridade"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Escolla as opcións para o servidor"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Benvido ao %s, o selector de sistema operativo!\n"
-"\n"
-"Escolla un sistema operativo na lista de enriba, ou\n"
-"agarde %d segundos para que se arrinque o sistema por defecto.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "­Benvido ao GRUB, o selector de sistemas operativos!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Use as teclas %c e %c para seleccionar a entrada marcada."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Prema enter para arrincar o SO seleccionado, 'e' para editar os"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "comandos antes de arrincar, ou 'c' para a li¤a de comandos."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "A entrada marcada arrincarase automaticamente en %d segundos."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "non hai espacio dabondo en /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Escritorio"
-
-# Manter o 'ú' en iso-8859-1
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Menú Inicio"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "żOnde quere instalar o cargador de arrinque?"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "axuda aínda non implementada.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Configuración do estilo de arrinque"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Ficheiro"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Ficheiro/_Saír"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:92
-#, fuzzy
-msgid "NewStyle Monitor"
-msgstr "Monitor"
-
-#: ../../bootlook.pm_.c:93
-#, fuzzy
-msgid "Traditional Monitor"
-msgstr "Mudar o monitor"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr ""
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Lilo/grub mode"
-msgstr "Modo de marcación"
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Yaboot mode"
-msgstr "Modo de arrinque"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-#, fuzzy
-msgid "Configure"
-msgstr "Configurar as X"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr ""
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Lanzar o sistema X-Window ó iniciar"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Non, non quero login automático"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Si, quero login automático con este (usuario, escritorio)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "Aceptar"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "non se pode abrir /etc/inittab para lectura: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutos"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minuto"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d segundos"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Non é posible engadir máis particións"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Pode escoller outras linguas que estarán dispońibles trala instalación"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Francia"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Belga"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-#, fuzzy
-msgid "Germany"
-msgstr "Alemán"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Grego"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Noruegués"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Mirar"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Italiano"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "serie"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Faga primeiro unha copia de seguridade dos seus datos"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "ĄLea coidadosamente!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Se ten pensado usar aboot, teńa coidado de deixar un espacio libre (2048\n"
-"sectores abondan) no inicio do disco"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Erro"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Axudante"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Escolla a acción"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Ten unha partición FAT grande\n"
-"(xeralmente usada por Microsoft Dos/Windows).\n"
-"Aconséllase que primeiro a redimensione\n"
-"(prema nela, e logo en \"Redimensionar\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Prema nunha partición"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detalles"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "mount fallou"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Intercambio"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Baleiro"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Outros"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Tipos de sist. de ficheiros:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Crear"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tipo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Use ``%s'' no seu lugar"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Borrar"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Use ``Desmontar'' primeiro"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Ó mudar o tipo da partición %s, perderanse tódolos datos desta partición"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Escolla a acción"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Crear unha nova partición"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Mudar a modo experto"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Mudar a modo normal"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Refacer"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "żContinuar de calquera xeito?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Saír sen gardar"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "żSaír do programa sen gardar a táboa de particións?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "żDesexa probar a configuración?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Asignación automática"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Borrar todas"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Información do correo"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Tódalas particións primarias están usadas"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Non é posible engadir máis particións"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Para ter máis particións, borre unha para poder crear unha partición "
-"estendida"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Escribir táboa de particións"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Táboa de particións de rescate"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Táboa de particións de rescate"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Táboa de particións de rescate"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Automonta-las unidades extraíbles"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Seleccione un ficheiro"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"A táboa de particións de rescate non ten\n"
-"o mesmo tamańo. żContinuar de calquera xeito?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Advertencia"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Insira un disquete na unidade\n"
-"Perderanse tódolos datos no disquete"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Tentando recuperar a táboa de particións de rescate"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "Información do correo"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Punto de montaxe"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Opcións"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Redimensionar"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Desprazar"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatar"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Montar"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Engadir ó RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Engadir ó LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Desmontar"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Quitar do RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Quitar do LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Modificar o RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Usar para loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Crear unha nova partición"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Sector inicial: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Tamańo en MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Tipo de sist. de ficheiros: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Punto de montaxe: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Preferencia: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Formatando o ficheiro loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Mudar o tipo de partición"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "żQué sistema de ficheiros desexa?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "żOnde desexa montar o ficheiro loopback %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "żOnde desexa montar o dispositivo %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Non se pode quitar o punto de montaxe porque esta partición estase a\n"
-"usar de loopback.\n"
-"Quite primeiro o loopback"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Calculando os límites do sistema de ficheiros FAT"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Redimensionando"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Esta partición non se pode redimensionar"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Debería facer unha copia de seguridade dos datos desta partición"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Ó redimensionar a partición %s, perderanse tódolos datos desta partición"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Escoller o novo tamańo"
-
-#: ../../diskdrake/interactive.pm_.c:622
-#, fuzzy
-msgid "New size in MB: "
-msgstr "Tamańo en MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "żA que disco desexa desprazala?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sector"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "żA que sector desexa desprazala?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Desprazando"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Desprazando partición..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Escolla un dos RAID para engadirlle"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "novo"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Escolla un dos LVM para engadirlle"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "żNome do LVM?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Esta partición non pode usarse para loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Nome do ficheiro loopback: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Nome real"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "O ficheiro xa está a ser usado por outro loopback, escolla outro"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "O ficheiro xa existe. żUsalo?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-#, fuzzy
-msgid "Mount options"
-msgstr "Opcións do módulo:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "dispositivo"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "nivel"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "tamańo do bloque de datos"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Teńa coidado: esta operación é perigosa."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "żQué tipo de particionamento quere?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Desculpe, mais non se pode crear o directorio /boot tan lonxe no disco\n"
-"(nun cilindro > 1024). Se usa o LILO, non funcionará, e se non o\n"
-"usa, non necesita /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"A partición que escolleu para usar como raíz (/) está fisicamente ubicada\n"
-"despois do cilindro 1024 do disco duro, e non ten partición /boot.\n"
-"Se pensa usar o selector de SO de arrinque LILO, lembre engadir unha\n"
-"partición /boot"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Seleccionou unha partición RAID software como raíz (/).\n"
-"Non hai ningún cargador de arrinque que funcione deste xeito sen unha\n"
-"partición /boot.\n"
-"Lembre polo tanto engadir unha partición /boot"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "ĄEscribirase ó disco a táboa de particións da unidade %s!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr ""
-"Necesitará reiniciar o equipo para que a modificación sexa tomada en conta"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Ó formatar a partición %s, perderanse tódolos datos desta partición"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formatando"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formatando o ficheiro loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formatando a partición %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid fallou"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Non hai espacio libre dabondo para asignar novas particións"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Non hai espacio libre dabondo para asignar novas particións"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Resolución: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Dispositivo: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Letra de unidade DOS: %s (aproximación)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tipo: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Nome: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Inicio: sector %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Tamańo: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sectores"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cilindro %d a cilindro %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formatado\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Non formatado\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Montado\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Ficheiro(s) loopback: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partición de arrinque por omisión\n"
-" (para arrincar en MS-DOS, non para lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Nivel %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Tamańo do bloque de datos %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Discos RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Nome do ficheiro loopback: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Tamańo: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Xeometría: %s cilindros, %s cabezas, %s sectores\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Discos LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Tipo de táboa de particións: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "no bus %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Opcións: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Tipo de sist. de ficheiros: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Este contrasinal é demasiado simple (ten que ter polo menos %d caracteres)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Os contrasinais non coinciden"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "Mudar o tipo de partición"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Prema nunha partición"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "Servidor DNS"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "O formato %s de %s fallou"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Descońécese o xeito de formatar %s de tipo %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "erro desmontando %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "simple"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "servidor"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Non pode usar JFS para particións máis pequenas que 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Non pode usar ReiserFS para particións máis pequenas que 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Os puntos de montaxe deben empezar por /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Xa existe unha partición co punto de montaxe %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Non pode usar un volume lóxico LVM para o punto de montaxe %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Este directorio debería permanecer dentro do sistema de ficheiros raíz"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Necesita un sistema de ficheiros real (ext2, reiserfs) para este punto de "
-"montaxe\n"
-
-#: ../../fsedit.pm_.c:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Non pode usar un volume lóxico LVM para o punto de montaxe %s"
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Non hai espacio libre dabondo para asignar novas particións"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Erro ó abrir %s para escritura: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Ocorreu un erro - non se atopou ningún dispositivo válido para crear novos "
-"sistemas de ficheiros. Verifique o seu equipo para ver a razón deste problema"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "ĄNon ten ningunha partición!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-#, fuzzy
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Agora poderá escoller que servicios quere que sexan arrincados ó inicio.\n"
-"Cando o seu rato pasa por riba dun elemento, unha pequena axuda aparecerá\n"
-"describindo o cometido do servicio.\n"
-"\n"
-"Sexa especialmente coidadoso neste paso se pretende utiliza-la súa máquina\n"
-"coma un servidor: probablemente non quererá iniciar servicios que non "
-"precisa."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-#, fuzzy
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Neste punto, ten que escoller onde quere instalar o sistema operativo\n"
-"Mandrake Linux no disco duro. Se está baleiro, ou se hai outro sistema\n"
-"ocupando todo o espacio dispońible, terá que particionalo. Basicamente,\n"
-"particionar un disco duro consiste en dividilo loxicamente para crear o\n"
-"espacio para instalar o seu novo sistema Mandrake Linux.\n"
-"\n"
-"\n"
-"Como os efectos do proceso de particionamento son normalmente "
-"irreversibles,\n"
-"o particionamento pode intimidar e resultar estresante para un usuario\n"
-"non experimentado.\n"
-"Este axudante simplifica o proceso. Antes de continuar, consulte o\n"
-"manual e tome o seu tempo.\n"
-"\n"
-"\n"
-"Necesita polo menos dúas particións. Unha é para o propio sistema operativo\n"
-"e a outra é para a memoria virtual (tamén chamada Intercambio ou Swap).\n"
-"\n"
-"\n"
-"Se as particións xa foron definidas (nunha instalación previa ou con outra\n"
-"ferramenta de particionamento), simplemente terá que escoller cales delas\n"
-"usar no seu sistema Linux.\n"
-"\n"
-"\n"
-"Se as particións aínda non foron definidas, terá que crealas. Para facelo,\n"
-"use o axudante dispońible enriba. Dependendo da configuración do seu disco\n"
-"duro, hai varias solucións dispońibles:\n"
-"\n"
-"* Usar a partición existente: o axudante detectou unha ou máis particións de "
-"Linux existentes no seu disco duro. Se\n"
-" quere mantelas, escolla esta opción.\n"
-"\n"
-"\n"
-"* Borrar o disco completo: Se quere borrar tódolos datos e tódalas "
-"particións existentes no disco duro e substituílas\n"
-" polo seu novo sistema Mandrake Linux, pode escoller esta opción. Teńa "
-"coidado con esta solución, xa que non poderá\n"
-" reverter o proceso despois de confirmar.\n"
-"\n"
-"\n"
-"* Usar o espacio libre na partición de Windows: se Microsoft Windows está "
-"instalado no seu disco duro e ocupa todo o espacio\n"
-" dispońible, ten que crear espacio libre para o Linux. Para facelo, pode "
-"borrar a partición de\n"
-" Microsoft Windows e os datos (mire \"Borrar o disco completo\" ou as "
-"solucións do \"Modo experto\"), ou redimensionar\n"
-" a partición de Microsoft Windows. O redimensionamento pódese realizar sen "
-"perda de datos. Esta solución é\n"
-" a recomendada se quere usar Mandrake Linux e Microsoft Windows no mesmo "
-"ordenador.\n"
-"\n"
-"\n"
-" Antes de escoller esta solución, advirta que o tamańo da súa partición de "
-"Microsoft Windows\n"
-" será máis pequeno do que é agora. Isto significa que terá menos espacio "
-"libre en Microsoft Windows para\n"
-" almacenar os seus datos ou instalar novo software.\n"
-"\n"
-"\n"
-"* Modo experto: se quere particionar manualmente o seu disco duro, pode "
-"escoller esta opción. Teńa coidado\n"
-" ó escoller esta solución. É potente pero moi perigosa. Pode perder os seus "
-"datos moi facilmente. Polo tanto,\n"
-" non a escolla a menos que saiba o que está a facer."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Por favor, sexa paciente. Esta operación pode levar varios minutos."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Escolla \"Instalar\" se non hai ningunha versión previa de Mandrake Linux\n"
-"instalada ou se quere usar varios sistemas operativos.\n"
-"\n"
-"\n"
-"Escolla \"Actualizar\" se quere actualizar unha versión xa instalada de\n"
-"Mandrake Linux.\n"
-"\n"
-"\n"
-"Dependendo do seu cońecemento de GNU/Linux, pode escoller un dos seguintes\n"
-"niveis para instalar ou actualizar o seu sistema operativo Mandrake Linux:\n"
-"\n"
-"* Recomendada: se nunca instalou un sistema operativo GNU/Linux, escolla\n"
-"isto. A instalación será moi\n"
-" sinxela e apenas se lle preguntarán unhas poucas cuestións.\n"
-"\n"
-"\n"
-"* Personalizada: se ten familiaridade dabondo con GNU/Linux, pode escoller o "
-"uso principal (estación de traballo,\n"
-" servidor, desenvolvemento) do seu sistema. Terá que responder a máis "
-"cuestións que na clase de instalación\n"
-" \"Recomendada\", polo que necesitará saber como funciona GNU/Linux para "
-"escoller esta opción.\n"
-"\n"
-"\n"
-"* Experto: se ten un bo cońecemento de GNU/Linux, pode escoller esta clase "
-"de instalación. Do mesmo xeito que en\n"
-" \"Personalizada\", poderá escoller o uso principal (estación de traballo, "
-"servidor, desenvolvemento). Teńa\n"
-" moito coidado ó escoller este nivel. Vaille permitir facer unha "
-"instalación altamente personalizada.\n"
-" Responder algunhas cuestións pode ser moi difícil se non ten un bo "
-"cońecemento de GNU/Linux. Polo tanto, non\n"
-" escolla esta clase de instalación a menos que saiba o que está a facer."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-#, fuzzy
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Seleccione o porto correcto. Por exemplo, o porto\n"
-"COM1 en MS Windows chámase ttyS0 en GNU/Linux."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (O LInux LOader) e Grub son cargadores de arrinque: poden arrincar\n"
-"Linux ou outro sistema operativo presente no seu ordenador.\n"
-"Normalmente, estes outros sitemas son detectados correctamente e "
-"instalados.\n"
-"Se non é o caso, pode engadir unha entrada a man nesta pantalla. Sexa\n"
-"coidadoso na escolla dos parámetros correctos.\n"
-"\n"
-"\n"
-"Tamén pode non querer dar acceso a eses outros sitemas operativos a "
-"calquera,\n"
-"poidendo borrar as entradas correspondentes. Pero neste caso, precisará\n"
-"un disquete de arrinque para poder usalos."
-
-#: ../../help.pm_.c:722
-#, fuzzy
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Debe indicar onde desexa pońer a información\n"
-"necesaria para arrincar Linux.\n"
-"\n"
-"\n"
-"A menos que sepa exactamente o que fai, elixa sempre\n"
-"\"Primeiro sector do disco (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr ""
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Insira un disquete formatado con FAT na unidade %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr ""
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Para usar esta selección de paquetes gardada, arrinque a instalación con "
-"``linux defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Erro lendo o ficheiro %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Algún hardware do seu ordenador necesita controladores ``propietarios''\n"
-"para funcionar. Pode atopar máis información sobre eles en: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Ten que ter unha partición raíz.\n"
-"Para iso, faga unha partición (ou prema nunha que xa exista).\n"
-"Entón escolla a acción ``Punto de montaxe'', e asócieo a `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Debe ter unha partición de intercambio"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Non dispón de partición de intercambio\n"
-"\n"
-"żDesexa continuar de calquera xeito?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Debe ter unha partición de intercambio"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Usar espacio libre"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Non hai espacio libre dabondo para asignar novas particións"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Usar partición existente"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Non hai ningunha partición existente para usar"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Usar a partición de Windows para loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "żQue partición desexa usar para Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Escolla os tamańos"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Tamańo da partición raíz en MB: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Tamańo da partición de intercambio en MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Usar o espacio libre da partición de Windows"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "żQue partición desexa redimensionar?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Calculando os límites do sistema de ficheiros de Windows"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"O redimensionador de FAT non é capaz de manexar a súa partición,\n"
-"ocorreu o seguinte erro: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"A partición de Windows está demasiado fragmentada, execute primeiro o "
-"``defrag''"
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"ĄAVISO!\n"
-"\n"
-"O DrakX vai agora redimensionar a partición de Windows. Teńa coidado:\n"
-"esta operación é perigosa. Se aínda non o fixo, debería executar primeiro\n"
-"o scandisk no Windows (e opcionalmente o defrag), e reiniciar a "
-"instalación.\n"
-"Tamén é aconsellable facer unha copia de seguridade dos seus datos.\n"
-"Cando estea seguro, prema Aceptar."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "żQue tamańo desexa manter para o Windows en"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "partición %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "O redimensionamento da FAT fallou: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Non hai particións FAT para redimensionar ou para usar como loopback (ou non "
-"hai espacio libre dabondo)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Borrar o disco completo"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Borrar Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"Ten máis dunha unidade de disco duro, żen cal delas desexa instalar linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"Perderanse TODAS as particións existentes e os seus datos na unidade %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Particionamento de disco personalizado"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Usar fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Pode agora particionar %s.\n"
-"Cando remate, non esqueza gravar usando `w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Non ten espacio libre dabondo na partición de Windows"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Non se pode atopar espacio para a instalación"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "O axudante de particionamento do DrakX atopou as seguintes solucións:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "O particionamento fallou: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Activando a rede"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Desactivando a rede"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Ocorreu un erro, e o programa non sabe como manexalo de\n"
-"maneira limpa. Continúe ó seu propio risco."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Punto de montaxe %s duplicado"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Algúns paquetes importantes non se instalaron correctamente.\n"
-"A unidade de cdrom ou o cdrom están defectuosos.\n"
-"Comprobe o cdrom nun ordenador xa instalado usando \"rpm -qpl Mandrake/RPMS/"
-"*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Benvido a %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Ningunha disqueteira dispońible"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Entrando na etapa '%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"O seu sistema ten poucos recursos. Pode que teńa algún problema\n"
-"instalando Mandrake Linux. Se iso acontece, pode tentar unha instalación\n"
-"en modo texto. Para iso, prema 'F1' cando arrinque o CDROM, e escriba\n"
-"'text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Clase de instalación"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Escolla unha das seguintes clases de instalación:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "O tamańo total dos grupos que seleccionou é aproximadamente %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Se quere instalar menos deste tamańo,\n"
-"seleccione a porcentaxe de paquetes que desexe.\n"
-"\n"
-"Unha porcentaxe baixa instalará só os paquetes máis importantes;\n"
-"unha porcentaxe dun 100%% instalará tódolos paquetes seleccionados."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Ten espacio no seu disco para unicamente o %d%% destes paquetes.\n"
-"\n"
-"Se desexa instalar menos ca isto,\n"
-"seleccione a porcentaxe de paquetes que quere instalar.\n"
-"Unha porcentaxe baixa instalará só os paquetes máis importantes;\n"
-"unha porcentaxe de %d%% instalará tódolos paquetes posibles."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Vostede poderá escollelos máis especificamente na seguinte etapa."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Porcentaxe de paquetes a instalar"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Selección dos grupos de paquetes"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Selección individual de paquetes"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Tamańo total: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Paquete erróneo"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Nome: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versión: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Tamańo: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Importancia: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Non pode seleccionar este paquete xa que non hai espacio dabondo para "
-"instalalo"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Vanse instalar os seguintes paquetes"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Vanse eliminar os seguintes paquetes"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Non pode seleccionar/deseleccionar este paquete"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Este é un paquete obrigatorio, non se pode deseleccionar"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Non pode deseleccionar este paquete. Xa está instalado"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Este paquete ten que ser actualizado\n"
-"żEstá seguro de que quere deseleccionalo?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Non pode deseleccionar este paquete. Ten que ser actualizado"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Instalar"
-
-#: ../../install_steps_gtk.pm_.c:466
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "Gardar nun disquete"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Gardar a selección de paquetes"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "Desinstalar"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Escolla os paquetes que desexa instalar"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Instalando"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Estimando"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Tempo restante "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Por favor, agarde, preparando a instalación"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d paquetes"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Instalando o paquete %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Aceptar"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Rexeitar"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"ĄMude o Cd-Rom!\n"
-"\n"
-"Por favor, insira o Cd-Rom etiquetado \"%s\" na unidade e prema Aceptar. Se "
-"non o ten, prema Cancelar para omitir a instalación deste Cd-Rom."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "żSeguir adiante?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Houbo un erro ó ordenar os paquetes:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Houbo un erro ó instalar os paquetes:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Ocorreu un erro"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "żDesexa reiniciar a rede?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Acordo da licencia"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Teclado"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Escolla a disposición do seu teclado."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Esta é a lista completa de teclados dispońibles"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "żQué clase de instalación desexa?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Instalar/Actualizar"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "żÉ isto unha instalación ou unha actualización?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Recomendada"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Experto"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Actualización"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Gardar a selección de paquetes"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Escolla o seu tipo de rato."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Porto do rato"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Escolla o porto serie onde está conectado o seu rato."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Configurando tarxetas PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Configurando o IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "ningunha partición dispońible"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Examinando as particións para atopar os puntos de montaxe"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Seleccione os puntos de montaxe"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Non se pode ler a táboa de particións, está demasiado deteriorada :(\n"
-"Pódese probar baleirando as particións erróneas (ĄPerderanse TODOS os "
-"datos!).\n"
-"A outra solución é impedir que o DrakX modifique a táboa de particións.\n"
-"(o erro é %s)\n"
-"\n"
-"żConcorda coa perda de tódalas particións?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"O DiskDrake non puido ler correctamente a táboa de particións.\n"
-"ĄContinúe ó seu propio risco!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "Elixa as particións que desexa formatar"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Partición raíz"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "żCal é a partición raíz (/) do seu sistema?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Necesita reiniciar o equipo para que a modificación da táboa\n"
-"de particións se tome en conta"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Elixa as particións que desexa formatar"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "żComprobar os bloques erróneos?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formatando as particións"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Creando e formatando o ficheiro %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr ""
-"Non hai espacio de intercambio dabondo para finalizar a instalación,\n"
-"por favor, engada algún"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Buscando os paquetes dispońibles"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Atopando os paquetes para actualizar"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"O seu sistema non ten espacio libre dabondo para a instalación ou "
-"actualización (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completo (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Mínimo (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomendado (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-#, fuzzy
-msgid "Load from floppy"
-msgstr "Restaurar a partir dun disquete"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Loading from floppy"
-msgstr "Restaurar a partir dun disquete"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Package selection"
-msgstr "Selección dos grupos de paquetes"
-
-#: ../../install_steps_interactive.pm_.c:578
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "Insira un disquete na unidade %s"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Gardar nun disquete"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:671
-#, fuzzy
-msgid "Type of install"
-msgstr "Elixa o paquete a instalar"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-#, fuzzy
-msgid "With X"
-msgstr "Agarde"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Se ten tódolos CDs na lista inferior, prema Aceptar.\n"
-"Se non ten ningún deses CDs, prema Cancelar.\n"
-"Se só faltan algúns dos CDs, desmárqueos, e prema Aceptar."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom etiquetado \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Preparando a instalación"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Instalando o paquete %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Configuración trala instalación"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Insira un disquete na unidade %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Insira un disquete baleiro na unidade %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Vostede terá agora a posibilidade baixar programas de criptografía.\n"
-"\n"
-"AVISO:\n"
-"\n"
-"Por mor de requirimentos xerais aplicables a estes programas, e impostos\n"
-"por varias xurisdiccións, o cliente e/ou o usuario final destes programas "
-"ten\n"
-"que se asegurar de que as leis da súa xurisdicción lle permiten baixar,\n"
-"almacenar e/ou usar estes programas.\n"
-"\n"
-"Ademais, o cliente e/ou o usuario final ten que ter especial coidado en non\n"
-"infrinxi-las leis da súa xurisdicción. Se o cliente e/ou o usuario final "
-"non\n"
-"respeta estas leis aplicables, incorrerá en sancións graves.\n"
-"\n"
-"De ningún xeito Mandrakesoft nin os seus fabricantes e/ou provedores serán\n"
-"responsables de danos especiais, indirectos ou incidentais, sexan o que "
-"foren\n"
-"(incluindo, pero non limitando a, perda de beneficios, interrupción dos\n"
-"negocios, perda de datos comerciais e outras perdas pecuniarias, e nas\n"
-"eventuais responsabilidades e indemnizacións a seren pagadas por decisión\n"
-"dun tribunal) procedentes do uso, posesión, ou simplemente o feito de "
-"baixar\n"
-"este software, ó cal o cliente e/ou o usuario final tivese eventualmente\n"
-"acceso despois de asinar este acordo.\n"
-"\n"
-"Para calquera pregunta acerca de este acordo, por favor póńase en contacto "
-"con\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Contactando co espello para obter a lista dos paquetes dispońibles"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Escoller un espello do que coller os paquetes"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Contactando co espello para obter a lista dos paquetes dispońibles"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "żCal é a súa zona horaria?"
-
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "żO reloxo interno do seu ordenador usa a hora GMT?"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-#, fuzzy
-msgid "NTP Server"
-msgstr "Servidor NIS"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Servidor CUPS remoto"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Sen impresora"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "żTen algunha outra?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Resume"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Rato"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Zona horaria"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Impresora"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "Tarxeta RDSI"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Tarxeta de son"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "Tarxeta de TV"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-#, fuzzy
-msgid "NIS"
-msgstr "Usar NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-#, fuzzy
-msgid "Local files"
-msgstr "Impresora local"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Contrasinal de root"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Sen contrasinal"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr ""
-"Este contrasinal é demasiado simple (ten que ter polo menos %d caracteres)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autenticación"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "Autenticación"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-#, fuzzy
-msgid "LDAP Server"
-msgstr "Servidor"
-
-#: ../../install_steps_interactive.pm_.c:1134
-#, fuzzy
-msgid "Authentication NIS"
-msgstr "Autenticación NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "Dominio NIS"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "Servidor NIS"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, fuzzy
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Un disco de arrinque personalizado dálle a posibilidade de arrincar o seu\n"
-"equipo baixo Linux sen depender do cargador de arrinque normal. Isto pode "
-"ser\n"
-"útil se non desexa instalar LILO (ou grub) no seu sistema, ou se outro "
-"sistema\n"
-"operativo o borra ou se LILO non funciona coa configuración do seu equipo.\n"
-"Un disco de arrinque personalizado tamén pode ser usado coa imaxe de "
-"rescate\n"
-"de Mandrake, facendo así moito máis fácil a recuperación no caso de fallo\n"
-"grave do sistema. żDesexa crear un disco de arrinque para o seu sistema?"
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Primeira unidade de disquete"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Segunda unidade de disquete"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Omitir"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Un disco de arrinque personalizado dálle a posibilidade de arrincar o seu\n"
-"equipo baixo Linux sen depender do cargador de arrinque normal. Isto pode "
-"ser\n"
-"útil se non desexa instalar LILO (ou grub) no seu sistema, ou se outro "
-"sistema\n"
-"operativo o borra ou se LILO non funciona coa configuración do seu equipo.\n"
-"Un disco de arrinque personalizado tamén pode ser usado coa imaxe de "
-"rescate\n"
-"de Mandrake, facendo así moito máis fácil a recuperación no caso de fallo\n"
-"grave do sistema. żDesexa crear un disco de arrinque para o seu sistema?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Desculpe, pero non hai ningunha disqueteira dispońible"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Escolla a disqueteira que quere usar para crear o disco de arranque"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Insira un disquete na unidade %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Creando o disco de arrinque"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Preparando o cargador de arrinque"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "żDesexa usar aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Erro instalando aboot, \n"
-"żprobar a forzar a instalación mesmo se iso destrúe a primeira partición?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Cargador de arrinque"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "A instalación do xestor de arrinque fallou. Ocorreu o seguinte erro:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Insira un disquete baleiro na unidade %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Creando un disquete de auto-instalación"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Algunhas das etapas non foron completadas.\n"
-"\n"
-"żDesexa realmente saír agora?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Noraboa, a instalación rematou.\n"
-"Quite o disco de arrinque da unidade e prema [enter] para reiniciar.\n"
-"\n"
-"\n"
-"Para información sobre parches dispońibles para esta versión\n"
-"de Mandrake Linux, consulte o ficheiro de erratas dispońibles en\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Para información sobre a configuración do seu sistema, despois\n"
-"da instalación, hai un capítulo na Guía do Usuario Oficial\n"
-"de Mandrake Linux."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Xerar disquete de auto-instalación"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"A auto-instalación pode ser moi automatizada se así\n"
-"se desexa, nese caso adquirirá o control do disco duro\n"
-"(isto vale para a instalación noutro equipo).\n"
-"\n"
-"Pode preferir realizar novamente a instalación.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automatizada"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Reproducir"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Gardar a selección de paquetes"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Instalación de Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> entre elementos | <Space> escoller | <F12> seguinte "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "falla o kdesu"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Escolla a acción"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Avanzado"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Agarde, por favor"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandir árbore"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Pechar árbore"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Mudar entre lista completa e ordenada por grupos"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Elección incorrecta, tente de novo\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "żA súa escolla? (por omisión %s)"
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "żA súa escolla? (por omisión %s)"
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Opcións: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "żDesexa usar aboot?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "żA súa escolla? (por omisión %s)"
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Checo (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Alemán"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Teclado dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Espańol"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Finlandés"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Francés"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Noruegués"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polaco"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Ruso"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Sueco"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Británico"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Estadounidense"
-
-#: ../../keyboard.pm_.c:188
-#, fuzzy
-msgid "Albanian"
-msgstr "Iraniano"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armenio (antigo)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armenio (máquina de escribir)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armenio (fonético)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaianí (latín)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belga"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Armenio (fonético)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Búlgaro"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasileiro (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Bielorruso"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Suízo (alemán)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Suízo (francés)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Checo (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Alemán (sen teclas acentuadas)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Dinamarqués"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (EUA)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Noruegués)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (EUA)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estonio"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Xeorxiano (\"ruso\")"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Xeorxiano (\"latino\")"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Grego"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Húngaro"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Croata"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Israelí"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Israelí (Fonético)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iraniano"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandés"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italiano"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Xaponés de 106 teclas"
-
-#: ../../keyboard.pm_.c:231
-#, fuzzy
-msgid "Korean keyboard"
-msgstr "Británico"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latinoamericano"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituano AZERTY (antigo)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituano AZERTY (novo)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituano \"ringleira de números\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituano \"fonético\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Localización"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Macedonio"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Holandés"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Polaco (disposición qwerty)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Polaco (disposición qwertz)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugués"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Canadiano (Québec)"
-
-#: ../../keyboard.pm_.c:247
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "Ruso (Yawerty)"
-
-#: ../../keyboard.pm_.c:248
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "Ruso (Yawerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Ruso (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Esloveno"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Eslovaco (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Eslovaco (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "Azerbaianí (cirílico)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Táboa"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Teclado Thai"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Teclado Thai"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turco (tradicional modelo \"F\")"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turco (moderno modelo \"Q\")"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ucraíno"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Estadounidense (internacional)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamita \"ringleira de números\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Iugoslavo (latín/cirílico)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Puntos de montaxe circulares %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Quitar primeiro os volumes lóxicos\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Rato Sun"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Rato de roda PS2 xenérico"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 botón"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Rato de 2 botóns xenérico"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Xenérico"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Roda"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "serie"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Rato de 3 botóns xenérico"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Rato Logitech (serie, antigo tipo C7)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 botóns"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 botóns"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "ningún"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Ningún rato"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Probe o seu rato"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Para activar o rato,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "ĄMOVA A RODA!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Finalizar"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Seguinte ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Anterior"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "żÉ isto correcto?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Conectar á Internet"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"O xeito máis habitual de conectar con adsl é con pppoe.\n"
-"Algunhas conexións usan pptp, e algunhas usan dhcp.\n"
-"Se non o sabe con certeza, escolla 'usar pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "usar dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "usar pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "usar pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"żQue cliente dhcp desexa usar?\n"
-"Por omisión é o dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Non se detectou ningún adaptador de rede ethernet no seu sistema.\n"
-"Non se pode configurar este tipo de conexión."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Escolla a interface de rede"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Escolla o adaptador de rede que desexa usar para conectar á Internet"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "non se atopou ningunha tarxeta de rede"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Configurando a rede"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Introduza o nome da súa máquina se o cońece.\n"
-"Algúns servidores DHCP precisan o nome da máquina para funcionar.\n"
-"Este nome debe ser completamente cualificado,\n"
-"como ``mińamaquina.meulab.mińacomp.es''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Nome de máquina"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Axudante da configuración de rede"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Módem RDSI externo"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Tarxeta RDSI interna"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "żQue tipo de conexión RDSI ten?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "ĄDetectouse unha configuración de firewall!"
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "ĄDetectouse unha configuración de firewall!"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Configuración da RDSI"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Seleccione o seu provedor.\n"
-" Se non está na lista, escolla 'Unlisted'"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol"
-msgstr "Protocolo de arrinque"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Europa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "Resto do mundo"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Resto do mundo \n"
-" sen canle-D (lińas dedicadas)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "żQué protocolo desexa usar?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "żQué tipo de tarxeta ten?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Non sei"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Se ten unha tarxeta ISA, os valores na seguinte pantalla deberían ser os "
-"correctos.\n"
-"\n"
-"Se ten unha tarxeta PCMCIA, ten que cońecer a irq e a e/s da tarxeta.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Abortar"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Continuar"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "żCal é a sua tarxeta RDSI?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Detectouse unha Tarxeta RDSI PCI, pero se descońece o tipo. Seleccione unha "
-"tarxeta PCI na seguinte pantalla."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Non se atopou ningunha tarxeta RDSI PCI. Seleccione unha na próxima pantalla."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Escolla o porto serie onde está conectado o seu módem."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Opcións de chamada"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Nome da conexión"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Número de teléfono"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "ID do login"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Baseado nun script"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Baseado nun terminal"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Nome de dominio"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Primeiro Servidor DNS (opcional)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Segundo Servidor DNS (opcional)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Pode desconectar ou reconfigurar a súa conexión."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Pode reconfigurar a súa conexión."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Está neste intre conectado á internet."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Pode conectar á Internet ou reconfigurar a súa conexión."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Non está neste intre conectado á Internet."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Conectar"
-
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
-msgid "Disconnect"
-msgstr "conexión por RDSI"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Configurar a rede"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Conexión e configuración de Internet"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr ""
-"\n"
-"Pode desconectar ou reconfigurar a súa conexión."
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"Pode desconectar ou reconfigurar a súa conexión."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Configuración da rede"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Como está a facer unha instalación de rede, esta xa está configurada.\n"
-"Prema Aceptar para manter a configuración, ou Cancelar para reconfigurar a "
-"conexión de rede e Internet.\n"
-
-#: ../../network/netconnect.pm_.c:165
-#, fuzzy
-msgid ""
-"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 ""
-"Conexión á Internet\n"
-"\n"
-"Vaise configurar a súa conexión á internet/rede.\n"
-"Se non quere usar a detección automática, desmarque a caixa.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Escolla o perfil para configurar"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Usar detección automática"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Detectando os dispositivos..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Conexión normal por módem"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "detectado no porto %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "conexión por RDSI"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "detectouse %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy
-msgid "ADSL connection"
-msgstr "Conexión LAN"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "detectouse na interface %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Conexión por cable"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Conexión por cable"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Conexión LAN"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "tarxeta(s) ethernet detectada(s)"
-
-#: ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "Elixa a ferramenta que queira usar"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-#, fuzzy
-msgid "Internet connection"
-msgstr "Compartición da conexión á Internet"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "żDesexa que a conexión se inicie ó arrincar?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Configuración da rede"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, fuzzy, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr "żDesexa reiniciar a rede?"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Noraboa. A configuración da rede e de internet está rematada.\n"
-"\n"
-"Agora vai ser aplicada ó seu sistema.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Tras facer iso, aconséllase reiniciar o sistema X para\n"
-"evitar os problemas de mudar o nome de máquina."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"AVISO: Este dispositivo foi configurado previamente para conectar á "
-"Internet.\n"
-"Simplemente acepte para manter o dispositivo configurado.\n"
-"Se modifica os campos de embaixo, subsituirá esta configuración."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Introduza o enderezo IP desta máquina, por favor.\n"
-"Cada valor ten que ser introducido coma un enderezo IP en\n"
-"notación decimal con puntos (por exemplo: 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Configurar o dispositivo de rede %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (controlador %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "Enderezo IP"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Máscara de rede"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "IP automático"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Introduza o nome da súa máquina.\n"
-"Ese nome debe ser un nome completamente cualificado,\n"
-"como ``mińamaquina.meulab.mińacomp.es''.\n"
-"Pode tamén introducir o enderezo IP da pasarela se usa unha"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "Servidor DNS"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Dispositivo de pasarela"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Configuración dos proxys"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "Proxy HTTP"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "Proxy FTP"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "O proxy debería ser http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "O proxy debería ser ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Configuración de Internet"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "żQuere probar agora a conexión á Internet?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Probando a conexión..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "O sistema está conectado á Internet."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr ""
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Semella que o sistema non está conectado á internet.\n"
-"Probe reconfigurando a conexión."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Configuración da conexión"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Encha ou marque os campos de embaixo"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ da tarxeta"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Memoria da tarxeta (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "E/S da tarxeta"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "E/S_0 da tarxeta"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "E/S_1 da tarxeta"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "O seu número de teléfono persoal"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Nome do provedor (p.ex provider.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Número de teléfono do provedor"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Dns 1 do provedor (opcional)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Dns 2 do provedor (opcional)"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "Escoller teclado"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Modo de marcación"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "Tipo de conexión: "
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Tipo de conexión: "
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Login da conta (nome de usuario)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Contrasinal da conta"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "mount fallou: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "As particións estendidas non están soportadas nesta plataforma"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Ten un burato na táboa de particións, pero non se pode usar.\n"
-"A única solución é desprazar as particións primarias para que\n"
-"o burato esté despois das particións estendidas"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Fallou a restauración a partir do ficheiro %s: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Ficheiro de backup incorrecto"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Erro escribindo ó ficheiro %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Está a acontecer algo grave coa súa unidade.\n"
-"A proba para verificar a integridade dos datos fallou.\n"
-"Isto significa que calquera escritura no disco producirá lixo aleatorio"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "debe telo"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "importante"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "moi bo"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "bo"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "indiferente"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Impresora local"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Impresora remota"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Servidor CUPS remoto"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "Servidor lpd remoto"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Impresora de rede (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Impresora SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Servidor de impresión"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "URI do dispositivo de impresión"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Impresora local"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Impresora remota"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Erro escribindo ó ficheiro %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(módulo %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP do servidor CUPS"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Por omisión)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Selección da conexión da impresora"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "żComo está conectada a impresora?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"Cun servidor CUPS remoto, non terá que configurar aquí\n"
-"ningunha impresora, xa que serán detectadas automaticamente.\n"
-"No caso de dúbida, seleccione \"Servidor CUPS remoto\"."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Configuración da LAN"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Servidor CUPS remoto"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-#, fuzzy
-msgid "The port number should be an integer!"
-msgstr "O número de porto debe ser numérico"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP do servidor CUPS"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Porto"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Configuración do estilo de arrinque"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Detectando os dispositivos..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Probar portos"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Sen impresora"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Impresora local"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Impresora remota"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Usar detección automática"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Impresora remota"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "detectouse %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "URI do dispositivo de impresión"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Impresora local"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Escolla o porto serie onde está conectado o seu módem."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "URI do dispositivo de impresión"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Configuración"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Instalando o paquete %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Instalando o paquete %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "Lendo a base de datos de controladores de CUPS..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-#, fuzzy
-msgid "Reading printer database ..."
-msgstr "Lendo a base de datos de controladores de CUPS..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Opcións da impresora remota lpd"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Para utilizar unha fila de impresión remota lpd, é necesario\n"
-"que indique o nome do servidor de impresión e o nome da fila\n"
-"nese servidor."
-
-#: ../../printerdrake.pm_.c:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "Nome do servidor"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Impresora remota"
-
-#: ../../printerdrake.pm_.c:630
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "Nome do servidor"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Nome do servidor"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opcións de impresora SMB (Windows 9x/NT)"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Para imprimir nunha impresora SMB, é necesario escribir o\n"
-"nome do servidor SMB (que non sempre é o mesmo que o nome de\n"
-"máquina TCP/IP) e posiblemente o enderezo IP do servidor de\n"
-"impresoras, ademais é necesario o nome do recurso compartido\n"
-"da impresora que quere usar, así como calquera nome de usuario,\n"
-"grupo de traballo ou contrasinal que for necesario."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Servidor de SMB"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP do servidor SMB"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Nome de recurso compartido"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Grupo de traballo"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Opcións de impresora NetWare"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Para imprimir nunha impresora NetWare, é necesario escribir o nome\n"
-"do servidor de impresión NetWare (que non sempre é o mesmo que\n"
-"o nome de máquina TCP/IP), ademais do nome da fila de impresión\n"
-"que desexa usar, así como calquera nome de usuario ou contrasinal\n"
-"que for necesario."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Servidor de impresión"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Nome da fila de impresión"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Opcións da impresora de socket"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Para imprimir nunha impresora de socket, ten que fornecer\n"
-"o nome do servidor da impresora, e opcionalmente o número do porto."
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "Servidor de impresión"
-
-#: ../../printerdrake.pm_.c:858
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "Servidor de impresión"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "URI do dispositivo de impresión"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Nome da impresora"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descrición"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Localización"
-
-#: ../../printerdrake.pm_.c:1021
-#, fuzzy
-msgid "Preparing printer database ..."
-msgstr "Lendo a base de datos de controladores de CUPS..."
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Impresora remota"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "żÉ isto correcto?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Impresora remota"
-
-#: ../../printerdrake.pm_.c:1139
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Conexión da impresora"
-
-#: ../../printerdrake.pm_.c:1140
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "żQué tipo de impresora ten?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Configuración de Internet"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Configuración de Internet"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "żDesexa probar a impresión?"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "Probar portos"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-#, fuzzy
-msgid "No test pages"
-msgstr "Si, imprimir ambas páxinas de proba"
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "Impresora"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Ferramentas estándar"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "Imprimindo páxina(s) de proba..."
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "Imprimindo páxina(s) de proba..."
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Imprimindo páxina(s) de proba..."
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Imprimindo páxina(s) de proba..."
-
-#: ../../printerdrake.pm_.c:1635
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"A(s) páxina(s) de proba enviáronse ó servidor de impresión.\n"
-"Pode que lle leve un pouco ata que a impresora comece.\n"
-"Estado da impresión:\n"
-"%s\n"
-"\n"
-"żFunciona correctamente?"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"A(s) páxina(s) de proba enviáronse ó servidor de impresión.\n"
-"Pode que lle leve un pouco ata que a impresora comece.\n"
-"żFunciona correctamente?"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Sen impresora"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Rato"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Desactivando a rede"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Desactivando a rede"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Opcións da impresora"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "Lendo a base de datos de controladores de CUPS..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Configuración de Internet"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "Sen impresora"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "Lendo a base de datos de controladores de CUPS..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "Configurar a impresora"
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Probando a conexión..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Configurar a rede"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "O monitor non está configurado"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Configurando a rede"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "żQue sistema de impresión desexa usar?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Alto"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Paranoico"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "żQue sistema de impresión desexa usar?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Selección da conexión da impresora"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "żQue sistema de impresión desexa usar?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Configurar impresora"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Instalando o paquete %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Opcións da impresora"
-
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "Lendo a base de datos de controladores de CUPS..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Configurar impresora"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "żDesexa configurar unha impresora?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Estas son as filas de impresión.\n"
-"Pode engadir unha nova ou cambiar as que xa existen."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Estas son as filas de impresión.\n"
-"Pode engadir unha nova ou cambiar as que xa existen."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Configurar a rede"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "żDesexa probar a configuración?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Configuración de Internet"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "żDesexa probar a configuración?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Compartición da conexión á Internet"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Conexión da impresora"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "Imprimindo páxina(s) de proba..."
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "żDesexa probar a configuración?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Impresora remota"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Lendo a base de datos de controladores de CUPS..."
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Impresora local"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "żDesexa reiniciar a rede?"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Lendo a base de datos de controladores de CUPS..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-#, fuzzy
-msgid "Proxy configuration"
-msgstr "Configuración dos proxys"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr ""
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-#, fuzzy
-msgid "port"
-msgstr "Porto"
-
-#: ../../proxy.pm_.c:44
-#, fuzzy
-msgid "Url should begin with 'http:'"
-msgstr "O proxy debería ser http://..."
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-#, fuzzy
-msgid "The port part should be numeric"
-msgstr "O número de porto debe ser numérico"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "O proxy debería ser ftp://..."
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-#, fuzzy
-msgid "login"
-msgstr "Login automático"
-
-#: ../../proxy.pm_.c:82
-#, fuzzy
-msgid "password"
-msgstr "Contrasinal"
-
-#: ../../proxy.pm_.c:84
-#, fuzzy
-msgid "re-type password"
-msgstr "Sen contrasinal"
-
-#: ../../proxy.pm_.c:88
-#, fuzzy
-msgid "The passwords don't match. Try again!"
-msgstr "Os contrasinais non coinciden"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Non se pode engadir unha partición ó RAID _formatado_ md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Non se pode escribir o ficheiro %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid fallou"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid fallou (żpode que non estean as raidtools?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Non hai particións dabondo para o nivel RAID %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, un xestor de comandos periódicos."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd úsase para monitorizar o estado da batería e rexistralo a través do\n"
-"syslog. Tamén pode usarse para apagar a máquina cando a batería está baixa."
-
-#: ../../services.pm_.c:18
-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 ""
-"Executa os comandos programados polo comando at á hora indicada cando\n"
-"se executou at, e lanza comandos de lotes cando a carga media é baixa\n"
-"dabondo."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"O cron é un programa estándar de UNIX que executa programas especificados\n"
-"polo usuario en datas periódicas programadas. O vixie cron engade algunhas\n"
-"características ó cron básico de UNIX, incluindo mellor seguridade e\n"
-"opcións de configuración máis potentes."
-
-#: ../../services.pm_.c:23
-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 engade soporte para o rato ás aplicacións de texto de Linux, como\n"
-"o Midnight Commander. Tamén permite operacións de cortar e pegar co rato\n"
-"na consola, así como inclúe soporte para menús."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache é un servidor de World Wide Web. Úsase para servir ficheiros HTML\n"
-"e CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"O daemon superservidor de internet (usualmente chamado inetd) lanza varios\n"
-"outros servicios de internet cando se precisan. É o responsable de iniciar\n"
-"moitos servicios, incluíndo telnet, ftp, rsh, e rlogin. Desactivando inetd\n"
-"desactívanse tódolos servicios de internet dos que é responsable."
-
-#: ../../services.pm_.c:33
-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:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Este paquete carga o mapa de teclado seleccionado en /etc/sysconfig/"
-"keyboard.\n"
-"Este pode escollerse usando a utilidade kbdconfig. Debería deixar isto\n"
-"activado para a maioría dos sistemas."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: ../../services.pm_.c:43
-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 é o daemon de impresión requirido para que o lpr funcione\n"
-"correctamente. É basicamente un servidor que distribúe os traballos de\n"
-"impresión á(s) impresora(s)."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) é un servidor de nomes de dominio (DNS), que se emprega\n"
-"para converter os nomes de máquinas a enderezos IP."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Monta e desmonta tódolos puntos de montaxe de sistemas de\n"
-"ficheiros de Rede (NFS), SMB (Lan Manager/Windows) e NCP (NetWare)."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Activa/desactiva tódalas interfaces de rede configuradas para\n"
-"seren activadas no arrinque."
-
-#: ../../services.pm_.c:52
-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 é un protocolo popular para compartir ficheiros a través de redes TCP/"
-"IP.\n"
-"Este servicio fornece funcionalidade de servidor NFS, que se configura co\n"
-"ficheiro /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS é un protocolo popular para compartir ficheiros a través de\n"
-"redes TCP/IP. Este servicio fornece funcionalidade de bloqueo de ficheiros."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"O soporte PCMCIA é normalmente para cousas como ethernet e módems en\n"
-"portátiles. Non será arrincado ata que non estea configurado de xeito\n"
-"que non haxa problemas ó telo instalado en máquinas que non o precisan."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"O portmapper xestiona as conexións RPC, que son usadas por protocolos\n"
-"como NFS e NIS. O servidor portmap ten que estar a se executar en máquinas\n"
-"que actúan de servidores de protocolos que usan o mecanismo RPC."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix é un axente de transporte de correo (MTA), que é o programa\n"
-"que move o correo dunha máquina a outra."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Garda e restaura o estado da entropía do sistema para unha xeración\n"
-"de números aleatorios de calidade."
-
-#: ../../services.pm_.c:69
-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:71
-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 ""
-"O daemon routed permite actualizacións automáticas da táboa de\n"
-"encamińamento IP mediante o protocolo RIP. Mentres RIP se usa amplamente\n"
-"en redes pequenas, outros protocolos máis complexos de encamińamento\n"
-"precísanse para redes máis complexas."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"O protocolo rstat permite ós usuarios dunha rede obter\n"
-"métricas de rendemento de calquera máquina desa rede."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"O protocolo rusers permite ós usuarios dunha rede identificar quen\n"
-"está conectado noutras máquinas activas."
-
-#: ../../services.pm_.c:78
-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 ""
-"O protocolo rwho permite que os usuarios remotos obteńan unha lista de\n"
-"tódolos usuarios conectados a unha máquina que está a executar o daemon\n"
-"rwho (similar ó finger)."
-
-#: ../../services.pm_.c:80
-#, fuzzy
-msgid "Launch the sound system on your machine"
-msgstr "Lanzar o sistema X-Window ó iniciar"
-
-#: ../../services.pm_.c:81
-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 ""
-"O syslog é o método que usan moitos daemons para rexistrar mensaxes\n"
-"nos diversos ficheiros de rexistro do sistema. É unha boa idea executar\n"
-"sempre o syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: ../../services.pm_.c:84
-#, fuzzy
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Executa e para o Servidor de Fontes X ó arrincar e apagar."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Escolla os servicios que deben ser lanzados no arrinque do sistema"
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Impresora"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Mouse Systems"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Opcións da impresora remota lpd"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Bases de datos"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "dispositivo"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "a se executar"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "parado"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Servicios e daemons"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Non hai información adicional\n"
-"sobre este servicio, desculpe."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Ó arrincar"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Estado:"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Sector"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Resto do mundo"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Acceso á Internet"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedia - Gráficos"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Desenvolvemento"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Centro de control"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Interface de rede"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "Servidor de SMB"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Xogos"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Experto"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-#, fuzzy
-msgid "MandrakeStore"
-msgstr "obrigatorio"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Instalando o paquete %s"
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Non se pode ler a táboa de particións, está demasiado deteriorada :-(\n"
-"Probarase a ir pońendo en branco as particións erróneas"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Erro"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Configuración trala instalación"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Configuración do estilo de arrinque"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "ĄNoraboa!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Instalar"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Engadir usuario"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Formatando o ficheiro loopback %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Ficheiro de backup incorrecto"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Ficheiro de backup incorrecto"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Ficheiro de backup incorrecto"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Selección dos grupos de paquetes"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Escolla os paquetes que desexa instalar."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Eliminar fila"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows(FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "Usuarios"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Probe o seu rato"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Tente de novo"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Tente de novo"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "Sen contrasinal"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Conexión LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Selección da conexión da impresora"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Escolla a disposición do seu teclado."
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Prema nunha partición"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Escolla os paquetes que desexa instalar."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Ficheiro de backup incorrecto"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Probe o seu rato"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Ficheiro de backup incorrecto"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Interface de rede"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Nome de usuario"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Escolla os paquetes que desexa instalar."
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Escolla a lingua que desexe usar."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Usar optimizacións de disco duro"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Usar optimizacións de disco duro"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-#, fuzzy
-msgid "What"
-msgstr "Agarde"
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "Roda"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "Roda"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Opcións do módulo:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Configuración da rede"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Escolla os paquetes que desexa instalar."
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Escolla os paquetes que desexa instalar."
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Sistemas de ficheiros"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-#, fuzzy
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr "Ficheiros:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-#, fuzzy
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr "Ficheiros:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Opcións"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Escolla o porto serie onde está conectado o seu módem."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Configuración da rede"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Ficheiro de backup incorrecto"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Escolla o seu tipo de rato."
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Ficheiro de backup incorrecto"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Restaurar a partir dun disquete"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Escolla o seu tipo de rato."
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Outros"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Instalar sistema"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Restaurar a partir dun ficheiro"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Restaurar a partir dun ficheiro"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Personalizado"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Axuda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "Anterior"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Estado:"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Ficheiro de backup incorrecto"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Restaurar"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Texto"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Seleccionar paquetes"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Escolla a lingua que desexe usar."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Escolla a lingua que desexe usar."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Escolla a lingua que desexe usar."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Ficheiro de backup incorrecto"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Ficheiro de backup incorrecto"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Ficheiro de backup incorrecto"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Gardar nun ficheiro"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Probe o seu rato"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Escolla os paquetes que desexa instalar."
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Configuración da rede"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Configuración da rede"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Configuración da LAN"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Configuración da LAN"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Sistemas de ficheiros"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Fallou a instalación do %s. Ocorreu o erro seguinte:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "%s non atopado"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "feito"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Formatar disquete"
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Preparando a instalación"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-#, fuzzy
-msgid "Restart XFS"
-msgstr "restrinxir"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "restrinxir"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Formatar particións"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-#, fuzzy
-msgid "Uninstall Fonts"
-msgstr "Desinstalando os RPMs"
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuración da LAN"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Punto de montaxe"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Elixa as particións que desexa formatar"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Office"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Abortar"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Impresora"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Instalar sistema"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Seleccione un ficheiro"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Impresora remota"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
-msgid "Initials tests"
-msgstr "Mensaxe inicial"
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "ĄNon hai ningún adaptador de rede no seu sistema!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Instalar"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "ĄNon hai ningún adaptador de rede no seu sistema!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Saír da instalación"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Compartición da conexión á Internet"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "A compartición da conexión á Internet está activada"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"A configuración da compartición da conexión á Internet xa foi feita.\n"
-"Actualmente está activada.\n"
-"\n"
-"żQue desexa facer?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "desactivar"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "reconfigurar"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Desactivando os servidores..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "A compartición da conexión á Internet está agora desactivada."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "A compartición da conexión á Internet está desactivada"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"A configuración da compartición da conexión á Internet xa foi feita.\n"
-"Actualmente está desactivada.\n"
-"\n"
-"żQue desexa facer?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "activar"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Activando os servidores..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "A compartición da conexión á Internet está agora activada."
-
-#: ../../standalone/drakgw_.c:201
-#, fuzzy
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Está a piques de configurar o seu ordenador para que comparta a conexión á "
-"Internet.\n"
-"\n"
-"Nota: necesita un adaptador de rede dedicado para configurar unha rede de "
-"área local (LAN)."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interface %s (usando o módulo %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Interface %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "ĄNon hai ningún adaptador de rede no seu sistema!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Non se detectou ningún adaptador de rede ethernet no seu sistema. Execute a "
-"ferramenta de configuración de hardware."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Interface de rede"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Só hai un adaptador de rede configurado no seu sistema:\n"
-"\n"
-"%s\n"
-"\n"
-"Vaise configurar a rede de área local usando ese adaptador."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Escolla o adaptador de rede que vai estar conectado á rede de área local."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "O monitor non está configurado"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Configuración do estilo de arrinque"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Configuración de Internet"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "IP do servidor CUPS"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"ĄAtopouse un conflicto potencial de enderezos da LAN na configuración actual "
-"de %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "ĄDetectouse unha configuración de firewall!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"ĄAtención! Detectouse unha configuración de firewall existente. Pode que "
-"teńa que facer algún arranxo manual trala instalación."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Configurando..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Configurando os scripts, instalando o software, iniciando os servidores..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemas instalando o paquete %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Xa está todo configurado.\n"
-"Agora pode compartir a conexión á Internet con outros ordenadores da rede de "
-"área local, usando a configuración automática de rede (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-#, fuzzy
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-"A configuración da compartición da conexión á Internet xa foi feita.\n"
-"Actualmente está desactivada.\n"
-"\n"
-"żQue desexa facer?"
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-"A configuración da compartición da conexión á Internet xa foi feita.\n"
-"Actualmente está activada."
-
-#: ../../standalone/drakgw_.c:691
-#, fuzzy
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "A compartición da conexión á Internet está activada"
-
-#: ../../standalone/drakgw_.c:696
-#, fuzzy
-msgid "Internet connection sharing configuration"
-msgstr "Conexión e configuración de Internet"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuración de rede (%d adaptadores)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Borrar perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil para borrar:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novo perfil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nome de máquina: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Acceso á Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Pasarela:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Estado:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurar o acceso á Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuración da LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Controlador"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocolo"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Estado"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurar a rede de área local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Axudante..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Por favor, agarde... Aplicando a configuración"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Non conectado"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-#, fuzzy
-msgid "Disconnect..."
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuración da LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocolo de arrinque"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciado o arrincar"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Activar"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Activar"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuración da conexión á Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuración da conexión á Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipo de conexión: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parámetros"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Pasarela"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Tarxeta Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Establecendo o nivel de seguridade"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Centro de control"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Elixa a ferramenta que queira usar"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Canadiano (Québec)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "Europa"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Islandés"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "Europa"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "serie"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "uso: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Escolla a disposición do seu teclado."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "żQuere que a tecla de Borrar devolva Suprimir na consola?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Mude o Cd-Rom"
-
-#: ../../standalone/livedrake_.c:25
-#, 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 ""
-"Por favor, insira o Cd-Rom de instalación na unidade e prema Aceptar.\n"
-"Se non o ten, prema Cancelar para evitar a actualización "
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr ""
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-#, fuzzy
-msgid "logdrake"
-msgstr "draknet"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Ficheiro/_Novo"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Ficheiro/_Abrir"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>A"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Ficheiro/_Gardar"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>G"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Ficheiro/Gardar _como"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "Ficheiro/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Opcións"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Opcións/Proba"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/A_xuda"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Axuda/_Acerca..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Nome de usuario"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "Mensaxe inicial"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:191
-#, fuzzy
-msgid "matching"
-msgstr "Máquina:"
-
-#: ../../standalone/logdrake_.c:192
-#, fuzzy
-msgid "but not matching"
-msgstr "Máquina:"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Configuración da LAN"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "shadow"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "interesante"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "Formatando"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Configuración"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Gardar como..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Escolla o seu tipo de rato."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "non se atopou ningún serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "żEmular o terceiro botón?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Seleccione unha tarxeta gráfica"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Dispositivo de arrinque"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "lendo a configuración"
-
-#: ../../standalone/tinyfirewall_.c:44
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "lendo a configuración"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Escoller a lingua"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Clase de instalación"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Detectar discos duros"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Configurar o rato"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Escoller teclado"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr ""
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Sistemas de ficheiros"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formatar particións"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Seleccionar paquetes"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Instalar sistema"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Engadir usuario"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Configurar a rede"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Configurar servicios"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Cargador de arrinque"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Crear disquete de arrinque"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Configurar as X"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Instalar sistema"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Saír da instalación"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, fuzzy, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Adaptador %s: %s"
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Erro ó abrir %s para escritura: %s"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "lendo a configuración"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Por favor, agarde, preparando a instalación"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Ordenador de rede (cliente)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Office"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Estación de traballo Gnome"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Ferramentas para o seu Palm Pilot ou o seu Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Estación de traballo"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Firewall/Encamińador"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Programas de oficina: procesadores de texto (kword, abiword), follas de "
-"cálculo (kspread, gnumeric), visualizadores de pdf, etc"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Ferramentas de audio: reproductores de mp3 ou midi, mesturadores, etc"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Libros e howtos sobre Linux e o software libre"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Estación de traballo KDE"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedia - Vídeo"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-"Conxunto de ferramentas para correo, novas, web, transferencia de ficheiros "
-"e chat"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Bases de datos"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Tools to ease the configuration of your computer"
-msgstr "żDesexa probar a configuración?"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedia - Son"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilidades"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Documentación"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Ferramentas de consola"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Estación Internet"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Estación multimedia"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Configuración"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Máis escritorios gráficos (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"O ambiente de escritorio KDE, o ambiente gráfico básico cunha colección de "
-"ferramentas que o acompańan"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Ferramentas para crear e gravar CDs"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Estación de traballo de oficina"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Servidor"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Programas gráficos como o Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr ""
-"Bibliotecas de desenvolvemento en C e C++, programas e ficheiros include"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Servidor de ordenadores de rede"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Correo/Groupware/Novas"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Estación de xogos"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Reproductores e editores de vídeo"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedia - Gráficos"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Programas de divertimentos: arcade, taboleiros, estratexia, etc"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Conxunto de ferramentas para ler e enviar correo e novas (pine, mutt, tin..) "
-"e para navegar na Web"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arquivado, emuladores, monitorizaxe"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Finanzas persoais"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Un ambiente gráfico cun conxunto de aplicacións amigables e ferramentas de "
-"escritorio"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet gateway"
-msgstr "Acceso á Internet"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programas de reproducción/edición de son e vídeo"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Outros escritorios gráficos"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editores, shells, ferramentas de ficheiro, terminais"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programas para xestionar as súas finanzas, como o gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Xestión de información persoal"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedia - Gravación de CD"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Estación de traballo científica"
-
-#~ msgid "None"
-#~ msgstr "Ningún"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Agora pode indicar as opcións para o módulo %s."
-
-#~ msgid "Low"
-#~ msgstr "Baixo"
-
-#~ msgid "Medium"
-#~ msgstr "Medio"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Poucas melloras neste nivel de seguridade, a principal é que hai máis\n"
-#~ "avisos e comprobacións de seguridade."
-
-#~ msgid "mount failed"
-#~ msgstr "mount fallou"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Linux xestiona a hora en GMT ou \"Hora do Meridiano de Greenwich\", e a\n"
-#~ "traslada á hora local dependendo da zona que vostede escolla."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Conectar á Internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Desconectar de Internet"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Configurar a conexión de rede (LAN ou Internet)"
-
-#~ msgid "Active"
-#~ msgstr "Activar"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Unha impresora, de modelo \"%s\", foi detectada en "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Dispositivo de impresión local"
-
-#~ msgid "Printer Device"
-#~ msgstr "Dispositivo da impresora"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Escolla o tamańo que quere instalar"
-
-#~ msgid "Total size: "
-#~ msgstr "Tamańo total: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Agarde, por favor, "
-
-#~ msgid "Total time "
-#~ msgstr "Tempo total "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "żUsar a configuración existente para X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "żA que dispositivo está conectada a súa impresora?\n"
-#~ "(advirta que /dev/lp0 é equivalente a LPT1:)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Atención, o adaptador de rede xa está configurado. Vai ser reconfigurado."
-
-#~ msgid "New"
-#~ msgstr "Novo"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambigüidade (%s), sexa máis preciso\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (por omisión %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "żA súa escolla? (por omisión %s, escriba 'none' para ningunha)"
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "non se pode abrir /etc/sysconfig/autologin para lectura: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "żDesexa reiniciar a rede?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "żConcorda?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Está a piques de se reiniciar o dispositivo de rede:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Está a piques de se reiniciar o dispositivo de rede %s. żConcorda?"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Escolla a lingua que prefira para a instalación e para o sistema."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Ten que aceptar os termos da licencia de enriba para continuar coa "
-#~ "instalación.\n"
-#~ "\n"
-#~ "\n"
-#~ "Por favor, prema \"Aceptar\" se concorda con eses termos.\n"
-#~ "\n"
-#~ "\n"
-#~ "Por favor, prema \"Rexeitar\" se non concorda con eses termos. A "
-#~ "instalación rematará sen modificar a súa configuración actual."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Escolla a disposición do teclado que corresponda ó seu na lista"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Se desexa ter outras linguas (á parte da que escolleu ó principio da\n"
-#~ "instalación) dispońibles trala instalación, escóllaas na lista de "
-#~ "enriba.\n"
-#~ "Se quere seleccionar todas, só ten que usar \"Todas\"."
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Seleccione:\n"
-#~ "\n"
-#~ " - Personalizada: Se xa está familiarizado con GNU/Linux, pode entón "
-#~ "escoller\n"
-#~ " o uso principal da súa máquina. Mire embaixo para os detalles.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Experto: Isto supón que vostede manexa ben GNU/Linux e quere facer\n"
-#~ " unha instalación altamente personalizada. Do mesmo xeito que coa\n"
-#~ " clase de instalación \"Personalizada\", poderá escoller o uso do seu\n"
-#~ " sistema. Pero, por favor, ĄNON ESCOLLA ISTO A MENOS QUE SAIBA O QUE\n"
-#~ " ESTÁ A FACER!"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Agora ten que definir o uso da súa máquina. As escollas son:\n"
-#~ "\n"
-#~ "* Estación de traballo: esta é a escolla ideal se pretende usar a súa "
-#~ "máquina principalmente para o uso cotián,\n"
-#~ " na oficina ou na casa.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Desenvolvemento: se pretende usar a súa máquina principalmente para o "
-#~ "desenvolvemento de software, esta é unha boa escolla.\n"
-#~ " Terá unha completa colección de software instalado para compilar, "
-#~ "depurar e formatar código fonte, ou\n"
-#~ " para crear paquetes de software.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Servidor: se pretende usar esta máquina coma servidor, é a escolla "
-#~ "correcta. Sexa un servidor de ficheiros (NFS\n"
-#~ " ou SMB), un servidor de impresión (estilo Unix ou Microsoft Windows), "
-#~ "un servidor de autenticación (NIS), un servidor\n"
-#~ " de bases de datos, etc... Como tal, non espere que haxa cousas como "
-#~ "KDE, GNOME, etc. instaladas."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Agora pode selecciona-lo grupo de paquetes que desexa instalar\n"
-#~ "ou actualizar.\n"
-#~ "\n"
-#~ "DrakX comprobará se ten espacio dabondo para instalalos todos. Se non,\n"
-#~ "avisaralle diso. Se quere seguir aínda así, procederá coa instalación\n"
-#~ "de tódolos grupos seleccionados, pero deixará algún de menor interese.\n"
-#~ "Ó final da lista pode marca-la opción \"Selección individual de paquetes"
-#~ "\";\n"
-#~ "neste caso terá que percorrer máis de 1000 paquetes..."
-
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Se ten tódolos CDs da lista superior, prema Aceptar. Se non ten\n"
-#~ "ningún deses CDs, prema Cancelar. Se só faltan algúns dos CDs,\n"
-#~ "desmárqueos, e prema Aceptar."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Acenda o seu módem e escolla o correcto."
-
-#, fuzzy
-#~ 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 ""
-#~ "Vostede pode agora introduci-las opcións de chamada. Se non está seguro "
-#~ "de\n"
-#~ "que escribir, a información correcta pode obtela do seu ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Introduza:\n"
-#~ "\n"
-#~ " - Dirección IP: se non a cońece, pregúntelle ó seu administrador de "
-#~ "rede\n"
-#~ "ou ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Máscara de Rede: \"255.255.255.0\" é normalmente unha boa elección. "
-#~ "Se\n"
-#~ "non está seguro, pregunte ó seu administrador de rede ou ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - IP automática: Se a súa rede usa o protocolo bootp ou dhcp, escolla\n"
-#~ "esta opción. Neste caso, non é necesario ningún valor en \"Dirección IP"
-#~ "\".\n"
-#~ "Se non está seguro, pregunte ó seu administrador de rede ou ISP.\n"
-
-#, 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 ""
-#~ "Se a súa rede usa NIS, escolla \"Usar NIS\". Se non o sabe, pregúntelle "
-#~ "ó\n"
-#~ "seu administrador de rede."
-
-#~ 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 ""
-#~ "Agora pode introducir as opcións de marcado. Se non está seguro do\n"
-#~ "que escribir, a información correcta pode obtela do seu ISP."
-
-#~ 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 ""
-#~ "Se vai usar proxys, configúreos agora. Se non sabe se vai usar proxys,\n"
-#~ "pregunte ó seu administrador de rede ou ó seu ISP."
-
-#, fuzzy
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Pode instalar paquetes de criptografía se xa configurou a súa conexión a\n"
-#~ "internet correctamente. Primeiro escolla un espello do que quere baixa-"
-#~ "los\n"
-#~ "paquetes, e entón escolla os paquetes que desexa instalar.\n"
-#~ "\n"
-#~ "Percátese de que ten que escolle-lo espello e os paquetes criptográficos\n"
-#~ "de acordo coa súa lexislación."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr ""
-#~ "Agora pode seleccionar a zona horaria dependendo do lugar onde viva."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Agora pode introduci-lo contrasinal do superusuario para o seu sistema\n"
-#~ "Mandrake Linux. O contrasinal deberá ser tecleado dúas veces para\n"
-#~ "comprobar que ámbolos dous son idénticos.\n"
-#~ "\n"
-#~ "\n"
-#~ "O superusuario (root) é o administrador do sistema, e é o único usuario\n"
-#~ "ó que se lle permete modifica-la configuración do sistema. ĄPor tanto,\n"
-#~ "escolla o contrasinal con coidado! O uso non autorizado da conta de root\n"
-#~ "pode ser extremadamente perigoso para a integridade do sistema e os seus\n"
-#~ "datos, e para os outros sistemas conectados a el. O contrasinal debería\n"
-#~ "ser unha mestura de caracteres alfanuméricos e de 8 caracteres de longo,\n"
-#~ "polo menos. NUNCA debe ser anotado. Non escolla un contrasinal longo\n"
-#~ "de máis ou complicado: ten que ser capaz de lembralo sen moito esforzo."
-
-# Non é realmente fuzzy, é só para revisala. :)
-#, fuzzy
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Pode agora crear unha ou varias contas de usuarios Ťnormaisť, como\n"
-#~ "contraposición á conta de usuario Ťprivilexiadoť, root. Vostede\n"
-#~ "pode crear unha ou máis contas para cada persoa á que vostede queira\n"
-#~ "permitirlle o uso do ordenador. Note que cada conta de usuario terá\n"
-#~ "as súas preferencias (ambiente gráfico, configuración dos programas, "
-#~ "etc.)\n"
-#~ "e o seu propio directorio (chamado \"home\"), no que se almacenan esas\n"
-#~ "preferencias.\n"
-#~ "\n"
-#~ "\n"
-#~ "Antes que nada, Ącree unha conta para vostede mesmo! Aínda se é a única\n"
-#~ "persoa que vai usa-la máquina, NON debe entrar como root para o uso\n"
-#~ "diario do sistema: é un risco de seguridade elevado. Facer que o\n"
-#~ "sistema fique totalmente inoperante, pode ser moitas veces causa dun\n"
-#~ "simple erro ó teclear.\n"
-#~ "\n"
-#~ "\n"
-#~ "Polo tanto, debe entrar no sistema usando a conta de usuario normal que\n"
-#~ "vai crear aquí, e entrar como root só para as tarefas de administración\n"
-#~ "que o precisen."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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 ""
-#~ "As opcións principais do LILO e do grub son:\n"
-#~ " - Dispositivo de arrinque: Establece o nome do dispositivo (p.ex unha\n"
-#~ "partición dun disco duro) que contén o sector de arrinque. A menos que\n"
-#~ "saiba específicamente que é outro, escolla \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Retardo antes de arrinca-la imaxe por omisión: Indica o número de\n"
-#~ "décimas de segundo que agardará o cargador de inicio antes de arrincar a\n"
-#~ "primeira imaxe. Isto é útil nos sistemas que arrincan inmediatamente do\n"
-#~ "disco duro tras activa-lo teclado. O boot loader non agarda se o \"retardo"
-#~ "\"\n"
-#~ "é cero ou non se indica.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Modo de vídeo: Indica o modo de texto VGA que será utilizado ó\n"
-#~ "arrincar. Os seguintes valores están dispońibles:\n"
-#~ " * normal: escoller modo de texto normal 80x25.\n"
-#~ " * <número>: usa-lo modo de texto correspondente."
-
-#, fuzzy
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 ""
-#~ "LILO (O LInux LOader) e Grub son cargadores de arrinque: poden arrincar\n"
-#~ "Linux ou outro sistema operativo presente no seu ordenador.\n"
-#~ "Normalmente, estes outros sitemas son detectados correctamente e "
-#~ "instalados.\n"
-#~ "Se non é o caso, pode engadir unha entrada a man nesta pantalla. Sexa\n"
-#~ "coidadoso na escolla dos parámetros correctos.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tamén pode non querer dar acceso a eses outros sitemas operativos a "
-#~ "calquera,\n"
-#~ "poidendo borrar as entradas correspondentes. Pero neste caso, precisará\n"
-#~ "un disquete de arrinque para poder usalos."
-
-#, fuzzy
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "As opcións principais do LILO e do grub son:\n"
-#~ " - Dispositivo de arrinque: Establece o nome do dispositivo (p.ex unha\n"
-#~ "partición dun disco duro) que contén o sector de arrinque. A menos que\n"
-#~ "saiba específicamente que é outro, escolla \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Retardo antes de arrinca-la imaxe por omisión: Indica o número de\n"
-#~ "décimas de segundo que agardará o cargador de inicio antes de arrincar a\n"
-#~ "primeira imaxe. Isto é útil nos sistemas que arrincan inmediatamente do\n"
-#~ "disco duro tras activa-lo teclado. O boot loader non agarda se o \"retardo"
-#~ "\"\n"
-#~ "é cero ou non se indica.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Modo de vídeo: Indica o modo de texto VGA que será utilizado ó\n"
-#~ "arrincar. Os seguintes valores están dispońibles:\n"
-#~ " * normal: escoller modo de texto normal 80x25.\n"
-#~ " * <número>: usa-lo modo de texto correspondente."
-
-#, fuzzy
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Agora é o momento de configura-lo sistema de fiestras X, que é\n"
-#~ "o centro da interface gráfica de Linux. Para iso necesita configura-\n"
-#~ "-la súa tarxeta de vídeo e o seu monitor. A maioría deses pasos están\n"
-#~ "automatizados, así que probablemente a súa tarea limitarase a verificar\n"
-#~ "o que se fixo e aceptar a configuración proposta :-)\n"
-#~ "\n"
-#~ "\n"
-#~ "Cando a configuración estea rematada, lanzarase o servidor X\n"
-#~ "(a menos que vostede lle pida a DrakX que non), de xeito que\n"
-#~ "poida comprobar se todo está ben e corresponde ó que desexa.\n"
-#~ "Se non, pode voltar atrás e troca-la configuración; tantas\n"
-#~ "veces como sexa necesario."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Se algo vai mal coa configuración de X, use estas opcións para "
-#~ "configurar\n"
-#~ "correctamente o sistema X Window."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Se prefire usar un login gráfico, escolla \"Si\". Doutro xeito,\n"
-#~ "seleccione \"Non\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "O sistema vaise reiniciar.\n"
-#~ "\n"
-#~ "Despois de reiniciar, o seu novo sistema Mandrake Linux cargarase\n"
-#~ "automaticamente. Se vostede quere iniciar outro sistema operativo que xa\n"
-#~ "exista, lea as instruccións adicionais."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Checo (Programadores)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Eslovaco (Programadores)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Nome do perfil para crear:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Escribir /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formatar todas"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Logo de formatar tódalas particións,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "perderanse os datos nesas particións"
-
-#~ msgid "Reload"
-#~ msgstr "Recargar"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "żQuere realmente xerar un disquete de instalación para replicar linux?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Configuración de ADSL"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Cun servidor CUPS remoto, non terá que configurar aquí\n"
-#~ "ningunha impresora, xa que serán detectadas automaticamente,\n"
-#~ "a menos que teńa un servidor nunha rede diferente. Neste\n"
-#~ "caso, terá que indicar o enderezo IP do servidor de CUPS\n"
-#~ "e opcionalmente o número de porto."
-
-#~ msgid "Remote queue"
-#~ msgstr "Fila de impresión remota"
-
-#~ msgid "Profile "
-#~ msgstr "Perfil "
-
-#~ msgid "NetWare"
-#~ msgstr "Impresora Netware"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Non foi posible interpretar o contido do ficheiro de configuración."
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Ficheiro de configuración non recońecido"
-
-#~ msgid "Adapter"
-#~ msgstr "Adaptador"
-
-#~ msgid "Disable network"
-#~ msgstr "Desactivar a rede"
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Conexión DSL (ou ADSL)"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "Pode especificar directamente o URI para acceder á impresora co CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Si, imprimir unha páxina ASCII de proba"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Si, imprimir unha páxina PostScript de proba"
-
-#~ msgid "Paper Size"
-#~ msgstr "Tamańo do papel"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "żExtraer a páxina trala impresión?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Opcións do controlador Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "Opcións da profundidade de cor"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "żImprimir texto como PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "żCorrixir o efecto escaleira?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Número de páxinas por páxina de saída"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Marxes dereita/esquerda en puntos (1/72 dunha polgada)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Marxes superior/inferior en puntos (1/72 dunha polgada)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Opcións extra do Ghostscript"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Opcións extra para texto"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Inverter a orde das páxinas"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Seleccionar a conexión á impresora remota"
-
-#~ 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 ""
-#~ "Cada impresora necesita un nome (por exemplo lp).\n"
-#~ "Pódense definir outros parámetros como a descrición da\n"
-#~ "impresora ou a súa localización. żQue nome quere usar para\n"
-#~ "esta impresora e como está conectada?"
-
-#~ 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 ""
-#~ "Cada fila de impresión (á que se dirixen os traballos de impresión)\n"
-#~ "necesita un nome (frecuentemente lp) e un directorio spool asociado\n"
-#~ "a el. żQué nome e directorio quere que se utilicen para esta fila e como\n"
-#~ "está conectada a impresora?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Nome da fila"
-
-#~ msgid "Spool directory"
-#~ msgstr "Directorio spool"
-
-#~ msgid "Disable"
-#~ msgstr "Desactivar"
-
-#~ msgid "Enable"
-#~ msgstr "Activar"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Para ter un sistema máis seguro, debería seleccionar \"Usar ficheiro "
-#~ "shadow\"\n"
-#~ "e \"Usar contrasinais MD5\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Se a súa rede usa NIS, escolla \"Usar NIS\". Se non o sabe, pregúntelle "
-#~ "ó\n"
-#~ "seu administrador de rede."
-
-#~ msgid "yellow pages"
-#~ msgstr "páxinas amarelas (yp)"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Dns 1 do provedor"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Dns 2 do provedor"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "żComo quere conectar á Internet?"
-
-#~ msgid "Boot style configuration"
-#~ msgstr "Configuración do estilo de arrinque"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#, 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 ""
-#~ "Vostede pode agora escoller algunhas opcións diversas para o sistema.\n"
-#~ "\n"
-#~ " - Usar optimizacións de disco duro: esta opción pode mellora-lo "
-#~ "rendemento\n"
-#~ " do disco duro, pero é só para usuarios avanzados: algúns chipsets que "
-#~ "non\n"
-#~ " funcionan ben poden estraga-los seus datos. O kernel ten unha lista "
-#~ "negra\n"
-#~ " de unidades e chipsets, pero se quere evitar sorpresas "
-#~ "desagradables,\n"
-#~ " deixe esta opción desactivada.\n"
-#~ "\n"
-#~ " - Escoller un nivel de seguridade: pode escoller un nivel de "
-#~ "seguridade\n"
-#~ " para o seu sistema. Vaia ó manual para información completa. "
-#~ "Basicamente:\n"
-#~ " se non sabe cal, escolla \"Medio\"; se quere realmente ter unha "
-#~ "máquina\n"
-#~ " segura, escolla \"Paranoico\", pero teńa coidado: ĄNESTE NIVEL, ROOT "
-#~ "NON\n"
-#~ " PODE FACER LOGIN NA CONSOLA! Se quere ser root, terá que facer login "
-#~ "como\n"
-#~ " usuario e entón usar \"su\". Máis xeralmente, non agarde usa-la súa\n"
-#~ " máquina para outra cousa que non sexa un servidor. Xa foi avisado.\n"
-#~ "\n"
-#~ " - Tamańo exacto da memoria se se necesita: por desgracia, no mundo "
-#~ "actual\n"
-#~ " de PCs, non hai un método estándar para preguntarlle á BIOS acerca "
-#~ "da\n"
-#~ " cantidade de RAM no seu ordenador. Por iso, Linux pode non ser capaz "
-#~ "de\n"
-#~ " detectar correctamente a cantidade de RAM. Se é o caso, indique a\n"
-#~ " cantidade correcta. Nota: unha diferencia de 2 ou 4 MB é normal.\n"
-#~ "\n"
-#~ " - Automonta-las unidades extraíbles: Se vostede prefere non montar\n"
-#~ " manualmente as unidades extraíbles (CD-ROM, disquete, Zip), "
-#~ "escribindo\n"
-#~ " \"mount\" e \"umount\", escolla esta opción.\n"
-#~ "\n"
-#~ " - Activar Bloq Num ó iniciar: Se quere que Bloq Num estea activado\n"
-#~ " tralo arrinque, escolla esta opción (Nota: Bloq Num pode ou non pode\n"
-#~ " funcionar nas X)."
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Varios"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Dependencias automáticas"
-
-#~ msgid "Selected size %d%s"
-#~ msgstr "Tamańo seleccionado %d%s"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Preguntas varias"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Non se pode usar o supermount no nivel de seguridade alto"
-
-#~ 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ón: NESTE NIVEL DE SEGURIDADE, A AUTENTICACIÓN DO ROOT NA CONSOLA\n"
-#~ "NON ESTÁ PERMITIDA! Se quere ser root, terá que conectar coma\n"
-#~ "usuario e logo usar o \"su\". De xeito máis xeral, non agarde que a\n"
-#~ "máquina actúe doutro modo distinto a un servidor.\n"
-#~ "Xa foi avisado."
-
-#~ 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 ""
-#~ "Teńa coidado, ter o bloqueo numérico activado causa que moitas teclas\n"
-#~ "dean díxitos en vez de letras normais (p.ex: premer `p' dá un `6')"
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ "Desculpe, a configuración do correo aínda non está implementada. Sexa "
-#~ "paciente."
-
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "Benvido ó axudante da configuración de rede.\n"
-#~ "żQue compońentes desexa configurar?\n"
-
-#~ msgid "Internet/Network access"
-#~ msgstr "Acceso a Internet/Rede"
-
-#~ 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 ""
-#~ "Agora que a conexión á Internet está configurada,\n"
-#~ "o seu ordenador pode ser configurado para compartila.\n"
-#~ "Nota: Necesita un adaptador de rede dedicado para configurar unha rede de "
-#~ "área local (LAN).\n"
-#~ "\n"
-#~ "żDesexa configurar a compartición da conexión á Internet?\n"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr ""
-#~ "Este script de inicialización tenta cargar os módulos para o rato usb."
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Configuración do LILO/GRUB"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Creación dun disquete de arrinque"
-
-#~ msgid "Choice"
-#~ msgstr "Escolla"
-
-#~ msgid "Actions"
-#~ msgstr "Accións"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Aplicacións científicas"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Ficheiro/Impresión/Samba"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "DNS/DHCP "
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "żQue cargador(es) de arrinque quere usar?"
-
-#~ msgid "loopback"
-#~ msgstr "loopback"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Zona horaria"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Disquete de auto-instalación"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Usar diskdrake"
-
-#~ msgid "Customized"
-#~ msgstr "Personalizada"
-
-#~ 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 ""
-#~ "żEstá seguro de que é un experto? \n"
-#~ "Permitiráselle facer cousas máis potentes pero perigosas.\n"
-#~ "Vánselle preguntar cuestións como: ``żUsar ficheiro shadow para os "
-#~ "contrasinais?'', żestá preparado para responder a este tipo de cuestións?"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "żCal é o uso do seu sistema?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Escolla o tamańo que quere instalar"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Usar ficheiro shadow"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Usar contrasinais MD5"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(pode provocar corrupción dos datos)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Activar Bloq Num ó iniciar"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Confirmar Contrasinal"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Atopouse unha tarxeta RDSI:\n"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "żDesexa que se tente atopar un módem?"
-
-#~ msgid "Other countries"
-#~ msgstr "Outros países"
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "żEn que país se atopa vostede?"
-
-#~ 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 "Se o seu módem adsl é Alcatel, escolla Alcatel. Doutro xeito, ECI."
-
-#~ msgid "don't use pppoe"
-#~ msgstr "non usar pppoe"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Desactivar a Conexión a Internet"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Configurar a conexión a Internet / Configurar a Rede local"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ "A rede local xa foi configurada.\n"
-#~ "Desexa:"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (importante)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (moi bo)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (bo)"
-
-#~ msgid "using module"
-#~ msgstr "usando un módulo"
-
-#~ msgid "Search"
-#~ msgstr "Buscar"
-
-#~ msgid "Package"
-#~ msgstr "Paquete"
-
-#~ msgid "Tree"
-#~ msgstr "Árbore"
-
-#~ msgid "Sort by"
-#~ msgstr "Ordenar por"
-
-#~ msgid "Category"
-#~ msgstr "Categoría"
-
-#~ msgid "Installed packages"
-#~ msgstr "Paquetes instalados"
-
-#~ msgid "Available packages"
-#~ msgstr "Paquetes dispońibles"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Amosar só as pólas"
-
-#~ msgid "Expand all"
-#~ msgstr "Expandir todos"
-
-#~ msgid "Collapse all"
-#~ msgstr "Pechar todos"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Engadir localización dos paquetes"
-
-#~ msgid "Update location"
-#~ msgstr "Actualizar lugar"
-
-#~ msgid "Configuration: Add Location"
-#~ msgstr "Configuración: Engadir Lugar"
-
-#~ msgid "Find Package"
-#~ msgstr "Buscar Paquete"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Buscar paquete que conteńa un ficheiro"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Trocar entre Instalado e Dispońible"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Comprobando dependencias"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Os seguintes paquetes van ser desinstalados"
-
-#~ msgid "Regexp"
-#~ msgstr "Expr.Reg"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Que paquetes buscar"
-
-#~ msgid "No match"
-#~ msgstr "Sen coincidencias"
-
-#~ msgid "No more match"
-#~ msgstr "Non hai máis coincidencias"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake está en modo ``baixa memoria''.\n"
-#~ "Vaise reiniciar rpmdrake para permitir a busca de ficheiros"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "żQue ficheiro está a buscar?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "żQue está a buscar?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Dea un nome (ex: `extra', `commercial')"
-
-#~ msgid "Directory"
-#~ msgstr "Directorio"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Non hai cdrom dispońible (nada en /mnt/cdrom)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL do directorio que contén os RPMs"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Para FTP e HTTP, ten que indicar o lugar de hdlist\n"
-#~ "Ten que ser relativo á URL anterior"
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Por favor, envíe a seguinte información"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s xa está en uso"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Actualizando a base de RPMs"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Vaise borra-la entrada %s"
-
-#~ msgid "Finding leaves"
-#~ msgstr "Buscando as pólas"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "A busca das pólas leva un tempo"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Manipulación de Gráficos"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, bibliotecas, ferramentas"
-
-#~ msgid "Development applications"
-#~ msgstr "Aplicacións de desenvolvemento"
-
-#~ msgid "Sciences"
-#~ msgstr "Ciencias"
-
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ "Programas de Chat (IRC ou mensaxería instantánea) como o xchat, licq, "
-#~ "gaim e ferramentas de transferencia de ficheiros"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Facilidades de Comunicación"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Development other"
-#~ msgstr "Outros de desenvolvemento"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Clientes e servidores de Bases de Datos (mysql e postgresql)"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Desenvolvemento en C/C++"
-
-#~ msgid "Czech"
-#~ msgstr "Checo"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "żA qué porto serie está conectado o rato?"
diff --git a/perl-install/share/po/help_xml2pm.pl b/perl-install/share/po/help_xml2pm.pl
deleted file mode 100755
index 932b5943f..000000000
--- a/perl-install/share/po/help_xml2pm.pl
+++ /dev/null
@@ -1,218 +0,0 @@
-#!/usr/bin/perl -w
-
-use XML::Parser;
-use MDK::Common;
-
-my $help;
-my $dir = "doc/manual/literal/drakx";
-my $xsltproc = "/usr/bin/xsltproc";
-
-if ( ! -x "$xsltproc" ){
- print "You need to have \"$xsltproc\" - ";
- print "so type \"urpmi libxslt-proc\" please.\n";
- exit 1;
-}
-my @langs = grep { /^..$/ && -e "$dir/$_/drakx-help.xml" } all($dir) or die "no XML help found in $dir\n";
-
-my %helps = map {
- my $lang = $_;
- my $p = new XML::Parser(Style => 'Tree');
- open F, "$xsltproc id.xsl $dir/$lang/drakx-help.xml|";
- my $tree = $p->parse(*F);
-
- $lang => rewrite2(rewrite1(@$tree), $lang);
-} @langs;
-
-my $base = delete $helps{en} || die;
-save_help($base);
-
-foreach my $lang (keys %helps) {
- print "Now transforming: $lang\n";
- local *F;
- my ($charset) = cat_("$lang.po") =~ /charset=([^\\]+)/ or die "missing charset in $lang.po\n";
- open F, "| iconv -f utf8 -t $charset//TRANSLIT > help-$lang.pot";
- #open F, "|cat - > help-$lang.pot";
- print F "\n";
- foreach my $id (keys %{$helps{$lang}}) {
- $base->{$id} or die "$lang:$id doesn't exist in english\n";
- print F qq(# DO NOT BOTHER TO MODIFY HERE, SEE:\n# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/$lang/drakx-help.xml\n);
- print F qq(msgid ""\n");
- print F join(qq(\\n"\n"), split "\n", $base->{$id});
- print F qq("\nmsgstr ""\n");
- print F join(qq(\\n"\n"), split "\n", $helps{$lang}{$id});
- print F qq("\n\n);
- }
-}
-unlink(".memdump");
-
-sub save_help {
- my ($help) = @_;
- local *F;
- open F, "| LC_ALL=fr iconv -f utf8 -t ascii//TRANSLIT > ../../help.pm";
- print F q{package help;
-use common;
-
-# IMPORTANT: Don't edit this File - It is automatically generated
-# from the manuals !!!
-# Write a mail to <documentation@mandrakesoft.com> if
-# you want it changed.
-
-%steps = (
-empty => '',
-};
- print F qq(
-$_ =>
-__("$help->{$_}"),
-) foreach sort keys %$help;
- print F ");\n";
-}
-
-# i don't like the default tree format given by XML::Parser,
-# rewrite it in my own tree format
-sub rewrite1 {
- my ($tag, $tree) = @_;
- my ($attr, @nodes) = @$tree;
- my @l;
- while (@nodes) {
- my ($tag, $tree) = splice(@nodes, 0, 2);
- if ($tag eq '0') {
- foreach ($tree) {
- s/\s+/ /gs;
- s/"/\\"/g;
- }
- push @l, $tree
- } elsif ($tag eq 'screen') {
- $tree->[1] eq '0' or die "screen tag contains non CDATA\n";
- push @l, $tree->[2];
- } else {
- push @l, rewrite1($tag, $tree);
- }
- }
- { attr => $attr, tag => lc $tag, children => \@l };
-}
-
-# return the list of nodes named $tag
-sub find {
- my ($tag, $tree) = @_;
- if (!ref($tree)) {
- ();
- } elsif ($tree->{tag} eq $tag) {
- $tree;
- } else {
- map { find($tag, $_) } @{$tree->{children}};
- }
-}
-
-sub rewrite2 {
- use utf8;
- my ($tree, $lang) = @_;
- our $i18ned_open_text_quote = $ {{
- fr => " ",
- de => "„",
- es => "\\\"",
- it => "''",
- }}{$lang};
- our $i18ned_close_text_quote = $ {{
- fr => " ",
- de => "“",
- es => "\\\"",
- it => "''",
- }}{$lang};
- our $i18ned_open_label_quote = $ {{ fr => "« ", de => "„"}}{$lang};
- our $i18ned_close_label_quote = $ {{ fr => " »", de => "“"}}{$lang};
- our $i18ned_open_command_quote = $ {{ fr => "« ", de => "„"}}{$lang};
- our $i18ned_close_command_quote = $ {{ fr => " »", de => "“"}}{$lang};
- our $i18ned_open_input_quote = $ {{ fr => " ", de => ""}}{$lang};
- our $i18ned_close_input_quote = $ {{ fr => " ", de => ""}}{$lang};
- our $i18ned_open_key_quote = $ {{ de => "["}}{$lang};
- our $i18ned_close_key_quote = $ {{ de => "]"}}{$lang};
- # rewrite2_ fills in $help
- $help = {};
- rewrite2_($tree);
- $help;
-}
-
-sub rewrite2_ {
- my ($tree) = @_;
- ref($tree) or return $tree;
-
- my $text = do {
- my @l = map { rewrite2_($_) } @{$tree->{children}};
- my $text = "";
- foreach (grep { !/^\s*$/ } @l) {
- s/^ // if $text =~ /\s$/;
- $text =~ s/ $// if /^\s/;
- $text =~ s/\n+$// if /^\n/;
- $text .= $_;
- }
- $text;
- };
-
- if (0) {
- } elsif (member($tree->{tag}, 'formalpara', 'para', 'itemizedlist', 'orderedlist')) {
- $text =~ s/^\s(?!\s)//;
- $text =~ s/^( ?\n)+//;
- $text =~ s/\s+$//;
- qq(\n$text\n);
- } elsif (member($tree->{tag}, 'quote', 'citetitle', 'foreignphrase')) {
- ($i18ned_open_text_quote || "``") . $text . ($i18ned_close_text_quote || "''");
- } elsif (member($tree->{tag}, 'guilabel', 'guibutton', 'guimenu', 'literal', 'filename')) {
- ($i18ned_open_label_quote || "\\\"") . $text . ($i18ned_close_label_quote || "\\\"");
- } elsif ($tree->{tag} eq 'command') {
- ($i18ned_open_command_quote || "\\\"") . $text . ($i18ned_close_command_quote || "\\\"");
- } elsif ($tree->{tag} eq 'userinput') {
- ($i18ned_open_input_quote || ">>") . $text . ($i18ned_close_input_quote || "<<");
- } elsif ($tree->{tag} eq 'keycap') {
- ($i18ned_open_key_quote || "[") . $text . ($i18ned_close_key_quote || "]");
- } elsif (member($tree->{tag}, 'keysym')) {
- qq($text);
- } elsif (member($tree->{tag}, 'footnote')) {
- '(*)'
- } elsif ($tree->{tag} eq 'warning') {
- $text =~ s/^(\s+)/$1!! /;
- $text =~ s/(\s+)$/ !!$1/;
- $text;
- } elsif ($tree->{tag} eq 'listitem') {
- my $cnt;
- $text =~ s/^\s+//;
- $text =~ s/^/' ' . ($cnt++ ? ' ' : '* ')/emg;
- "\n$text\n";
-
- } elsif (member($tree->{tag},
- 'acronym', 'application', 'emphasis',
- 'keycombo', 'note',
- 'superscript', 'systemitem',
- 'tip', 'ulink', 'xref'
- )) {
- # ignored tags
- $text;
- } elsif (member($tree->{tag},
- 'title', 'article', 'primary', 'secondary',
- 'indexterm',
- )) {
- # dropped tags
- '';
- } elsif ($tree->{tag} eq 'sect1') {
- $text =~ s/^\s+//;
-
- my @footnotes = map {
- my $s = rewrite2_({ %$_, tag => 'para' });
- $s =~ s/^\s+//;
- "(*) $s";
- } find('footnote', $tree);
- $help->{$tree->{attr}{id}} = aerate($text . join('', @footnotes));
- '';
- } elsif ($tree->{tag} eq 'screen') {
- qq(\n$text\n);
- } else {
- die "unknown tag $tree->{tag}\n";
- }
-}
-
-sub aerate {
- my ($s) = @_;
- #- the warp_text column is adjusted so that xgettext do not wrap text around
- #- which cause msgmerge to add a lot of fuzzy
- my $s2 = join("\n\n", map { join("\n", warp_text($_, 75)) } split "\n", $s);
- $s2;
-}
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
deleted file mode 100644
index 20347847b..000000000
--- a/perl-install/share/po/hr.po
+++ /dev/null
@@ -1,11819 +0,0 @@
-# KTranslator Generated File
-# Copyright (c) 1999 MandrakeSoft
-# Vladimir Vuksan <vuksan@veus.hr>, 1999.
-# Vlatko Kosturjak <kost@iname.com>, 2001.
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-13 06:59CET\n"
-"Last-Translator: Vlatko Kosturjak <kost@iname.com>\n"
-"Language-Team: Croatian <lokalizacija@linux.hr>\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:242
-msgid "Configure all heads independently"
-msgstr "Podesi sve zaslone nezavisno"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Koristi Xinerama proširenje"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Podesi samo karticu \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Više-zaslonska postava"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Vaš sustav podržava postavu sa više zaslona.\n"
-"Što želite napraviti?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafička kartica"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Odaberite grafičku karticu"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Odaberite X poslužitelj"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X poslužitelj"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Odaberite X upravljački program"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X upravljački program"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Koju konfiguraciju XFree-a želite imati?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Vaša video kartica može imati 3D ubrzanje samo sa XFree %s.\n"
-"Vaša kartica je podržana od XFree %s koji možda ima bolju podršku u 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Vaša kartica može imati 3D hardware-sku akceleraciju sa XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s sa 3D hardware akceleracijom"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Vaša kartica može imati 3D hadware akceleraciju podržanu od XFree %s,\n"
-"UPOZORAVAMO VAS DA JE OVO EKSPERIMENTALNA PODRŠKA I MOŽE ZAMRZNUTI VAŠE "
-"RAČUNALO."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s sa EXPERIMENTALNOM 3D hardware akceleracijom"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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ša video kartica može imati 3D ubrzanje samo sa XFree %s,\n"
-"UPOZORAVAMO VAS DA JE OVO EKSPERIMENTALNA PODRŠKA I MOŽE ZAMRZNUTI VAŠE "
-"RAČUNALO.Vaša kartica je podržana od XFree %s koja može imati bolju podršku "
-"u 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (instalacijski zaslonski upravljački program)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree postavke"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Odaberite količinu memorije na grafičkoj kartici"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Postavke poslužitelja"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Odaberite monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Dva kritična parametra su vertikalna vrijednost osvježavanja, koja je "
-"vrijednost\n"
-"u kojoj se cijeli zaslon osvježava, i najvažnije horizontalna\n"
-"vrijednost osvježavanja koja ja vrijednost u kojoj se svaka linija "
-"prikazuje.\n"
-"\n"
-"JAKO JE VAŽNO da ne specifirate tip monitora kod kojega je raspon "
-"osvježavanja\n"
-"veći od mogućnosti vašeg monitora jer možete oštetiti vaš monitor.\n"
-" Ukoliko ste u nedoumici, izaberite konzervativne postavke."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Horizontalna vrijednost osvježavanja"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Vertikalna vrijednost osvježavanja"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Niste podesili monitor"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Niste podesili grafičku karticu"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Niste podesili rezoluciju"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Da li želite iskušati postavu ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Upozorenje: testiranje grafičke kartice može zamrzunti vaše računalo"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Iskušaj postavu"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"provjerite parametre koje ste unjeli"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Pojavila se greška:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Zatvaram nakon %d sekundi"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Da li je ovo ispravno?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Pojavila se greška, provjerite parametre koje ste unjeli"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Rezolucija"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Odaberite rezoluciju i color depth"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Grafička kartica: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 poslužitelj: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Više"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "U redu"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspertni mod"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Pokaži sve"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezolucije"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Raspored tipkovnice: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Vrsta miša: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Uređaj miša: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Horizontalna Sinkronizacija Monitora: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Vertikalno Osvježenje Monitora: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Grafička kartica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikacija grafičke kartice: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Grafička memorija: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Dubina boje: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Rezolucija: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 poslužitelj: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 upravljački program: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pripremam X-Window postavu"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Što želite napraviti?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Promijeni monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Promijeni grafičku karticu"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Promijeni postavke poslužitelja"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Promijeni rezoluciju"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Prikaži informacije"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Iskušaj ponovo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Završi"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zadrži promjene?\n"
-"Trenutna postava je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X kod pokretanja sustava"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Mogu podesiti da se X podigne automatski kod podizanja sustava.\n"
-"Da li želite da se X automatski pokreće?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Molim ponovo se logirajte u %s kako bi aktivirali promjenjeno"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Molim prvo se odjavite te pritisnite Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 boja (8 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisuća boja (15 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisuća boja (16 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milijuna boja (24 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milijarde boja (32 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB ili više"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standardni VGA, 640x480 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibilan, 1024x768 na 87 Hz s preplitanjem (bez 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 na 87 Hz s preplitanjem, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Prošireni Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Bez preplitanja SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Visoko frekvencijski SVGA, 1024x768 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekvencijski koji ide do 1280x1024 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekvencijski koji ide do 1280x1024 na 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekvencijski koji ide do 1280x1024 na 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor koji ide do 1600x1200 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor koji ide do 1600x1200 na 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Prvi sektor boot particije"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Prvi sektor pogona (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO instalacija"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Gdje želite instalirati bootloader?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/grub instalacija"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO sa tekstualnim menijem"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO sa grafičkim menijem"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Podizanje sa DOS/Windows-a (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Glavne postavke bootloadera"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Koristiti Bootloader"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Bootloader instalacija"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Boot uređaj"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ne radi na starim BIOSima)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Zbijeno"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "zbijeno"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Video mod"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Odgoda prije bootiranja uobičajenog imagea"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Lozinka"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Lozinka (provjera)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Ograničene opcije na komandnoj liniji"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "ograniči"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Očisti /tmp na svakom podizanju"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Precizna veličina RAMa (pronađeno %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Omogući više obrazaca"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Upišite veličinu RAM u Mb"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Postavka ``Ograničene opcije na komandnoj liniji'' nema svrhe ako ne unesete "
-"lozinku"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Molim pokušajte ponovo"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Lozinke se ne podudaraju"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Init poruka"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Pauza Otvorenog Firmware-a"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Vrijeme čekanja podizanja kernela"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Omogući CD podizanje?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Omogući podizanje?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Uobičajeni OS?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"Odlučili ste instalirati bootloader na particiju.\n"
-"To podrazumijeva da već imate bootloader na tvrdom disku sa kojeg podižete\n"
-"sustav (npr. System Commander).\n"
-"\n"
-"Sa kojeg diska želite podizati?"
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Ovo su trenutni zapisi.\n"
-"Možete dodati još koji ili urediti postojeći."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Dodaj"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Gotov"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Promjeni"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Kakvu vrstu zapisa želite dodati"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Drugi OS (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Drugi OS (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Drugi OS (Windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Slika (image)"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Dodaj na kraj"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Čitaj-piši"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tablica"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Nesigurno"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Oznaka"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Uobičajeno"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd-veličina"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "NemaVidea"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Ukloni zapis"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Prazna oznaka nije dozvoljena"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Morate odrediti sliku kernela"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Morate odrediti root particiju"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Ova oznaka već postoji"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Pronašao sam %s %s međusklopova"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Da li imate još koji?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Da li imate %s međusklopova?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Ne"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Da"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Pokaži info o hardveru"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instaliram upravljački program %s za karticu %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Koji %s upravljački program želite isprobati?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"U nekim slučajevima, %s upravljački program treba dodatne informacije da bi "
-"radio\n"
-"ispravno, iako normalno radi i bez toga. Da li želite specifirati te "
-"dodatne\n"
-"opcije za njega ili želite dozvoliti upravljačkom programu da isproba vaše\n"
-"računalo za informacije koje treba? Ponekad, isprobavanje može zamrznuti\n"
-"vaše računlo, ali ne bi trebalo izazvati nikakvu štetu."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Auto. ispitaj"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Odredi postavke"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Sada možete unijeti opcije za modul %s.\n"
-"Primjetite da svaka adresa treba biti unešena sa prefiksom 0x kao '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sada možete unijeti postavke za modul %s.\n"
-"Postavke su formata ``ime=vrijednost ime2=vrijednost2...''.\n"
-"Na primjer, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Postavke modula:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Učitavanje modula %s nije uspjelo.\n"
-"Da li želite pokušati ponovo sa drugim parametrima?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "pristup X programima"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "pristup rpm alatima"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "dozvoli \"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "pristup administracijskim datotekama"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(već postoji %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Lozinka je prejednostavna"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Molim dajte korisniku korisničko ime"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Korisničko ime može sadržavati samo mala slova, brojeve, `-' i `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Ovaj korisnik već postoji"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Dodaj korisnika"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Unesite korisnika\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Prihvati korisnika"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Puno ime"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Korisničko ime"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Ljuska"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikona"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Auto-prijava"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Mogu podesiti da se vaše računalo automatski prijavi kao jedan korisnik.\n"
-"Da li želite koristiti tu pogodnost?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Izaberite uobičajenog korisnika:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Izaberite prozorski upravitelj koji želite pokrenuti:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Molim izaberite jezik koji želite koristiti."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Možete izabrati druge jezike koji će biti dostupni nakon instalacije"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Sve"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Dozvoli svim korisnicima"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Prilagođeno"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Nema dijeljenja"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Paket %s treba instalirati. Da li ga želite instalirati?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Možete izvesti koristeći NFS ili Sambu. Koji od njih želite"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Nužni paket %s nedostaje"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-"Da li želite dozvoliti korisnicima da izvezu neke direktorije u "
-"njihivompolaznom direktoriju?\n"
-"Dozvoljavanjem navedenoga ćete dozvoliti korisnicima da jednostavno kliknuna "
-"\"Dijeljenje\"\n"
-" u konqueroru i nautilusu.\n"
-"\n"
-"\"Proizvoljno\" će omogućiti dozvoljavanje po korisniku.\n"
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Odustani"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "Pokreni userdrake"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"Dijeljenje po korisniku koristi grupu \"fileshare\". \n"
-"Možete koristiti userdrake za dodavanje korisnika u navedenu grupu."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Dobrodošli Crackeri"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Slab"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standardno"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Visok"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "Viši"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoidan"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Ova razina se treba koristiti sa pažnjom. Ona čini vaš sustav mnogo lakšim "
-"za korištenje,\n"
-"ali vrlo osjetljiv: ne smije biti korišten za računala koja su povezana u "
-"mreži ili na Internet. Naime, nema lozinke za pristup."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Lozinke su sada uključene međutim još ne preporučam korištenje ovog računala "
-"u mrežnom okolišu."
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Ovo je standardna sigurnosna razina preporučena za računala koja će biti "
-"korištena za spajanje na Internet kao klijent."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Već postoje neka ograničenja i više automatskih provjera se pokreće svake "
-"noći."
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Sa ovom sigurnosnom razinom, korištenje ovog sustava kao poslužitelj postaje "
-"moguće.\n"
-"Sigurnost je sada toliko visoka da se sustav može koristiti kao poslužitelj\n"
-"koji prima zahtjeve od mnogo klijenata. Upozorenje: ako je vaše računalo "
-"samo klijent na Internetu, bolje da izaberete nižu razinu."
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Temeljeno na prijašnjoj razini, ali je sustav potpuno zatvoren.\n"
-"Sigurnosne značajke su na maksimumu."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Izaberite sigurnosni nivo"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Sigurnosna razina"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Koristi libsafe za poslužitelje"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Biblioteka koja štiti od prekoračenja spremnika i format string napada."
-
-# 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)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Dobro dosli u %s izbornik operativnih sustava!\n"
-"\n"
-"Izaberite operativni sustav u popisu iznad ili\n"
-"pričekajte %d sekundi za uobičajeno podizanje.\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
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Dobro dosli u GRUB izbornik operativnih sustava!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Za mijenjanje izabranog sustava pritisnite tipke %c i %c."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Pritisnite ENTER za bootiranje izabranog OS, 'e' za promjenu"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "naredbe prije bootiranja ili 'c' za komandnu liniju."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Osvjetljeni zapis biti će bootiran automatski za %d sekundi."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "nema dovoljno mjesta u /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Radna površina"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Start Menu"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Ne možete instalirati bootloader na %s particiju\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "nema još implementirane pomoći.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Postava Stila Podizanja"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Datoteka"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Datoteka/_Izlaz"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Novi stil kategoriziranja Monitora"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "NoviStil Monitora"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Tradicionalni Monitor"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Tradicionalni Gtk+ Monitor"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Pokreni Auroru pri podizanju"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub mod"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot mod"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Trenutno koristite %s kao Upravitelj Boot-a.\n"
-"Pritisnite na Podesi za pokretanje čarobnjaka za postavljanje."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Podesi"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Sistemski mod"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Pokreni X-Window sustav pri podizanju"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Ne, ne želim automatsko prijavljivanje"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Da, želim automatsko prijavljivanje sa ovim korisnikom i okružjem"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "U redu"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "ne mogu otvoriti /etc/inittab za čitanje: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minuta"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minuta"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekundi"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Ne mogu napraviti screenshotove prije particioniranja"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Screenshotovi će biti raspoloživi poslije instalaciju u %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Francuska"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Kosta Rika"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "Belgija"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Češka Republika"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Njemačka"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Grčka"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Norveška"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Švedska"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Nizozemska"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Italija"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Austrija"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Sjedinjene Američke Države"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Prvo napravite backup podataka"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Pročitajte pažljivo!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Ukoliko želite koristiti aboot morate ostaviti dovoljno mjesta (npr. 2048 "
-"sektora) na\n"
-"početku diska"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Greška"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Čarobnjak"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Izaberite akciju"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Vaš sustav sadrži samo jednu veliku particiju.\n"
-"(Microsoft DOS/Windows obično koristi jednu particiju).\n"
-"Preporučam da promijenite veličinu particije\n"
-"(kliknite prvo na particiju te onda na \"Promijeni veličinu\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Molim kliknite na particiju"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detalji"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Prazno"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Ostali"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Vrste datotečnih sustava:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Napravi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Vrsta"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Umjesto toga koristi ``%s''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Obriši"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Prvo pritisnite ``Demontiraj''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Nakon mijenjanja tipa particije %s svi podaci na ovoj particiji biti će "
-"obrisani"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Izaberite particiju"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Izaberite drugu particiju"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Izlaz"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Normalno > Ekspert"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Prebaci u normalni mod"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Vrati"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Da ipak nastavim?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Da završim bez spremanja"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Da završim bez zapisivanje particijske tablice?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Da li želite spremiti /etc/fstab promjene?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Raspodijeli automatski"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Očisti sve"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Hard disk informacije"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Sve primarne particije su iskorištene"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Ne mogu dodati niti jednu dodatnu particiju"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Ako želite dodati još koju particiju molim obrišite jednu od particija kako "
-"bi\n"
-"mogli stvoriti jednu extended particiju."
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Spremi particijsku tabelu"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Vrati particijsku tabelu"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Spasi particijsku tabelu"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Ponovno učitaj particijsku tabelu"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Automatsko montiranje prenosivog medija"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Odaberite datoteku"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Backup particijske tablice nema istu veličinu\n"
-"Da ipak nastavim?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Upozorenje"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Umetnite disketu u pogon\n"
-"Svi podaci na disketi biti će izbrisani"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Pokušavam spasiti particijsku tablicu"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Detaljne informacije"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Točka montiranja"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Opcije"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Promijeni veličinu"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Premjesti"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatiraj"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Montiraj"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Dodaj RAID-u"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Dodaj LVM-u"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Demontiraj"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Ukloni sa RAID-a"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Ukloni sa LVM-a"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Promijeni RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Koristi za loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Stvori novu particiju"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Početni sektor:"
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Veličina u MB:"
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Vrsta datotečnog sustava:"
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Mjesto montiranja:"
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Postavke:"
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Ukloniti loopback datoteku?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Mijenjam tip particije"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Koji datotečni sustav želite?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Mijenjam iz ext2 u ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Gdje želite montirati loopback datoteku %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Gdje želite montirati uređaj %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Ne mogu maknuti točku za montiranje zato što se ova particija koristi za "
-"loop back.\n"
-"Uklonite loopback prvo"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Izračunavam granice fat datotečnog sustava"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Mijenjam veličinu"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Ova particija nije promjenjiva u veličini"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Preporučam da prvo backupirate sve podatke s ove particije"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Nakon mijenjanja veličine particije %s svi podaci na ovoj particiji biti će "
-"izgubljeni"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Odaberite novu veličinu"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Nova veličina u MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Na koji disk se želite premjestiti?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Na koji se sektor želite premjestiti?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Premještam"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Premještam particiju..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Izaberite postojeći RAID na koji želite dodati "
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "novi"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Izaberite postojeći LVM na koji želite dodati "
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "LVM ime?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Ova particija se ne može koristiti za loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Ime loopback datoteke:"
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Dajte ime datoteke"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr ""
-"Datoteku koristi neki drugi loopback. Molim izaberite neku drugu datoteku"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Datoteka već postoji. Da li da nju upotrijebim?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Opcije montiranja"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Razno"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "uređaj"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "razina"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "chunk veličina"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Budite oprezni: ova operacija je opasna"
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Kakav tip particioniranja?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Žalim međutim ne mogu napraviti /boot toliko daleko na disku\n"
-"(cilindar > 1024).\n"
-"Imate dvije opcije ili ćete koristiti LILO pa neće raditi ili nećete\n"
-"koristiti LILO pa vam /boot neće ni trebati."
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Particiju koju ste odabrali kao root (/) je fizički locirana poslije 1024-"
-"tog cilindra vašeg hard diska, a nemate /boot particiju.\n"
-"Ukoliko planirate koristiti LILO boot menadžer, budite pažljivi da dodate/"
-"boot particiju"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Izabrali ste softwaresku RAID particiju kao root (/).\n"
-"Nema bootloader-a koji je u mogućnosti to podržati bez /boot particije.\n"
-"Zato budite pažljivi da dodate /boot particiju"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Particijska tablica pogona %s će sada biti zapisana na disk!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Trebate ponovo pokrenuti sustav prije nego promjene postanu aktivne"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Nakon formatiranja particije %s svi podaci na ovoj particiji biti će obrisani"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formatiram"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formatiram loopback datoteku %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formatiram particiju %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Sakrij datoteku"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Premijesti datoteku na novu particiju"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"Direktorij %s već sadrži neke podatke\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Premiješteam datoteke na novu particiju"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Kopiram %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Uklanjam %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "particija %s je sada poznata kao %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Uređaj:"
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS uređaj slovo: %s (nagađanje)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Vrsta: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Ime: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Početak: sektor %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Veličina: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektora"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cilindar %d do %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formatiran\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Nije formatiran\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Montiran\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Loopback datoteka(e):\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Podrazumijevana boot particija\n"
-" (za MS-DOS boot, ne za LILO)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Razina %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Chunk veličina %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-diskovi %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Ime loopback datoteke: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Šanse su, da je ova particija\n"
-"ustvari particija upravljačkog programa, vjerojatno\n"
-"biste ju trebali ostaviti.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Ova specijalna bootstrap\n"
-"particija je za\n"
-"dvostruko-podizanje (dual-boot) vašeg sustava.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Veličina: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-diskovi %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Vrsta particijske tabele: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "na sabirnici %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Opcije: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Ključ enkriptiranja datotečnog sustava"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Izaberite vaš ključ za enkriptiranje datotečnog sustava"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Upisani enkripcijski ključ je prejednostavan (mora biti dug najmanje %d "
-"znakova)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "Enkripcijski ključevi se ne slažu"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Enkripcijski ključ"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Enkripcijski ključ (ponovno)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Promijeni tip"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Molim kliknite na medij"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Poslužitelji za pretraživanje"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatiranje %s nije uspjelo"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "ne znam kako formatirati %s kao vrstu %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "montiranje particije %s u direktorij %s neuspješno"
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck neuspješan sa izlaznim kodom %d ili signalom %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "greška kod demontiranja %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "jednostavno"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "sa /usr"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "poslužitelj"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "JFS se ne može koristiti na particijama koje su manje od 16 MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "ReiserFS se ne može koristiti na particijama koje su manje od 32 MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Mjesto montiranja mora početi sa /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Već postoji particija sa mjestom montiranja %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Ne možete koristiti LVM logički prostor za mjesto montiranja %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Ovaj direktorij bi trebao ostati unutar root datotečnog sustava"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Treba vam istinski datotečni sustav (ex2, reiserfs) za ovo mjesto "
-"montiranja\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-"Ne možete koristiti enkriptirani datotečni sustav za točku montiranja %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Nema dovoljno slobodnog prostora za auto-alokaciju"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Nema ništa za uraditi"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Greška prilikom otvaranja %s za pisanje: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Pojavila se greška - ne mogu pronaći niti jedan valjani uređaj na kojem\n"
-"bih mogao instalirati datotečni sustav. Provjerite da li je sa vašim "
-"hardverom sve u redu."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Nemate niti jednu particiju!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux je višekorisnički sustav, i to znači da svaki korisnik može imati\n"
-"vlastita podešenja, vlastite datoteke itd. Možete pročitati ``User Guide''\n"
-"da naučite više. Za razliku od \"root\"-a, koji je administrator, korisnici\n"
-"koje ćete dodati ovdje neće imati ovlaštenja za mijenjanje ničega osim "
-"vlastitih\n"
-"datoteka ili vlastitih postavki. Morati ćete napraviti najmanje jednog "
-"normalnog\n"
-"korisnika za vas. Taj račun ćete koristiti za prijavljivanje za rutinsko\n"
-"korištenje. Iako je vrlo praktično se prijaviti kao \"root\" svaki dan,\n"
-"to može biti vrlo opasno! Najmanja pogreška može značiti da vaš sustav\n"
-"neće više moći raditi. Ako napravite ozbiljnu grešku kao normalan korisnik,\n"
-"možete izgubiti samo neke informacije, ali ne cijeli sustav.\n"
-"\n"
-"Prvo, morate unijeti vaše pravo ime. Ono nije obvezno, naravno\n"
-"možete ustvari unijeti što god želite. DrakX će tada uzeti prvu riječ koju\n"
-"ste unijeli u to polje i prenijeti je u \"Korisničko ime\". To je ime kojim "
-"će \n"
-"se taj konkretni korisnik prijavljivati u sustav. Možete ga mijenjati. "
-"Tada \n"
-"morate ovdje upisati lozinku. Sa gledišta sigurnosti, lozinka "
-"neprivilegiranog \n"
-"(običnog) korisnika nije toliko važna kao \"root\" lozinka, ali je ne treba "
-"zbog\n"
-"toga zanemarivati: naposlijetku, radi se o vašim datotekama.\n"
-"\n"
-"Ako pritisnete \"Prihvati korisnika\", možete ih dodati koliko želite. "
-"Dodajte\n"
-"korisnika za svakog prijatelja: oca ili sestru, npr. Kada ste dodali sve "
-"korisnike\n"
-"koje ste željeli, stisnite \"Završi\".\n"
-"\n"
-"Pritiskanjem na \"Napredno\" možete promijeniti predodređenu \"ljusku\" za "
-"tog\n"
-"korisnika (bash je predodređen)."
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Gore su popisane postojeće Linux particije pronađene na\n"
-"vašem hard disku. Možete zadržati izbore napravljene od strane čarobnjaka, "
-"one su dobre za\n"
-"uobičajenu upotrebu. Ukoliko promjenite izbore, morate barem definirati "
-"root\n"
-"particiju (\"/\"). Nemojte izabrati premalu particiju jer nećete moći \n"
-"instalirati dovoljno software-a. Ako želite spremati vaše podatke na "
-"posebnoj particiji,\n"
-"trebate također izabrati \"/home\" (jedino moguće ako imate više od jedne\n"
-"raspoložive Linux particije).\n"
-"\n"
-"\n"
-"Za informaciju, svaka particija je popisana kako slijedi: \"Ime\", "
-"\"Kapacitet\".\n"
-"\n"
-"\n"
-"\"Ime\" je kodirano kako slijedi: \"tip hard diska\", \"broj hard diska\",\n"
-"\"broj particije\" (naprimjer, \"hda1\").\n"
-"\n"
-"\n"
-"\"Tip hard diska\" je \"hd\" ukoliko je hard disk - IDE hard disk i \"sd\"\n"
-"ukoliko je on SCSI hard disk.\n"
-"\n"
-"\n"
-"\"Broj hard diska\" je uvijek slovo poslije \"hd\" ili \"sd\". Sa IDE hard "
-"diskovima:\n"
-"\n"
-" * \"a\" znači \"master hard disk na primarnom IDE kontroleru\";\n"
-"\n"
-" * \"b\" znači \"slave hard disk na primarnom IDE kontroleru\";\n"
-"\n"
-" * \"c\" znači \"master hard disk na sekundarnom IDE kontroleru\";\n"
-"\n"
-" * \"d\" znači \"slave hard disk na sekundarnom IDE kontroleru\".\n"
-"\n"
-"\n"
-"Sa SCSI hard diskovima, \"a\" znači \"primarni hard disk\", \"b\" znači "
-"\"sekundarni hard disk\", itd..."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"Mandrake Linux instalacija je proširena na nekoliko CDROMova. DrakX\n"
-"zna ukoliko se odabrani paket nalazi na drugom CDROMu i izbaciti će\n"
-"trenutni CD i pitati vas da ubacite drugi koji je potreban."
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"Sada treba odrediti koje programe želite instalirati u svoj sustav. Za "
-"Mandrake \n"
-"Linux su dostupne tisuće paketa, i ne morate ih sve znati na pamet.\n"
-"\n"
-"Ako pokrećete standarnu instalaciju sa CD-ROMa, prvo ćete biti upitani da "
-"navedete\n"
-"CDove koje imate (samo u modu za stručnjake). Provjerite imena CDova i "
-"označite\n"
-"kućice koje odgovaraju CDovima koje imate. Pritisnite \"U redu\" kada ste "
-"spremni\n"
-"nastaviti.\n"
-"\n"
-"Paketi su podijeljeni po grupama koje odgovaraju određenoj svrsi. Grupe su \n"
-"podijeljene u četiri sekcije:\n"
-"\n"
-" * \"Radna stanica\": ako ćete koristiti stroj kao radnu stanicu, izaberite\n"
-"jednu ili više odgovarajućih grupa;\n"
-"\n"
-" * \"Razvoj\": ako će se Vaš stroj koristiti za programiranje, izaberite\n"
-"željene grupe;\n"
-"\n"
-" * \"Poslužitelj\": ako je Vaš stroj određen za poslužitelja, moći ćete "
-"odabrati\n"
-"koje od uobičajenih servisa želite instalirati na njega;\n"
-"\n"
-" * \"Grafičko okružje\": naposlijetku, ovdje birate grafičko okružje. Barem "
-"jedno\n"
-"mora biti odabrano ako želite imati grafičku radnu stanicu!\n"
-"\n"
-"Pomicanjem pokazivača miša na ime grupe će se prikazati kratak opis te "
-"grupe. Ako\n"
-"nijedna grupa nije odabrana pri normalnoj instalaciji (za razliku od "
-"nadogradnje),\n"
-"iskočit će dijalog sa predloženim opcijama za minimalnu instalaciju:\n"
-"\n"
-" * \"Sa Xima\": instaliranje što je manje paketa moguće za grafičko "
-"sučelje;\n"
-"\n"
-" * \"Sa osnovnom dokumentacijom\": instalira osnovni sustav sa osnovnim "
-"pomoćnim\n"
-"programima i njihovom dokumentacijom. Ova instalacija je pogodna za "
-"namještanje\n"
-"poslužitelja;\n"
-"\n"
-" * \"Stvarno malena instalacija\": instalirat će strogi minimum potreban da "
-"bi\n"
-"imali Linux sustav koji radi, samo u komandnoj liniji. Ova instalacija je "
-"velika\n"
-"oko 65Mb.\n"
-"\n"
-"Možete provjeriti \"Inividualni odabir paketa\", što je korisno ako ste "
-"upoznati\n"
-"sa ponuđenim paketima ili ako želite imati potpunu kontrolu nad "
-"instaliranim\n"
-"sadržajem.\n"
-"\n"
-"Ako ste pokrenuli instalaciju u \"Nadogradnja\" načinu, možete odselektirati "
-"sve\n"
-"grupe da izbjegnete instaliranje novih paketa. Ovo je korisno za "
-"popravljanje\n"
-"ili osuvremenjivanje postojećeg sustava."
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Konačno, ovisno o tome da li ste izbrali individualne pakete, prikazat će "
-"vam \n"
-"se stablo sa svim paketima podijeljenim u grupe i podgrupe. Pri "
-"pregledavanju\n"
-"stabla možete izabrati čitave grupe, podgrupe ili pojedine pakete.\n"
-"\n"
-"Kad god izaberet paket na stablu, na desnoj strani se pojavi opisnik. Kada "
-"ste\n"
-"završili odabir, pritisnite \"Instaliraj\", čime ćete pokrenuti proces "
-"instaliranja.\n"
-"Ovisno o brzini računala i broju paketa koji trebaju biti instalirani, "
-"proces može\n"
-"potrajati. Procjena vremena koje će biti potrebno da bi se sve instaliralo "
-"piše\n"
-"na ekranu, da vam pomogne procjeniti imate li vremena za šalicu kave.\n"
-"\n"
-"!! Ako je odabran poslužiteljski paket, namjerno ili jer je pripadao nekoj "
-"grupi,\n"
-"bit ćete upitani da potvrdite da li želite stvarno instalirati te "
-"poslužitelje.\n"
-"Kod Mandrake Linuxa, svi instalirani poslužitelji se pokreću prilikom "
-"podizanja\n"
-"sustava. Čak iako su sigurni, bez poznatih problema u vrijeme izlaska "
-"distribucije,\n"
-"može se dogoditi da se otkriju sigurnosne rupe nakon zgotovljenja ove "
-"inačice\n"
-"Mandrake Linuxa. Ako ne znate što bi pojedini servis trebao raditi ili "
-"zašto \n"
-"se instalira, pritisnite \"Ne\". Pritiskanjem na \"Da\"instalirat će se "
-"navedeni\n"
-"servisi i pokretat će se automatski. !!\n"
-"\n"
-"\"Automatske ovisnosti\" opcija onemogućuje upozorenje koje se pojavi kad "
-"god \n"
-"instalacija automatski izabere paket. Ovo se dešava stoga što je utvrdila "
-"da\n"
-"treba zadovoljiti ovisnost drugim paketom da bi se uspješno završila.\n"
-"\n"
-"Malena ikona diskete na dnu popisa omogućuje učitavanje popisa paketa "
-"izabranih\n"
-"tijekom neke prošle instalacije. Pritiskom na nj upitat će vas da ubacite "
-"disketu\n"
-"napravljenu na kraju neke druge instalacije. Pogledajte drugi savjet u "
-"posljednjem\n"
-"koraku stvaranja takve diskete."
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"Predloženo Vam je da namjestite Internet/mrežnu vezu. Ako želite računalo\n"
-"povezati s Internetom ili lokalnom mrežom, pristisnite \"U redu\". Pokrenut "
-"će\n"
-"se proces automatskog prepoznavanja mrežnih kartica i modema. Ako ovaj "
-"proces\n"
-"zakaže, isključite \"Koristi autodetekciju\" kućicu slijedeći put. Možete\n"
-"odabrati i da ne namještate mrežu, ili da to učinite kasnije; u tom "
-"slučaju, \n"
-"samo stisnite \"Odustani\".\n"
-"\n"
-"Dostupne veze su: obični modem, ISDN modem, ADSL veza, kablovski modem, te\n"
-"jednostavna LAN veza (Ethernet).\n"
-"\n"
-"Ovdje se nećemo detaljno baviti sa pojedinim konfiguracijama. Samo "
-"provjerite da\n"
-"li imate sve parametre od vašeg pružatelja internet usluga ili sustavskog \n"
-"administratora.\n"
-"\n"
-"Možete pogledati u ``User Guide'', poglavlje o Internet vezama za detalje "
-"o \n"
-"postavkama, ili jednostavno sačekati da se sustav instalira, pa koristiti\n"
-"tamo opisani program da bi namjestili vašu vezu.\n"
-"\n"
-"Ako želite namjestiti mrežu kasnije, poslije instalacije, ili ste završili\n"
-"namještanje mreže, stisnite \"Odustani\"."
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Sada možete izabrati servise koje želite pokreniti pri podizanju.\n"
-"\n"
-"Ovdje su predstavljeni svi servisi dostupni sa trenutnom instalacijom.\n"
-"Pregledajet ih pažljivo i maknite one koje nisu uvijek potrebni prilikom\n"
-"podizanja sustava.\n"
-"\n"
-"Odabiranjem određenog servisa dobit ćete kratki opis tog servisa. Međutim, "
-"ako\n"
-"niste sigurni je li servis koristan ili ne, sigurnije je ostaviti "
-"predodređeno\n"
-"ponašanje.\n"
-"\n"
-"!! Na ovoj razini obratite pozornost na to da li ćete koristiti stroj kao\n"
-"poslužitelj: vjerojatno ne želite pokretati neke servise koje ne trebate.\n"
-"Prisjetite se da neki servisi mogu biti opasni ako su pokrenuti na "
-"poslužitelju.\n"
-"Općenito, izaberite samo one servise koji vam stvarno trebaju.\n"
-"!!"
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"GNU/Linux upravlja vremenom po GMTu (Greenwich Mean Time) i prevodi ga u\n"
-"lokalno vrijeme prema vremenskoj zoni koju ste izabrali. Moguće je, doduše,\n"
-"ovo isključiti isključivanjem odabira \"Hardverski sat namješten na GMT\" "
-"tako\n"
-"da je hardverski sat jednak sustavskom. Ovo je korisno kada se na računalu\n"
-"nalazi drugi operacijski sustav, poput Windows.\n"
-"\n"
-"Opcija \"Automatska sinhronizacija vremena\" će automatski podešavati sat\n"
-"tako da će se povezivati sa vremenskim poslužiteljem na Internetu. Sa "
-"popisa\n"
-"izaberite poslužitelj najbliže vama. Naravno, morate imati ispravnu vezu sa\n"
-"Internetom da bi ovo radilo. Također, instalirat će vremenski poslužitelj "
-"na\n"
-"vaše računalo kojeg, opcionalno, mogu koristiti druga računala u vašoj\n"
-"lokalnoj mreži."
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X (od X Window System) jest srce GNU/Linux grafičkog sučelja, na kojem "
-"počivaju\n"
-"sva grafička okružja (KDE, GNOME, AfterStep, WindowMaker, itd.) koja dolaze "
-"sa\n"
-"Mandrake Linuxom. Ovdje će DrakX pokušati automatski podesiti Xe.\n"
-"Jako je rijetko da će zakazati, osim ako hardver nije vrlo star (ili nov)\n"
-"Ako uspije, pokrenut će Xe automatski sa najboljom mogućom rezolucijom, "
-"ovisno\n"
-"o veličini monitora. Pojavit će se prozor s upitom da li ga vidite.\n"
-"\n"
-"Ako ste pokrenuli \"Stručnjak\" instalaciju, ući ćete u čarobnjak za "
-"namještanje\n"
-"Xa. Pogledajte odgovarajući odjeljak u priručniku za više informacija o "
-"ovom\n"
-"čarobnjaku.\n"
-"\n"
-"Ako vidite poruku tijekom testa, i odgovorite \"Da\", onda će DrakX krenuti\n"
-"na slijedeći korak. Ako ne možete vidjeti poruku, to jednostavno znači da "
-"je\n"
-"konfiguracija pogrešna i test će se automatski završiti nakon 10 sekundi, "
-"te\n"
-"povratiti ekran."
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Konačno ćete biti pitani da li želite vidjeti grafičko sučelje pri\n"
-"dizanju. Primjetite da ovo pitanje će biti pitano iako ne želite "
-"istestirati\n"
-"konfiguraciju. Vjerojatno, želite odgovoriti sa \"Ne\" ukoliko će vaše "
-"računalo\n"
-"raditi kao poslužitelj, ili ako niste bili uspješni u konfiguriranju vašeg\n"
-"zaslona."
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-#, fuzzy
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"U ovom trenutku, trebate izabrati gdje ćete instalirati vaš\n"
-"Mandrake Linux operativni sustav na vaš hard disk. Ukoliko je prazan ili "
-"ako\n"
-"postojeći operativni sustav koristi čitav prostor na disku, trebate ga\n"
-"particionirati. Jednostavno, particioniranje hard diska sastoji se od "
-"logičkog\n"
-"dijeljenja kako bi napravili prostor za instalaciju vašeg novog Mandrake "
-"Linux sustava.\n"
-"\n"
-"\n"
-"Zato što su posljedice procesa particioniranja obično ireverzibilne,\n"
-"particioniranje može biti strašno i stresno ukoliko ste korisnik bez "
-"iskustva.\n"
-"Ovaj čarobnjak pojednostavljuje proces. Prije početka, molimo konzultirajte "
-"upute\n"
-"i uzmite vremena koliko vam je potrebno.\n"
-"\n"
-"\n"
-"Trebate najmanje dvije particije. Jedna je za sam operativni sustav, a\n"
-"druga je za virtualnu memoriju (također zvanu Swap).\n"
-"\n"
-"\n"
-"Ukoliko su particije već definirane (iz prijašnje instalacije iliiz\n"
-"drugih particijskih alata), trebate samo izbarati te particije za "
-"instalaciju vašeg\n"
-"Linux sustava.\n"
-"\n"
-"\n"
-"Ukoliko particije nisu već definirane, trebate ih napraviti. \n"
-"Da biste to napravili, koristite čarobnjak gore raspoloživ. U zavisnosti od "
-"vaših hard disk\n"
-"postavki, nekoliko rješenja je raspoloživo:\n"
-"\n"
-"* Korištenje postojeće particije: čarobnjak je detektirao jednu ili više "
-"postojećih Linux particija na vašem hard disku. Ukoliko\n"
-" ih želite zadržati, izaberite ovu opciju.\n"
-"\n"
-"\n"
-"* Obriši cijeli disk: ukoliko želite obrisati sve podatke i sve particije "
-"koje postoje na vašem hard disku i zamjeniti ih sa\n"
-" vašim novim Mandrake Linux sustavom, možete izabrati ovu opciju. Budite "
-"pažljivi sa ovim rješenjem, nećete moći\n"
-" povratiti vaš izbor nakon potvrde.\n"
-"\n"
-"\n"
-"* Koristiti slobodan prostor na Windows particiji: ukoliko je Microsoft "
-"Windows instaliran na vašem hard disku i zauzima\n"
-" cjeli raspoloživ prostor na njemu, trebate napraviti slobodan prostor za "
-"Linux podatke. Da biste to napravili možete obrisati vašu\n"
-" Microsoft Windows particiju i podatke (pogledajte \"Brisanje cijelog diska"
-"\" ili \"Ekspert mod\" rješenja) ili mjenjati veličinu vaše\n"
-" Microsoft Windows particije. Mjenjanje veličine može se obaviti bez "
-"gubitka bilo kakvih podataka. Ovo rješenje je\n"
-" preporučeno ukoliko želite koristiti zajedno Mandrake Linux i Microsoft "
-"Windows-e na istom računalu.\n"
-"\n"
-"\n"
-" Prije izabiranja ovog rješenja, molimo razumite da će veličina vaše "
-"Microsoft\n"
-" Windows partiticije biti manja nego što je sada. To znači da ćete imati "
-"manje slobodnog prostora pod\n"
-" Microsoft Windows-ima za spremanje vaših podataka ili instaliranje novog "
-"software-a.\n"
-"\n"
-"\n"
-"* Ekspertni mod: Ukoliko želite particionirati ručno vaš hard disk, možete "
-"izabrati ovu opciju. Budite pažljivi prije\n"
-" izabiranja ovog rješenja. Vrlo je moćno, ali i vrlo opasno. Možete "
-"izgubiti sve vaše podatke vrlo lako. Zato,\n"
-" nemojte izabrati ovo rješenje ukoliko ne znate što radite."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-#, fuzzy
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Svaka particija koja je novo definirana mora biti\n"
-"formatirana za korištenje (formatiranje znači pravljenje datotečnog "
-"sustava).\n"
-"\n"
-"\n"
-"Trenutno, možete htjeti ponovno formatirati neke već postojeće particije "
-"kako bi obrisali\n"
-"podatke koje one posjeduju. Ukoliko želite to napraviti, molimo također "
-"izaberite particije\n"
-"koje želite formatirati.\n"
-"\n"
-"\n"
-"Molimo primjetite da nije nužno ponovno formatirati sve već postojeće "
-"particije.\n"
-"Morate ponovno formatirati particije koje sadrže operativni sustav (poput \"/"
-"\",\n"
-"\"/usr\" ili \"/var\") ali ne morate ponovno formatirati particije koje "
-"sadrže podatke\n"
-"koje želite zadržati (tipično /home).\n"
-"\n"
-"\n"
-"Molimo budite pažljivi odabirom particija, poslije formatiranja, svi podaci "
-"će biti\n"
-"obrisani i nećete ih moći povratiti.\n"
-"\n"
-"\n"
-"Pritisnite na \"U redu\" kada ste spremni za formatiranje particije.\n"
-"\n"
-"\n"
-"Pritisnite na \"Odustani\" kada želite izabrati druge particije za "
-"instalaciju vašeg novog\n"
-"Mandrake Linux operativnog sustava."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Vaš novi Mandrake Linux operativni sustav se trenutno instalira.\n"
-"U Zavisnosti od broja paketa koliko instalirate i brzine vašeg računala,\n"
-"ova operacija može potrajati od nekoliko minuta do značajne količine\n"
-"vremena.\n"
-"\n"
-"\n"
-"Molimo budite strpljivi."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Prije nastavka trebate pažljivo pročitati stavke licence. Ona\n"
-"pokriva cijelu Mandrake Linux distribuciju, i ako se ne slažete u svim\n"
-"stavkama sadržanih u njoj, kliknite na \"Odbij\" gumb koji će automatski\n"
-"završiti instalaciju. Za nastavak instalacije, kliknite na\n"
-"\"Prihvati\" gumb."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-#, fuzzy
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"U ovoj točki instalacije, trebate izabrati koje\n"
-"partiticije ćete koristiti za instalaciju vašeg novog Mandrake Linux "
-"sustava. Ukoliko su\n"
-"particije već definirane (iz prethodne instalacije GNU/Linux-a ili iz\n"
-"drugih particijskih alata), možete koristiti postojeće particije. U drugim "
-"slučajevima,\n"
-"hard disk particije moraju biti definirane.\n"
-"\n"
-"\n"
-"Za pravljenje particija, morate prvo izabrati hard disk. Možete izabrati \n"
-"disk za particioniranje klikanjem na \"hda\" za prvi IDE disk, \"hdb\" za\n"
-"drugi ili \"sda\" za prvi SCSI disk i tako dalje.\n"
-"\n"
-"\n"
-"Za particioniranje izabranog hard diska, možete izabrati ove opcije:\n"
-"\n"
-" * Obriši sve: ova opcija će obrisati sve raspoložive particije na "
-"odabranom hard disku.\n"
-"\n"
-"\n"
-" * Auto alokacija: ova opcija vam dozvoljava da automatski napravite Ext2 "
-"i swap particije u slobodnom prostoru vašeg\n"
-" hard diska.\n"
-"\n"
-"\n"
-" * Spasi particijsku tablicu: ukoliko je vaša particijska tablica "
-"oštećena, možete probati spasiti ju koristeći ovu opciju. Molimo\n"
-" budite pažljivi i zapamtite da ne mora biti uspješna.\n"
-"\n"
-"\n"
-" * Povrati: možete koristiti ovu opciju za odustajanje od vaših promjena.\n"
-"\n"
-"\n"
-" * Ponovno učitaj: možete koristiti ovu opciju ukoliko želite vratiti "
-"unazad sve promjene i učitati vašu inicijalnu particijsku tablicu\n"
-"\n"
-"\n"
-" * Čarobnjak: ukoliko želite koristiti čarobnjak za particioniranje vašeg "
-"hard diska, možete koristiti ovu opciju. Preporučeno je ukoliko \n"
-" nemate dovoljno znanja oko particioniranja.\n"
-"\n"
-"\n"
-" * Vrati sa diskete: ukoliko ste spremili vašu particijsku tablicu na "
-"disketu tijekom prijašnje instalacije, možete\n"
-" ju vratiti koristeći ovu opciju.\n"
-"\n"
-"\n"
-" * Spremi na disketu: ukoliko želite spremiti vašu particijsku tablicu na "
-"disketu kako biste ju mogli kasnije vratiti, možete koristiti ovu\n"
-" opciju. Jako je preporučljivo koristiti ovu opciju\n"
-"\n"
-"\n"
-" * Završi: kada ste završili s particioniranjem vašeg hard diska, "
-"koristite ovu opciju za spremanje vaših promjena.\n"
-"\n"
-"\n"
-"Za informaciju, možete dohvatiti bilo koju opciju koristeći tastaturu: "
-"navigiranje kroz particije se obavlja koristeći Tab i Up/Down strelice.\n"
-"\n"
-"\n"
-"Kada je particija odabrana, možete koristiti:\n"
-"\n"
-" * Ctrl-c za pravljenje novih particija (kada je prazna particija "
-"izabrana)\n"
-"\n"
-" * Ctrl-d za brisanje particije\n"
-"\n"
-" * Ctrl-m za postavljanje točke montiranja\n"
-" \n"
-"\n"
-" \n"
-"Ukoliko instalirate na PPC računalo, želiti će te napraviti malu HFS "
-"'bootstrap' particiju od najmanje 1MB za korištenje\n"
-"od strane yaboot bootloader-a. Ukoliko se odlučite za pravljenje malo veće "
-"particije, recimo 50MB, možete ju pronaći korisnom za stavljanje\n"
-"dodatnog kernela i ramdisk slike u slučaju nužde."
-
-#: ../../help.pm_.c:513
-#, fuzzy
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Više od jedne Microsoft Windows particije su pronađene\n"
-"na vašem hard disku. Molimo izaberite jednu kojoj želite promjeniti veličinu "
-"kako bi instalirali\n"
-"vaš novi Mandrake Linux operativni sustav.\n"
-"\n"
-"\n"
-"Za informaciju, svaka particija je popisana kako slijedi; \"Linux ime\", "
-"\"Windows\n"
-"ime\" \"Kapacitet\".\n"
-"\n"
-"\"Linux ime\" je kodirano kako slijedi: \"tip hard diska\", \"broj hard diska"
-"\",\n"
-"\"broj particije\" (naprimjer, \"hda1\").\n"
-"\n"
-"\n"
-"\"Tip hard diska\" je \"hd\" ukoliko je hard disk - IDE hard disk i \"sd\"\n"
-"ukoliko je on SCSI hard disk.\n"
-"\n"
-"\n"
-"\"Broj hard diska\" je uvijek slovo poslije \"hd\" ili \"sd\". Sa IDE hard "
-"diskovima:\n"
-"\n"
-" * \"a\" znači \"master hard disk na primarnom IDE kontroleru\",\n"
-"\n"
-" * \"b\" znači \"slave hard disk na primarnom IDE kontroleru\",\n"
-"\n"
-" * \"c\" znači \"master hard disk na sekundarnom IDE kontroleru\",\n"
-"\n"
-" * \"d\" znači \"slave hard disk na sekundarnom IDE kontroleru\".\n"
-"\n"
-"\n"
-"Sa SCSI hard diskovima, \"a\" znači \"primarni hard disk\", \"b\" znači "
-"\"sekundarni hard disk\", itd...\n"
-"\n"
-"\"Windows ime\" je slovo vašeg hard diska pod Windows-ima (prvi disk\n"
-"ili particija se zove \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Molimo budite strpljivi. Ova operacija može potrajati nekoliko minuta."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Molimo izaberite \"Instalacija\" ukoliko nemate prethodne verzijeMandrake "
-"Linux-a\n"
-"instalirano ili ako želite koristiti nekoliko operativnih sustava.\n"
-"\n"
-"\n"
-"Molimo izaberite \"Dogradnja\" ukoliko želite dograditi već postojeću "
-"verzijuMandrake Linux-a.\n"
-"\n"
-"\n"
-"U zavisnosti od znanja u GNU/Linux, možete izabrati jednu od slijedećih "
-"razina za instalaciju ili dogradnju\n"
-"vašeg Mandrake Linux operativnog sustava:\n"
-"\n"
-"* Preporučeno: ukoliko nikad niste instalirali GNU/Linux operativni sustav "
-"izaberite ovo. Instalacija će biti\n"
-" vrlo laka i pitati će vas samo nekoliko pitanja.\n"
-"\n"
-"\n"
-"* Prilagođeno: ukoliko ste već upoznati sa GNU/Linux, možete izabrati "
-"primarnu upotrebu (radna stanica, poslužitelj,\n"
-" razvoj) za vaš sustav. Trebati ćete odgovoriti na više pitanja nego u "
-"\"Preporučenoj\" instalacijskoj\n"
-" klasi, zato trebate znati više o tome kako GNU/Linux radi kako bi izabrali "
-"ovu instalacijsku klasu.\n"
-"\n"
-"\n"
-"* Stručnjak: ukoliko imate dobro znanje o GNU/Linux-u, možete izabrati ovu "
-"instalacijsku klasu. Kao u \"Prilagođenoj\"\n"
-" instalacijskoj klasi, moći ćete izabrati primarnu upotrebu za vaš sustav "
-"(radna stanica, poslužitelj, razvoj). Budite jako\n"
-" pažljivi prije nego što odaberete ovu instalacijsku klasu. Moći ćete "
-"izvršiti visoko prilagođenu instalaciju.\n"
-" Odgovori na neka pitanja mogu biti jako teški ukoliko nemate dobro znanje "
-"GNU/Linux. Dakle, nemojte izabrati\n"
-" ovu instalacijsku klasu ukoliko ne znate što radite."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-#, fuzzy
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Molim odaberite ispravni port. Na primjer, COM1 port pod MS Windowsima\n"
-"je imenovan ttyS0 pod GNU/Linuxom."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (the LInux LOader) i Grub su bootloaderi: oni su u mogućnosti podići\n"
-"ili GNU/Linux ili bilo koji drugi postojeći operativni sustav na vašem "
-"računalu.\n"
-"Normalno, ti drugi operativni sustavi su ispravno pronađeni i\n"
-"instalirani. Ako to nije slučaj, možete ga dodati ručno na ovom\n"
-"zaslonu. Budite pažljivi da izaberete ispravne parametre.\n"
-"\n"
-"\n"
-"Također ćete poželiti ne dati pristup tim drugim operativnim sustavima\n"
-"drugima, u tom slučaju možete obrisati odgovarajuće unose. Ali\n"
-"u tom slučaju, trebati ćete boot disketu kako bi ih mogli podići!"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Sada morate odabrati gdje želite staviti zahtijevane informacije za "
-"podizanje\n"
-"GNU/Linuxa.\n"
-"\n"
-"Ako ne znate točno što radite, izaberite \"Prvi sektor diska\n"
-"(MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX će pokušati pronaći PCI SCSI adapter(e). Ukoliko DrakX\n"
-"pronađe SCSI adapter i zna koji upravljački program da koristi, on će "
-"automatski biti\n"
-"instaliran.\n"
-"\n"
-"\n"
-"Ukoliko nemate SCSI adapter, ISA SCSI adapter ili PCI SCSI adapter koji\n"
-"DrakX ne može prepoznati, biti ćete pitani da li imate SCSI adapter u vašem\n"
-"sustavu. Ukoliko nemate adapter, možete kliknuti na \"Ne\". Ukoliko kliknete "
-"na\n"
-"\"Da\", dobiti ćete popis upravljačkih programa odakle možete izabrati vaš\n"
-"specifičan adapter.\n"
-"\n"
-"\n"
-"Ako trebate ručno specifirati vaš adapter, DrakX će pitati da li želite \n"
-"specifirati opcije za njega. Trebali biste dozvoliti DrakX-u da isproba "
-"opcije za\n"
-"hardware. Ovo obično radi dobro.\n"
-"\n"
-"\n"
-"Ako ne, trebati ćete navesti opcije za upravljački program. Molimo "
-"pregledajte User\n"
-"Guide (poglavlje 3, sekciju \"Collective informations on your hardware\") za "
-"preporuke\n"
-"o pribavljanju ovih informacija iz dokumentacije hardware-a, sa \n"
-"proizvođačevog Web site-a (ukoliko imate Internet pristup) ili iz Microsoft "
-"Windows-a\n"
-"(ukoliko ga imate na vašem sustavu)."
-
-#: ../../help.pm_.c:784
-#, fuzzy
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"Možete dodati dodatne unose za yaboot, ili za drugi operativni sustav,\n"
-"alternativne kernele, ili za spasonosnu boot sliku.\n"
-"\n"
-"\n"
-"Za druge OS-ove - unos se sastoji samo od labele i root particije.\n"
-"\n"
-"\n"
-"Za Linux, postoji nekoliko mogućih opcija: \n"
-"\n"
-"\n"
-" - Labela: Ovo je jednostavno ime koje ćete napisati u yaboot promptu za "
-"odabir ove \n"
-"boot opcije.\n"
-"\n"
-"\n"
-" - Slika: Ovo će biti ime kernela pri podizanju. Tipično vmlinux ili\n"
-"varijacija vmlinux-a sa ekstenzijom.\n"
-"\n"
-"\n"
-" - Root: root uređaj ili '/' za vašu Linux instalaciju.\n"
-"\n"
-"\n"
-" \n"
-" - Dodatak: Na Apple hardware-u, kernel dodatak opcija se koristi vrlo "
-"često za\n"
-"pomoć pri inicijaliziranju video hardware-a, ili za omogućavanje emulacije "
-"tastaturnih mišjih gumba\n"
-"zbog čestog nedostatka 2-og ili 3-eg mišjeg gumba na Apple miševima. "
-"Slijedeće \n"
-"su neki primjeri:\n"
-"\n"
-"\n"
-"\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-"\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
-"\n"
-"\n"
-" \n"
-" - Initrd: Ova opcija se može koristiti ili za učitavanje inicijalnih "
-"modula, prijenego što je boot\n"
-"uređaj raspoloživ, ili za učitavanje ramdisk slike za spasonosne boot "
-"situacije.\n"
-"\n"
-"\n"
-" - Initrd-veličina: Podrazumijevana veličina ramdisk-a je općenito 4096 "
-"byte-ova. Ukoliko trebate\n"
-"alocirati veći ramdisk, ova opcija može biti korištena.\n"
-"\n"
-"\n"
-" - Čitaj-Piši: Normalno je 'root' particija inicijalno podignuta u čitaj-"
-"samo, za mogućnost\n"
-"provjere datotečnog sustava prije nego sustav postane 'živ'. Možete "
-"nadjačati ovu opciju ovdje.\n"
-"\n"
-"\n"
-" - NoVideo: Ako se Apple hardware pokaže kao iznimno problematičan, možete\n"
-"izabrati ovu opciju za podizanje u 'novideo' modu, sa native framebuffer "
-"podrškom.\n"
-"\n"
-"\n"
-" - Podrazumijevano: Izabire ovaj unos kao podrazumijevani Linux izbor, "
-"moguće izbirati sa samo\n"
-"pritiskom ENTER-a na yaboot pitanju. Ovaj unos će također biti označen sa "
-"'*', ukoliko\n"
-"koristite TAB za pregledavanje boot izbora."
-
-#: ../../help.pm_.c:830
-#, fuzzy
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot je bootloader za NewWorld MacIntosh hardware. U mogućnosti je\n"
-"podići ili GNU/Linux, MacOS, ili MacOSX, ukoliko postoje na vašem računalu.\n"
-"Normalno, ti drugi operativni sustavi su ispravno pronađeni i\n"
-"instalirani. Ukoliko to nije slučaj, možete dodati unos ručno na ovom\n"
-"zaslonu. Budite pažljivi da izaberete ispravne parametre.\n"
-"\n"
-"\n"
-"Yaboot glavne opcije su:\n"
-"\n"
-"\n"
-" - Init Poruka: Jednostavna tekst poruka koja se prikaže prije pitanja o\n"
-"podizanju.\n"
-"\n"
-"\n"
-" - Boot Uređaj: Označava gdje želite staviti informaciju potrebnu za \n"
-"podizanje GNU/Linux-a. Općenito, morati ćete imati postavljenu bootstrap "
-"particiju prije, \n"
-"da može držati ovu informaciju.\n"
-"\n"
-"\n"
-" - Otvorena Firmware Pauza: Za razliku od LILO-a, postoje dvije raspoložive "
-"pauze sa\n"
-"yaboot-om. Prva pauza se mjeru sekundama i na tom mjestu možete \n"
-"birati izmežu CD-a, OF boot-a, MacOS-a ili Linux-a.\n"
-"\n"
-"\n"
-" - Kernel Boot Čekanje: Ovo čekanje je slično LILO boot čekanju. Poslije \n"
-"izabiranja Linux-a, imati ćete pauzu od 0.1 sekunde prije nego "
-"podrazumijevani\n"
-"kernel opis bude odabran.\n"
-"\n"
-"\n"
-" - Omogući CD Boot?: Postavljanje ove opcije će vam dozvoliti da možete "
-"izabrati 'C' za CD na\n"
-"prvom pitanju pri podizanju.\n"
-"\n"
-"\n"
-" - Omogući OF Boot?: Postavljanje ove opcije će vam dozvoliti da možete "
-"izabrati 'N' za Open\n"
-"Firmware prvi prvom pitanju pri podizanju.\n"
-"\n"
-"\n"
-" - Podrazumijevani OS: Možete izabrati koji OS ćete podići podrazumijevano "
-"kada Open Firmware \n"
-"pauza istekne."
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Izaberite hard disk kojeg želite obrisati kako bi instalirali vašu\n"
-"novu Mandrake Linux particiju. Budite pažljivi, svi postojeći podaci\n"
-"biti će izgubljen i neće se moći povratiti!"
-
-#: ../../help.pm_.c:896
-#, fuzzy
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Izaberite \"U redu\" ukoliko želite obrisati sve podatke i\n"
-"postojeće particije na navedenom hard disku. Budite pažljivi, nakon "
-"klikanja\n"
-"na \"U redu\", nećete moći povratiti bilo kakve postojeće podatke ili "
-"particije\n"
-"na ovom hard disku, uključujući Windows podatke.\n"
-"\n"
-"\n"
-"Pritisnite na \"Odustani\" za prekidanje ove operacije bez gubljenja bilo\n"
-"kakvih postojećih podataka i particija na ovom hard disku."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "Morate također formatirati %s"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Izabrali ste slijedeće poslužitelje: %s\n"
-"\n"
-"\n"
-"Ti poslužitelji biti će postavljeno aktivirani. Oni nemaju poznatih "
-"sigurnosnih\n"
-"propusta, ali neki novi mogu biti pronađeni. U tom slučaju, morate ga "
-"nadograditi\n"
-"što prije moguće.\n"
-"\n"
-"\n"
-"Da li zaista želite instalirati te poslužitelje?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Ne mogu koristiti broadcast bez NIS domene"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Umetnite FAT formatiranu disketu u pogon %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Ova disketa nije FAT formatirana"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Za korištenje spremljenog odabira paketa, podignite instalaciju sa ``linux "
-"defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Greška prilikom čitanja datoteke %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Neki hardware na vašem računalu treba ``vlasničke'' upravljačke programe\n"
-"kako bi proradio. Možete naći više informaciju o tome na: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Morate imati root particiju.\n"
-"Prvo napravite particiju (ili kliknite na postojeću) te\n"
-"odaberite akciju ``Mjesto monitranja'' te odaberite `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Morate imati swap particiju"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Swap particija ne postoji\n"
-"\n"
-"Da ipak nastavim?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Morate imati FAT particiju montiranu na /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Koristi slobodan prostor"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Koristi postojeće particije"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Nema postojećih particija koje bih mogao upotrijebiti"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Koristi Windows particiju za loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Koju particiju želite koristiti za Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Odaberite veličinu"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Veličina korijenske particije u MB: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Veličina swap particiju u MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Iskoristi slobodan prostor na Windows particiji"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Kojoj particiji želite promijeniti veličinu?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Izračunavam granice Windows datotečnog sustava"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Program koji mjenja veličinu FAT-a ne može rukovati vašom particijom, \n"
-"slijedeća greška se dogodila: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Vaša Windows particija je prefragmentirana, molim pokrenite ``defrag'' prvo."
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"UPOZORENJE!\n"
-"\n"
-"DrakX sada mora promijeniti veličinu vaše Windows particije\n"
-"Budite vrlo oprezni budući da je ova operacija\n"
-"izuzetno opasna. Ukoliko još niste mijenjali veličinu particije molim\n"
-"izađite prvo iz instalacije, pokrenite scandisk pod Windowsima (opcionalno "
-"pokrenite defrag), tada ponovno pokrenite instalaciju.\n"
-"Također preporučljivo je da sačuvate vaše podatke (napravite backup).\n"
-"Kada ste sigurni da želite nastaviti, pritisnite U redu."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Koliku veličinu želite zadržati za windowse"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "particija %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Mijenjanje FAT veličine nije uspjelo: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Nema FAT particije za mjenjanje veličine ili za korištenje loopback-a (ili "
-"nema dovoljno prostora)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Obriši cijeli disk"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Ukloni Windowse(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Imate više od jednog hard diska, na koji želite instalirati Linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "SVE postojeće particije i podaci biti će izgubljeni na disku %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Proizvoljno particioniranje diska"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Koristi fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Sada možete razdijeliti %s.\n"
-"Kada ste gotovi ne zaboravite spremiti postavu sa `w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Nemate dovoljno slobodnog prostora na vašoj Windows particiji"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Ne mogu pronaći bilo kakvo mjesto za instaliranje"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX čarobnjak za particioniranje je pronašao slijedeća rješenja:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Particioniranje neuspjelo: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Podižem mrežu"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Onemogućujem mrežu"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Dogodila se greška, ali neznam kako s njom lijepo rukovati.\n"
-"Nastavite dalje na vlastiti rizik."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Dupliciraj mjesto monitranja %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Neki važni paketi nisu se instalirali pravilno.\n"
-"Ili je vaš cdrom pogon ili cd medij u defektu.\n"
-"Provjerite cdrom na instaliranom računalu koristeći \"rpm -qpl Mandrake/RPMS/"
-"*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Dobrodošli u %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Disketni pogon nije dostupan"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Pokrećem korak `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Vaš sustav je slab na resursima. Možete imati nekih problem prilikom\n"
-"instalacije Mandrake Linux-a. Ukoliko se to desi, možete probati tekstualnu\n"
-"instalaciju. Za to, pritisnite `F1' kada podižete CDROM, i unesite `text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Instalacijski razred"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Molim izaberite jedan od slijedećih razreda instalacije:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ukupna veličina izabranih grupa je otprilike %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ukoliko želite instalirati manje od ove veličine,\n"
-"izaberite postotak paketa koliko želite instalirati.\n"
-"\n"
-"Mali postotak će instalirati samo najvažnije pakete;\n"
-"dok postotak od 100%% će instalirati sve odabrane pakete."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Imate mjesta na vašem disku za samo %d%% paketa.\n"
-"\n"
-"Ukoliko želite instalirati manje od ovoga,\n"
-"izaberite postotak paketa koliko želite instalirati.\n"
-"Mali postotak će instalirati samo najvažnije pakete;\n"
-"dok postotak od %d%% će instalirati koliko god je paketa moguće."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Detaljniji izbor nalazi se u slijedećem koraku."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Odaberite postotak paketa koje želite instalirati"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Odabir grupe paketa"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Individualan odabir paketa"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Ukupna veličina: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Loš paket"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Ime: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Inačica: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Veličina: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Značaj: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Ne možete označiti ovaj paket budući da nema dovoljno mjesta gdje ga se može "
-"instalirati"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Slijedeći paketi će biti instalirani"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Slijedeći paketi će biti uklonjeni"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Ne možete označiti/odznačiti ovaj paket"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Budući da je ovo obvezni paket ne možete ga odznačiti"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Ne možete odznačiti ovaj paket budući da je već instaliran"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Ovaj paket treba nadograditi\n"
-"Da li ste sigurni da ga želite odznačiti?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Ne možete odznačiti ovaj paket budući da ga treba nadograditi"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Prikaži automatski odabrane pakete"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Instaliraj"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Učitaj/Spremi na disketu"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Dograđujem izbor paketa"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Minimalna instalacija"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Odaberite pakete koje želite instalirati"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Instaliram"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Procjenjujem"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Preostalo vrijeme"
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Molimo pričekajte, Pripremam instalaciju"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d paketa"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Instaliram paket %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Prihvati"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Odbij"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Promjenite vaš Cd-Rom!\n"
-"\n"
-"Ubacite Cd-Rom označen \"%s\" u vaš pogon i pritisnite U redu kada "
-"završite.\n"
-"Ukoliko ga nemate, pritisnite Odustani kako bi izbjegli instalaciju sa ovog "
-"Cd-Rom-a."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Da ipak nastavim?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Javila se greška prilikom sortiranja paketa:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Pojavila se greška kod instalacije paketa:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Upozorenje\n"
-"\n"
-"Molimo pročitajte pažljivo činjenice niže. Ukoliko se ne slažete sa bilo\n"
-"kojim dijelom, nemate dozvolu instalirati slijedeći CD medij. Pritisnite "
-"'Odbij' \n"
-"za nastavak instalacije bez korištenja ovog medija.\n"
-"\n"
-"\n"
-"Neke komponente sadržane u slijedećem CD mediju nisu pokrivene\n"
-"GPL licencom ili sličnim ugovorom. Svaka takva komponenta je tada\n"
-"pokrivena stavkama i uvjetima svojim vlastitim specifičnim licencama. \n"
-"Molimo pročitajte pažljivo i složite se specifičnim licencama prije \n"
-"vašeg korištenja ili redistribuiranja navedenih komponenti. \n"
-"Takve licence općenito zabranjuju prijenos, dupliciranje \n"
-"(osim za spasonosne kopije), redistribuciju, reverzno inženjerstvo, \n"
-"disasembliranje, dekompilaciju ili promjenu komponente. \n"
-"Svako kršenje ugovora će odmah prekinuti vaša prava kod\n"
-"specifične licence. Ako vam stavke specifične licence ne odobre takva\n"
-"prava, obično ne možete instalirati programe na više od jednog\n"
-"sustava, ili prilagoditi ga za korištenje na mreži. Ako ste u nedoumici,\n"
-"kontaktirajte direktno distributera ili urednika komponente. \n"
-"Prijenos trećim osobama ili kopiranje takvih komponenti uključujući \n"
-"dokumentaciju je obično zabranjeno.\n"
-"\n"
-"\n"
-"Sva prava na komponente slijedećeg CD medija pripadaju njihovim \n"
-"uvaženim autorima i zaštićeni su intelektualnim vlasništvom i \n"
-"autorskim zakonima primjenjivim na software-ske programe.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Pojavila se greška"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "Da li zaista želite napustiti instalaciju?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Licencni dogovor"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Uvod\n"
-"\n"
-"Operativni sustav i njegove različite komponente raspoložive u Mandrake "
-"Linux distribuciji \n"
-"će se zvati \"Software-ski Produkti\" daljnje u tekstu. Software-ski "
-"Produkti uključuju, ali nisu \n"
-"ograničeni na, skup programa, metoda, zakona i dokumentacija vezanih uz "
-"operativni\n"
-"sustav i različite komponente Mandrake Linux distribucije.\n"
-"\n"
-"\n"
-"1. Licencni Dogovor\n"
-"\n"
-"Molimo pažljivo pročitajte ovaj dokument. Ovaj dokument je licenci dogovor "
-"između vas i \n"
-"MandrakeSoft S.A. koji se primjenjuje na Software-ske produkte.\n"
-"Instaliranjem, dupliciranjem ili korištenjem Software-skih Produkata u bilo "
-"kojem obliku,eksplicitno \n"
-"prihvaćate i potpuno se slažete da ćete prihvatiti stavke i uvjete ove "
-"Licence. \n"
-"Ukoliko se ne slažete sa bilo kojim dijelom licence, nije vam dozvoljeno "
-"instalirati, duplicirati ili koristiti \n"
-"Software-ski produkt. \n"
-"Svaki pokušaj instalacije, dupliciranja ili korištenja Software-skog "
-"Produkta u obliku kojem ne priliči \n"
-"sa stavkama i uvjetima ove licence je prazno i uništiti će vaša prava pod "
-"ovom\n"
-"Licencom. Uslijed uništenja licence, morate odmah unišititi sve kopije \n"
-"Software-skog Produkta.\n"
-"\n"
-"\n"
-"2. Ograničeno Jamstvo\n"
-"\n"
-"Software-ski Produkt i pripadajuća dokumentacija je pružena \"kako je\", bez "
-"jamstva, do \n"
-"mjere dozvoljene zakonom.\n"
-"MandrakeSoft S.A. neće, u bilo kojim slučajevima i do te mjere dozvoljene "
-"zakonom, biti odgovaran za bilo kakvu specijalnu,\n"
-"nesretnu, direktnu ili indirektnu štetu bilo kakvu (uključujući granice "
-"štete od gubitka\n"
-"posla, prestanka posla, financijskih gubitaka, legalnih plaćanja i kazni "
-"posljedica sudskih \n"
-"presuda, ili bilo kakvih drugih posljedica gubitka) što je posljedica "
-"korištenja ili nemogućnosti korištenja Software-skog \n"
-"Produkta, iako je MandrakeSoft S.A. bio upozoren od mogućnosti takve \n"
-"štete.\n"
-"\n"
-"OGRANIČENA ODGOVORNOST POVEZANA SA POSJEDOVANJEM ILI KORIŠTENJEM ZABRANJENOG "
-"SOFTWARE-A U NEKIM ZEMLJAMA\n"
-"\n"
-"Do granice dozvoljene zakonom, MandrakeSoft S.A. ili njegovi distributori "
-"neće, u bilo kakvim slučajevima, biti \n"
-"odgovaran za bilo kakvu specijalnu, nesretnu, direktnu ili indirektnu štetu "
-"bilo kako (uključujući \n"
-"ograničene štete zbog gubitka posla, prekida posla, financijskog gubitka, "
-"legalnih plaćanja \n"
-"i kazni posljedica sudskih presuda, ili bilo kakvih drugih "
-"posljedicagubitka) što je posljedica \n"
-"posjedovanja ili korištenja software-skih komponenti ili kao posljedica "
-"skidanja (download-a) software-skih komponenti \n"
-"sa jednog od Mandrake Linux site-ova koja su zabranjena ili ograničena u "
-"nekim zemljama po lokalnim zakonima.\n"
-"Ova ograničena odgovornost se primjenjuje na, ali nije ograničena, jake "
-"kriptografske komponente \n"
-"uključene u Software-ski Produkt.\n"
-"\n"
-"\n"
-"3. GPL Licenca i slične licence\n"
-"\n"
-"Software-ski Prodkt se sastoji od komponenti napravljenih od raznih ljudi "
-"ili entiteta. Veliki \n"
-"broj tih komponenti je pokriveno pod stavkama i uvjetima GNU Opće Javne \n"
-"Licence, u daljnjem tekstu zvana \"GPL\", ili sličnih licenci. Veliki broj "
-"tih licenci dozvoljava vam korištenje, \n"
-"dupliciranje, prilagođavanje ili redistribuciju komponenti koju ona pokriva. "
-"Molimo pročitajte pažljivo stavke \n"
-"i uvjete licencnog dogovora svake komponente prije korištenja bilo koje "
-"komponente. Bilo koje pitanje \n"
-"o licenci komponente trebao bi biti adresiran autoru komponente a ne "
-"MandrakeSoft-u.\n"
-"Programe razvijeni od strane MandrakeSoft S.A. su pokriveni GPL licencom. "
-"Dokumentacija napisana \n"
-"od strane MandrakeSoft S.A. je pokrivena specifičnom licencom. Molimo "
-"pogledajte dokumentaciju za \n"
-"više detalja.\n"
-"\n"
-"\n"
-"4. Prava na intelektualno vlasništvo\n"
-"\n"
-"Sva prava komponenti Software-skog Produkta pripada njihovim uvaženim "
-"autorima i \n"
-"zaštićeni su intelektualnim vlasništvom i autorskim zakonima primjenjivim na "
-"software-ske programe.\n"
-"MandrakeSoft S.A. zadržava svoje pravo za izmjenu ili prilagođavanje "
-"Software-skog Produkta, kao cijelinu ili u\n"
-"dijelovima, u svim slučajevima za sve namjene.\n"
-"\"Mandrake\", \"Mandrake Linux\" i pripadajući logoi su zaštićeni prodajni "
-"znaci MandrakeSoft S.A. \n"
-"\n"
-"\n"
-"5. Državni zakoni \n"
-"\n"
-"Ukoliko neki dio ovog dogovora govori ništa, ilegalan ili neprikladan "
-"sudstvu, taj \n"
-"dio može se isključiti iz ovog ugovora. Ali ostajete obveznu drugim "
-"primjenjivim sekcijama\n"
-"ugovora.\n"
-"Za stavke i uvjete ove Licence je nadležan zakon Francuske.\n"
-"Sve sporove oko stavaka licence će preferirano biti uređeno sudom. Kao "
-"zadnji \n"
-"izlaz, spor će biti predan odgovarajućem Sudu u Parizu - Francuska.\n"
-"Za bilo kakva pitanja o ovom dokumentu, molimo kontaktirajte MandrakeSoft S."
-"A. \n"
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Tipkovnica"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Molim, izaberite raspored tipkovnice."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Ovdje je cijeli popis raspoloživih tipkovnica"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Koji instalacijski razred želite?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Instaliraj/Nadogradi"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Da li je ovo instalacija ili nadogradnja?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Preporučeno"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Ekspert"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Dogradnja"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Samo dogradi pakete"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Molim izaberite vašu vrstu miša."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Port miša"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Izaberite na kojem serijskom portu je miš priključen."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Emulacija gumbova"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emulacija 2 gumba"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emulacija 3 gumba"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Podešavam PCMCIA kartice..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Podešavam IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "nema dostupnih particija"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Tražim particije kako bi pronašao mjesta montiranja"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Odaberite mjesta montiranja"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ne mogu pročitati particijsku tablicu, previše je koruptirana za mene :(\n"
-"Mogu pokušati sa brisanjem loših particija (SVI PODACI će biti "
-"izgubljeni!).\n"
-"Drugo rješenje je onemogućiti DrakX-u da mjenja particijsku tablicu.\n"
-"(greška je %s)\n"
-"\n"
-"Da li se slažete da izgubite sve particije?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake nije uspio pročitati vašu particijsku tablice.\n"
-"Nastavite o vlastitoj odgovornosti."
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Nema slobodnog mjesta za 1 MB bootstrap! Instalacija će nastaviti, ali za "
-"podizanje vašeg sustava, trebati ćete napraviti bootstrap particiju u "
-"DiskDrake-u"
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Niti jedna root particija nije pronađena da se obavi dogradnja"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Korijenska particija"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Koja je korijenska particija (/) vašeg sustava?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Morate ponovo pokrenuti sustav kako bi se aktivirala promjena particijske "
-"tablice"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Izaberite particije koje želite formatirati"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Provjeri za loše blokove?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formatiram particije"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Stvaram i formatiram datoteku %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Nema dovoljno swapa za završetak instalacije, molim dodajte još"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Tražim dostupne pakete"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Tražim pakete koje mogu nadograditi"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Vaš sustav nema dovoljno prostora za instalaciju ili dogradnju (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Kompletno (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Preporučeno (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Molimo izaberite učitivanje ili spremanje izbora paketa na disketu.\n"
-"Format je isto kao auto_install napravljene diskete."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Učitaj sa diskete"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Učitavam sa diskete"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Odabir paketa"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Umetnite disketu koja sadržava izbor paketa"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Spremi na disketu"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Izabrana veličina je veća nego raspoloživ prostor"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Tip instalacije"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Niste izabrali niti jednu grupu paketa\n"
-"Izaberite minimalnu instalaciju ako želite"
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "Sa X-ima"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "Sa osnovnom dokumentacijom (preporučeno!)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Stvarno malena instalacija (posebice bez urpmia)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Ako imate sve dolje navedene CDove kliknite U redu.\n"
-"Ako nemate niti jedan od navedenih CD kliknite Odustani.\n"
-"Ako imate samo neke od dolje navedenih CDa odznačite one koje nemate i "
-"kliknite U redu."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom naslovljen \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Pripremam instalaciju"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Instaliram paket %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Postava nakon instalacije"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Molim, umetnite Boot disketu u pogon %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Molim, umetnite Update Modules disketu u pogon %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Sada imate mogućnost za skidanje software-a za enkripciju.\n"
-"\n"
-"UPOZORENJE:\n"
-"\n"
-"Zbog različitih općih zahtjeva primjenjivih na ovaj software i presuda\n"
-"raznih sudova, kupac i/ili krajnji korisnik ovog software-a treba se\n"
-"uvjeriti da zakoni njegovog/e sudstva dozvoljava mu/joj da skine, spremi\n"
-"i/ili koristi ovaj software.\n"
-"\n"
-"U dodatku kupac i/ili krajnji korisnik mora dijelom biti svjestan da ne "
-"prekrši\n"
-"zakon svoga sudstva. Ukoliko kupac i/ili krajnji korisnik ne \n"
-"poštuje stavke tih primjenjivih zakona, može ga dovesti do ozbiljnih\n"
-"sankcija.\n"
-"\n"
-"U bilo kojem slučaju Mandrakesoft ili njegovi proizvođači i/ili nabavljačine "
-"mogu biti odgovorni\n"
-"za specijalne, indirektne ili slučajne štete bilo kako (uključujući, ali ne\n"
-"ograničana na gubitak profita, prekid posla, gubitak komercijalnih podataka\n"
-"i\n"
-"drugih novčanih gubitaka, i eventualne odgovornosti i isplate naknade što "
-"treba biti plaćeno\n"
-"odlukom suda) što je posljedica korištenja, posjedovanja ili samog\n"
-"skidanja ovog software-a, kojemu će kupac i/ili krajnji korisnik može\n"
-"eventualno imati pristup poslije potpisivanja postojećeg ugovora/dogovora.\n"
-"\n"
-"\n"
-"Za bilo kakve upite u svezi ovog ugovora, molimo kontaktirajte \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-#, fuzzy
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Imate mogućnost skidanja (downloada) paketa za dogradnju koji su\n"
-"izašli poslije nego što je distribucija postala raspoloživa.\n"
-"\n"
-"Dobiti ćete sigurnosne popravke i popravke od grešaka, ali trebate imati\n"
-"Internet vezu konfiguriranu za nastavak.\n"
-"\n"
-"Da li želite nastaviti ?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Kontaktiram Mandrake Linux web site za dobivanje popisa raspoloživih mirrora"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Izaberite mirror sa kojeg želite skinuti pakete"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Spajam se na mirror kako bih pribavio popis dostupnih paketa"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Koja je vaša vremenska zona?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Vaš hardverski sat namješten je na GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatska vremenska sinkronizacija (koristeći NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP Poslužitelj"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Udaljeni CUPS poslužitelj"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Nema pisača"
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "Da li imate ISA zvučnu karticu?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-"Pokrenite \"sndconfig\" poslije instalacije za podešavanje vaše zvučne "
-"kartice"
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Nije pronađena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Sumarno"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Miš"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Vremenska zona"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Pisac"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDN kartica"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Zvučna kartica"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV kartica"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Lokalne datoteke"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Podešavanje root lozinke"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Bez lozinke"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr ""
-"Ova lozinka je prejednostavna (lozinka mora sadržavati barem %d znakova)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Provjera autentičnosti"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "LDAP Autentifikacija"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAP Poslužitelj"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "NIS Autentifikacija"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS domena"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS Poslužitelj"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Proizvoljna boot disketa omogućava način podizanja vašeg Linux sustava bez\n"
-"ovisnosti o normalnom bootloader-u. Ovo je korisno ukoliko ne želite "
-"instalirati\n"
-"SILO na vaš sustav, ili je drugi operativni sustav uklonio SILO, ili SILO "
-"ne\n"
-"želi raditi sa vašom konfiguracijom hardware-a. Proizvoljna boot disketa "
-"također može biti korištena sa\n"
-"Mandrake spasonosnom slikom, omogućavajući tako lakše spašavanje od raznih "
-"sustavskih\n"
-"grešaka.\n"
-"\n"
-"Ako želite napraviti boot disketu za vaš sustav, ubacite disketu u prvi\n"
-" pogon i pritisnite \"U redu\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Prvi disketni pogon"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Drugi disketni pogon"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Preskoči"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Proizvoljna boot disketa omogućava način podizanja vašeg Linux sustava bez\n"
-"ovisnosti o normalnom bootloader-u. Ovo je korisno ukoliko ne želite "
-"instalirati\n"
-"LILO (ili grub) na vaš sustav, ili je drugi operativni sustav uklonio LILO, "
-"ili LILO ne\n"
-"želi raditi sa vašom konfiguracijom hardware-a. Proizvoljna boot disketa "
-"također može biti korištena sa\n"
-"Mandrake spasonosnom slikom, omogućavajući tako lakše spašavanje od raznih\n"
-" sustavskih grešaka.\n"
-"Da li želite napraviti proizvoljnu boot disketu za vaš sustav?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Žalim, međutim disketni pogon nije dostupan"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Izaberite disketni pogon koji želite koristiti za izradu boot diskete"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Umetnite disketu u pogon %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Stvaram boot disketu"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Pripremam bootloader"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Čini se da imate OldWorld ili Nepoznato\n"
-" računalo, yaboot bootloader neće moći raditi kod vas.\n"
-"Instalacija će nastaviti, ali ćete morati\n"
-" koristiti BootX da podignete vaše računalo"
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Da li želite koristiti aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Greška prilikom instalacije aboot-a, \n"
-"probati nasilno instalirati iako to može uništiti prvu particiju?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Instaliranje bootloadera"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr ""
-"Instalacija bootloader-a nije uspjela. Prijavljena je slijedeća grešska:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Trebati ćete promjeniti vaš Otvoreni Firmware boot-uređaj kako bi\n"
-" omogućili bootloader. Ukoliko ne želite vidjeti bootloader prompt pri\n"
-" podizanju, pritisnite Command-Option-O-F pri podizanju i unesite:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Tada napišite: shut-down\n"
-"Pri slijedećem podizanju trebali biste vidjeti prompt bootloadera."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Umetnite praznu disketu u pogon %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Pravim auto instalacijsku disketu"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Niste završili sve korake.\n"
-"\n"
-"Želite li zaista završiti?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Čestitam, instalacija je kompletna.\n"
-"Uklonite boot medij i pritisnite return za ponovno podizanje.\n"
-"\n"
-"\n"
-"Za informacije o popravcima koji su raspoloživi za ovo izdanje Mandrake "
-"Linux-a,\n"
-"konzultirajte Eratu raspoloživu na\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Informacije o konfiguriranju vašeg sustava je raspoloživo u poslije\n"
-"instalacijskom poglavlju od Official Mandrake Linux User's Guide."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Napravi auto instalacijsku disketu"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"Auto instalacija može biti potpuno automatska ukoliko želite,\n"
-"u tom slučaju će preuzeti hard disk!!\n"
-"(ovo znači za instalaciju na drugo računalo).\n"
-"\n"
-"Možete preferirati da ponovite instalaciju.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automatski"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Ponovno prikaži"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Spremi odabir paketa"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux instalacija %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> između elemenata | <Space> bira | <F12> slijedeći zaslon"
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu nedostaje"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Izaberite datoteku"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Napredno"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Osnovno"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Molim pričekajte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Proširi stablo"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sažmi stablo"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Prebaci između ravno i grupno sortiranog"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Krivi izbor, pokušajte ponovo\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Vaš izbor? (uobičajeno %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Unosi koje trebate popuniti:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Vaš izbor? (0/1, uobičajeno '%s') "
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Gumb `%s': %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "Da li želite kliknuti na ovaj gumb? "
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Vaš izbor? (uobičajeno `%s'%s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Postoji mnogo stvari za odabir iz (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Molim, izaberite prvi broj do 10 kojeg želite urediti,\n"
-"ili samo pritisnite Enter za nastavak.\n"
-"Vaš izbor? "
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Obavijest, naziv promijenjen:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Ponovno Pošalji"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Češka (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Njemačka"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Španjolska"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Finska"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Francuska"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norveška"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Poljska"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Ruska"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Švedska"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "UK tipkovnica"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "US tipkovnica"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Albanska"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armenska (stara)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armenska (pisaća mašina)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armenska (fonetska)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbejdžanska (latinica)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgijska"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Armenska (fonetska)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Bugarska"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazilska (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Bjeloruska"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Švicarska (Njemački raspored)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Švicarska (francuski raspored)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Češka (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Njemačka (bez mrtvih tipaka)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Danska"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (USA)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norveška)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Švedska)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estonska"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Gruzijska (\"Ruski\" raspored)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Gruzijska (\"Latin\" raspored)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Grčka"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Mađarska"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Hrvatska"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Izraelska"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Izraelska (fonetska)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iranska"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandska"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Talijanska"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japanska (106 tipaka)"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Korejska tipkovnica"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latino američka"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituanska AZERTY (stara)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituanska AZERTY (nova)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituanska \"number row\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituanska \"fonetska\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "Latvija"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Makedonska"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Nizozemska"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Poljska (qwerty raspored)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Poljska (qwertz raspored)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugalska"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Kanadska (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Rumunjska (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Rumunjska (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Ruska (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slovenska"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovačka (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovačka (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Srpska (čirilica)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Tablica"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Tajlandska tipkovnica"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Tajik tipkovnica"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turska (tradicionalni \"F\" model)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turska (moderna \"Q\" model)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukrajinska"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "US keyboard (internacionalna)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vijetnamska \"numeric row\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslavenska (latinična)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Kružno montiranje %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Ukloni logički volumen prvo\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"PCMCIA podrška više ne postoji za 2.2 kernele. Molimo koristite 2.4 kernel."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - miš"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Generički PS2 miš s kotačićem"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 gumb"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Generički miš s 2 gumba"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generički"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Kotačić"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "serijski"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Generički miš s 3 gumba"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC serije"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Serije"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Miš (serijski, stari C7 tip)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmiš"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 gumba"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 gumba"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "niti jedan"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Nema miša"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Molimo istestirajte miša."
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Za aktiviranje miša,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "POMAKNITE VAŠ KOTAČIĆ!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Završi"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Slijedeće ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Prijašnje"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Da li je ovo ispravno?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Spoji se na Internet"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Najčešći način da se povežete sa adsl-om je pppoe.\n"
-"Neke veze koriste pptp, a nekoliko koriste dhcp.\n"
-"Ukoliko neznate, izaberite 'koristi pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "koristi dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "koristi pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "koristi pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Koji dhcp klijent želite koristiti?\n"
-"Pretpostavljeni je dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Nije pronađen niti jedan mrežni adapter na vašem sustavu.\n"
-"Ne mogu postaviti ovu vrstu veze."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Odaberite mrežni međusklop"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Molimo izaberite sa kojim mrežnim adapterom se želite priključiti na Internet"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "ne mogu pronaći niti jednu mrežnu karticu"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Podešavam mrežu"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Molim unesite ime računala ukoliko ga znate.\n"
-"Neki DHCP serveri zahtjevaju specifiranje imena računala da bi radili.\n"
-"Vaše ime računala bi trebalo biti potpuno-kvalificirano ime računala,\n"
-"kao što je ``mybox.mylab.myco.com''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Ime računala"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Čarobnjak mrežnih postavki"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Vanjski ISDN modem"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Interna ISDN kartica"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Kakav tip ISDN veze koristite ?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Koju ISDN konfiguraciju preferirate?\n"
-"\n"
-"* Stara konfiguracija koristi isdn4net. Ona sadrži snažne\n"
-" alate, ali je teška za konfiguriranje, nije standardna.\n"
-"\n"
-"* Nova konfiguracija je lakša za razumiti, mnogo standardnija,\n"
-" ali sa manje alata.\n"
-"\n"
-"Preporučamo laku konfiguraciju.\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Nova konfiguracija (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Stara konfiguracija (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN postavke"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Izaberite vašeg pružatelja Internet usluga.\n"
-" Ako nije na popisu odaberite Drugi"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Europski protokol"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Europski protokol (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protokol za ostatak svijeta"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protokol za ostatak svijeta \n"
-" bez D-kanala (za iznajmljene linije)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Koji protokol želite koristiti ?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Kakvu karticu posjedujete?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Ne znam"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Ukoliko imate ISA karticu, vrijednosti na slijedećem zaslonu trebale bi biti "
-"dobre.\n"
-"\n"
-"Ukoliko imate PCMCIA karticu, morate znati irq i io vaše kartice.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Prekini"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Nastavi"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Kakvu ISDN karticu imate?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Pronašao sam ISDN PCI karticu međutim ne znam kojeg je tipa. Molim izaberite "
-"vašu PCI karticu na slijedećem ekranu."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Nisam našao niti jednu ISDN PCI karticu. Molim izaberite vašu PCI karticu na "
-"slijedećem ekranu."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Izaberite serijski port na kojemu se nalazi modem."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Podesi dialup"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Ime veze"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Telefonski broj"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Prijavno ime"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Temeljem skripta"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Terminal-zasnovano"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Ime domene"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Prvi DNS poslužitelj (opciono)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Drugi DNS poslužitelj (opciono)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Možete isključiti ili ponovno konfigurirati vašu vezu."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Možete ponovno konfigurirati vašu vezu."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Trenutno ste spojeni na internet."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Možete se spojiti na Internet ili ponovno konfigurirati vašu vezu."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Niste trenutno spojeni na Internet."
-
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
-msgid "Connect"
-msgstr "Povezan"
-
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
-msgid "Disconnect"
-msgstr "Odspoji..."
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Podesi mrežu"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Internet veza i postava"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Sada ćemo podesiti %s vezu."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Sada ćemo podesiti %s vezu.\n"
-"\n"
-"\n"
-"Pritisnite U redu za nastavak."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Mrežne postavke"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Pošto radite mrežnu instalaciju, vaša mreža je već konfigurirana.\n"
-"Pritisnite U redu da zadržite postojeće postavke, ili Odustani za ponovno "
-"konfiguriranje vaše mrežne/Internet veze.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Dobro Došli u Čarobnjak za podešavanje mreže\n"
-"\n"
-"Sada ćemo konfigurirati vašu internet/mrežnu vezu.\n"
-"Ukoliko ne želite koristiti auto detekciju, odselektirajte kvadratić s "
-"potvrdom.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Izaberite profil za konfiguriranje"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Koristi auto detekciju"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Otkrivanje uređaja..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Normalna modemska veza"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "detektiran na portu %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN veza"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "detektirano %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ADSL veza"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "detektirano na međusklopu %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Kablovska veza"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "detektirana kablovska veza"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "LAN veza"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "ethernet kartica(e) pronađene"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Izaberite vezu koju želite podesiti"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Odabrali ste više načina za spajanje na Internet.\n"
-"Molimo izaberite koji želite koristiti.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Internet veza"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Da li želite pokreniti vašu vezu kod svakog podizanja (boot) sustava ?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Mrežne postavke"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "Mreža treba biti ponovno pokrenuta"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Problem se pojavio prilikom ponovnog pokretanja mreže: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Čestitam, mrežna i internet konfiguracija je završena.\n"
-"\n"
-"Konfiguracija će sada biti primjenjena na vašem sustavu.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Nakon što je to napravljeno, preporučamo da ponovno pokrenete vaše X\n"
-"okružje kako bi izbjegli probleme prilikom promjene imena računala."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"UPOZORENJE: Ovaj uređaj je bio prethodno konfiguriran za spajanje na "
-"Internet.\n"
-"Jednostavno prihvatite ovaj uređaj konfiguriran.\n"
-"Promjena polja niže će prepisati ovu konfiguraciju."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Molim unesite IP postavke za ovaj stroj.\n"
-"Svaka stavka treba biti unesena kao IP adresa odvojena\n"
-"točkama (npr. 1.2.3.4)"
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Podešavam mrežni uređaj %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (upravljački program %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP adresa"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Netmaska"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Automatski IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresa treba biti oblika 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Molim unesite ime računala.\n"
-"Ime računala treba biti puno ime računala,\n"
-"primjerice mojeracunalo.odjel.domena.hr.\n"
-"Također unesite IP adresu gateway računala ako gateway postoji"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS poslužitelj"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Gateway uređaj"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Postava proxy-a"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Prati id mrežne kartice (korisno za laptope)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy treba biti http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy treba biti ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Postava Interneta"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Da li želite pokušati spajanje na Internet ?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Testiram vašu vezu..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Sustav je sada spojen na Internet."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Zbog sigurnosnih razloga, biti će sada odspojen."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Čini se kako sustav nije spojen na internet.\n"
-"Probajte ponovno podesiti vašu vezu."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Postava Veze"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Molim ispunite ili provjerite vrijednost doljnjeg polja"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ kartice"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Memorija kartice (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO kartice"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_0 kartice"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 kartice"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Vaš osobni telefonski broj"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Ime ISP pružatelja (npr. provider.hr)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Telef. broj pružatelja"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Pružateljev DNS 1 (opciono)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Pružateljev DNS 2 (opciono)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Odaberite vašu zemlju"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Način biranja"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Brzina"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Vrijeme čekanja veze (u sek)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Korisničko ime"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Korisnička Lozinka"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "montiranje nije uspjelo: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Proširene particije nisu podržane na ovoj platformi"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Imate rupu u svojoj particijskoj tablici međutim ja je ne mogu iskoristiti.\n"
-"Jedino rješenje je da pomaknete vašu primarnu particiju kako bi rupa bila\n"
-"odmah do proširenih particija."
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Vraćanje iz datoteke %s nije uspjelo: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Loša backup datoteka"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Greška prilikom pisanja u datoteku %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Nešto loše se dešava sa vašim pogonom. \n"
-"Test za provjeru integriteta podataka je neuspješan. \n"
-"To znači da pisanje bilo čega na vaš disk rezultira slučajnim smećem"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "potrebno"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "važno"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "vrlo lijepo"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "lijepo"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "možda"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Nova Generacija"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Ispiši, Bez Reda"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Lokalni pisač"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Udaljeni pisač"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Pisač na udaljenom CUPS poslužitelju"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Pisač na udaljenom lpd poslužitelju"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Mrežni pisač (TCP/socket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Pisač na SMB/Windows 95/98/NT poslužitelju"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Pisač na NetWare poslužitelju"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Unesite URI pisača"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Proslijedi (pipe) na komandu"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Nepoznati model"
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Lokalni pisač"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Udaljeni pisač"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Greška prilikom pisanja u datoteku %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Raw printer (Bez upravljačkog programa)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(na %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(na ovom računalu)"
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP CUPS poslužitelja"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Uobičajeno)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Odaberite vezu pisača"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Kako je pisač povezan?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Pisače na udaljenom CUPS poslužitelju ne morate konfigurirati\n"
-"ovdje; ti pisači će biti automatski pronađeni. Molim,\n"
-"izaberite \"Pisač na udaljenom CUPS poslužitelju\" u tom slučaju."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "LAN postavke"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Udaljeni CUPS poslužitelj"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP adresa treba izgledati poput 192.168.1.20"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Broj porta bi trebao biti cjelobrojni broj!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP CUPS poslužitelja"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Port"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Automatska CUPS konfiguracija"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Otkrivanje uređaja ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Iskušaj portove"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Nema pisača"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Lokalni pisač"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Automatski pronalazak pisača"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Automatski pronalazak pisača"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Koristi auto detekciju"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Ime udaljenog pisača"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "detektirano %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Unesite URI pisača"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Lokalni pisač"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Izaberite serijski port na kojemu se nalazi modem."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Unesite URI pisača"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Postava Interneta"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Instaliram paket %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Instaliram paket %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "Čitam bazu pisača ..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Čitam bazu pisača ..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Postavke udaljenog lpd pisača"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Ukoliko želite koristiti udaljeni lpd red morate unijeti\n"
-"ime ispisnog poslužitelja te ime reda na poslužitelju\n"
-"na koji želite ispisivati."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Udaljeno ime računala"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Ime udaljenog pisača"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Nedostaje ime računala udaljenog pisača!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Nedostaje ime udaljenog pisača!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Postavke SMB (Windows 9x/NT) pisača"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Za ispis na SMB pisač, trebate navesti\n"
-"ime SMB domaćina (Primjetite da može biti različit od TCP/IP imena "
-"računala)\n"
-"i vjerojatno IP adresu poslužitelja pisača, kao i\n"
-"ime dijeljenog resursa za pisač kojem želite pristupiti i bilo koje\n"
-"primjenjivo korisničko ime, lozinku ili informacije o radnoj grupi."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "SMB poslužitelj"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP SMB poslužitelja"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Ime sharea"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Radna grupa"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Ime poslužitelja ili IP poslužitelja mora biti naveden!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Ime dijeljenog samba resursa nedostaje!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Postavke NetWare pisača"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Za ispis na NetWare pisač, trebate navesti\n"
-"NetWare ime poslužitelja pisača (Primjetite da može biti različit od\n"
-"njegovog TCP/IP imena računala!) kao i ime ispisnog reda za piač koji\n"
-"želite pristupiti kao i primjenjivo korisničko ime i lozinku."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Ispisni poslužitelj"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Ime reda pisača"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "Ime NCP poslužitelja nedostaje!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "Nedostaje ime NCP reda!"
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Opcije socket pisača"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Za ispis na socket pisač, trebate navesti \n"
-"ime poslužitelja od printera te opciono broj porta."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Ime računala od pisača"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Nedostaje ime računala od pisača!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "URI Uređaja pisača"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Ispravan URI mora biti unešen!"
-
-#: ../../printerdrake.pm_.c:1004
-#, fuzzy
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Svaki pisač treba ime (na primjer lp).\n"
-"Polja opisa i lokacije ne mora biti \n"
-"popunjeno. To su komentari za korisnike."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Ime pisača"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Opis"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Lokacija"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Pripremam bazu pisača ..."
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Ime udaljenog pisača"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Da li je ovo ispravno?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Ime udaljenog pisača"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Izabir modela pisača"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Kakav model pisača imate?"
-
-#: ../../printerdrake.pm_.c:1141
-#, fuzzy
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Molim, provjerite da li je Printerdrake \n"
-"automatski pronašao vaš model pisača\n"
-"ispravno. Pronađite ispravan model u\n"
-"popisu ukoliko pokazivač pokazuje a\n"
-"krivi model ili na \"Raw pisač\"."
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "OKI winprinter konfiguracija"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjet konfiguracija"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Opcija %s mora biti cijeli broj!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Opcija %s mora biti broj!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Opcija %s je izvan dosega!<"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Da li želite postaviti ovaj pisač (\"%s\")\n"
-"kao podrazumijevani pisač?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Testne stranice"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Bez testnih stranica"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Ispiši"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Standardna testna stranica"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Alternativna testna stranica (Letter)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Alternativna testna stranica (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Foto testna stranica"
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Ispisujem probnu stranicu(e)..."
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Ispisujem probnu stranicu(e)..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Testna/e stranica/e su poslane na pisač.\n"
-"Može potrajati neko vrijeme dok ispisivanje ne započne.\n"
-"Status ispisa:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Probna stranica(e) poslana je na pisač.\n"
-"Ponekad je potrebno par sekundi prije nego pisač počne s ispisom.\n"
-"Da li sve radi kako treba?"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Nema pisača"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zatvori"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Onemogućujem mrežu"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Onemogućujem mrežu"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Postavke pisača"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Postava Interneta"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Ime pisača može sadržavati samo slova, brojeve i podvlaku"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Pisač \"%s\" već postoji,\n"
-"da li zaista želite prepisati njegovu konfiguraciju?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Novo ime pisača"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "Postavke pisača"
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Pokrećem vašu vezu..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Podesi mrežu"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Niste podesili monitor"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Podešavam mrežu"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Koji ispisni sustav želite koristiti?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Visok"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Paranoidan"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Koji ispisni sustav želite koristiti?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Odaberite vezu pisača"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Koji ispisni sustav želite koristiti?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Podesi pisač"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Instaliram paket %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Postavke pisača"
-
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Podesi pisač"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Da li želite podesiti pisač?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Pisac"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Podesi mrežu"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Normalni mod"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Da li želite iskušati postavu ?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Postavke modema"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Da li želite iskušati postavu ?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Dijeljenje Internet Veze"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Veza pisača"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "Ispisujem probnu stranicu(e)..."
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Da li želite iskušati postavu ?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Postavke udaljenog pisača"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Podrazumijevani pisač"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Da li želite ponovno pokrenuti mrežu?"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Čitam CUPS bazu upravljačkih programa..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Postava proxy-a"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Dobro došli u pomoćni program za konfiguriranje proxy-a.\n"
-"\n"
-"Ovdje ćete moći postaviti vaš http i ftp proxi-e\n"
-"sa ili bez logina i lozinke\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Molimo popunite http proxy informacije\n"
-"Molimo ostavite prazno ukoliko ne želite http proxy"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "port"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "Url treba početi sa 'http:'"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Broj porta bi trebao biti numerički"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Molimo unesite ftp proxy informacije\n"
-"Ostavite prazno ukoliko ne želite ftp proxy"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Url treba početi sa 'ftp:'"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Molimo unesite proxy login i lozinku ukoliko postoje.\n"
-"Ostavite prazno ako ne želite login/lozinku"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "login"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "lozinka"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "ponovno unesite lozinku"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Lozinke se ne podudaraju. Pokušajte ponovno!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Ne mogu dodati particiju na _formatirani_ RAID md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Ne mogu pisati u datoteku %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid nije uspio"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid nije uspio (možda niste instalirali raidtools alate?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Nema dovoljno particija za RAID nivo %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Pokreni ALSA (Naprednu Linux Zvučnu Arhitekturu) zvučni sustav"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron periodno zakazivanje komandi"
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd služi za monitoriranje statusa i baterije i njegovo logiranje putem "
-"syslog-a.\n"
-"Također može biti korišten za gašenje računala kada je baterija slaba."
-
-#: ../../services.pm_.c:18
-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 ""
-"Pokreće komande zakazane sa at komandom u specifirano vrijeme kada\n"
-"je at pokrenut, i pokreće batch komande kada je prosječna zauzetost dovoljno "
-"niska."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron je standardan UNIX program koji pokreće korisnički definirane programe\n"
-"u periodično zakazana vremena. vixie cron dodaje veliki broj korisnih "
-"funkcija običnom UNIX cron-u, uključujući bolju sigurnost i veću snagu "
-"konfiguracijskih opcija."
-
-#: ../../services.pm_.c:23
-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 dodaje podršku za mišu tekst baziranim Linux aplikacijama kao što je\n"
-"Midnight Commander. Također pruža miš baziranim konzolama odreži-i-zalijepi "
-"operacije,\n"
-"i uključuje podršku za iskočive menije u konzoli."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake pokreće isprobavanje hardware-a, i opciono konfigurira\n"
-"novi/promjenjeni hardware."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache je World Wide Web poslužitelj. Koristi se za posluživanje HTML\n"
-"dokumenata i CGI skripti."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Internet superserver demon (najčešće zvan inetd) pokreće \n"
-"razne druge internet servise po potrebi. Odgovoran je za pokretanje \n"
-"mnogo servisa, uključujući telnet, ftp, rsh, i rlogin. Isključivanje inetd-"
-"a\n"
-"onemogučuje sve servise za koje je zadužen."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Pokreće paketno filtriranje za Linux kernel 2.2 serije, za postavljanje\n"
-"vatrozida za zaštitu vašeg računala od mrežnih napada."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Ovaj paket učitava odabranu tastaturnu mapu kao što je postavljenu u\n"
-"/etc/sysconfig/keyboard. Ona se može odabrati koristeći kbdconfig alat.\n"
-"Trebali biste ostaviti ovo uključeno za većinu računala."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Automatsko regeneriranje kernel header-a u /boot za\n"
-"/usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Automatska detekcija i konfiguracija hardware-a pri podizanju."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf će ponekada urediti izvršavanje raznih radnji\n"
-"pri samom podizanju kako bi održao sustavsku konfiguraciju."
-
-#: ../../services.pm_.c:43
-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 je daemon za ispis koji je potreban od lpr-a kako bi radio ispravno.\n"
-"On je pojednostavljeno poslužitelj koji šalje ispisne poslove pisaču(ima)."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtualni Poslužitelj, koristi se za pravljenje visoko raspoloživog\n"
-"poslužitelja visokih performansi."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) je Domain Name Server (DNS) poslužitelj koji se upotrebljava\n"
-"za razlučivanje imena računala u IP adrese."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Montira i Demontira sve Mrežne datotečne sustave (NFS), SMB (Lan\n"
-"Manager/Windows), i NCP (NetWare) točke montiranja."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktivira/Deaktivira sva podešena mrežna sučelja prilikom pokretanja\n"
-"sustava."
-
-#: ../../services.pm_.c:52
-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 je popularan protokol za dijeljenje datoteka putem TCP/IP mreža.\n"
-"Ovaj servis pruža NFS poslužiteljsku funkcionalnost, koji se konfigurira\n"
-"putem /etc/exports datoteke."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS je popularan protokol za dijeljenje datoteka putem TCP/IP mreža.\n"
-"Ovaj servis pruža funkcionalnost NFS datotečnog zaključavanja."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Automatski uključuje numlock tipku u konzoli i\n"
-"XFree-u pri podizanju."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Podržava OKI 4w i kompaktibilne win pisače."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA podrška je obično za podržavanje stvari poput ethernet i\n"
-"modema u laptopima. Ona neće biti pokrenuta ukoliko nije tako\n"
-" konfigurirana zato je sigurno pokrenuti ju iako na instaliranom\n"
-" računalu ne treba."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Portmapper uređuje RPC vezama, koje su korištene u protokolima\n"
-"poput NFS-a ili NIS-a. Portmap poslužitelj mora biti pokrenut na računalima\n"
-"koji su poslužitelji za protokole koji se služe RPC mehanizmima."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix je Mail Transport Agent, koji je program koji\n"
-"šalje mail-ove sa jedne mašine na drugu."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Sprema i vraća sustavsku entropiju za veću kvalitetu generiranja\n"
-"slučajnih brojeva."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Dodjeljuje raw uređaje (kao što su hard disk\n"
-"particije), za uporabu u aplikacijama kao što su Oracle"
-
-#: ../../services.pm_.c:71
-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 daemon omogućava automatsku IP ruter tablicu koja se obnavlja\n"
-"putem RIP protokola. Dok se RIP najšire koristi na malim mrežama, više "
-"kompleksniji\n"
-"ruting protokoli su potrebni za kompleksnije mreže."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Rstat protokol omogućava korisnicima na mreži da dohvate\n"
-"mjerljive performanse za svako računalo koje je na mreži."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Rusers protokol omogućava korisnicima na mreži da identificira tko je\n"
-"prijavljen na drugim računalima koja odgovaraju."
-
-#: ../../services.pm_.c:78
-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 protokol omogućava udaljenim korisnicima da dobiju popis svih\n"
-"korisnika prijavljenih na računalo na kojima je pokrenut rwho (slično finger-"
-"u)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Pokreni zvučni sustav na vašem računalu"
-
-#: ../../services.pm_.c:81
-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 je resurs kojega koriste mnogi demoni kako bi logirali poruke\n"
-"u različite sustavske log datoteke. Dobra je ideja uvijek imati pokrenuti "
-"syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Učitava upravljačke programe za vaše usb uređaje."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Pokreće X Pismovni Poslužitelj (ovo je nužno za XFree da se pokrene)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Izaberite koji servisi trebaju biti startani automatski kod boot-a"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Ispisujem"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Sistemski mod"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Postavke udaljenog lpd pisača"
-
-# ../../share/compssUsers
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Baze"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "uređaj"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "pokrećem"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "zaustavljen"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Servisi i daemoni"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Nema dodatnih informacija\n"
-"o ovom servisu, žalim."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Pri pokretanju"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Status:"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Sektor"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Protokol za ostatak svijeta"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Internet pristup"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedija - Grafika"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Razvoj"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Kontrolni Centar"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Mrežni međusklop"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "SMB poslužitelj"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Igre"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Ekspert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Instaliram paket %s"
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ne mogu pročitati vašu particijsku tablicu, previše je uništena za mene :(\n"
-"Pokušati ću sa brisanjem loših particija"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Greška"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Postava nakon instalacije"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Postava Stila Podizanja"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Čestitke!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Instaliraj"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Dodaj korisnika"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Formatiram loopback datoteku %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Loša backup datoteka"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Loša backup datoteka"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Loša backup datoteka"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Odabir paketa"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Odaberite pakete za instalaciju."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Ukloni zapis"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Ukloni Windowse(TM)"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Korisničko ime"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Molimo istestirajte miša."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Molim pokušajte ponovo"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Molim pokušajte ponovo"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "ponovno unesite lozinku"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN veza"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Odaberite vezu pisača"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Molim izaberite raspored tipkovnice."
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Molim kliknite na particiju"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Odaberite pakete za instalaciju."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Loša backup datoteka"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Molimo istestirajte miša."
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Loša backup datoteka"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Mrežni međusklop"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Korisničko ime"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Odaberite pakete za instalaciju."
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Molim izaberite jezik koji želite koristiti."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Otkrivanje hard diskova"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Korisničko ime"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "Kotačić"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "Kotačić"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Postavke modula:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Mrežne postavke"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Odaberite pakete za instalaciju."
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Odaberite pakete za instalaciju."
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Podesi datotečne sustave"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Opcije"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Izaberite serijski port na kojemu se nalazi modem."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Mrežne postavke"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Loša backup datoteka"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Molim izaberite koju vrstu miša koristite."
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Loša backup datoteka"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Molim izaberite koju vrstu miša koristite."
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Ostali"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Instaliraj sustav"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Prilagođeno"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- Prijašnje"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Status:"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Loša backup datoteka"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Prilagođeno"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Slijedeće ->"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Izabir instaliranih paketa"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Molim izaberite jezik koji želite koristiti."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Molim izaberite jezik koji želite koristiti."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Molim izaberite jezik koji želite koristiti."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Loša backup datoteka"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Loša backup datoteka"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Loša backup datoteka"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Otkrivanje uređaja..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Molimo istestirajte miša."
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Odaberite pakete za instalaciju."
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Mrežne postavke"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Mrežne postavke"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "LAN postavke"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "LAN postavke"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Podesi datotečne sustave"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Instalacija %s-a nije uspjela. Prijavljena je slijedeća grešska:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "ne mogu pronaći niti jednu mrežnu karticu"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Gotov"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Pripremam instalaciju"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "ograniči"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Formatiraj particije"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN postavke"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Točka montiranja"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Izaberite particije koje želite formatirati"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Ured"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Prekini"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Pisac"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Instaliraj sustav"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Odaberite datoteku"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Postavke udaljenog pisača"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
-msgid "Initials tests"
-msgstr "Init poruka"
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Nema mrežnog adaptera na vašem sustavu!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Instaliraj"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Nema mrežnog adaptera na vašem sustavu!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Izlaz iz instalacije"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Dijeljenje Internet Veze"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Dijeljenje veze prema internetu je trenutno omogućeno"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Postavljanje dijeljenja veze prema internetu je već napravljeno.\n"
-"Trenutno je omogućeno.\n"
-"\n"
-"Što želite napraviti?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "onemogući"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "odustani"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "ponovno postavi"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Onemogućujem poslužitelje..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Dijeljenje veze prema Internetu je trenutno onemogućeno."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Dijeljenje veze prema Internetu je trenutno onemogućeno"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Postavljanje dijeljenja veze prema Internetu je već napravljeno.\n"
-"Trenutno je onemogućeno.\n"
-"\n"
-"Što želite napraviti?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "omogući"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Omogućujem poslužitelje..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Dijeljenje veze prema internetu je trenutno omogućeno."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Vaše računalo može biti konfigurirano da dijeli vlastitu Internet vezu.\n"
-"Sa tom značajkom, druga računala na vašoj lokalnoj mreži mogu koristiti "
-"Internet vezu ovog računala.\n"
-"\n"
-"Upozorenje: trebati ćete primjenjeni Mrežni Uređaj za postavljanje lokalne "
-"mreže (LAN)."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Međusklop %s (koristi modul %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Međusklop %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Nema mrežnog adaptera na vašem sustavu!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Nije pronađen niti jedan mrežni adapter na vašem sustavu. Molimo pokrenite "
-"hardware-ski konfiguracijski alat."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Mrežni međusklop"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Postoji samo jedan konfigurirani mrežni adapter na vašem sustavu:\n"
-"\n"
-"%s\n"
-"\n"
-"Postaviti ću lokalnu mrežu (LAN) sa tim adapterom."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Molimo odaberite koji mrežni adapter će biti povezan na vašu lokalnu mrežu."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Niste podesili monitor"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Postava Stila Podizanja"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Postavke modema"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "IP CUPS poslužitelja"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Potencijalni LAN adresni konflikt je pronađen u trenutnoj konfiguraciji %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Detektirana je vatrozidna konfiguracija!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Upozorenje! Postojeća vatrozidna konfiguracija je pronađena. Morati ćete "
-"ručno popraviti neke dijelove nakon instalacije."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Podešavam..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Podešavam skriptove, instaliram softver, pokrećem poslužitelje..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problem prilikom instaliranja paketa %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Sve je konfigurirano.\n"
-"Sada možete dijeliti vašu internet vezu sa drugim računalima na vašoj "
-"lokalnoj mreži, koristeći automatsku mrežnu konfiguraciju (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Postavljanje je već urađeno, ali je trenutno onemogućeno."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Postavljanje je već urađeno, ali je trenutno omogućeno."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Dijeljenje veze prema internetu nije bilo konfigurirano."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Postavke dijeljenja internet veze"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Dobro došli u alat za konfiguriranje dijeljenja Internet veze!\n"
-"\n"
-"%s\n"
-"\n"
-"Kliknite na Postavke ukoliko želite pokreniti čarobnjak za postavljanja."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Mrežne postavke (%d adaptera)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Obriši profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil za obrisati:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novi profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Ime računala: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internet pristup"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tip:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Međusklop:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Podešavanje Internet Pristupa..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN postavke"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Upravljački program"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Međusklop"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Podesi lokalnu mrežu..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Čarobnjak..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Primjeni"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Molimo pričekajte... Primjenjujem konfiguraciju"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Povezan"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nije povezan"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Poveži..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Odspoji..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemate niti jedan konfigurirani međusklop.\n"
-"Konfigurirajte ga prvo klikanjem na 'Postavljanje'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN postavke"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Boot protokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Pokrenuto pri podizanju"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktivno"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktivno"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemate niti jednu internet vezu.\n"
-"Napravite jednu klikanjem na 'Podesi'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Postava Internet veze"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Postava Internet veze"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tip veze: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet kartica"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Podešavam sigurnosni nivo"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Kontrolni Centar"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Izaberite alat koje želite koristiti"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Kanadska (Quebec)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Islandska"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "serijski"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "uporaba: keyboarddrake [--exper] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Molim izaberite raspored tipkovnice."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Da li želite da BackSpace vrati Delete u konzoli?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Promjeni Cd-Rom"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Molimo ubacite Instalacijski Cd-Rom u vaš pogon i pritisnite U redu kada ste "
-"završili.\n"
-"Ukoliko ga nemate, pritisnite Odustani kako bi izbjegli živu nadogradnju."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Ne mogu pokrenuti živu nadogradnju !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-#, fuzzy
-msgid "/File/_New"
-msgstr "/Datoteka/_Izlaz"
-
-#: ../../standalone/logdrake_.c:102
-#, fuzzy
-msgid "<control>N"
-msgstr "<control>Q"
-
-#: ../../standalone/logdrake_.c:103
-#, fuzzy
-msgid "/File/_Open"
-msgstr "/Datoteka/_Izlaz"
-
-#: ../../standalone/logdrake_.c:103
-#, fuzzy
-msgid "<control>O"
-msgstr "<control>Q"
-
-#: ../../standalone/logdrake_.c:104
-#, fuzzy
-msgid "/File/_Save"
-msgstr "/Datoteka/_Izlaz"
-
-#: ../../standalone/logdrake_.c:104
-#, fuzzy
-msgid "<control>S"
-msgstr "<control>Q"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:106
-#, fuzzy
-msgid "/File/-"
-msgstr "/_Datoteka"
-
-#: ../../standalone/logdrake_.c:108
-#, fuzzy
-msgid "/_Options"
-msgstr "Opcije"
-
-#: ../../standalone/logdrake_.c:109
-#, fuzzy
-msgid "/Options/Test"
-msgstr "Opcije"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr ""
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Korisničko ime"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "Testne stranice"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:191
-#, fuzzy
-msgid "matching"
-msgstr "Procjenjujem"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:196
-#, fuzzy
-msgid "Choose file"
-msgstr "Izaberite datoteku"
-
-#: ../../standalone/logdrake_.c:201
-#, fuzzy
-msgid "Calendar"
-msgstr "Standardno"
-
-#: ../../standalone/logdrake_.c:211
-#, fuzzy
-msgid "Content of the file"
-msgstr "Spoji se na Internet"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, fuzzy, c-format
-msgid "please wait, parsing file: %s"
-msgstr "Molimo pričekajte, Pripremam instalaciju"
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Postava Interneta"
-
-#: ../../standalone/logdrake_.c:406
-#, fuzzy
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Dobro došli u pomoćni program za konfiguriranje proxy-a.\n"
-"\n"
-"Ovdje ćete moći postaviti vaš http i ftp proxi-e\n"
-"sa ili bez logina i lozinke\n"
-
-# ../../share/compssUsers
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache i Pro-ftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Izlaz"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "uređaj"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "Formatiram"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Postava Interneta"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr ""
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Molim izaberite koju vrstu miša koristite."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "niti jedan serial_usb nije pronađen\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Emuliranje treće tipke?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Odaberite grafičku karticu"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Boot uređaj"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Vatrozidne postave"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Vatrozidne postave"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Vatrozidi\n"
-"\n"
-"Već ste postavili vatrozid.\n"
-"Kliknite na Podesi za promjenu ili brisanje vatrozida"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Vatrozidi\n"
-"\n"
-"Kliknite na Podesi za postavljanje standardnog vatrozida"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Odaberite jezik"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Odaberite razred instalacije"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Otkrivanje hard diskova"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Podesi miš"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Odaberite tipkovnicu"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Sigurnost"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Podesi datotečne sustave"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formatiraj particije"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Izabir instaliranih paketa"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Instaliraj sustav"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Dodaj korisnika"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Podesi mrežu"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Podešavanje servisa"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Instaliraj bootloader"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Napravi boot disketu"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Podesi X"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Instaliraj sustav"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Izlaz iz instalacije"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall podešavanje\n"
-"\n"
-"Ovo podešava osobni vatrozid za ovo Mandrake Linux računalo.\n"
-"Za snažno primjenjena vatrozidna rješenja, molimo pogledajte\n"
-"specijaliziranu MandrakeSecurity Firewall distribuciju."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Sada ćemo vas pitati nekoliko pitanja o servisima koje želite dozvoliti\n"
-"Internetu da se spoji. Molimo razmislite pažljivo o tim\n"
-"pitanjima, jer sigurnost vašeg računala je važna.\n"
-"\n"
-"Molimo, ukoliko ne koristite trenutno jedan od tih servisa, postavite\n"
-"vatrozid. Možete promjeniti ovu konfiguraciju bilo kad zaželite\n"
-"pokretanjem ponovno ove aplikacije!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut web poslužitelj na ovom računalu kojeg treba cijeli\n"
-"Internet vidjeti? Ukoliko trebate web poslužitelj kojemu će biti pristupan\n"
-"samo sa ovog računala, možete sigurno odgovoriti NE ovdje.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut imenski poslužitelj na ovom računalu? Ukoliko niste "
-"postavili jedan\n"
-"da daje IP i informacije o zoni cijelom Internet-u, molimo\n"
-"odgovorite ne.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Da li želite omogućiti dolazeće Secure Shell (ssh) veze? To je\n"
-"je telnet zamjena što možete koristiti za prijavljivanje. Ako sada "
-"koristite\n"
-"telnet, trebali biste definitivno se prebaciti na ssh. telnet nije\n"
-"enkriptiran -- tako da neki napadači mogu ukrasti vaše lozinke ako ga "
-"koristite\n"
-"ssh je enkriptiran i nedozvoljava prisluškivanje (sniffanje)."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Da li želite dopustiti dolazeće telnet veze?\n"
-"Ovo je užasno nesigurno, kao što smo objasnili na prethodnom zaslonu. Mi\n"
-"jako preporučamo odgovaranjem Ne ovdje i korištenjem ssh-a umjesto\n"
-"telnet-a.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Da li imate pokrenut FTP poslužitelj ovdje koji treba biti dostupan\n"
-"Internet-u? Ukoliko da, jako preporučamo da ga koristite samo za\n"
-"anonimni prijenos. Svaka lozinka prenesena FTP-om može biti ukradena od\n"
-"nekih napadača, jer FTP također ne koristi enkripciju za prijenos lozinki.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut mail poslužitelj ovdje? Ako šaljete vaše \n"
-"poruke kroz pine, mutt ili neki drugi tekst-bazirani mail klijent,\n"
-"vjerojatno ga koristite. Ako ne, trebali biste ga odijeliti vatrozidom.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Da li imate pokrenut POP ili IMAP poslužitelj ovdje? Ovo može\n"
-"koristiti za posluživanje ne-web-baziranih mail računa za osobe preko\n"
-"ovog računala.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Čini se da imate pokrenut 2.2 kernel. Ukoliko je vaša IP\n"
-"adresa automatski postavljena u vašem domu ili uredu\n"
-"(dinamički dodjeljenja), moramo to dozvoliti. Da\n"
-"li je to slučaj?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Da li se vaše računalo vremenski sinkronizira sa drugim računalom?\n"
-"Većinom, ovo se koristi kod srednje-velikih Unix/Linux organizacija\n"
-"za sinkronizaciju vremena za zapisivanje/logiranje i slično. Ukoliko\n"
-"niste dio većeg ureda ili niste čuli za ovo, vjerojatno\n"
-"ne."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Podešavanje završeno. Možemo li zapisati ove promjene na disk?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Ne mogu otvoriti %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ne mogu otvoriti %s za pisanje: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Vatrozidne postave"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Molimo pričekajte, Pripremam instalaciju"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Mrežno računalo (klijent)"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS poslužitelj, SMB poslužitelj, Proxy poslužitelj, SSH poslužitelj"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Ured"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome radna stanica"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Alati za vaš Palm Pilot ili vaš Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Radna stanica"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Vatrozid/Ruter"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Ime Domene i Mrežni Informacijki Poslužitelj (NIS)"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Uredski programi: tekst procesori (kword, abiword), tablični kalkulatori "
-"(kspread, gnumeric), pdf preglednici, itd"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Audio-namjenjeni alati: mp3 ili midi svirači, mikseri, itd"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Knjige i Howto-i o Linux-u i slobodnom software-u"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE radna stanica"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, itd"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedija - Video"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Skup alata za mail, news, web, datotečni prijenos, i razgovor"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Baze"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL ili MySQL poslužitelj baza"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Alati za lako podešavanje vašeg računala"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedija - Zvuk"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Pomoćni programi"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentacija"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Konzolni Alati"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix mail poslužitelj, Inn news poslužitelj"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internet stanica"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimedijska stanica"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "LAN postavke"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Više grafičkih radnih okružja (Gnome, IceWM)"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"K Radno Okružje, osnovno grafičko okružje sa kolekcijom pripadajućih alata"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Grafičko Okružje"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache i Pro-ftpd"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Alati za pravljenje i prženje CD-a"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Uredska radna stanica"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Poslužitelj"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, itd"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Grafički programi poput Gimp-a"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C i C++ razvojne biblioteke, programi i uključujuće datoteke"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Mrežni računalni poslužitelj"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Mail/Groupware/News"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Igračka radna stanica"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Video playeri i uređivači"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedija - Grafika"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Zabavni programi: arkade, ploče, strategije, itd"
-
-# ../../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 ""
-"Pribor alata za čitanje i slanje mail-a i news-a (pine, mutt, tin..) i za "
-"pregled Web-a"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhiviranje, emulatori, praćenje"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Osobne financije"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Grafička okružja sa korisnički prijateljskim skupom aplikacija i alatima za "
-"radno okružje"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Klijenti za razne protokole uključujući ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Internet gateway"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Zvučni i video svirački/uređivački programi"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Druga grafička radna okružja"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Uređivači, ljuske, datotečni alati, terminali"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programi za uređivanje vaših financija, poput gnucash-a"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Osobni informacijski menadžment"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedija - CD prženje"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Znanstvena radna stanica"
diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po
deleted file mode 100644
index fd44cc152..000000000
--- a/perl-install/share/po/hu.po
+++ /dev/null
@@ -1,12496 +0,0 @@
-# Translation file of Mandrake graphic install
-# Copyright (C) 2000 Mandrakesoft
-# KOVACS Emese Alexandra <emese@itp.hu>, 2000, 2001
-# Kultsar Kadosa Atilla <kadi@kadi.emg.hu>, 2000
-# Takacs Sandor <taki@dfmk.hu>, 2000
-# Timar Andras <atimar@itp.hu>, 2000
-# Sari Gabor <saga@tux.hu>, 2000
-# Tamas Szanto <tszanto@mol.hu>, 2001
-# Arpad Biro <biro_arpad@yahoo.com>, 2002
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-13 01:27GMT+1\n"
-"Last-Translator: Arpad Biro <biro_arpad@yahoo.com>\n"
-"Language-Team: Hungarian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-2\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "A képernyők egymástól független beállítása"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "A Xinerama kiterjesztés használata"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Csak a(z) \"%s\" (%s) kártya beállítása"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "A többképernyős mód beállítása"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"A grafikus kártya lehetővé teszi több képernyő használatát.\n"
-"Mit szeretne tenni?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafikus kártya"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Válasszon egy grafikus kártyát"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Válasszon egy X-kiszolgálót"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-kiszolgáló"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Válasszon egy X-meghajtót"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X-meghajtó"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Melyik XFree-t szeretné használni?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"A kártya támogat hardveres 3D-s gyorsítást, de csak az XFree %s verzióban.\n"
-"Az XFree %s is használható; elképzelhető, hogy abban jobb a 2D-s támogatás."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "A kártya támogat hardveres 3D-s gyorsítást az XFree %s verzióval."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s hardveres 3D-s gyorsítással"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"A kártya támogat hardveres 3D-s gyorsítást az XFree %s verzióban,\n"
-"DE EZ KÍSÉRLETI JELLEGŰ, HASZNÁLATA AKÁR A GÉP LEFAGYÁSÁHOZ IS VEZETHET!"
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s KÍSÉRLETI JELLEGŰ hardveres 3D-s gyorsítással"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"A kártya támogat hardveres 3D-s gyorsítást, de csak az XFree %s verzióban.\n"
-"EZ KÍSÉRLETI JELLEGŰ; HASZNÁLATA AKÁR A GÉP LEFAGYÁSÁHOZ IS VEZETHET.\n"
-"Az XFree %s verzió is használható; elképzelhető, hogy ebben jobb a 2D-s\n"
-"támogatás."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (telepítési meghajtóprogram)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree-beállítások"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Válassza ki a grafikus kártyán található memória mennyiségét"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Az X beállításai"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "A monitor kiválasztása"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"A két legfontosabb paraméter a függőleges frissítés frekvenciája (a teljes\n"
-"képernyő frissítési gyorsasága) és a vízszintes frissítés frekvenciája (a\n"
-"vízszintes sorok megjelenítésének gyorsasága).\n"
-"\n"
-"NAGYON FONTOS, hogy egyik se lépje túl a monitorhoz engedélyezett\n"
-"felső határértéket, mert ilyenkor esetleg a monitor megsérülhet.\n"
-"Ha nem ismeri a monitor jellemzőit, válasszon egy biztonságosan\n"
-"alacsony értéket!"
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Vízszintes frissítés"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Függőleges frissítés"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "A monitor nincs beállítva"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "A grafikus kártya még nincs beállítva"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "A felbontások még nincsenek beállítva"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Ki szeretné próbálni a beállításokat?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Vigyázat! A grafikus kártya kipróbálása esetleg a gép lefagyásához is "
-"vezethet!"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "A beállítások kipróbálása"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"változtasson meg néhány paramétert"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Hiba történt:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Kilépés %d másodperc múlva"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Megfelelő ez a beállítás?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Hiba történt, változtasson meg néhány paramétert"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Felbontás"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Válassza ki a felbontást és a színmélységet"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Grafikus kártya: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Egyéb"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "OK"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Szakértői mód"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mindent mutasson"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Felbontások"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Billentyűzetkiosztás: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Az egér típusa: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Az egeret kezelő eszköz: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "A vízsz. frissítési frekvencia: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "A függ. frissítési frekvencia: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "A grafikus kártya: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "A grafikus kártya azonosítója: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "A kártya memóriája: %s KB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Színmélység: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Felbontás: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86-meghajtó: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Az X beállításának előkészítése"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Mit szeretne tenni?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "A monitor módosítása"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "A grafikus kártya módosítása"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Az X beállításainak módosítása"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "A felbontás módosítása"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Az adatok megjelenítése"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Még egy próba"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Kilépés"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Meg szeretné tartani a módosításokat?\n"
-"A jelenlegi beállítás:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "Grafikus módú bejelentkezés"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Beállítható, hogy rendszerindításkor az X automatikusan elinduljon.\n"
-"Szeretne grafikus módú bejelentkezést?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr ""
-"A módosítások csak a(z) %s programba való következő bejelentkezéskor lépnek "
-"érvénybe"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-"Jelentkezzen ki, majd nyomja meg a Ctrl+Alt+BackSpace billentyűkombinációt"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 szín (8-bites)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ezer szín (15-bites)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ezer szín (16-bites)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millió szín (24-bites)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milliárd szín (32-bites)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB vagy több"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480, 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600, 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-kompatibilis, 1024x768, 87 Hz, váltottsoros (nincs 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768, 87 Hz, váltottsoros, 800x600 56 Hz-en"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600, 60 Hz, 640x480 72 Hz-en"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Nem váltottsoros SVGA, 1024x768, 60 Hz, 800x600 72 Hz-en"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Magas frekvenciájú SVGA, 1024x768, 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multisync monitor, amely képes 1280x1024-re 60 Hz-en"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multisync monitor, amely képes 1280x1024-re 74 Hz-en"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multisync monitor, amely képes 1280x1024-re 76 Hz-en"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Olyan monitor, amely képes 1600x1200-ra 70 Hz-en"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Olyan monitor, amely képes 1600x1200-ra 76 Hz-en"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "A rendszerindítási partíció első szektora"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "A lemezmeghajtó legelső szektora (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "A SILO telepítése"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Hová kerüljön a rendszerindító program (bootloader)?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "A LILO/GRUB telepítése"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO, szöveges menüvel"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO, grafikus menüvel"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "GRUB"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Indítás DOS-ból vagy Windows-ból (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Rendszerindítási beállítások"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "A használni kívánt rendszerbetöltő"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "A rendszerindító program telepítése"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Rendszerindítási eszköz"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (nem működik régi BIOS-okkal)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Kompakt"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "kompakt"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Képernyőmód"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Várakozási idő az alapértelmezett rendszer betöltése előtt"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Jelszó"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Jelszó (még egyszer)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "A parancssorban átadható paraméterek korlátozása"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "korlátozás"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "A /tmp törlése minden újraindulásnál"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "A RAM mérete, ha szükséges (%d MB-ot detektáltam)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Több profil engedélyezése"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "A fizikai memória mérete MB-ban"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"\"A parancssorban átadható paraméterek korlátozása\" beállításnak jelszó "
-"nélkül nincs értelme"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Próbálja meg újra"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "A jelszavak nem egyeznek"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Indítási üzenet"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Késleltetés Open Firmware-nél"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Várakozási idő rendszerindításkor"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "CD-ről történhet rendszerindítás?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "OF-ről történhet rendszerindítás?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Az alapértelmezett op. rendszer?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"Azt a lehetőséget választotta, hogy a rendszerbetöltőt egy partícióra "
-"telepíti.\n"
-"Ez arra utal, hogy már van rendszerbetöltő (például: System Commander) azon "
-"a\n"
-"merevlemezen, amelyről a rendszer indítása történik.\n"
-"\n"
-"Melyik meghajtóról végzi a rendszer indítását?"
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Itt láthatók a jelenlegi bejegyzések.\n"
-"Új bejegyzések vehetők fel, illetve módosíthatók a meglevők."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Hozzáadás"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Kész"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Módosítás"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Milyen bejegyzést szeretne felvenni?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Egyéb op. rendszer (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Egyéb op. rendszer (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Egyéb op. rendszer (Windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Indítófájl"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Gyökér"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Hozzáfűzés"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Kezdeti RAM-diszk"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Írható-olvasható"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tábla"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Nem biztonságos"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Címke"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Alapértelmezés"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "A RAM-diszk mérete"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "NoVideo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Bejegyzés eltávolítása"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "A címke nem lehet üres"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Meg kell adni egy kernelfájlt"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Meg kell adni egy gyökérpartíciót"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Már van ilyen nevű címke"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s %s csatolót találtam"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Van még másik is?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Van valamilyen %s csatoló?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Nem"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Igen"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "A hardverjellemzők megjelenítése"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Meghajtóprogram telepítése ehhez a(z) %s-kártyához: %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(%s modul)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Melyik %s-meghajtóprogramot próbáljam meg?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Bizonyos esetekben a(z) %s meghajtóprogramnak további paraméterekre van\n"
-"szüksége a helyes működéshez. Szeretne további paramétereket megadni a\n"
-"meghajtóprogramnak, vagy hagyja, hogy az lekérdezze a szükséges\n"
-"információkat? Bizonyos körülmények esetén az automatikus detektálás\n"
-"a gép lefagyásához vezethet, de komolyabb kárt nem okozhat."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Automatikus detektálás"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Paraméterek megadása"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Most megadhatók a(z) \"%s\" modul paraméterei.\n"
-"A címeket \"0x\" előtaggal kell megadni, például: \"0x123\"."
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Itt lehet megadni a(z) %s modul paramétereit\n"
-"a következő formátumban: \"név1=érték1 név2=érték2 ...\".\n"
-"Például: \"io=0x300 irq=7\""
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "A modul paraméterei:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"A(z) %s modul betöltése nem sikerült.\n"
-"Megpróbálja a betöltést más paraméterekkel?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "hozzáférés az X-es programokhoz"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "hozzáférés az RPM-eszközökhöz"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "\"su\" engedélyezése"
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "hozzáférés az adminisztrációs fájlokhoz"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(már fel van véve: %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Ez a jelszó túl egyszerű"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Adjon meg egy felhasználónevet"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"A felhasználónév csak a következőket tartalmazhatja: kisbetűk, számok, \"-\" "
-"és \"_\""
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Már létezik ilyen felhasználónév"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Felhasználó hozzáadása"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Adjon meg egy felhasználónevet\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Név elfogadása"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Valódi név"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Felhasználónév"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Parancsértelmező"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikon"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Automatikus bejelentkezés"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Beállítható, hogy indításkor egy felhasználó automatikusan bejelentkezzen.\n"
-"Szeretné használni ezt a lehetőséget?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Adja meg az alapértelmezett felhasználónevet:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Válassza ki a használni kívánt ablakkezelőt:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Válasszon nyelvet."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Választhat más nyelveket is, ezek a telepítés után lesznek elérhetők."
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Mind"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Az összes felhasználó engedélyezése"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Egyéni"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Nincs megosztás"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "A(z) %s csomagot telepíteni kell. Szeretné telepíteni?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-"Exportálás NFS-sel vagy Sambával végezhető. Melyiket kívánja használni?"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Hiányzik a(z) \"%s\" nevű kötelező csomag"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-"Szeretné engedélyezni a felhasználók számára azt, hogy a saját "
-"könyvtárukban\n"
-"levő könyvtárakat exportáljanak?\n"
-"Ha ez engedélyezve van, akkor a felhasználók a Konquerorban és a "
-"Nautilusban\n"
-"a \"Megosztás\" funkcióval végezhetnek exportálást.\n"
-"\n"
-"Az \"Egyéni\" opció használatával felhasználónkénti beállítás lehetséges.\n"
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Mégsem"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "UserDrake indítása"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"A felhasználónkénti megosztás a \"fileshare\" csoportot használja.\n"
-"A UserDrake programmal lehet felhasználót felvenni ebbe a csoportba."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Üdvözlet a cracker-eknek"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Gyenge"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Szabványos"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Magas"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "Magasabb"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoiás"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Ezt a szintet csak körültekintéssel használja.\n"
-"Egyszerűbbé teszi a rendszer használatát, de így az sebezhetőbb is lesz:\n"
-"ne válassza ezt a szintet, ha a gép hálózatba van kötve, vagy az "
-"internethez\n"
-"csatlakozik. A hozzáférés nincs jelszóval védve."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"A jelszavak be vannak kapcsolva, de hálózatra kapcsolódó gép esetén\n"
-"ez a konfiguráció még mindig nem ajánlott."
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Ez a szabványos biztonsági szint, amely az internetre (kliensként) "
-"csatlakozó gépek esetén javasolt."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Már vannak bizonyos megszorítások, és több automatikus ellenőrzés fut "
-"éjszakánként."
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Ezzel a biztonsági szinttel már használhatja a gépét kiszolgálóként.\n"
-"Ez a biztonsági szint elég magas ahhoz, hogy a rendszer sok, hálózaton\n"
-"keresztül csatlakozó klienst szolgáljon ki. Ha a gép az interneten csak "
-"kliensként van jelen, akkor érdemesebb egy alacsonyabb szintet választani."
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Az előző szinten alapul, de itt a rendszer teljesen zárt.\n"
-"Ez a legbiztonságosabb szint."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Válassza ki a biztonsági szintet"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Biztonsági szint"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "A libsafe használata kiszolgálókhoz"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Könyvtár, amely védelmet nyújt a puffertúlcsordulásos és a formátumsztringes "
-"támadások ellen."
-
-# 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)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Udvozoljuk a(z) %s rendszerinditoban!\n"
-"\n"
-"Valasszon egy operacios rendszert a listabol, vagy varjon\n"
-"%d masodpercig, amig az alapertelmezett elindul.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Udvozoljuk a GRUB rendszerindito programban!"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "A(z) %c es a(z) %c billentyukkel lehet a bejegyzesek kozott lepegetni."
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr ""
-"Nyomja meg az Enter billentyut a kijelolt rendszer inditasahoz, az 'e'-t "
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "az inditasi parancsok modositasahoz, vagy a 'c'-t a parancssorhoz."
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "A kijelolt operacios rendszer %d masodperc mulva elindul."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "nincs elég hely a /boot partíción"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Asztal"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Start menü"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "A rendszerindító program nem tehető %s partícióra\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "még nem használható a segítség\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "A rendszerindítás beállításai"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Fájl"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Fájl/Ki_lépés"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Új stílusú kategorizáló monitor"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Új stílusú monitor"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Hagyományos monitor"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Hagyományos GTK+-monitor"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Az Aurora indítása rendszerindításkor"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "LILO/GRUB mód"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot mód"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Jelenleg a(z) %s rendszerindító programot használja.\n"
-"Kattintson a Beállítás gombra a beállításvarázsló elindításához."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Beállítás"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Rendszer-mód"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Az X induljon el rendszerindításkor"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Ne legyen automatikus bejelentkezés"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Legyen automatikus bejelentkezés (felhasználónév, grafikus környezet)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "Az /etc/inittab fájlt nem sikerült olvasásra megnyitni: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d perc"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 perc"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d másodperc"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Partícionálás előtt nem készíthetők képernyőfelvételek"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "A képernyőfelvételek a telepítés után itt lesznek elérhetők: %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Franciaország"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "Belgium"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Cseh Köztársaság"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Németország"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Görögország"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Norvégia"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Svédország"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Hollandia"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Olaszország"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Ausztria"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Amerikai Egyesült Államok"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Először készítsen biztonsági mentést az adatokról"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Olvassa el figyelmesen!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Ha az aboot-ot fogja használni, először ellenőrizze, hogy maradt-e elég\n"
-"hely (legalább 2048 szektor) a lemez elején"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Hiba"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Varázsló"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Válasszon"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Egy nagy FAT partíció van\n"
-"(ez gyakran egy Microsoft DOS/Windows partíció).\n"
-"Célszerű először átméretezni a partíciót\n"
-"(kattintson a partícióra, majd az \"Átméretezés\" gombra)."
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Kattintson egy partícióra"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Részletek"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Naplózott fájlrendszer"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Lapozóterület (swap)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Üres"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Egyéb"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Fájlrendszer-típusok:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Létrehozás"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Típus"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Használja inkább ezt: \"%s\""
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Törlés"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Használja először a \"Leválasztás\"-t"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"A(z) %s partíció típusának módosítása után a partíción levő adatok elvesznek"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Válasszon egy partíciót"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Válasszon egy másik partíciót"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Kilépés"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Átváltás szakértői módba"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Átváltás normál módba"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Visszavonás"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Folytassam a műveletet?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Kilépés mentés nélkül"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Ki akar lépni a programból a partíciós tábla mentése nélkül?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "El szeretné menteni az /etc/fstab fájlban végrehajtott módosításokat?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Automatikus helyfoglalás"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Teljes törlés"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Merevlemez-jellemzők"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Mindegyik elsődleges partíció foglalt"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Nem hozható létre több partíció"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"További partíciók létrehozásához törölni kell egyet (hogy egy kiterjesztett "
-"partíciót létre lehessen hozni)"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "A partíciós tábla mentése"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "A partíciós tábla visszatöltése"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "A partíciós tábla helyreállítása"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "A partíciós tábla újratöltése"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Cserélhető lemez automatikus csatlakoztatása"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Fájlválasztás"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"A partíciós tábla két példányának mérete eltér!\n"
-"Folytassam a műveletet?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Figyelmeztetés"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Helyezzen be egy floppylemezt a meghajtóba!\n"
-"A lemezen található adatok elvesznek"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Megpróbálom helyrehozni a partíciós táblát"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Részletes információ"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Csatlakoztatási pont"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Beállítások"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Átméretezés"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Áthelyezés"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formázás"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Csatlakoztatás"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Hozzáadás RAID-hez"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Hozzáadás LVM-hez"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Leválasztás"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Eltávolítás RAID-ből"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Eltávolítás LVM-ből"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "RAID módosítása"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Loopback-hez használva"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Új partíció létrehozása"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Kezdőszektor: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Méret (MB): "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "A fájlrendszer típusa: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Csatlakoztatási pont: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Beállítások: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "El szeretné távolítani a loopback fájlt?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "A partíciótípus megváltoztatása"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Melyik fájlrendszert szeretné?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Konvertálás Ext2-ről Ext3-ra"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Hová szeretné csatlakoztatni a(z) %s loopback fájlt?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Hová szeretné csatlakoztatni a(z) %s eszközt?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Nem lehet megszüntetni a csatlakoztatási pontot, mert ez egy loopback\n"
-"partíció. Először távolítsa el a loopback-et."
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "A FAT fájlrendszer jellemzőinek kiszámítása"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Átméretezés"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Ezt a partíciót nem lehet átméretezni"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Készítsen biztonsági mentést erről a partícióról"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"A(z) %s partíció átméretezésekor a partíción található adatok elvesznek"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Adja meg az új méretet"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Az új méret (MB-ban): "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Melyik lemezre szeretné áthelyezni?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Szektor"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Melyik szektorra szeretné áthelyezni?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Áthelyezés"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Partíció áthelyezése..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Válassza ki azt a RAID-et, amelyikhez hozzá szeretné adni a lemezt"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "új"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Válassza ki azt az LVM-et, amelyhez hozzá szeretné adni a lemezt"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "Az LVM neve?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Ez a partíció nem használható loopback-hez"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "A loopback fájl neve: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Adjon meg egy fájlnevet"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr ""
-"Ez a fájl már egy másik loopback-hez van rendelve, válasszon egy másikat"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "A fájl már létezik, használjam?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Csatlakoztatási (mount) opciók"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Vegyes"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "eszköz"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "szint"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "szeletméret"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Vigyázat! Ez a művelet adatvesztést okozhat."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Milyen típusú partícionálást szeretne?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Nem hozhatom létre a /boot-ot ennyire távol a merevlemez elejétől (cilinder\n"
-"> 1024). Ha a LILO-t használja, akkor az nem fog működni, ha pedig nem\n"
-"használja a LILO-t, akkor nincs szükség a /boot-ra."
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Az a partíció, amelyet gyökérpartíciónak (/) jelölt ki, fizikailag az 1024.\n"
-"cilinder után található, és a rendszerben nincs /boot partíció.\n"
-"Ha a LILO-t szeretné használni, hozzon létre egy /boot partíciót."
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Szoftveres RAID partíciót választott ki gyökérpartíciónak (/).\n"
-"Egyik rendszerindító program sem tudja ezt kezelni /boot partíció nélkül,\n"
-"ezért mindenképpen hozzon létre egy /boot partíciót."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "A(z) \"%s\" meghajtó partíciótáblájának mentése következik!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "A változások csak a rendszer újraindításakor lépnek életbe"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "A(z) %s partíció formázásakor a partíción található adatok elvesznek!"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formázás"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "A(z) %s loopback fájl formázása"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "A(z) %s partíció formázása"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Fájlok elrejtése"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Fájlok áthelyezése az új partícióra"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"A(z) %s könyvtár már tartalmaz adatot\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Fájlok áthelyezése az új partícióra"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "%s másolása"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "%s eltávolítása"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "a(z) %s partíció jelenleg \"%s\"-ként ismert"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Eszköz: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS-meghajtó betűjele: %s (ez csak egy tipp)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Típus: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Név: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Kezdőszektor: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Méret: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s szektor"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "A(z) %d. cilindertől a(z) %d.-ig\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formázva\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Nincs formázva\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Csatlakoztatva\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Loopback fájl(ok):\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Az alapértelmezett indítási partíció\n"
-" (a DOS-nak, nem a LILO-nak)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "%s. szint\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "A szelet mérete: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID lemezek: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "A loopback fájl neve: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Ez a partíció valószínűleg\n"
-"meghajtóknak van fenntartva,\n"
-"ne módosítson rajta.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Ez egy speciális rendszerindítási\n"
-"partíció (hogy többféle operációs\n"
-"rendszert lehessen indítani).\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Méret: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometria: %s cilinder, %s fej, %s szektor\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Információ: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-lemezek: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "A partíciós tábla típusa: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "busz: %d, id: %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Beállítások: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Fájlrendszer-titkosítási kulcs"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Válasszon fájlrendszer-titkosítási kulcsot"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Ez a titkosítási kulcs túl egyszerű (legalább %d karakter hosszúnak kell "
-"lennie)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "A titkosítási kulcsok nem egyeznek"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Titkosítási kulcs"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Titkosítási kulcs (még egyszer)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "A típus megváltoztatása"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Kattintson egy médiára"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Kiszolgálók keresése"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formázás sikertelen a(z) %s eszközön"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Nem tudom, hogyan kell megformázni a(z) %s eszközt %s típusúra"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "a(z) %s partíció ide történő csatolása sikertelen: %s"
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "Az fsck kilépett \"%d\" hibakóddal vagy \"%d\" szignállal"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "hiba történt a(z) %s leválasztásakor: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "egyszerű"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "/usr-rel"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "kiszolgáló"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Nem lehet JFS-t használni 16 MB-nál kisebb partíción"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Nem lehet ReiserFS-t használni 32 MB-nál kisebb partíción"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "A csatlakoztatási pontoknak /-rel kell kezdődni"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Már van egy partíció amelynek %s a csatlakoztatási pontja\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Nem használható LVM logikai kötet a(z) %s csatlakoztatási ponthoz"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Ennek a könyvtárnak a gyökér-fájlrendszeren belül kell maradnia"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Valódi fájlrendszert (Ext2, ReiserFS) kell használni ennél a csatlakoztatási "
-"pontnál\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Titkosított fájlrendszer nem használható ehhez a csatolási ponthoz: %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Nincs elég szabad terület az automatikus helyfoglaláshoz"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Nincs mit tenni"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Hiba történt %s írásra való megnyitásánál: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Hiba történt - nincs olyan meghajtó, amelyen új fájlrendszert lehetne "
-"létrehozni. Ellenőrizze a gépben található eszközöket."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Egyetlen partíció sincs!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"A Linux többfelhasználós rendszer; ez azt jelenti, hogy minden\n"
-"felhasználónak lehetnek például külön beállításai és saját fájljai.\n"
-"További információkat a Felhasználói Kézikönyvből lehet megtudni.\n"
-"A \"root\" nevű felhasználótól (ez az azonosító a rendszergazdát jelöli)\n"
-"eltérően az itt felvett felhasználóknak csak a saját fájljaikat és a saját\n"
-"beállításaikat lesz joguk módosítani. Javasolt legalább egy \"normál\"\n"
-"felhasználót felvenni az Ön saját használatára. Ezen normál felhasználói\n"
-"azonosítóval érdemes elvégezni az olyan tevékenységeket, amelyek nem\n"
-"igényelnek rendszergazdai jogosultságot. Bár nagyon praktikus minden\n"
-"alkalommal rendszergazdaként jelentkezni be, ez nagyon veszélyes is.\n"
-"Rendszergazdaként használva a legapróbb hiba hatására is meghibásodhat\n"
-"a rendszer. Ha normál felhasználóként követ el hibát, akkor esetleg\n"
-"elveszít bizonyos adatokat, de a rendszert nem teheti tönkre.\n"
-"\n"
-"Először is meg kell adnia a valódi nevét. Ez természetesen nem kötelező;\n"
-"bármit be lehet írni névként. A telepítő a megadott név első szavát\n"
-"ajánlja fel a \"Felhasználónév\" mezőben. Ez utóbbi az a név, amellyel\n"
-"az adott felhasználó be tud majd jelentkezni a rendszerbe. A felkínált név\n"
-"módosítható. A felhasználónév megadása után meg kell adni az ahhoz tartozó\n"
-"kívánt jelszót. Egy normál felhasználó jelszava biztonsági szempontból nem\n"
-"annyira kritikus, mint a rendszergazdáé; ez viszont nem ok arra, hogy\n"
-"felületesen legyen kezelve - végül is az Ön fájljairól van szó.\n"
-"\n"
-"A \"Név elfogadása\" gombbal vehető fel újabb felhasználó. Bármennyi\n"
-"felhasználó létrehozható. Vegyen fel egy-egy felhasználónevet mindazok\n"
-"számára, akik a gépet használni fogják. Amikor végzett a felhasználónevek\n"
-"létrehozásával, kattintson a \"Kész\" gombra.\n"
-"\n"
-"Ha a \"Speciális\" gombra kattint, módosíthatja az adott felhasználó\n"
-"alapértelmezett parancsértelmezőjét (alapértelmezés szerint ez a \"bash\")."
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Fent láthatók a lemezen talált, már létező linuxos partíciók.\n"
-"A varázsló javaslatai általában elfogadhatók, általános célú telepítésnél\n"
-"általában megfelelnek. Ha megváltoztatja a beállításokat, mindenképpen\n"
-"jelölje ki a gyökérpartíciót (\"/\"). Ne válassza túl kicsire, mert akkor\n"
-"nem lesz elég hely a szoftverek telepítéséhez. Ha külön partícióra\n"
-"szeretné helyezni a felhasználói adatokat, jelöljön ki egy külön \"/home\"\n"
-"partíciót (ez csak akkor lehetséges, ha legalább két Linux partíció\n"
-"létezik).\n"
-"\n"
-"A partíciók listájának mezői: \"név\", \"kapacitás\".\n"
-"\n"
-"A \"név\" képzési szabálya: \"a merevlemez típusa\", \"a lemez\n"
-"azonosítója\", \"a partíció azonosítója\" (például \"hda1\").\n"
-"\n"
-"\"A merevlemez típusa\" \"hd\", ha a lemez IDE-csatolós, és \"sd\",\n"
-"ha SCSI-csatolós.\n"
-"\n"
-"\"A lemez azonosítója\" egy betű a \"hd\" illetve az \"sd\" után.\n"
-"IDE-csatolós merevlemezek esetén:\n"
-"\n"
-" - \"a\" jelentése: \"első (master) meghajtó az első IDE-vezérlőn\"\n"
-"\n"
-" - \"b\" jelentése: \"második (slave) meghajtó az első IDE-vezérlőn\"\n"
-"\n"
-" - \"c\" jelentése: \"első meghajtó a második IDE-vezérlőn\"\n"
-"\n"
-" - \"d\" jelentése: \"második meghajtó a második IDE-vezérlőn\"\n"
-"\n"
-"SCSI-csatolós lemezeknél az \"a\" jelentése: \"a legalacsonyabb\n"
-"SCSI-azonosító\", \"b\" jelentése: \"a második legalacsonyabb\n"
-"SCSI-azonosító\", ..."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"A Mandrake Linux telepítőanyag több CD-n helyezkedik el. Ha egy "
-"kiválasztott\n"
-"csomag egy másik CD-n található, akkor a DrakX (a telepítő) kiadja az\n"
-"aktuális CD-t, és megkéri Önt, hogy helyezzen be egy másikat."
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"Most meg kell adnia, mely programokat kívánja telepíteni a rendszerére.\n"
-"Több ezer program létezik Mandrake Linuxhoz; természetesen Önnek nem\n"
-"szükséges mindet ismernie.\n"
-"\n"
-"Ha szabványos telepítést végez CD-ről, akkor először meg kell adnia, mely\n"
-"CD-kkel rendelkezik (csak a szakértői módra igaz). Nézze át a CD-k címeit,\n"
-"és jelölje be az elérhető CD-ket a listában. Ha készen áll a folytatásra,\n"
-"kattintson az \"OK\" gombra.\n"
-"\n"
-"A csomagok a gép lehetséges felhasználási területei szerint csoportokba\n"
-"vannak rendezve. Maguk a csoportok négy szakaszba vannak sorolva:\n"
-"\n"
-" - \"Munkaállomás\": ha munkaállomásként tervezi használni a gépet, akkor\n"
-"válasszon az ennek megfelelő csoportok közül.\n"
-"\n"
-" - \"Fejlesztés\": ha a gép programozásra is lesz használva, akkor\n"
-"válassza ki a kívánt csoportokat.\n"
-"\n"
-" - \"Kiszolgáló\": ha a gép kiszolgálóként lesz használva, itt lehetőség\n"
-"van annak kiválasztására, hogy a gyakrabban használt szolgáltatások közül\n"
-"melyeket kívánja telepíteni a gépre.\n"
-"\n"
-" - \"Grafikus környezet\": itt választható ki a kívánt grafikus környezet.\n"
-"Ha grafikus munkaállomást szeretne, akkor legalább egyet ki kell\n"
-"választani.\n"
-"\n"
-"Ha az egérkurzort egy csoport neve fölé viszi, akkor megjelenik egy rövid\n"
-"magyarázat az adott csoportról. Ha telepítéskor az összes csoport\n"
-"kijelölését megszünteti (frissítésre ez nem vonatkozik), akkor a telepítő\n"
-"választási lehetőséget fog felkínálni a minimális telepítésre vonatkozóan.\n"
-"A következő lehetőségek választhatók:\n"
-"\n"
-" - \"X-szel együtt\": grafikus rendszer a lehető legkevesebb csomag\n"
-"telepítésével.\n"
-"\n"
-" - \"Alapvető dokumentációval\": az alaprendszer az alapvető programokkal\n"
-"és azok dokumentációjával. Megfelel például kiszolgáló telepítéséhez.\n"
-"\n"
-" - \"Valóban minimális telepítés\": a lehető legkisebb telepítés;\n"
-"parancssorból használható Linux rendszer. Körülbelül 65 megabájt méretű\n"
-"telepítés.\n"
-"\n"
-"Bejelölheti a \"Csomagok egyedi kiválasztása\" opciót; ez akkor hasznos,\n"
-"ha Ön ismeri a felkínált csomagokat, illetve ha teljes mértékben\n"
-"ellenőrizni kívánja, mi lesz a gépre feltelepítve.\n"
-"\n"
-"Ha a telepítést \"Frissítés\" üzemmódban indította el, akkor megszüntetheti\n"
-"akár az összes csoport kijelölését is, hogy elkerülje új programok\n"
-"telepítését. Ez különösen akkor lehet hasznos, ha egy meglevő rendszert\n"
-"kíván helyreállítani vagy frissíteni."
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Végül, attól függően, hogy kívánt-e egyedi csomagkiválasztást használni,\n"
-"megjelenik egy fa, amely az összes telepíthető programcsomagot tartalmazza\n"
-"csoportokba és alcsoportokba kategorizálva. A fa böngészése közben\n"
-"nem csak csomagokat jelölhet ki, hanem egész csoportokat illetve\n"
-"alcsoportokat is.\n"
-"\n"
-"Amikor kiválaszt egy csomagot a fában, a jobb oldalon megjelenik egy leírás\n"
-"az adott csomagról. Ha végzett a kijelölésekkel, kattintson a \"Telepítés\"\n"
-"gombra; ennek hatására megkezdődik a programok telepítése. A gép\n"
-"sebességétől illetve a telepítendő csomagok számától függően a folyamat\n"
-"jelentős időt vehet igénybe. A telepítő megjelenít egy becslést arra\n"
-"vonatkozóan, hogy mennyi idő van hátra a telepítés befejeztéig.\n"
-"\n"
-"Ha kiszolgálócsomagok is ki lettek választva - akár közvetlenül, akár\n"
-"bizonyos csoportok tagjaként -, a telepítő megerősítést kér Öntől arra\n"
-"vonatkozóan, hogy valóban telepíteni kívánja-e azon kiszolgálószoftvereket.\n"
-"A Mandrake Linux rendszerben alapértelmezésben az összes feltelepített\n"
-"kiszolgálóprogram elindításra kerül a rendszer indulásakor. Még ha azok\n"
-"biztonságosak is illetve nem rendelkeznek ismert problémákkal, akkor is\n"
-"előfordulhat, hogy utóbb biztonsági problémák merülnek fel velük\n"
-"kapcsolatban. Ha nem tudja, hogy egy bizonyos - telepítésre kijelölt -\n"
-"szolgáltatásnak mi a feladata illetve miért kerül telepítésre, akkor\n"
-"kattintson a \"Nem\" gombra. Ha az \"Igen\" gombra kattint, akkor a\n"
-"felsorolt szolgáltatások telepítésre kerülnek, és alapértelmezés szerint\n"
-"automatikusan elindításra kerülnek majd.\n"
-"\n"
-"\"Az automatikusan kijelölt csomagok mutatása\" opció bejelölésének\n"
-"hatására a telepítő jelezni fogja, ha automatikusan jelöl ki csomagokat\n"
-"telepítésre. Ilyesmi azért fordul elő, mert bizonyos függőségek miatt\n"
-"szükség lehet további csomagok telepítésére is.\n"
-"\n"
-"A lista alatt levő, floppylemezt ábrázoló ikon lehetővé teszi egy korábbi\n"
-"telepítés során elmentett csomaglista betöltését. Ezen ikonra kattintva a\n"
-"telepítő megkéri Önt, hogy tegyen be egy floppyt, amely egy korábbi\n"
-"telepítés végén készült. Ha szeretné megtudni, hogyan lehet ilyen floppyt\n"
-"készíteni, tekintse meg a telepítés utolsó lépésében szereplő tippet."
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"Itt beállíthatja az internetkapcsolatot illetve a hálózati kapcsolatot.\n"
-"Ha szeretné a gépét az internetre vagy egy helyi hálózatra csatlakoztatni,\n"
-"akkor kattintson az \"OK\" gombra. A telepítő felderíti a hálózati\n"
-"eszközöket és a modemeket. Ha a felderítés nem jár sikerrel, akkor a\n"
-"következő alkalommal kapcsolja ki az \"Automatikus detektálás\" opciót. Ha\n"
-"nem kívánja beállítani a hálózatot, vagy később kívánja azt beállítani,\n"
-"akkor kattintson a \"Mégsem\" gombra.\n"
-"\n"
-"A lehetséges kapcsolatok: hagyományos modem, ISDN-modem, ADSL-kapcsolat,\n"
-"kábelmodem, egyszerű helyi hálózati (LAN) kapcsolat (Ethernet).\n"
-"\n"
-"A lehetséges beállítások itt nem kerülnek részletezésre. A szükséges\n"
-"paramétereket az internet-szolgáltatótól illetve a\n"
-"rendszeradminisztrátortól tudhatja meg.\n"
-"\n"
-"A beállításokkal kapcsolatban a felhasználói kézikönyv\n"
-"internetkapcsolatokkal foglalkozó fejezetéből szerezhet további\n"
-"információkat. A kapcsolat beállítását nem szükséges a telepítés közben\n"
-"elvégezni; a kézikönyv leírja, hogyan lehet azt megtenni egy feltelepített\n"
-"rendszeren.\n"
-"\n"
-"Ha a hálózat beállítását a telepítés után kívánja elvégezni, illetve ha\n"
-"befejezte a hálózati kapcsolat beállítását, akkor kattintson a \"Mégsem\"\n"
-"gombra."
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Most lehet kijelölni az automatikusan elindítandó szolgáltatásokat.\n"
-"\n"
-"Itt látható a jelenleg telepített összes szolgáltatás listája.\n"
-"Vizsgálja meg a listát alaposan, és törölje a kijelölést azok mellől,\n"
-"amelyek automatikus elindítására nincs szükség.\n"
-"\n"
-"Egy szolgáltatás kiválasztásakor mindig megjelenik a hozzá tartozó rövid\n"
-"leírás. Ha nem tudja biztosan, hogy a szolgáltatásra szükség van-e vagy\n"
-"sem, akkor ne változtassa meg az alapértelmezett indítási módot.\n"
-"\n"
-"Gondosan járjon el, ha a gépet kiszolgálónak fogja használni,\n"
-"ne indítson el egy olyan szolgáltatást sem automatikusan, amelyre nincs\n"
-"szükség. A feleslegesen elindított szolgáltatások biztonsági kockázatot\n"
-"jelentenek. Csak a tényleges feladatot ellátó szolgáltatásokat engedélyezze."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"A Linux az időt a GMT (Greenwich Mean Time) alapján kezeli - a\n"
-"kiválasztott időzónának megfelelő helyi időre konvertálja azt. Az\n"
-"időzónához való igazítás kikapcsolható \"A gép órája GMT-időt mutat\"\n"
-"opció kikapcsolásával - ekkor a rendszeróra szerinti idő azonos lesz a\n"
-"gép órája szerintivel. Ez akkor hasznos, ha van a gépen más operációs\n"
-"rendszer is (például Windows).\n"
-"\n"
-"Az \"Automatikus időszinkronizáció\" opció automatikusan beállítja az órát\n"
-"egy internetes géphez kapcsolódva. Az erre alkalmas gépek megjelenő\n"
-"listájából válasszon ki egy Önhöz közel levőt. Természetesen ehhez szükség\n"
-"van működő internetkapcsolatra. Ez a funkció feltelepít az Ön gépére\n"
-"egy időkiszolgálót, amelyet a helyi hálózat többi gépe is használhat."
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"Az X (teljes néven: X Window System) a Linux grafikus felületét nyújtó\n"
-"rendszer. A Mandrake Linuxban levő grafikus környezetek (KDE, GNOME,\n"
-"AfterStep, WindowMaker, ...) ezen grafikus rendszert használják.\n"
-"A telepítő most megkísérli automatikusan beállítani az X rendszert.\n"
-"\n"
-"Bizonyos - ritkán előforduló - esetekben az automatikus beállítás nem\n"
-"hajtható végre; ez általában a nagyon régi illetve a nagyon új\n"
-"hardverelemek esetén van így. Ha sikeres a művelet, akkor az X rendszer\n"
-"automatikusan elindításra kerül a legmegfelelőbb grafikus felbontással (ez\n"
-"utóbbi a monitor méretétől is függ). Egy ablaknak kell megjelennie,\n"
-"amelyben a telepítő megkérdi Önt, hogy az ablak látható-e.\n"
-"\n"
-"Amennyiben \"Szakértő\" módban végzi a telepítést, a telepítő elindítja\n"
-"az X beállítási varázslót. A varázslóval kapcsolatban további információk\n"
-"a kézikönyvben találhatók.\n"
-"\n"
-"Ha látható az ablakban megjelenő üzenet, akkor nyomja le az \"Igen\"\n"
-"gombot; a telepítő ekkor a következő lépésre ugrik. Ha viszont az üzenet\n"
-"nem látható, az azt jelenti, hogy a beállítás nem megfelelő. A beállítás\n"
-"tesztelése 10 másodperc elteltével automatikusan véget ér, a telepítő\n"
-"ezután visszaállítja a képernyőt a korábbi üzemmódba."
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Amikor először próbálja ki az X beállításait, elképzelhető, hogy nem lesz\n"
-"megelégedve azokkal (például a képernyő túl kicsi, vagy oldalirányban el\n"
-"van tolódva). Ezért a DrakX még abban az esetben is megkérdi Öntől, hogy\n"
-"megfelelnek-e a beállítások, ha az X rendben elindul. A program megjelenít\n"
-"egy listát az általa felismert érvényes üzemmódokról. A listából\n"
-"kiválasztható egy megfelelő grafikus mód.\n"
-"\n"
-"Végső esetben - ha az X rendszert nem sikerül működésbe hozni - válassza\n"
-"\"A grafikus kártya módosítása\" funkciót, majd az \"Unlisted\" (a\n"
-"listában nem szereplő kártya) bejegyzést, amikor pedig a program megkérdi,\n"
-"hogy Ön melyik kiszolgálót szeretné, akkor válassza az \"FBDev\"-et.\n"
-"Ez egy biztonsági opció, amely bármely modern grafikus kártyával működik.\n"
-"Ezután válassza a \"Még egy próba\" funkciót a biztonság kedvéért."
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Végül el kell dönteni, hogy a rendszer grafikus módban induljon-e vagy sem.\n"
-"A program akkor is felteszi ezt a kérdést, ha Ön kihagyta a beállítások\n"
-"kipróbálását. Ha a gép kiszolgálóként fog üzemelni, vagy nem sikerült\n"
-"beállítani a grafikus módot, akkor a \"Nem\"-et érdemes választani."
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"A Mandrake Linux CD-nek van egy beépített helyreállítási üzemmódja. Ezen\n"
-"üzemmód a következőképpen érhető el: indítsa a rendszert a CD-ről, majd\n"
-"nyomja le az \"F1\" billentyűt, és gépelje be a megjelenő parancssorban\n"
-"azt, hogy \"rescue\". Ha viszont a gép nem képes CD-ről való\n"
-"rendszerindításra, akkor vissza kell térnie ezen lépéshez segítségért - ez\n"
-"legalább két esetben szükséges lehet:\n"
-"\n"
-" - A rendszerbetöltő telepítésekor (hacsak Ön nem használ más\n"
-"rendszerindító programot) a telepítő módosítja a fő lemez\n"
-"betöltőszektorát (boot sector; más néven: MBR) annak érdekében, hogy\n"
-"többféle operációs rendszert is be lehessen tölteni (például: Linux\n"
-"és Windows - ha van a gépen Windows). Ha Ön újratelepíti a Windowst, akkor\n"
-"a Microsoft-féle telepítő át fogja írni a betöltőszektort, és emiatt Ön nem\n"
-"lesz képes Linuxt indítani.\n"
-"\n"
-" - Ha probléma merül fel, és Ön nem tudja elindítani a Linux rendszert\n"
-"a merevlemezről, akkor ezen floppy fogja jelenteni az egyetlen lehetőséget\n"
-"arra, hogy elindítsa a rendszert. A floppy programokat tartalmaz a rendszer\n"
-"helyreállításához (arra az esetre, ha például áramkimaradás történt).\n"
-"\n"
-"Ha kéri ennek a lépésnek a végrehajtását, akkor a telepítő megkéri Önt\n"
-"arra, hogy tegyen be egy floppyt a meghajtóba. Ügyeljen arra, hogy a\n"
-"floppylemezen ne legyen megőrzésre szánt adat. A lemezt nem szükséges\n"
-"előzetesen formázni, mivel a telepítő felülírja a teljes lemez tartalmát."
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Most kell megadni, hogy a Mandrake Linux telepítése a merevlemez melyik\n"
-"részére történjen. Ha a lemez még teljesen üres, vagy a korábban telepített\n"
-"operációs rendszer(ek) miatt nincs elég szabad hely, akkor újra kell\n"
-"partícionálni a lemezt. A partícionálás a lemezterület logikai\n"
-"újrafelosztását jelenti - erre a Mandrake Linux telepítéséhez szükséges\n"
-"hely létrehozása érdekében van szükség.\n"
-"\n"
-"A partícionálás veszélyes művelet. Hiba esetén adatvesztéssel járhat,\n"
-"ráadásul általában nincs lehetőség visszatérni egy korábbi állapothoz.\n"
-"Emiatt kezdő felhasználóknak sok nehézséget okozhat. Ez a varázsló\n"
-"megkönnyíti a művelet végrehajtását, de mielőtt elindítaná, érdemes\n"
-"alaposan átolvasni a kézikönyv idevágó részét.\n"
-"\n"
-"Ha a telepítést szakértői módban futtatja, el fog indulni a DiskDrake nevű\n"
-"program, amely a Mandrake Linux rendszer partícionálóeszköze. Ezen program\n"
-"lehetővé teszi a partíciók módosítását. További információkat a "
-"felhasználói\n"
-"kézikönyv DiskDrake-ről szóló fejezetében olvashat. Az ott ismertetett\n"
-"varázslók a telepítőből is elindíthatók, ehhez a \"Varázsló\" gombot kell\n"
-"lenyomni.\n"
-"\n"
-"Ha a partíciók már definiálva vannak - akár egy korábbi telepítés által,\n"
-"akár egy másféle partícionálóeszköz által -, akkor egyszerűen válassza ki\n"
-"azokat a Linux rendszer telepítése számára.\n"
-"\n"
-"Ha a szükséges partíciók még nem állnak rendelkezésre, létre kell hozni\n"
-"azokat a varázslóval. A lemezek tartalmától függően többféle módon lehet\n"
-"eljárni:\n"
-"\n"
-" - \"A szabad terület felhasználása\": ez a lehetőség az üres meghajtók\n"
-"automatikus partícionálását jelenti. További kérdést nem tesz fel a\n"
-"telepítő.\n"
-"\n"
-" - \"Már létező partíció használata\": a varázsló talált egy vagy több\n"
-"linuxos partíciót a lemezen. Ha ezeket szeretné használni a\n"
-"telepítéshez, válassza ezt a lehetőséget.\n"
-"\n"
-" - \"A Windows partíción található szabad hely felhasználása\": ha a\n"
-"Windows úgy van feltelepítve a lemezre, hogy elfoglalja az összes\n"
-"elérhető területet, akkor annak egy részét fel kell szabadítani a Linux\n"
-"számára. Ez történhet a Windows-partíció törlésével (lásd \"A teljes\n"
-"lemez törlése\" és a \"Szakértői mód\" lehetőségeket) vagy\n"
-"átméretezésével. Az átméretezés végrehajtható a lemezen levő adatok\n"
-"elvesztése nélkül - feltéve, hogy azt megelőzően töredezettségmentesítve\n"
-"lett a Windows-partíció. Javasolt továbbá az adatok mentése is.\n"
-"Ezen módszer a javasolt abban az esetben, ha a Mandrake Linuxt és a\n"
-"Microsoft Windowst ugyanazon a gépen szeretné használni.\n"
-"\n"
-"Ha ezt a lehetőséget választja, ne feledkezzen meg arról, hogy ennek\n"
-"hatására a Microsoft Windows partíció mérete a mostaninál kisebb lesz,\n"
-"tehát a Windows használatakor kevesebb hely lesz az adatok tárolására\n"
-"és új szoftverek telepítésére.\n"
-"\n"
-" - \"A teljes lemez törlése\": ha minden adatot és minden partíciót\n"
-"törölni szeretne a lemezről, és a telepítéshez az így felszabaduló\n"
-"helyet szeretné használni, akkor válassza ezt a lehetőséget. Legyen\n"
-"nagyon óvatos ezzel a lehetőséggel, mert a lemezen levő adatok\n"
-"véglegesen elvesznek a megerősítés után.\n"
-"\n"
-"Ha ezt a lehetőséget választja, a lemezen levő összes adat elvész.\n"
-"\n"
-" - \"A Windows(TM) eltávolítása\": ez a funkció egyszerűen letöröl mindent\n"
-"a lemezről, és újrapartícionálja azt. A lemezen levő összes adat elvész.\n"
-"\n"
-"Ha ezt a lehetőséget választja, a lemezen levő összes adat elvész.\n"
-"\n"
-" - \"Szakértői mód\": ha közvetlenül (varázsló nélkül) szeretné elvégezni\n"
-"a partícionálást, akkor válassza ezt a lehetőséget. Legyen óvatos - sok\n"
-"minden elvégezhető ebben az üzemmódban, de a használata veszélyes. Könnyen\n"
-"elveszítheti a lemezen levő összes adatot ennek a használatával, ezért\n"
-"csak indokolt esetben válassza ezt a funkciót."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"A telepítés befejeződött; a Linux rendszer készen áll a használatra.\n"
-"A rendszer újraindításához kattintson az \"OK\" gombra. Amikor a gép\n"
-"újraindul, elindíthatja a Linuxt vagy más operációs rendszert (ha több\n"
-"operációs rendszer van a gépen).\n"
-"\n"
-"A \"Speciális\" gomb (csak szakértői módban) lenyomására két újabb gomb\n"
-"jelenik meg:\n"
-"\n"
-" - \"Automatikus telepítőfloppy készítése\": olyan telepítőfloppy\n"
-"készítése, amelynek használatával emberi közreműködés nélkül végezhető\n"
-"a rendszer telepítése. Az így végzett telepítések a jelenlegi telepítés\n"
-"beállításait használják.\n"
-"\n"
-"Két lehetőség közül lehet választani a gomb lenyomása után:\n"
-"\n"
-" - \"Újrajátszás\". Ez részben automatizált telepítést jelent;\n"
-"a partícionálási lépés (csak az az egy) interaktív marad.\n"
-"\n"
-" - \"Automatikus\". Teljesen automatizált telepítés; a merevlemez\n"
-"tartalma felülíródik, az összes korábbi adat elvész.\n"
-"\n"
-"Ez a lehetőség jól használható akkor, amikor nagyobb számú azonos gépre\n"
-"kell a rendszert feltelepíteni. Az automatikus telepítéssel\n"
-"kapcsolatban a Mandrake honlapján találhatók további információk.\n"
-"\n"
-" - \"Csomagösszeállítás mentése\"(*): elmenti a korábban tett\n"
-"csomagkijelölést (a kijelölt csomagok listáját). Ha egy újabb telepítés\n"
-"alkalmával fel kívánja használni az elmentett listát, akkor helyezze be\n"
-"az azt tartalmazó floppyt a telepítés megkezdésekor, majd nyomjon\n"
-"\"F1\"-et, ezután pedig adja ki a következő parancsot:\n"
-"linux defcfg=\"floppy\"\n"
-"\n"
-"\n"
-"(*) Ehhez szükség lesz egy FAT fájlrendszerre formázott floppyra.\n"
-"A formázás Linux alatt a következő paranccsal végezhető el:\n"
-"\"mformat a:\""
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Az újonnan létrehozott partíciók csak formázás után lesznek használhatók\n"
-"(a \"formázás\" lényegében egy fájlrendszer létrehozását jelenti).\n"
-"\n"
-"Most újraformázhat bizonyos, már létező partíciókat (ha azok tartalmát\n"
-"teljesen le kívánja törölni). Ha ezt kívánja tenni, jelölje ki azon\n"
-"partíciókat is.\n"
-"\n"
-"Nem szükséges újraformázni az összes, korábban létrehozott partíciót.\n"
-"Az operációs rendszernek szánt partíció(ka)t mindenképpen le kell formázni\n"
-"(például a \"/\", \"/usr\" és \"/var\" partíciókat), de a felhasználói\n"
-"és egyéb adatokat tartalmazó partíciókat nem szükséges újraformázni (ilyen\n"
-"például a \"/home\").\n"
-"\n"
-"Gondosan ellenőrizze, mely partíciókat jelöli ki, mert a formázás során az\n"
-"adott partíciókon levő adatok törlődnek, és később nem nyerhetők vissza.\n"
-"\n"
-"Kattintson az \"OK\" gombra a formázás megkezdéséhez.\n"
-"\n"
-"Kattintson a \"Mégsem\" gombra, ha más partícióra szeretné telepíteni a\n"
-"Mandrake Linux operációs rendszert.\n"
-"\n"
-"Kattintson a \"Speciális\" gombra, ha bizonyos partíciókat ellenőriztetni\n"
-"kíván (hibás blokkok keresése)."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"A Mandrake Linux operációs rendszer telepítése folyik.\n"
-"A telepítendő szoftverek mennyiségétől és a gép sebességétől\n"
-"függően a telepítés igen sokáig eltarthat.\n"
-"\n"
-"Egy kis türelmet kérek..."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-"Lehetséges, hogy amikor Ön a Mandrake Linux rendszert telepíti, már\n"
-"frissítésre kerültek bizonyos csomagok a rendszer kiadása óta.\n"
-"Elképzelhető, hogy bizonyos hibák ki lettek javítva, illetve\n"
-"hogy meg lettek oldva bizonyos felmerült biztonsági problémák. Ezeket\n"
-"a frissítéseket Ön letöltheti az interneten keresztül.\n"
-"Nyomja le az \"Igen\" gombot, ha van működő internetkapcsolata. Ha viszont\n"
-"inkább később kívánja telepíteni a frissítéseket, akkor a \"Nem\" gombot\n"
-"nyomja le.\n"
-"\n"
-"Ha az \"Igen\" gombot nyomja le, akkor megjelenik egy lista azon helyekről,\n"
-"amelyekről a frissítések letölthetők. Válasszon közülük egy Önhöz közel "
-"levőt.\n"
-"Ezt követően egy csomagválasztási fa jelenik meg. Ha telepíteni kívánja a\n"
-"kijelölt csomagokat, akkor nyomja le a \"Telepítés\" gombot. Ha nem kíván\n"
-"csomagokat telepíteni, akkor a \"Mégsem\" gombot nyomja le."
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Mielőtt továbblépne, olvassa át alaposan a licencegyezményt, mely az\n"
-"egész Mandrake Linux disztribúcióra érvényes, és ha nem fogadja el\n"
-"valamelyik feltételt, kattintson a \"Nem fogadom el\" gombra. Ekkor a\n"
-"telepítés azonnal félbeszakad. A telepítés folytatásához kattintson\n"
-"az \"Elfogadom\" gombra."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"Most ki kell választani egy biztonsági szintet a gép számára. Alapszabály,\n"
-"hogy minél inkább elérhető a gép, illetve minél kritikusabb adatok vannak\n"
-"azon tárolva, annál magasabbra érdemes venni a biztonsági szintet. Magasabb\n"
-"szint esetén viszont általában nehézkesebb a gép használata. A szintek\n"
-"jelentésével kapcsolatban a kézikönyv \"msec\" fejezetében találhatók\n"
-"további információk.\n"
-"\n"
-"Ha nem biztos benne, hogy mit volna érdemes választani, válassza az\n"
-"alapértelmezés szerinti lehetőséget."
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Most kell kiválasztani a Mandrake Linux rendszer telepítéséhez használni\n"
-"kívánt partíciókat. Ha a kívánt partíciók már létre lettek hozva (egy\n"
-"korábbi Linux-telepítés vagy valamilyen partícionálási segédprogram\n"
-"által), akkor felhasználhatók a már létező partíciók. Ha viszont még nem\n"
-"léteznek, akkor először definiálni kell a partíciókat.\n"
-"\n"
-"Partíció létrehozásánál először ki kell választani egy merevlemezt.\n"
-"Ehhez kattintson a megfelelő azonosítóra: \"hda\" az első IDE-csatolós\n"
-"lemez, \"hdb\" a második; \"sda\" az első SCSI-csatolós lemez, és így\n"
-"tovább.\n"
-"\n"
-"A kijelölt merevlemez partícionálásánál az alábbi lehetőségek közül lehet\n"
-"választani:\n"
-"\n"
-" - \"Teljes törlés\": ennek hatására a kijelölt merevlemezen található\n"
-"összes partíció törlésre kerül.\n"
-"\n"
-" - \"Automatikus helyfoglalás\": ez lehetővé teszi Ext2 és lapozási\n"
-"partíciók automatikus létrehozását a rendelkezésre álló üres területen.\n"
-"\n"
-" - \"Egyéb\": hozzáférést biztosít további lehetőségekhez:\n"
-"\n"
-" - \"A partíciós tábla mentése\": a partíciós tábla mentése floppyra.\n"
-"A floppy használatával később - szükség esetén - helyre lehet állítani\n"
-"(vissza lehet tölteni) a partíciós táblát. Erősen ajánljuk, hogy használja\n"
-"ezt a lehetőséget.\n"
-"\n"
-" - \"A partíciós tábla visszatöltése\": egy korábban elmentett\n"
-"partíciós tábla visszatöltése floppyról.\n"
-"\n"
-" - \"A partíciós tábla helyreállítása\": ha a partíciós tábla\n"
-"megsérült, akkor ezzel lehet megpróbálni annak kijavítását. Legyen nagyon\n"
-"óvatos, mert a javítás nem mindig sikerül.\n"
-"\n"
-" - \"A partíciós tábla újratöltése\": ennek hatására az összes\n"
-"módosítás elvész; a program ismét betölti a kiindulási partíciós táblát.\n"
-"\n"
-" - \"Cserélhető lemez automatikus csatlakoztatása\": ha nincs\n"
-"bejelölve ez az opció, akkor a felhasználóknak kézzel kell végezniük a\n"
-"cserélhető adathordozók (például CD és floppy) csatlakoztatását illetve\n"
-"leválasztását.\n"
-"\n"
-" - \"Varázsló\": akkor válassza ezt a lehetőséget, ha a partícionálást\n"
-"varázsló segítségével szeretné végrehajtani. Ha nem ismeri a\n"
-"partícionálás technikai részleteit, akkor érdemes ezt választania.\n"
-"\n"
-" - \"Visszavonás\": ezzel lehet a módosításokat visszavonni.\n"
-"\n"
-" - \"Átváltás normál módba\" illetve \"Átváltás szakértői módba\":\n"
-"szakértői módba való kapcsolás esetén több funkció válik elérhetővé\n"
-"(partíciótípus, opciók, formázás) és több információt kap a felhasználó.\n"
-"\n"
-" - \"Kész\": a partícionálás befejezése után ezzel lehet a módosításokat\n"
-"elmenteni a lemezre.\n"
-"\n"
-"Az összes funkció elérhető a billentyűzetről is. A partíciók között a Tab\n"
-"billentyűvel és a fel/le nyilakkal lehet mozogni.\n"
-"\n"
-"Ha egy partíció ki van jelölve, használni lehet a következőket:\n"
-"\n"
-" - Ctrl+C: új partíció létrehozása (ha üres partíció van kijelölve)\n"
-"\n"
-" - Ctrl+D: partíció törlése\n"
-"\n"
-" - Ctrl+M: csatlakoztatási (mount) pont megadása\n"
-"\n"
-"Ha információt szeretne a használható fájlrendszertípusokról, olvassa el\n"
-"a kézikönyv Ext2fs fájlrendszerrel foglalkozó fejezetét.\n"
-"\n"
-"Ha a telepítés egy PowerPC gépre történik, akkor érdemes létrehozni egy\n"
-"kisméretű HFS rendszerindítási partíciót (legalább 1 MB) a \"Yaboot\"\n"
-"rendszerbetöltő program számára. Ha nagyobbra veszi a partíciót (például\n"
-"50 MB méretűre), akkor eltárolható lesz rajta például egy tartalék kernel\n"
-"illetve RAM-diszk képfájlok (image-ek) esetleges rendszerhibák esetére."
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Egynél több Microsoft-partíciót találtam a lemezen.\n"
-"Válassza ki azt, amelyiket át szeretné méretezni, hogy a\n"
-"Mandrake Linux feltelepíthető legyen.\n"
-"\n"
-"A partíciólista a következő mezőket tartalmazza: \"linuxos név\",\n"
-"\"windowsos név\", \"kapacitás\".\n"
-"\n"
-"A \"linuxos név\" formátuma a következő: \"a merevlemez típusa\",\n"
-"\"a lemez azonosítója\", \"a partíció azonosítója\" (például \"hda1\").\n"
-"\n"
-"Ha a lemez IDE-csatolós, akkor \"a merevlemez típusa\" \"hd\",\n"
-"ha pedig SCSI-csatolós, akkor \"sd\".\n"
-"\n"
-"\"A lemez azonosítója\" mindig egy betű a \"hd\" illetve az \"sd\" után.\n"
-"IDE-csatolós meghajtók esetén:\n"
-"\n"
-" - \"a\" jelentése: \"első (master) meghajtó az első IDE-vezérlőn\"\n"
-"\n"
-" - \"b\" jelentése: \"második (slave) meghajtó az első IDE-vezérlőn\"\n"
-"\n"
-" - \"c\" jelentése: \"első meghajtó a második IDE-vezérlőn\"\n"
-"\n"
-" - \"d\" jelentése: \"második meghajtó a második IDE-vezérlőn\"\n"
-"\n"
-"SCSI-csatolós meghajtóknál az \"a\" jelentése: \"a legalacsonyabb\n"
-"SCSI-azonosító\", \"b\" jelentése: \"a második legalacsonyabb\n"
-"SCSI-azonosító\", és így tovább.\n"
-"\n"
-"A \"windowsos név\" a meghajtó Windows alatt használt azonosítója\n"
-"(az első lemez vagy partíció neve \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Egy kis türelmet kérek, a művelet több percet is igénybe vehet."
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Most közölnie kell a telepítővel, hogy alapértelmezés szerinti\n"
-"(\"Ajánlott\") telepítést szeretne-e végezni, vagy pedig nagyobb befolyást\n"
-"szeretne a telepítési folyamat felett (\"Szakértő\"). Választhat továbbá\n"
-"a következő lehetőségek közül: új telepítés illetve egy meglevő Mandrake\n"
-"Linux rendszer frissítése.\n"
-"\n"
-" - \"Telepítés\": a korábbi rendszer felülírásra kerül. Attól függően,\n"
-"hogy mi található a gépen, bizonyos (linuxos vagy egyéb) partíciók\n"
-"változatlan tartalommal megőrizhetők.\n"
-"\n"
-" - \"Frissítés\": lehetővé teszi egy korábbi Mandrake Linux telepítés\n"
-"csomagjainak frissítését. A merevlemez partíciói változatlanok maradnak,\n"
-"a felhasználók beállításai sem módosulnak. A normál telepítésben jelen\n"
-"levő többi beállítási lépés itt is elérhető.\n"
-"\n"
-" - \"Csak a csomagok frissítése\": lehetővé teszi egy létező Mandrake\n"
-"Linux rendszer frissítését a rendszerbeállítások módosítása nélkül.\n"
-"Lehetőség van új csomagok telepítésére is.\n"
-"\n"
-"Frissítés használata Mandrake Linux 8.1 vagy újabb kiadás esetén javasolt.\n"
-"\n"
-"A Linuxszal kapcsolatos ismereteitől függően válassza ki a következő\n"
-"lehetőségek közül a Mandrake Linux operációs rendszer telepítésének illetve\n"
-"frissítésének módját:\n"
-"\n"
-" - \"Ajánlott\": válassza ezt, ha még nem telepített Linux operációs\n"
-"rendszert. A telepítés nagyon egyszerű lesz; csak néhány kérdést fog\n"
-"Önnek feltenni a telepítő.\n"
-"\n"
-" - \"Szakértő\": ha több ismerettel rendelkezik a Linux rendszerrel\n"
-"kapcsolatban, akkor érdemes lehet ezt a telepítési módot választania.\n"
-"A szakértői mód lehetővé teszi, hogy Ön testreszabott telepítést\n"
-"végezzen. Bizonyos kérdések megválaszolása nehéz lehet, ha Ön nem\n"
-"rendelkezik alaposabb Linux-ismeretekkel; ezért fontolja meg, hogy\n"
-"ezt a lehetőséget választja-e."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Normál esetben a DrakX kiválasztja a megfelelő billentyűzetet (a választott\n"
-"nyelvtől függően), és Ön nem is fogja látni ezt a lépést. Viszont\n"
-"elképzelhető, hogy Önnek nem a nyelvének megfelelő billentyűzete van;\n"
-"például ha Ön egy angolul beszélő magyar ember, akkor lehet, hogy magyar\n"
-"billentyűzetkiosztást szeretne. Hasonló helyzet adódhat, ha az Ön nyelve\n"
-"magyar, de Ön Quebecben tartózkodik. Mindkét esetben vissza kell lépnie\n"
-"erre a telepítési lépésre és ki kell választania egy megfelelő\n"
-"billentyűzetet a listából.\n"
-"\n"
-"Hogy megjelenjen a támogatott billentyűzetek teljes listája, kattintson\n"
-"az \"Egyéb\" nyomógombra."
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Válassza ki a telepítéshez és a telepített rendszerhez használandó nyelvet.\n"
-"\n"
-"A \"Speciális\" nyomógombra kattintva kiválaszthatók további telepítendő\n"
-"nyelvek. További nyelvek választása esetén telepítésre kerülnek az adott\n"
-"nyelvekhez tartozó fájlok is - a rendszerdokumentáció és az alkalmazások\n"
-"szövegei. Ha például a gépet spanyol felhasználók is használni fogják,\n"
-"akkor a fő nyelvnek (például magyar) a fában történő kiválasztását követően\n"
-"a Speciális részben kattintson a \"Spanish|Spain\" (spanyol|Spanyolország)\n"
-"bejegyzéshez tartozó négyzetre.\n"
-"\n"
-"Több nyelv is telepíthető. Ha kijelölte az összes kívánt nyelvet,\n"
-"kattintson az \"OK\" gombra a folytatáshoz."
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"A DrakX általában felismeri, hogy hány gomb van az egéren. Ha ez nem így\n"
-"történik, akkor azt feltételezi, hogy Ön kétgombos egérrel rendelkezik,\n"
-"és ez esetben beállítja a harmadik egérgomb emulálását. A program "
-"felismeri,\n"
-"hogy milyen fajtájú az egér: PS/2, soros vagy USB.\n"
-"\n"
-"Ha Ön másféle egértípust szeretne megadni, válassza ki a megfelelő típust\n"
-"a listából.\n"
-"\n"
-"Ha az alapértelmezettől eltérő egeret választ, akkor megjelenik egy\n"
-"tesztelési képernyő. Használja az egérgombokat és a görgőt, hogy\n"
-"ellenőrizze a beállítások helyességét. Ha az egér nem működik helyesen,\n"
-"akkor nyomja le a Szóköz vagy az Enter (Return) billentyűt, és válasszon\n"
-"egy másik fajta egeret."
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Válassza ki a megfelelő portot. Például a windowsos \"COM1\" port\n"
-"neve Linux alatt \"ttyS0\"."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"Ez a legkritikusabb pont a Linux rendszer biztonságára vonatkozóan:\n"
-"meg kell adni a \"root\" nevű felhasználó jelszavát. A \"root\" azonosító\n"
-"a rendszeradminisztrátort jelöli; ez az egyetlen olyan felhasználó,\n"
-"amelynek joga van rendszerfrissítést végezni, felhasználókat létrehozni,\n"
-"módosítani a rendszerbeállításokat illetve hasonló tevékenységeket végezni.\n"
-"Röviden szólva: a \"root\" felhasználó bármit megtehet a rendszeren.\n"
-"Ez az, amiért a jelszót úgy kell megválasztani, hogy azt minél nehezebb\n"
-"legyen kitalálni. A telepítő jelzi az Ön számára, ha a jelszót könnyen\n"
-"kitalálhatónak tartja. Nem kötelező megadni jelszót, de erősen javasolt;\n"
-"ha másért nem is, a következő miatt: ne gondolja, hogy ha Ön Linux\n"
-"rendszert indít, akkor a gépen levő többi operációs rendszer feltétlenül\n"
-"védve van az esetlegesen elkövetett hibáktól. A \"root\" felhasználóra nem\n"
-"vonatkoznak a korlátozások; ha például óvatlanul kezeli a partíciókat,\n"
-"akkor akár le is törölheti az azokon levő adatokat; ezért fontos, hogy\n"
-"a rendszeradminisztrátori azonosító védve legyen.\n"
-"\n"
-"A jelszónak betűkből és számokból kell állni, és legalább 8 karakter\n"
-"hosszúságúnak kell lenni. Soha ne írja le a rendszeradminisztrátori\n"
-"jelszót - ez veszélyt jelenthetne a rendszerre.\n"
-"\n"
-"A fentiek ellenére ne válasszon túl hosszú vagy túl bonyolult jelszót, mert\n"
-"Önnek fejben kell tartania azt.\n"
-"\n"
-"A jelszó nem jelenik meg a képernyőn, amikor Ön begépeli azt. Emiatt\n"
-"kétszer kell azt beírni - ezáltal csökken az esélye annak, hogy Ön elgépeli\n"
-"a jelszót. Ha esetleg ugyanazt a gépelési hibát követi el a jelszó első\n"
-"és második megadásánál, akkor ezen - helytelenül írt - jelszóval kell majd\n"
-"bejelentkezni a rendszerbe.\n"
-"\n"
-"Szakértői mód esetén a telepítő megkérdi, hogy szükség van-e azonosítási\n"
-"kiszolgáló (authentication server) használatára (NIS, LDAP, ...).\n"
-"\n"
-"Ha az Ön hálózata LDAP protokollt (illetve NIS-t) használ azonosításhoz,\n"
-"akkor válassza az \"LDAP\" (illetve \"NIS\") lehetőséget azonosítási\n"
-"módszerként. Ha nem tudja, mit kellene megadni, kérdezze meg a\n"
-"rendszergazdát.\n"
-"\n"
-"Ha a számítógép nem kapcsolódik semmilyen adminisztrált hálózathoz, akkor\n"
-"válassza a \"Helyi fájlok\" lehetőséget."
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"A LILO és a GRUB linuxos rendszerindító programok. Ez a fázis általában\n"
-"teljesen automatikus. A telepítő elemzi a lemez betöltőszektorát, és\n"
-"annak megfelelően cselekszik, hogy ott mit talál:\n"
-"\n"
-" - Ha windowsos betöltőszektort talál, akkor azt helyettesíteni fogja egy\n"
-"GRUB/LILO betöltőszektorral. Ezért Önnek lehetősége lesz arra is, hogy\n"
-"Linuxt indítson, és arra is, hogy egy másik operációs rendszert.\n"
-"\n"
-" - Ha GRUB vagy LILO betöltőszektort talál, helyettesíti azt egy új\n"
-"példánnyal.\n"
-"\n"
-"Ha a telepítő nem tud dönteni, akkor megjelenít egy párbeszédablakot\n"
-"különféle lehetőségekkel.\n"
-"\n"
-" - \"A használni kívánt rendszerbetöltő\": három lehetőség van:\n"
-"\n"
-" - \"GRUB\": ha a GRUB-ot szeretné használni (szöveges menü).\n"
-"\n"
-" - \"LILO, grafikus menüvel\": ha grafikus felületű LILO-t szeretne.\n"
-"\n"
-" - \"LILO, szöveges menüvel\": ha szöveges felületű LILO-t szeretne.\n"
-"\n"
-" - \"Rendszerindítási eszköz\": a legtöbb esetben nincs szükség az\n"
-"alapértelmezett érték (\"/dev/hda\") módosítására, de ha kívánja, a\n"
-"rendszerbetöltő telepíthető a második merevlemezre is (\"/dev/hdb\"),\n"
-"vagy akár floppylemezre is (\"/dev/fd0\").\n"
-"\n"
-" - \"Várakozási idő az alapértelmezett rendszer betöltése előtt\": a gép\n"
-"újraindításakor ennyi ideje van a felhasználónak a rendszerbetöltő\n"
-"menüjének megjelenését követően arra, hogy kiválassza, melyik rendszert\n"
-"kívánja elindítani (ha nem az alapértelmezettet).\n"
-"\n"
-"Legyen óvatos: ha nem telepít rendszerbetöltőt (azaz a \"Mégsem\" gombot\n"
-"nyomja le), akkor biztosítania kell egy másféle módszert a Mandrake Linux\n"
-"rendszer elindítására. Továbbá: csak akkor módosítsa az opciókat, ha biztos\n"
-"abban, hogy tisztában van a funkciójukkal.\n"
-"\n"
-"A párbeszédablak \"Speciális\" gombjára kattintva további opciók válnak\n"
-"elérhetővé - ezek a szakértő felhasználók számára lesznek lényegesek.\n"
-"\n"
-"Miután beállította az általános rendszerbetöltő-paramétereket, megjelenik\n"
-"a betöltési lehetőségek listája, amely rendszerindításkor lesz elérhető.\n"
-"\n"
-"Ha van másik operációs rendszer a gépen, az automatikusan fel lesz véve a\n"
-"betöltési menübe. Itt módosíthatók az aktuális beállítások. Egy elem\n"
-"módosításához illetve eltávolításához jelölje ki az elemet, majd kattintson\n"
-"a \"Módosítás\" gombra. Új elemet a \"Hozzáadás\" funkcióval lehet "
-"felvenni.\n"
-"A telepítés következő lépésére való ugrás a \"Kész\" gombbal lehetséges."
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"A LILO (a \"LInux LOader\") és a GRUB rendszerindító programok: a gép\n"
-"bekapcsolása után el tudják indítani a Linuxt vagy egy másik operációs\n"
-"rendszert. Telepítéskor a felismert operációs rendszerek bejegyzései\n"
-"általában létrejönnek. Ha valamilyen ok miatt ez nem történt meg,\n"
-"akkor itt kézzel létre lehet hozni őket. Ügyeljen a megfelelő\n"
-"paraméterezésre!\n"
-"\n"
-"Ha valamelyik operációs rendszert nem akarja elérhetővé tenni, akkor\n"
-"törölheti annak rendszerbetöltési bejegyzéseit, de ebben az esetben\n"
-"később csak indítólemezzel tudja majd azt az operációs rendszert elindítani."
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Itt kell megadni, hogy hová kerüljenek a Linux\n"
-"operációs rendszer betöltéséhez szükséges adatok.\n"
-"\n"
-"Válassza \"A lemez első szektora (MBR)\" opciót, ha\n"
-"nincs kizáró ok."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-"Itt lehet nyomtatórendszert választani a gép számára. Más operációs\n"
-"rendszerekben általában csak egy van, a Mandrake Linuxban viszont három is.\n"
-"\n"
-" - \"pdq\": \"print, don't queue\", azaz sorba tevés nélkül történő\n"
-"nyomtatás. Akkor válassza ezt, ha közvetlen kapcsolat van a\n"
-"nyomtatóval, és nincsen hálózati nyomtatója. Ez a módszer csak a\n"
-"legegyszerűbb hálózati szolgáltatásokat nyújtja, és hálózaton eléggé\n"
-"lassú. Válassza a \"pdq\" módszert, ha nem rendelkezik komolyabb linuxos\n"
-"ismeretekkel. Lehetősége van arra, hogy telepítés után módosítsa ezt a\n"
-"beállítást; ehhez a PrinterDrake programot kell futtatni a Mandrake\n"
-"Vezérlőközpontban - a szakértői beállításokat kell módosítani.\n"
-"\n"
-" - \"CUPS\": \"Common Unix Printing System\", azaz általános Unix\n"
-"nyomtatórendszer. Helyi és távoli nyomtatókra való nyomtatáshoz remekül\n"
-"használható. Ez egy egyszerű rendszer, és képes a régi \"lpd\"\n"
-"nyomtatórendszer kiszolgálójaként vagy klienseként funkcionálni -\n"
-"vagyis kompatibilis a régebbi rendszerekkel. Nagy tudású rendszer,\n"
-"viszont az alapvető beállítások majdnem olyan egyszerűen elvégezhetők\n"
-"benne, mint a \"pdq\" esetében. Ha arra használja, hogy egy \"lpd\"\n"
-"kiszolgálót emuláljon vele, akkor aktiválnia kell a \"cups-lpd\"\n"
-"szolgáltatást. Rendelkezik grafikus felülettel, amely nyomtatásra\n"
-"illetve a nyomtatóparaméterek kiválasztására használható.\n"
-"\n"
-" - \"lprNG\": \"line printer daemon New Generation\", azaz új-generációs\n"
-"nyomtatószolgáltatás. Ez a rendszer nagyjából azt tudja, amit a többi\n"
-"hasonló, de képes Novell hálózatra kötött nyomtatókra is nyomtatni, mivel\n"
-"támogatja az IPX protokollt. Lehetőséget nyújt konzolos parancsok felé\n"
-"történő nyomtatásra is. Ha Önnek szüksége van a Novellre, illetve ha\n"
-"parancsok felé kíván nyomtatni anélkül, hogy csővezetéket használna,\n"
-"akkor használja az lprNG rendszert. Ettől eltérő esetekben a CUPS\n"
-"használata javasolt, mivel egyszerűbb és a hálózatkezelése is jobb."
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"A DrakX (a telepítő) most megkeresi a gépben levő IDE-eszközöket. Felderíti\n"
-"a PCI SCSI-kártyákat is. A program a felismert SCSI-kártyákhoz\n"
-"automatikusan feltelepíti a megfelelő meghajtóprogramokat.\n"
-"\n"
-"Mivel a hardverfelderítés nem mindig ismeri fel a gépben levő eszközöket,\n"
-"ezért a telepítő rá fog kérdezni, van-e a gépben PCI SCSI-kártya.\n"
-"Ha tudja, hogy van a gépben SCSI-kártya, kattintson az \"Igen\"-re.\n"
-"Ez esetben egy listából lehet kijelölni a kártyát. Ha nincsen SCSI\n"
-"hardver a gépben, akkor kattintson a \"Nem\" gombra. Ha nem biztos a\n"
-"válaszban, megtekintheti a megtalált hardverelemek listáját\n"
-"\"A hardverjellemzők megjelenítése\" funkciót kiválasztva, majd\n"
-"az \"OK\"-ra kattintva. Vizsgálja meg a listát, majd kattintson az\n"
-"\"OK\" gombra a SCSI-val kapcsolatos kérdéshez való visszatéréshez.\n"
-"\n"
-"Ha kézzel kell megadnia a kártya típusát, a telepítő megkérdezi, hogy\n"
-"szeretné-e megadni a kártya jellemzőit. Általában erre nincs szükség,\n"
-"mivel a program le tudja kérdezni a megfelelő beállításokat. A legtöbb\n"
-"esetben ez jól működik.\n"
-"\n"
-"Ha a telepítő nem tudja meghatározni a szükséges jellemzőket, akkor\n"
-"Önnek kell megadnia a meghajtóprogram paramétereit. Olvassa el a\n"
-"Felhasználói Kézikönyv 3. fejezetének \"Hardverinformációk összegyűjtése\"\n"
-"című szakaszát, ahonnan megtudhatja, hogyan lehet információt szerezni\n"
-"a szükséges paraméterekkel kapcsolatban a hardver dokumentációjából, a\n"
-"gyártó honlapjáról (ha rendelkezik internet-hozzáféréssel) illetve a\n"
-"Microsoft Windowsból (ha használta azzal az illető hardvert)."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"További bejegyzéseket lehet felvenni a Yaboot-ba, például más operációs\n"
-"rendszereket, további kerneleket vagy hibajavítási kernelt.\n"
-"\n"
-"Más operációs rendszereknél a bejegyzés egy címkéből és az indítási\n"
-"partíció nevéből áll.\n"
-"\n"
-"Linux esetén a következő beállítások lehetnek:\n"
-"\n"
-" - Címke: ezt a nevet a Yaboot-ba begépelve lehet majd elindítani a\n"
-"megadott operációs rendszert.\n"
-"\n"
-" - Indítófájl: a rendszer indítási fájljának neve. Általában \"vmlinux\",\n"
-"vagy ugyanez valamilyen kiterjesztéssel.\n"
-"\n"
-" - Gyökér: a telepített Linux rendszer gyökérpartíciója (\"/\").\n"
-"\n"
-" - Hozzáfűzés: Apple gépeknél ezt az opciót gyakran használják a\n"
-"videokártya inicializálásához illetve a gyakran hiányzó második és\n"
-"harmadik egérgomb billentyűzetről történő emulálásának beállításához.\n"
-"Néhány példa látható az alábbiakban:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" - Kezdeti RAM-diszk: ez az opció használható modulok betöltésére még\n"
-"azelőtt, hogy a rendszerindítási eszköz elérhető lenne, vagy egy\n"
-"RAM-diszkes fájl betöltésére hibaelhárításnál.\n"
-"\n"
-" - A RAM-diszk mérete: az alapértelmezett RAM-diszk-méret általában 4096\n"
-"bájt. Ha nagyobb méretet szeretne, használja ezt a lehetőséget.\n"
-"\n"
-" - Írható-olvasható: általában a gyökérpartíció csatlakoztatása először\n"
-"csak-olvasható módban történik, hogy az aktiválás előtt ellenőrizni\n"
-"lehessen a fájlrendszer integritását. Itt lehet felülbírálni ezt az\n"
-"eljárást.\n"
-"\n"
-" - NoVideo: ha például egy Apple gép videokártyáját nem sikerül működésre\n"
-"bírni, válassza ezt az opciót a \"novideo\" módú indításhoz (natív\n"
-"framebuffer-támogatással).\n"
-"\n"
-" - Alapértelmezés: az ezzel megjelölt bejegyzés lesz az alapértelmezett\n"
-"operációs rendszer, melynek kiválasztásához elég megnyomni az Enter\n"
-"billentyűt a Yaboot-promptnál. A bejegyzés mellett megjelenik egy \"*\"\n"
-"karakter, ha Ön megjeleníti a lehetőségek listáját a Tab billentyűvel."
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"A Yaboot egy rendszerindító program a \"NewWorld\" Macintosh gépekhez.\n"
-"Elindíthatók vele a gépen található Linux, MacOS és MacOS X példányok.\n"
-"Általában a telepítőprogram felismeri ezeket az operációs rendszereket és\n"
-"létrehozza a megfelelő bejegyzéseket. De ha nem így történik, akkor kézzel,\n"
-"utólag is létrehozható a megfelelő bejegyzés. Gondosan ellenőrizze a\n"
-"megadott paramétereket.\n"
-"\n"
-"A Yaboot legfontosabb paraméterei:\n"
-"\n"
-" - Indítási üzenet: egyszerű szöveges üzenet, amely az indítási prompt\n"
-"előtt jelenik meg.\n"
-"\n"
-" - Rendszerindítási eszköz: ezzel adható meg, hogy hova kerüljön a\n"
-"rendszerindításhoz szükséges információ. Általában egy előzőleg már\n"
-"létrehozott rendszerindítási partícióra mutat.\n"
-"\n"
-" - Késleltetés Open Firmware-nél: a LILO-tól eltérően a Yaboot-nál kétféle\n"
-"várakozási idő létezik. Az elsőt másodpercben mérik, és akkor érvényes,\n"
-"amikor a CD, az OF-betöltés, a MacOS és a Linux közül választani lehet.\n"
-"\n"
-" - Várakozási idő rendszerindításkor: ez a késleltetési idő a LILO-belihez\n"
-"hasonló jellegű. A Linux kiválasztása után ennyi tizedmásodpercig vár majd\n"
-"a program az alapértelmezett kernel betöltése előtt.\n"
-"\n"
-" - CD-ről történhet rendszerindítás?: ennek bejelölésének hatására a \"C\"\n"
-"is választható lesz (CD-ről való indítás) a rendszerindítási promptnál.\n"
-"\n"
-" - OF-ről történhet rendszerindítás?: ennek bejelölésének hatására az\n"
-"\"N\" is választható lesz (Open Firmware-ről való indítás) a\n"
-"rendszerindítási promptnál.\n"
-"\n"
-" - Az alapértelmezett op. rendszer?: itt lehet megadni, hogy melyik\n"
-"operációs rendszer induljon el az Open Firmware várakozási idejének\n"
-"letelte után."
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"Itt a gépének a különböző tulajdonságait láthatja. A telepített hardvertől\n"
-"függően a következők jelenhetnek meg:\n"
-"\n"
-" - \"Egér\": ellenőrizze a jelenlegi egérbeállításokat; a módosításukhoz\n"
-"kattintson a gombra.\n"
-"\n"
-" - \"Billentyűzet\": ellenőrizze a jelenlegi billentyűzet-kiosztást; a\n"
-"módosításához kattintson a gombra.\n"
-"\n"
-" - \"Időzóna\": a telepítő alapértelmezésben felkínál egy általa\n"
-"megfelelőnek tartott időzóna-beállítást, amelyet az Ön által választott\n"
-"nyelv alapján határoz meg. Ugyanúgy, mint a billentyűzet esetén, itt\n"
-"is elképzelhető, hogy Ön nem abban az országban tartózkodik, amelyre\n"
-"a kiválasztott nyelv alapján következtetni lehet. Ezért szükség lehet\n"
-"arra, hogy az \"Időzóna\" gombra kattintson - hogy az órát a megfelelő\n"
-"időzónához igazítsa.\n"
-"\n"
-" - \"Nyomtató\": nyomtatóbeállítási varázsló elindítása.\n"
-"\n"
-" - \"Hangkártya\": ha a telepítő hangkártyát észlel a gépben, az itt fog\n"
-"megjelenni. A telepítés során nincs lehetőség ennek a módosítására.\n"
-"\n"
-" - \"TV-tuner kártya\": ha a telepítő TV-kártyát észlel a gépben, az itt\n"
-"fog megjelenni. A telepítés során nincs lehetőség ennek a módosítására.\n"
-"\n"
-" - \"ISDN-kártya\": ha a telepítő ISDN-kártyát észlel a gépben, az itt fog\n"
-"megjelenni. Ha a gombra kattint, módosíthatja a paramétereit."
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Válassza ki azt a lemezt, amelyet törölni szeretne a Mandrake Linux\n"
-"telepítéséhez. Figyelem! A lemezen található adatok elvesznek, és\n"
-"később nem nyerhetők vissza!"
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Kattintson az \"OK\" gombra, ha a lemezen található összes adatot\n"
-"és partíciót törölni szeretné. Figyelem! Az \"OK\" gomb megnyomása után\n"
-"nincs mód a törölt adatok és partíciók visszaállítására, természetesen\n"
-"akkor sem, ha egy Windows-partíció törlődött.\n"
-"\n"
-"Kattintson a \"Mégsem\" gombra, ha nem kívánja végrehajtani a műveletet\n"
-"(a lemezen található partíciók és adatok ez esetben nem változnak)."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Nem érhetők el a megfelelő kernelmodulok (hiányzó fájl: %s). Ez általában "
-"azt jelenti, hogy az indítólemez nincs összhangban a telepítési médiummal. "
-"Készítsen egy újabb indítólemezt."
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "Meg kell formázni ezt is: %s"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"A következő kiszolgálóprogramo(ka)t választotta ki: %s\n"
-"\n"
-"\n"
-"Alapértelmezés szerint ezek lesznek aktiválva. Nem tartozik hozzájuk ismert\n"
-"biztonsági javítás, de újak megjelenhetnek. Ha ez bekövetkezik, akkor minél\n"
-"hamarabb el kell végezni a frissítést.\n"
-"\n"
-"\n"
-"Biztosan telepíteni szeretné a kiszolgálóprogramo(ka)t?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Nem lehet broadcast-ot használni NIS tartomány nélkül"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr ""
-"Helyezzen egy FAT fájlrendszerre formázott floppyt a(z) \"%s\" meghajtóba"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Ezen a floppyn nincs FAT fájlrendszer"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Ha fel akarja később használni ezt a csomagkijelölést, akkor a telepítést "
-"\"linux defcfg=floppy\" paraméterrel indítsa el."
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Hiba a(z) %s fájl olvasása közben"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"A gép bizonyos hardverelemei speciális meghajtóprogramot igényelnek.\n"
-"Információk: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Feltétlenül kell lennie gyökérpartíciónak.\n"
-"Hozzon létre egy partíciót (vagy kattintson egy meglévőre).\n"
-"Utána adja meg csatolási pontnak a \"/\"-t."
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Kell legalább egy lapozási (swap) partíció"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Nincs egy lapozási (swap) partíció sem.\n"
-"\n"
-"Ennek ellenére tovább szeretne lépni?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Kell egy FAT partíció a /boot/efi ponthoz csatlakoztatva"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "A szabad terület felhasználása"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nincs elég szabad terület új partíció létrehozásához"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Már létező partíció használata"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Nincs olyan már létező partíció, amit használhatnék"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "A loopback-hez a windowsos partíció használata"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Melyik partícióra szeretné a Linux4Win-t telepíteni?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Adja meg a méreteket"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "A gyökérpartíció mérete MB-ban: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "A lapozási (swap) partíció mérete MB-ban: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "A Windows partíción található szabad hely felhasználása"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Melyik partíciót szeretné átméretezni?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "A windowsos fájlrendszer jellemzőinek kiszámítása"
-
-# msgstr "A Windows fájlrendszer bounds kiszámítása"
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"A FAT-átméretező nem tudja kezelni a partíciót.\n"
-"A következő hiba keletkezett: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"A windowsos partíció túlzottan töredezett. Futtassa előbb a \"defrag\" "
-"programot."
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"FIGYELEM!\n"
-"\n"
-"A DrakX most átméretezi a windowsos partíciót. Ez a művelet veszélyes.\n"
-"Ha még nem tette meg, futtassa le a scandisk-et a windowsos partíción\n"
-"(esetleg a defrag programot is). Ehhez ki kell lépnie a telepítőből.\n"
-"Mentse le az adatokat, majd indítsa újra a telepítőt.\n"
-"Ha biztos abban, hogy folytatni szeretné, nyomja meg az \"OK\"-t."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Mekkora helyet szeretne fenntartani a Windowsnak itt:"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "%s partíció"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "A FAT átméretezése nem sikerült: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Nincs átméretezhető illetve loopback-ként használható FAT partíció, vagy "
-"nincs elég hely"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "A teljes lemez törlése"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "A Windows(TM) eltávolítása"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Több merevlemeze van. Melyikre telepítsem a Linuxot?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"MINDEN létező partíció és rajtuk minden adat elvész a(z) \"%s\" meghajtón"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Egyéni lemezpartícionálás"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Az fdisk használata"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Most partícionálható a(z) %s.\n"
-"Ha kész, ne feledje elmenteni a változásokat a \"w\"-vel"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Nincs elég szabad hely a windowsos partíción"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Nincs elég szabad hely a telepítéshez"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "A DrakX partícionálási varázslója a következőket javasolja:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partícionálási hiba: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "A hálózatkezelés elindítása"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "A hálózatkezelés leállítása"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Hiba történt, de nem tudom megfelelően lekezelni.\n"
-"Folytatás az Ön saját felelősségére."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "A következő csatolási pont kétszer van megadva: %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Néhány fontos csomagot nem tudtam telepíteni.\n"
-"Ez azt jelenti, hogy vagy a CD-meghajtó, vagy a CD lemez\n"
-"hibás. A CD lemezt egy, már feltelepített gépen a következő\n"
-"parancs segítségével tesztelheti le:\n"
-"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Üdvözöljük - %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Nincs elérhető floppy-meghajtó"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "A következő lépés: \"%s\"\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"A rendszer gyenge erőforrásokkal rendelkezik. Előfordulhat, hogy problémái\n"
-"lesznek a Mandrake Linux telepítésével. Ha így történik, próbálkozzon\n"
-"szöveges módú telepítéssel: CD-ről való rendszerindítást követően nyomjon\n"
-"\"F1\"-et, majd írja be azt, hogy \"text\"."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Telepítési mód"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Válasszon a következő telepítési osztályok közül:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Az Ön által kiválasztott csomagcsoportok összmérete kb. %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ha ennél kevesebb helyet szán a rendszernek,\n"
-"adjon meg egy százalékos értéket.\n"
-"\n"
-"Ha alacsony értéket ad meg, akkor a kiválasztott csomagok közül\n"
-"csak a fontosabbak kerülnek telepítésre; ha 100%%-ot ad meg,\n"
-"a DrakX minden kijelölt csomagot telepít."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"A merevlemezen csak a csomagok %d%%-ának van hely.\n"
-"\n"
-"Ha ennél kevesebbet kíván telepíteni,\n"
-"változtassa meg a kijelzett százalék értékét.\n"
-"Ha alacsony százalék-értéket ad meg, a telepítő csak a\n"
-"legfontosabb csomagokat telepíti; ha %d%%-ot ad meg,\n"
-"akkor a lehető legtöbb csomag kerül telepítésre."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Részletesebben válogathat a következő lépés részeként."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Telepítendő csomagok százaléka"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Csomag-csoportok kiválasztása"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Csomagok egyedi kiválasztása"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Összméret: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Hibás csomag"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Név: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Verzió: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Méret: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Fontosság: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Nem választhatja ki ezt a csomagot, mert nincs elég hely a merevlemezen."
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "A telepítő a következő csomagokat fogja telepíteni"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "A telepítő a következő csomagokat távolítja el"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Ez a csomag nem jelölhető ki illetve nem törölhető a kijelölése"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Ez egy kötelező csomag, nem lehet megszüntetni a kijelölését"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Nem törölhető ennek a csomagnak a kijelölése, mert már telepítve van"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Ezt a csomagot frissíteni kell!\n"
-"Biztos, hogy törölni kívánja a kijelölését?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr ""
-"Nem törölheti ennek a csomagnak a kijelölését. Ez a csomag frissítendő!"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Automat. kijelölt csomagok mutatása"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Telepítés"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Betöltés/floppyra mentés"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "A csomagkiválasztás frissítése"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Minimális telepítés"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Válassza ki a telepítendő csomagokat"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Telepítés"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Becslés"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Hátralévő idő "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Egy kis türelmet kérek; a telepítés előkészítése folyik"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d csomag"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "A(z) %s csomag telepítése"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Elfogadom"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Nem fogadom el"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Cserélje ki a CD-t a meghajtóban!\n"
-"\n"
-"Tegye be a(z) \"%s\" feliratú lemezt, és nyomja meg az \"OK\" gombot.\n"
-"Ha nincs ilyen lemeze, nyomja meg a \"Mégsem\" gombot, így erről a CD-ről\n"
-"nem történik telepítés."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Ettől függetlenül folytassam?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Hiba történt a csomagok rendezésekor:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Hiba történt a csomagok telepítésekor:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Figyelmeztetés\n"
-"\n"
-"Olvassa el alaposan az alábbi licencfeltételeket. Ha valamelyik részt nem\n"
-"fogadja el, akkor nem kezdheti el a telepítést a következő CD-ről. Ha a\n"
-"\"Nem fogadom el\" lehetőséget választja, akkor a telepítést ezen "
-"adathordozó\n"
-"kihagyásával kell folytatnia.\n"
-"\n"
-"\n"
-"A következő CD-n található néhány szoftverkomponens nem a GPL\n"
-"(vagy más hasonló) licenc alá tartozik. Mindegyik ilyen komponens\n"
-"saját, egyéni licencegyezménnyel rendelkezik.\n"
-"Olvassa el és fogadja el ezeket a licencfeltételeket a komponens\n"
-"használatba vétele vagy továbbadása előtt.\n"
-"Ezek a feltételek általában nem engedélyezik a komponens továbbadását,\n"
-"lemásolását (kivéve biztonsági másolatként), forgalomba hozását,\n"
-"visszafejtését, gépi kódú kilistázását, visszafordítását és módosítását.\n"
-"Bármelyik feltétel be nem tartása esetén a licenc érvényét veszti.\n"
-"Ha a licencegyezmény külön nem engedélyez többet, akkor a telepítés\n"
-"csak egy rendszerre engedélyezett, és a komponens nem használható\n"
-"közösen, a hálózaton. Ha pontosabb információra van szüksége,\n"
-"lépjen kapcsolatba a komponens forgalmazójával vagy készítőjével.\n"
-"A komponensek átadása, róluk másolat készítése harmadik fél részére\n"
-"általában nem engedélyezett (beleértve a dokumentációt is).\n"
-"\n"
-"\n"
-"A következő CD-n található komponensek minden joga azok szerzőit illeti\n"
-"meg, és a szoftvertermékekre vonatkozó szellemi és szerzői jogi\n"
-"törvények érvényesek rájuk.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Hiba lépett fel"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "Biztosan ki szeretne lépni a telepítőből?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Licencegyezmény"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Bevezetés\n"
-"\n"
-"A továbbiakban az operációs rendszerre és a Mandrake Linux disztribúcióban "
-"elérhető\n"
-"különféle komponensekre \"Szoftvertermékek\" néven hivatkozunk. A "
-"Szoftvertermékek körébe - nem\n"
-"kizárólagosan - beletartoznak az operációs rendszerhez és a Mandrake Linux "
-"disztribúció\n"
-"különféle komponenseihez kapcsolódó programok, módszerek, szabályok és "
-"dokumentáció.\n"
-"\n"
-"\n"
-"1. Licencegyezmény\n"
-"\n"
-"Kérjük, olvassa el jelen dokumentumot figyelmesen. Ezen dokumentum egy, a "
-"Szoftvertermékekre\n"
-"vonatkozó licencegyezmény Ön és a MandrakeSoft S.A. között.\n"
-"Ha a Szoftvertermékeket bármiféle módon telepíti, sokszorosítja vagy "
-"felhasználja,\n"
-"azzal Ön elfogadja jelen licenc kikötéseit és feltételeit, továbbá "
-"beleegyezik abba, hogy\n"
-"azoknak teljes mértékben megfelel.\n"
-"Ha Ön a Licenc bármely részével nem ért egyet, akkor az Ön számára nem "
-"engedélyezett a\n"
-"Szoftvertermékek telepítése, sokszorosítása illetve felhasználása.\n"
-"Bármely olyan kísérlet, amely a Szoftvertermékeknek a jelen licenc "
-"kikötéseitől és feltételeitől\n"
-"eltérően való telepítésére, sokszorosítására illetve felhasználására "
-"irányul, érvénytelenítő\n"
-"jellegű, és megvonja az Önnek ezen licenc által adott jogokat. A licencjogok "
-"megszűnését\n"
-"követően Önnek azonnali hatállyal meg kell semmisítenie a Szoftvertermékek "
-"összes, Ön által\n"
-"birtokolt példányát.\n"
-"\n"
-"\n"
-"2. Korlátozott garancia\n"
-"\n"
-"A Szoftvertermékek és az azokhoz tartozó dokumentáció \"olyan amilyen\" "
-"állapotban állnak\n"
-"rendelkezésre. Garancia nincsen azokra - a törvények által engedélyezett "
-"mértékben.\n"
-"A MandrakeSoft S.A. - a törvények által engedélyezett mértékben - semmilyen "
-"körülmények\n"
-"között sem vonható felelősségre a Szoftvertermékek használatából vagy "
-"használhatatlanságából\n"
-"származó speciális, előre nem látott, közvetlen vagy közvetett károkért "
-"(korlátozás nélkül\n"
-"beleértve a következőket: üzleti veszteség, üzleti tevékenység megszakadása, "
-"pénzügyi\n"
-"veszteség, jogi díjak illetve bírósági ítéletből származó büntetés, vagy "
-"bármilyen\n"
-"származékos veszteség); még abban az esetben sem, ha a MandrakeSoft S.A. "
-"tájékoztatva lett\n"
-"az ilyesféle károk bekövetkezésének lehetőségéről.\n"
-"\n"
-"KORLÁTOZOTT FELELŐSSÉG A BIZONYOS ORSZÁGOKBAN TILTOTT SZOFTVEREK "
-"BIRTOKLÁSÁVAL ILLETVE\n"
-"HASZNÁLATÁVAL KAPCSOLATBAN\n"
-"\n"
-"A MandrakeSoft S.A. és disztribútorai - a törvények által engedélyezett "
-"mértékben - semmilyen\n"
-"körülmények között sem vonhatók felelősségre az olyan - speciális, előre nem "
-"látott, közvetlen\n"
-"vagy közvetett - károkért (korlátozás nélkül beleértve a következőket: "
-"üzleti veszteség,\n"
-"üzleti tevékenység megszakadása, pénzügyi veszteség, jogi díjak illetve "
-"bírósági\n"
-"ítéletből származó büntetés, vagy bármilyen származékos veszteség), amely "
-"károk a\n"
-"szoftverkomponensek birtoklásából vagy használatából illetve a helyi "
-"törvények által\n"
-"tiltott vagy korlátozott szoftverkomponenseknek egy Mandrake Linux címről "
-"való\n"
-"letöltéséből származnak.\n"
-"Ezen korlátozott felelősség vonatkozik többek közt a Szoftvertermékekben "
-"levő titkosító\n"
-"komponensekre is.\n"
-"\n"
-"\n"
-"3. A GPL és az ahhoz kapcsolódó licencek\n"
-"\n"
-"A Szoftvertermékek különböző személyek és intézmények által készített "
-"komponensekből állnak.\n"
-"A legtöbb komponensre a GNU General Public Licence (GNU Általános Nyilvános "
-"Licenc; a\n"
-"továbbiakban: GPL) és hasonló licencek kikötései és feltételei vonatkoznak.\n"
-"Ezen licencek java része lehetővé teszi a megfelelő komponensek használatát, "
-"sokszorosítását,\n"
-"módosítását illetve terjesztését. Bármely komponens használata előtt olvassa "
-"el figyelmesen\n"
-"a komponensre vonatkozó licenc kikötéseit és feltételeit. Egy komponens "
-"licencére vonatkozó\n"
-"kérdést nem a MandrakeSoft céghez, hanem az adott komponens szerzőjéhez kell "
-"irányítani.\n"
-"A MandrakeSoft S.A. által fejlesztett programok a GPL licenc hatálya alá "
-"tartoznak.\n"
-"A MandrakeSoft S.A. által írt dokumentációs anyagokra egy speciális licenc "
-"vonatkozik.\n"
-"További részletek a dokumentációban.\n"
-"\n"
-"\n"
-"4. Szellemi tulajdonra vonatkozó jogok\n"
-"\n"
-"A Szoftvertermékek komponenseire vonatkozó összes jog az adott komponensek "
-"szerzőit illeti meg,\n"
-"és a szoftverekre vonatkozó szellemi tulajdoni illetve szerzői jogi "
-"(copyright) törvények\n"
-"védelme alatt áll.\n"
-"A MandrakeSoft S.A. fenntartja a jogot arra, hogy módosítsa illetve "
-"átalakítsa a\n"
-"Szoftvertermékeket - teljes egészében vagy részben, bármilyen módon illetve "
-"bármilyen célra.\n"
-"A \"Mandrake\", a \"Mandrake Linux\" és az azokhoz tartozó logók a "
-"MandrakeSoft S.A. védjegyei.\n"
-"\n"
-"\n"
-"5. Vonatkozó törvények\n"
-"\n"
-"Ha jelen egyezmény bármely része bírósági ítélet alapján semmisnek, "
-"törvénytelennek vagy\n"
-"alkalmazhatatlannak van nyilvánítva, akkor azon rész jelen szerződésből "
-"kizárásra kerül.\n"
-"Az egyezmény többi - alkalmazható - részét Önnek továbbra is be kell "
-"tartania.\n"
-"Jelen licenc kikötései és feltételei Franciaország törvényeinek hatálya alá "
-"tartoznak.\n"
-"A jelen licenc kikötéseivel kapcsolatos viták lezárásának legelőnyösebb "
-"módja egy\n"
-"bíróságon kívül történő megegyezés. Végső lehetőségként a vitás ügy a "
-"megfelelő\n"
-"párizsi (Franciaország) bíróságra kerül.\n"
-"Ha jelen dokumentummal kapcsolatban kérdése van, vegye fel a kapcsolatot a "
-"MandrakeSoft S.A.\n"
-"céggel.\n"
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Billentyűzet"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Válasszon billentyűzetkiosztást."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Itt található a billentyűzetek listája"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Melyik telepítési módot választja?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Telepítés/frissítés"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Új telepítés vagy frissítés?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Ajánlott"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Szakértő"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Frissítés"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Csak a csomagok frissítése"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Adja meg az egér típusát."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Egér port"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Válassza ki, hogy melyik soros porthoz csatlakozik az egere."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Egérgomb-emuláció"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "A 2. gomb emulálása"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "A 3. gomb emulálása"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIA kártyák beállítása..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "IDE beállítások"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "nincs elérhető partíció"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Csatolási pontok keresése a partíciókon"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Válassza ki a csatolási pontokat"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Nem sikerült beolvasni a partíciós táblát, túl rossz állapotban van.\n"
-"Meg lehet próbálni a hibás partíciók alapállapotba hozását (MINDEN ADAT\n"
-"ELVÉSZ EZEKRŐL!). Ha ezt nem fogadja el, akkor a DrakX nem fogja módosítani\n"
-"a partíciós táblát (a hiba: %s).\n"
-"\n"
-"Törölni szeretné az összes partíciót?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"A DiskDrake nem tudta rendesen beolvasni a partíciós táblát.\n"
-"Folytatás az Ön saját felelősségére."
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Nincs elég szabad hely az 1 MB-os betöltőprogramnak! A telepítés "
-"folytatható, de a rendszer indításához létre kell hozni egy rendszerindító "
-"partíciót a DiskDrake-kel."
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "A gyökérpartíció nem található, ezért nem lehet elvégezni a frissítést"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Gyökérpartíció"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Melyik a gyökérpartíció (/) a rendszerben?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"A partíciós tábla változásai csak a gép újraindítása után lépnek érvénybe"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Válassza ki a formázandó partíciókat"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Ellenőrizzem a rossz blokkokat?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "A partíciók formázása"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "%s fájl létrehozása és formázása"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Betelt a lapozóterület, növelje meg a telepítés befejezéséhez"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "A rendelkezésre álló csomagok keresése"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "A frissítendő csomagok keresése"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"A rendszeren nem maradt elég hely a telepítéshez vagy frissítéshez (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Teljes (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimális (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Javasolt (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Válasszon egy funkciót annak megfelelően, hogy betölteni kíván egy\n"
-"csomagkijelölést vagy a jelenlegi kijelölést szeretné elmenteni.\n"
-"A formátum ugyanaz, mint az automatikus telepítőfloppyknál."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Betöltés floppyról"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Betöltés floppyról"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Csomagkijelölés"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Tegye be a csomagkijelölést tartalmazó floppyt a meghajtóba"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Mentés floppyra"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "A kijelölt összméret nagyobb, mint a rendelkezésre álló hely"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "A telepítés típusa"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Egyetlen csomagcsoportot sem jelölt ki.\n"
-"Válassza ki, milyen fajta minimális telepítést szeretne."
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "X-szel együtt"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "Alapvető dokumentációval (javasolt)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Valóban minimális telepítés (urpmi sincs)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Ha a felsorolt CD-k rendelkezésre állnak, kattintson az OK gombra.\n"
-"Ha egy CD sem áll rendelkezésre a felsoroltak közül, akkor kattintson\n"
-"a Mégsem gombra.\n"
-"Ha a felsoroltak közül néhány CD hiányzik, törölje a kijelölésüket, majd\n"
-"kattintson az OK gombra."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "A(z) \"%s\" címkéjű CD"
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "A telepítés előkészítése"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"A(z) %s csomag telepítése\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Telepítés utáni beállítások"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Tegye be a rendszerindító floppyt a(z) \"%s\" meghajtóba"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Tegye be a frissítőmodulokat tartalmazó floppyt a(z) \"%s\" meghajtóba"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Most lehetőség nyílik arra, hogy titkosítással foglalkozó szoftverrészeket\n"
-"töltsön le.\n"
-"\n"
-"FIGYELEM:\n"
-"\n"
-"Mivel a titkosítással foglalkozó szoftvermodulok használatát különböző\n"
-"törvények szabályozzák, kizárólag a fogyasztó és/vagy felhasználó\n"
-"felelőssége eldönteni, hogy jogosult-e letölteni, tárolni és/vagy használni\n"
-"a kérdéses szoftvert.\n"
-"\n"
-"Továbbá, a fogyasztó és/vagy felhasználó különös figyelmet kell fordítson a\n"
-"helyi törvények és rendeletek betartására. Amennyiben a fogyasztó és/vagy\n"
-"felhasználó nem tartja be ezeket a törvényeket, súlyos büntetés szabható ki\n"
-"rá.\n"
-"\n"
-"A Mandrakesoft, a gyártók, vagy a szállítók semmilyen körülmények között\n"
-"sem tehetők felelőssé azon speciális, közvetett vagy járulékos károk\n"
-"keletkezéséért (beleértve, de nem kizárólagosan, a következőket:\n"
-"profitveszteség, üzletmenetben bekövetkezett zavarok, kereskedelmi adatok\n"
-"vesztése, valamint bármilyen más anyagi kár és esetlegesen bíróság által\n"
-"megítélt kártérítés), amik azon szoftverek használatából, birtoklásából "
-"vagy\n"
-"csak a letöltéséből erednek, amelyekhez a felhasználó és/vagy fogyasztó "
-"ezen\n"
-"megállapodás aláírása után hozzáférhet.\n"
-"\n"
-"\n"
-"Ha bármilyen kérdése van a fenti szerződéssel kapcsolatban, vegye fel\n"
-"a kapcsolatot a Mandrakesoft irodájával:\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Lehetősége van arra, hogy letöltse a disztribúció kiadása után\n"
-"frissített csomagokat.\n"
-"\n"
-"Ez általában biztonsági javításokat és hibajavításokat jelent.\n"
-"A funkció használatához szükség van egy beállított\n"
-"internetkapcsolatra.\n"
-"\n"
-"Szeretné feltelepíteni a frissítéseket ?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Kapcsolódás a Mandrake Linux webkiszolgálójához, az elérhető "
-"tükörkiszolgálók listájának lekérdezése"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Válasszon tükörkiszolgálót, ahonnan letölti a csomagokat"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr ""
-"Kapcsolatfelvétel a tükörkiszolgálóval, elérhető csomagok listájának "
-"letöltése"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Melyik időzónát választja?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "A gép órája GMT-időt mutat"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatikus időszinkronizáció (NTP-vel)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP-kiszolgáló"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Távoli CUPS-kiszolgáló"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Nincs nyomtató"
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "Van ISA hangkártyája?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-"A hangkártya beállításához futtassa az \"sndconfig\" programot a telepítés "
-"után"
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"A telepítő nem talált hangkártyát. Futtassa a \"harddrake\" programot a "
-"telepítés után"
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Összefoglalás"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Egér"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Időzóna"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Nyomtató"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDN-kártya"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Hangkártya"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV-tuner kártya"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Helyi fájlok"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Rendszergazdai (root) jelszó beállítása"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Nincs jelszó"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Ez a jelszó túl egyszerű (legalább %d karakter hosszúnak kell lennie)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Felhasználóazonosítás"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "LDAP-alapú azonosítás"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP alap-DN"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAP-kiszolgáló"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "NIS-alapú azonosítás"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS-tartomány"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS-kiszolgáló"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Az indítólemez segítségével a Linux rendszer akkor is elindítható, ha a\n"
-"merevlemezről történő indítás nem működik. Ez például akkor hasznos, ha\n"
-"nem kíván rendszerindító programot telepíteni, vagy egy másik operációs\n"
-"rendszer eltávolította a SILO-t, vagy ha a program nem tudja lekezelni a\n"
-"gép hardverét. Az indítólemez a Mandrake helyreállítólemezzel is\n"
-"használható, hogy súlyos meghibásodás esetén a rendszer állapota könnyen\n"
-"visszaállítható legyen.\n"
-"\n"
-"Ha szeretne indítólemezt készíteni, helyezzen be egy floppyt az\n"
-"első meghajtóba és nyomja meg az \"OK\" gombot."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Első floppy-meghajtó"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Második floppy-meghajtó"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Kihagyás"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Az indítólemez lehetővé teszi, hogy a Linux operációs rendszert a normál\n"
-"rendszerindító program nélkül is el lehessen indítani. Ez akkor hasznos,\n"
-"ha nem kíván LILO-t (illetve GRUB-ot) telepíteni a gépre, vagy egy másik\n"
-"operációs rendszer letörli a LILO-t, vagy a LILO nem működik az adott\n"
-"hardver-konfigurációval. Az indítólemezt használhatja a Mandrake\n"
-"helyreállítólemezzel együtt is, így sokkal egyszerűbb a helyreállítás egy\n"
-"rendszerhiba után. Szeretne most indítólemezt készíteni a rendszerhez?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-"\n"
-"\n"
-"(Figyelmeztetés: Mivel XFS fájlrendszert használ a gyökérpartícióhoz,\n"
-"ezért 1,44 megabájtos floppylemezből valószínűleg nem készíthető\n"
-"indítólemez - az XFS nagyméretű meghajtóprogramot igényel.)"
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Nincs elérhető floppy-meghajtó"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
-"Válassza ki azt a floppy-meghajtót, amelyet az indítólemez elkészítéséhez "
-"használni kíván"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Tegyen egy floppyt a(z) \"%s\" meghajtóba"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Indítólemez készül"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Rendszerbetöltő előkészítése"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"A gép típusa feltehetően OldWorld vagy Ismeretlen,\n"
-"ezért a Yaboot rendszerindító program nem fog működni.\n"
-"A telepítés folytatható, de az indításhoz\n"
-"a BootX-et kell majd használni."
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Szeretné az aboot-ot használni?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Hiba az aboot telepítésekor.\n"
-"Próbáljam újra a telepítést akkor is, ha ez esetleg tönkreteszi az első\n"
-"partíciót?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Rendszerindító program telepítése"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "A rendszerbetöltő telepítése nem sikerült. A hiba a következő:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Lehet, hogy módosítani kell az Open Firmware rendszerindítási eszköz\n"
-" beállításain a rendszerindító program használatához. Ha újraindítás után\n"
-" nem jelenik meg a prompt, nyomja le a Command-Option-O-F-et induláskor\n"
-" és írja be ezt: setenv boot-device %s,\\\\:tbxi\n"
-" Majd gépelje be ezt: shut-down\n"
-"A következő indítás után meg kell jelennie a promptnak."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Tegyen egy üres floppyt a(z) \"%s\" meghajtóba"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Automatikus telepítőfloppy készítése"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"A telepítés nem teljes, mivel egyes lépések kimaradtak.\n"
-"\n"
-"Biztos, hogy ki akar lépni?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Gratulálunk, a telepítés sikeresen befejeződött. Vegye ki az adathordozót,\n"
-"amiről a rendszer indítása történt (CD, floppylemez, ...), majd nyomja le\n"
-"az Enter billentyűt a rendszer újraindításához.\n"
-"\n"
-"Az ehhez a Mandrake Linux verzióhoz elérhető javításokról a következő\n"
-"helyen olvashat:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"A rendszer beállításával kapcsolatban a Hivatalos Mandrake Linux\n"
-"Felhasználói Kézikönyvben talál további információkat."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Automatikus telepítőfloppy készítése"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"Az automatikus telepítés akár teljesen automatikus is lehet,\n"
-"ebben az esetben az egész merevlemez tartalmát módosíthatja.\n"
-"Elsősorban akkor ajánlott, ha másik gépre is telepíteni kívánja\n"
-"a rendszert.\n"
-"\n"
-"Lehetőség van a telepítés újrajátszására is.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automatikus"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Újrajátszás"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Csomagösszeállítás mentése"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux telepítés %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-"<Tab>/<Alt+Tab> lépegetés | <Szóköz> kiválasztás | <F12> következő képernyő "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "nincs \"kdesu\""
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "nincs \"consolehelper\""
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Válasszon egy fájlt"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Speciális"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Alapvető"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Egy kis türelmet kérek"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Információ"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "A fa kibontása"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "A fa összecsukása"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Váltás sima és csoportok szerint rendezett nézet között"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Nem megfelelő választás, próbálja meg újra\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Melyiket választja? (az alapértelmezés: %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Kitöltendő bejegyzések:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Melyiket választja? (0/1, az alapértelmezés: \"%s\") "
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "\"%s\" gomb: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "Szeretne rákattintani erre a gombra? "
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Melyiket választja? (az alapértelmezés: \"%s\"%s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Sok választási lehetőség van (%s).\n"
-
-# Number is used to designate approximately the range of entries
-# you wish to edit because all of them would not fit on-screen.
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Jelölje ki a szerkeszteni kívánt 10-es tartomány első számát,\n"
-"vagy csak nyomja le az Enter billentyűt a továbblépéshez.\n"
-"Melyiket választja? "
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Megjegyzés: egy címke módosult:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Újraküldés"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "cseh (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "német"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak-féle"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "spanyol"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "finn"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "francia"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "norvég"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "lengyel"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "orosz"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "svéd"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "angol (UK) billentyűzet"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "USA-billentyűzet"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "albán"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "örmény (régi)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "örmény (írógép)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "örmény (fonetikus)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "azerbajdzsáni (latin)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "belga"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "bolgár (fonetikus)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "bolgár (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "brazil (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "fehérorosz"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "svájci (német kiosztás)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "svájci (francia kiosztás)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "cseh (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "német (\"dead key\" nélkül)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "dán"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak-féle (USA)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak-féle (norvég)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak-féle (svéd)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "észt"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "grúz (\"orosz\" kiosztás)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "grúz (\"latin\" kiosztás)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "görög"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "magyar"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "horvát"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "izraeli"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "izraeli (fonetikus)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "iráni"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "izlandi"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "olasz"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "japán 106-billentyűs"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "koreai billentyűzet"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "latin-amerikai"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "litván AZERTY (régi)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "litván AZERTY (új)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "litván \"számsor\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "litván \"fonetikus\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "lett"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "macedón"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "holland"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "lengyel (qwerty)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "lengyel (qwertz)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "portugál"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "kanadai (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "román (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "román (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "orosz (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "szlovén"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "szlovák (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "szlovák (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "szerb (cirill)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "tamil"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "thaiföldi billentyűzet"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "tadzsik billentyűzet"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "török (hagyományos \"F\" modell)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "török (modern \"Q\" modell)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "ukrán"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "USA-billentyűzet (nemzetközi)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "vietnámi \"számsor\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "jugoszláv (latin)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr "Jobb Alt gomb"
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr "A két Shift gomb egyszerre"
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr "Control és Shift gombok egyszerre"
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr "CapsLock gomb"
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl és Alt gombok egyszerre"
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt és Shift gombok egyszerre"
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr "\"Menu\" gomb"
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr "Bal \"Windows\" gomb"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr "Jobb \"Windows\" gomb"
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Körkörös csatlakoztatás - %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Először törölje az összes logikai kötetet\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"A 2.2-es kernelekhez nincsen PCMCIA-támogatás. Használjon 2.4-es kernelt."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun egér"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Általános PS/2-es görgős egér"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 gombos"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Általános 2 gombos egér"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Általános"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Görgős"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "Soros"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Általános 3 gombos egér"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (soros, régi C7 típus)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 gombos"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 gombos"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "egyik sem"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "nincs egér"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Az egér letesztelése"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Az egér aktiválásához "
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "MOZGASSA AZ EGÉRGÖRGŐT!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Befejezés"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Következő ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Előző"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Elfogadja?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Csatlakozás az internethez"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Az ADSL-en keresztüli csatlakozás legtöbbször PPPOE-vel történik,\n"
-"de előfordul a PPTP és a DHCP is.\n"
-"A PPPOE-t válassza, ha nem biztos a válaszban."
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel Speed Touch USB"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "DHCP használata"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "PPPOE használata"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "PPTP használata"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Melyik DHCP-klienst szeretné használni?\n"
-"Az alapértelmezés: dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Nem található Ethernet hálózati kártya a rendszerben.\n"
-"Nem tudom beállítani ezt a kapcsolattípust."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Hálózati csatoló kiválasztása"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Válassza ki, hogy melyik hálózati adapteren keresztül szeretne csatlakozni "
-"az internetre."
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "nem találtam hálózati kártyát"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Hálózat beállítása"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Most adja meg a gép nevét (ha ismeri).\n"
-"Néhány DHCP-kiszolgáló csak a gépnév megadása után használható.\n"
-"A teljes nevet kell beírni, például: \"gep.vallalat.hu\"."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Gépnév"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Hálózatbeállító varázsló"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Külső ISDN-modem"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Belső ISDN-kártya"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Milyen típusú az ISDN-kapcsolat?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Milyen típusú ISDN-beállításokat szeretne használni?\n"
-"\n"
-" - A régi típusú beállítás az isdn4net-re épül. Ez igen hatékony\n"
-"eszközöket tartalmaz, de beállítása nehézkes, és nem szabványos.\n"
-"\n"
-" - Az új típusú beállítás könnyen átlátható, szabványos,\n"
-"de kevesebb segédeszköz tartozik hozzá.\n"
-"\n"
-"Ha nincs kizáró ok, akkor inkább az utóbbit válassza.\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Új beállítás (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Régi beállítás (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN-beállítások"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Adja meg a szolgáltatója nevét.\n"
-"Ha az nincs benne a listában, válassza az \"Unlisted\"-et"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Európai protokoll"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Európa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "A világ többi része"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protokoll a világ többi részén \n"
-" D csatorna nélkül (bérelt vonal)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Melyik protokollt szeretné használni?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Milyen típusú kártyával rendelkezik?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Nem tudom"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Amennyiben ISA kártyája van, a következő képernyőn látható értékek\n"
-"beállítása lényeges.\n"
-"\n"
-"Ha PCMCIA kártyája van, tudnia kell a kártya IRQ és IO értékeit.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Megszakítás"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Folytatás"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Milyen ISDN-kártyája van?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Érzékeltem egy ISDN PCI kártyát, de nem ismertem fel a típusát. Kérem, "
-"válasszon ki egy PCI kártyát a következő képernyőn."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Nem találtam ISDN PCI kártyát. Válasszon ki egyet a következő képernyőn."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Válassza ki, hogy melyik soros portra csatlakozik a modeme."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Modemes csatlakozás beállításai"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Csatlakozás neve"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Telefonszám"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Felhasználónév"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Szkript-alapú"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Terminál-alapú"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Tartománynév"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Elsődleges DNS-kiszolgáló (nem kötelező)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Másodlagos DNS-kiszolgáló (nem kötelező)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Bonthatja a kapcsolatot vagy újra elvégezheti a beállításokat."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"A kapcsolat újból beállítható."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Jelenleg csatlakozva van az internethez."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Csatlakozás az internethez vagy a kapcsolat újbóli beállítása."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Jelenleg nincs csatlakozva az internethez."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Csatlakozás"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "A kapcsolat bontása"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "A kapcsolat beállítása"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Az internetkapcsolat beállítása"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "A(z) \"%s\" kapcsolat beállítása következik."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"A(z) \"%s\" kapcsolat beállítása következik.\n"
-"\n"
-"\n"
-"A továbblépéshez nyomja meg az OK gombot."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Hálózatbeállítás"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Mivel a hálózaton keresztül telepít, a hálózat beállítása már megtörtént.\n"
-"Kattintson az OK gombra a beállítások megtartásához, vagy a Mégsem gombra\n"
-"a hálózat és az internetkapcsolat újbóli beállításához.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Üdvözöljük a hálózatbeállító varázslóban!\n"
-"\n"
-"A hálózat és az internetkapcsolat beállítása következik.\n"
-"Törölje a kijelölést az opció mellől, ha nem kér automatikus felismerést.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Adja meg a beállítani kívánt profil nevét"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Automatikus detektálás"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Eszközök keresése..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Normál modemes kapcsolat"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "detektálva ezen a porton: %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN-kapcsolat"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "detektálva: %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ADSL-kapcsolat"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "detektálva a(z) %s csatlakozón"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Kábeles kapcsolat"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "kábeles kapcsolat detektálva"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Helyi hálózatos kapcsolat"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "Ethernet-kártya/kártyák detektálva"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Válassza ki a beállítani kívánt eszközt"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Egynél több internetkapcsolatot hozott létre.\n"
-"Válassza ki azt, amelyiket használni szeretné.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Internetkapcsolat"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Jöjjön létre a kapcsolat a rendszer indulásakor?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Hálózatbeállítás"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "A hálózatkezelést újra kell indítani"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Hiba történt a hálózatkezelés újraindításakor: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Gratulálunk! A hálózat és az internet-hozzáférés beállítása befejeződött.\n"
-"\n"
-"Most érvényesítem az új beállításokat.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Annak elvégzése után érdemes újraindítani az X környezetet,\n"
-"hogy a gépnév módosításából eredő problémák elkerülhetők legyenek."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"Beállítás közben problémák merültek fel.\n"
-"Tesztelje le a kapcsolatot a net_monitor vagy az mcc használatával. Ha a "
-"kapcsolat nem működik, esetleg indítsa el újra a beállítást."
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"Figyelem! Ez az eszköz már be lett állítva internet-hozzáféréshez.\n"
-"Elég elfogadni a már meglévő beállításokat.\n"
-"A lenti mezők módosításával felül lehet bírálni a beállításokat."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Kérem, adja meg a gép IP-beállításait.\n"
-"Minden mezőbe IP-címet írjon pontozott decimális formátumban\n"
-"(pl.: 192.169.10.11)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "A(z) %s hálózati eszköz beállítása"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (meghajtó - %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP-cím"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Hálózati maszk"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(BOOTP/DHCP)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Automatikus IP-cím"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Az IP-cím formátuma 1.2.3.4 legyen"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Adja meg a gépe nevét.\n"
-"A teljes nevet kell beírni, például: \"mybox.mylab.myco.com\".\n"
-"Megadhatja az átjáró (gateway) IP-címét is, ha van olyan."
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS-kiszolgáló"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Átjáró (például %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Átjáró-eszköz"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Proxy-beállítások"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP-proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP-proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "A hálózati kártya azonosítójának követése (laptopoknál hasznos)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "A proxy valami ilyen kell, hogy legyen: http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "A proxy valami ilyen kell, hogy legyen: ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Internet-beállítások"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Kipróbáljuk az internetkapcsolatot most?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "A kapcsolat ellenőrzése..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "A rendszer internetes kapcsolata él."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Biztonsági okokból lebontom a kapcsolatot."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Az internetkapcsolat feltehetően nem aktív.\n"
-"Próbálja meg újból elvégezni a beállítást."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "A kapcsolat beállítása"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Töltse ki vagy ellenőrizze az alábbi mezőket"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "Kártya IRQ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Kártya DMA"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "Kártya IO"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "Kártya IO_0"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "Kártya IO_1"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Az Ön saját telefonszáma"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "A szolgáltató neve (pl. provider.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "A szolgáltató telefonszáma"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Elsődleges DNS-kiszolgáló (nem kötelező)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Másodlagos DNS-kiszolgáló (nem kötelező)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Válassza ki az országot"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Tárcsázási mód"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Csatlakozási sebesség"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "A csatlakozás várakozási ideje (másodpercben)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Felhasználónév"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Jelszó"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "a csatlakoztatás nem sikerült: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "A kiterjesztett (extended) partíció nem támogatott ezen a platformon"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"A partíciós táblában van egy üres tartomány, de nem tudom használni.\n"
-"Az egyetlen megoldás az elsődleges partíció áthelyezése úgy, hogy\n"
-"a kiterjesztett partíciók mellé kerüljön az üres hely."
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "A(z) %s fájlból való visszaállítás sikertelen: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Hibás mentésfájl"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Hiba a(z) %s fájl írása közben"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Valamilyen probléma van a meghajtóval. \n"
-"Az adatintegritási teszt végrehajtása nem sikerült. \n"
-"Ez azt jelenti, hogy a lemezre való írás tönkreteheti a meghajtó \n"
-"adattartalmát."
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "nagyon fontos"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "fontos"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "erősen ajánlott"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "ajánlott"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "opcionális"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Helyi nyomtató"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Távoli nyomtató"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Távoli CUPS-nyomtató"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Távoli lpd-nyomtató"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Hálózati nyomtató (TCP/socket-alapú)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT-nyomtató"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "NetWare-nyomtató"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "A nyomtatóeszköz URI-ja"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "A feladat kimenetének átirányítása egy parancsba"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Ismeretlen modell"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Helyi nyomtatók"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Távoli nyomtatók"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " ezen a párhuzamos porton: \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", USB nyomtató \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", többfunkciós eszköz ezen a párhuzamos porton: \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", többfunkciós eszköz USB-n"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", többfunkciós eszköz HP JetDirect-en"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", többfunkciós eszköz"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", nyomtatás ide: %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "ezen az LPD kiszolgálón: \"%s\", nyomtató: \"%s\""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP gép \"%s\", port: %s"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "ezen a Windows kiszolgálón: \"%s\", megosztás: \"%s\""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "ezen a Novell kiszolgálón: \"%s\", nyomtató: \"%s\""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", ezzel a paranccsal: %s"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "\"Nyers\" nyomtató (nincs meghajtóprogram)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(itt: %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(ezen a gépen)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Ezen a CUPS-kiszolgálón: \"%s\""
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (alapértelmezés)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Válassza ki a nyomtató csatlakozásának típusát"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Hogyan van a nyomtató csatlakoztatva?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"A távoli CUPS-nyomtatókat nem kell beállítani, azokat a program "
-"automatikusan felismeri."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-msgid "CUPS configuration"
-msgstr "CUPS-beállítások"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-msgid "Specify CUPS server"
-msgstr "Adja meg a CUPS-kiszolgálót"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"A helyi hálózaton levő CUPS kiszolgálók nyomtatóinak eléréséhez Önnek nem "
-"szükséges beállítania semmiféle nyomtatót; a CUPS kiszolgálók automatikusan "
-"informálják az Ön gépét a rajtuk keresztül elérhető nyomtatókkal "
-"kapcsolatban. Az Ön gépe által ismert nyomtatók listája a PrinterDrake "
-"program főablakának \"Távoli nyomtatók\" részében látható. Ha a CUPS "
-"kiszolgáló egy másik hálózaton van, akkor meg kell adni a CUPS kiszolgáló IP-"
-"címét és - opcionálisan - a portszámot ahhoz, hogy a kiszolgálótól le "
-"lehessen kérdezni a nyomtatóinformációkat. Máskülönben hagyja üresen ezen "
-"mezőket."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"A CUPS beállítása általában automatikusan megtörténik a hálózat jellemzőinek "
-"megfelelően, hogy a helyi hálózaton található CUPS-nyomtatók használhatók "
-"legyenek. Ha a beállítás nem megfelelő, akkor kapcsolja ki az \"Automatikus "
-"CUPS-beállítás\" opciót és módosítsa kézzel az /etc/cups/cupsd.conf fájlt. "
-"Ne felejtse ezután újraindítani a CUPS szolgáltatást (például a \"service "
-"cups restart\" paranccsal)."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "Az IP-cím formátuma 192.168.1.20 legyen"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "A portnak egész számnak kell lennie!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "CUPS-kiszolgáló IP-címe"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Port"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Automatikus CUPS-beállítás"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Eszközök keresése..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "A portok ellenőrzése"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Nyomtató hozzáadása"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Üdvözli a nyomtatóbeállító varázsló.\n"
-"\n"
-"A varázsló lehetővé teszi helyi és távoli nyomtatók telepítését, amelyeket "
-"akár erről a gépről, akár a hálózat többi gépéről lehet majd használni.\n"
-"\n"
-"A nyomtató telepítéséhez szükséges adatokat a varázsló megkérdezi Öntől. "
-"Hozzáférést nyújt az elérhető nyomtatómeghajtókhoz és a meghajtóprogramok "
-"beállításaihoz, továbbá a nyomtatók kapcsolattípusát is képes beállítani."
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Helyi nyomtató"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Üdvözli a nyomtatóbeállító varázsló.\n"
-"\n"
-"A varázsló segítséget nyújt a számítógéphez csatlakoztatott nyomtatók "
-"beállításához.\n"
-"\n"
-"Csatlakoztassa a megfelelő nyomtatókat a géphez, és kapcsolja be azokat. A "
-"folytatáshoz kattintson a \"Következő\" gombra; ha viszont nem kívánja most "
-"beállítani a nyomtatókat, akkor kattintson a \"Mégsem\" gombra.\n"
-"\n"
-"Bizonyos számítógépek lefagyhatnak a nyomtató-felderítési folyamat közben. "
-"Ha felderítés nélkül kíván nyomtatót telepíteni, akkor kapcsolja ki a "
-"\"Nyomtatók automatikus felismerése\" opciót. Ha egy olyan távoli nyomtatót "
-"kíván beállítani, amelyet a PrinterDrake nem listáz automatikusan, akkor "
-"használja a program \"Szakértői mód\" üzemmódját."
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Nyomtatók automatikus felismerése"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"Gratulálunk, a nyomtató beállítása sikeresen megtörtént.\n"
-"\n"
-"Nyomtatni általában az alkalmazások \"Fájl\" menüjében levő \"Nyomtatás\" "
-"funkcióval lehet.\n"
-"\n"
-"Ha szeretne egy új nyomtatót felvenni, vagy egy meglevőt eltávolítani "
-"illetve átnevezni, vagy ha szeretné módosítani az alapértelmezés szerinti "
-"beállításokat (papírforrás, nyomtatási minőség, ...), akkor használja a "
-"Mandrake Vezérlőközpont \"Hardver\" részében található \"Nyomtató\" "
-"alkalmazást."
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Nyomtatók automatikus felismerése"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"A PrinterDrake program képes felismerni a helyileg csatlakoztatott "
-"párhuzamos- illetve USB-csatlakozású nyomtatókat. Bizonyos gépeken a "
-"nyomtatók automatikus felderítése lefagyaszthatja a rendszert, ami a "
-"fájlrendszerekben hibákat idézhet elő. Csak akkor használja ezt a "
-"lehetőséget, ha tisztában van ezzel!\n"
-"\n"
-"Szeretne automatikus nyomtatófelderítést?"
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Automatikus detektálás"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "A nyomtató kézi beállítása"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "Felismert eszköz: %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Nyomtató ezen a párhuzamos porton: \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "USB nyomtató: \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Helyi nyomtató nem található. Egy nyomtató kézi telepítéséhez adjon meg egy "
-"eszköznevet illetve fájlnevet a beviteli sorban (párhuzamos portok: /dev/"
-"lp0, /dev/lp1, ... (amelyek egyenértékűek a következőkkel: LPT1:, "
-"LPT2:, ...), első USB nyomtató: /dev/usb/lp0, második USB nyomtató: /dev/usb/"
-"lp1, ...)."
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Egy eszköz- vagy fájlnevet kell megadni."
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Helyi nyomtató nem található.\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Hálózati nyomtatót csak a rendszer telepítését követően lehet telepíteni. "
-"Ehhez használja a Mandrake Vezérlőközpont \"Hardver\" részében a \"Nyomtató"
-"\" funkciót."
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Hálózati nyomtató telepítéséhez tegye a következőket: kattintson a \"Mégsem"
-"\" gombra, majd kapcsoljon \"Szakértői mód\" üzemmódba, azután kattintson "
-"ismét a \"Nyomtató hozzáadása\" gombra."
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"A rendszer a következő nyomtatót találta. Ha nem ezt szeretné beállítani, "
-"akkor adjon meg egy eszköznevet illetve fájlnevet a beviteli sorban."
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"A rendszer a következő nyomtatókat találta. Válassza ki, melyik nyomtatót "
-"kívánja beállítani, vagy adjon meg egy eszköznevet illetve fájlnevet a "
-"beviteli sorban."
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-"A rendszer a következő nyomtatót találta. A nyomtató automatikusan "
-"beállításra kerül. Ha a nyomtató helytelenül volt felismerve, vagy ha Ön "
-"szeretné módosítani annak beállításait, akkor kapcsolja be a \"Kézi beállítás"
-"\" opciót."
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-"A rendszer a következő nyomtatókat találta. Válassza ki, melyik nyomtatót "
-"kívánja beállítani. A nyomtató automatikusan beállításra kerül. Ha a "
-"nyomtató helytelenül volt felismerve, vagy ha Ön szeretné módosítani annak "
-"beállításait, akkor kapcsolja be a \"Kézi beállítás\" opciót."
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Válassza ki, melyik portra van csatlakoztatva a nyomtató, vagy adjon meg egy "
-"eszköznevet illetve fájlnevet a beviteli sorban"
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Válassza ki, melyik portra van csatlakoztatva a nyomtató."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (párhuzamos portok: /dev/lp0, /dev/lp1, ... (egyenértékűek ezekkel: LPT1:, "
-"LPT2:, ...), első USB nyomtató: /dev/usb/lp0, második USB nyomtató: /dev/usb/"
-"lp1, ...)."
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Ki kell választania illetve meg kell adnia egy nyomtatót vagy eszközt."
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Kézi beállítás"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-"Az Ön nyomtatója egy HP többfunkciós eszköz (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 lapolvasóval)?"
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "HPOJ csomag telepítése..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Az eszköz ellenőrzése és a HPOJ beállítása..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "SANE csomag telepítése..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Lapolvasás az Ön HP többfunkciós eszközén"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "A nyomtatóport elérhetővé tétele a CUPS számára ..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "A nyomtató-adatbázis beolvasása..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Távoli lpd nyomtató beállításai"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Távoli lpd nyomtató használatához meg kell adni a nyomtatókiszolgáló nevét "
-"és a nyomtató nevét."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "A távoli gép neve"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "A távoli nyomtató neve"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "A távoli gép neve nem lehet üres!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "A távoli nyomtató neve nem lehet üres!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) nyomtatási beállítások"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Ahhoz, hogy SMB-nyomtatóra tudjon nyomtatni, meg kell adnia a "
-"nyomtatókiszolgáló SMB-nevét (nem biztos, hogy ugyanaz, mint a TCP/IP-"
-"gépnév!) és IP-címét, a megosztott nyomtató nevét, és egy megfelelő "
-"jogosultságokkal rendelkező felhasználó nevét, jelszavát és munkacsoportját."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Az SMB-kiszolgáló neve"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "Az SMB-kiszolgáló IP-címe"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Megosztásnév"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Munkacsoport"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "A kiszolgáló nevét vagy IP-címét meg kell adni!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "A Samba megosztásnév üres!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr "BIZTONSÁGI FIGYELMEZTETÉS"
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Egy windowsos névvel illetve jelszóval történő nyomtatás beállítása "
-"következik. Egy, a Samba-kliens architektúrájában levő hiba miatt a jelszó "
-"kódolatlanul bekerül a Samba-kliens azon parancssorába, amely a windowsos "
-"kiszolgáló számára átadja a nyomtatási feladatot. Így ezen gép minden "
-"felhasználójának lehetősége van arra - például a \"ps auxwww\" parancs "
-"használatával -, hogy megjelenítse a jelszót.\n"
-"\n"
-"Javasoljuk, hogy használja a következő lehetőségek valamelyikét (azt "
-"mindenféleképpen biztosítani kell - például tűzfal használatával -, hogy "
-"csak a helyi hálózat gépei férjenek hozzá a windowsos kiszolgálóhoz):\n"
-"\n"
-"Használjon a windowsos kiszolgálón egy jelszó nélküli felhasználóazonosítót "
-"(például: \"GUEST\") vagy egy nyomtatási célokra szánt speciális azonosítót. "
-"Ne szüntesse meg a jelszóvédelmet semmilyen személyes azonosítón, és a "
-"rendszergazdai azonosítón sem.\n"
-"\n"
-"Állítsa be a windowsos kiszolgálót úgy, hogy az LPD protokollon keresztül "
-"tegye elérhetővé a nyomtatót. Ezután állítsa be az erről a gépről történő "
-"nyomtatást \"%s\" kapcsolattípussal a PrinterDrake programban.\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Állítsa be a windowsos kiszolgálót úgy, hogy az IPP protokollon keresztül "
-"tegye elérhetővé a nyomtatót. Ezután állítsa be az erről a gépről történő "
-"nyomtatást \"%s\" kapcsolattípussal a PrinterDrake programban.\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"Csatlakoztassa a nyomtatót egy linuxos kiszolgálóhoz, és tegye lehetővé a "
-"windowsos gépek számára az ahhoz kliensként való csatlakozást.\n"
-"\n"
-"Valóban folytatni szeretné a nyomtató ilyen módon történő beállítását?"
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "NetWare nyomtatóbeállítások"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Ahhoz, hogy NetWare nyomtatóra tudjon nyomtatni, meg kell adnia a NetWare "
-"nyomtatókiszolgáló nevét (ez nem biztos, hogy megegyezik a TCP/IP "
-"gépnévvel!), a nyomtatási sor nevét, és egy megfelelő jogosultságokkal "
-"rendelkező felhasználói nevet és jelszót."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Nyomtatókiszolgáló"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "A nyomtatási sor neve"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "Az NCP-kiszolgáló neve üres!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "Az NCP-sor neve üres!"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/socket-alapú nyomtatási beállítások"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Ahhoz, hogy egy TCP/socket-alapú nyomtatóra nyomtathasson, meg kell adnia a "
-"nyomtatóhoz tartozó gépnevet és opcionálisan a nyomtató portszámát. HP "
-"JetDirect kiszolgálókon a port száma általában 9100; más kiszolgálókon ez "
-"más érték lehet. A hardver kézikönyvében valószínűleg talál további "
-"információt."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "A nyomtató gépneve"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "A nyomtató gépneve üres!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "A nyomtatóeszköz URI-ja"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Közvetlenül megadható a nyomtató elérési URI-ja. Az URI-nak meg kell "
-"felelnie a CUPS vagy a Foomatic előírásainak. Nem minden URI-típust támogat "
-"minden sorkezelő."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Érvényes URI-t kell megadni."
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Minden nyomtatóhoz meg kell adni egy nevet (például: \"nyomtató\"). A Leírás "
-"és Hely mezőket nem kötelező kitölteni, csak tájékoztatási célt szolgálnak."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "A nyomtató neve"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Leírás"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Hely"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "A nyomtató-adatbázis előkészítése..."
-
-#: ../../printerdrake.pm_.c:1112
-msgid "Your printer model"
-msgstr "A nyomtató típusa"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"A PrinterDrake összehasonlította a nyomtatófelderítésből származó típusnevet "
-"a nyomtatóadatbázisában szereplőkkel, és kiválasztotta a legmegfelelőbb "
-"típust. Nem biztos, hogy ez a választás jó; főleg akkor, ha a nyomtató nem "
-"szerepel az adatbázisban. Ellenőrizze, hogy helyes-e a választás. Ha helyes, "
-"akkor kattintson \"A típus megfelelő\" gombra; ha viszont nem, akkor a "
-"\"Típuskiválasztás kézzel\" gombra kattintson. Az utóbbi esetben a következő "
-"képernyőn lehet kiválasztani a nyomtatótípust.\n"
-"\n"
-"Az Ön nyomtatója a PrinterDrake szerint:\n"
-"\n"
-"%s"
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-msgid "The model is correct"
-msgstr "A típus megfelelő"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-msgid "Select model manually"
-msgstr "Típuskiválasztás kézzel"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "A nyomtató típusának kiválasztása"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Milyen típusú a nyomtató?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Ellenőrizze, hogy a PrinterDrake helyesen\n"
-"határozta-e meg a nyomtató típusát. Ha a\n"
-"kurzor egy nem megfelelő típuson áll, vagy\n"
-"a \"Nyers nyomtató\" bejegyzésen, akkor\n"
-"keresse meg a megfelelő típust a listában."
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Ha a nyomtatója nem szerepel a listában, akkor válasszon egy azzal "
-"kompatibilis nyomtatót (információk a nyomtató kézikönyvében) vagy egy "
-"hasonlót."
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "OKI windowsos nyomtató beállítása"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Ön egy OKI windowsos lézernyomtató beállítását végzi. Ezek a nyomtatók egy "
-"speciális kommunikációs protokollt használnak, ami miatt csak akkor képesek "
-"működni, ha az első párhuzamos portra vannak csatlakoztatva. Ha az Ön "
-"nyomtatója egy másik portra vagy egy nyomtatókiszolgálóhoz csatlakozik, "
-"akkor tegye azt át az első párhuzamos portra, még mielőtt tesztoldalt "
-"nyomtatna - máskülönben a nyomtató nem fog működni. A kapcsolattípus-"
-"beállítást a meghajtóprogram figyelmen kívül hagyja."
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark tintasugaras nyomtató beállítása"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"A Lexmark által biztosított tintasugarasnyomtató-meghajtóprogramok csak "
-"helyi nyomtatókat támogatnak, tehát távoli gépen vagy nyomtatókiszolgálón "
-"levőket nem. Csatlakoztassa a nyomtatót egy helyi portra, vagy állítsa azt "
-"be azon a gépen, amelyhez az csatlakoztatva van."
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-"Ahhoz, hogy nyomtatni tudjon a Lexmark tintasugaras nyomtatóval ezen a "
-"gépen, szüksége lesz a Lexmark (http://www.lexmark.com/) által biztosított "
-"megfelelő meghajtóprogramokra. Látogasson el az USA-beli honlapra és "
-"kattintson a \"Drivers\" (meghajtóprogramok) gombra. Ezután válassza ki a "
-"megfelelő nyomtatótípust, majd operációs rendszerként a \"Linux\"-t. A "
-"meghajtóprogramok RPM csomagok illetve interaktív grafikus telepítést "
-"lehetővé tevő szkriptek formájában érhetők el. Nem szükséges a grafikus "
-"felületen végezni a beállítást. Lépjen ki a licencegyezmény után. Ezután "
-"nyomtasson nyomtatófej-igazítási oldalakat \"lexmarkmaintain\"-nel, és "
-"szükség esetén módosítsa a fej-igazítási beállításokat ezzel a programmal."
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"A nyomtató alapértelmezései\n"
-"\n"
-"Ellenőrizze, hogy a papírméret és a tinta típusa illetve a nyomtatási mód "
-"(ha van olyan) helyesen van-e beállítva. Lézernyomtató esetén ellenőrizze a "
-"hardverbeállításokat is (memória, duplex egység, extra tálcák). Ha a "
-"nyomtatási minőséget nagyon magasra állítja, akkor a nyomtatási idő "
-"jelentősen megnőhet."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "A(z) %s értéknek egész számnak kell lennie!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "A(z) %s értéknek számnak kell lennie!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "A(z) %s érték nem esik a megfelelő tartományba!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Be szeretné állítani a(z) \"%s\"\n"
-"nyomtatót alapértelmezettnek?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Tesztoldalak"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Válassza ki a kinyomtatni kívánt tesztoldalakat.\n"
-"Megjegyzés: a fényképes tesztoldal kinyomtatása sokáig eltarthat, sőt egyes, "
-"kevés memóriával ellátott lézernyomtatókon el sem fog készülni. Általában "
-"elég a normál tesztoldalt kinyomtatni."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Nem kell tesztoldal"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Nyomtatás"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Normál tesztoldal"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Más tesztoldal (Letter)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Más tesztoldal (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Fényképes tesztoldal"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "Ne nyomtasson tesztoldalt"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "A tesztoldal(ak) nyomtatása folyik..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"A tesztoldal(aka)t elküldtem a nyomtatóra.\n"
-"Eltarthat egy ideig, amíg a nyomtatás elindul.\n"
-"Nyomtatási állapot:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"A tesztoldal(aka)t elküldtem a nyomtatóra.\n"
-"Eltarthat egy ideig, amíg a nyomtatás elindul.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "Sikerült a nyomtatás?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "\"Nyers\" nyomtató"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Egy fájl parancssorból (terminálablakból) való nyomtatásához használhatja a "
-"következő parancsot: \"%s <fájl>\" vagy egy grafikus felületű "
-"nyomtatóeszközt: \"xpp <fájl>\" illetve \"kprinter <fájl>\". A grafikus "
-"eszközök lehetővé teszik a nyomtató kijelölését és a beállítások egyszerű "
-"módosítását.\n"
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Ezeket a parancsokat használhatja számos alkalmazás nyomtatási "
-"párbeszédablakában is (a nyomtatási parancsot megadó mezőben), de ott ne "
-"adjon meg fájlnevet, mert a fájlt az alkalmazás fogja biztosítani.\n"
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"A(z) \"%s\" parancs szintén lehetővé teszi a beállítások módosítását egy "
-"bizonyos nyomtatási feladatra vonatkozóan. Egyszerűen adja hozzá a kívánt "
-"paramétereket a parancshoz, például: \"%s <fájl>\". "
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"Ha szeretne egy listát az aktuális nyomtatóhoz használható opciókról, akkor "
-"olvassa el a lentebbi listát, vagy kattintson a \"Nyomtatási beállítások "
-"listája\" gombra.%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Itt láthatók az aktuális nyomtató nyomtatási opciói:\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Egy fájl parancssorból (terminálablakból) való nyomtatásához használja a "
-"következő parancsot: \"%s <fájl>\".\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Ezt a parancsot használhatja számos alkalmazás nyomtatási párbeszédablakában "
-"is (a nyomtatási parancsot megadó mezőben), de ott ne adjon meg fájlnevet, "
-"mert a fájlt az alkalmazás fogja biztosítani.\n"
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Ha szeretne egy listát az aktuális nyomtatóhoz használható opciókról, akkor "
-"kattintson a \"Nyomtatási beállítások listája\" gombra."
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Egy fájl parancssorból (terminálablakból) való nyomtatásához használja a "
-"következő parancsot: \"%s <fájl>\" vagy ezt: \"%s <fájl>\".\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Az opciók beállításához és a nyomtatási feladatok kezeléséhez használhatja "
-"az \"xpdq\" grafikus felületet is.\n"
-"Ha munkaasztali környezetként a KDE-t használja, akkor rendelkezésére áll "
-"egy \"pánikgomb\" - egy \"Nyomtató leállítása\" feliratú ikon a "
-"munkaasztalon, amellyel azonnali jelleggel leállítható az összes nyomtatási "
-"feladat. Ez például papírberagadás esetén hasznos.\n"
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"A(z) \"%s\" és a(z) \"%s\" parancs lehetővé teszi egy adott nyomtatási "
-"feladat beállításainak módosítását is. Adja hozzá a kívánt beállításokat a "
-"parancshoz, például: \"%s <fájl>\".\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Bezárás"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Nyomtatás/lapolvasás ezen: \"%s\""
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Nyomtatás a(z) \"%s\" nyomtatóra"
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Nyomtatási beállítások listája"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Az Ön HP többfunkciós eszközén automatikusan be lett állítva a lapolvasás. "
-"Lapolvasást parancssorból a \"scanimage\" programmal végezhet (\"scanimage -"
-"d hp:%s\" a lapolvasó megadásához, ha több is van); grafikus felületen pedig "
-"az \"xscanimage\" vagy az \"xsane\" programmal. Ha a GIMP programot "
-"használja, akkor a \"Fájl\"/\"Külső forrás\" menü megfelelő menüpontjával is "
-"végezhet lapolvasást. További információkat a \"man scanimage\" és a \"man "
-"sane-hp\" parancsoknak a parancssorban való kiadásával szerezhet.\n"
-"\n"
-"Ehhez az eszközhöz ne használja a \"scannerdrake\" programot!"
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Az Ön HP többfunkciós eszközén automatikusan be lett állítva a lapolvasás. "
-"Lapolvasást parancssorból a \"ptal-hp %s scan ...\" paranccsal végezhet. "
-"Grafikus felületen és a GIMP programban egyelőre nem lehet lapolvasást "
-"végezni ezen az eszközön. További információkat a \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" fájlban találhat. Ha HP LaserJet 1100 vagy 1200 típusú "
-"nyomtatója van, akkor csak a lapolvasási lehetőség megléte esetén végezhet "
-"lapolvasást azon az eszközön.\n"
-"\n"
-"Ehhez az eszközhöz ne használja a \"scannerdrake\" programot!"
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "A nyomtató adatainak beolvasása..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "A nyomtatóbeállítások átvitele"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"A(z) %s sorkezelő nyomtatóbeállításai átmásolhatók a(z) %s sorkezelő (amely "
-"az aktuális sorkezelő) számára. Az összes beállítás (nyomtatónév, leírás, "
-"hely, kapcsolódási típus illetve alapértelmezett beállítások) át lesz véve, "
-"de a nyomtatási feladatok nem kerülnek át.\n"
-"A következő okok miatt nem minden nyomtatási sor vihető át:\n"
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"A CUPS nem támogatja a Novell-alapú és a kötetlen parancsformátumú "
-"nyomtatókat.\n"
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"A PDQ csak a helyi nyomtatókat, a távoli LPD-nyomtatókat és a socket/TCP-"
-"alapú nyomtatókat támogatja.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "Az LPD és az LPRng nem támogatja az IPP-nyomtatókat.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Nem vihetők át azon nyomtatási sorok, amelyek nem ezzel a programmal és nem "
-"a \"foomatic-configure\"-rel készültek."
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Továbbá a gyártó által adott PPD fájlokkal beállított nyomtatók és a "
-"közvetlen CUPS-meghajtóval ellátott nyomtatók beállításai nem vihetők át."
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Jelölje ki az átviendő nyomtatókat, majd kattintson az \n"
-"\"Átvitel\" gombra."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Az átvitel kihagyása"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Átvitel"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"A(z) \"%s\" nevű nyomtató már létezik itt: %s. \n"
-"Kattintson az \"Átvitel\" gombra annak felülírásához.\n"
-"Esetleg adjon meg egy másik nevet vagy hagyja ki a nyomtatót."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"A nyomtató nevében csak angol betű, számjegy és az aláhúzás szerepelhet."
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"\"%s\" nevű nyomtató már létezik,\n"
-"felül szeretné írni annak beállításait?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Új nyomtatónév"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "%s átvitele..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"A korábbi alapértelmezett nyomtató (\"%s\") beállításai átvitelre kerültek. "
-"Az új %s nyomtatási rendszerben is ez legyen az alapértelmezett nyomtató?"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "A nyomtató adatainak frissítése..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Távoli nyomtató beállítása"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "A hálózat elindítása..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Hálózat beállítása most"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "Hálózati funkciók nincsenek beállítva"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Egy távoli nyomtató beállítása következik. Ehhez működő hálózati hozzáférés "
-"szükséges, viszont az Ön hálózata még nincsen beállítva. Ha továbblép a "
-"hálózat beállítása nélkül, akkor nem lesz lehetősége a most beállítandó "
-"nyomtató használatára. Mit szeretne tenni?"
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Folytatás a hálózat beállítása nélkül"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-"A telepítés közben végezhető hálózatbeállítás nem indítható el. A gép "
-"újraindítása után vizsgálja meg, hogy a hálózat elérhető-e, és javítsa ki a "
-"beállításokat a Mandrake Vezérlőközpont \"Hálózat és internet\"/\"Kapcsolat"
-"\" részében, azután állítsa be a nyomtatót a Mandrake Vezérlőközpont "
-"\"Hardver\"/\"Nyomtató\" részében."
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"A hálózati hozzáférés nem volt elindítva, és az elindítása sem lehetséges. "
-"Ellenőrizze a beállításokat és a hardvert, majd próbálkozzon újra a távoli "
-"nyomtató beállításával."
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "A nyomtatási rendszer újraindítása..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "magas"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "paranoiás"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Nyomtatórendszer telepítése a következő biztonsági szinten: %s"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Most a(z) %s nyomtatási rendszer telepítése következik egy \"%s\" biztonsági "
-"szinten működő gépre.\n"
-"\n"
-"Ez a nyomtatási rendszer egy szolgáltatást (háttérfolyamatot) futtat, amely "
-"nyomtatási feladatokra vár és kezeli azokat. Ez a szolgáltatás elérhető "
-"távoli gépekről is a hálózaton keresztül, ezért támadási felületet nyújthat. "
-"Emiatt alapértelmezésben csak néhány kiválasztott szolgáltatás kerül "
-"elindításra ezen a biztonsági szinten.\n"
-"\n"
-"Biztos abban, hogy be szeretne állítani nyomtatást ezen a gépen?"
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "A nyomtatási rendszer elindítása a rendszer indulásakor"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"A nyomtatási rendszer (%s) nem kerül automatikus elindításra a gép "
-"indulásakor.\n"
-"\n"
-"Elképzelhető, hogy az automatikus indítás ki lett kapcsolva egy magasabb "
-"biztonsági szintre való váltással, mivel a nyomtatási rendszer támadási "
-"felületet nyújthat.\n"
-"\n"
-"Szeretné a nyomtatási rendszer automatikus indítását ismét bekapcsolni?"
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "A telepített szoftverek ellenőrzése..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "Az LPRng eltávolítása..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "Az LPD eltávolítása..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Válassza ki a nyomtatási rendszert"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Melyik nyomtatási rendszert (sorkezelőt) szeretné használni?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "A(z) \"%s\" nyomtató beállítása..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "A Foomatic telepítése..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Nyomtatóbeállítások"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "A PrinterDrake előkészítése..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-msgid "Configuring applications..."
-msgstr "Alkalmazások beállítása..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Szeretné beállítani a nyomtatókezelést?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Nyomtatási rendszer: "
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "PrinterDrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"A következő nyomtatók vannak beállítva. Ha módosítani szeretné egy nyomtató "
-"beállításait, vagy alapértelmezetté kíván tenni egy nyomtatót, vagy le "
-"szeretné kérdezni egy nyomtató adatait, vagy egy távoli CUPS-kiszolgálón "
-"levő nyomtatót elérhetővé szeretne tenni a StarOffice/OpenOffice.org program "
-"számára, akkor kattintson duplán a megfelelő nyomtatóra."
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"A következő nyomtatók vannak beállítva. Egy nyomtató beállításainak "
-"módosításához, egy nyomtató alapértelmezetté tételéhez vagy az adatainak a "
-"lekérdezéséhez kattintson duplán a megfelelő nyomtatóra."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Nyomtatók listájának frissítése (az összes elérhető távoli CUPS-nyomtató "
-"megjelenítése érdekében)"
-
-#: ../../printerdrake.pm_.c:2464
-msgid "Change the printing system"
-msgstr "Nyomtatási rendszer módosítása"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Normál mód"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Szeretne beállítani egy másik nyomtatót?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "A nyomtatóbeállítás módosítása"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Nyomtató: %s\n"
-"Mit szeretne megváltoztatni ennél a nyomtatónál?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "Mehet!"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "A nyomtató kapcsolódási típusa"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Nyomtatónév, leírás, hely"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "A nyomtató gyártója, típusa, meghajtóprogramja"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "A nyomtató gyártója, típusa"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Legyen ez a nyomtató az alapértelmezett"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "A nyomtató felvétele a StarOffice-ba/OpenOffice.org-ba"
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "A nyomtató eltávolítása a StarOffice-ból/OpenOffice.org-ból"
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Tesztoldalak nyomtatása"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Hogyan kell használni ezt a nyomtatót"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Nyomtató eltávolítása"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "A régi \"%s\" nyomtató eltávolítása..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Az alapértelmezett nyomtató"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "A(z) \"%s\" nyomtató lesz ezután az alapértelmezett nyomtató."
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "A nyomtató felvétele a StarOffice-ba/OpenOffice.org-ba"
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-"A(z) \"%s\" nyomtató sikeresen fel lett véve a StarOffice-ba/OpenOffice.org-"
-"ba."
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-"A(z) \"%s\" nyomtatót nem sikerült felvenni a StarOffice-ba/OpenOffice.org-"
-"ba."
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "A nyomtató eltávolítása a StarOffice-ból/OpenOffice.org-ból"
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-"A(z) \"%s\" nyomtató sikeresen el lett távolítva a StarOffice-ból/OpenOffice."
-"org-ból."
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-"A(z) \"%s\" nyomtatót nem sikerült eltávolítani a StarOffice-ból/OpenOffice."
-"org-ból."
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Biztosan el szeretné távolítani a(z) \"%s\" nyomtatót?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "A(z) \"%s\" nyomtató eltávolítása..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Proxy-beállítások"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Üdvözöljük a proxy-beállító segédprogramban!\n"
-"\n"
-"Itt lehet megadni a HTTP- és FTP-proxy adatait,\n"
-"a bejelentkezési információval együtt\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Adja meg a HTTP-proxy adatait.\n"
-"Hagyja üresen, ha nem kíván HTTP-proxyt használni."
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "port"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "Az URL-nek így kell kezdődnie: \"http:\""
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "A portnak számnak kell lennie"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Adja meg az FTP-proxy adatait.\n"
-"Hagyja üresen, ha nem kíván FTP-proxyt használni."
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Az URL-nek így kell kezdődnie: \"ftp:\""
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Adja meg a proxy használatához szükséges nevet és jelszót.\n"
-"Hagyja üresen, ha erre nincs szükség."
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "felhasználónév"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "jelszó"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "a jelszó még egyszer"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "A jelszavak nem egyeznek meg, adja meg őket még egyszer!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Nem tudok partíciót hozzáadni a _formázott_ RAID md%d bejegyzéshez"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Nem tudom írni a(z) %s fájlt"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid sikertelen"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "Az mkraid végrehajtása nem sikerült (talán hiányzik a raidtools?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Nincs elég partíció a RAID %d szinthez\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Az ALSA (Advanced Linux Sound Architecture) hangrendszer elindítása"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, a parancsidőzítő."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"Az apmd monitorozza a telepek állapotát és naplóz a syslog-ba.\n"
-"Segítségével leállítható a gép, mielőtt a telep lemerül."
-
-#: ../../services.pm_.c:18
-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 ""
-"Az \"at\" parancs által ütemezett utasításokat hajtja végre a megadott\n"
-"időpontban, valamint kötegelt (batch-elt) parancsokat futtat, amikor\n"
-"a gép terhelése alacsony."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"A cron a szabványos parancsütemező program a UNIX operációs rendszereken.\n"
-"Segítségével programokat lehet futtatni megadott időpontokban. A vixie cron\n"
-"az alap cron-nál fejlettebb; biztonságosabb és több beállítási lehetőséggel\n"
-"rendelkezik annál."
-
-#: ../../services.pm_.c:23
-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 ""
-"A GPM egértámogatást biztosít a szöveg-alapú (konzolos) linuxos\n"
-"alkalmazások (mint például a Midnight Commander) számára. Lehetőséget\n"
-"nyújt egérrel való másolásra illetve beillesztésre, valamint\n"
-"felbukkanó menük használatára (konzolon)."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"A HardDrake a gép hardverének ellenőrzésére szolgál. Lehetővé teszi az új\n"
-"vagy megváltozott hardver megfelelő beállítását."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Az Apache egy WWW szerver. HTML fájlokat és CGI-t tesz elérhetővé\n"
-"a hálózaton keresztül."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Az \"internet szuperszerver szolgáltatás\" (inetd) felelős sok hálózati\n"
-"szolgáltatás indításáért, mint például telnet, ftp, rsh és rlogin. Az inetd\n"
-"leállításával minden általa irányított szolgáltatás leáll."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"A csomagszűrés bekapcsolása a Linux kernel 2.2-es változatához.\n"
-"Lehetővé teszi tűzfal beállítását, hogy a hálózat felőli támadások\n"
-"kivédhetők legyenek."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Ez a csomag tölti be a billentyűzetkiosztást, ami a\n"
-"/etc/sysconfig/keyboard -ban állítható be. A beállítás megváltoztatható\n"
-"a kbdconfig programmal. Ezt bekapcsolva kell hagyni a legtöbb rendszeren."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"A kernel fejlécének automatikus újragenerálása a /boot-ban a\n"
-"/usr/include/linux/{autoconf,version}.h alapján"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-"A hardvereszközök automatikus felismerése és beállítása a rendszer "
-"indulásakor."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"A Linuxconf elvégez bizonyos feladatokat a rendszer indításakor,\n"
-"hogy a beállítások konzisztensek maradjanak."
-
-#: ../../services.pm_.c:43
-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 ""
-"Az lpd nyomtatószolgáltatás szükséges az lpr rendes működéséhez. Az lpd\n"
-"alapjában véve egy nyomtatószerver, elrendezi a nyomtatásokat a különböző\n"
-"nyomtatók között."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual Server, nagyteljesítményű, nagy rendelkezésre állású\n"
-"kiszolgáló kialakításához használható."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"A named (BIND) egy DNS, azaz tartománynév-kiszolgáló, ennek segítségével\n"
-"feleltetik meg a gépek az IP-címeket és a gépneveket."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Fel- illetve lecsatolja (mount-olja illetve unmount-olja) a különböző\n"
-"hálózati fájlrendszereket, mint például az NFS, az SMB\n"
-"(LAN Manager/Windows) és az NCP (NetWare)."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktiválja vagy deaktiválja a rendszerindításnál automatikusan induló\n"
-"hálózati csatolókat."
-
-#: ../../services.pm_.c:52
-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 ""
-"Az NFS egy népszerű, TCP/IP hálózaton használatos fájlmegosztási protokoll.\n"
-"Ez a szolgáltatás egy NFS-kiszolgáló, konfigurálása a /etc/exports\n"
-"fájlon át történik."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"Az NFS egy népszerű, TCP/IP hálózaton használatos fájlmegosztási protokoll.\n"
-"Ez a szolgáltatás az NFS lock-olást oldja meg."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"A NumLock automatikus bekapcsolása indításkor a konzolon és az\n"
-"XFree-ben."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Az OKI 4w és az azzal kompatibilis windowsos nyomtatók támogatása."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"A PCMCIA-támogatásra általában azoknak a laptop-felhasználóknak van\n"
-"szükségük, akik PCMCIA modemet vagy hálózati kártyát használnak a gépükben.\n"
-"A szolgáltatás nem indul el, ha nincs beállítva, tehát nyugodtan fel lehet\n"
-"telepíteni olyan gépre is, ahol nincs rá szükség."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"A portmapper kezeli az RPC kapcsolatokat, ezekre többek között a NIS-nek és\n"
-"az NFS-nek van szüksége. A portmap szerverre csak a (NIS vagy NFS) szerver\n"
-"gépeken van szükség."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"A Postfix egy levéltovábbító (MTA) program, amely a leveleket továbbítja\n"
-"a különböző gépek között."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Elmenti és visszaállítja a rendszer entrópia-tárolóját, így jobb\n"
-"véletlenszámokat lehet generálni."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Közvetlen elérésű (raw) eszközök blokkeszközökhöz való rendelése (például\n"
-"merevlemezes partíciókhoz), hogy az alkalmazásokból (pl. Oracle)\n"
-"hozzáférhetők legyenek."
-
-#: ../../services.pm_.c:71
-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 ""
-"A routed szolgáltatás lehetővé teszi, hogy a RIP protokoll segítségével\n"
-"automatikusan frissüljön az IP protokoll által használt útválasztó tábla\n"
-"(IP routing table).\n"
-"A RIP elterjedt a kis hálózatokon; a nagyobb, bonyolultabb hálózatok más\n"
-"útválasztó protokollokat igényelnek."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Az rstat protokoll segítségével a felhasználók információt kaphatnak a\n"
-"(lokális) hálózaton működő gépekről."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Az rusers protokoll segítségével a felhasználók lekérdezhetik, hogy melyik\n"
-"gépre ki van bejelentkezve."
-
-#: ../../services.pm_.c:78
-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 ""
-"Az rwho protokoll segítségével távoli felhasználók kaphatnak egy listát\n"
-"az rwho szolgáltatást futtató gép aktuális felhasználóiról (olyan, mint a\n"
-"finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "A gép hangrendszerének elindítása"
-
-#: ../../services.pm_.c:81
-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 ""
-"A syslog-on keresztül naplóznak a szolgáltatások különböző naplófájlokba.\n"
-"A syslog használata mindig ajánlott."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Az USB-eszközök meghajtóinak betöltése."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Elindítja az X betűtípus-kiszolgálóját (erre szükség van az XFree "
-"használatához)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Válassza ki, mely szolgáltatások induljanak el rendszerindításkor"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Nyomtatás"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Fájlmegosztás"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "Rendszer"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Távoli adminisztráció"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Adatbázis-kiszolgáló"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Szolgáltatások: %d aktivált, %d regisztrált"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Szolgáltatások"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "fut"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "leállítva"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Szolgáltatások és démonok"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Nem érhető el további információ\n"
-"erről a szolgáltatásról."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Indításkor"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Start"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Stop"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Köszönjük, hogy a Mandrake Linux 8.2 rendszert választotta"
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr "Üdvözöljük a Nyílt Forráskód világában"
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-"A MandrakeSoft cég sikere a Szabad Szoftver elven alapul. Az Ön új operációs "
-"rendszere a világméretű Linux-közösség együttműködő munkájának eredménye."
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "Csatlakozzon a Szabad Szoftver világához"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-"Ismerje meg a Nyílt Forráskód közösséget, és váljon tagjává. Tanuljon, "
-"oktasson és segítsen más felhasználókat a közösségi (\"Community\") "
-"weblapjainkon található fórumokhoz csatlakozva."
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet és üzenetküldés"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-"A Mandrake Linux 8.2 használatával az internet összes szolgáltatása "
-"elérhető. Böngésszen a weben és nézzen animációkat a Mozillával vagy a "
-"Konquerorral; olvassa leveleit és kezelje személyes információit az "
-"Evolutionnel vagy a KMaillel; ..."
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimédia és grafika"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-"A Mandrake Linux 8.2 segítségével kihasználhatja a számítógép multimédiás "
-"lehetőségeit. Játssza le zenéit és videóit, nézzen TV-t, szerkessze képeit a "
-"legújabb programokkal."
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Fejlesztés"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-"A Mandrake Linux 8.2 egy nagyszerű fejlesztőrendszer. Használja fel a GNU "
-"GCC fordító és a legjobb nyílt forráskódú fejlesztőkörnyezetek erejét."
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Mandrake Vezérlőközpont"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-"A Mandrake Linux 8.2 Vezérlőközponttal testreszabható és beállítható az "
-"egész rendszer"
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "Felhasználói felületek"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-"A Mandrake Linux 8.2 rendszerben 11 különböző grafikus környezet illetve "
-"ablakkezelő közül lehet választani, mint például: GNOME 1.4, KDE 2.2.2, "
-"WindowMaker 0.8"
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Kiszolgálóprogramok"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-"Alakítsa gépét kiszolgálóvá néhány egérkattintással: web, email, tűzfal, "
-"útválasztó, fájlkiszolgáló, nyomtatókiszolgáló, ..."
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Játékok"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-"A Mandrake Linux 8.2 a nyílt forráskódú játékok legjobbját nyújtja - "
-"ügyességi játékok, akció, kártyajátékok, sport, stratégia, ..."
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-"Szeretné megismerni a Linuxt egyszerűen, gyorsan és ingyenesen? "
-"MandrakeCampus nevű online oktatóközpontunkban ingyenes Linux-oktatást "
-"biztosítunk, ahol lehetősége lesz a tudásának letesztelésére is."
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-"Minőségi támogatás a Linux-közösségtől és a MandrakeSofttól. Ha komolyabban "
-"ismeri a Linuxt, akkor szakértőként megoszthatja ismereteit másokkal a "
-"támogatási weblapunkon."
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-"Tanácsadóink rendelkezésre állnak az Ön összes IT-projektjéhez - "
-"testreszabott megoldásokat kínálva az Ön igényeinek elemzését követően. A "
-"MandrakeSoft komoly tapasztalataival valódi alternatívát nyújt az Ön cége "
-"számára."
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-"Linuxos megoldások teljes skálája, speciális termékajánlatok, valamint egyéb "
-"árucikkek elektronikus üzletünkben"
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-"A MandrakeSoft professzionális szolgáltatásaival illetve kereskedelmi "
-"ajánlataival kapcsolatos további információkért látogassa meg a következő "
-"weblapot:"
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Csomagok telepítése..."
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Nem tudom beolvasni a partíciós táblát, túl rossz állapotban van.\n"
-"Megpróbálom törölni a rossz partíciókat"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Hiba!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Nem található a(z) \"%s\" képfájl."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Az automatikus telepítés beállításai"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Egy automatikus telepítőfloppy beállítása következik. Ez veszélyes lehet, "
-"ezért körültekintéssel használandó.\n"
-"\n"
-"Ennek segítségével újrajátszható az Ön által ezen gépen végrehajtott "
-"telepítés - közben bizonyos lépéseknél kérdéseket tesz majd fel a program "
-"egyes értékek módosítása érdekében.\n"
-"\n"
-"A maximális biztonság kedvéért a partícionálási és formázási műveletek soha "
-"nem lesznek automatikusan végrehajtva, bármit is választott Ön ezen gép "
-"telepítése során.\n"
-"\n"
-"Kívánja folytatni?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Az automatikus lépések beállításai"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Adja meg mindegyik lépésnél, hogy újrajátszással vagy kézi vezérléssel "
-"történjen"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Üdvözöljük.\n"
-"\n"
-"Az automatikus telepítés paraméterei a bal oldalon érhetők el"
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Gratulálunk!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"A floppy létrehozása sikeresen befejeződött.\n"
-"A telepítés újralejátszása elvégezhető."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Automatikus telepítés"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Elem hozzáadása"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Az utolsó elem eltávolítása"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup jelentés \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup szolgáltatás - jelentés\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup jelentés - részletek\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "előrehaladás"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "Rendszerfájlok mentése..."
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "Fájlok merevlemezes mentése..."
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "Felhasználói fájlok mentése..."
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Merevlemezes mentés folyamatban..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Egyéb fájlok mentése..."
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"fájlok küldése FTP-n: %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) FTP-kapcsolati probléma: A mentésfájlok FTP-n keresztül történő küldése "
-"sikertelen.\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Hiba levélküldés közben. \n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "Fájlkijelölés"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-"Válassza ki a fájlokat illetve könyvtárakat, majd kattintson a \"Hozzáadás\" "
-"gombra"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Jelölje be azokat az opciókat, amelyekre szüksége van.\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Ezekkel a funkciókkal a /etc könyvtár összes fájlja elmenthető illetve "
-"visszatölthető.\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Rendszerfájlok mentése ( /etc könyvtár )"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Inkrementális mentés (a korábbi mentések nem lesznek felülírva)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "A kritikus fájlok kihagyása (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Ezzel az opcióval a /etc könyvtár bármely állapota\n"
-"visszatölthető lesz."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr "Jelölje ki az összes felhasználót, amelynek adatait menteni szeretné."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "A böngésző-gyorstár kihagyása"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Inkrementális mentések (a korábbi mentések nem lesznek felülírva)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Kijelöltek eltávolítása"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "Felhasználók"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Mentés FTP-kapcsolaton keresztül"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Adja meg a gépnevet vagy az IP-címet."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-"Adja meg a könyvtárt, amelybe a\n"
-" mentésfájlok kerüljenek az adott gépen."
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Adja meg a felhasználói nevét"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Adja meg a jelszavát"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Emlékezzen a jelszóra"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP-kapcsolat"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Biztonságos kapcsolat"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "Mentés CD-re/DVD-re"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Adja meg, mennyi hely van a CD-n"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "Ha CD-RW lemezt használ, jelölje be az opciót"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Ha előtte le kívánja törölni a CD-RW lemezt, jelölje be az opciót"
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Ha telepítős indítólemezt (CD) szeretne,\n"
-" jelölje be az opciót."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Adja meg a CD-író eszközazonosítóját,\n"
-" például: 0,1,0"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "Mentés szalagra"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "Adja meg a mentéshez használandó eszköznevet"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Adja meg a DrakBackup program számára\n"
-" engedélyezett maximális méretet"
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Adja meg a könyvtárt, ahova menteni kell:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Kvóta használata a mentésfájlokhoz."
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "Hálózat"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CD / DVD"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "Merevlemez / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "óránként"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "naponta"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "hetente"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "havonta"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "Szolgáltatás használata"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"Adja meg a mentések közti \n"
-"időintervallumot"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"Adja meg a mentési\n"
-"médiát."
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Merevlemez használata szolgáltatással"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "FTP használata szolgáltatással"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-"Győződjön meg arról, hogy a cron szolgáltatás a szolgáltatások közt van."
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "Levél küldése minden mentés után ide:"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "Mit"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "Hova"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "Mikor"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "További opciók"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "A DrakBackup beállítása"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Válassza ki, hogy hova szeretne menteni"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "merevlemezre"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "hálózaton keresztül"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Válassza ki, hogy mit szeretne menteni"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "A rendszer mentése"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "A felhasználók adatainak mentése"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Felhasználó kézi kiválasztása"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Mentési források: \n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Rendszerfájlok:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Felhasználói fájlok:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Egyéb fájlok:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- Mentés merevlemezre a következő helyre: %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- Mentés FTP-n keresztül a következő gépre: %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t felhasználónév: %s\n"
-"\t\t útvonal: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Beállítások:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tA rendszerfájlok kihagyása\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\ttar és bzip2 használata a mentésekhez\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\ttar és gzip használata a mentésekhez\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- Szolgáltatások (%s):\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t-Merevlemez\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-CD\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Hálózat FTP-n keresztül\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Hálózat SSH-n keresztül\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Nincs beállítás. Használja a varázslót vagy a Speciális opciót.\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"A visszatöltendő adatok listája:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"A sérült adatok listája:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "A következő alkalommal szüntesse meg a kijelölést vagy törölje."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "A mentésfájlok sérültek"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " Az összes kijelölt adat "
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " vissza lett töltve ide: %s "
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " Beállítás visszatöltése "
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "Az egyéb fájlok is visszatölthetők."
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "A visszatöltendő felhasználók (csak a legutóbbi dátumok lényegesek)"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "Az ez előtti rendszerfájlok mentése:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "adja meg a visszatöltési dátumot"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Mentés merevlemezre"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Visszatöltés merevlemezről"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "Adja meg a könyvtárt, ahol a mentések vannak"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Válasszon más médiát a visszatöltéshez"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Egyéb média"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "Rendszer visszatöltése"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Felhasználók visszatöltése"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Egyéb adatok visszatöltése"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "válassza ki a visszatöltendő útvonalat (a / helyett)"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Új mentés készítése visszatöltés előtt (csak inkrementális mentéshez)"
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Felhasználói könyvtárak törlése visszatöltés előtt"
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Az összes mentés visszatöltése"
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "Egyéni visszatöltés"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Segítség"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "Előző"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Mentés"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Mentésfájlok elkészítése"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Visszatöltés"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Következő"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Készítsen mentést, mielőtt visszatöltést végezne\n"
-" (vagy pedig ellenőrizze, jól adta-e meg az útvonalat)."
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"Hiba a sendmail hívása közben.\n"
-" A jelentés nem lett elküldve.\n"
-" Ellenőrizze a sendmail beállítását."
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Telepítendő csomagok listája"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Hiba a fájl FTP-vel való átvitele közben.\n"
-" Ellenőrizze az FTP-vel kapcsolatos beállításokat."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Válassza ki a visszatöltendő adatokat..."
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Válasszon mentési médiát..."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Válassza ki a mentendő adatokat..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Beállítási fájl nem található. \n"
-"Használja a varázslót vagy a Speciális opciót."
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "Fejlesztés alatt..."
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "Rendszerfájlok mentése"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "Felhasználói fájlok mentése"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Egyéb fájlok mentése"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Előrehaladás"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "fájlok küldése FTP-n"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Fájlok küldése..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "A CD-re írandó adatok listája"
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Adja meg a CD-író sebességét"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Adja meg a CD-író eszközazonosítóját (például: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Ha telepítős indítólemezt (CD) szeretne, jelölje be az opciót."
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "Mentés most a beállítások alapján"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Mentési beállítások megtekintése."
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "Beállítás a varázslóval"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "Speciális beállítások"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "Mentés most"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "DrakBackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-"opciók leírása:\n"
-"\n"
-" Ebben a lépésben a következőket lehet módosítani:\n"
-"\n"
-" - Tömörítési mód:\n"
-" \n"
-" Ha bzip2 tömörítést választ, az adatok jobban lesznek\n"
-" tömörítve, mint a gzip esetén (körülbelül 2-10 %-kal).\n"
-" Alapértelmezésben nincs bejelölve ez az opció, mivel ez a\n"
-" tömörítési mód több időt igényel (körülbelül 1000 %-kal többet).\n"
-" \n"
-" - Frissítési mód:\n"
-"\n"
-" Ez az opció frissíti a mentést, de nem igazán hasznos,\n"
-" mivel frissítés előtt ki kell tömöríteni a mentést.\n"
-" \n"
-" - .backupignore mód:\n"
-"\n"
-" Ahogyan a CVS esetén, a DrakBackup kihagy minden olyan\n"
-" fájlt, ami a megfelelő könyvtárban levő .backupignore\n"
-" fájlban hivatkozva van. Példa a .backupignore fájl\n"
-" lehetséges tartalmára: \n"
-" *.o\n"
-" *~\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-"\n"
-" Bizonyos, a sendmail futása közben fellépő hibáknak a\n"
-" postfix helytelen beállítása az oka. A kijavítás érdekében\n"
-" állítsa be a \"myhostname\"-et vagy a \"mydomain\"-t a\n"
-" /etc/postfix/main.cf fájlban.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-"opciók leírása:\n"
-"\n"
-" - Rendszerfájlok mentése:\n"
-" \n"
-"\tLehetővé teszi a /etc könyvtár mentését. Ez a könyvtár\n"
-"\ta beállítási fájlokat tartalmazza. Visszatöltés közben\n"
-"\tlegyen óvatos, nehogy felülírja a következő fájlokat:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Felhasználói fájlok mentése: \n"
-"\n"
-"\tLehetővé teszi annak kiválasztását, hogy mely \n"
-"\tfelhasználók adatait kívánja menteni.\n"
-"\tHogy ne legyen feleslegesen használva a lemezhely, \n"
-"\tjavasolt a böngésző gyorstárának fájljait kihagyni.\n"
-"\n"
-" - Egyéb fájlok mentése: \n"
-"\n"
-"\tLehetővé teszi további mentendő adatok kijelölését.\n"
-"\tEz a módszer egyelőre nem használható az inkrementális \n"
-"\tmentéssel együtt.\t\t\n"
-" \n"
-" - Inkrementális mentések:\n"
-"\n"
-"\tAz inkrementális mentés talán a legrugalmasabb \n"
-"\tmentési módszer. Ezen módszer használata esetén \n"
-"\taz első mentés (amely még teljes mentés) után \n"
-"\tmár csak a változások kerülnek mentésre.\n"
-"\tVisszatöltésnél lehetőség van arra, hogy egy\n"
-"\tadott dátumra vonatkozóan legyenek visszatöltve\n"
-"\taz adatok.\n"
-"\tHa ez az opció nincs bejelölve, akkor az összes korábbi\n"
-"\tmentés le lesz törölve minden mentési folyamat előtt. \n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"a visszatöltés leírása:\n"
-" \n"
-"Csak a legutóbbi dátum lesz felhasználva, mivel inkrementális \n"
-"mentés esetén az összes korábbi mentést vissza kell tölteni.\n"
-"\n"
-"Ha tehát nem akarja visszatölteni egy felhasználó adatait, akkor\n"
-"törölje az ahhoz tartozó összes opciót.\n"
-"\n"
-"Máskülönben csak egyet választhat ki közülük.\n"
-"\n"
-" - Inkrementális mentések:\n"
-"\n"
-"\tAz inkrementális mentés talán a legrugalmasabb \n"
-"\tmentési módszer. Ezen módszer használata esetén \n"
-"\taz első mentés (amely még teljes mentés) után \n"
-"\tmár csak a változások kerülnek mentésre.\n"
-"\tVisszatöltésnél lehetőség van arra, hogy egy\n"
-"\tadott dátumra vonatkozóan legyenek visszatöltve\n"
-"\taz adatok.\n"
-"\tHa ez az opció nincs bejelölve, akkor az összes korábbi\n"
-"\tmentés le lesz törölve minden mentési folyamat előtt. \n"
-"\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft - DUPONT Sebastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-" Ez a program szabad szoftver; terjeszthető és/vagy módosítható\n"
-" a Free Software Foundation által publikált GNU General Public\n"
-" License 2. vagy annál újabb verziója alapján.\n"
-"\n"
-" A program annak reményében kerül terjesztésre, hogy hasznosnak\n"
-" bizonyul, de GARANCIA NÉLKÜL; még a PIACKÉPESSÉG illetve\n"
-" egy BIZONYOS CÉLRA VALÓ ALKALMASSÁG sincs garantálva. További\n"
-" részletek a GNU General Public License-ben.\n"
-"\n"
-" A programmal együtt Önnek kapnia kellett egy példányt a GNU General\n"
-" Public License-ből; ha nem így történt, írjon a következő címre:\n"
-" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
-" MA 02111-1307, USA."
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-"Leírás:\n"
-"\n"
-" A DrakBackup program a rendszer mentésére használható.\n"
-" Beállítható, mi legyen mentve:\n"
-"\t- rendszerfájlok\n"
-"\t- felhasználói fájlok\n"
-"\t- egyéb fájlok\n"
-"\tvagy a teljes rendszer és az egyéb adatok (például Windows partíciók)\n"
-"\n"
-" A DrakBackup a következő helyekre képes menteni:\n"
-"\t- merevlemez\n"
-"\t- NFS\n"
-"\t- CD (CD-RW), DVD (automatikus rendszerindítással,\n"
-"\t helyreállítással és automatikus telepítéssel)\n"
-"\t- FTP\n"
-"\t- rsync\n"
-"\t- Webdav\n"
-"\t- szalag\n"
-"\n"
-" A DrakBackup lehetővé teszi a rendszernek egy kiválasztott\n"
-" könyvtárba való visszatöltését.\n"
-"\n"
-" Alapértelmezés szerint az összes mentés a /var/lib/drakbackup\n"
-" könyvtárba kerül.\n"
-"\n"
-" A beállításokat tartalmazó fájl:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Mentés visszatöltése:\n"
-"\n"
-" Visszatöltés közben a DrakBackup eltávolítja az\n"
-" eredeti könyvtárt, és ellenőrzi, hogy nincsenek-e\n"
-" megsérülve a mentéseket tároló fájlok. Visszatöltés\n"
-" előtt javasolt még egy mentést készíteni.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-"Az opciók leírása:\n"
-"\n"
-"Legyen óvatos, amikor FTP-s mentést használ - csak a már elkészült \n"
-"mentésfájlokat küldi a program a kiszolgálóra.\n"
-"Ez azt jelenti, hogy jelenleg el kell készíteni a mentést a \n"
-"merevlemezre, mielőtt a kiszolgálóra lenne küldve.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-"\n"
-"Mentés visszatöltésével kapcsolatos problémák:\n"
-"\n"
-"Visszatöltés közben a DrakBackup ellenőrzi az összes mentésfájlt,\n"
-"mielőtt visszatöltene azokból.\n"
-"Visszatöltés előtt a program eltávolítja az eredeti könyvtárt,\n"
-"így elvesznek az ott levő adatok.\n"
-"A mentésfájlokat kézzel ne módosítsa.\n"
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-"Leírás:\n"
-"\n"
-" A DrakBackup program a rendszer mentésére használható.\n"
-" Beállítható, mi legyen mentve:\n"
-"\t- rendszerfájlok\n"
-"\t- felhasználói fájlok\n"
-"\t- egyéb fájlok\n"
-"\tvagy a teljes rendszer és az egyéb adatok (például Windows partíciók)\n"
-"\n"
-" A DrakBackup a következő helyekre képes menteni:\n"
-"\t- merevlemez\n"
-"\t- NFS\n"
-"\t- CD (CD-RW), DVD (automatikus rendszerindítással,\n"
-"\t helyreállítással és automatikus telepítéssel)\n"
-"\t- FTP\n"
-"\t- rsync\n"
-"\t- Webdav\n"
-"\t- szalag\n"
-"\n"
-" A DrakBackup lehetővé teszi a rendszernek egy kiválasztott\n"
-" könyvtárba való visszatöltését.\n"
-"\n"
-" Alapértelmezés szerint az összes mentés a /var/lib/drakbackup\n"
-" könyvtárba kerül.\n"
-"\n"
-" A beállításokat tartalmazó fájl:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Mentés visszatöltése:\n"
-"\n"
-" Visszatöltés közben a DrakBackup eltávolítja az\n"
-" eredeti könyvtárt, és ellenőrzi, hogy nincsenek-e\n"
-" megsérülve a mentéseket tároló fájlok. Visszatöltés\n"
-" előtt javasolt még egy mentést készíteni.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "A(z) %s telepítése nem sikerült a következő hiba miatt:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Telepített betűtípusok keresése"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Telepített betűtípusok kijelölésének törlése"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "az összes betűtípus vizsgálata"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "betűtípus nem található"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "kész"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "a csatlakoztatott partíciókon betűtípus nem található"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Jó betűtípusok ismételt kiválasztása"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "betűtípus nem található\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Betűtípusok keresése a telepítettek közt"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Betűtípus-másolás"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "TrueType betűtípusok telepítése"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "kérem, várjon: ttmkfdir..."
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "TrueType-telepítés kész"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "Betűtípus-konvertálás"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "type1inst készítése"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr "Ghostscript-hivatkozás"
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "ttf betűtípusok konvertálása"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "pfm betűtípusok konvertálása"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Átmeneti fájlok elhagyása"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "XFS újraindítása"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Betűtípus-fájlok elhagyása"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "XFS újraindítása"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Mielőtt bármilyen betűtípus telepítésébe kezdene, bizonyosodjon meg arról, "
-"hogy van joga azok telepítéséhez illetve használatához.\n"
-"\n"
-"-A betűtípusokat a szokott módon telepítheti. Bizonyos hibás betűtípusok "
-"lefagyaszthatják az X kiszolgálót."
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "Betűtípusok importálása"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Windowsos betűtípusok"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Betűtípusok eltávolítása"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Speciális opciók"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Betűtípus-lista"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Válassza ki, mely alkalmazások fogják használni a betűtípusokat:"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "AbiWord"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Általános nyomtatók"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-"Válassza ki a betűtípus-fájlt vagy -könyvtárt, majd kattintson a \"Hozzáadás"
-"\" gombra"
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Telepítési lista"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "kattintson ide, ha biztos benne"
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "ide, ha nem"
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "Kijelölések megszüntetése"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Mindent kijelöl"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "Lista eltávolítása"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Tesztelés"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Betűtípusok másolása a rendszerbe"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Betűtípusok telepítése és konvertálása"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Telepítés után"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "A rendszerben található betűtípusok eltávolítása"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Eltávolítás után"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Internetkapcsolat megosztása"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Az internetkapcsolat megosztása engedélyezve van"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Az internetkapcsolat megosztása már megtörtént.\n"
-"A megosztott kapcsolat használható.\n"
-"\n"
-"Mit szeretne tenni?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "Letiltás"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "Mégsem"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "Beállítás újból"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "A kiszolgálók letiltása..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Az internetkapcsolat-megosztás letiltása megtörtént."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Az internetkapcsolat megosztása nincs engedélyezve"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Az internetkapcsolat megosztása korábban már megtörtént.\n"
-"A megosztott kapcsolat használata nincs engedélyezve.\n"
-"\n"
-"Mit szeretne tenni?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "Engedélyezés"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "A kiszolgálók engedélyezése..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Az internetkapcsolat megosztása most már engedélyezett."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Az internetkapcsolat megosztásának beállítása következik.\n"
-"Ennek segítségével a helyi hálózat más gépei is elérhetik az internetet\n"
-"ezen a kapcsolaton keresztül.\n"
-"\n"
-"Megjegyzés: a helyi hálózat (LAN) használatához legalább egy hálózati\n"
-"csatolókártya szükséges."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "%s csatoló (a(z) %s modul felhasználásával)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "%s csatoló"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Nem található hálózati csatolókártya a számítógépben."
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Nem található Ethernet hálózati adapter a rendszerben. Futtassa a "
-"hardverkonfigurációs eszközt."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Hálózati csatolófelület"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Egyetlen beállított hálózati csatolókártya található a gépben:\n"
-"\n"
-"%s\n"
-"\n"
-"A helyi hálózat paramétereit ehhez a csatolóhoz fogom beállítani."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Válassza ki, hogy milyen kártyával csatlakozik a helyi hálózathoz."
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Hálózati csatoló már be lett állítva"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"Figyelmeztetés: a hálózati kártya (%s) már be van állítva.\n"
-"\n"
-"Szeretne automatikus újrakonfigurálást?\n"
-"\n"
-"Elvégezheti Ön is kézzel, de csak ha biztos abban, hogy mit tesz."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Automatikus újrakonfigurálás"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "Jelenlegi csatolóbeállítás megjelenítése"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"\"%s\" jelenlegi beállítása:\n"
-"\n"
-"Hálózat: %s\n"
-"IP-cím: %s\n"
-"IP-tulajdonságok: %s\n"
-"Meghajtó: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Megtartható a jelenlegi beállítás, ekkor feltételezve lesz, hogy már "
-"megtörtént egy DHCP kiszolgáló beállítása. Ebben az esetben ellenőrizze, "
-"hogy helyesen lett-e meghatározva a helyi hálózathoz használt C osztályú "
-"tartomány. Nem történik újrakonfigurálás, és a DHCP kiszolgáló beállításai "
-"sem kerülnek módosításra.\n"
-"\n"
-"Újra is konfigurálható a csatoló illetve beállítható egy DHCP kiszolgáló.\n"
-"\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "C osztályú helyi hálózat"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "DHCP kiszolgáló IP-címe"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Csatoló és DHCP kiszolgáló újrakonfigurálása"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "A helyi hálózati cím nem \".0\"-ra végződik, kilépek."
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Hálózati címhibát észleltem az aktuális konfigurációban: %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "A tűzfal beállításait sikerült felismerni."
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Figyelem! Egy már létező tűzfalbeállítást találtam. Néhány apróbb "
-"módosításra szükség lehet a telepítés elvégzése után."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Beállítás..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Beállítószkriptek, szoftvertelepítés, szerverek indítása..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "A(z) %s csomag telepítésénél hiba történt"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"A beállítás sikeresen befejeződött.\n"
-"Az internetkapcsolat most már bármelyik, a helyi hálózaton található géppel "
-"megosztható az automatikus hálózati címkiosztás (DHCP) segítségével."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "A megosztás már megtörtént, de a kapcsolat használata le van tiltva."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "A megosztás már megtörtént, a kapcsolat használható."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Az internetkapcsolat megosztása még nem történt meg."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Az internetkapcsolat megosztásának beállítása"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Üdvözöljük az internetkapcsolat-megosztás beállítóprogramjában!\n"
-"\n"
-"%s\n"
-"\n"
-"Kattintson a Beállítás gombra a beállításvarázsló elindításához."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Hálózatbeállítás (%d csatoló)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Profil törlése..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "A törölni kívánt profil:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Új profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"A létrehozandó profil neve (az új profil az aktuális pontos másolata lesz):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Gépnév: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internet-hozzáférés"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Típus:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Átjáró (gateway):"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Csatoló:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Állapot:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Kis türelmet"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Az internet-hozzáférés beállítása..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "A helyi hálózat beállítása"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Meghajtó"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Csatoló"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokoll"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Állapot"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "A helyi hálózat beállítása..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "A varázsló indításához kattintson ide ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Varázsló..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Alkalmazás"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Egy kis türelmet kérek, végrehajtom a kért módosításokat"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Csatlakozva"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nincs csatlakozva"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Csatlakozás..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "A kapcsolat bontása..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Figyelmeztetés: egy másik internetkapcsolat is létezik, esetleg a hálózatot "
-"használva"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Egyetlen csatoló sincs beállítva.\n"
-"A beállítás elvégzéséhez kattintson a \"Beállítás\" gombra."
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "A helyi hálózat beállítása"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "%s csatoló: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Rendszerindítási protokoll"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Automatikus indítás"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-kliens"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktiválás most"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktiválás most"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Ez a csatoló még nem lett beállítva.\n"
-"A beállítóvarázslót a főablakban indíthatja el."
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nincs beállítva egyetlen internetkapcsolat sem.\n"
-"Kapcsolat létrehozásához kattintson a \"Beállítás\" gombra."
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetkapcsolat beállítása"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetkapcsolat beállítása"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "A csatlakozás típusa: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Paraméterek"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Átjáró (gateway)"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet-kártya"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-kliens"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Biztonsági szint beállítása"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Vezérlőközpont"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Válassza ki a használni kívánt eszközt"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "Kanada (kábel)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (sugárzás)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "USA (kábel)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "USA (kábel-hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Kína (sugárzás)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japán (sugárzás)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "Japán (kábel)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Kelet-Európa"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Írország"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "Nyugat-Európa"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Ausztrália"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "Új-Zéland"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "Dél-Afrika"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Argentína"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Adja meg\n"
-"a TV-normát és az országot"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "TV-norma:"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Terület:"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "TV-csatornák keresése..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "TV-csatornák keresése"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr "TV-kártya nem található."
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-"TV-kártya nem található a gépben. Ellenőrizze, hogy valóban van-e a gépben "
-"Linux által támogatott TV-kártya, és hogy megfelelően van-e beszerelve a "
-"gépbe.\n"
-"\n"
-"\n"
-"A Mandrake-féle hardver-adatbázis a következő helyen található:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "használat: keyboarddrake [--expert] [billentyűzet]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Válasszon billentyűzetkiosztást."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Parancsértelmezőben a BackSpace billentyű \"Delete\"-et jelentsen?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Cserélje ki a CD lemezt"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Helyezze be a telepítési CD-t a meghajtóba és nyomja meg az OK gombot.\n"
-"Ha nincs ilyen lemeze, akkor nyomja meg a \"Mégsem\" gombot a frissítés\n"
-"kihagyásához."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Nem sikerült elindítani a frissítést!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr "A módosítás megtörtént, de az érvénybe lépéséhez ki kell jelentkezni"
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "Csak a kijelölt napot jelenítse meg"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Fájl/Ú_j"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Fájl/_Megnyitás"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Fájl/M_entés"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Fájl/Mentés más_ként"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Fájl/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Beállítások"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Beállítások/Próba"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Segítség"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Segítség/_Névjegy..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "Felhasználó"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "Üzenetek"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "Rendszernapló"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Mandrake eszközök - magyarázat"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "keresés"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Naplófigyelő"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Beállítások"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "ezzel egyező"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "de ezzel nem egyező"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Válasszon egy fájlt"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Naptár"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "A fájl tartalma"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "Email/SMS-figyelmeztetés"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "a fájl elemzése folyamatban: %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "Email/SMS-figyelmeztetés beállításai"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Üdvözöljük az email/SMS beállítóprogramban.\n"
-"\n"
-"A programmal beállítható a figyelmeztetések küldése.\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "szolgáltatásbeállítás"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-"A rendszer figyelmeztetést küld, ha a kijelölt szolgáltatások valamelyike "
-"nem fut"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "terhelésbeállítás"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "A rendszer figyelmeztetést küld, ha a terhelés ezen értéknél magasabb"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "figyelmeztetés beállítása"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "A figyelmeztetés módjának beállítása"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Mentés másként..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Adja meg az egér típusát."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "nem találtam serial_usb-t\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Emuláljam a harmadik gombot?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "\"%s\" található itt: \"%s\", kívánja beállítani ?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Válasszon egy lapolvasót"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "Ez a lapolvasó nincs támogatva: %s"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-"A ScannerDrake nem találta meg az Ön \"%s\" lapolvasóját.\n"
-"Válassza ki, melyik eszközhöz csatlakozik a lapolvasó."
-
-#: ../../standalone/scannerdrake_.c:96
-msgid "choose device"
-msgstr "válassza ki az eszközt"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"A(z) \"%s\" lapolvasót a PrinterDrake programmal lehet beállítani.\n"
-"A PrinterDrake-et a Mandrake Vezérlőközpont \"Hardver\" részében indíthatja "
-"el."
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"Az Ön \"%s\" lapolvasója beállításra került.\n"
-"Dokumentumok beolvasására használhatja például az \"XSane\" programot, amely "
-"az alkalmazásmenü \"Multimédia/Grafika\" részében található."
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "A tűzfal beállításai"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "A tűzfal beállításai"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Tűzfal-beállítások\n"
-"\n"
-"Már elvégezte a tűzfal beállítását. Kattintson a Beállítás\n"
-"gombra a tűzfal módosításához vagy megszüntetéséhez."
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Tűzfal-beállítások\n"
-"\n"
-"Kattintson a Beállítás gombra a tűzfal beállításához"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Válasszon nyelvet"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Válasszon telepítési módot"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Merevlemez keresése"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Egér beállítása"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Billentyűzet kiválasztása"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Biztonság"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Fájlrendszerek beállítása"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Partíciók formázása"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Csomagok kiválasztása"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Rendszer telepítése"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Felhasználó hozzáadása"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Hálózat beállítása"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Szolgáltatások beállítása"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Rendszerindító telepítése"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Indítólemez készítése"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Az X beállítása"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Rendszerfrissítések telepítése"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Kilépés a telepítőből"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Személyes tűzfal beállítása\n"
-"\n"
-"Ezzel egy személyes felhasználásra szánt mini tűzfalat lehet beállítani.\n"
-"Ha egy sokfelhasználós, vállalati szintű megoldást szeretne, szerezze\n"
-"be a speciális MandrakeSecurity Firewall disztribúciót."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"A következő kérdésekre adott válaszok határozzák meg, hogy az internetről\n"
-"mely szolgáltatásokhoz lehet majd csatlakozni. Gondolja át a válaszokat,\n"
-"mert a hálózati biztonság elsőrendűen fontos.\n"
-"\n"
-"Ha nem használja a felsorolt szolgáltatások valamelyikét, ne engedélyezze\n"
-"a hozzáférést. A beállításokat később ebből a programból bármikor meg\n"
-"lehet változtatni."
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Használ olyan internetkiszolgálót (webszervert) ezen a gépen, amelyet\n"
-"elérhetővé kell tenni az internetről? Ha csak a helyi gépről kell\n"
-"hozzáférni a kiszolgálóhoz, akkor válaszoljon nemmel.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Használ valamilyen névkiszolgálót (DNS-szervert) ezen a gépen? Csak\n"
-"akkor válaszoljon igennel, ha a cím- és zónainformáció lekérdezését az\n"
-"egész internetről lehetővé szeretné tenni.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Szeretné engedélyezni a bejövő SSH (Secure Shell) kapcsolatokat? Ez\n"
-"egy telnet-szerű távoli bejelentkezési lehetőség. Ha még a telnetet\n"
-"használja, akkor mindenképpen váltson át az SSH használatára.\n"
-"A telnet-forgalom nincs titkosítva, ezért az abban átvitt jelszavak\n"
-"nincsenek védve illetéktelen elolvasás ellen. Az SSH egy biztonságosabb\n"
-"megoldás, ugyanis titkosítást használ."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Szeretné engedélyezni a bejövő telnet-kapcsolatokat?\n"
-"A telnet-adatforgalom nem titkosított; biztonsági kockázatot jelent.\n"
-"Erősen javasoljuk, hogy itt a \"Nem\"-et válassza, és SSH-t használjon\n"
-"telnet helyett.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Használ ezen a gépen olyan FTP-kiszolgálót, amelyet elérhetővé kell tenni\n"
-"az internetről? Ha igen, akkor erősen javasoljuk, hogy csak anonymous\n"
-"adatátvitelt engedélyezzen. Az FTP-vel továbbított jelszavak nem\n"
-"biztonságosak, mert az FTP nem használ semmilyen titkosítást\n"
-"adatátvitelnél.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Használ ezen a gépen e-mail-kiszolgálót (mail-szervert)? Ha az\n"
-"elektronikus üzeneteit ezen a gépen keresztül továbbítja,\n"
-"akkor feltehetően igen. Máskülönben ne engedélyezze.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Használ ezen a gépen POP- vagy IMAP-kiszolgálót? Ezeken\n"
-"keresztül lehet a beérkező levelekhez hagyományos\n"
-"(nem Web-alapú) levelezőprogrammal hozzáférni.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Úgy tűnik, hogy a Linux kernel 2.2-es változatát használja. Ha az\n"
-"IP-címek kiosztásához helyi dinamikus címkiosztó szolgáltatást használ,\n"
-"akkor ezt ebben az esetben külön engedélyezni kell. Használ\n"
-"dinamikus címkiosztást?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Részt vesz a gép automatikus időszinkronizációban?\n"
-"A közepes és nagyobb vállalatok így biztosítják, hogy a különféle\n"
-"gépek órái ne térjenek el egymástól (például a naplózásnál fontos).\n"
-"Ha nem tud ilyesmiről, és nem nagy cégnél használja a gépet, akkor\n"
-"valószínűleg nemleges a válasz."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"A beállítás befejeződött. Elmenthetem a lemezre a módosításokat?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "%s megnyitása nem sikerült: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "%s írásra való megnyitása nem sikerült: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr "Nincs szükségem DHCP-re"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr "Szükségem van DHCP-re"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr "Nincs szükségem NTP-re"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr "Szükségem van NTP-re"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr "Ne legyen mentés"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr "Mentés és kilépés"
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "Tűzfalbeállítási varázsló"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr "Nem (blokkolás a tűzfal által)"
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr "Igen (átengedés a tűzfalon)"
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr "Kis türelmet kérek; a telepített csomagok ellenőrzése folyik"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Nem sikerült telepíteni a szükséges csomagokat: %s és Bastille.\n"
-" Próbálja meg kézzel telepíteni ezeket."
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Hálózati számítógép (kliens)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS-, SMB-, proxy- és SSH-kiszolgáló"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Iroda"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "GNOME-munkaállomás"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Segédprogramok a Palmhoz és a Visorhoz"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Munkaállomás"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Tűzfal/útválasztó (router)"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "DNS- és NIS-kiszolgáló"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Irodai programok: szövegszerkesztők (KWord, AbiWord), táblázatkezelők "
-"(KSpread, Gnumeric), PDF-nézegetők, ..."
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Hangkezelő eszközök: MP3- és MIDI-lejátszók, hangkeverők, ..."
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Könyvek és HOGYAN-ok a Linuxról és a szabad szoftverekről"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE-munkaállomás"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "IceWM, WindowMaker, Enlightenment, Fvwm, ..."
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimédia - videó"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "E-mail-eszközök, hírkezelés, web-eszközök, fájlátvitel és csevegés"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Adatbázis"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL vagy MySQL adatbázis-kiszolgáló"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Segédprogramok a számítógép beállításához"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimédia - hang"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Segédprogramok"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentáció"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Parancssoros eszközök"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix e-mail-kiszolgáló, Inn hírkiszolgáló"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internetes munkaállomás"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimédiás munkaállomás"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Beállítás"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "További grafikus környezetek (GNOME, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"A K Desktop Environment - az alapvető grafikus környezet - az ahhoz tartozó "
-"eszközökkel együtt"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Grafikus környezet"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Segédprogramok CD-íráshoz"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Irodai munkaállomás"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Kiszolgáló"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "GNOME, IceWM, WindowMaker, Enlightenment, Fvwm, ..."
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Grafikus programok (például a GIMP)"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C/C++ fejlesztőkönyvtárak, programok és include fájlok"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Kiszolgáló hálózati számítógépekhez"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "E-mail/csoportmunka/hírek"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Játékgép"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Videólejátszók és -szerkesztők"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimédia - grafika"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Játékprogramok: lövöldözős, táblás, stratégiai, ..."
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Eszközök levelezéshez, hírkezeléshez (pine, mutt, tin, ...) és a Web "
-"böngészéséhez"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archiválás, emulátorok, monitorozó programok"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Személyes pénzügyek"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Grafikus környezet felhasználóbarát alkalmazásokkal és segédprogramokkal"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Kliensprogramok különféle protokollokhoz (például: ssh)"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Internet-átjáró"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Hang/videólejátszó és -szerkesztő programok"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Más grafikus környezetek"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Szövegszerkesztők, parancsértelmezők, fájlkezelők, terminálprogramok"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programok a személyes pénzügyek kezeléséhez (például: GnuCash)"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Személyes információkezelés"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimédia - CD-írás"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Tudományos munkaállomás"
diff --git a/perl-install/share/po/i18n_compssUsers b/perl-install/share/po/i18n_compssUsers
deleted file mode 100644
index f6dc1ef7d..000000000
--- a/perl-install/share/po/i18n_compssUsers
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/usr/bin/perl
-
-use MDK::Common;
-
-sub get {
- my ($meta_class) = @_;
- my @l;
-
- local *F;
- open F, "../compssUsers$meta_class" or return; #die "can't open file ../compssUsers$meta_class";
- foreach (<F>) {
- /^\s*$/ || /^#/ and next;
-
- if (/^(\S.*)/) {
- my ($icon, $path, $descr);
- /^(.*?)\s*\[icon=(.*?)\](.*)/ and $_ = "$1$3", $icon = $2;
- /^(.*?)\s*\[path=(.*?)\](.*)/ and $_ = "$1$3", $path = $2;
- /^(.*?)\s*\[descr=(.*?)\](.*)/ and $_ = "$1$3", $descr = $2;
- push @l, $_, $descr, $path;
- }
- }
- close F;
-
- @l;
-}
-
-my @l = map { if_(/msgid "(.*)"/, $1) } cat_("DrakX.pot");
-my %l; @l{@l} = ();
-
-foreach (uniq(get(''), get('.desktop'))) {
- if ($_) {
- s/"/\"/g;
- s/\n//g;
- next if exists $l{$_};
- print qq(
-#: ../../share/compssUsers:999
-msgid "$_"
-msgstr ""
-);
- }
-}
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
deleted file mode 100644
index bf75c2e01..000000000
--- a/perl-install/share/po/id.po
+++ /dev/null
@@ -1,13585 +0,0 @@
-# Instal Grafis Mandrake
-# Copyright (C) 1999 Mandrakesoft
-# Budi Rachmanto <rac@linux-mandrake.com>, 2001-2002
-# Linux Indonesia <http://www.linux.or.id>, 1999-2001
-# Mohammad DAMT <mdamt@cdl2000.com>, 1999-2001
-# Andy <chandy@indo.net.id>, 1999
-# Kelana <nk@telkom.net>, 1999
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX 0.1\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-05 21:55+09:00\n"
-"Last-Translator: Budi Rachmanto <rac@linux-mandrake.com>\n"
-"Language-Team: Bahasa Indonesia <id@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.6\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigurasikan semua head secara terpisah"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Gunakan ekstensi Xinerama"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurasi kartu \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Konfigurasi head majemuk"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Sistem Anda mendukung konfigurasi head majemuk.\n"
-"Apa yg ingin Anda lakukan?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Kartu grafis"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Pilih kartu grafis"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Pilih server X"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Server X"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Pilih driver X"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Driver X"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Konfigurasi XFree mana yang Anda inginkan?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Kartu Anda punya akselerasi hardware 3D, tapi hanya bisa digunakan pada "
-"XFree %s.\n"
-"Kartu Anda ini dapat dipakai pada XFree %s yg punya dukungan baik dalam 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Kartu Anda dapat menggunakan akselerasi hardware 3D pada XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s dengan akselerasi hardware 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Kartu Anda dapat menggunakan akselerasi hardware 3D pada XFree %s,\n"
-"NAMUN INI BARU DALAM TAHAP PERCOBAAN DAN DAPAT MEMBUAT KOMPUTER ANDA HANG."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s dengan akselerasi hardware 3D PERCOBAAN"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Kartu Anda dapat menggunakan akselerasi hardware 3D pada XFree %s,\n"
-"NAMUN INI BARU DALAM TAHAP PERCOBAAN DAN DAPAT MEMBUAT KOMPUTER ANDA HANG.\n"
-"Kartu Anda ini dapat digunakan XFree %s yang lebih baik dalam 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (instalasi driver display)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Konfigurasi XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Pilih memori kartu grafis Anda"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Pilih opsi server"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Pilih monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Ada dua parameter penting, yaitu laju refresh vertikal, yaitu laju\n"
-"kecepatan saat seluruh layar direfresh, dan yang lebih penting lagi adalah\n"
-"laju sync horisontal, yaitu laju kecepatan saat menanyangkan scan line.\n"
-"\n"
-"Anda TIDAK BOLEH mengisi parameter yang tidak dapat\n"
-"diimbangi dengan kemampuan monitor Anda, karena monitor\n"
-"Anda akan rusak berat.\n"
-"Kalau Anda ragu, gunakan setting yang umum."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Laju refresh horisontal"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Laju refresh vertikal"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor tidak dikonfigurasi"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Kartu grafis belum dikonfigurasi"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resolusi belum ditentukan"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Anda ingin tes konfigurasi ini?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Awas: tes kartu grafis ini dapat membekukan komputer Anda"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Tes konfigurasi"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"coba ubah beberapa parameter"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ada error:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Tinggalkan dalam %d detik"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Setting sudah benar?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ada kesalahan, coba ubah beberapa parameter"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Resolusi"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Pilih resolusi dan kedalaman warna"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Kartu grafis: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Server XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Tambahan"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mode Ahli"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Tunjukan seluruhnya"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolusi"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Layout Keyboard: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Jenis Mouse: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Device Mouse: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "HorizSync Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "VertRefresh Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Kartu grafis: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikasi kartu grafis: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Memori grafis: %s KB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Pilihan kedalaman warna: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Resolusi: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Server XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Driver XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Siap-siap konfigurasikan X "
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Apa yang akan Anda mau?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Ubah Monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ubah kartu grafis"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Ubah Parameter Server"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Ubah Resolusi"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Lihat info"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Tes lagi"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Keluar"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Lakukan perubahan?\n"
-"Konfigurasi sekarang adalah:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X saat startup"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Saya bisa bikin komputermu akan menjalankan X saat booting.\n"
-"Anda mau fasilitas ini ?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Silakan masuk lagi ke %s untuk mengaktifkan perubahan"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Silakan log out dan tekan Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 warna (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ribu warna (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ribu warna (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 juta warna (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milyar warna (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kb"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB atau lebih"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA Standar, 640x480 pada 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "VGA Super, 800x600 pada 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Kompatibel, 1024x768 pada 87 Hz interlaced (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 pada 87 Hz interlaced, 800x600 pada 56 hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 pada 60 Hz, 640x480 pada 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 pada 60 Hz, 800x600 pada 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 pada 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor yang dapat mencapai 1600x1200 pada 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor yang dapat mencapai 1600x1200 pada 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Sektor pertama di partisi boot"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Sektor pertama di drive (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Instalasi SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Bootloader akan diinstall di mana?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Instalasi LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO dengan menu teks"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO dengan menu grafis"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Boot dari DOS/windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Parameter Bootloader utama"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Bootloader yang hendak digunakan"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Instalasi Bootloader"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Device boot"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (tidak bisa dipakai pada BIOS kuno)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Compact"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "compact"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Mode video"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Delay sebelum boot ke image default"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Katasandi"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Katasandi (lagi)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Batasi parameter command line"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "batasi"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Hapus /tmp saat boot"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Ukuram RAM yg tepat (saya nemu %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Buat multi profil"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Berikan jumlah RAM dalam satuan MB"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Pilihan ``Batasi parameter command line'' tidak ada gunanya tanpa katasandi"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Silakan ulangi"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Katasandi tidak sama"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Pesan Init"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Delay Open Firmware"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Timeout Kernel Boot"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Aktifkan boot dari CD?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Aktifkan boot dari OF?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Default OS?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"Anda memutuskan instalasi pemuat boot di partisi.\n"
-"Berarti Anda sudah punya pemuat boot di harddisk yang Anda boot (mis: System "
-"Commander).\n"
-"\n"
-"Di drive mana Anda boot?"
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Ini adalah entri yang lain lagi.\n"
-"Anda boleh tambahkan atau mengubah yang sudah ada."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Tambah"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Selesai"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Modifikasi"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Tipe entri mana yang hendak ditambahkan"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "OS Lain (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "OS Lain (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "OS Lain (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Image"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Sambung"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Read-write"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabel"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Tak aman"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Label"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Default"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd-size"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "NoVideo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Hapus entri"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Label tidak boleh kosong"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Anda harus tentukan image kernel"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Anda harus tentukan partisi swap"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Label ini sudah dipakai"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Ketemu interface %s %s"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Anda punya lagi?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Punya %s interface?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Tidak"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Ya"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Lihat info hardware"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Menginstall driver untuk card %s %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Driver %s mana yang hendak saya coba?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Kadangkala, driver %s butuh informasi tambahan agar dapat bekerja normal\n"
-"walaupun kadangkala juga ini tidak perlu. Nah, apakah Anda ingin untuk\n"
-"memberikan parameter tambahan tadi atau biarkan saja drivernya melakukan\n"
-"deteksi sendiri parameternya? Biasanya, autodetek akan membuat kompputer\n"
-"jadi hengki (baca: hang), tapi biasanya sih tak ngerusak hardwarenya."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Probe otomatis"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Tentukan opsi"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Anda dapat memberikan opsi terhadap modul %s.\n"
-"Ingat, semua alamat harus diisikan dengan awalan 0x misalnya '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Silakan beri parameter untuk modul %s ini.\n"
-"Parameter biasanya dalam format ``nama=nilai nama2=nilai2...''.\n"
-"Misalnya, ``io=0x300 irq=8''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Pilihan Modul:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Module %s gagal diload.\n"
-"Mau coba lagi dengan parameter yang lain?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "akses ke program X"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "akses ke peralatan rpm"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "izinkan \"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "akses ke file administratif"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(sudah ditambahkan %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Katasandi ini terlalu sederhana"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Silakan tulis nama user"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Nama user hanya boleh terdiri dari huruf, angka, `-' dan `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "User ini sudah ada sebelumnya"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Tambah user"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Masukkan user\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Buat user"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Nama Lengkap"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Nama user"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikon"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Autologin"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Komputer Anda dapat diset agar secara otomatis login dg satu user.\n"
-"Anda ingin pakai feature ini?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Pilih user default:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Pilih manajer window yg akan dipakai:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Pilih bahasan yg akan dipakai."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Anda bisa pilih bahasa lain yang akan tersedia setelah install selesai"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Semua"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Izinkan semua user"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Customized"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Tiada pemakaian bersama"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Paket %s perlu diupgrade. Anda ingin instal?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Anda dapat mengekspor dg NFS atau Samba. Mana yg Anda ingin"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Paket wajib %s hilang"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Batal"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "Luncurkan userdrake"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"Sharing per-user menggunakan grup \"fileshare\". \n"
-"Anda dapat memakai userdrake utk menambah user di grup ini."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Selamat Datang di Crackers"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Lemah"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standar"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Kuat"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "Lebih Kuat"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Pengecut"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Level ini harus hati-hati. Level ini akan membuat sistem Anda akan mudah\n"
-"digunakan, tapi sangat sensitif: mesin ini tidak boleh digunakan untuk\n"
-"mesin yang terhubung ke mesin lain atau ke ke Internet. Tidak akan ada\n"
-"akses katasandi."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr "Katasandi akan diaktifkan, tapi mohon jangan disambungkan ke jaringan."
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Ini adalah sekuriti standar, dianjurkan untuk komputer yang akan\n"
-"terkoneksi ke Internet sebagai klien."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Sudah ada beberapa batasan, dan beberapa pengecekan otomatis berjalan tiap "
-"malam."
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Dengan level sekuriti ini, sistem akan dapat digunakan sebagai server.\n"
-"Sekuriti kini cukup tinggi untuk dapat melayani koneksi banyak klien.\n"
-"Jika mesin Anda hanya berfungsi sebagai klien, pilihlah level lebih rendah."
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Sama dengan level sebelumnya, tapi sistem sepenuhnya ditutup.\n"
-"Fitur sekuriti maksimum."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Pilih Tingkat Security"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Tingkat keamanan"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Gunakan libsafe utk server"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr "Library penahan serangan string format dan overflow buffer"
-
-# 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)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Selamat datang di Sang Pemilih Sistem Operasi, %s!\n"
-"\n"
-"pilih sistem operasi pada daftar di atas atau tunggu %d detik untuk boot ke "
-"default.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Selamat datang di sang pemilih sistem operasi, GRUB"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Gunakan tombol %c dan %c untuk memilih entri yang disorot"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Tekan enter untuk memboot OS yang terpilih, atau tekan 'e' untuk edit"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "perintah sebelum booting, atau 'c' untuk command line."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Entri yang dipilih akan diboot secara otomatis dalam %d detik."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "Waah /boot tak cukup spacenya nih"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Desktop"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Start Menu"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Anda tak dapat menginstal bootloader pada partisi %s\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr " belom ada help-nya nih.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Konfigurasi Tipe Boot"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_File"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/File/_Keluar"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Kategori Monitor Gaya Baru"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Monitor GayaBaru"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Monitor Biasa"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Monitor Biasa Gtk+"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Jalankan aurora saat boot"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "mode Lilo/Grub"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "mode Yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr "Manajer Boot: %s. Klik Configure untuk memanggil ahli setup."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Konfigurasikan"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Mode sistem"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Jalankan X-Window saat sistem dimulai"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Tidak, saya tak mau autologin"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ya, saya mau autologin dg (user,desktop) ini"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "gagal baca file /etc/inittab nih: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d menit"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 menit"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d detik"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Gagal membuat screenshot sebelum buat partisi"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Screenshot akan tersedia setelah instal di %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Perancis"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "Belgia"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Republik Ceko"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Jerman"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Yunani"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Norwegia"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Swedia"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Belanda"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Itali"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Austria"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Amerika Serikat"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Lebih dulu buatlah backup data Anda"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Baca dengan seksama!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Jika Anda ingin pakai aboot, sisakan ruang (cukup 2048 sektor) di awal disk"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Ada Kesalahan"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Wizard"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Pilih aksi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Anda punya satu partisi FAT yang besar.\n"
-"(umumnya dipakai oleh wicrosoft Dos/mindows).\n"
-"Disarankan utk mengubah ukuran partisi ini\n"
-"(klik di situ, lalu pilih \"Ubah ukuran\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Silakan pilih partisi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detil"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "FS terjournal"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Kosong"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Lainnya"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Tipe filesystem:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Buat"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tipe"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Gunakan ``%s'' saja"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Hapus"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Gunakan ``unmount'' terlebih dahulu"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Setelah mengganti tipe partisi %s, semua data pada partisi ini akan hilang"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Pilih partisi"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Pilih partisi lain"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Keluar"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Ubah ke modus ahli"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Ubah ke modus normal"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Kembali"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Jalan terus?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Keluar tanpa menyimpan"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Keluar dari program tanpa menyimpan dalam tabel partisi?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Ingin simpan modifikasi /etc/fstab"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Alokasi otomatis"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Hapus semua"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Info hard drive"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Semua partisi primary telah digunakan"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Partisi tak dapat ditambah"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Untuk menambahkan partisi, hapus satu agar dapat membuat partisi extended"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Simpan tabel partisi"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Kembalikan tabel partisi"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Selamatkan tabel partisi"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Muat ulang tabel partisi"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Mount otomatis media lepas"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Pilih file"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Backup tabel partisi tidak memiliki ukuran yg sama\n"
-"Jalan terus?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Awas"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Masukkan disket ke drive\n"
-"semua data di disket ini akan hilang"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Sedang mencoba menyelamatkan tabel partisi"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Info detil"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Posisi mount"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Pilihan"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Ubah ukuran"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Pindah"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Format"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Mount"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Tambahkan ke RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Tambahkan ke LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Unmount"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Hapus dari RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Hapus dari LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Ganti RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "digunakan untuk loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Membuat partisi baru"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Sektor awal: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Ukuran dalam MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Tipe filesystem: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Posisi mount: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Kesukaan: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Hapus file loopback?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Mengubah tipe partisi"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Filesystem apa yang Anda inginkan?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Pindah dari ext2 ke ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Device loopback %s akan di mount ke mana?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Mount device %s akan di mount ke mana?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Tak bisa unset mount point karena partisi ini sudah digunakan untuk\n"
-"loopback. Hapus dulu loopbacknya kalau mau begitu."
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Sedang menghitung bound filesystem fat"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Sedang mengubah ukuran"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Ukuran partisi ini tidak dapat diubah"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "semua data pada partisi ini sebaiknya dibackup dulu"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Sehabis meresize partisi %s, semua data pada partisi ini akan hilang"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Pilih ukuran baru"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Ukuran baru dalam MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Disk mana yang hendak dipindah?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Sektor mana yang hendak dipindah"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Pindah"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Memindahkan partisi..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Pilih RAID yang ada untuk ditambahkan ke"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "baru"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Pilih LVM yang ada untuk ditambahkan ke"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "nama LVM?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Partisi ini tak bisa dipakai sebagai loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Nama file loopback: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Berikan nama file"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "File sudah digunakan loopback yang lain, pilih yang lainnya dong"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "File sudah ada. Gunakan file ini ?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Opsi mount"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Macam-macam"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "device"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "level"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "ukuran chunk"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Hati-hati nih: operasi ini sangat berbuahayyya"
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Tipe partisi apa yang hendak digunakan?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Maaf, Saya tidak mau membuat /boot di drive ini (silindernya > 1024).\n"
-"Kalau Anda pakai LILO dan tak jalan, atau Anda tak mau LILO dan tak mau /"
-"boot juga"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Anda menambahkan partisi root di luar silinder 1024,\n"
-"dan Anda tidak memiliki partisi /boot. Apabila Anda akan menggunakan lilo\n"
-"(boot manager), hati-hati dalam menambahkan partisi /boot"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Anda memilih partisi RAID software sebagai root (/).\n"
-"Sekarang bootloader tak ada yang bisa handel tanpa partisi /boot.\n"
-"Jadi hati-hati dalam menambahkan partisi /boot"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Tabel partisi pada drive %s akan ditulis ke disk!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Anda harus reboot agar perubahan tabel partisi dapat berlaku"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Sehabis memformat partisi %s semua data pada partisi ini akan hilang"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Sedang memformat"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Sekarang sedang memformat file loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Melakukan format partisi %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Sembunyikan file"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Pindah file ke partisi baru"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"Direktori %s telah berisi data\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Pindah file ke partisi baru"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Salin %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Hapus %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "partisi %s sekarang jadi %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Device: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS letter: %s (hanya tebakan)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tipe: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Nama: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Mulai: sektor %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Ukuran: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektor"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Silinder %d sampai %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Telah diformat\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Belum diformat\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Telah di-mount\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"File loopback:\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partisi di-boot secara default\n"
-" (untuk MS-DOS boot, bukan untuk lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Level %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Ukuran chunk %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Disk RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Nama file loopback: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Mungkin partisi ini adalah \n"
-"partisi driver, jadi sebaiknya\n"
-"jangan diapa-apain deh.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"partisi ini adalah partisi bootstrap\n"
-"yang khusus digunakan \n"
-"oleh sistem dual boot.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Ukuran: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Ukuran: %s silinber, %s head, %s sektor\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Disk LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Partisi tipe: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "pada bus %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Pilihan: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Kunci sandi sistem file"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Pilih kunci sandi sistem file Anda"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Katasandi ini terlalu mudah (harus paling tidak %d karakter)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "Kunci sandi tak cocok"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Kunci sandi"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Kunci sandi (lagi)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Ubah tipe"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Klik salah satu media"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Cari Server"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s proses format dari %s gagal"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "tidak bisa melakukan format %s dengan tipe %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "penyambungan partisi %s ke direktori %s gagal"
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck gagal dg kode keluar %d / sinyal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "error melepas mount %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "mudah"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "dengan /usr"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "server"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "JFS tak dapat dipakai utk partisi berukuran di bawah 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "ReiserFS tak dapat dipakai utk partisi berukuran di bawah 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Mount point harus diawali dengan /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Partisi dengan titik mount %s sudah ada\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Anda tak dapat menggunakan LVM Logical Volume untuk titik mount %s."
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Direktori ini harus ada di filesystem root"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr "Anda perlu filesystem yg benar (ext2, reiserfs) utk titik mount ini\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Anda tak dapat menggunakan sistem file bersandi utk mount point %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Tak cukup ruangan untuk alokasi otomatis"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Tiada yang dikerjakan"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "error membuka file %s untuk ditulisi: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Error - tidak ada device yang valid untuk membuat filesystem baru. Periksa "
-"kembali hardware untuk mencari penyebabnya"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Anda tak punya partisi!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux adalah sistem multiuser, artinya tiap user bisa punya kesukaan,\n"
-"file dll sendiri. Anda bisa membaca ``User Guide'' utk belajar lebih dalam.\n"
-"Tapi tak seperti \"root\", sang administrator, user di sini tak berhak\n"
-"mengubah apapun kecuali konfigurasi dan file mereka sendiri. Anda harus\n"
-"membuat setidaknya satu user reguler utk Anda sendiri. Account ini Anda\n"
-"pakai utk rutinitas. Meski Anda dapat login sbg \"root\" tiap hari, tapi\n"
-"itu amat berbahaya! Kesalahan terkecil dapat menyebabkan sistem Anda tak\n"
-"bekerja selamanya. Meski Anda melakukan kesalahan serius sbg user normal,\n"
-"Anda hanya akan kehilangan sebagian informasi, tidak seluruh sistem.\n"
-"\n"
-"Pertama, Anda harus mengisi nama. Ini tidak wajib, tentu saja - Anda dapat\n"
-"mengisinya sesuka Anda. DrakX akan mengambil kata pertama yg anda masukkan\n"
-"di kotak sbg \"Nama user\". Ini adalah nama user yg dipakai utk login ke\n"
-"sistem. Anda bisa mengubahnya. Lalu Anda harus mengisi katasandi. Katasandi\n"
-"user non-privileged (reguler) tak sepenting katasandi \"root\" dari segi\n"
-"keamanan, tapi tak ada alasan utk mengabaikannya - file Anda bisa beresiko.\n"
-"\n"
-"Klik \"Buat user\", selanjutnya Anda dapat menambahkan user sebanyak Anda\n"
-"mau. Misalnya, tambahkan user utk teman, ayah, atau saudara Anda. Bila Anda\n"
-"selesai menambahkan semua user, pilih \"Selesai\".\n"
-"\n"
-"Klik \"Tambahan\" memungkinkan Anda mengubah \"shell\" standar utk user\n"
-"terkait (standar: bash)."
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Yang terdaftar di atas adalah partisi Linux terdeteksi pd hard drive Anda.\n"
-"Anda dapat memakai pilihan yg dibuat oleh wizard, itu baik utk instalasi\n"
-"umum. Bila Anda mengubah pilihan, setidaknya Anda perlu mendefinisikan\n"
-"partisi root (\"/\"). Jangan pilih partisi yg terlalu kecil agar dapat\n"
-"menginstal software dg leluasa. Bila Anda ingin menyimpan data pada partisi\n"
-"lain, Anda perlu membuat partisi \"/home\" (hanya mungkin jika punya lebih\n"
-"dari satu partisi Linux.)\n"
-"\n"
-"Tiap partisi terdaftar sbb: \"Nama\", \"Kapasitas\".\n"
-"\n"
-"\"Nama\" berstruktur: \"tipe hard drive\", \"nomor hard drive\",\n"
-"\"nomor partisi\" (misalnya \"hda1\").\n"
-"\n"
-"\"Tipe hard drive\" adalah \"hd\" utk drive IDE dan \"sd\" utk drive SCSI.\n"
-"\n"
-"\"Nomor Hard Drive\", selalu berupa huruf setelah \"hd\" atau \"sd\". Bila "
-"berupa IDE, maka:\n"
-"\n"
-" *\"a\" berarti \"hard drive master pada kontroller IDE primer\",\n"
-"\n"
-" *\"b\" berarti \"hard drive slave pada kontroler IDE primer\",\n"
-"\n"
-" *\"c\" berarti \"hard drive master pada kontroler IDE sekunder\",\n"
-"\n"
-" *\"d\" berarti \"hard drive slave pada kontroler IDE sekunder\",\n"
-"\n"
-"\n"
-"Pada drive SCSI, \"a\" berarti \"hard drive utama, \"b\" berarti \"hard "
-"drive kedua\", dsb..."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"Instalasi Mandrake Linux terdiri atas bbrp CDROM. DrakX tahu jika paket\n"
-"terpilih berada di CDROM lain dan akan mengeluarkan CD yg ada utk kemudian\n"
-"meminta Anda memasukkan CD yg diperlukan."
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"Kini kita tentukan program yg akan diinstal di sistem Anda. Ribuan paket\n"
-"tersedia di Mandrake Linux, Anda tak perlu mengenal semuanya.\n"
-"\n"
-"Jika Anda menjalankan instalasi standar dari CDROM, Anda akan diminta\n"
-"menentukan CD yg Anda punya (hanya pd mode Ahli). Cek label CD dan\n"
-"tandai kotak yg sesuai dg CD yg Anda miliki utk instalasi. Klik \"OK\" jika\n"
-"Anda siap melanjutkan.\n"
-"\n"
-"Paket disortir menurut grup sesuai kegunaan mesin Anda.\n"
-"Grup diurutkan ke dalam empat bagian:\n"
-"\n"
-" * \"Workstation\": jika Anda ingin menggunakan mesin Anda sbg workstation, "
-"pilih\n"
-"satu/lebih grup yg sesuai.\n"
-"\n"
-" * \"Development\": jika mesin akan digunakan utk pemrograman, pilih grup\n"
-"yg diinginkan.\n"
-"\n"
-" * \"Server\": jika mesin diinginkan menjadi server, Anda dapat\n"
-"memilih servis paling umum yg akan diinstal.\n"
-"\n"
-" * \"Lingkungan Grafis\": akhirnya, di sini Anda memilih lingkungan\n"
-"grafis. Minimal Anda harus pilih satu jika ingin punya workstation grafis!\n"
-"\n"
-"Untuk melihat penjelasan singkat, gerakkan kursor mouse ke atas nama grup.\n"
-"Jika Anda tak memilih satu grup pun saat melakukan instalasi normal (bukan\n"
-"upgrade) popup dialog akan muncul dengan menu instalasi minimal:\n"
-"\n"
-" * \"Dengan X\" Instal paket minimal yang memungkinkan kerja dengan desktop\n"
-"grafis;\n"
-"\n"
-" * \"Dengan dokumentasi dasar\" Instal sistem plus peralatan dasar dan\n"
-"dokumentasinya. Instalasi ini cocok untuk setup server.\n"
-"\n"
-" * \"Instalasi minimal sungguh\" Hanya instal kebutuhan minimum sistem,\n"
-"dalam baris perintah saja. Butuh sekitar 65Mb.\n"
-"\n"
-"Anda dapat memilih \"Pilih paket sendiri\", berguna jika Anda tahu baik\n"
-"paket yg disediakan atau ingin mengontrol instalasi secara total.\n"
-"\n"
-"Jika Anda memulai instalasi dg mode \"Upgrade\", Anda dapat melepas seleksi\n"
-"semua group utk menghindari instalasi paket baru. Ini berguna utk reparasi\n"
-"atau update sistem yg ada."
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Akhirnya, tergantung apakah Anda memilih paket sendiri atau tidak, Anda\n"
-"akan diberi pohon berisi paket terkelompok dg grup/subgrup. Sambil meneliti\n"
-"pohon, Anda dapat memilih semua grup, subgrup, atau paket tersendiri.\n"
-"\n"
-"Tiap kali Anda memilih paket di pohon, penjelasan muncul di sisi kanan.\n"
-"Bila seleksi Anda selesai, klik tombol \"Instal\" utk memulai instalasi.\n"
-"Tergantung kecepatan hardware dan jumlah paket yg diinstal, mungkin\n"
-"dibutuhkan bbrp saat utk instalasi. Perkiraan waktu instalasi ditampilkan\n"
-"di layar utk membantu Anda memperkirakan waktu menikmati secangkir kopi.\n"
-"\n"
-"!! Jika paket server terpilih dg sengaja atau karena merupakan bagian suatu\n"
-"grup besar, akan ada pertanyaan konfirmasi instalasi paket tersebut. Pada\n"
-"Mandrake Linux, secara default semua server terinstal dijalankan saat boot.\n"
-"Meski aman saat distribusi diluncurkan, ada kemungkinan lubang keamanan\n"
-"ditemukan setelah versi Mandrake Linux ini rampung. Jika Anda tak tahu apa\n"
-"yg dilakukan oleh suatu servis atau mengapa ia diinstal, klik \"Tidak\".\n"
-"Jika Anda menekan \"Ya\" servis terdaftar akan diinstal dan secara standar\n"
-"akan dijalankan secara otomatis. !!\n"
-"\n"
-"Opsi \"Ketergantungan otomatis\" mematikan dialog yg muncul tiap kali\n"
-"instalator memilih suatu paket scr otomatis. Ini terjadi karena\n"
-"ketergantungan harus dipenuhi dg paket lain agar instalasi sukses.\n"
-"\n"
-"Ikon disket di dasar list memungkinkan pemuatan daftar paket ter-instal pd\n"
-"instalasi sebelumnya. Jika diklik, Anda akan diminta memasukkan disket yg\n"
-"dibuat pd akhir instalasi yg lalu. Lihat tip kedua di step terakhir utk\n"
-"membuat floppy tersebut."
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"Kini koneksi internet/jaringan akan disetup. Jika Anda ingin menyambung\n"
-"komputer Anda dg Internet atau jaringan lokal, klik \"OK\". Deteksi\n"
-"otomatis perangkat jaringan dan modem akan diluncurkan. Jika deteksi gagal,\n"
-"selanjutnya jangan tandai kotak \"Pakai deteksi otomatis\". Anda juga dapat\n"
-"memilih tak mengkonfigurasikan jaringan, atau mengerjakannya nanti; jika\n"
-"demikian, klik tombol \"Batal\".\n"
-"\n"
-"Koneksi yg tersedia adalah: modem tradisional/ISDN, hubungan ADSL, modem\n"
-"kabel, dan hubungan LAN (Ethernet).\n"
-"\n"
-"Di sini konfigurasi tak dirinci. Pastikan Anda punya semua parameter dari\n"
-"ISP atau administrator sistem.\n"
-"\n"
-"Penjelasan dapat dilihat di manual hubungan Internet. Atau tunggulah hingga\n"
-"sistem terinstal dan pakailah program yg dijelaskan utk setup koneksi.\n"
-"\n"
-"Jika Anda ingin mengkonfigurasi network pasca instalasi atau bila instalasi\n"
-"jaringan selesai, klik \"Batal\"."
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Kini Anda boleh pilih servis mana yang dijalankan saat boot.\n"
-"\n"
-"Di sini ditampilkan semua servis yg tersedia di instalasi ini. Periksa dg\n"
-"baik dan jangan tandai servis yg tak selalu diperlukan saat boot.\n"
-"\n"
-"Ada penjelasan singkat bila suatu servis dipilih. Tapi jika Anda tak yakin\n"
-"kegunaan servis tsb., lebih aman tak usah diusik.\n"
-"\n"
-"Pada tahap ini, hati-hati jika Anda bermaksud menjadikan mesin Anda sebuah\n"
-"server: Anda mungkin tak ingin menjalankan servis yg tak diperlukan. Ingat,\n"
-"bbrp servis bisa berbahaya jika dijalankan. Secara umum, pilihlah hanya\n"
-"servis yang benar-benar Anda perlukan."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"GNU/Linux mengatur waktu dlm GMT (Greenwich Mean Time) dan menerjemahkannya\n"
-"ke waktu lokal tergantung zona waktu yang Anda pilih. Dapat di-nonaktifkan\n"
-"dengan melepas tanda \"Jam hardware diset ke GMT\" sehingga jam hardware\n"
-"sama dengan jam sistem. Berguna bila mesin didiami OS lain seperti Mindows.\n"
-"\n"
-"Opsi \"Sinkronisasi waktu otomatis\" akan otomatis mengatur jam dengan\n"
-"menghubungi server waktu remote di internet. Pilihlah server terdekat saat\n"
-"daftar muncul. Tentu saja Anda harus punya koneksi internet agar fitur ini\n"
-"berfungsi. Server waktu akan diinstalkan di mesin Anda dan dapat dipakai\n"
-"oleh mesin lain di jaringan lokal Anda."
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X (Sistem Window X) adalah jantung antarmuka grafis GNU/Linux tempat sandar\n"
-"semua lingkungan grafis (KDE, Gnome, AfterStep, WindowMaker...) Mandrake\n"
-"Linux. Di sini DrakX akan mencoba mengkonfigurasi X secara otomatis.\n"
-"\n"
-"Jarang sekali gagal, kecuali jika hardware amat kuno (atau amat baru). Jika\n"
-"sukses, X otomatis dijalankan dg resolusi terbaik sesuai ukuran monitor.\n"
-"Window akan muncul dan bertanya apakah Anda dapat melihatnya.\n"
-"\n"
-"Jika Anda melakukan instal \"Ahli\", Anda akan memasuki wizard konfigurasi\n"
-"X. Lihat bab yg bersangkutan di manual utk info lanjut ttg wizard ini.\n"
-"\n"
-"Jika Anda dapat melihat pesan dan menjawab \"Ya\", DrakX akan maju ke tahap\n"
-"berikut. Jika Anda tak dapat melihat pesan, berarti konfigurasi salah dan\n"
-"10 detik kemudian tes otomatis berakhir dg kembali ke layar semula."
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Pertama kali mencoba konfigurasi X, Anda mungkin tak puas dg tampilannya\n"
-"(layar terlalu kecil, tergeser ke kiri/kanan...). Jadi walau X jalan dengan\n"
-"baik, DrakX akan bertanya apakah konfigurasi ini memuaskan. Mode valid yang\n"
-"ditemukan juga akan disajikan untuk dipilih.\n"
-"\n"
-"Jika Anda tetap gagal menjalankan X, pilih \"Ubah kartu grafis\", lalu\n"
-"\"Kartu tak terdaftar\", dan saat ditanya server apa yg Anda inginkan,\n"
-"pilih \"FBDev\". Ini adalah opsi failsafe yg jalan di kartu grafis modern.\n"
-"Lalu pilih \"Tes lagi\" agar yakin."
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Akhirnya, Anda akan ditanya apakah Anda ingin punya antarmuka grafis saat\n"
-"boot. Pertanyaan ini diajukan meski Anda memilih tidak mentes konfigurasi.\n"
-"Jelas, Anda ingin menjawab \"Tidak\" jika mesin Anda dijadikan server, atau\n"
-"jika Anda gagal mengkonfigurasi display."
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"CDROM Mandrake Linux punya mode pertolongan built-in, yg bisa diakses dg\n"
-"mem-boot dari CDROM, tekan >>F1<< dan ketik >>rescue<< di prompt. Tapi jika\n"
-"komputer Anda tak dapat mem-boot dari CDROM, kembalilah ke tahap ini untuk\n"
-"pertolongan dalam setidaknya 2 situasi:\n"
-"\n"
-" * saat instalasi bootloader, DrakX akan menulis ulang sektor boot (MBR)\n"
-"disk utama Anda (kecuali jika Anda memakai manajer boot lain) sehingga Anda\n"
-"dapat menjalankan GNU/Linux atau Mindows (jika Anda punya Mindows di sistem\n"
-"Anda). Jika Anda menginstal Mindows lagi, proses instal micro$oft akan\n"
-"menulis ulang sektor boot, dan Anda takkan dapat menjalankan GNU/Linux!\n"
-"\n"
-" * jika ada masalah sehingga Anda tak dapat menjalankan GNU/Linux dari hard\n"
-"disk, disket ini adalah jalan satu-satunya utk menjalankan GNU/Linux. Ini\n"
-"berisi sejumlah alat utk mereparasi sistem yg rusak karena kegagalan power,\n"
-"salah ketik, alpa kata sandi, dan lain-lain.\n"
-"\n"
-"Bila step ini diklik, Anda akan diminta memasukkan disket ke drive. Disket\n"
-"harus kosong / berisi data yg tak Anda perlukan. Tak perlu diformat sebab\n"
-"DrakX akan menulis ulang seluruh disket."
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Pada tahap ini, pilihlah tempat Mandrake Linux akan diinstal di harddisk.\n"
-"Bila harddisk masih kosong / ada sistem operasi lain yg mengisi seluruhnya,\n"
-"Anda perlu melakukan proses partisi. Pada dasarnya, proses partisi harddisk\n"
-"adalah membagi harddisk, dg membuat ruang kosong utk instalasi sistem\n"
-"Mandrake Linux.\n"
-"\n"
-"Karena bersifat satu arah (tak dapat dikembalikan ke keadaan awal), proses\n"
-"partisi dapat membuat stres dan pusing kepala, apalagi jika Anda belum\n"
-"berpengalaman. Untungnya, ada wizard yang mempermudah proses ini.\n"
-"Sebelum mulai, baca dan pelajari dulu buku manual dengan baik.\n"
-"\n"
-"Jika Anda menggunakan mode Ahli, Anda akan masuk DiskDrake, alat partisi\n"
-"Mandrake Linux, yg memungkinkan fine-tuning partisi Anda. Lihat manual bab\n"
-"DiskDrake. Dari antarmuka instalasi, Anda dapat menggunakan wizard seperti\n"
-"dijelaskan di sini dg meng-klik tombol \"Wizard\".\n"
-"\n"
-"Bila partisi-partisi tsb sudah ada sebelumnya (hasil instal sebelumnya\n"
-"atau hasil program partisi lain), pilihlah partisi tsb utk tempat instalasi\n"
-"sistem Linux Anda.\n"
-"\n"
-"Jika belum ada partisi, Anda perlu membuatnya dengan program wizard. Ada\n"
-"bbrp opsi tergantung konfigurasi harddisk Anda:\n"
-"\n"
-" * \"Pakai ruang kosong\": opsi ini akan secara otomatis mem-partisi drive\n"
-"kosong Anda. Anda takkan ditanya lebih jauh.\n"
-"\n"
-" * \"Pakai partisi yang sudah ada\": wizard mendeteksi satu/lebih partisi\n"
-"Linux di hard drive Anda. Jika Anda ingin menggunakannya, pilih opsi ini.\n"
-"\n"
-" * \"Pakai ruang kosong pada partisi Mindows\": jika wicrosoft mindows\n"
-"terinstal dan menghabiskan seluruh kapasitas disk, Anda perlu membuat ruang\n"
-"kosong untuk data Linux dg menghapus partisi dan data wicrosoft mindows\n"
-"(lihat solusi \"Hapus seluruh disk\" atau mode \"Ahli\") atau dapat juga\n"
-"mengubah ukuran partisi wicrosoft mindows. Cara ini dapat digunakan tanpa\n"
-"harus kehilangan data. Cara ini disarankan bila Anda ingin memakai Linux\n"
-"Mandrake dan wicrosoft mindows dlm satu komputer.\n"
-"\n"
-" Sebelum memilih cara ini, mohon maklum bahwa partisi wicrosoft mindows\n"
-"sekarang berukuran lebih kecil. Ruang dlm wicrosoft mindows utk menyimpan\n"
-"data / menginstall software baru menjadi kecil.\n"
-"\n"
-" * \"Hapus seluruh disk\": jika Anda ingin hapus semua data dan partisi di\n"
-"harddisk Anda utk kemudian digantikan semuanya oleh sistem Mandrake Linux,\n"
-"pilih opsi ini. Hati-hati, Anda tak dapat kembali setelah konfirmasi.\n"
-"\n"
-" !! Jika Anda pilih opsi ini semua data di disk Anda akan hilang. !!\n"
-"\n"
-" * \"Buang Mindows\": ini akan menghapus semua di drive dan mulai proses\n"
-"partisi dari nol. Semua data di disk akan hilang.\n"
-"\n"
-" !! Jika Anda pilih opsi ini semua data di disk Anda akan hilang. !!\n"
-"\n"
-" * \"Mode ahli\": pilih jika Anda ingin secara manual mempartisi harddisk.\n"
-"Awas! Cara ini amat perkasa tapi juga berbahaya. Anda bisa kehilangan data\n"
-"dg mudah. Jangan pilih kecuali Anda tahu yg Anda lakukan."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"Oke, instalasi kini selesai dan sistem GNU/Linux Anda siap dipakai. Klik\n"
-"\"OK\" utk reboot sistem. Anda dapat menjalankan GNU/Linux atau Windows,\n"
-"tergantung pilihan Anda (jika Anda memakai dual-boot).\n"
-"\n"
-"Tombol \"Tambahan\" (hanya di mode Ahli) menampilkan 2 tombol utk:\n"
-"\n"
-" * \"Membuat floppy instalasi otomatis\": utk membuat disket instalasi yang\n"
-"akan secara otomatis melakukan instalasi tanpa bantuan operator, sama dg\n"
-"instalasi yang baru Anda konfigurasikan.\n"
-"\n"
-" Ada dua opsi setelah tombol di-klik:\n"
-"\n"
-" * \"Ulang\". Instalasi semi-otomatis, hanya proses partisi yang tetap\n"
-"interaktif.\n"
-"\n"
-" * \"Otomatis\". Instalasi otomatis penuh: harddisk ditulis ulang\n"
-"seluruhnya, semua data hilang.\n"
-"\n"
-" Fitur ini amat praktis utk instalasi banyak mesin dg spesifikasi sama.\n"
-"Lihat pasal Auto install di website kami.\n"
-"\n"
-" * \"Menyimpan pilihan paket\"(*): simpan pilihan paket seperti yang dibuat\n"
-"sebelumnya. Lalu saat mengerjakan instalasi lain, masukkan floppy ke driver\n"
-"dan arahkan instalasi ke layar pertolongan dg menekan kunci [F1] lalu ketik\n"
-">>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) Anda perlu floppy berformat FAT (utk membuatnya di GNU/Linux, jalankan\n"
-"\"mformat a:\")"
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Tiap-tiap partisi yang telah dibuat harus diformat agar dapat digunakan\n"
-"(format berarti membuat filesystem).\n"
-"\n"
-"Sekarang Anda bisa mem-format ulang partisi yg ada utk dihapus datanya.\n"
-"BIla ini hendak Anda lakukan, pilihlah partisi yang hendak diformat.\n"
-"\n"
-"Ingat, Anda tak perlu melakukan format ulang pada semua partisi yg ada.\n"
-"Anda perlu mem-format ulang partisi yg akan diisi sistem operasi (misalnya\n"
-"pada partisi \"/\", \"./usr\", atau \"/var\"), tapi tak perlu melakukannya\n"
-"pada partisi berisi data yang masih akan digunakan (misalnya \"/home\").\n"
-"\n"
-"Hati-hati dalam memilih partisi. Setelah diformat semua data akan hilang\n"
-"dan tak dapat dikembalikan ke kondisi semula.\n"
-"\n"
-"Klik \"OK\" bila Anda siap mem-format partisi.\n"
-"\n"
-"Klik \"Batal\" jika Anda ingin memilih partisi lain utk instalasi sistem\n"
-"operasi Mandrake Linux baru Anda.\n"
-"\n"
-"Klik \"Tambahan\" jika ingin memilih partisi yg akan dicek blok rusaknya\n"
-"di disk."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Sistem operasi Mandrake Linux baru Anda sedang di-instal.\n"
-"Proses ini memakan waktu beberapa menit/jam, tergantung ukuran yang\n"
-"Anda install dan kecepatan komputer Anda.\n"
-"\n"
-"Sabar..."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-"Saat Mandrake Linux diinstal, nampaknya beberapa paket telah diupdate sejak\n"
-"rilis awal. Beberapa kutu mungkin telah diperbaiki, dan masalah keamanan\n"
-"dipecahkan. Untuk memanfaatkan update ini Anda dianjurkan men-download dari\n"
-"internet. Pilih \"Ya\" jika ada koneksi internet aktif, atau \"Tidak\" jika\n"
-"ingin mengupdate paket lain waktu.\n"
-"\n"
-"Jika \"Ya\", daftar sumber download update akan ditampilkan. Pilih yang\n"
-"dekat. Lalu muncul pohon seleksi paket: lihat lagi pilihan Anda, tekan\n"
-"\"Instal\" untuk mengambil/nstal paket atau \"Batal\" jika tak jadi."
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Sebelum melanjutkan Anda bacalah lisensi dg baik . Itu mencakup seluruh\n"
-"distribusi Mandrake Linux, dan jika Anda tak setuju dg semua pasal di\n"
-"dalamnya, klik \"Tolak\" agar instalasi terhenti. Untuk melanjutkan, klik\n"
-"\"Terima\"."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"Kini waktunya memilih tingkat keamanan mesin. Makin terbuka suatu mesin,\n"
-"dan makin penting data di dalamnya, tingkat keamanannya harus makin tinggi.\n"
-"Tapi, level keamanan yang tinggi umumnya mengorbankan kemudahan pemakaian.\n"
-"Info ttg level keamanan dapat dilihat bab MSEC pada ``Manual Referensi''.\n"
-"\n"
-"Jika Anda tak tahu apa yg dipilih, tetaplah pada opsi standar."
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Kini Anda perlu menentukan partisi yg akan dipakai utk instalasi sistem\n"
-"Mandrake Linux. Jika partisi telah didefinisikan, pada instalasi\n"
-"GNU/Linux sebelumnya atau dg alat partisi lain, Anda dapat memakai partisi\n"
-"yang ada. Jika tidak, partisi harddisk harus didefinisikan.\n"
-"\n"
-"Utk membuat partisi, pertama pilihlah harddisk. Anda dapat memilih disk utk\n"
-"dipartisi dg mengklik \"hda\" utk harddisk IDE pertama, \"hdb\" utk disk\n"
-"kedua, \"sda\" untuk drive SCSI pertama dst.\n"
-"\n"
-"Untuk mempartisi harddisk terpilih, opsi berikut dapat digunakan:\n"
-"\n"
-" * \"Hapus semua\": opsi ini menghapus semua partisi pd harddisk terpilih.\n"
-"\n"
-" * \"Alokasi otomatis\": opsi ini memungkinkan Anda secara otomatis membuat\n"
-"partisi Ext2 dan swap di ruang kosong hard drive Anda.\n"
-"\n"
-" * \"Tambahan\": akses ke fitur tambahan:\n"
-"\n"
-" * \"Simpan tabel partisi\": simpan tabel partisi ke floppy. Berguna\n"
-"untuk pemulihan tabel-partisi di kemudian hari bila perlu. Amat disarankan.\n"
-"\n"
-" * \"Pulihkan tabel partisi\": mengembalikan tabel partisi yg disimpan\n"
-"sebelumnya dari floppy.\n"
-"\n"
-" * \"Selamatkan tabel partisi\": jika tabel partisi Anda rusak, cobalah\n"
-"mengembalikannya dg opsi ini. Hati-hati dan ingat bhw ini bisa gagal.\n"
-"\n"
-" * \"Muat ulang tabel partisi\": buang semua perubahan dan muat tabel\n"
-"partisi semula.\n"
-"\n"
-" * \"Mount otomatis media lepas\": Jika opsi ini dilepas, user harus\n"
-"secara manual me-mount/unmount media lepas seperti disket dan CD-ROM.\n"
-"\n"
-" * \"Wizard\": pilih ini jika ingin memakai wizard utk mempartisi harddisk.\n"
-"Disarankan jika Anda tak faham ttg partisi.\n"
-"\n"
-" * \"Kembali\": untuk membatalkan perubahan.\n"
-"\n"
-" * \"Ubah ke mode normal/ahli\": aksi tambahan proses partisi (tipe, opsi,\n"
-"format) dan informasi lebih.\n"
-"\n"
-" * \"Selesai\": simpan perubahan ke harddisk bila Anda selesai mempartisi.\n"
-"\n"
-"Catatan: Anda dapat meraih semua opsi dg memakai keyboard. Gunakan [Tab]\n"
-"dan panah [Up/Down].\n"
-"\n"
-"Saat partisi dipilih, Anda dapat menggunakan:\n"
-"\n"
-" * Ctrl-c utk membuat partisi baru (bila partisi kosong dipilih);\n"
-"\n"
-" * Ctrl-d utk menghapus partisi;\n"
-"\n"
-" * Ctrl-m utk menset titik mount\n"
-"\n"
-"Jika Anda menginstal mesin PPC Anda perlu membuat partisi \"bootstrap\" HFS\n"
-"kecil setidaknya 1MB yg akan dipakai oleh bootloader yaboot. Jika dibuat\n"
-"lebih besar, katakan 50MB, Anda bisa memanfaatkannya utk menyimpan kernel\n"
-"cadangan dan image ramdisk utk situasi boot darurat."
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Ada lebih dari satu partisi wicrosoft mindows terdeteksi pada harddisk\n"
-"Anda. Pilih partisi yang hendak Anda ubah ukurannya untuk instalasi sistem\n"
-"operasi Linux Mandrake.\n"
-"\n"
-"Tiap partisi terdaftar sbb: \"Nama Linux\",\"Nama windows\",\"Kapasitas\".\n"
-"\n"
-"\"Nama Linux\" berstruktur: \"tipe hard drive\", \"nomor hard drive\",\n"
-"\"nomor partisi\" (misalnya \"hda1\").\n"
-"\n"
-"\"Tipe hard drive\" adalah \"hd\" bila drive bertipe IDE dan \"sd\" jika\n"
-"berupa drive SCSI.\n"
-"\n"
-"\"Nomor Hard Drive\", selalu berupa huruf setelah \"hd\" atau \"sd\". Jika\n"
-"berupa IDE, maka:\n"
-"\n"
-" * \"a\" berarti \"hard drive master pada kontroller IDE primer\",\n"
-"\n"
-" * \"b\" berarti \"hard drive slave pada kontroler IDE primer\",\n"
-"\n"
-" * \"c\" berarti \"hard drive master pada kontroler IDE sekunder\",\n"
-"\n"
-" * \"d\" berarti \"hard drive slave pada kontroler IDE sekunder\",\n"
-"\n"
-"Pada drive SCSI, \"a\" berarti \"ID SCSI terkecil, \"b\" berarti \"ID SCSI\n"
-"terkecil kedua\", dst.\n"
-"\n"
-"\"Nama windows\" adalah huruf hard drive Anda pada windows (disk pertama\n"
-"pada partisi disebut \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Sabar... Proses ini akan makan waktu beberapa menit"
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"DrakX kini perlu tahu Anda ingin instalasi standar (\"Disarankan\") atau\n"
-"ingin punya kontrol lebih besar (\"Ahli\"). Anda juga punya pilihan utk\n"
-"melakukan instalasi baru atau upgrade sistem Mandrake Linux yg ada:\n"
-"\n"
-" * \"Instal\" Hapus total sistem lama. Tergantung isi mesin Anda saat ini,\n"
-"Anda dapat mempertahankan partisi lama (Linux atau lainnya).\n"
-"\n"
-" * \"Upgrade\" Kelas instalasi ini memungkinkan update paket yang terinstal\n"
-"di sistem Mandrake Linux Anda. Partisi dan konfigurasi user yang ada tetap\n"
-"dipertahankan. Semua tahapan konfigurasi lain tetap ada seperti layaknya\n"
-"instalasi biasa.\n"
-"\n"
-" * \"Upgrade Paket Saja\" Kelas instalasi baru yang memungkinkan upgrade\n"
-"sistem Mandrake Linux tanpa mengubah konfigurasi sistem. Penambahan paket\n"
-"juga dimungkinkan.\n"
-"\n"
-"Upgrade dapat dilakukan terhadap sistem Mandrake Linux mulai versi \"8.1\".\n"
-"\n"
-"Pilihlah opsi berikut sesuai pengetahuan Anda ttg GNU/Linux:\n"
-"\n"
-" * Disarankan: pilih ini bila Anda belum pernah menginstal OS GNU/Linux.\n"
-"Proses instalasi amat mudah dan Anda hanya ditanya sedikit pertanyaan.\n"
-"\n"
-" * Ahli: Anda dapat memiilih kelas instalasi ini jika tahu banyak tentang\n"
-"GNU/Linux. Instalasi ahli memungkinkan Anda melakukan instalasi bebas.\n"
-"Bbrp pertanyaan sulit dijawab jika Anda tak berpengetahuan kuat tentang\n"
-"GNU/Linux. Jangan pilih kelas ini kecuali Anda tahu apa yang Anda lakukan."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Normalnya, DrakX memilih papanketik utk Anda (sesuai bahasa yg Anda pilih)\n"
-"dan Anda bahkan takkan melihat tahap ini. Tapi Anda mungkin tak punya papan\n"
-"ketik yg persis cocok dg bhs Anda: misalnya, jika Anda orang Swis berbahasa\n"
-"Inggris, Anda mungkin masih ingin keyboard Swis. Atau jika Anda berbahasa\n"
-"Inggris tapi tinggal di Quebec, Anda mungkin menghadapi masalah sama. Dalam\n"
-"kedua kasus, Anda akan harus kembali ke tahap instalasi ini dan memilih\n"
-"keyboard yg sesuai dari daftar.\n"
-"\n"
-"Klik \"Lagi\" utk menampilkan daftar lengkap keyboard ter-support."
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Pilih bahasa kesukaan Anda utk instalasi dan penggunaan sistem.\n"
-"\n"
-"Klik \"Tambahan\" utk memilih bahasa-bahasa lain yg akan diinstal di\n"
-"workstation Anda. Hal ini akan menginstal file spesifik-bahasa dokumentasi\n"
-"sistem dan aplikasi. Misalnya jika Anda menginapkan user dari Spanyol di\n"
-"mesin Anda, pilih bhs Indonesia sbg bahasa utama di tampilan pohon dan di\n"
-"bagian Tambahan klik bintang abu-abu yg terkait dg \"Spanyol\".\n"
-"\n"
-"Anda dapat menginstal banyak bahasa. Setelah Anda selesai memilih tambahan\n"
-"bahasa (locale) klik \"OK\" untuk melanjutkan."
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"Secara standar DrakX berasumsi mouse Anda bertombol dua dan akan menset-up\n"
-"emulasi 3-tombol. DrakX otomatis tahu itu mouse PS/2, serial atau USB.\n"
-"\n"
-"Jika Anda ingin menunjuk tipe mouse lain, pilih tipe yg sesuai dari daftar\n"
-"yang disediakan.\n"
-"\n"
-"Jika Anda memilih mouse bukan standar, Anda akan dihadapkan pada layar tes\n"
-"mouse. Gunakan tombol dan roda untuk verifikasi setting. Jika mouse tak\n"
-"bekerja baik tekan spasi atau RETURN untuk \"Batal\" dan pilih lagi."
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Pilih port yang benar. Misalnya \"COM1\" di Mindows bernama \"ttyS0\" di \n"
-"GNU/Linux."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"Ini adalah poin terpenting penentuan sekuriti sistem GNU/Linux Anda: Anda\n"
-"harus mengisi katasandi \"root\". \"root\" adalah administrator sistem dan\n"
-"hanya dia yg berhak melakukan update, menambah user, mengubah konfigurasi\n"
-"sistem, dll. Singkatnya, \"root\" dapat melakukan apapun! Karena itu Anda\n"
-"harus memilih katasandi yang sulit ditebak - DrakX akan memberitahu jika\n"
-"terlalu mudah. Seperti Anda lihat, Anda dapat memilih utk tak memasukkan\n"
-"katasandi, tapi amat kami anjurkan tidak melakukannya jika alasannya hanya:\n"
-"tidak mengira bhw jika GNU/Linux di-boot, sistem operasi lain aman dari\n"
-"kesalahan. Karena \"root\" dapat melampaui semua batasan dan secara tidak\n"
-"sengaja menghapus semua data di partisi, menjadi \"root\" harus dipersulit.\n"
-"\n"
-"Katasandi harus berupa campuran nomor dan huruf minimal 8 karakter. Jangan\n"
-"pernah mencatat katasandi \"root\" - itu membuat sistem mudah dibajak.\n"
-"\n"
-"Tapi katasandi juga jangan terlalu panjang/rumit karena Anda harus ingat\n"
-"tanpa banyak usaha.\n"
-"\n"
-"Katasandi takkan muncul di layar seperti yg diketikkan. Anda harus dua kali\n"
-"mengisi katasandi utk mengurangi kemungkinan salah ketik. Jika Anda 2 kali\n"
-"melakukan kesalahan yg sama, katasandi \"salah\" ini akan dipakai pertama\n"
-"kali anda login.\n"
-"\n"
-"Pada mode ahli, Anda akan ditanya apakah akan berhubungan dengan server\n"
-"otentikasi seperti NIS atau LDAP.\n"
-"\n"
-"Jika jaringan Anda memakai protokol otentikasi LDAP/NIS, pilih \"LDAP\"\n"
-"(atau \"NIS\") utk otentikasi. Tanyalah admin jaringan Anda jika tak tahu.\n"
-"\n"
-"Jika komputer Anda tak terhubung dengan jaringan terkelola, pilihlah\n"
-"\"File lokal\" untuk otentikasi."
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"LILO/GRUB adalah pemuat boot GNU/Linux. Step ini biasanya otomatis penuh.\n"
-"DrakX menganalisa sektor boot disk dan beraksi menurut apa yg ditemukan:\n"
-"\n"
-" * jika sektor boot Mindows ditemukan, ia akan menggantinya dg sektor boot\n"
-"GRUB/LILO. Jadi Anda akan dapat memuat baik GNU/Linux maupun OS lain;\n"
-"\n"
-" * jika sektor boot GRUB/LILO ditemukan, ia akan menggantinya dg yg baru;\n"
-"\n"
-"Jika ragu, DrakX akan menampilkan dialog dengan opsi bervariasi.\n"
-"\n"
-" * \"Pemuat boot yang digunakan\": ada tiga pilihan:\n"
-"\n"
-" * \"GRUB\": jika Anda suka GRUB (menu teks).\n"
-"\n"
-" * \"LILO dengan menu grafis\": jika Anda suka LILO dg antarmuka grafis.\n"
-"\n"
-" * \"LILO dengan menu teks\": jika suka LILO dengan antarmuka menu teks.\n"
-"\n"
-" * \"Device boot\": Umumnya Anda takkan mengubah standar (\"/dev/hda\"),\n"
-"tapi jika suka, bootloader dapat diinstal di harddisk kedua (\"/dev/hdb\"),\n"
-"ataupun disket (\"/dev/fd0\").\n"
-"\n"
-" * \"Delay sebelum boot ke image default\": delay yang diberikan di menu\n"
-"pemuat boot kepada user saat me-reboot komputer untuk memilih entri.\n"
-"\n"
-"!! Awas, jika pemuat boot tak diinstal (dg memilih \"Cancel\" di sini),\n"
-"pastikan Anda punya jalan memboot sistem Mandrake Linux Anda! Juga pastikan\n"
-"bahwa Anda tahu apa yang Anda lakukan sebelum mengubah opsi. !!\n"
-"\n"
-"Klik \"Tambahan\" untuk menampilkan opsi lain, yg disediakan utk user ahli.\n"
-"\n"
-"Setelah parameter pemuat-boot dikonfigurasikan, ditampilkan daftar opsi\n"
-"boot yang akan muncul saat boot.\n"
-"\n"
-"Jika ada OS lain terinstal di mesin Anda, itu akan otomatis ditambahkan ke\n"
-"menu boot. Di sini Anda dapat memperbaiki opsi yang ada. Pilih entri dan\n"
-"klik \"Modifikasi\" untuk mengubah atau menghapusnya; \"Tambah\"\n"
-"membuat masukan baru; dan \"Selesai\" membawa Anda ke tahap instalasi\n"
-"berikutnya."
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (LInux LOader) dan Grub adalah pemuat boot. Dua-duanya dapat mem-boot\n"
-"GNU/Linux atau sistem operasi lain yang ada di komputer Anda.\n"
-"Biasanya, sistem operasi yang sudah ada akan dideteksi secara benar dan\n"
-"diinstallkan. Bila ternyata salah, Anda dapat menambahkan sendiri di layar\n"
-"ini. Hati-hati dalam memilih parameter yang benar.\n"
-"\n"
-"Anda mungkin ingin agar tak ada yg dapat mengakses sistem operasi lain ini.\n"
-"Anda dapat menghapus entrinya. Tapi untuk bisa masuk ke sistem operasi tsb.\n"
-"Anda perlu bootdisk nantinya."
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Anda harus menentukan tempat meletakkan info boot GNU/Linux.\n"
-"\n"
-"\n"
-"Kalau Anda kurang tahu, pilih saja \"Sektor pertama di drive (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-"Kini kita pilih sistem cetak komputer Anda. OS lain mungkin punya satu,\n"
-"Mandrake menyediakan tiga.\n"
-"\n"
-" * \"pdq\" - artinya ``print, djangan nqantri'', adalah pilihan jika Anda\n"
-"punya koneksi langsung ke printer Anda dan ingin bebas dari panik kemacetan\n"
-"printer, serta tak punya printer jaringan. Ia akan meng-handle hanya kasus\n"
-"jaringan yg amat mudah dan agak lambat utk network. Ambil \"pdq\" jika ini\n"
-"kali pertama Anda mengenal GNU/Linux. Anda dapat mengubah pilihan setelah\n"
-"instalasi dg menjalankan PrinterDrake dari Pusat Kontrol Mandrake dan\n"
-"meng-klik tombol expert/ahli.\n"
-"\n"
-" * \"CUPS\"``Sistem Cetak Unix Umum'' canggih untuk mencetak ke printer\n"
-"lokal dan juga separuh planet. Mudah dan berfungsi spt server/klien utk\n"
-"sistem cetak kuno \"lpd\" jadi kompatibel dg sistem lama. Banyak trik dapat\n"
-"dilakukan, tapi setup awalnya hampir semudah \"pdq\". Jika Anda perlu ini\n"
-"utk emulasi server \"lpd\", Anda harus menyalakan daemon \"cups-lpd\".\n"
-"Front-end grafis disediakan utk pencetakan/pemilihan opsi printer.\n"
-"\n"
-" * \"lprNG\"``daemon printer baris Generasi Baru''. Sistem ini dapat\n"
-"melakukan hal yg mirip dg yg bisa dilakukan sistem lain, hanya saja ia akan\n"
-"mencetak ke printer yang terhubung dengan network Novell, karena mensupport\n"
-"protokol IPX, dan bisa mencetak langsung ke perintah shell. Jika Anda perlu\n"
-"Novell atau mencetak ke perintah tanpa memakai konstruksi pipa terpisah,\n"
-"gunakan lprNG. Jika tidak, pilihlah CUPS sebab lebih mudah dan bekerja baik\n"
-"di network."
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX sedang mendeteksi perangkat IDE komputer Anda, juga men-scan kartu\n"
-"SCSI PCI di sistem Anda. Jika kartu SCSI ditemukan DrakX akan otomatis\n"
-"meng-instal driver yang sesuai.\n"
-"\n"
-"Karena perangkat keras terkadang tak terdeteksi, DrakX akan bertanya apakah\n"
-"ada kartu SCSI PCI. Klik \"Ya\" jika Anda tahu ada kartu SCSI terinstal di\n"
-"mesin Anda. Akan disajikan list kartu SCSI utk dipilih. Klik \"Tidak\" jika\n"
-"tak ada hardware SCSI. Jika Anda tak yakin, periksa daftar perangkat keras\n"
-"yang terdeteksi di mesin Anda dg memilih \"Lihat info hardware\" lalu klik\n"
-"\"OK\". Periksa daftar hardware lalu klik \"OK\" utk kembali.\n"
-"\n"
-"Jika Anda harus menunjuk adaptor secara manual, DrakX akan bertanya apakah\n"
-"Anda ingin menunjuk opsi untuknya. Anda harus mengizinkan DrakX mem-probe\n"
-"hardware utk opsi spesifik-kartu yg diperlukan hardware utk inisiasi. Ini\n"
-"biasanya bekerja baik.\n"
-"\n"
-"Jika DrakX gagal mem-probe opsi yang harus diberikan, Anda perlu memberikan\n"
-"opsi ke driver secara manual. Baca ``User Guide'' (bab 3, bag. \"Collecting\n"
-"information on your hardware\") utk trik mendapat parameter yg dibutuhkan\n"
-"dari dokumentasi hardware, website pabrik (jika Anda punya akses Internet)\n"
-"atau wicrosoft mindows (jika Anda memakai hardware ini di windows)."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"Anda dapat menambahkan entri yaboot, baik untuk OS lain, kernel lain, atau\n"
-"untuk image boot darurat.\n"
-"\n"
-"Untuk OS lain, entri hanya berisi label dan partisi root.\n"
-"\n"
-"Untuk Linux, ada beberapa pilihan:\n"
-"\n"
-" * Label: nama yg harus diketik di prompt yaboot utk memilih opsi boot ini.\n"
-"\n"
-" * Image: nama kernel untuk diboot. Biasanya bernama vmlinux atau nama lain\n"
-"yang mirip dengan vmlinux atau ditambahkan ekstensi lain.\n"
-"\n"
-" * Root: device \"root\" atau \"/\" untuk instalasi Linux Anda.\n"
-"\n"
-" * Append: pada hardware Apple, opsi append kernel sering digunakan untuk\n"
-"menolong inisialisasi hardware video, atau pengaktifan emulasi tombol mouse\n"
-"pada keyboard utk mouse Apple yang tidak memiliki tombol kedua dan ketiga.\n"
-"Berikut adalah beberapa contohnya:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: opsi ini bisa dipakai utk memuat modul awal sebelum device boot\n"
-"tersedia, atau untuk memuat image ramdisk untuk situasi boot darurat.\n"
-"\n"
-" * Initrd-size: standar ukuran ramdisk biasanya 4096 byte. Jika Anda perlu\n"
-"mengalokasikan ramdisk yang lebih besar, gunakan opsi ini.\n"
-"\n"
-" * Read-write: umumnya partisi \"root\" diberikan secara readonly agar bisa\n"
-"dilakukan pengecekan filesystem sebelum sistem \"hidup\". Di sini Anda bisa\n"
-"mengubah kelakuan aslinya.\n"
-"\n"
-" * NoVideo: Jika hardware video Apple problematis, Anda dapat memakai opsi\n"
-"ini utk mem-boot dalam mode \"novideo\", dengan support framebuffer native.\n"
-"\n"
-" * Default: opsi standar Linux, dapat dipilih hanya dg menekan ENTER pada\n"
-"prompt yaboot. Entri ini juga akan ditandai \"*\" jika Anda menekan [Tab]\n"
-"untuk melihat pilihan boot."
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot adalah pemuat boot utk hardware NewWorld MacIntosh. Ia mampu memboot\n"
-"GNU/Linux, MacOS maupun MacOSX jika terdapat di komputer Anda. Biasanya,\n"
-"OS lain ini terdeteksi dan terinstal dengan benar. Jika tidak, Anda dapat\n"
-"menambahkan entry secara manual di layar ini. Hati-hati memilih parameter.\n"
-"\n"
-"Opsi utama yaboot adalah:\n"
-"\n"
-" * Pesan Awal: pesan teks yang ditampilkan sebelum prompt boot.\n"
-"\n"
-" * Device Boot: menunjukkan tempat Anda ingin meletakkan info yg diperlukan\n"
-"utk memboot GNU/LInux. Biasanya Anda men-setup partisi bootstrap lebih dulu\n"
-"untuk menyimpan informasi ini.\n"
-"\n"
-" * Delay Open Firmware: tak seperti LILO, ada dua macam delay tersedia di\n"
-"yaboot. Delay pertama diukur dalam detik dan di sini Anda bisa memilih CD,\n"
-"boot OF, MacOS, atau Linux.\n"
-"\n"
-" * Timeout Boot Kernel: timeout ini mirip delay boot LILO. Setelah memilih\n"
-"Linux, akan ada delay 0.1 detik sebelum kernel default Anda dipilih.\n"
-"\n"
-" * Aktifkan boot CD?: opsi ini memungkinkan Anda memilih \"C\" (CD) pada\n"
-"prompt boot pertama.\n"
-"\n"
-" * Aktifkan boot OF?: dg opsi ini Anda bisa memilih \"N\" (Open Firmware)\n"
-"saat prompt boot pertama.\n"
-"\n"
-" * OS Standar: Anda dapat memilih OS yang akan diboot secara default saat\n"
-"delay Open Firmware terlampaui."
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"Di sini disajikan macam-macam parameter mesin Anda. Tergantung hardware yg\n"
-"ter-instal, Anda dapat - atau tidak, melihat entri berikut:\n"
-"\n"
-" * \"Mouse\": cek konfigurasi mouse, klik tombol utk mengubahnya bila perlu\n"
-"\n"
-" * \"Keyboard\": cek konfigurasi map keyboard, klik tombol utk mengubahnya\n"
-"bila perlu.\n"
-"\n"
-" * \"Zona waktu\": DrakX menerka zona waktu Anda dari bahasa yg Anda pilih.\n"
-"Tapi sekali lagi seperti pilihan keyboard, Anda mungkin tak berada di negri\n"
-"yang selaras dg bahasa terpilih. Jadi Anda mungkin perlu menekan tombol\n"
-"\"Zona waktu\" utk mengkonfigurasikan jam sesuai zona waktu tempat Anda.\n"
-"\n"
-" * \"Printer\": klik \"No Printer\" utk membuka dukun konfigurasi printer.\n"
-"\n"
-" * \"Kartu suara\": kartu suara terdeteksi di sistem Anda akan ditampilkan\n"
-"di sini. Tiada modifikasi yg dapat dilakukan saat instalasi.\n"
-"\n"
-" * \"Kartu TV\": kartu TV yg terdeteksi di sistem Anda akan ditampilkan di\n"
-"sini. Tiada modifikasi yg dapat dilakukan saat instalasi.\n"
-"\n"
-" * \"Kartu ISDN\": kartu ISDN yg terdeteksi di sistem Anda akan ditampilkan\n"
-"di sini. Anda dapat meng-klik tombol utk mengubah parameternya."
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Pilih harddrive yg akan dihapus utk disediakan bagi partisi\n"
-"Linux Mandrake. Hati-hati, semua data di situ akan hilang dan\n"
-"tak dapat dikembalikan seperti semula!"
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Klik \"OK\" bila Anda ingin menghapus semua data dan partisi yang ada di\n"
-"hard drive ini. Awas, setelah mengklik \"OK\" Anda tak dapat mengembalikan\n"
-"data dan partisi di drive ini termasuk data windows.\n"
-"\n"
-"Pilih \"Batal\" utk membatalkan aksi ini tanpa kehilangan data dan partisi\n"
-"yang ada dalam hard drive ini."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Gagal mengakses modul kernel yang cocok (file %s hilang), ini umumnya "
-"berarti bahwa disket boot Anda tak sinkron dengan media instalasi (buatlah "
-"disket boot baru"
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "Anda harus juga memformat %s"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Anda memilih server berikut: %s\n"
-"\n"
-"Server ini aktif sesuai standar. Sementara ini tiada kabar ttg sekuritas,\n"
-"tapi mungkin ada yg telah ditemukan. Jika terjadi, upgrade-lah selekas "
-"mungkin.\n"
-"\n"
-"Jadi instal server ini?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Tanpa domain NIS, broadcast tak dapat dipakai"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Masukkan disket yang sudah diformat dengan tipe FAT di drive %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Disketnya belum diformat dengan sistem FAT"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Untuk menggunakan pilihan paket yang sudah disimpan sebelumnya, bootlah "
-"instalasi dengan pilihan ''linux defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Error saat membaca file %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Ada hardwaare di komputer ini yang membutuhkan driver ``proprietary''.\n"
-"Anda bisa mencari informasinya di: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Pilih dulu partisi rootnya.\n"
-"Caranya, buatlah partisi (atau pilih di yang sudah ada).\n"
-"Lalu pilih ``Mount point'' dan set ke `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Anda harus buat partisi swap"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Anda belum punya partisi swap\n"
-"\n"
-"Jalan terus?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Anda harus punya partisi FAT termount pada /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Pakai ruang kosong"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Tidak ada cukup ruangan untuk mengalokasikan partisi baru"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Pakai partisi yang sudah ada"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Tidak ada partisi yang bisa digunakan"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Gunakan partisi windows untuk loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Partisi mana yang hendak dipakai oleh Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Pilih ukurannya"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Ukuran partisi root dalam MB: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Ukuran partisi swap dalam MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Pakai ruang kosong pada partisi windows"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "partisi mana yang mau Anda ubah ukurannya?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Sedang menghitung bound filesystem windows"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Saya tidak dapat mengubah ukuran partisi FAT ini,\n"
-"Ada error ini yang terjadi: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr "Partisi windows Anda terlalu terfragmen, jalankan ``defrag'' dulu"
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"AWAS!\n"
-"\n"
-"DrakX sekarang hendak mengubah ukuran partisi Mindows Anda. Hati-hati:\n"
-"proses ini amat berbahaya. Bila Anda belum melakukannya, silakan\n"
-"keluar dari proses instalasi ini, lalu reboot ke windows\n"
-"jalankan scandisk (dan defrag juga) di partisi ini lalu backup datanya.\n"
-"Setelah yakin, tekan Ok."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Tentukan ukuran untuk menyimpan windows"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "Partisi %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Resize FAT gagal: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Tidak ada partisi FAT untuk diubah ukurannya atau untuk digunakan sebagai "
-"loopback (atau tidak ada cukup ruangan)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Hapus seluruh disk"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Buang windows"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Anda punya beberapa harddisk, yang mana yang ingin di-instal linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "SEMUA partisi yang ada beserta data pada drive %s akan hilang"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Lakukan partisi disk secara custom"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "gunakan fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Anda bisa buat partisi %s \n"
-"Habis itu, jangan lupa simpan dengan menekan tombol `w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Eh, Anda tak punya cukup ruangan pada partisi windows!"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Aduh, ruangannya tak cukup nih untuk menginstall"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Wizard partisi DrakX menemukan solusi berikut:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Proses partisi gagal: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Up-kan Jaringan"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Matikan Jaringan"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Ada error nih, tapi aku tak tahu cara mengatasinya.\n"
-"Lanjutkan saja, tapi resiko tanggung sendiri yah."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Lokasi mount %s ada dua"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Ada paket yang penting tak benar diinstalnya.\n"
-"Mungkin saja drive cdrom atau cdromnya yang rusak.\n"
-"Cek dulu cdromnya di komputer yang sudah terinstall Linux dengan\n"
-"perintah \"rpm -qpl Mandrake/RPMS/*.rpm\" dulu gih\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Selamat Datang di %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Wah maaf nih, tak ada floppy drive yah ?"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Memulai langkah `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Sumber daya sistem Anda rendah. Nantinya Anda akan sulit menginstal\n"
-"Linux-Mandrake. Cobalah instalasi text. Untuk hal ini silakan\n"
-"tekan `F1' saat booting pada CDROM, lalu ketikkan `text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Kelas Instal"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Pilihlah kelas instalasi berikut:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ukuran total grup yang dipilih kira-kira %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Kalau Anda mau nginstall dengan ukuran yang lebih kecil dari ini,\n"
-"pilih dulu persentase paket yang hendak diinstall.\n"
-"\n"
-"Persentasi kecil berarti akan install paket yang penting-penting saja;\n"
-"dan sebaliknya persentase 100%% akan install semua paket yang tadi sudah\n"
-"dipilih"
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Anda punya hard disk cuma cukup untuk sekitar %d%% dari seluruh paketini.\n"
-"\n"
-"Kalau Anda mau nginstall dengan ukuran yang lebih kecil dari ini,\n"
-"pilih dulu persentase paket yang hendak diinstall.\n"
-"Persentasi kecil berarti akan install paket yang penting-penting saja;\n"
-"dan sebaliknya persentase %d%% akan install paket yang tadi sudah\n"
-"dipilih sebanyak-banyaknya"
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Anda akan bisa memilih dengan lebih lengkap nanti"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Persentase paket yang akan diinstall"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Pilihan Grup Paket"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Pilih paket sendiri"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Ukuran total: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Paket Error"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Nama: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versi: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Ukuran: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Derajat: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Anda tak bisa pilih paket ini sebab tak ada ruang kosong untuk menginstallnya"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Paket ini yang akan diinstall"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Paket berikut adalah yang akan dihapus"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Anda tak bisa pilih/buang paket ini"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Paket ini harus diinstall, tak bisa dibuang"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Anda tak bisa buang paket ini, sebab dia sudah diinstall"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Paket ini mesti diupgrade\n"
-"Benar tak mau dipilih?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Anda tak bisa buang paket ini. dia mesti diupgrade"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Tunjukkan paket yang sudah dipilih secara otomatis"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Instal"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Muat/Simpan di floppy"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Update pilihan paket"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Instalasi minimal"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Pilih paket yang akan diinstal"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Instalasi"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Perkiraan"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Sisa waktu "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Tunggu ya, saya sedang menyiapkan instalasi"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d paket"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Sedang instal paket %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Terima"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Tolak"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Ganti CDROM!\n"
-"\n"
-"Silakan masukkan CDROM berlabel \"%s\" di drive Anda dan tekan OK\n"
-"Kalau Anda tak punya CDROM ini, tekan Batal aja untuk membatalkan instalasi "
-"dari CD ini."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Cuek aja?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Ada error mengurutkan paket"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Ada error saat menginstall paket"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Peringatan\n"
-"\n"
-"Mohon dibaca dulu semua ketentuan di bawah. Bila Anda tidak setuju dengan "
-"salah satu bagiannya\n"
-"Anda tidak dapat menginstal media CD berikutnya. Silakan tekan 'Tolak' untuk "
-"melanjutkan instalasi\n"
-"tanpa menggunakan media ini.\n"
-"\n"
-"\n"
-"Ada beberapa komponen yang ada di media CD berikutnya tidak dilepas dalam "
-"lisensi GPL atau perjanjian\n"
-"sejenis. Komponen-komponen itu diatur dalam ketentuan dan kondisi dalam "
-"lisensi yang bersangkutan.\n"
-"Baca dengan hati-hati dan penuhi setiap lisensi sebelum Anda menyebarkan "
-"komponen tersebut.\n"
-"Model lisensi tersebut akan melarang proses transfer, duplikasi (kecuali "
-"untuk alasan backup), penyebaran\n"
-"kembali, rekayasa ulang, de-assembly, de-kompilasi, atau modifikasi pada "
-"komponen tersebut.\n"
-"Tiap pelanggaran pada perjanjian akan segera mengakhiri hak-hak Anda dalam "
-"lisensi tersebut.\n"
-"Kecuali bila dibolehkan, Anda tidak dapat menginstall program ini dalam "
-"lebih dari satu sistem\n"
-"atau menggunakannya di jaringan. Bila Anda masih ragu, silakan huibungi "
-"langsung distributor\n"
-"atau editor komponen ini. Anda dilarang mentransfer komponen ini ke pihak "
-"ketiga atau mengkopinya.\n"
-"\n"
-"\n"
-"Semua hak pada komponen di media CD berikutnya dimiliki oleh pembuatnya "
-"masing-masing\n"
-"dan dilindungi oleh hukum hak cipta dan hak intelektual khusus untuk program "
-"komputer.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Ada error"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "Anda ingin tinggalkan instalasi?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Persetujuan Lisensi"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Linux-"
-"Mandrake distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Linux-Mandrake distribution.\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:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Keyboard"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Pilih layout keyboard Anda"
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Ini adalah daftar keyboard yang tersedia"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Kelas instalasi yang anda diinginkan?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Instal/Update"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Akan instal atau update?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Disarankan"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Ahli"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Upgrade"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Hanya upgrade paket"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Pilihlah tipe mouse Anda."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Port Mouse"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Di serial port mana mouse Anda dicolokkan ?"
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Emulasi tombol"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emulasi 2 tombol"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emulasi tombol 3"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfigurasikan card PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "konfigurasi IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "Tidak ada partisi"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Mendeteksi partisi untuk mencari lokasi mount"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Pilih lokasi mount"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Saya tak bisa baca tabel partisi, udah hancur lebur nih :(\n"
-"Aku akan coba hapus partisi yg jeleknya (SEMUA DATA akan HILANG).\n"
-"Solusi lainnya adalah jangan biarkan saya memodifikasi tabel partisi.\n"
-"(pesan errornya adalah %s)\n"
-"\n"
-"Anda setuju untuk menghapus semua partisi?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake gagal membaca tabel partisi Anda.\n"
-"Lanjutkan tapi resiko tanggung sendiri!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Tiada ruang 1MB utk bootstrap! Instal akan berlanjut, tetapi utk mem-boot "
-"sistem, Anda perlu membuat partisi bootstrap di DiskDrake"
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Tiada partisi root tertemukam utk upgrade"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Partisi root"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Manakah partisi root (/) di sistem Anda?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Anda harus reboot agar perubahan table partisi dapat berlaku"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Pilih partisi yang akan diformat"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Periksa bad blok?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Melakukan format partisi"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Membuat dan memformat file %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Instalasi tidak bisa diteruskan karena swap kurang, tambahin dong"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Sedang mencari paket yang tersedia"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Mencari paket untuk diupgrade"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr "Sistem ini tak punya cukup space untuk install atawa upgrade (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Lengkap (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Disarankan (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Pilih muat/simpan seleksi paket di floppy.\n"
-"Formatnya sama dengan floppy buatan auto_install."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Muat dari floppy"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Memuat dari floppy"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Pilihan paket"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Masukkan disket yg berisi seleksi paket"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Simpan di floppy"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Ukuran terpilih melebihi area yg ada"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Tipe instalasi"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Anda belum memilih grup paket.\n"
-"Pilih instalasi minimal yang Anda ingin:"
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "Dengan X"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "Dengan dokumentasi dasar (disarankan!)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Sungguh instalasi minimal (khususnya tanpa urpmi)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Kalau Anda punya semua CD pada daftar di bawah, tekan OK.\n"
-"Kalau tak punya sama sekali, click Cancel.\n"
-"Kalau cuma punya beberapa aja, pilih aja, trus klik Ok."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Label CD-ROM \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Sedang menyiapkan instalasi"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Sedang instal paket %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Konfigurasi Instalasi akhir"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Masukkan floppy boot ke drive %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Masukkan disket Update Modules ke drive %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Anda sekarang bisa mendownload software khusus untuk enkripsi.\n"
-"\n"
-"PERHATIAN:\n"
-"\n"
-"Berhubung adanya peraturan yang berbeda di berbagai lokasi berkenaan\n"
-"dengan penggunaan software ini, Anda dan/atau end user yang akan\n"
-"menggunakan software ini harus memastikan bahwa dirinya boleh untuk\n"
-"mendownload dan/atau menggunakan software ini sesuai dengan hukum\n"
-"yang berlaku di lokasinya.\n"
-"\n"
-"Juga ditekankan bahwa Anda dan/atau end user harus sadar bahwa dirinya\n"
-"tidak diperkenankan untuk melanggar hukum tersebut. Apabila melanggar\n"
-"akan dikenakan sangsi yang berat.\n"
-"\n"
-"Mandrakesoft dan para pembuat software dan/atau penyedianya sama sekali "
-"tidak\n"
-"bertanggung jawab baik untuk segala kerusakan khusus, tidak langsung, dan\n"
-"insidentil apapun (termasuk namun tidak terbatas pada kehilangan keuntungan\n"
-"gangguan bisnis, kehilangan data komersial dan kerugian lain dan \n"
-"segala kewajiban yang harus dibayarkan sesuai hukum) yang disebabkan\n"
-"oleh penggunaan, kepemilikan, atau penjualan dari software yang\n"
-"didownload ini, setelah Anda dan/atau end user memiliki akses\n"
-"ke software tersebut setelah menandatangani perjanjian yang ada.\n"
-"\n"
-"Apabila ada pertanyaan mengenai perjanjian ini, silakan hubungi\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Anda kini dapat men-download paket terupdate yg dirilis pasca distribusi.\n"
-"\n"
-"Anda akan mendapat pembetulan keamanan/kutu, tapi Anda perlu punya koneksi\n"
-"Internet terkonfigurasi utk melanjutkan.\n"
-"\n"
-"Ingin instal update ?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Mandrake Linux sedang dihubungi untuk mengambil daftar mirror"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Pilih mirror tempat Anda ingin mengambil paket program"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Saya sedang mencek mirror untuk mengambil daftar paket yang tersedia"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Pilih timezone Anda"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Jam hardware diset ke GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "sinkronisasi waktu otomatis (dg NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "Server NTP"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "server CUPS remote"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Tidak ada printer"
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "Anda punya kartu suara ISA?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "Jalankan \"sndconfig\" setelah instalasi untuk konfigurasi kartu suara"
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Kartu suara tak terdeteksi. Coba \"harddrake\" setelah instalasi"
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Ringkasan"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Mouse"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Timezone"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Printer"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "kartu ISDN"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Sound Card"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV Card"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "File lokal"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Set katasandi root"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Tak berkatasandi"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Katasandinya terlalu mudah (harus paling tidak %d karakter)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autentikasi"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Otentikasi LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "Basis dn LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "Server LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "Otentikasi NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "Domain NIS"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "Server NIS"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Bootdisk baru membantu Anda untuk melakukan boot sistem Linux tanpa\n"
-"tergantung pada bootloader. Kadang ini berguna bila Anda tidak mau install\n"
-"SILO di sistem Anda, atau saat sistem operasi lain menghapus SILO, atau "
-"SILO\n"
-"tidak bisa digunakan pada konfigurasi hardware Anda. Bootdisk ini juga bisa "
-"digunakan\n"
-"dengan image rescue Mandrake, yang memudahkan kita untuk merecover sistem\n"
-"dari kegagalan. Sekarang, saya mau tanya nih... mau bikin bootdisk nggak ?"
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Drive Disket Pertama"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Drive disket kedua"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Lewatkan"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Bootdisk baru membantu Anda untuk melakukan boot sistem Linux tanpa\n"
-"tergantung pada bootloader. Kadang ini berguna bila Anda tidak mau install\n"
-"lilo (ataw grub) di sistem Anda, atau saat sistem operasi lain menghapus "
-"lilo, atau lilo\n"
-"tidak bisa digunakan pada konfigurasi hardware Anda. Bootdisk ini juga bisa "
-"digunakan\n"
-"dengan image rescue Mandrake, yang memudahkan kita untuk merecover sistem\n"
-"dari kegagalan. Sekarang, saya mau tanya nih... mau bikin bootdisk nggak ?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-"\n"
-"\n"
-"(PERINGATAN! Anda menggunakan XFS untuk partisi root,\n"
-"pembuatan bootdisk di disket 1.44 Mb mungkin gagal,\n"
-"karena XFS perlu driver amat besar)."
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Tiada floppy drive tersedia"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Pilih drive floppy untuk membuat bootdisk"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Masukkan disket di %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Membuat bootdisk"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Membuat bootloader"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Nampaknya Anda punya mesin DuniaLama/TakJelas.\n"
-"Bootloader yaboot takkan bekerja.\n"
-"Instal akan berlanjut, tapi Anda perlu memakai\n"
-"BootX utk mem-boot mesin Anda"
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Ingin pakai aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Ada error saat install aboot,\n"
-"paksakan instalasi walau merusak partisi awal?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Instalasi bootloader"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Instalasi bootloader gagal. Ada kesalahan berikut:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Gantilah bootdevice Open Firmware untuk mengaktifkan bootloader.\n"
-" Jika Anda tak melihat prompt bootloader saat reboot, tekan\n"
-" Command-Option-O-F saat reboot dan ketik:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" kemudian: shut-down\n"
-"Anda akan melihat prompt bootloader pada boot selanjutnya."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Masukkan disket kosong di drive %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Lagi buat disket auto install"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Ada tahapan yang tidak diselesaikan.\n"
-"\n"
-"Anda ingin keluar sekarang?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Selamat, instalasi selesai.\n"
-"Cabut media boot dan tekan Return/Enter untuk reboot.\n"
-"\n"
-"\n"
-"Untuk informasi perbaikan rilis Linux Mandrake ini,\n"
-"silakan lihat Errata di:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Informasi untuk konfigurasi sistem juga tersedia di \n"
-"bab Instalasi akhir di Buku Petunjuk Resmi Linux Mandrake."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Buat floppy instalasi otomatis"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"Bila Anda mau, auto install bisa dilakukan secara otomatis penuh,\n"
-"jadi instalasinya akan mengusai hard drive!\n"
-"(ini dimaksudkan untuk menginstall pada komputer lain)\n"
-"\n"
-"Mungkin Anda perlu mengulangi instalasinya.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Otomatis"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Ulang"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Simpan pilihan paket"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Instalasi Linux Mandrake %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> untuk pindah | <Spasi> untuk pilih | <F12> Layar berikut"
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu hilang"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "consolehelper hilang"
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Pilih file"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Tambahan"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Dasar"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Tunggulah"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Buka Tree"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Tutup Tree"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Togel tampilan rata dan terurut grupnya"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Pilihan salah, silakan ulangi\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Pilihan Anda? (default %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Entri yang harus Anda penuhi:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Pilihan Anda? (0/1, default %s) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Tombol `%s': %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "Anda ingin meng-klik tombol ini? "
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Pilihan Anda? (default %s%s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Banyak yang dapat dipilih dari (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Pilihlah nomor pertama dari 10-range yang ingin Anda edit,\n"
-"atau tekan Enter untuk melanjutkan.\n"
-"Pilihan Anda? "
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Catatan, label berubah:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Kirim ulang"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Ceko (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Jerman"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Spanyol"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Finland"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Perancis"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norwegia"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polandia"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Rusia"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Swedia"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Keyboard UK"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Keyboard US"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Albania"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armenia (lama)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armenia (mesintik)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armenia (fonetik)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaijan (latin)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgia"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "Bulagaria (fonetik)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "Bulgaria (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazil (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Belarusia"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Swis (layout Jerman)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Swis (layout Prancis)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Ceko (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Jerman (tanpa dead key)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Denmark"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norwegia)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Swedia)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estonia"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgia (layout \"Rusia\")"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgia (layout \"Latin\")"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Yunani"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Hungaria"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Kroasia"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Ibrani"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Ibrani (fonetik)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iran"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandia"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Itali"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Jepang 106 tombol"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Keyboard Korea"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Amerika Latin"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lithuania AZERTY (lama)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lithuania AZERTY (baru)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lithuania \"number row\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lithuania \"phonetic\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "Latvia"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Macedonia"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Belanda"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Polandia (layout qwerty)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Polandia (layout qwertz)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugis"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Kanada (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Romanian (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Romanian (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Rusia (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slovenia"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovakia (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovakia (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Serbia (cyrillic)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "Tamil"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Papanketik Muangthai"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Papanketik Tajik"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turki (model \"F\" tradisional)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turki (model \"Q\" modern)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukraina"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Keyboard US (internasional)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnam \"numeric row\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Yugoslavia (latin)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr "kunci Alt Kanan"
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr "Kedua Shift bersamaan"
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr "Kunci Control dan Shift bersamaan"
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr "Kunci CapsLock"
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Kunci Ctrl dan Alt bersamaan"
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr "Kunci Alt dan Shift bersamaan"
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr "Kunci \"Menu\""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr "Kunci \"Mindows\" kiri"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr "Kunci \"Mindows\" kanan"
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Mount melingkar %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Hapus dulu volume logiknya\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr "Support PCMCIA tak ada lagi utk kernel 2.2, pakailah kernel 2.4."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Mouse Sun"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Mouse PS2 wheel generik"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 tombol"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Mouse Generik 2 Tombol"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generik"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "wheel"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "serial"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Mouse Generik 3 Tombol"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Sistem Mouse (serial)"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (serial, old C7 type)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 tombol"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 tombol"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "tiada"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Tidak pakai mouse"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Silakan di test mousenya"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Untuk mengaktifkan mouse,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "gerakan rodanya!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Selesai"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Lanjutkan ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Tahap sebelumnya"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Sudah sesuai?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Hubungan ke Internet"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Cara yang umum untuk terkoneksi ke adsl adalah dengan menggunakan pppoe.\n"
-"Namun ada juga yang menggunakan pptp, dan ada yang pakai dhcp saja.\n"
-"Bila ragu, pilih saja 'gunakan pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "usb speedtouch Alcatel"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "gunakan dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "gunakan pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "gunakan pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Klien dhcp mana yang ingin Anda pakai?\n"
-"defaultnya adalah dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Tidak ada adapter jaringan ethernet yang terdeteksi di sistem ini.\n"
-"Saya jadinya tidak dapat mengkonfigurasikan tipe koneksi ini deh."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Pilih interface jaringan"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Pilih adapter jaringan yang akan digunakan untuk terhubung ke Internet"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "Tidak ada card network ya?"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Konfigureasi jaringan"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Masukkan nama komputernya karena ada server DHCP yang mengharuskan adanya "
-"hostname ini.\n"
-"Hostname (nama komputer) sebaiknya merupakan nama host yg fully-qualified\n"
-"misalnya ``samson.ciawi.mdamt.net''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Nama Host"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Wizard Konfigurasi Jaringan"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Modem ISDN external"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "card ISDN Internal"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Tipe koneksi ISDN apa yang Anda miliki?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Konfigurasi ISDN mana yg Anda suka?\n"
-"\n"
-"* Konfigurasi lama menggunakan isdn4net, berisi alat perkasa,\n"
-" tetapi tricky bagi pemula, dan tidak standar.\n"
-"\n"
-"* Konfigurasi baru lebih mudah dimengerti, lebih standar,\n"
-" tapi dg alat lebih sedikit.\n"
-"\n"
-"Kami sarankan konfigurasi ringan.\n"
-"\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Konfigurasi baru (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Konfigurasi lama (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "konfigurasi ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Pilih provider Anda.\n"
-"Bila tidak ada dalam daftar, pilih Tidak Terdaftar"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Protokol Eropa"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Protokol Eropa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protokol lain"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protokol lain \n"
-" tanpa D-Channel (leased lines)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Protokol apa yang ingin Anda gunakan?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Tipe card mana yang Anda punya?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Saya tak tahu"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Bila Anda punya card ISA, konfigurasi pada layar berikut nanti harusnya "
-"sudah benar.\n"
-"\n"
-"Bila Anda punya card PCMCIA, Anda harus mengetahui irq dan io kartu Anda "
-"itu.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Batal"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Lanjut"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Manakah card ISDN Anda?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Saya mendeteksi adanya sebuah card ISDN PCI, tapi saya tidak tahu tipenya. "
-"Silakan pilih card PCI tersebut pada layar berikutnya."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Tiada kartu PCI ISDN ditemukan. Pilihlah satu pd layar berikut."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Di serial port mana modem Anda terhubung?"
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Parameter Dialup"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Nama koneksi"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Nomor telepon"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Login ID"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Script-based"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Terminal-based"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Nama domain"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Server DNS Primary (boleh diisi/tidak)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Server DNS Sekondari (boleh tidak diisi)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Anda bisa putuskan atau konfigurasi koneksi yang ada sekarang."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Anda bisa mengkonfigurasikan ulang koneksi ini"
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Sekarang Anda sedang terhubung ke Internet."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Anda bisa sambungkan koneksi ke Internet atau mengkonfigurasikan ulang."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Anda sedang tidak terhubung ke Internet."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Tersambung"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Putus"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Konfigurasikan koneksi"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Koneksi dan konfigurasi Internet"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Kita akan mengkonfigurasi koneksi %s."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Konfigurasi koneksi %s.\n"
-"\n"
-"\n"
-"Tekan OK utk mulai."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Konfigurasi Jaringan"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Jaringan Anda sudah terkonfigurasi lho\n"
-"Silakan klik OK untuk rekonfigurasi ulang koneksi jaringan/internet ini, "
-"atau batal jika Anda berubah pikiran.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Selamat Datang di Wizard Koneksi Jaringan\n"
-"\n"
-"Sekarang kita akan mengkonfigurasikan internet/jaringan.\n"
-"Bila Anda tidak mau menggunakan deteksi otomatis, mohon untuk tidak memilih "
-"checkbox.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Pilih profil yang hendak Anda konfigurasikan"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Gunakan deteksi otomatis"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Mendeteksi alat..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Konfigurasi koneksi modem biasa "
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "dideteksi pada port %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "Konfigurasi koneksi ISDN"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "%s telah terdeteksi"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "Koneksi ADSL"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "telah dideteksi ada pada interface %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Konfigurasi jaringan kabel"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "Koneksi kabel terdeteksi"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "konfigurasi LAN"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "ada ethernet card yang terdeteksi"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Pilih koneksi yg hendak dikonfigurasi"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Anda mengkonfigurasi bbrp jalan utk koneksi Internet.\n"
-"Pilih yg ingin Anda pakai.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Koneksi Internet"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Anda mau jalankan koneksi ini saat boot?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Konfigurasi Jaringan"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "Network perlu di-start ulang"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Problem terjadi saat restart netword:\n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Selamat, jaringan dan internet telah dikonfigurasikan.\n"
-"\n"
-"Konfigurasi akan diterapkan di sistem Anda.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Setelah itu, silakan restart X Anda agar bebas dari masalah pergantian\n"
-"nama host."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"Problem konfigurasi.\n"
-"Tes koneksi Anda via net_monitor atau mcc. Jika koneksi tak berjalan, Anda "
-"mungkin perlu jalankan konfigurasi dari awal lagi"
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"AWAS: device ini sebelumnya telah dikonfigurasikan untuk terhubung ke "
-"Internet.\n"
-"Tekan OK untuk tetap menggunakan konfigurasi lama.\n"
-"Bila ingin menggantinya, silakan ganti isi pada kolom-kolom di konfigurasi "
-"ini."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Masukkan konfigurasi IP untuk mesin ini.\n"
-"Tiap item harus diberikan sebagai alamat IP dalam notasi decimal\n"
-"bertitik (misalnya 202.159.35.32)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigurasi perangkat jaringan %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (driver %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "Alamat IP"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Netmask"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "IP otomatis"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Alamat IP harus dalam format 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Masukkan nama komputernya.\n"
-"Hostname (nama komputer) sebaiknya merupakan nama host yg fully-qualified\n"
-"misalnya ``mdamt.fdns.net''.\n"
-"Anda juga bisa masukkan alamat IP gatewaynya kalau ada"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "Server DNS"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (mis. %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Device Gateway"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Konfigurasi proxy"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "Proxy HTTP"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "Proxy FTP"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Lacak ID kartu network (berguna di laptop)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy biasanya http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy biasanya ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Konfigurasi Internet"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Anda ingin tes koneksi Internet sekarang?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Tes koneksi Anda..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Sistem ini sekarang terhubung ke Internet."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Untuk alasan keamanan, sekarang akan diputus koneksinya"
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Sistem ini sepertinya tidak terhubung ke Internet deh.\n"
-"Cobalah konfigurasikan ulang koneksinya."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Konfigurasi Koneksi"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Silakan isi atau cek kolom berikut"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ card"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Mem card (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO Card"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_0 card"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 card"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Nomor telepon Anda"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Nama provider (misalnya provider.net.id)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Nomor telepon provider"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "DNS Provider 1 (boleh diisi boleh tidak)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "DNS Provider 2 (boleh diisi boleh tidak)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Pilih negri Anda"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "mode dial"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Laju koneksi"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Timeout koneksi (detik)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Login Account (username)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Katasandi Account"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "gagal melakukan mount: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Partisi extended tak bisa dipakai di platform ini"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Anda punya tabel partisi tapi tidak bisa saya gunakan.\n"
-"Satu-satunya cara adalah memindahkan partisi primary Anda ke partisi\n"
-"extended selanjutnya"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Proses restore dari file %s gagal: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "File backup rusak"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Error pada saat menulis file %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Ada sesuatu yang buruk terjadi pada drive Anda,\n"
-"hal ini saya ketahui saat gagal mengecek integritas data di situ.\n"
-"Artinya, data apapun yang ditulis ke situ akan gagal."
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "harus ada"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "penting"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "bagus deh"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "bagus"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "hmm.."
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Printer lokal"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "printer remote"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Printer di server CUPS remote"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Printer di server lpd remote"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Printer jaringan (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Printer di server SMB/windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Printer di server NetWare"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Masukkan URI device printer"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Pipe job ke perintah"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Model tak dikenal"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Printer Lokal"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Printer Remote"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " di port paralel \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", printer USB \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", alat multifungsi di port paralel \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", alat multifungsi di USB"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", alat multifungsi di HP JetDirect"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", alat multifungsi"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", cetak ke %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "di server LPD \"%s\", printer \"%s\""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", host TCP/IP \"%s\", port %s"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "di server Windows \"%s\", share \"%s\""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "di server Novell \"%s\", printer \"%s\""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", menggunakan perintah %s"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Printer telanjang (tanpa driver)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(di %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(di mesin ini)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Di server CUPS \"%s\""
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Default)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Pilih koneksi Printer"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Bagaimana printer ini disambung ke komputer?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Printer pada server CUPS remote tak perlu dikonfigurasikan di sini; printer "
-"ini akan secara otomatis dideteksi."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-msgid "CUPS configuration"
-msgstr "konfigurasi CUPS"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-msgid "Specify CUPS server"
-msgstr "Tentukan server CUPS"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"Untuk mengakses printer di server CUPS remote dari jaringan lokal, Anda tak "
-"perlu mengkonfigurasi apapun; server CUPS otomatis memberi tahu mesin Anda "
-"ttg printer mereka. Semua printer yg dikenal mesin Anda terdaftar di bagian "
-"\"Printer remote\" di window utama Printerdrake. Bila server CUPS Anda ada "
-"di jaringan lain, Anda harus menyodorkan alamat IP dan nomor port server "
-"CUPS utk mendapat info printer dari server. Jika tidak, biarkan kosong."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Biasanya CUPS terkonfigurasi otomatis sesuai jaringan Anda, sehingga Anda "
-"dapat mengakses printer di server CUPS jaringan lokal Anda. Jika tak jalan, "
-"matikan \"Konfigurasi CUPS otomatis\" dan edit /etc/cups/cupsd.conf secara "
-"manual. Jangan lupa restart CUPS selanjutnya (komando: \"service cups restart"
-"\")."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "Alamat IP harus seperti 192.168.1.20"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Nomor port harus berupa bilangan bulat"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP server CUPS"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Port"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Konfigurasi CUPS otomatis"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Pendeteksian alat..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Tes port"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Tambah printer baru"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Selamat Datang di Dukun Setup Printer\n"
-"\n"
-"Dukun ini dapat menginstal printer lokal atau remote utk digunakan dari "
-"mesin ini dan juga dari mesin lain di network.\n"
-"\n"
-"Dia akan menanyai semua info yg dibutuhkan utk menset up printer dan memberi "
-"Anda akses ke semua driver printer tersedia, opsi driver, dan tipe koneksi "
-"printer."
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Printer Lokal"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Selamat Datang di Dukun Setup Printer\n"
-"\n"
-"Dukun ini membantu Anda menginstal printer terhubung dengan komputer ini.\n"
-"\n"
-"Hubungkan printer Anda ke komputer ini dan nyalakan. Klik \"Lanjut\" jika "
-"siap, atau \"Batal\" bila Anda tak ingin men-set up printer sekarang.\n"
-"\n"
-"Ingat bahwa beberapa komputer bisa crash saat deteksi otomatis printer, "
-"matikan \"Deteksi otomatis printer\" utk instalasi printer tanpa deteksi "
-"otomatis. Pakailah \"Mode Ahli\" printerdrake bila Anda ingin set up "
-"pencetakan di printer remote jika printerdrake tak otomatis menampilkannya."
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Printer deteksi otomatis"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"Selamat, printer Anda kini terinstal dan terkonfigurasi!\n"
-"\n"
-"Anda dapat mencetak dg perintah \"Cetak\" di aplikasi Anda (biasanya di menu "
-"\"File\").\n"
-"\n"
-"Jika Anda ingin menambah, menghapus atau mengubah nama printer, atau jika "
-"ingin mengubah opsi standar setting (tray kertas, kualitas cetak, ...), "
-"pilih \"Printer\" di bagian \"Perangkat Keras\" Pusat Kontrol Mandrake."
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Deteksi Otomatis Printer"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake dapat mendeteksi otomatis printer paralel dan USB yang "
-"terkoneksi lokal, tapi ingat di beberapa sistem deteksi otomatis DAPAT "
-"MEMBEKUKAN SISTEM ANDA DAN MEMBUAT SISTEM FILE ANDA RUSAK! Jadi kerjakan "
-"ATAS RESIKO ANDA!\n"
-"\n"
-"Anda ingin deteksi otomatis printer?"
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Lakukan deteksi otomatis"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Setup printer secara manual"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "Terdeteksi %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Printer di port paralel \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "printer USB \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Printer tak ditemukan! Untuk menginstal printer secara manual masukkan nama "
-"alat / file di baris masukan (Port Parallel: /dev/lp0, /dev/lp1, ..., "
-"sebanding dg LPT1:, LPT2:, ..., printer USB pertama: /dev/usb/lp0, printer "
-"USB kedua: /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Masukkan nama alat atau file!"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Tiada printer lokal ditemukan!\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Printer network hanya dapat diinstal setelah instalasi ini. Pilih \"Hardware"
-"\" lalu \"Printer\" di Pusat Kontrol Mandrake."
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Untuk menginstal printer network, klik \"Batal\", pindah ke \"Mode Ahli\", "
-"dan klik \"Tambah printer baru\" lagi."
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"Printer berikut terdeteksi otomatis, jika bukan yang ingin dikonfigurasikan, "
-"masukkan nama alat/file di baris masukan"
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"Daftar printer terdeteksi otomatis. Pilihlah printer yang ingin diset up "
-"atau masukkan nama alat/file di baris masukan"
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-"Printer berikut terdeteksi otomatis. Konfigurasi printer akan bekerja "
-"otomatis. Jika printer Anda tak terdeteksi dengan benar atau jika ingin Anda "
-"konfigurasi sendiri, jalankan \"Konfigurasi manual\"."
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Daftar printer terdeteksi otomatis. Pilihlah printer yang ingin diset up. "
-"Konfigurasi printer akan bekerja otomatis. Jika printer Anda tak terdeteksi "
-"dengan benar atau jika ingin Anda konfigurasi sendiri, jalankan "
-"\"Konfigurasi manual\"."
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Pilih port tempat printer Anda terhubung atau masukkan nama alat/file di "
-"baris masukan"
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Pilihlah port tempat printer Anda terhubung."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Port Paralel: /dev/lp0, /dev/lp1, ..., sebanding dengan LPT1:, LPT2:, ..., "
-"printer USB pertama: /dev/usb/lp0, printer USB kedua: /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Pilih/masukkan printer/alat!"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Konfigurasi manual"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-"Apakah printer Anda adalah alat multifungsi dari HP (OfficeJet, PSC, "
-"PhotoSmart LaserJet 1100/1200/1220/3200/3300 dengan scanner)?"
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "Instalasi paket HPOJ..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Sedang mencek alat dan mengkonfigurasi HPOJ ..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Instalasi paket SANE..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Alat multifungsi HP sedang di-scan"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "Membuat port printer tersedia utk CUPS ..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Pembacaan database printer..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Pilihan printer lpd remote"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Untuk memakai printer lpd remote, berikan nama host\n"
-"server printer dan nama printer di server tsb."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Nama host remote"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Nama printer remote"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Nama host remote hilang!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Nama printer remote hilang!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Pilihan printer SMB (windows 95/NT)"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Untuk mencetak ke printer SMB, berikan nama host SMB (Catatan! Mungkin "
-"berbeda dengan nama host TCP/IP) dan mungkin alamat IP server printer, nama "
-"share printer yang ingin Anda akses, juga nama user, katasandi, dan info "
-"workgroup."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Host server SMB"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP server SMB"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Nama share"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Workgroup"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Harus ada nama/IP server!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Nama share Samba hilang!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Pilihan printer NetWare"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Jika ingin mencetak pakai printer NetWare, berikan nama server printer "
-"NetWare (tak selalu sama dengan nama TCP/IPnya) juga nama antrian printer "
-"yang ingin digunakan beserta nama user dan katasandinya."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Server Printer"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Nama antrian printer"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "Nama server NCP hilang!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "Nama antrian NCP hilang!"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "Opsi Printer TCP/Soket"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Untuk mencetak ke printer soket, berikan nama host printer (dan nomor "
-"portnya). Nomor port server HP JetDirect biasanya 9100, server lain "
-"bervariasi. Lihat manual perangkat keras Anda."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Nama host printer"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Nama host printer hilang!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Device Printer URI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Anda dapat menset langsung URI utk akses printer. URI harus memenuhi "
-"spesifikasi CUPS/Foomatic. Ingat, tak semua tipe URI di-support oleh semua "
-"spooler."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Harus diisi URI valid!"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Tiap printer perlu nama (misalnya \"printer\"). Kolom Penjelasan / Lokasi "
-"tak harus terisi. Itu komentar utk user."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Nama Printer"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Keterangan"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Lokasi"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Persiapan database printer ..."
-
-#: ../../printerdrake.pm_.c:1112
-msgid "Your printer model"
-msgstr "Model printer Anda"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Printerdrake telan membandingkan nama model printer terdeteksi dengan daftar "
-"model di database untuk menemukan yang paling cocok. Ini mungkin salah, "
-"khususnya jika printer Anda tak terdaftar di semua database. Periksa apakah "
-"pilihan sudah benar dan klik \"Model sudah benar\", jika salah, klik \"Pilih "
-"model secara manual\" sehingga Anda dapat memilih model printer Anda secara "
-"manual di layar berikut.\n"
-"\n"
-"Printerdrake telah menemukan:\n"
-"\n"
-"%s"
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-msgid "The model is correct"
-msgstr "Model sudah benar"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-msgid "Select model manually"
-msgstr "Pilih model secara manual"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Seleksi model printer"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Anda punya model printer mana?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Periksa apakah Printerdrake mendeteksi otomatis model printer Anda dengan "
-"benar. Cari model yang benar di daftar jika kursor menunjukkan model yang "
-"salah atau di \"Printer telanjang\"."
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Jika printer Anda tak terdaftar, pilih yang kompatibel (lihat manual) atau "
-"yang mirip."
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "Konfigurasi winprinter OKI"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Anda sedang melakukan konfigurasi winprinter laser OKI. Printer ini memakai "
-"protokol komunikasi khusus dan karenanya bekerja hanya saat terhubung port "
-"paralel pertama. Bila printer Anda terhubung dg port lain atau dengan kotak "
-"server cetak hubungkan printer dg port paralel pertama sebelum melakukan tes "
-"cetak. Jika tidak, printer takkan bekerja. Setting tipe koneksi Anda akan "
-"diabaikan oleh driver."
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Konfigurasi Lexmark inkjet"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Driver printer inkjet yg disediakan Lexmark hanya men-support printer lokal, "
-"bukan printer di mesin remote atau kotak server cetak. Hubungkan printer "
-"Anda ke port lokal atau konfigurasikan di mesin yang terhubung dengannya."
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-"Agar dapat mencetak dg Lexmark inkjet Anda dan konfigurasi ini, Anda perlu "
-"driver printer inkjet yg disediakan Lexmark (http://www.lexmark.com/). "
-"Masuklah ke situs US dan klik tombol \"Drivers\". Pilih model Anda lalu "
-"sistem operasi \"Linux\". Driver disediakan berupa paket RPM atau shell "
-"script dg instalasi grafis interaktif. Anda tak perlu melakukan konfigurasi "
-"dg frontend grafis. Batalkan langsung setelah persetujuan lisensi.Lalu cetak "
-"halaman printhead alignment dg \"lexmarkmaintain\" dan cocokkan setting head "
-"alignmentdd dg program ini."
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Setting standar printer\n"
-"\n"
-"Cek ukuran halaman dan jenis tinta/mode cetak (jika ada) juga konfigurasi "
-"perangkat keras printer laser (memori, unit duplex, tray extra). Ingat, "
-"pencetakan dg kualitas tinggi berjalan amat lambat."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Opsi %s harus berupa integer!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Opsi %s harus berupa bilangan!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Opsi %s keluar batas!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Ingin menset printer ini (\"%s\")\n"
-"sbg printer standar?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Halaman tes"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Pilihlah halaman tes yang ingin Anda cetak.\n"
-"Ingat: halaman tes photo perlu waktu lama untuk dicetak. Di printer laser "
-"bermemori rendah itu bahkan takkan muncul. Umumnya cukup halaman tes standar."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Tiada halaman tes"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Cetak"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Halaman tes standar"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Halaman tes alternatif (Letter)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Halaman tes alternatif (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Halaman tes foto"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "Jangan cetak halaman tes"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Pencetakan halaman tes..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Halaman test telah dikirim ke printer.\n"
-"Akan butuh waktu sebentar untuk mulai mencetak.\n"
-"Status cetak:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Halaman test telah dikirim ke printer.\n"
-"Akan butuh waktu sebentar untuk mulai mencetak.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "Bekerja dg baik?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Printer telanjang"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Utk mencetak file dari baris perintah (window terminal) pakailah komando "
-"komando \"%s <file>\" atau alat cetak grafis: \"xpp <file>\" atau \"kprinter "
-"<file>\". Alat grafis memungkinkan Anda memilih printer dan memodifikasi "
-"setting dengan mudah.\n"
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Komando ini dapat Anda pakai dalam kotak \"Perintah cetak\" dialog cetak di "
-"banyak aplikasi, tapi jangan berikan nama file di sini karena file yang "
-"dicetak akan diberikan oleh aplikasi.\n"
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"Komando \"%s\" juga memungkinkan modifikasi setting job cetak tertentu. "
-"Tambahkan setting yang diinginkan ke baris perintah, mis. \"%s <file>\". "
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"Untuk mengetahui opsi printer bacalah daftar di bawah atau klik tombol "
-"\"Daftar opsi cetak\".%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Daftar opsi cetak tersedia untuk printer ini:\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Utk mencetak file dari baris komando (window terminal) gunakan perintah \"%s "
-"<file>\".\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Perintah ini digunakan di kotak \"Perintah cetak\" di dialog cetak beberapa "
-"aplikasi. Tapi jangan berikan nama file di sini karena file yg dicetak akan "
-"diberikan oleh aplikasi.\n"
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr "Untuk mendapat daftar opsi printer klik \"Daftar opsi cetak\"."
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Utk mencetak file dari baris komando (jendela terminal) gunakan komando \"%s "
-"<file>\" atau \"%s <file>\".\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Anda juga dapat memakai antarmuka grafis \"xpdq\" untuk setting opsi dan "
-"kontrol job cetak.\n"
-"Jika KDE Anda pakai sbg lingkungan desktop Anda punya ikon \"tombol panik\", "
-"di desktop, berlabel \"STOP Printer!\", yang menghentikan semua job cetak "
-"seketika bila Anda tekan. Ini berguna contohnya saat kertas macet.\n"
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Komando \"%s\" dan \"%s\" juga memungkinkan modifikasi setting opsi job "
-"cetak tertentu. Tambahkan setting yg diinginkan ke baris perintah, misalnya "
-"\"%s <file>\".\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Tutup"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Cetak/Scan di \"%s\""
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Pencetakan di printer \"%s\""
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Daftar opsi cetak"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Alat multifungsi HP Anda terkonfigurasi otomatis agar dapat men-scan. Kini "
-"Anda dapat men-scan dg \"scanimage\" (\"scanimage -d hp:%s\" utk menentukan "
-"scanner jika Anda punya beberapa) dari baris perintah atau dg antarmuka "
-"grafis \"xscanimage\" atau \"xsane\". Jika Anda memakai GIMP, Anda dapat "
-"juga men-scan dg memilih titik yg sesuai di menu \"File\"/\"Acquire\". "
-"Panggil \"man scanimage\" dan \"man sane-hp\" di baris perintah "
-"untukinformasi lanjut.\n"
-"\n"
-"Jangan pakai \"scannerdrake\" utk alat ini!"
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Alat multifungsi HP Anda terkonfigurasi otomatis agar dapat men-scan. Kini "
-"Anda dapat men-scan dari baris perintah dg \"ptal-hp %s scan ...\". Scan via "
-"antarmuka grafis atau GIMP saat ini belum di-support. Info lanjutada di \"/"
-"usr/share/doc/hpoj-0.8/ptal-hp-scan.html\". Jika Anda punya HP LaserJet 1100 "
-"atau 1200 Anda hanya dapat men-scan jika opsi scanner terinstal.\n"
-"\n"
-"Jangan pakai \"scannerdrake\" utk alat ini!"
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Pembacaan data printer..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Transfer konfigurasi printer"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Anda dapat menyalin konfigurasi printer yg Anda buat utk spooler %s ke %s, "
-"spooler Anda sekarang. Semua data konfigurasi (nama printer, keterangan, "
-"lokasi, tipe koneksi, dan setting opsi default) disamakan, tapi job takkan "
-"ditransfer. \n"
-"Tak semua antrian dapat ditransfer karena alasan berikut:\n"
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS tak men-support printer server Novell atau printer yg mengirim data ke "
-"perintah format-bebas.\n"
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr "PDQ hanya men-support printer lokal, LPD remote, dan Soket/TCP.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD and LPRng tak men-support printer IPP.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Antrian tak dibuat oleh program ini atau \"foomatic-configure\" tak dapat "
-"ditransfer."
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Juga printer yg terkonfigurasi dengan file PPD dari pabrik atau driver CUPS "
-"asli tak dapat ditransfer."
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Tandai printer yg ingin Anda transfer lalu klik\"Transfer\"."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Jangan transfer printer"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Transfer"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Printer bernama \"%s\" telah ada di %s. \n"
-"Klik \"Transfer\" untuk menindihnya.\n"
-"Anda juga dapat menuliskan nama baru atau melewatkan printer ini."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Nama printer harus hanya berupa huruf, angka, atau garisbawah"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr "Sudah ada printer \"%s\", Anda benar ingin menindih konfigurasinya?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Nama printer baru"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "Pemindahan %s ..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Anda telah men-transfer printer standar lama Anda (\"%s\"), Akankah ia juga "
-"dijadikan printer default pada sistem cetak baru %s?"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Penyegaran data printer..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Konfigurasi printer remote"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Pemulaian network..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Konfigurasikan jaringan sekarang"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "Fungsi network tak dikonfigurasi"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Anda akan melakukan konfigurasi printer remote. Ini memerlukan akses "
-"jaringan aktif, tapi konfigurasi jaringan Anda belum ada. Jika diteruskan "
-"tanpa konfigurasi network, Anda takkan dapat menggunakan printer yang Anda "
-"konfigurasikan sekarang. Bagaimana Anda mau teruskan?"
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Jalan tanpa konfigurasi jaringan"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-"Konfigurasi network yang dilakukan saat instalasi kini tak dapat jalan. "
-"Tolong cek apakah network dapat diakses setelah sistem diboot dan betulkan "
-"konfigurasi dengan Pusat Kontrol Mandrake, bagian \"Network & Internet\"/"
-"\"Koneksi\", lalu set printer juga dg Pusat Kontrol Mandrake, bagian "
-"\"Hardware\"/\"Printer\""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Akses network tak jalan dan tak dapat dimulai. Cek konfigurasi dan hardware "
-"Anda, lalu coba konfigurasikan printer remote Anda lagi."
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Mulai ulang sistem cetak ..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "tinggi"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "pengecut"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Instalasi sistem cetak dalam level keamanan %s"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Anda akan menginstal sistem cetak %s di sistem dg level keamanan %s.\n"
-"\n"
-"Sistem cetak ini menjalankan daemon (proses background) yang menunggu dan "
-"memproses job cetak. Daemon ini juga dapat diakses oleh mesin remote via "
-"network jadi ia juga bisa jadi sasaran serangan. Karenanya hanya sedikit "
-"daemon terpilih yg dijalankan dlm level sekuriti ini.\n"
-"\n"
-"Benarkah Anda ingin mengkonfigurasikan printer di mesin ini?"
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Inisiasi sistem cetak pada saat boot"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Sistem cetak (%s) takkan otomatis jalan saat mesin diboot.\n"
-"\n"
-"Sebabnya mungkin auto-start dimatikan sbg implikasi level sekuriti tinggi, "
-"karena sistem cetak potensial diserang.\n"
-"\n"
-"Anda ingin auto-start sistem cetak dinyalakan lagi?"
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Pemeriksaan perangkat lunak terinstal"
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "Hapus LPRng..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "Hapus LPD..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Pilih spooler printer"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Sistem (spooler) printer mana yang ingin digunakan?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Konfigurasi printer \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "Instalasi Foomatic ..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Opsi printer"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "Persiapan PrinterDrake ..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-msgid "Configuring applications..."
-msgstr "Konfigurasi aplikasi..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Ingin konfigurasi printer?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Sistem cetak: "
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Printer berikut telah dikonfigurasikan. Klik-dobel printer utk memodifikasi "
-"setting; membuatnya printer default; atau melihat info tentangnya; atau "
-"membuat printer di server CUPS remote dapat dipakai oleh Star Office/"
-"OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Printer berikut telah dikonfigurasikan. Klik-dobel printer utk memodifikasi "
-"setting; membuatnya printer default; atau melihat info tentangnya."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "Penyegaran daftar printer (utk menampilkan semua printer CUPS remote)"
-
-#: ../../printerdrake.pm_.c:2464
-msgid "Change the printing system"
-msgstr "Ubah sistem cetak"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Modus Normal"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Ingin konfigurasikan printer lain?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Modifikasi konfigurasi printer"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Printer %s\n"
-"Apa yg Anda inginkan utk modifikasi printer ini?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "Kerjakan!"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Tipe koneksi printer"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Nama, penjelasan, lokasi printer"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Pembuat, model, driver printer"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Pembuat, model printer"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Set printer ini sebagai standar"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Tambah printer ini ke Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Hapus printer ini dari Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Cetak halaman tes"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Cara penggunaan printer ini"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Hapus printer"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Menghapus printer lama \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Printer standar"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Printer \"%s\" kini diset sbg printer standar."
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Penambahan printer ke Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr "Printer \"%s\" sukses ditambahkan ke Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr "Gagal menambahkan printer \"%s\" ke Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Hapus printer dari Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr "Printer \"%s\" sukses dihapus dari Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "Gagal menghapus printer \"%s\" dari Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Anda ingin menghapus printer \"%s\"?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Menghapus printer \"%s\" ..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Konfigurasi proxy"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Selamat datang di konfigurator proxy.\n"
-"\n"
-"Anda dapat mengeset proxy http/ftp dengan/tanpa login dan katasandi\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr "Isilah info proxy http, kosongkan jika tak perlu"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "port"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "Url harus berformat 'http:'"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Bagian port harus berupa angka"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr "Isilah info proxy ftp, kosongkan jika tak perlu"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Url harus berformat 'ftp:'"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Ketik login proxy dan katasandinya, jika ada.\n"
-"Biarkan kosong jika tak ingin login/passwd"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "login"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "katasandi"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "tulis lagi katasandi"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Katasandi tak sama, coba lagi!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Tidak dapat menambah partisi ke RAID md%d yang terformat"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Tidak bisa menulis ke file %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid gagal"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid gagal (mungkin raidtoolsnya tak ada?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Partisi tidak cukup untuk level RAID %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Luncurkan sistem suara ALSA (Advanced Linux Sound Architecture)"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Skeduler command periodik, Anacron"
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd digunakan untuk monitoring status batere dan mencatatnya di syslog.\n"
-"apmd juga bisa untuk mematikan mesin waktu baterenya habis."
-
-#: ../../services.pm_.c:18
-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 ""
-"Menjalankan perintah terjadwal dengan perintah at pada waktu tertentu\n"
-"saat at dijalankan, dan memulai perintah secara batch waktu rata-rata load\n"
-"sedang rendah."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"Cron adalah program UNIX standar yang menjalankan program user\n"
-"pada waktu yang terjadwal. vixie cron memiliki fitur yang lebih lengkap\n"
-"dari cron UNIX biasa, termasuk pembenahan sekuriti yang lebih baik dan\n"
-"lebih mantapnya option pada konfigurasinya."
-
-#: ../../services.pm_.c:23
-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 memberikan akses ke mouse pada aplikasi Linux yang text based semacam\n"
-"Midnight Commander. Dia juga bisa bikin cut-and-paste dengan mouse pada "
-"konsol\n"
-"dan juga bikin menu pop-up di konsol."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake mendeteksi hardware, dan mengkonfigurasi yg baru/berubah bila "
-"perlu."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache adalah server World Wide Web. Dia dipakai untuk menyediakan file\n"
-"HTML dan CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"daemon superserver internet (biasa dipanggil inetd) bertugas untuk\n"
-"menjalankan servis-servis internet yang dibutuhkan. Dia bertanggung jawab\n"
-"atas banyak server, misalnya telnet, ftp, rsh, dan rlogin. Menonaktifkan\n"
-"inetd berarti menonaktifkan semua servis-servis tadi."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Luncurkan filter paket Linux kernel seri 2.2, untuk set-up\n"
-"firewall yang melindungi mesin Anda dari serangan network."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Paket ini akan meload map keyboard yang dipilih di file\n"
-"/etc/sysconfig/keyboard. Mapnya bisa dipilih dari utility kbdconfig.\n"
-"Mending Anda aktifkan aja deh ini."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Regenerasi otomatis header kernel di /boot utk\n"
-"/usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Deteksi dan konfigurasi otomatis hardware saat boot."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf kadang bekerja keras saat boot utk perawatan konfigurasi sistem."
-
-#: ../../services.pm_.c:43
-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 adalah daemon printer yang jadi tulang punggung lpr. Dia\n"
-"bertugas sebagai server yang memberi perintah kepada printer untuk mencetak."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual Server, digunakan utk membangun server dg performans dan\n"
-"kapasitas tinggi."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) adalah Domain Name Server (DNS) yang digunakan untuk "
-"menerjemahkan nama host ke IP address."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Mount dan unmount semua Network File System (NFS), SMB (Lan\n"
-"Manager/windows), dan NCP (Netware)."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktif/nonaktifkan semua interface network yang terkonfigurasi nyala\n"
-"pada saat boot."
-
-#: ../../services.pm_.c:52
-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 adalah protokol populer untuk file sharing lewat network TCP/IP.\n"
-"Servis ini dinyalakan untuk membuat NFS server bisa jalan dengan "
-"menggunakan\n"
-"konfigurasi pada file /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS adalah protokol populer untuk file sharing di TCP/IP\n"
-"Servis ini memberikan fungsi file lock pada NFS."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr "Secara otomatis nyalakan numlock saat boot pada console/XFree."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Support OKI 4w and winprinter kompatibel."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA digunakan untuk menjalankan perangkat semacam ethernet atau modem "
-"pada laptop.\n"
-"Dia tak bisa jalan kecuali dikonfigurasikan di sini, jadi tak apa-apa\n"
-"kalau tak diinstall di mesin yang tak perlu PCMCIA."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Portmapper mengelola koneksi RPC, yang digunakan oleh protokol seperti\n"
-"NFS dan NIS. Server portmap harus jalan di mesin yang bertindak sebagai\n"
-"server untuk protokol yang menggunakan mekanisme RPC."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix adalah Mail Transport Agent, program pengantar surat dari satu ke "
-"lain mesin."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Menyimpan dan mengembalikan pool entropi sistem untuk membuat\n"
-"angka acak dengan kualitas sangat acak."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Tunjuk raw device ke block devices (misalnya partisi hard drive),\n"
-"utk digunakan oleg aplikasi semacam Oracle"
-
-#: ../../services.pm_.c:71
-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 ""
-"Daemon routed digunakan untuk update tabel routing IP otomatis liwat\n"
-"protokol RIP. RIP dipakai di jaringan kecil, dan semakin besar jaringannya\n"
-"maka protokol routing yang canggih pun semakin dibutuhkan."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Protokol rstat digunakan pada jaringan untuk mengambil\n"
-"ukuran kinerja sistem di network."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Protokol ruser digunakan di jaringan untuk mengidentifikasi siapa\n"
-"yang lagi login di jaringan."
-
-#: ../../services.pm_.c:78
-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 ""
-"Protokol rwho digunakan untuk melihat daftar user yang sedang login\n"
-"di suatu sistem yang juga menjalankan daemon rwho (mirip dengan finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Aktifkan sistem suara"
-
-#: ../../services.pm_.c:81
-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 adalah fasilitas yang digunakan para daemon untuk mencatat\n"
-"pesan log sistem di file. Hidupkan aja deh syslognya."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Muat driver piranti USB"
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Aktifkan Server Font X (agar XFree dapat berjalan)"
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Pilih service mana yang hendak dijalankan saat boot scr otomatis"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Pencetakan"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Pemakaian file bersama"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "Sistem"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Administrasi remote"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Server Database"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Servis: %d diaktifkan utk %d tercatat"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Servis"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "sedang jalan"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "dihentikan"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Services dan daemon"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Mohon maaf, informasi lengkap\n"
-"tentang layanan ini tidak tersedia."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Saat boot"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Mulai"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Stop"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Terima kasih memilih Mandrake Linux 8.2"
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr "Selamat datang di dunia Source Terbuka"
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-"Sukses MandrakeSoft berdasar prinsip Perangkat Lunak Bebas. OS baru Anda "
-"adalah hasil kerja kolaborasi Komunitas Linux seluruh dunia"
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "Gabung dunia Perangkat Lunak Bebas"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-"Cari tahu tentang komunitas Sumber Bebas dan jadi anggota. Belajar, ajari, "
-"dan bantulah sesama dengan bergabung dalam banyak forum diskusi di halaman "
-"web \"Komunitas\" kami"
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet dan Pesan"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-"Mandrake Linux 8.2 menyajikan software terbaik untuk mengakses segala yang "
-"disediakan Internet: Jelajah web & lihat animasi dengan Mozilla dan "
-"Konqueror, tukar email & atur info pribadi Anda dengan Evolution dan Kmail, "
-"dan banyak lagi"
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedia dan Grafik"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-"Mandrake Linux 8.2 memaksimalkan komputer multimedia Anda! Gunakan software "
-"mutakhir untuk memainkan file music dan audio, edit dan mengatur gambar dan "
-"foto, melihat TV dan video, dan banyak lagi"
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Development"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-"Mandrake Linux 8.2 adalah platform development terampuh. Temukan power "
-"compiler gcc GNU, juga lingkungan development Sumber Bebas terbaik"
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Pusat Kontrol Mandrake"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-"Pusat Kontrol Mandrake Linux 8.2 adalah tempat terpadu untuk mengkonfigurasi "
-"sistem Mandrake Anda"
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "Antarmuka user"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-"Mandrake Linux 8.2 menyediakan 11 lingkungan desktop grafis dan manajer "
-"window termasuk GNOME 1.4, KDE 2.2.2, Window Maker 0.8, dan lain-lain"
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Piranti Lunak Server"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-"Jadikan mesin Anda server powerful dengan hanya beberapa klik mouse: server "
-"Web, email, firewall, router, server file dan cetak, ..."
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Game"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-"Mandrake Linux 8.2 menyediakan game terbaik Source Terbuka - arcade, aksi, "
-"kartu, olah raga, strategi, ..."
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "KampusMandrake"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-"Inginkah Anda belajar Linux secara mudah, cepat dan gratis? MandrakeSoft "
-"menyediakan training Linux gratis, beserta cara mentes kemajuan Anda, di "
-"KampusMandrake -- pusat training online kami"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "AhliMandrake"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-"Support kualitas dari Komunitas Linux, dan dari MandrakeSoft, ada di sekitar "
-"pojok. Jika Anda veteran Linux, jadilah \"Ahli\" dan bagilah pengetahuan "
-"Anda di situs web support kami"
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "KonsultasiMandrake"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-"Untuk semua proyek IT, konsultan kami siap menganalisa kebutuhan Anda dan "
-"menyediakan solusi pilihan. Hasil pengalaman total MandrakeSoft sebagai "
-"produser Linux menyediakan Teknologi Informasi sesungguhnya untuk organisasi "
-"bisnis Anda"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "TokoMandrake"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-"Solusi Linux lengkap, termasuk sajian khusus produk dan 'goodies', tersedia "
-"online di e-store kami"
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-"Untuk info lebih lanjut tentang Servis Profesional MandrakeSoft dan sajian "
-"komersial, lihat halaman web berikut:"
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Instalasi paket..."
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Saya tak bisa baca tabel partisi, udah hancur lebur nih :(\n"
-"Aku akan coba hapus partisi yg jeleknya"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Ada Kesalahan"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "File image `%s' tak ditemukan."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Konfigurasi Instalasi Otomatis"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Konfigurasi disket Instalasi Otomatis akan dilakukan. Fitur ini agak "
-"berbahaya dan harus hati-hati digunakan.\n"
-"\n"
-"Dg fitur ini, Anda akan dapat mengulang instalasi yang Anda terapkan pada "
-"komputer ini, sementara pada beberapa tahapan akan ada pertanyaan interaktif "
-"untuk mengubah nilainya.\n"
-"\n"
-"Utk keamanan maximum, proses partisi dan format takkan pernah dijalankan\n"
-"secara otomatis, apapun yg Anda pilih selama instalasi komputer ini.\n"
-"\n"
-"Jalan terus?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Konfigurasi Step Otomatis"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Pada tiap tahapan pilih apakah instalasi akan diulang, atau akan manual"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Selamat Datang.\n"
-"\n"
-"Parameter instalasi otomatis tersedia di bagian sebelah kiri"
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Selamat!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr "Floppy sukses dibuat. Instalasi bisa direplikasi."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Instalasi Otomatis"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Tambah item"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Hapus item terakhir"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" Laporan DrakBackup \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Laporan Daemon DrakBackup\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Detil Laporan DrakBackup\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "total kemajuan"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "Backup file sistem..."
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "File Backup Hard Disk..."
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "Backup file User..."
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Kemajuan Backup Hard Disk..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Backup file lain..."
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"daftar file dikirim oleh FTP : %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) problem koneksi FTP: Gagal mengirim file backup dengan FTP.\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Kesalahan saat pengiriman surat. \n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "Pilihan File"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr "Pilih file atau direktori dan klik 'Tambah'"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Periksa semua opsi yang Anda inginkan.\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Opsi ini memungkinkan backup / simpan ulang semua file di direktori /etc.\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Backup file System Anda. ( direktori /etc )"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Pakai backup incremental (tidak menghapus backup lama)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Tidak memasukkan file penting (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr "Dengan opsi ini Anda dapat menyimpan ulang semua versi direktori /etc."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr "Periksa semua user yang ingin Anda masukkan ke backup."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "Jangan masukkan cache browser"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Pakai Backup Incremental (tidak menghapus backup lama)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Hapus Pilihan"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "User"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Pakai koneksi FTP utk backup"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Masukkan nama host atau IP."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-"Masukkan direktori utk\n"
-" meletakkan backup di host ini."
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Masukkan login"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Masukkan katasandi"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Ingat katasandi ini"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "Koneksi FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Koneksi Aman"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "Pakai CD/DVDROM utk backup"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Pilih ruang CD Anda"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "Periksa apakah Anda menggunakan media CDRW"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Cek apakah Anda ingin menghapus CDRW sebelum"
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Cek jika Anda ingin memasukkan\n"
-" boot instalasi di CD Anda."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Masukkan nama alat Penulis CD Anda\n"
-" mis: 0,1,0"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "Gunakan pita utk backup"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "Masukkan nama alat utk backup"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Masukkan ukuran maximum\n"
-" yg diizinkan utk Drakbackup"
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Masukkan direktori utk penyimpanan:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Pakai quota utk file backup."
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "Jaringan"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "HardDrive / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "perjam"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "harian"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "mingguan"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "bulanan"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "Pakai daemon"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Pilih interval waktu backup"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Pilih media backup."
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Pakai Hard Drive dg daemon"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Pakai FTP dg daemon"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Pastikan daemon cron masuk dalam daftar servis."
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "Kirim laporan mail setelah tiap backup ke :"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "Apa"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "Mana"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "Kapan"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "Opsi Tambahan"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "Konfigurasi Drakbackup"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Pilih tempat backup"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "di Hard Drive"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "lewat Network"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Pilih apa yang akan di-backup"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "Backup sistem"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "Backup User"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Pilih user secara manual"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Sumber Backup: \n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- File Sistem:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- File User:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- File Lain:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- Simpan di Hard drive di path : %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- Simpan di FTP di host : %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t name user: %s\n"
-"\t\t di path: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Opsi:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tJangan masukkan File Sistem\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tBackup dengan tar dan bzip2\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tBackup dengan tar dan gzip\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- Cakupan daemon (%s) :\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t-Hard drive.\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-CDROM.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Network dg FTP.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Network dg SSH.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Tiada konfigurasi, mohon klik Dukun atau Lanjutan.\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Daftar data simpan ulang:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Daftar data rusak:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "Mohon uncheck atau hapus nanti."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "File backup rusak"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " Semua data terpilih telah "
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " Berhasil Disimpan Ulang di %s "
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " Simpan Ulang Konfigurasi "
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "OK utk simpan ulang file lain."
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "Daftar user simpan ulang (hanya tanggal terakhir per user yg penting)"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "Backup file sistem sebelum:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "pilih tanggal simpan ulang"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Pakai Hard Disk utk backup"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Simpan ulang dari Hard Disk."
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "Masukkan direktori tempat backup disimpan"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Pilih media lain utk disimpan ulang"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Media Lain"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "Simpan ulang sistem"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Simpan ulang User"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Simpan ulang Lain-lain"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "pilih path utk simpan ulang (selain / )"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"Lakukan backup baru sebelum simpan ulang (hanya utk backup incremental.)"
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Hapus direktori user sebelum simpan ulang."
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Simpan ulang semua backup"
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "Simpan ulang pilihan sendiri"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Pertolongan"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "Sebelumnya"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Simpan"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Bangun Backup"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Simpan ulang"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Lanjut"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Buatlah backup sebelum menyimpan ulang...\n"
-" atau pastikan path utk menyimpan sudah benar."
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"Error saat sendmail\n"
-" surat laporan Anda tak terkirim\n"
-" Mohon konfigurasikan sendmail"
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Daftar Paket yang akan diinstal"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Error saat pengiriman file via FTP.\n"
-" Betulkan konfigurasi FTP Anda."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Pilih data utk disimpan ulang..."
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Pilih media backup..."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Pilih data backup..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Tiada file konfigurasi \n"
-"Mohon klik Dukun atau Lanjutan"
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "Sedang dibangun ... tunggu."
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "Backup file sistem"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "Backup file user"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Backup file lain"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Total Kemajuan"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "file dikirim dg FTP"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Kirim file..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "Daftar data utk dimasukkan ke CDROM."
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Masukkan kecepatan penulis cd"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Masukkan nama alat Penulis CD (mis: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Cek jika Anda ingin memasukkan boot instalasi ke CD"
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "Backup Sekarang dari file konfigurasi"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Lihat Konfigurasi Backup."
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "Konfigurasi Dukun"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "Konfigurasi Lanjutan"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "Backup Sekarang"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-"penjelasan opsi:\n"
-"\n"
-" Di tahap ini Drakbackup mengizinkan Anda mengubah:\n"
-"\n"
-" - Mode kompresi:\n"
-" \n"
-" Jika Anda pilih kompresi bzip2, Anda akan mengkompres\n"
-" data lebih baik daripada gzip (sekitar 2-10 %).\n"
-" Opsi ini bukan standar karena\n"
-" banyak makan waktu (sekitar 1000% lebih).\n"
-" \n"
-" - Mode update:\n"
-"\n"
-" Opsi ini akan mengupdate backup Anda, tapi tak\n"
-" benar-benar berguna karena Anda perlu\n"
-" mengurai backup Anda sebelum dapat meng-update.\n"
-" \n"
-" - mode .backupignore:\n"
-"\n"
-" Seperti cvs, Drakbackup akan mengabaikan semua referensi\n"
-" tertulis dalam file .backupignore di tiap direktori.\n"
-" mis: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-"\n"
-" Beberapa error saat sendmail disebabkan oleh \n"
-" konfigurasi buruk postfix. Utk mengatasinya \n"
-" myhostname atau mydomain di /etc/postfix/main.cf harus diset\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-"penjelasan opsi:\n"
-"\n"
-" - Backup file sistem:\n"
-" \n"
-"\tOpsi ini dapat mem-backup direktori /etc, yg berisi\n"
-"\tsemua file konfigurasi. Hati-hati saat tahap restore\n"
-"\t(simpan ulang) agar tak menindih:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup file User: \n"
-"\n"
-"\tDengan opsi ini Anda dapat memilih user yg ingin \n"
-"\tAnda backup.\n"
-"\tUntuk menghemat ruang disk, cache browser web harap \n"
-"\ttak dimasukkan.\n"
-"\n"
-" - Backup file Lain: \n"
-"\n"
-"\tOpsi ini memungkinkan Anda menambah data utk disimpan.\n"
-"\tDengan backup lain-lain Anda sementara tak dapat \n"
-"\tmemilih backup incremental.\t\t\n"
-" \n"
-" - Backup Incremental:\n"
-"\n"
-"\tIni adalah opsi terkuat backup. Anda dapat mem-backup \n"
-"\tsemua data pertama kali, setelah itu hanya yang berubah.\n"
-"\tKemudian Anda akan dapat, saat tahap restore, menyimpan\n"
-"\tulang data dari tanggal yg ditentukan date.\n"
-"\tJika Anda belum memilih opsi ini semua backup lama akan \n"
-"\tdihapus sebelum tiap backup. \n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"penjelasan restore:\n"
-" \n"
-"Hanya tanggal terkini yang akan dipakai, karena dg backup incremental \n"
-"diperlukan restore satu demi satu tiap backup lama.\n"
-"\n"
-"Jadi jika Anda tak suka simpan ulang user lepaslah pilihan semua kotak\n"
-"tandanya.\n"
-"\n"
-"Jika tidak, Anda dapat memilih hanya satu opsi\n"
-"\n"
-" - Backup Incremental:\n"
-"\n"
-"\tBackup incremental adalah opsi terkuat backup,\n"
-"\tAnda dapat mem-backup semua data pertama kali,\n"
-"\tdan kemudian hanya yg berubah.\n"
-"\tJadi Anda dapat, saat tahap restore, menyimpan\n"
-"\tulang data Anda dari tanggal yg ditentukan.\n"
-"\tJika Anda belum memilih opsi ini semua backup\n"
-"\tlama akan dihapus sebelum tiap backup. \n"
-"\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Haksalin (C) 2001 MandrakeSoft oleh DUPONT Sebastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-" Program ini gratis; Anda dapat menyebar ulang dan/atau mengubah\n"
-" menurut Lisensi Publik Umum GNU dari the Free Software Foundation; baik\n"
-" versi 2, atau yang lebih baru.\n"
-"\n"
-" Program ini disebar agar dapat berguna, tapi TANPA GARANSI APAPUN; bahkan\n"
-" tanpa garansi sebagai implikasi DAGANG atau KELAYAKAN UNTUK KEGUNAAN\n"
-" TERTENTU. Info lebih lanjut ada di Lisensi Publik Umum GNU.\n"
-"\n"
-" Anda mestinya sudah menerima salinan Lisensi Publik Umum GNU dari program\n"
-" ini; jika tidak, tulis ke the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-"Penjelasan:\n"
-"\n"
-" Drakbackup digunakan untuk membackup system Anda.\n"
-" Selama konfigurasi Anda dapat memilih: \n"
-"\t- File System, \n"
-"\t- File User, \n"
-"\t- File Lain-lain.\n"
-"\tatau Seluruh sistem ... dan Lain-lain (mis. partisi Windows)\n"
-"\n"
-" Drakbackup dapat melakukan backup system di:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (dg autoboot, rescue dan autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup dapat menyimpan ulang (restore) sistem Anda ke\n"
-" direktori pilihan user.\n"
-"\n"
-" Per default semua backup ditempatkan di direktori\n"
-" /var/lib/drakbackup\n"
-"\n"
-" File konfigurasi:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Tahap Restore:\n"
-" \n"
-" Saat tahap restore, DrakBackup akan menghapus \n"
-" direktori asli Anda dan mencek bahwa semua file \n"
-" backup tak rusak. Disarankan Anda melakukan \n"
-" backup sebelum menyimpan ulang.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-"penjelasan opsi:\n"
-"\n"
-"Hati-hati menggunakan backup ftp, karena hanya backup yg telah \n"
-"dibangun yg akan dikirim ke server. Jadi sementara Anda perlu \n"
-"membangun backup di harddrive Anda sebelum mengirimnya ke server.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-"\n"
-"Problem Restore Backup:\n"
-"\n"
-"Saat tahap restore, Drakbackup akan mencek semua file\n"
-"backup sebelum menempatkannya kembali. Sebelum restore,\n"
-"Drakbackup akan menghapus direktori asli Anda, dan Anda\n"
-"akan kehilangan semua data. Hati-hati dan jangan mengubah\n"
-"file data backup secara manual.\n"
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-"Penjelasan:\n"
-"\n"
-" Drakbackup digunakan utk mem-backup sistem Anda.\n"
-" Saat konfigurasi Anda dapat memilih \n"
-"\t- File Sistem, \n"
-"\t- File User, \n"
-"\t- File Lain-lain.\n"
-"\tatau Seluruh sistem ... dan Lain-lain (mis. partisi Windows)\n"
-"\n"
-" Drakbackup dapat mem-backup sistem di:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (dg autoboot, rescue dan autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup dapat menyimpan ulang sistem Anda ke\n"
-" direktori pilihan user.\n"
-"\n"
-" Per default semua backup akan ditempatkan di\n"
-" direktori /var/lib/drakbackup\n"
-"\n"
-" File konfigurasi:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Tahapan Restore:\n"
-" \n"
-" Saat tahap restore, Drakbackup akan menghapus\n"
-" directory asli dan mencek bahwa semua file backup\n"
-" tak rusak. Disarankan Anda melakukan backup\n"
-" terakhir sebelum menyimpan ulang.\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Instalasi %s gagal. Ada kesalahan berikut:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Cari font terinstal"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Lepas pilih font terinstal"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "baca semua font"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "tiada font ditemukan"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "selesai"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "tak ditemukan font di partisi termount"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Pilih ulang font yg benar"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "gagal temukan font.\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Cari font di daftar instalasi"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Copy font"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "Instalasi font True Tupe"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "tunggu saat ttmkfdir..."
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "Instalasi True Type selesai"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "Konversi font"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "bangun type1inst"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr "referensi Ghostscript"
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "konversi font ttf"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "konversi font pfm"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Sembunyikan file temporer"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "Jalankan ulang XFS"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Sembunyikan File Font"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "jalankan ulang xfs"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Sebelum menginstl font, Anda harus punya hak memakai dan menginstalnya di "
-"sistem Anda.\n"
-"\n"
-"-Anda dapat menginstal font dengan cara normal. Terkadang, font palsu dapat "
-"membuat server X Anda hang."
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "Impor Font"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Ambil Font Windows"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Buang Font"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Opsi Lanjutan"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Daftaf Font"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Pilih aplikasi yang mensupport font :"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Printer Generik"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Pilih file font atau direktori dan klik 'Tambah'"
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Daftar Instalasi"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "klik di sini jika Anda yakin."
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "di sini jika tidak."
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "Semua tak dipilih"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Semua Dipilih"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "Hapus Daftar"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Tes Awal"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Salin font di sistem Anda"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Instal & konversikan Font"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Instalasi Akhir"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "Hapus font di sistem Anda"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Un-Instalasi Akhir"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Pemakaian Bersama Koneksi Internet"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Pemakaian Bersama Koneksi Internet telah aktif"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Konfigurasi Internet Connection Sharing telah seleasi.\n"
-"Namun sekarang sudah aktif.\n"
-"\n"
-"Apa yang ingin Anda lakukan?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "matikan"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "tutup"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "konfigurasi ulang"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Server-server sedang dimatikan"
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Internet Connection Sharing telah dimatikan"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Internet Connection Sharing masih dimatikan"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Konfigurasi Internet Connection Sharing telah seleasi.\n"
-"Namun sekarang masih dimatikan.\n"
-"\n"
-"Apa yang ingin Anda lakukan?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "aktifkan"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Server-server akan dinyalakan"
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Internet Connection Sharing sudah aktif"
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Komputer ini bisa dikonfigurasikan agar bisa membagi koneksi Internetnya.\n"
-"Dengan cara ini, komputer lain di jaringan lokal bisa menggunakn koneksi\n"
-"Internet milik komputer ini.\n"
-"\n"
-"Perhatikan: Anda mesti punya adapter jaringan untuk mensetup Local Area "
-"Network (LAN)."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interface %s (pakai module %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Antarmuka %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Tidak ada adaptor jaringan di sistem ini!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Tiada adapter jaringan ethernet terdeteksi. Jalankan konfigurator hardware."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Antarmuka jaringan"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Hanya ada satu adapter jaringan yang dikonfigurasikan di sistem ini:\n"
-"\n"
-"%s\n"
-"\n"
-"Apakah Anda mau melakukan setup Local Area Network untuk adapter itu?"
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Silakan pilih adapter jaringan yang hendak disambung ke Local Area Network "
-"Anda."
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Antarmuka network telah dikonfigurasi"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"Awas, adaptor network (%s) telah terkonfigurasikan.\n"
-"\n"
-"Anda ingin konfigurasi ulang otomatis?\n"
-"\n"
-"Anda dapat melakukannya secara manual tapi Anda perlu tahu yg Anda kerjakan."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Konfigurasi ulang otomatis"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "Tampilkan konfigurasi antarmuka"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"Konfigurasi `%s':\n"
-"\n"
-"Network: %s\n"
-"Alamat IP: %s\n"
-"Atribut IP: %s\n"
-"Driver: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Konfigurasi Anda dapat dipakai dengan anggapan Anda telah menset up server "
-"DHCP; tolong periksa apakah Network Kelas-C jaringan lokal Anda terbaca "
-"dengan benar; Konfigurasi ulang takkan dilakukan dan konfigurasi server DHCP "
-"takkan disentuh.\n"
-"\n"
-"Atau, antarmuka dan server DHCP dapat dikonfigurasikan (lagi).\n"
-"\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "Jaringan Lokal Kelas-C"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "IP Server DHCP (Ini)"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Konfigurasi ulang antarmuka dan server DHCP"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Jaringan Lokal tak berakhiran `.0', keluar."
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Ada potensi konflik alamat LAN pada konfigurasi %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Konfigurasi firewall terdeteksi!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Awas! Ada konfigurasi firewall yang sudah ada nih. Anda nanti perlu mengecek "
-"dan membetulkan dengan cara manual setelah instalasi."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Konfigurasi..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Mengkonfigurasikan skrip, menginstall software, menjalankan server..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problem instalasi paket %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Semuanya sudah dikonfigurasikan.\n"
-"Anda sekarang bisa membagi koneksi Internet dengan komputer-komputer lain "
-"pada Local Area Network di tempat Anda, dengan menggunakan konfigurasi "
-"jaringan otomatis (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Konfigurasi telah seleasi.Namun sekarang masih dimatikan."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Konfigurasi telah selesai.Namun sekarang sudah aktif."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Internet Connection Sharing belum pernah dikonfigurasikan"
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Koneksi dan konfigurasi sharing Internet"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Selamat datang di utiliti Internet Connection Sharing!\n"
-"\n"
-"%s\n"
-"\n"
-"Silakan pencet Konfigurasikan untuk mulai."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Konfigurasi Jaringan (adapter %d)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Hapus profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil yang hendak dihapus:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Buat profil baru..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Nama profil yg akan dibuat (profil baru dibuat sbg salinan yg sekarang) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nama Host: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Akses Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipe: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface: "
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status: "
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Tunggu"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigurasi Akses Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "konfigurasi LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Driver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Konfigurasi Local Area Network..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Klik di sini utk meluncurkan wizard ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Wizard..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Pasang"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Tunggu ya, sedang mengaktifkan konfigurasi"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Tersambung"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Tak tersambung"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Sambungkan..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Koneksi diputus"
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr "Awas, koneksi Internet lain terdeteksi, mungkin memakai jaringan Anda"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Tiada interface terkonfigurasi.\n"
-"Konfigurasi dulu dg meng-klik 'Configure'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "konfigurasi LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protokol Boot"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Dijalankan saat boot"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Klien DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktifkan sekarang"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "non-aktifkan sekarang"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Antarmuka ini belum dikonfigurasikan.\n"
-"Luncurkan dukun konfigurasi di window utama"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Tiada koneksi internet.\n"
-"Buat dulu dg meng-klik 'Configure'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "konfigurasi koneksi Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "konfigurasi koneksi Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipe koneksi"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameter"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Card Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Klien DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Pilih tingkat keamanan"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Pusat Kontrol"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Pilih tool yang hendak digunakan"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "Kanada (kabel)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "AS (siaran)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "AS (kabel)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "AS (kabel-hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Cina (siaran)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Jepang (siaran)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "Jepang (kabel)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Eropa Timur"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Irlandia"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "Eropa Barat"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Australia"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "Selandia Baru"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "Afrika Selatan"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Tolong,\n"
-"tuliskan standar dan daerah tv Anda"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "standar TV :"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Area :"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "Kanal TV sedang di-scan ..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "Men-scan kanal TV"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "cara pakai: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Pilih keyboard Anda"
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Ingin membuat tombol BackSpace menjadi Delete dalam konsol?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Ganti Cd-Rom"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Masukkan CDROM Instalasi di drive Anda dan tekan OK\n"
-"Jika tak punya, tekan Batal untuk hindari upgrade live."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Gagal memulai upgrade live !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr "Perubahan telah dilakukan, Anda harus logout agar perubahan berlaku"
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "Tampilkan hari terpilih saja"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/File/B_aru"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/File/_Buka"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/File/_Simpan"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/File/Simpan _Dengan nama lain"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/File/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Pilihan"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Pilihan/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Help"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Help/_About..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "User"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "Pesan"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "Syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Penjelasan Piranti Mandrake"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "cari"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Penampil log Anda"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Setting"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "pencocokan"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "tapi bukan pencocokan"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Pilih file"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Kalender"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Isi file"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "Peringatan Mail/SMS"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "tunggu, sedang menelaah file: %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "Konfigurasi peringatan Mail/SMS"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Selamat datang di konfigurator mail/SMS.\n"
-"\n"
-"Anda dapat mengeset sistem peringatan.\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "setting servis"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr "Anda akan menerima peringatan bila salah satu servis terpilih terhenti"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "setting muatan"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Anda akan diperingatkan jika muatan lebih tinggi daripada nilai ini"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "konfigurasi peringatan"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "Konfigurasikan cara sistem memperingatkan Anda"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Simpan di..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Tipe mouse yang anda punya?"
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "tiada serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Emulasikan tombol ketiga?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "%s ditemukan di %s, konfigurasikan?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Pilih scanner"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "Scanner %s ini tak disupport"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Device boot"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"Scanner %s ini harus dikonfigurasikan oleh printerdrake.\n"
-"Anda dapat meluncurkan printerdrake dari Pusat Kontrol Mandrake bagian "
-"Hardware."
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "konfigurasi firewall"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "konfigurasi firewall"
-
-#: ../../standalone/tinyfirewall_.c:79
-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"
-"Anda sudah ada firewall.\n"
-"Silakan tekan Konfigurasikan untuk mengganti atau menghapus firewall"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Silakan tekan Konfigurasikan untuk mensetup firewall standar"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Pilih bahasa Anda"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Pilih kelas instalasi"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Deteksi hard disk"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Konfigurasi mouse"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Pilih keyboard"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Keamanan"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Setup filesystem"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Melakukan format partisi"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Paket yang akan diinstal"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Instal sistem"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Tambahkan user"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Konfigurasi jaringan"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Konfigurasi service"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Install bootloader"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Membuat bootdisk"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Konfigurasi X"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Instal update sistem"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Keluar dari proses instal"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"konfigurator tinyfirewall\n"
-"\n"
-"Program ini mengkonfigurasi firewall pribadi sistem Linux Mandrake.\n"
-"Untuk membuat solusi firewall yang lebih baik, cobalah\n"
-"distribusi Mandrake Security Firewall"
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Sekarang saya akan tanyakan layanan mana saja yang hendak Anda bolehkan\n"
-"untuk dapat diakses dari Internet. Silakan fikirkan dulu masak-masak akan\n"
-"hal ini, karena keamanan komputer Anda sangat penting kan.\n"
-"\n"
-"Ayo, bila Anda tidak pakai layanan-layanan ini, matikan saja lewat "
-"firewall.\n"
-"Anda bisa ubah konfigurasikan lagi kapan-kapan dengan menjalankan\n"
-"aplikasi ini lagi nantinya."
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Apakah Anda ingin webserver Anda juga dapat diakses dari Internet ??\n"
-"Bila Anda ingin webserver Anda HANYA ingin diakses dari KOMPUTER INI SAJA\n"
-"maka jawab saja TIDAK di sini\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Apakah Anda menjalankan Name server di komputer ini? Bila Anda\n"
-"tidak menjalankan nameserver untuk menjawab informasi IP dan zone untuk "
-"Internet\n"
-"silakan jawab TIDAK.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Apakah Anda ingin membuka koneksi Secure Shell (ssh) ?\n"
-"SSH adalah pengganti telnet yang mungkin hendak Anda gunakan.\n"
-"Bila Anda hanya menggunakan telnet sekarang, silakan ganti ke ssh.\n"
-"telnet tidak dienkripsi loh -- jadi orang lain bisa mencuri katasandi Anda\n"
-"saat telnet. SSH dienkripsi dan tidak bisa disadap."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Apakah Anda ingin membuka koneksi telnet?\n"
-"Tapi ini sangatlah tidak aman sebagaimana dijelaskan pada layar sebelumnya.\n"
-"Ayo deh jawab TIDAK dan gunakan SSH saja.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Apakah Anda hendak membuka koneksi FTP yang ingin diakses dari Internet?\n"
-"Bila ya, silakan gunakan saja untuk transfer anonimous. Katasandi yang "
-"dikirimkan\n"
-"oleh FTP bisa dicuri oleh cracker, karena FTP tidak diacak saat pertukaran "
-"katasandi terjadi.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Apakah Anda menjalankan server mail ? Bila Anda mengirimkan email\n"
-"dengan menggunakan pine, mutt, atau klien mail teks, maka sebaiknya iya.\n"
-"Selainnya, matikan saja deh.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Apakah Anda menjalankan server POP atau IMAP ?\n"
-"Fasilitas ini bisa digunakan untuk menampung account email non web untuk\n"
-"umum.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Wah, Anda pakai kernel 2.2 yah... Bila IP jaringan Anda diset sendiri\n"
-"oleh komputer di kantor atau rumah (secara dinamis)\n"
-"maka kita harus jawab YA di sini. Benar tak demikian?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Apakah komputer Anda mendapatkan informasi jam dari komputer lain?\n"
-"Biasanya, fasilitas ini digunakan oleh organisasi sedang/besar Unix/Linux\n"
-"untuk sinkronisasi waktu untuk logging dan sebagainya. Bila Anda\n"
-"tidak tergabung dari kantor yang besar atau belum pernah dengar ini "
-"sebelumnya.\n"
-"jawab TIDAK deh"
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfigurasi tamat. Simpan perubahan ini ke disk?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Tidak bisa buka %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "error membuka file %s untuk ditulisi: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr "Tidak, tak perlu DHCP"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr "Ya, perlu DHCP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr "Tidak, tak perlu NTP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr "Ya, perlu NTP"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr "Jangan Simpan"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr "Simpan & Keluar"
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "Dukun Konfigurasi Firewall"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr "Tidak (lindungi dari internet)"
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr "Ya (izinkan ini melewati firewall)"
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr "Tunggu, paket terinstal sedang diverifikasi"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Gagal menginstal paket kebutuhan : %s dan Bastille.\n"
-" Coba instal secara manual."
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Server, Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Komputer Jaringan (klien)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "server NFS, SMB, Proxy, SSH"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Aplikasi Perkantoran"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Workstation Gnome"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Tool untuk Palm Pilot ataupun Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Workstation"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Server, Firewall/Router"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Nama Domain dan Server Info Network (NIS)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Program office: pengolah kata (kword, abiword), spreadsheet (kspread, "
-"gnumeric), viewer pdf,dsb"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Tool untuk audio: player mp3 atau midi, mixer, dsb"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Buku dan Howto untuk Linux dan Free Software"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Workstation KDE"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, dsb"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedia - Video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Kumpulan tool untuk mail, news, web, transfer file, dan chat"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Server, Database"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Server database PostgreSQL atau MySQL"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Tools untuk memudahkan konfigurasi komputer."
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedia - Sound"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Peralatan"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentasi"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Alat konsol"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Server mail Postfix, server news Inn"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Komputer Internet"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Komputer Multimedia"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "konfigurasi"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Desktop Grafis tambahan (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"The K Desktop Environment, lingkungan grafis dasar dg kumpulan tool-tool "
-"yang menyertainya"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Mode Grafis"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache dan Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Tool untuk membuat dan memburn CD"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Komputer Kantor"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, dsb"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Program Grafis, misalnya The Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Librari, program, dan file include untuk pemrograman C dan C++"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Komputer Server Jaringan"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Server, Mail/Groupware/News"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Komputer Game"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Editor dan Player Video"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedia - Grafis"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Program permainan: arcade, board, strategi, dsb"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Kumpulan tool untuk membaca dan mengirimkan email dan news (pine, mutt, "
-"tin..) dan untuk membrowse Web"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arsip, emulator, pemantauan"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Keuangan Pribadi"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Environment grafis dengan kumpulan aplikasi dan tool desktop yang mudah "
-"digunakan"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Klien untuk berbagai protokol, termasuk ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Gerbang Internet"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Program untuk memainkan/mengedit suara dan video"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Desktop Grafis lainnya"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editor, shell, tool untuk file, terminal"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Program untuk mengelola keuangan, misalnya gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Pengelolaan Informasi Pribadi"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedia - CD Burning"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Aplikasi Ilmu pengetahuan"
-
-#~ msgid "About"
-#~ msgstr "Keterangan"
-
-#~ msgid " Help "
-#~ msgstr " Pertolongan "
-
-#~ msgid ""
-#~ "XawTV isn't installed ...\n"
-#~ "You should install it.\n"
-#~ " Just type \"urpmi xawtv\""
-#~ msgstr ""
-#~ "XawTV belum diinstal,\n"
-#~ "Anda harus menginstalnya.\n"
-#~ " Ketikkan \"urpmi xawtv\""
-
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr ""
-#~ "Tak dapat mengakses modul kernel yg sesuai dg kernel Anda (file %s hilang)"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Tiada"
-
-#~ msgid "Choose a default printer!"
-#~ msgstr "Pilih satu printer standar!"
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Terapkan/Baca-ulang printer"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Sekarang Anda boleh berikan parameter untuk module %s."
-
-#~ msgid "Low"
-#~ msgstr "Lemah"
-
-#~ msgid "Medium"
-#~ msgstr "Sedang"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Ada beberapa peningkatan level security, yang utama adalah ada lebih "
-#~ "banyak\n"
-#~ "peringatan dan cek sekuriti yang lebih ketat."
-
-#~ msgid "mount failed"
-#~ msgstr "gagal melakukan mount"
-
-#~ msgid "Boot mode"
-#~ msgstr "Mode boot"
-
-#~ msgid "Export"
-#~ msgstr "Ekspor"
-
-#~ msgid "click here"
-#~ msgstr "klik di sini"
-
-#~ msgid ""
-#~ "To know about the options available for the current printer read either "
-#~ "the list shown below or click on the \"Print option list\" button. %s\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Untuk mengetahui opsi yg tersedia untuk printer ini bacalah daftar "
-#~ "berikut atau klik tombol \"Daftar opsi cetak\". %s\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "This %s scanner uses parallel port, which is unsupported for the moment"
-#~ msgstr "Scanner %s memakai port paralel, yg tak disupport saat ini"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux mengatur jam dengan GMT atawa \"Greenwich Mean Time\" dan \n"
-#~ "menterjemahkannya ke waktu lokal sesuai dengan timezone yang Anda pilih."
-
-#~ msgid ""
-#~ "You may choose to upload updated packages that have been released after "
-#~ "the\n"
-#~ "distribution has been made available. You will get security fixes or bug\n"
-#~ "fixes, but you need to have an Internet connection configured to "
-#~ "proceed.\n"
-#~ "Answer \"Yes\" to the dialog to choose an available mirror. After "
-#~ "choosing\n"
-#~ "a mirror, a packages selection tree appears to allow you to choose "
-#~ "packages\n"
-#~ "individually, package that need to be updated are already selected, but "
-#~ "you\n"
-#~ "may choose to install other package or deselect packages. Press \"Install"
-#~ "\"\n"
-#~ "to install the updated package or \"Cancel\" not to upgrade them. (this\n"
-#~ "*REALLY* need to be modified according to real DrakX, if you need other\n"
-#~ "help section, let us (DrakX team developer) known)."
-#~ msgstr ""
-#~ "Anda dapat memilih upload paket terupdate yg dirilis setelah distribusi\n"
-#~ "tersedia. Anda akan mendapat fix keamanan atau kutu, tapi Anda perlu "
-#~ "punya\n"
-#~ "koneksi Internet terkonfigurasi untuk melanjutkan proses. Jawab \"Ya\" "
-#~ "pada\n"
-#~ "dialog untuk memilih mirror. Setelah memilih mirror, pohon seleksi paket\n"
-#~ "muncul agar Anda dapat memilih paket sendiri, paket yg perlu diupdate "
-#~ "telah\n"
-#~ "dipilihkan, tapi Anda dapat menginstal paket lain / melepas pilihan "
-#~ "paket.\n"
-#~ "Tekan \"Instal\" utk menginstal update paket atau \"Batal\" utk keluar.\n"
-#~ "(ini *BENAR-BENAR* perlu dimodifikasi menurut DrakX nyata, jika Anda "
-#~ "perlu\n"
-#~ "pertolongan lain, beritahu kami tim developer DrakX)."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Sambungkan koneksi Internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Putuskan koneksi Internet"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfigureasikan koneksi jaringan (LAN atau Internet)"
-
-#~ msgid "authentification"
-#~ msgstr "otentifikasi"
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "Men-scan sumberdaya umum nfs yg tersedia"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "Men-scan sumberdaya umum nfs yg tersedia di server %s"
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "Scan sumberdaya umum samba yg tersedia"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "Scan sumberdaya umum samba yg tersedia di server %s"
-
-#~ msgid "Removable media"
-#~ msgstr "Media removable"
-
-#~ msgid "Active"
-#~ msgstr "Aktif"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Printer dengan tipe \"%s\" telah terdeteksi di "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Alat printer lokal"
-
-#~ msgid "Printer Device"
-#~ msgstr "Device Printer"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "Nama device/file hilang!"
-
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Printer di server CUPS remote"
-
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Printer di server remote"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Mulai koneksi..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Tutup koneksi..."
-
-#~ 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 ""
-#~ "Koneksi belum ditutup.\n"
-#~ "Cobalah lakukan secara manual sebagai root lalu ketikkan\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down"
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Sistem ini sekarang diputus koneksinya"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Pilih ukuran yang akan diinstal"
-
-#~ msgid "Total size: "
-#~ msgstr "Ukuran total: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Silakan tunggu, "
-
-#~ msgid "Total time "
-#~ msgstr "Total waktu "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Gunakan konfigurasi X11 yang ada?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Device mana yang terhubung ke printer\n"
-#~ "(ingat, /dev/lp0 = LPT1:) ?\n"
-
-#~ msgid "%s"
-#~ msgstr "%s"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Awas, adaptor jaringan sudah dikonfigurasikan. Akan dikonfigurasikan lagi."
-
-#~ msgid "New"
-#~ msgstr "Baru"
-
-#~ msgid "Remote"
-#~ msgstr "Remote"
-
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr ""
-#~ "Klik tombol di atas\n"
-#~ "\n"
-#~ "Atau gunakan \"Baru\""
-
-#~ msgid "Use \"New\""
-#~ msgstr "Gunakan \"Baru\""
-
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr ""
-#~ "Jika daftar di atas tak memuat isian yg diinginkan, masukkan di sini:"
-
-#~ msgid "Shared resource"
-#~ msgstr "Sumberdaya umum"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Tak jelas (%s), coba lebih detil\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (default %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Pilihan Anda? (default %s pilih 'none' untuk tidak ada) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "gagal baca file /etc/sysconfig/autologin: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Anda ingin restart network?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Setuju?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Saya akan me-restart device jaringan ini:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Device jaringan %s akan di-restart. Setuju ?"
-
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Kecuali Anda tahu yg lain, umumnya dipilih \"/dev/hda\"\n"
-#~ "(disk IDE master primer) atau \"/dev/sda\" (disk SCSI pertama)."
-
-#~ msgid ""
-#~ "The following printers are configured.\n"
-#~ "You can add some more or modify the existing ones."
-#~ msgstr ""
-#~ "Printer berikut telah dikonfigurasi.\n"
-#~ "Anda boleh tambahkan atau mengubah yang sudah ada."
-
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Timeout koneksi (detik) [ beta, belum diterapkan ]"
-
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Gagal set \"%s\" sbg printer default!"
-
-#~ msgid "Spooler: "
-#~ msgstr "Spooler: "
-
-#~ msgid "Test the mouse here."
-#~ msgstr "Silakan tes mouse Anda"
-
-#~ msgid "Press next to continue."
-#~ msgstr "Tekan Lanjutkan utk melanjutkan"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Pilihlan bahasa yang ingin Anda gunakan untuk instalasi dan sistem."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Anda harus menerima ketentuan dalam lisensi di atas untuk melanjutkan "
-#~ "proses instalasi.\n"
-#~ "\n"
-#~ "\n"
-#~ "Silakan tekan \"Terima\" bila Anda setuju dengan persyaratan di atas.\n"
-#~ "\n"
-#~ "\n"
-#~ "dan silakan tekan \"Tolak\" bila Anda tidak setuju. Proses instalasi akan "
-#~ "dihentikan tanpa mengubah konfigurasi yang sudah ada."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Pilih layout keyboard yg dipakai dari daftar di atas"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Bila Anda menginginkan bahasa-bahasa lain selain bahasa yang Anda tadi "
-#~ "pilih pada saat setelah instalasi, silakan pilih pada daftar di atas. "
-#~ "Bila Anda mau semuanya, pilih saja \"Semuanya\"."
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Pilih:\n"
-#~ "\n"
-#~ " - Customized: Bila Anda familiar dengan Linux, Anda akan dapat\n"
-#~ " memilih penggunaan sistem ini, yaitu normal, development, atau server.\n"
-#~ " Pilih \"Normal\" untuk instalasi secara umum yang biasanya. Atau pilih\n"
-#~ " \"Development\" untuk membuat software dengan Linux Anda, atau pilih\n"
-#~ " \"Server\" bila hendak menginstall server serbaguna (mail, print, dsb)\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ahli : Bila Anda sangat dekat dengan GNU/Linux dan ingin\n"
-#~ " menginstall Linux sesuka hati, ini adalah kelas instalasi yang pas\n"
-#~ " untuk Anda, dan Anda bisa memilih penggunaan sistem ini sebagaimana\n"
-#~ " pada kelas \"Customized\". JANGAN COBA-COBA PAKAI MODUS INI KALAU\n"
-#~ " belum cukup makan asam garam di dunia LINUX"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Berikut adalah pilihan penggunaan mesin Anda :\n"
-#~ "\n"
-#~ "*Workstation: pilih ini kalau Anda hendak menggunakan mesin Anda untuk "
-#~ "mengerjakan\n"
-#~ " pekerjaan sehari-hari di kantor atau di rumah\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: pilih ini bila Anda hendak menggunakan mesin ini untuk "
-#~ "pembuatan software.\n"
-#~ " Anda akan saya kasih kumpulan software yang berguna untuk melakukan "
-#~ "kompilasi,\n"
-#~ " debug, dan format source code, atau untuk membuat paket software\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server : Pilih ini bila Anda hendak menggunakan mesin ini sebagai\n"
-#~ " server. Entah itu file server (NFS ataw SMB), print server\n"
-#~ " (pakai protokol Unix lp (Line Printer) atau model windows SMB)\n"
-#~ " authentication server (NIS), database server dsb dsb.\n"
-#~ " Karena itu jangan mengharapken saya menyediakan rupa-rupa\n"
-#~ " software yang ngejreng (KDE,GNOME...) di sini."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Sekarang Anda pilih dulu grup paket yang mau Anda install\n"
-#~ "atau yang mau diupgrade.\n"
-#~ "\n"
-#~ "DrakX sekarang akan cek apakah Anda masih punya sisa space kosong untuk\n"
-#~ "menginstall ini semua, kalau tidak nanti Anda akan diberitahu kok.\n"
-#~ "Tapi kalau Anda mau cuek aja mau install walaupun spacenya tidak cukup\n"
-#~ "gua akan menginstall semua paketnya, tapi ada beberapa paket yang aku "
-#~ "rasa\n"
-#~ "kurang penting akan tidak diinstall. Pada daftar di bawah ini Anda bisa\n"
-#~ "pilih \"Pilih paket sendiri\"; kalau-kalau Anda pingin melihat \n"
-#~ "paket-paket yang ada (ada 1000an lebih...)"
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Anda dapat memilih tiap-tiap paket yang hendak Anda install\n"
-#~ "\n"
-#~ "\n"
-#~ "Anda dapat membuka atau menutup tree dengan mengklik pada pilihan di "
-#~ "sudut kiri pada\n"
-#~ "windows paket\n"
-#~ "\n"
-#~ "\n"
-#~ "Bila Anda hendak melihat daftar paket yang diurut secara alfabet, pilih "
-#~ "ikon \"Togel flat dan urut grup\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Bila Anda tidak hendak diberitahu tentang dependensi paket, pilih "
-#~ "\"Dependensi otomatis\"\n"
-#~ "Dengan cara ini bila Anda membuang suatu paket, maka paket-paket terkait "
-#~ "lainnya akan dibuang\n"
-#~ "juga secara otomatis tanpa pemberitahuan."
-
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Kalau Anda punya semua CD pada daftar di atas, tekan OK.\n"
-#~ "Kalau tidak punya sama sekali, click Baal.\n"
-#~ "Kalau cuma punya beberapa aja, pilih aja, trus klik Ok."
-
-#~ 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.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are installing on an Apple machine with a 1-button mouse, you "
-#~ "will\n"
-#~ "be given the opportunity to define some keyboard keys to emulate the 2nd\n"
-#~ "and 3rd mouse buttons. This will allow you to be able to access the "
-#~ "full\n"
-#~ "functionality of the mouse in both the Linux console and the X Window "
-#~ "GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have an ADB mouse, please select USB, as the Linux kernel will "
-#~ "take\n"
-#~ "care of mapping your mouse hardware correctly."
-#~ msgstr ""
-#~ "Anda kini dapat mencoba mouse. Gunakan tombol dan roda utk mencek\n"
-#~ "setting. Jika hasilnya buruk, klik \"Batal\" utk memilih driver lain.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jika Anda sedang menginstal mesin Apple dg mouse 1-tombol, ada "
-#~ "kesempatan\n"
-#~ "mendefinisikan keyboard utk mengemulasi tombol ke-2 dan ke-3.\n"
-#~ "Ini menjadikan Anda dapat mengakses fungsi penuh mouse dalam\n"
-#~ "konsol Linux dan GUI Window X.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jika Anda punya mouse ADB, pilihlah USB, karena kernel Linux akan "
-#~ "melakukan\n"
-#~ "mapping hardware mouse Anda."
-
-#~ 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 "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Bila Anda hendak menghubungkan komputer ini ke Internet atau ke jaringan\n"
-#~ "lokal, silakan pilih konfigurasi yang benar. Nyalakan perangkat terkait "
-#~ "sebelum\n"
-#~ "memilih konfigurasi agar dapat dideteksi oleh DrakX secara otomatis.\n"
-#~ "\n"
-#~ "\n"
-#~ "BIla anda tidak memiliki koneksi ke Internet atau jaringan lokal, pilih "
-#~ "saja\n"
-#~ "\"Matikan Jaringan\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Bila Anda hendak mengkonfigurasikan jaringan nanti setelah proses "
-#~ "instalasi selesai,atau bila Anda sudah selesai mengkonfigurasikan koneksi "
-#~ "jaringan, pilih \"Selesai\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Saya tidak dapat menemukan modem di komputer ini. Silakan pilih port "
-#~ "serial mana\n"
-#~ "modem Anda dicolokkan.\n"
-#~ "\n"
-#~ "\n"
-#~ "sebagai misal, port serial pertama (pada Microsoft windows dikenal dengan "
-#~ "\"COM1\")\n"
-#~ "adalah \"ttyS0\" di GNU/Linux."
-
-#~ 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 "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Sekarang Anda bisa memasukan pilihan dialup. Bila Anda tidak tahu\n"
-#~ "atau ragu-ragu, informasi yang benar bisa Anda tanyakan kepada\n"
-#~ "Internet Service Provider tempat Anda berlangganan. Bila Anda tidak\n"
-#~ "memasukan DNS (name server) di sini, informasi tersebut akan\n"
-#~ "saya cari sendiri pada Internet Service Provider Anda saat melakukan "
-#~ "koneksi nanti."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Bila modem yang Anda punya adalah modem eksternal, maka tolong dong "
-#~ "dinyalakan supaya DrakXbisa mendeteksinya secara otomatis."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Silakan nyalakan modemnya dan pilih mana modem yang Anda punya"
-
-#~ 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"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Bila Anda tidak yakin dengan informasi di atas apakah benar atau tidak\n"
-#~ "atau bahkan bila Anda sangat tidak tahu atau ragu mau isi apa, tenang "
-#~ "saja\n"
-#~ "informasi di atas bisa Anda tanyakan kepada Internet Service Provider "
-#~ "Anda.\n"
-#~ "Bila Anda tidak mengisi DNS (name server) di sini, nanti akan saya cari "
-#~ "sendiri\n"
-#~ "dari Internet Service Provider saat melakukan koneksi ke Internet."
-
-#~ 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 ""
-#~ "Anda bisa masukkan nama host Anda sekarang. Bila Anda tidak yakin apa "
-#~ "yang harus dimasukkan,\n"
-#~ "informasi ini bisa diperoleh dari ISP."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Silakan konfigurasikan device jaringan Anda:\n"
-#~ "\n"
-#~ " * Alamat IP: Kalau Anda tak tahu, tanyakan sana pada network "
-#~ "administratornya.\n"
-#~ " Jangan masukkan alamat IP kalau Anda pilih \"IP Otomatis\" di "
-#~ "bawah.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Netmask: Pilih aja \"255.255.255.0\", kecuali kalau ragu tanya juga "
-#~ "ke\n"
-#~ " network administratornya.\n"
-#~ "\n"
-#~ "\n"
-#~ " - IP otomatis: Bila network Anda menggunakan bootp atau protokol dhcp, "
-#~ "pilih\n"
-#~ " ini. Bila Anda pilih ini, tak usah masukkan alamat IP di \"Alamat IP\". "
-#~ "Bila\n"
-#~ " Anda ragu juga, tanya lagi ke network administrator."
-
-#~ 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 ""
-#~ "Anda sekarang bisa memasukan nama host. Bila Anda tidak tahu atau ragu\n"
-#~ "silakan kontak network administrator Anda saja."
-
-#~ 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 ""
-#~ "Sekarang Anda boleh memasukan nama host. Bila tidak tahu\n"
-#~ "atau tidak pasti, kosongkan saja deh."
-
-#~ 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 ""
-#~ "Anda bisa masukkan dialup sekarang. Bila Anda tak yakin apa yang harus "
-#~ "dimasukkan,\n"
-#~ "informasi ini bisa diperoleh dari ISP."
-
-#~ 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 ""
-#~ "Bila Anda mau pakai proxy, sekarang saatnya untuk mengkonfigurasi. Bila "
-#~ "Anda\n"
-#~ "tak tahu pakai proxy apa tak, tanya gih ke network administratornya atau "
-#~ "ISP."
-
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Anda bisa install paket kriptografi bila koneksi Internet Anda telah\n"
-#~ "dikonfig dengan benar. Sekarang pilih mirror tempat Anda ingin download\n"
-#~ "paket kriptografinya dan kemudian pilih paketnya.\n"
-#~ "\n"
-#~ "Perhatikan bahwa Anda harus pilih mirror dan kriptografi sesuai "
-#~ "ketentuan\n"
-#~ "yang berlaku di daerah Anda."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Sekarang pilih zonawaktu tempat Anda tinggal"
-
-#~ 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 ""
-#~ "Sekarang Anda bisa mengkonfigurasikan printer lokal (terhubung ke "
-#~ "komputer Anda) atau\n"
-#~ "printer remote (yang diakses via jaringan Unix, Netware, atau Microsoft "
-#~ "windows)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Bila Anda ingin dapat mencetak, silakan pilih sistem cetak CUPS atau LPR\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS adalah sistem cetak baru dan powerfull di Unix (CUPS = \"Common "
-#~ "Unix\n"
-#~ "Printing System\"). Ini adalah sistem cetak standar Linux Mandrake.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR adalah sistem cetak kuno, masih dipakai pada versi lama Linux "
-#~ "Mandrake.\n"
-#~ "\n"
-#~ "\n"
-#~ "Bila Anda tak punya printer, pilih \"Tidak Ada\""
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linux dapat menggunakan berbagai jenis printer. Tiap-tiap tipe "
-#~ "memerlukan setup\n"
-#~ "yang berbeda\n"
-#~ "\n"
-#~ "\n"
-#~ "Bila printer tersambung secara fisik dalam komputer ini, pilih\n"
-#~ "\"Printer Lokal\". \n"
-#~ "\n"
-#~ "Bila Anda menggunakan printer Unix jarak jauh, pilih\n"
-#~ "\"Printer remote\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Bila Anda hendak menggunakan printer pada mesin Microsoft windows (atau\n"
-#~ "pada mesin Unix dengan SMB), maka pilih \"SMB/WIndows 95/98/NT\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Silakan nyalakan printer sebelum DrakX mendeteksinya.\n"
-#~ "\n"
-#~ "Anda perlu mengisi beberapa informasi di sini.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Nama printer: spooler cetak menggunakan nama \"lp\" sebagai nama "
-#~ "printer default\n"
-#~ "Jadi Anda pelru punya sebuah printer dengan nama \"lp\". Bila Anda "
-#~ "memiliki cuma \n"
-#~ "satu buah printer saja, Anda bisa menggunakan beberapa nama. Tuliskan "
-#~ "saja nama\n"
-#~ "itu dan pisahkan dengan karakter pipe \"|\". Jadi untuk memberi nama "
-#~ "printer dengan\n"
-#~ "nama yang mudah dimengerti, Anda bisa tuliskan: \"Printer saya|lp\".\n"
-#~ " Printer yang memiliki \"lp\" pada namanya akan menjadi printer "
-#~ "default.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Deskripsi: ini boleh diisi boleh tidak, tapi bila diisi akan lebih "
-#~ "memudahkan Anda\n"
-#~ "untuk membedakan antara printer bila Anda memiliki printer lebih dari "
-#~ "satu buah atau bila\n"
-#~ "printer ini akan diakses oleh banyak orang.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Lokasi: Anda bisa menuliskan informasi lebih detil tentang lokasi "
-#~ "printer ini.\n"
-#~ "(misalnya \"Printer yang ada di lantai 2\").\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Anda perlu memasukkan beberapa informasi di sini.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Nama antrian: spooler cetak menggunakan nama \"lp\" sebagai nama "
-#~ "printer default\n"
-#~ "Jadi Anda pelru punya sebuah printer dengan nama \"lp\". Bila Anda "
-#~ "memiliki cuma \n"
-#~ "satu buah printer saja, Anda bisa menggunakan beberapa nama. Tuliskan "
-#~ "saja nama\n"
-#~ "itu dan pisahkan dengan karakter pipe \"|\". Jadi untuk memberi nama "
-#~ "printer dengan\n"
-#~ "nama yang mudah dimengerti, Anda bisa tuliskan: \"Printer saya|lp\".\n"
-#~ " Printer yang memiliki \"lp\" pada namanya akan menjadi printer "
-#~ "default.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Direktori Spool: Dalam direktori ini semua job printer akan "
-#~ "disimpan. BIla Anda tidak\n"
-#~ "mengerti biarkan saja terisi dalam nilai defaultnya.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Koneksi Printer: Bila printer tersambung secara fisik dalam komputer "
-#~ "ini, pilih\n"
-#~ "\"Printer Lokal\". Namun bila Anda menggunakan printer Unix jarak jauh, "
-#~ "pilih\n"
-#~ "\"Printer lpd remote\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Bila Anda hendak menggunakan printer pada mesin Microsoft windows "
-#~ "(atau\n"
-#~ "pada mesin Unix dengan SMB), maka pilih \"SMB/WIndows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Bila Anda hendak mengakses printer pada jaringan Netware, pilih "
-#~ "\"Netware\".\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Printer Anda tidak dapat dideteksi. Silakan tuliskan nama device atau di "
-#~ "mana printer Anda\n"
-#~ "tersambung.\n"
-#~ "\n"
-#~ "\n"
-#~ "Sebagai contoh, printer yang disambung ke port paralel pertama komputer "
-#~ "disebut\n"
-#~ "\"/dev/lp0\" pada GNU/Linux, dan disebut \"LPT1\" pada wicrosoft mindows."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Anda harus pilih printer yang Anda punya pada daftar di atas."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "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 ""
-#~ "Silakan pilih konfigurasi yang tepat bergantung tipe printer yang Anda "
-#~ "punya.\n"
-#~ "Silakan baca dokumentasinya bila Anda tidak tahu harus pilih apa di "
-#~ "sini.\n"
-#~ "\n"
-#~ "\n"
-#~ "Anda akan dapat melakukan test pada konfigurasi ini nanti dan bisa juga\n"
-#~ "mengubah konfigurasi ini bila tidak berjalan sebagaimana mestinya."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Sekarang Anda mesti berikan katasandi root untuk\n"
-#~ "sistem Linux-Mandrake ini. Katasandi harus diketikkan dua kali untuk\n"
-#~ "verifikasi bahwa Anda tidak salah ketik.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root adalah administrator sistem. Hanya orang yang punya akses ke\n"
-#~ "account administrator saja yang dapat mengatur dan mengelola sistem.\n"
-#~ "Awas, account administrator yang disalahgunakan atau dipakai\n"
-#~ "tanpa izin akan sangat membahayakan integritas sistem, data,\n"
-#~ "dan sistem lain yang terhubung. \n"
-#~ "\n"
-#~ "\n"
-#~ "Katasandi haruslah campuran dari\n"
-#~ "karakter alfanumerik dan panjangnya minimal 8 karakter. Jangan\n"
-#~ "pernah menuliskan katasandi Anda di kertas atau di mana saja. \n"
-#~ "\n"
-#~ "Jangan buat katasandi Anda terlalu panjang atau rumit, nanti bisa lupa."
-
-#~ msgid ""
-#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
-#~ "select\n"
-#~ "\"LDAP\" (or \"NIS\") as authentication. If you don't know, ask your "
-#~ "network\n"
-#~ "administrator.\n"
-#~ "\n"
-#~ "If your computer is not connected to any administrated network, you may "
-#~ "want to\n"
-#~ "choose \"Local files\" for authentication."
-#~ msgstr ""
-#~ "Jika jaringan Anda memakai protokol otentikasi LDAP/NIS, pilih\n"
-#~ "\"LDAP\" (atau \"NIS\") . Jika Anda tak tahu, tanyalah admin jaringan "
-#~ "Anda.\n"
-#~ "\n"
-#~ "Jika komputer tak terhubung jaringan, Anda dapat memilih\n"
-#~ "\"File lokal\" utk otentikasi."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Silakan Anda buat satu atau lebih user \"biasa\", setelah Anda\n"
-#~ "membuat user \"pihak berwenang\", yaitu root. Anda bisa buat\n"
-#~ "user untuk tiap orang yang Anda perbolehkan untuk mengakses komputer\n"
-#~ "ini. Perhatikan bahwa tiap account user akan memiliki preferesi\n"
-#~ "sendiri-sendiri (environment grafis, seting program dsb)\n"
-#~ "dan juga punya \"direktori home\" sendiri, tempat preferensi tadi\n"
-#~ "disimpan\n"
-#~ "\n"
-#~ "\n"
-#~ "Pertama-tama, buatlah account untuk Anda sendiri! Buatlah walau Anda\n"
-#~ "adalah satu-satunya orang yang mengakses mesin ini. Anda nanti tidak\n"
-#~ "BOLEH mengakses mesin ini untuk keperluan sehari-hari, karena merupakan\n"
-#~ "resiko besar bila Anda sering login sebagai root. Biasanya ini "
-#~ "disebabkan\n"
-#~ "karena salah ketik, dsb.\n"
-#~ "\n"
-#~ "\n"
-#~ "Karena itu, biasakan untuk konek ke msein ini dengan menggunakan account\n"
-#~ "yang telah Anda buat disini, dan login sebagai root, hanya untuk \n"
-#~ "keperluan administratif dan maintenance saja yah."
-
-#~ 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 ""
-#~ "Sangat disarankan Anda membuat bootdisk. Bila Anda gagal\n"
-#~ "memboot komputer, bootdisk adalah satu-satunya cara untuk\n"
-#~ "menyelamatkan sistem tanpa instal ulang."
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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 ""
-#~ "Pilihan LILO dan grub adalah:\n"
-#~ " - Boot device: Set nama devicenya (misalnya hard disk partisi) yang "
-#~ "berisi boot sector\n"
-#~ " pilih \"/dev/hda\", kecuali kalau Anda tahu yang "
-#~ "pastinya.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay sebelum boot ke image default: Menentukan waktu dalam "
-#~ "sepersepuluh detik\n"
-#~ " sebelum boot loader akan meload image yang default (pertama). Ini "
-#~ "berguna\n"
-#~ " pada sistem yang boot dari hard disk dan keyboardnya dinyalakan. Boot "
-#~ "loader\n"
-#~ " tidak menunggu bila \"delay\" dihilangkan atau diset ke nol.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: Menentukan mode text VGA yang dipilih saat booting. \n"
-#~ " Setting yang bisa dipakai: \n"
-#~ " * normal: pilih mode text 80x25\n"
-#~ " * <angka>: gunakan mode text.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Hapus \"/tmp\" saat boot bila Anda ingin menghapus semua file-file "
-#~ "di dalam direktori\n"
-#~ "\"/tmp\" saat boot sistem dimulai.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ukuran RAM yang tepat. Duh, ngga ada metode standar untuk "
-#~ "mendapatkan \n"
-#~ "angka jumlah RAM yang tepat di komputer tertentu. Jadi, Linux mungkin "
-#~ "akan\n"
-#~ "salah mendeteksi jumlah RAM yang Anda punya sekarang. Bila benar, saya "
-#~ "salah\n"
-#~ "tebak angka RAMnya di sini, silakan masukkan angka yang benar. Oh ya,\n"
-#~ "beda 2 atau 4 MB sih ngga masalah loh."
-
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 adalah bootloader untuk SPARC: Dianya akan memboot\n"
-#~ "GNU/Linux atau sistem operasi lain yang ada di komputer ini.\n"
-#~ "Biasanya, sistem operasi yang sudah ada akan secara normal di deteksi "
-#~ "dan\n"
-#~ "diinstallkan. Bila ternyata nanti tak bisa, Anda bisa tambahkan sendiri\n"
-#~ "secara manual di sini. Hati-hati yah nanti waktu kasih parameternya.\n"
-#~ "\n"
-#~ "\n"
-#~ "Anda juga bisa menutup akses ke sistem operasi tertentu. Caranya gampang "
-#~ "aja\n"
-#~ "Anda bisa hapus entrinya di sini. Tapi untuk bisa masuk ke sistem operasi "
-#~ "itu\n"
-#~ "Anda perlu bootdisk nantinya."
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Pilihan SILO dan grub adalah:\n"
-#~ " - Instalasi Bootloader: Tempat Anda hendak meletakkan informasi boot\n"
-#~ " ke GNU/Linux. Pilih aja \"Sektor pertama di drive (MBR)\", kecuali\n"
-#~ " elu udah tau tempatnya\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay sebelum boot ke image default: Menentukan waktu dalam "
-#~ "sepersepuluh detik\n"
-#~ " sebelum boot loader akan meload image yang default (pertama). Ini "
-#~ "berguna\n"
-#~ " pada sistem yang boot dari hard disk dan keyboardnya dinyalakan. Boot "
-#~ "loader\n"
-#~ " tidak menunggu bila \"delay\" dihilangkan atau diset ke nol."
-
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Sekarang Anda akan mengkonfigurasikan X Window System, yang merupakan\n"
-#~ "inti GUI (Graphical User Interface) bagi GNU/Linux. Sekarang,\n"
-#~ "Anda harus konfigurasikan video card dan monitor. Biasanya\n"
-#~ "tahapan ini akan otomatis, tapi Anda perlu verifikasi\n"
-#~ "hasil deteksi dan memeriksanya, benar apa tidak:)\n"
-#~ "\n"
-#~ "\n"
-#~ "Setelah itu, X akan dijalankan (kecuali kalau Anda bilang jangan)\n"
-#~ "dan periksa apakah settingnya sudah cocok atau belum.\n"
-#~ "Kalau tidak cocok, Anda bisa kembali lagi dan mengubah konfigurasi\n"
-#~ "lalu coba lagi."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Bila ada yang ngaco pada konfigurasi Xnya, silaken pakai pilihan ini "
-#~ "untuk\n"
-#~ "membuat X Window System lebih bagus."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Bila Anda ingin menggunakan login grafis, pilih \"Ya\". Sebaliknya,\n"
-#~ "pilih \"Tidak\"."
-
-#~ msgid ""
-#~ "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"
-#~ msgstr ""
-#~ "Silakan pilih tingkat keamanan sistem ini. Baca dulu manualnya untuk info "
-#~ "lebihlengkap\n"
-#~ "Kalau Anda tak tahu, pilih saja default.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Sistem Anda akan diboot ulang.\n"
-#~ "\n"
-#~ "Setelah itu, Linux Mandrake akan di-load otomatis.\n"
-#~ "Bila Anda ingin boot ke sistem operasi lain, silakan baca instruksi\n"
-#~ "tambahan."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Ceko (Pemrogram)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovakia (Pemrogram)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Beri nama profil yang hendak dibuat:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Tulis /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Format semua"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Setelah melakukan format semua partisi,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "seluruh data dalam partisi-partisi ini akan hilang"
-
-#~ msgid "Reload"
-#~ msgstr "Muat ulang"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "Mau buat disket auto install untuk replikasi linux?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "konfigurasi ADSL"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Dengan server CUPS remote, Anda tidak perlu mengkonfigurasikan\n"
-#~ "printer di sini; printer nantinya akan secara otomatis dideteksi\n"
-#~ "kecuali servernya ada di jaringan lain; dalam hal ini, Anda perlu\n"
-#~ "memasukan alamat IP server CUPS itu dan nomor portnya kalau ada."
-
-#~ msgid "Enter Printer Name and Comments"
-#~ msgstr "Isi Nama Printer dan Komentar"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Nama antrian remote hilang!"
-
-#~ msgid ""
-#~ "Here you can specify any arbitrary command line into which the job should "
-#~ "be piped instead of being sent directly to a printer."
-#~ msgstr ""
-#~ "Di sini Anda dapat menentukan perintah sebarang di mana job harus "
-#~ "disodorkan, bukannya dikirim langsung ke printer."
-
-#~ msgid "Command line"
-#~ msgstr "Perintah"
-
-#~ msgid "A command line must be entered!"
-#~ msgstr "Harus diisi perintah"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Pemantauan Jaringan"
-
-#~ msgid "Profile "
-#~ msgstr "Profil "
-
-#~ msgid "Statistics"
-#~ msgstr "Statistik"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Kecepatan Kirim"
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Kecepatan Terima: "
-
-#~ msgid "Connection Time: "
-#~ msgstr "Waktu koneksi: "
-
-#~ msgid "Logs"
-#~ msgstr "Log"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Sambung koneksi Internet "
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Putuskan koneksi Internet "
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "koneksi Internet gagal diputus."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "koneksi Internet selesai diputus."
-
-#~ msgid "Connection complete."
-#~ msgstr "Koneksi selesai."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Koneksi gagal\n"
-#~ "Silakan periksa konfigurasinya di Mandrake Control Center"
-
-#~ msgid "sent: "
-#~ msgstr "terkirim: "
-
-#~ msgid "received: "
-#~ msgstr "diterima: "
-
-#~ msgid "average"
-#~ msgstr "rata-rata"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Runlevel Standar"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Isi file konfigurasi tidak dapat dibaca"
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Config file tidak dikenal"
-
-#~ msgid "Adapter"
-#~ msgstr "Adaptor"
-
-#~ msgid "Disable network"
-#~ msgstr "Matikan jaringan"
-
-#~ msgid "Enable network"
-#~ msgstr "Aktifkan jaringan"
-
-#~ 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 ""
-#~ "Sekarang mouse Anda dapat dites. Gunakan tombol dan rodanya untuk\n"
-#~ "mengecek setting-nya. Bila belum baik, pilih \"Batal\" untuk kembali\n"
-#~ "memilih driver yang lain."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Konfigurasi koneksi DSL (atau ADSL)"
-
-#~ msgid "Choose"
-#~ msgstr "Pilih"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "Anda bisa memasukan URI untuk mengakses printer dengan CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Ya, tes cetak ascii"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Ya, tes cetak postscript"
-
-#~ msgid "Paper Size"
-#~ msgstr "Ukuran Kertas"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Kertas di-eject setelah mencetak?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Parameter driver Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "Pilihan kedalaman warna"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Cetak text dalam PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Betulkan efek tangga pada teks?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Jumlah halaman per output"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Margin Kiri/Kanan dalam point (1/72 inci)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Margin Atas/Bawah dalam point (1/72 inci)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Extra option pada GhostScript"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Pilihan text extra"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Balikkan urutan halaman"
-
-#~ msgid "CUPS starting"
-#~ msgstr "CUPS dijalankan"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Pilih koneksi Printer remote"
-
-#~ 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 ""
-#~ "Tiap antrian cetak harus punya nama (biasanya lp).\n"
-#~ "Parameter lain seperti keterangan dan lokasi printer bisa ditambahkan.\n"
-#~ "Sekarang saya mau tanya,\n"
-#~ "nama printer yang digunakan ini apa yah ?\n"
-#~ "Juga saya mau tanya bagaimana printernya disambungkan ke situ?"
-
-#~ 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 ""
-#~ "Tiap antrian cetak harus punya nama (biasanya lp) dan direktori spool\n"
-#~ "yang dialokasikan untuknya. Sekarang saya mau tanya,\n"
-#~ "nama antrian dan direktori yang digunakan apa yah ?\n"
-#~ "Juga saya mau tanya bagaimana printernya disambungkan ke situ?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Nama Antrian"
-
-#~ msgid "Spool directory"
-#~ msgstr "Direktori spool"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Agar sistem Anda lebih secure, silakan pilih \"Gunakan file shadow\" "
-#~ "dan \n"
-#~ "\"Pakai katasandi MD5\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Jika network Anda menggunakan NIS, pilih \"Gunakan NIS\". Jika tak tahu,\n"
-#~ "tanya admin jaringan Anda."
-
-#~ msgid "yellow pages"
-#~ msgstr "halaman kuning"
-
-#~ msgid "Light configuration"
-#~ msgstr "Konfigurasi ringan"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "DNS Provider 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "DNS Provider 2"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Pilih cara yang Anda inginkan untuk terhubung ke Internet"
-
-#~ msgid "cannot fork: "
-#~ msgstr "tidak bisa fork: "
-
-#~ msgid "Configure..."
-#~ msgstr "Konfigurasikan..."
-
-#~ msgid "Selected size %d%s"
-#~ msgstr "Ukuran yang dipilih %d%s"
-
-#~ msgid "Opening your connection..."
-#~ msgstr "Buka koneksi..."
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Skrip ini akan meload modul untuk mouse usb"
diff --git a/perl-install/share/po/id.xsl b/perl-install/share/po/id.xsl
deleted file mode 100644
index 4897a204f..000000000
--- a/perl-install/share/po/id.xsl
+++ /dev/null
@@ -1,5 +0,0 @@
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-<xsl:template match="/">
- <xsl:copy-of select="."/>
-</xsl:template>
-</xsl:stylesheet>
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
deleted file mode 100644
index 03cddfd32..000000000
--- a/perl-install/share/po/is.po
+++ /dev/null
@@ -1,12530 +0,0 @@
-# Translation file for Mandrake graphic install, DrakX
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (C) 1999 Mandrakesoft
-# Jóhann Ţorvarđarson <johann.torvardarson@lais.is>, 1999-2000
-# Ţórarinn (Tony) R. Einarsson <thori@mindspring.com>, 1999-2000
-#
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-01-05 18:53-0500\n"
-"Last-Translator: Thorarinn Einarsson <teinarsson@nc.rr.com>\n"
-"Language-Team: Icelandic\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:249
-#, fuzzy
-msgid "Multi-head configuration"
-msgstr "Les uppsetningarskrá"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Skjákort"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Veldu skjákort"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Veldu X ţjón"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X ţjónn"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Veldu X ţjón"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X ţjónn"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-#, fuzzy
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Hverju viltu bćta viđ?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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:417
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:421
-#, fuzzy
-msgid "XFree configuration"
-msgstr "Lokauppsetning"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Veldu minnisstćrđ skjákortsins"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Veldu valmöguleika fyrir ţjón"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Veldu skjá"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Skjár"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Hér ţarf ađ gefa upp 'horizontal sync' tíđni skjásins ţíns. Ţú getur\n"
-"valiđ tíđnisviđ ađ neđan sem passar viđ stađlađa skjái eđa gefiđ upp\n"
-"eitthvađ annađ.\n"
-"\n"
-"ţađ er MJÖG MIKILVĆGT ađ velja ekki of hátt tíđnisviđ fyrir skjáinn. Hafir\n"
-"ţú einhverjar efasemdir, veldu ţá lćgri stillingar."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Lárétt tíđni"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Lóđrétt tíđni"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Skjár ekki skilgreindur"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Skjákort ekki skilgreint enn"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Upplausn ekki valin enn"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Viltu prófa skilgreininguna"
-
-#: ../../Xconfigurator.pm_.c:650
-#, fuzzy
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Ađvörun: Prófanir eru varasamar međ ţetta skjákort"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Prófunar skilgreining"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"prófađu ađ breyta stillingum"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Villa átti sér stađ"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Hćtti eftir %d sekúndur"
-
-#: ../../Xconfigurator.pm_.c:742
-#, fuzzy
-msgid "Is this the correct setting?"
-msgstr "Er ţetta rétt?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Villa kom upp, reyndu ađ breyta fćribreytum"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Upplausn"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Veldu upplausn og fjölda lita"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Skjákort: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 ţjónn: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr "Fćra"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Í lagi"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Expert Mode"
-msgstr "F. snillinga"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Sýna alla"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Upplausnir"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Tegund lyklaborđs: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Tegund músar: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Mús: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Skjár: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Lárétt tíđni skjás: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Lóđrétt tíđni skjás: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Skjákort: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Skjákort: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Skjákortsminni: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, fuzzy, c-format
-msgid "Color depth: %s\n"
-msgstr "Stillingar á litadýpt"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, fuzzy, c-format
-msgid "Resolution: %s\n"
-msgstr "Upplausnir"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 ţjónn: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, fuzzy, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 ţjónn: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Undirbý X-Window skilgreiningu"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Hvađ viltu gera?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Skipta um skjá"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Skipta um skjákort"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Breyta ţjóns möguleikum"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Breyta upplausn"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Sýna upplýsingar"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Prófa aftur"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Hćtta"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, fuzzy, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr "Halda núverandi IP stillingum"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X í rćsingu"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Ég get stillt tölvuna ţína til ađ kveikja sjálfvirkt á X viđ rćsingu\n"
-"Vilt ţú kveikja á X viđ endurrćsingu?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Stimplađu ţig aftur inn í %s til ađ virkja breytingarnar"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Stimplađu ţig út og sláđu á Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 litir (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ţúsund litir (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ţúsund litir (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljón litir (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljarđar lita (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB eđa meira"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Stađlađ VGA, 640x480 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Samhćft, 1024x768 @ 87 Hz samtvinnađ (ekkert 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 @ 87 Hz samtvinnađ, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-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:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Ósamtvinnađ SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hátíđni SVGA, 1024x768 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Skjár sem rćđur viđ 1280x1024 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Skjár sem rćđur viđ 1280x1024 @ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Skjár sem rćđur viđ 1280x1024 @ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Skjár sem rćđur viđ 1600x1200 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Skjár sem rćđur viđ 1600x1200 @ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Á fyrsta geira rćsidisksneiđar"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Í rćsifćrsluna (MBR)"
-
-#: ../../any.pm_.c:120
-#, fuzzy
-msgid "SILO Installation"
-msgstr "Uppsetning LILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Hvert viltu setja rćsistjórann?"
-
-#: ../../any.pm_.c:133
-#, fuzzy
-msgid "LILO/grub Installation"
-msgstr "Uppsetning LILO"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr ""
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr ""
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr ""
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr ""
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr ""
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-#, fuzzy
-msgid "Yaboot"
-msgstr "Rót"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-#, fuzzy
-msgid "Bootloader main options"
-msgstr "Stillingar LILO"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-#, fuzzy
-msgid "Bootloader to use"
-msgstr "Stillingar LILO"
-
-#: ../../any.pm_.c:169
-#, fuzzy
-msgid "Bootloader installation"
-msgstr "Stillingar LILO"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Rćsitćki"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr ""
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Samţjappađ"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "samţjappađ"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Skjáhamur"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Töf áđur en sjálfgefin rćsing byrjar"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Lykilorđ"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Lykilorđ (aftur)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Takmarka alla rofa á skipanlínu"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "takmarka"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr ""
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Nákvćm stćrđ vinnsluminnis (fann %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr ""
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Sláđu inn vinnsluminni í MB"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Valkosturinn ``Takmarka alla rofa á skipanalínu'' gerir ekkert án lykilorđs"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Reyndu aftur"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Mismunandi lykilorđ"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr ""
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr ""
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr ""
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:206
-#, fuzzy
-msgid "Default OS?"
-msgstr "Sjálfgefiđ"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-#, fuzzy
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Hérna eru núverandi stillingar LILO .\n"
-"Ţú getur bćtt viđ fleirum eđa breytt ţessum."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Bćta viđ"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Búiđ"
-
-#: ../../any.pm_.c:265
-#, fuzzy
-msgid "Modify"
-msgstr "Breyta RAID"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Hverju viltu bćta viđ?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Öđru stýrikerfi (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Öđru stýrikerfi (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Öđru stýrikerfi (Windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Rćsikjarna"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Rót"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Bćta aftan viđ"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Les-skrif"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tafla"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Óöruggt"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Nafn"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Sjálfgefiđ"
-
-#: ../../any.pm_.c:326
-#, fuzzy
-msgid "Initrd-size"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr ""
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Fjarlćgja"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Autt er ekki leyft"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Ţú verđur ađ hafa diskminni"
-
-#: ../../any.pm_.c:341
-#, fuzzy
-msgid "This label is already used"
-msgstr "Ţetta nafn er nú ţegar í notkun."
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Fann %s %s tengi"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Er kannski eitt enn í vélinni?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Eru einhver %s tengi í tölvunni?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Nei"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Já"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Skođađu vélbúnađarupplýsingar"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Set inn rekil fyrir %s kortiđ %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(eining %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Hvađa %s rekil viltu prófa?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Í sumum tilfellum ţarf rekillinn %s auka viđföng svo hann virki rétt,\n"
-" ţó hann virki vel í flestum tilfellum án ţeirra. Viltu setja inn auka\n"
-" viđföng eđa leyfa reklinum sjálfum ađ leita ađ ţeim upplýsingum sem\n"
-" hann ţarf? Stundum frystir sjálfvirk stilling vélina en ţađ ćtti ekki\n"
-"ađ skemma neitt."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Stilla sjálfvirkt"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Stilla handvirkt"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-# ## skrytid
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ţú getur núna gefiđ upp viđföng fyrir eininguna %s.\n"
-"Viđföng eru gefin upp sem ``viđfang=gildi viđfang2=gildi2 ...''.\n"
-"Til dćmis: ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Stillingar kjarnaeininga:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Innsetning á einingu %s mistókst.\n"
-"Viltu prófa aftur međ ólík viđföng?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s er nú ţegar til)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Ţetta lykilorđ er of einfalt"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Vinsamlega sláđu inn notandanafn"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Notandanafniđ má bara innihalda litla stafi, tölustafi, `-' og `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Ţetta notandanafn er nú ţegar til"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Bćta viđ notanda"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Sláđu inn notanda\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Samţykkja notanda"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Nafn notanda"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Notandanafn:"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Skel"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr ""
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr ""
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Ég get stillt tölvuna ţína til ađ kveikja sjálfvirkt á X viđ rćsingu\n"
-"Vilt ţú kveikja á X viđ endurrćsingu?"
-
-#: ../../any.pm_.c:833
-#, fuzzy
-msgid "Choose the default user:"
-msgstr "Veldu nýja stćrđ"
-
-#: ../../any.pm_.c:834
-#, fuzzy
-msgid "Choose the window manager to run:"
-msgstr "Veldu forritiđ sem ţú vilt nota"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Hvernig mús ertu međ?"
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr ""
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr ""
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Bćta viđ notanda"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-#, fuzzy
-msgid "Custom"
-msgstr "Sérlagađa"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "Stađbundinn prentari"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Hvađa pakka viltu setja inn"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Hćtta viđ"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Velkomin(n) í tölvuţrjótinn"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Lélegt"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr ""
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Hátt"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Hátt"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Taugaveiklađ"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Ţetta er hiđ hefđbundna öryggi sem mćlt er međ fyrir tölvu sem verđur notuđ\n"
-"til ađ tengja viđ netiđ sem biđill. Öryggisathuganir eru núna í gangi. "
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Á ţessu öryggisstigi er orđiđ mögulegt ađ nota tölvuna sem ţjón.\n"
-"Öryggiđ er nógu nógu mikiđ til ađ taka viđ fyrirspurnum frá\n"
-"mörgum biđlum. "
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Kerfiđ er komiđ á 4. stig og er nú alveg lokađ.\n"
-"Öryggiđ er á hćsta stigi."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Veldu öryggisstig"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Stilli öryggisţrep"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Veldu valmöguleika fyrir ţjón"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, fuzzy, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Velkomin(n) i %s styrikerfisraesistjorann!\n"
-"\n"
-"Sladu a <TAB> til ad fa lista yfir moegulega valkosti.\n"
-"\n"
-"Til raesa einn af theim, sl du inn nafnid og sidan a <ENTER>\n"
-"eda biddu i %d sekundur thar til sjalfgefin raesing hefst.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr ""
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr ""
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr ""
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr ""
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Hvert viltu setja rćsistjórann?"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr ""
-
-#: ../../bootlook.pm_.c:62
-#, fuzzy
-msgid "Boot Style Configuration"
-msgstr "Lokauppsetning"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-#, fuzzy
-msgid "/_File"
-msgstr "Skrár:\n"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr ""
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr ""
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:92
-#, fuzzy
-msgid "NewStyle Monitor"
-msgstr "Skjár"
-
-#: ../../bootlook.pm_.c:93
-#, fuzzy
-msgid "Traditional Monitor"
-msgstr "Skipta um skjá"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr ""
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Lilo/grub mode"
-msgstr "Hringja inn međ mótaldi"
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Yaboot mode"
-msgstr "Rćsitćki"
-
-#: ../../bootlook.pm_.c:104
-#, fuzzy, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr "Veldu prenttengingu"
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-#, fuzzy
-msgid "Configure"
-msgstr "Stilla X"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr ""
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr ""
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr ""
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr ""
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr ""
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr ""
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr ""
-
-#: ../../common.pm_.c:114
-#, fuzzy, c-format
-msgid "%d seconds"
-msgstr "Hćtti eftir %d sekúndur"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Get ekki bćtt viđ disksneiđum"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "France"
-msgstr "Hćtta viđ"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Belgískt"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-#, fuzzy
-msgid "Germany"
-msgstr "Ţýskt"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Grískt"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Norkst"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Skođa"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Ítalskt"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "rađtengd"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Vinsamlega taktu fyrst afrit af öllum gögnum"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Lestu vandlega!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Villa"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Veldu ađgerđ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-#, fuzzy
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Ţú hefur eina stóra FAT disksneiđ.\n"
-"(venjulega notuđ af Microsoft DOS/Windows).\n"
-"Ég legg til ađ ţú endursníđir hana\n"
-"(smelltu á hana, síđan á \"Endursníđa\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Smelltu á disksneiđ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Ítarleg atriđi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "tókst ekki ađ tengja"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Diskminni"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Tóm"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Annađ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Tegundir skráakerfa:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Búa til"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tegund"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Nota ``%s'' í stađinn"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Eyđa"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Nota ``Aftengja'' fyrst"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, fuzzy, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "öll gögn á ţessari disksneiđ tapast"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Veldu ađgerđ"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Búa til nýja disksneiđ"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Fćra í snillingsham"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Fara í venjulegan ham"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Endurheimta"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Halda samt áfram?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Hćtta án ţess ađ vista"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Hćtta án ţess ađ skrifa sneiđatöfluna?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Viltu prófa skilgreininguna"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Ráđstafa skjálfkrafa"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Hreinsa allt"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Sýna upplýsingar"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Öll ađal skráarsniđ eru í notkun"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Get ekki bćtt viđ disksneiđum"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Til ađ fá fleiri disksneiđar, vinsamlega eyddu einni til ađ búa til "
-"viđbótarsneiđ"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Skrifa sneiđatöflu"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Bjarga sneiđatöflunni"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Bjarga sneiđatöflunni"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Bjarga sneiđatöflunni"
-
-# ## skrytid
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Sjálfvirk tenging aukatćkja"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Veljiđ skrá"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Disksneiđin sem var tekin sem afrit er ekki af sömu stćrđ\n"
-"Halda áfram?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Ađvörun"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Settu diskling í drifiđ\n"
-"Öll gögn á ţessum diskling tapast"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Reyni ađ endurheimta disksneiđatöfluna"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "Sýna upplýsingar"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Tengipunktur"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-#, fuzzy
-msgid "Options"
-msgstr "Upplýsingar"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Endurstćkka"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Fćra"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Forsníđa"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Tengipunktur"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Bćta viđ RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Bćta viđ LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Aftengja"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Taka úr RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Taka úr LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Breyta RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Búa til nýja disksneiđ"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Byrjunar geiri"
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Stćrđ í MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Tegund skráakerfis:"
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Tengipunktur: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Valkostur:"
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Forsníđ disksneiđ %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Breyta tegund sneiđar"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-#, fuzzy
-msgid "Which filesystem do you want?"
-msgstr "Hvađa sneiđtegund viltu?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, fuzzy, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Hvar viltu tengja tćki %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Hvar viltu tengja tćki %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Reikna takmarkanir FAT skráarkerfis..."
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Endursníđ"
-
-#: ../../diskdrake/interactive.pm_.c:609
-#, fuzzy
-msgid "This partition is not resizeable"
-msgstr "Hvađa sneiđtegund viltu?"
-
-#: ../../diskdrake/interactive.pm_.c:614
-#, fuzzy
-msgid "All data on this partition should be backed-up"
-msgstr "öll gögn á ţessari disksneiđ tapast"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, fuzzy, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "öll gögn á ţessari disksneiđ tapast"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Veldu nýja stćrđ"
-
-#: ../../diskdrake/interactive.pm_.c:622
-#, fuzzy
-msgid "New size in MB: "
-msgstr "Stćrđ í MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Hvađa disk viltu fćra til?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Geiri"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Hvađa geira viltu fćra gögn til?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Fćri"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Fćri disksneiđ..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Veldu RAID sem til er fyrir til ađ bćta viđ"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "ný"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Veldu LVM sem til er fyrir til ađ bćta viđ"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Nafn notanda"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:781
-#, fuzzy
-msgid "File already exists. Use it?"
-msgstr "Nafniđ %s er ţegar í notkun"
-
-#: ../../diskdrake/interactive.pm_.c:804
-#, fuzzy
-msgid "Mount options"
-msgstr "Stillingar kjarnaeininga:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "tćki"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "stig"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "stćrđ hlutar"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:906
-#, fuzzy
-msgid "What type of partitioning?"
-msgstr "Hvernig prentara ertu međ?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Ţví miđur get ég ekki sett /boot svona innarlega á drifiđ (á sívalning > "
-"1024).\n"
-"Annađhvort notar ţú LILO og ţađ mun ekki virka, eđa ţú notar ekki LILO og "
-"sleppir ţví ađ hafa /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Disksneiđin sem ţú hefur valiđ til ađ nota sem rót (/) er utan\n"
-"1024. sívalnings á harđa disknum og ţú hefur enga /boot sneiđ.\n"
-"Ef ţú ćtlar ađ nota LILO rćsistjórann skaltu muna ađ bćta viđ /boot sneiđ"
-
-#: ../../diskdrake/interactive.pm_.c:934
-msgid ""
-"You've selected a software RAID partition as root (/).\n"
-"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Disksneiđatafla drifs %s mun verđa skrifuđ á disk!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Ţú ţarft ađ endurrćsa áđur en breytingar taka gildi"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, fuzzy, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "öll gögn á ţessari disksneiđ tapast"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Forsníđing"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, fuzzy, c-format
-msgid "Formatting loopback file %s"
-msgstr "Forsníđ disksneiđ %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Forsníđ disksneiđ %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Búa til nýja disksneiđ"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Búa til nýja disksneiđ"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Upplausnir"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Tćki: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS drifstafur: %s (bara ágiskun)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tegund: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Byrja: geiri %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Stćrđ: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s geirar"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Sívalningur %d til %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Forsniđinn\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Ekki forsniđinn\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Tengdur\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Sjálfgefin disksneiđ rćst\n"
-" (fyrir MS-DOS rćsingu, ekki fyrir LILO)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Stig %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Hlunkastćrđ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-diskar %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Stćrđ: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Skilgreining: %s sívalningar, %s hausar, %s geirar\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Upplýsingar: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-diskar %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, fuzzy, c-format
-msgid "Partition table type: %s\n"
-msgstr "Rótardisksneiđ"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "á gagnabraut %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, fuzzy, c-format
-msgid "Options: %s"
-msgstr "Rótardisksneiđ"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Tegund skráakerfis:"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Ţetta lykilorđ er of einfalt (verđur ađ vera minnst %d stafa langt)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Mismunandi lykilorđ"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "Breyta tegund sneiđar"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Smelltu á disksneiđ"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "Nafnamiđlari"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, fuzzy, c-format
-msgid "%s formatting of %s failed"
-msgstr "gat ekki forsniđiđ %s"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "kann ekki ađ forsníđa %s af tegundinni %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "villa viđ ađ aftengja %s: %s"
-
-#: ../../fsedit.pm_.c:21
-#, fuzzy
-msgid "simple"
-msgstr "Skrá"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "netţjónn"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr ""
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Heiti tengipunkta verđa ađ byrja á /."
-
-#: ../../fsedit.pm_.c:478
-#, fuzzy, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Ţađ er ţegar disksneiđ međ tengipunktinn %s"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr ""
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr ""
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Villa viđ ađ opna %s til skriftar: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Ţađ kom upp villa. Engin tćki fundust sem unnt er ađ búa til ný skráakerfi "
-"á. Vinsamlegast athugađu vélbúnađinn í leit ađ orsök vandamálsins."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Ţú hefur ekki neinar disksneiđar"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr ""
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-#, fuzzy
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Veldu tengiđ sem ţú vilt nota. Tengiđ COM1 í MS Windows er kallađ\n"
-"ttyS0 í Linux, COM2 er ttyS1, o.s.frv."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-
-#: ../../help.pm_.c:722
-#, fuzzy
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Hér gefur ţú upp hvar ţú vilt láta ţćr upplýsingar sem\n"
-"ţarf til ađ rćsa Linux.\n"
-"\n"
-"\n"
-"Veldu \"Í rćsifćrsluna (MBR)\" nema ţú vitir nákvćmlega\n"
-"hvađ ţú ert ađ gera."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Get ekki notađ útsendingu án NIS léns"
-
-#: ../../install_any.pm_.c:793
-#, fuzzy, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Settu tóman diskling í drif %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr ""
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "villa viđ lestur úr skránni %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Ţú verđur ađ hafa rótarsneiđ fyrir Linux. Búđu ţví annađhvort\n"
-"til rótarsneiđ eđa veldu sneiđ sem nú ţegar er til á disknum.\n"
-"Veldu síđan ``Tengipunktur'' og sláđu inn `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Ţú verđur ađ hafa diskminni"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Ţú hefur ekkert diskminni\n"
-"\n"
-"Halda samt áfram?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Ţú verđur ađ hafa diskminni"
-
-#: ../../install_interactive.pm_.c:90
-#, fuzzy
-msgid "Use free space"
-msgstr "Notandanafn:"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:100
-#, fuzzy
-msgid "Use existing partition"
-msgstr "Forsníđ disksneiđ %s"
-
-#: ../../install_interactive.pm_.c:102
-#, fuzzy
-msgid "There is no existing partition to use"
-msgstr "Reyni ađ endurheimta disksneiđatöfluna"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:112
-#, fuzzy
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Hvađa disksneiđ vilt ţú nota sem rótardisksneiđ"
-
-#: ../../install_interactive.pm_.c:114
-#, fuzzy
-msgid "Choose the sizes"
-msgstr "Veldu nýja stćrđ"
-
-#: ../../install_interactive.pm_.c:115
-#, fuzzy
-msgid "Root partition size in MB: "
-msgstr "Rótardisksneiđ"
-
-#: ../../install_interactive.pm_.c:116
-#, fuzzy
-msgid "Swap partition size in MB: "
-msgstr "Stćrđ í MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:128
-#, fuzzy
-msgid "Which partition do you want to resize?"
-msgstr "Hvađa sneiđtegund viltu?"
-
-#: ../../install_interactive.pm_.c:130
-#, fuzzy
-msgid "Computing Windows filesystem bounds"
-msgstr "Reikna takmarkanir FAT skráarkerfis..."
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"AĐVÖRUN\n"
-"\n"
-"DrakX ţarf núna ađ endurgera Windows sneiđina. Athugiđ: Ţetta getur haft "
-"alvarlegar\n"
-"afleiđingar í för međ sér. Ef ţú ert ekki búin(n) ađ ţví, ţá ćttir ţú fyrst "
-"ađ\n"
-"keyra scandisk (og jafnvel líka defrag) á ţessa sneiđ og taka síđan afrit "
-"af\n"
-"gögnunum ţínum.\n"
-"Sláđu á 'Í lagi' til ađ halda áfram."
-
-#: ../../install_interactive.pm_.c:147
-#, fuzzy
-msgid "Which size do you want to keep for windows on"
-msgstr "Hvađa geira viltu fćra gögn til?"
-
-#: ../../install_interactive.pm_.c:148
-#, fuzzy, c-format
-msgid "partition %s"
-msgstr "Rótardisksneiđ"
-
-# ******************************************
-# ***** Byrjađi hérna 4. jan 2000 *******
-# *** ATH: Ţađ er sumt eftir fyrir ofan ***
-# ******************************************
-#
-#: ../../install_interactive.pm_.c:155
-#, fuzzy, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Sjálfvirk endurstćkkun brást"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:182
-#, fuzzy, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "öll gögn á ţessari disksneiđ tapast"
-
-#: ../../install_interactive.pm_.c:190
-#, fuzzy
-msgid "Custom disk partitioning"
-msgstr "Forsníđ disksneiđ %s"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:226
-#, fuzzy
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Ţú hefur ekki neinar disksneiđar"
-
-#: ../../install_interactive.pm_.c:242
-#, fuzzy
-msgid "I can't find any room for installing"
-msgstr "Get ekki bćtt viđ disksneiđum"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:251
-#, fuzzy, c-format
-msgid "Partitioning failed: %s"
-msgstr "Rótardisksneiđ"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Keyri upp netiđ"
-
-#: ../../install_interactive.pm_.c:266
-#, fuzzy
-msgid "Bringing down the network"
-msgstr "Keyri upp netiđ"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Óţekkt villa kom upp sem ekki er hćgt ađ međhöndla.\n"
-"Haltu áfram á eigin ábyrgđ."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "%s tengipunktur er nú ţegar til"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-
-#: ../../install_steps.pm_.c:458
-#, fuzzy, c-format
-msgid "Welcome to %s"
-msgstr "Velkomin(n) í tölvuţrjótinn"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Ekkert disklingadrif ađgengilegt"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Hef skref `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Innsetningarađferđ"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Vinsamlega tilgreindu eftirfarandi"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:241
-#, fuzzy
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Ţú munt geta valiđ af meiri nákvćmni í nćsta skrefi"
-
-#: ../../install_steps_gtk.pm_.c:243
-#, fuzzy
-msgid "Percentage of packages to install"
-msgstr "Veldu pakka til ađ setja inn"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Val á pakkahóp"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-#, fuzzy
-msgid "Individual package selection"
-msgstr "Val á pakkahóp"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, fuzzy, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Heildarstćrđ: "
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Skemmdur pakki"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Útgáfa: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Stćrđ: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:422
-#, fuzzy
-msgid "The following packages are going to be installed"
-msgstr "Eftirfarandi pakkar verđa fjarlćgđir"
-
-#: ../../install_steps_gtk.pm_.c:423
-#, fuzzy
-msgid "The following packages are going to be removed"
-msgstr "Eftirfarandi pakkar verđa fjarlćgđir"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Innsetning"
-
-#: ../../install_steps_gtk.pm_.c:466
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "Vista á diskling"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Val á pakkahóp"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "Fjarlćgja"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Veldu pakkana sem ţú vilt setja inn"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Set inn"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Áćtla"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Tími eftir "
-
-#: ../../install_steps_gtk.pm_.c:528
-#, fuzzy
-msgid "Please wait, preparing installation"
-msgstr "Undirbý innsetningu"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pakkar"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Set inn pakka %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-#, fuzzy
-msgid "Accept"
-msgstr "Samţykkja notanda"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#, fuzzy
-msgid "Refuse"
-msgstr "Endurstćkka"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Viltu samt halda áfram?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Ţađ kom upp villa viđ ađ rađa pökkum:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-#, fuzzy
-msgid "There was an error installing packages:"
-msgstr "Ţađ kom upp villa viđ ađ rađa pökkum:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Villa kom upp"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Viltu prófa skilgreininguna"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Lyklaborđ"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Hvađa lyklaborđsuppsetningu viltu?"
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:224
-#, fuzzy
-msgid "Which installation class do you want?"
-msgstr "Hverskonar innsetningarađferđ viltu?"
-
-#: ../../install_steps_interactive.pm_.c:226
-#, fuzzy
-msgid "Install/Update"
-msgstr "Innsetning/Uppfćrsla"
-
-#: ../../install_steps_interactive.pm_.c:226
-#, fuzzy
-msgid "Is this an install or an update?"
-msgstr "Er ţetta innsetning eđa uppfćrsla?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Auđvelda"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "F. snillinga"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Uppfćrsla"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Val á pakkahóp"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Hvernig mús ertu međ?"
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Músartengi"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-#, fuzzy
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Viđ hvađa rađtengi er músin ţín tengd?"
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Stilli PCMCIA kort..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-#, fuzzy
-msgid "Configuring IDE"
-msgstr "Uppsetning"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "engar reiđubúnar disksneiđar"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Veldu tengipunktana"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, fuzzy, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ég get ekki lesiđ disksneiđatöflu ţína, hún er of skemmd fyrir mig :-(\n"
-"Ég mun reyna ađ halda áfram međ ţví ađ hreinsa skemmdar disksneiđar"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake gat ekki lesiđ sneiđatöfluna.\n"
-"Haltu áfram á eigin ábyrgđ!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "Engin rótarsneiđ fannst"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Rótardisksneiđ"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Hver er rótardisksneiđ (/) kerfisins?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Ţú verđur ađ rćsa tölvuna aftur svo breytingar á sneiđatöflunni taki gildi"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Veldu ţćr disksneiđar sem á ađ forsníđa"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Athuga skemmdar blokkir?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#, fuzzy
-msgid "Formatting partitions"
-msgstr "Forsníđ disksneiđ %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Ekki nćgjanlegt diskminni fyrir innsetningu. Bćttu viđ ţađ"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Leita ađ fáanlegum pökkum"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Leita ađ pökkum til ađ uppfćra"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:515
-#, fuzzy, c-format
-msgid "Complete (%dMB)"
-msgstr "Venjulega"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, fuzzy, c-format
-msgid "Minimum (%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, fuzzy, c-format
-msgid "Recommended (%dMB)"
-msgstr "Auđvelda"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-#, fuzzy
-msgid "Load from floppy"
-msgstr "Endurheimta frá diskling"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Loading from floppy"
-msgstr "Endurheimta frá diskling"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Package selection"
-msgstr "Val á pakkahóp"
-
-#: ../../install_steps_interactive.pm_.c:578
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "Settu tóman diskling í drif %s"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Vista á diskling"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:671
-#, fuzzy
-msgid "Type of install"
-msgstr "Veldu pakka til ađ setja inn"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-#, fuzzy
-msgid "With X"
-msgstr "Augnablik"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Undirbý innsetningu"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Set inn pakka %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Lokauppsetning"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Settu tóman diskling í drif %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Settu tóman diskling í drif %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-#, fuzzy
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Nú gefst ţér tćkifćri til ađ sćkja hugbúnađ sem ćtlađur er til dulritunar.\n"
-"\n"
-"AĐVÖRUN:\n"
-"\n"
-"Ţar sem lög um dulritunarhugbúnađ eru mjög mismunandi eftir löndum og reglur "
-"sem settar\n"
-"eru af yfirvöldum oft strangar, ţá ţarf notandi slíks hugbúnađar ađ ganga úr "
-"skugga\n"
-"um ađ viđkomandi lögsagnarumdćmi leyfi ţessa gagnaflutninga, ásamt "
-"varđveislu og\n"
-"notkun á slíkum hugbúnađi.\n"
-"\n"
-"Viđskiptavinir Mandrake og/notendur Mandrake Linux skulu ţví sjá til ţess ađ "
-"ţeir brjóti ekki\n"
-"ţau lög sem sett hafa veriđ í landi viđkomandi. Ef viđkiptavinir og/eđa "
-"notendur\n"
-"virđa ekki ţessi lög ţá mega ţeir búast viđ ţeim refsiađgerđum sem slíkar "
-"athafnir\n"
-"hafa í för međ sér.\n"
-"\n"
-"Hvorki Mandrakesoft né framleiđsluađilar eđa dreifingarađilar ţeirra bera "
-"ábyrgđ á\n"
-"sérstökum, óbeinum eđa beinum, skađa (ţ.m.t. en ekki takmarkađ af,\n"
-"hagnađartapi, viđskiptabanni eđa truflun, gagnatapi og\n"
-"öđru fjárhagslegu tapi, skađabótum eđa öđrum bótum sem fyrirskipađ er af "
-"dómstóli\n"
-"ađ skuli borgast) sökum notkunar, varđveislu, eđa flutnings\n"
-"af slíkum hugbúnađi, sem viđskiptavinur og/eđa notandi hafđi ađgang ađ "
-"eftir\n"
-"ađ hafa samţykkt ţennan samning..\n"
-"\n"
-"Ţessi samningur fellur undir og skal vera túlkađur af lögum Frakklands nema\n"
-"ţar sem krafist er notkun laga viđkomandi yfirvalda. \n"
-"Ţessi samningur inniheldur hinsvegar ekki hverskonar lög sem bjóđa upp á "
-"árekstra, \n"
-"undirstöđuatriđi eđa lagaákvćđi sem mćla á móti. Frönsk lög\n"
-"skulu í ţeim tilfellum gilda fram yfir lög viđkomandi lands.\n"
-"\n"
-"Frekari upplýsingar um ţennan samning fást hjá \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena, California, 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Hef samband viđ vélina til ađ sćkja lista yfir fáanlega pakka"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Veldu spegilvélina ţađan sem á ađ sćkja pakkanna"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Hef samband viđ vélina til ađ sćkja lista yfir fáanlega pakka"
-
-#: ../../install_steps_interactive.pm_.c:967
-#, fuzzy
-msgid "Which is your timezone?"
-msgstr "Á hvađa tímasvćđi ertu?"
-
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "Veltu stilla tölvuklukkuna á GMT?"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-#, fuzzy
-msgid "NTP Server"
-msgstr "NIS ţjónn"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-#, fuzzy
-msgid "Remote CUPS server"
-msgstr "Fjartengd prentröđ"
-
-#: ../../install_steps_interactive.pm_.c:1015
-#, fuzzy
-msgid "No printer"
-msgstr "Stađbundinn prentari"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Er kannski eitt enn í vélinni?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1044
-#, fuzzy
-msgid "Mouse"
-msgstr "USB mús"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Prentari"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-#, fuzzy
-msgid "NIS"
-msgstr "Nota NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-#, fuzzy
-msgid "Local files"
-msgstr "Stađbundinn prentari"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Ákveđa rótarlykilorđ"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Ekkert lykilorđ"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Ţetta lykilorđ er of einfalt (verđur ađ vera minnst %d stafa langt)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Auđkenning"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "Auđkenning"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-#, fuzzy
-msgid "LDAP Server"
-msgstr "netţjónn"
-
-#: ../../install_steps_interactive.pm_.c:1134
-#, fuzzy
-msgid "Authentication NIS"
-msgstr "Auđkenning NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS lén"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS ţjónn"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, fuzzy
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Sérsmíđađur rćsidisklingur gerir ţér kleyft ađ rćsa Linux án ţess ađ nota "
-"rćsistjóra\n"
-" eins og LILO. Ţetta kemur ađ gagni ef ţú vilt ekki setja upp LILO á vélinni "
-"eđa ef\n"
-" annađ stýrikerfi hefur fjarlćgt LILO eđa LILO virkar ekki međ ţínum "
-"vélbúnađarstillingum.\n"
-" Rćsidiskling má einnig nota međ Mandrake Linux 'rescue' disklingnum svo "
-"hćgt sé ađ bjarja\n"
-" vélinni ef alvarleg vandamál koma upp.\n"
-"Viltu búa til rćsidiskling fyrir vélina ţína?"
-
-#: ../../install_steps_interactive.pm_.c:1187
-#, fuzzy
-msgid "First floppy drive"
-msgstr "Fyrsta drif"
-
-#: ../../install_steps_interactive.pm_.c:1188
-#, fuzzy
-msgid "Second floppy drive"
-msgstr "Annađ drif"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Sleppa"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, fuzzy, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Sérsmíđađur rćsidisklingur gerir ţér kleyft ađ rćsa Linux án ţess ađ nota "
-"rćsistjóra\n"
-" eins og LILO. Ţetta kemur ađ gagni ef ţú vilt ekki setja upp LILO á vélinni "
-"eđa ef\n"
-" annađ stýrikerfi hefur fjarlćgt LILO eđa LILO virkar ekki međ ţínum "
-"vélbúnađarstillingum.\n"
-" Rćsidiskling má einnig nota međ Mandrake Linux 'rescue' disklingnum svo "
-"hćgt sé ađ bjarja\n"
-" vélinni ef alvarleg vandamál koma upp.\n"
-"Viltu búa til rćsidiskling fyrir vélina ţína?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Ekkert disklingadrif til stađar"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Veldu disklingadrifiđ sem ţú vilt nota til ađ gera rćsidisk"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Settu tóman diskling í drif %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Bý til rćsidiskling..."
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Set upp rćsistjórann..."
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-#, fuzzy
-msgid "Do you want to use aboot?"
-msgstr "Viltu nota SILO?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Setja inn rćsihlađara"
-
-#: ../../install_steps_interactive.pm_.c:1259
-#, fuzzy
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Innsetning LILO brást sökum eftirfarandi villu:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, fuzzy, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Settu tóman diskling í drif %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-#, fuzzy
-msgid "Creating auto install floppy"
-msgstr "Undirbý innsetningu"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Sum skref eru ennţá eftir.\n"
-"\n"
-"Viltu virkilega hćtta núna?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Til hamingju! Innsetningu er lokiđ.\n"
-"Taktu disklinginn eđa geisladiskinn úr drifinu og sláđu á ENTER.\n"
-"\n"
-"\n"
-"Á http://www.linux-mandrake.com/en/82errata.php3 má finna viđbćtur og/eđa "
-"lagfćringar\n"
-"á göllum sem gćtu veriđ til stađar í ţessari útgáfu af Mandrake Linux\n"
-"\n"
-"\n"
-"Frekari upplýsingar um hvernig á ađ stilla vélina eftir innsetninguna er ađ\n"
-"finna í viđeigandi kafla í Official Mandrake Linux User's Guide bókinni."
-
-#: ../../install_steps_interactive.pm_.c:1354
-#, fuzzy
-msgid "Generate auto install floppy"
-msgstr "Undirbý innsetningu"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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:1361
-#, fuzzy
-msgid "Automated"
-msgstr "Sjálfvirkt IP"
-
-#: ../../install_steps_interactive.pm_.c:1361
-#, fuzzy
-msgid "Replay"
-msgstr "Endurhlađa"
-
-#: ../../install_steps_interactive.pm_.c:1364
-#, fuzzy
-msgid "Save packages selection"
-msgstr "Val á pakkahóp"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux innsetning %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> milli hluta | <Bilslá> velur | <F12> nćsti skjár "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Veldu ađgerđ"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr ""
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Augnablik..."
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Upplýsingar"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Opna tré"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Loka tré"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Slćm hugmynd, reyndu aftur\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Ţitt val? (sjálfgefiđ %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Ţitt val? (sjálfgefiđ %s) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Rótardisksneiđ"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "Viltu nota SILO?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Ţitt val? (sjálfgefiđ %s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Tékkneskt (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Ţýskt"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Spćnskt"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Finnskt"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Franskt"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norkst"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Pólskt"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Rússneskt"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Sćnskt"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Breskt lyklaborđ"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Bandarískt lyklaborđ"
-
-#: ../../keyboard.pm_.c:188
-#, fuzzy
-msgid "Albanian"
-msgstr "Úkraínkst"
-
-#: ../../keyboard.pm_.c:189
-#, fuzzy
-msgid "Armenian (old)"
-msgstr "Armenískt"
-
-#: ../../keyboard.pm_.c:190
-#, fuzzy
-msgid "Armenian (typewriter)"
-msgstr "Armenískt (hljóđfrćđilegt)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armenískt (hljóđfrćđilegt)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgískt"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Armenískt (hljóđfrćđilegt)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Búlgarskt"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasilískt"
-
-#: ../../keyboard.pm_.c:202
-#, fuzzy
-msgid "Belarusian"
-msgstr "Búlgarskt"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Svissneskt (ţýsk uppsetn.)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Svissneskt (frönsk uppsetn.)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Tékkneskt (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Danskt"
-
-#: ../../keyboard.pm_.c:210
-#, fuzzy
-msgid "Dvorak (US)"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:211
-#, fuzzy
-msgid "Dvorak (Norwegian)"
-msgstr "Norkst"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Eistlenskt"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgískt (\"Rússneskt\")"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgískt (\"Latínu\")"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Grískt"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Ungverskt"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Ísraelískt"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Ísraelískt (hljóđfr.)"
-
-#: ../../keyboard.pm_.c:224
-#, fuzzy
-msgid "Iranian"
-msgstr "Úkraínkst"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Íslenskt"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Ítalskt"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr ""
-
-#: ../../keyboard.pm_.c:231
-#, fuzzy
-msgid "Korean keyboard"
-msgstr "Breskt lyklaborđ"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Suđur amerískt"
-
-#: ../../keyboard.pm_.c:233
-#, fuzzy
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litháenískt AZERTY"
-
-#: ../../keyboard.pm_.c:235
-#, fuzzy
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litháenískt AZERTY"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litháenískt \"töluröđ\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litháenískt \"hljóđfrćđilegt\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Upplýsingar"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Hollenskt"
-
-#: ../../keyboard.pm_.c:242
-#, fuzzy
-msgid "Polish (qwerty layout)"
-msgstr "Svissneskt (ţýsk uppsetn.)"
-
-#: ../../keyboard.pm_.c:243
-#, fuzzy
-msgid "Polish (qwertz layout)"
-msgstr "Svissneskt (ţýsk uppsetn.)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portúgískt"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Kanadískt (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "Rússneskt (Yawerty)"
-
-#: ../../keyboard.pm_.c:248
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "Rússneskt (Yawerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Rússneskt (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slóvenskt"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slóvakískt (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slóvakískt (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "Júgoslavneskt (Latínu upps.)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Tafla"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Thćlenskt lyklaborđ"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Thćlenskt lyklaborđ"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Tyrkneskt (hefđbundiđ \"F\" módel)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Tyrkneskt (nútíma \"Q\" módel)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Úkraínkst"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Bandarískt (alţjóđlegt)"
-
-#: ../../keyboard.pm_.c:269
-#, fuzzy
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Litháenískt \"töluröđ\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Júgoslavneskt (Latínu upps.)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr ""
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr ""
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-#, fuzzy
-msgid "Sun - Mouse"
-msgstr "USB mús"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-#, fuzzy
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Almenn mús"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr ""
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr ""
-
-#: ../../mouse.pm_.c:46
-#, fuzzy
-msgid "Wheel"
-msgstr "stig"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "rađtengd"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Almenn ţriggja hnappa mús"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech mús (rađtengd, gömul C7 tegund)"
-
-#: ../../mouse.pm_.c:66
-#, fuzzy
-msgid "busmouse"
-msgstr "Engin mús"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr ""
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr ""
-
-#: ../../mouse.pm_.c:73
-#, fuzzy
-msgid "none"
-msgstr "Búiđ"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Engin mús"
-
-#: ../../mouse.pm_.c:499
-#, fuzzy
-msgid "Please test the mouse"
-msgstr "Hvernig mús ertu međ?"
-
-#: ../../mouse.pm_.c:500
-#, fuzzy
-msgid "To activate the mouse,"
-msgstr "Hvernig mús ertu međ?"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-#, fuzzy
-msgid "Finish"
-msgstr "Finnskt"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Er ţetta rétt?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-#, fuzzy
-msgid "Connect to the Internet"
-msgstr "Nafn tengingar"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:37
-#, fuzzy
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr "Hvađa sneiđtegund viltu?"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-#, fuzzy
-msgid "Choose the network interface"
-msgstr "Veldu nýja stćrđ"
-
-#: ../../network/ethernet.pm_.c:93
-#, fuzzy
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Viđ hvađa rađtengi er músin ţín tengd?"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "ekkert netkort fannst"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Stilli stađarnetstenginu"
-
-#: ../../network/ethernet.pm_.c:203
-#, fuzzy
-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 ""
-"Sláđu inn heiti vélarinnar. Vélarheitiđ ţarf ađ vera fullt \n"
-"heiti, t.d. odinn.grimsey.is Ţú mátt líka slá inn IP \n"
-"vistfang gáttarinnar ef ţú veist hvađ ţađ vistfang er.\n"
-"Gáttin gefur ţér ađgang út úr stađarnetinu (t.d. á Internetiđ)."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-#, fuzzy
-msgid "Host name"
-msgstr "Vélarheiti:"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-#, fuzzy
-msgid "Network Configuration Wizard"
-msgstr "Netstillingar"
-
-#: ../../network/isdn.pm_.c:22
-#, fuzzy
-msgid "External ISDN modem"
-msgstr "F. snillinga"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:22
-#, fuzzy
-msgid "What kind is your ISDN connection?"
-msgstr "Viđ hvađa rađtengi er músin ţín tengd?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "Les uppsetningarskrá"
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "Les uppsetningarskrá"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-#, fuzzy
-msgid "ISDN Configuration"
-msgstr "Uppsetning"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "Prófunar skilgreining"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:189
-#, fuzzy
-msgid "Which protocol do you want to use ?"
-msgstr "Hvađa sneiđtegund viltu?"
-
-#: ../../network/isdn.pm_.c:199
-#, fuzzy
-msgid "What kind of card do you have?"
-msgstr "Hvernig prentara ertu međ?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:200
-#, fuzzy
-msgid "ISA / PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-#, fuzzy
-msgid "PCI"
-msgstr "PCMCIA"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:210
-#, fuzzy
-msgid "Continue"
-msgstr "Halda samt áfram?"
-
-#: ../../network/isdn.pm_.c:216
-#, fuzzy
-msgid "Which is your ISDN card ?"
-msgstr "Á hvađa tímasvćđi ertu?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-
-#: ../../network/modem.pm_.c:39
-#, fuzzy
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Hvađa rađtengi er mótaldiđ tengt viđ?"
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Innhringistillingar"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Nafn tengingar"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-#, fuzzy
-msgid "Phone number"
-msgstr "Símanúmer"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Notendanafn"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Međ skriftu"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Međ skjáhermi"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Nafn léns"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-#, fuzzy
-msgid "First DNS Server (optional)"
-msgstr "Ađal nafnamiđlari"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-#, fuzzy
-msgid "Second DNS Server (optional)"
-msgstr "Vara nafnamiđlari"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr "Stilla nettengingu"
-
-#: ../../network/netconnect.pm_.c:34
-#, fuzzy
-msgid "You are currently connected to internet."
-msgstr "Hvađa disk viltu fćra til?"
-
-#: ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr "Nafn tengingar"
-
-#: ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid "You are not currently connected to Internet."
-msgstr "Hvađa disk viltu fćra til?"
-
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
-msgid "Connect"
-msgstr "Nafn tengingar"
-
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
-msgid "Disconnect"
-msgstr "Veldu prenttengingu"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Stilla nettengingu"
-
-#: ../../network/netconnect.pm_.c:50
-#, fuzzy
-msgid "Internet connection & configuration"
-msgstr "Veldu prenttengingu"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Stilla nettengingu"
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr "Stilla nettengingu"
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Netstillingar"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-
-#: ../../network/netconnect.pm_.c:167
-#, fuzzy
-msgid "Choose the profile to configure"
-msgstr "Veldu nýja stćrđ"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Leita ađ tćkjum..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, fuzzy
-msgid "Normal modem connection"
-msgstr "Stilla nettengingu"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, fuzzy, c-format
-msgid "detected on port %s"
-msgstr "%s tengipunktur er nú ţegar til"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, fuzzy
-msgid "ISDN connection"
-msgstr "Veldu prenttengingu"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy
-msgid "ADSL connection"
-msgstr "Veldu prenttengingu"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "Cable connection"
-msgstr "Veldu prenttengingu"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Veldu prenttengingu"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-#, fuzzy
-msgid "LAN connection"
-msgstr "Veldu prenttengingu"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "Veldu forritiđ sem ţú vilt nota"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-#, fuzzy
-msgid "Internet connection"
-msgstr "Veldu prenttengingu"
-
-#: ../../network/netconnect.pm_.c:233
-#, fuzzy
-msgid "Do you want to start the connection at boot?"
-msgstr "Viltu nota aboot?"
-
-#: ../../network/netconnect.pm_.c:247
-#, fuzzy
-msgid "Network configuration"
-msgstr "Netstillingar"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, fuzzy, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr "Viltu prófa skilgreininguna"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Sláđu inn IP uppsetningu ţessarar vélar. Hver fćrsla\n"
-"á ađ vera IP tala rituđ međ punkt á milli.\n"
-"(dćmi 192.168.1.13)"
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Stilli nettćki %s"
-
-#: ../../network/network.pm_.c:307
-#, fuzzy, c-format
-msgid " (driver %s)"
-msgstr "XFree86 ţjónn: %s\n"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-#, fuzzy
-msgid "IP address"
-msgstr "IP vistfang:"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-#, fuzzy
-msgid "Netmask"
-msgstr "Netsía:"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Sjálfvirkt IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP vistfang á ađ vera á sniđinu 192.168.1.10"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Sláđu inn heiti vélarinnar. Vélarheitiđ ţarf ađ vera fullt \n"
-"heiti, t.d. odinn.grimsey.is Ţú mátt líka slá inn IP \n"
-"vistfang gáttarinnar ef ţú veist hvađ ţađ vistfang er.\n"
-"Gáttin gefur ţér ađgang út úr stađarnetinu (t.d. á Internetiđ)."
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "Nafnamiđlari"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Gátt (tćkiđ)"
-
-#: ../../network/network.pm_.c:381
-#, fuzzy
-msgid "Proxies configuration"
-msgstr "Lokauppsetning"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP sel:"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP Sel:"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Sel á ađ vera http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Sel á ađ vera ftp://..."
-
-#: ../../network/tools.pm_.c:39
-#, fuzzy
-msgid "Internet configuration"
-msgstr "Sel stillingar"
-
-#: ../../network/tools.pm_.c:40
-#, fuzzy
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Viltu prófa skilgreininguna"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-#, fuzzy
-msgid "Testing your connection..."
-msgstr "Stilla nettengingu"
-
-#: ../../network/tools.pm_.c:50
-#, fuzzy
-msgid "The system is now connected to Internet."
-msgstr "Hvađa disk viltu fćra til?"
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr ""
-
-#: ../../network/tools.pm_.c:52
-#, fuzzy
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr "Nafn tengingar"
-
-#: ../../network/tools.pm_.c:76
-#, fuzzy
-msgid "Connection Configuration"
-msgstr "Sel stillingar"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr ""
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr ""
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr ""
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr ""
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr ""
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr ""
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-#, fuzzy
-msgid "Provider phone number"
-msgstr "Símanúmer"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-#, fuzzy
-msgid "Provider dns 1 (optional)"
-msgstr "Stillingar á prentara"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-#, fuzzy
-msgid "Provider dns 2 (optional)"
-msgstr "Stillingar á prentara"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "Veldu lyklaborđ"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-#, fuzzy
-msgid "Dialing mode"
-msgstr "Hringja inn međ mótaldi"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "Nafn tengingar"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Nafn tengingar"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-#, fuzzy
-msgid "Account Login (user name)"
-msgstr "Tengipunktur"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-#, fuzzy
-msgid "Account Password"
-msgstr "Lykilorđ"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "tókst ekki ađ tengja: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr ""
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Ţađ er gat í sneiđatöflunni ţinni sem ekki er hćgt ađ nota.\n"
-"Eina lausnins er ađ fćra ađalsneiđar svo ađ gatiđ verđi viđ hliđina á "
-"viđbótasneiđ"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Villa viđ lestur úr skránni %s: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Skemmd afritsskrá"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Villa viđ ađ skrifa í skrána %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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:24
-msgid "must have"
-msgstr ""
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr ""
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr ""
-
-#: ../../pkgs.pm_.c:27
-#, fuzzy
-msgid "nice"
-msgstr "tćki"
-
-#: ../../pkgs.pm_.c:28
-#, fuzzy
-msgid "maybe"
-msgstr "Rćsikjarna"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Stađbundinn prentari"
-
-#: ../../printer.pm_.c:48
-#, fuzzy
-msgid "Remote printer"
-msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Fjartengd prentröđ"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "Fjartengdur"
-
-#: ../../printer.pm_.c:51
-#, fuzzy
-msgid "Network printer (TCP/Socket)"
-msgstr "Viđföng NetWare prentara"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Prentţjónn"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "Prenttćki:"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Stađbundinn prentari"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Villa viđ ađ skrifa í skrána %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(eining %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Vistfang SMB ţjóns"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Sjálfgefiđ)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Veldu prenttengingu"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Hvernig er ţessi prentari tengdur?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Uppsetning"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Fjartengd prentröđ"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP vistfang á ađ vera á sniđinu 192.168.1.10"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:87
-#, fuzzy
-msgid "CUPS server IP"
-msgstr "Vistfang SMB ţjóns"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-#, fuzzy
-msgid "Port"
-msgstr "Lélegt"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Lokauppsetning"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Leita ađ tćkjum..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Prófa tengi"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Stađbundinn prentari"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Stađbundinn prentari"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "%s tengipunktur er nú ţegar til"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Stađbundinn prentari"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Hvađa rađtengi er mótaldiđ tengt viđ?"
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Prenttćki:"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Uppsetning"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Set inn pakka %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Set inn pakka %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Til ţess ađ nota fjartengda lpd prentröđ ţarftu ađ gefa\n"
-"upp vélarheiti prentţjónsins og prentröđina á ţeim sem\n"
-"ţú vilt senda prentverkin í."
-
-#: ../../printerdrake.pm_.c:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "Prentţjónn:"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#: ../../printerdrake.pm_.c:630
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "Prentţjónn:"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Prentţjónn:"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB/Windows 9x/NT prentviđföng"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Til ţess ađ geta prentađ á SMB prentara ţarftu ađ gefa\n"
-"upp SMB vélarheiti ţjónsins (sem er ekki endilega ţađ\n"
-"sama og TCP/IP vélarheitiđ en oftast) og jafnvel IP vistfang prentţjónsins\n"
-"ásamt samnýtingarheiti prentarans, notandaheiti, lykilorđi og\n"
-"vinnuhópsupplýsingum fyrir prentarann."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Heiti SMB ţjóns"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "Vistfang SMB ţjóns"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Samnýtingarheiti"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Vinnuhópur"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Viđföng NetWare prentara"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Til ţess ađ geta prentađ á NetWare prentara ţarftu ađ gefa upp NetWare\n"
-"vélarheiti ţjónsins (sem er ekki endilega ţađ sama og TCP/IP vélarheitiđ)\n"
-"ásamt heiti prentarađar, notandaheiti og lykilorđi fyrir\n"
-"prentarann."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Prentţjónn"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Heiti prentrađar"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Viđföng stađbundinna prentara"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "Stillingar á prentara"
-
-#: ../../printerdrake.pm_.c:858
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "Stillingar á prentara"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-#, fuzzy
-msgid "Printer Device URI"
-msgstr "Prenttćki:"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-#, fuzzy
-msgid "Name of printer"
-msgstr "Stađbundinn prentari"
-
-#: ../../printerdrake.pm_.c:1006
-#, fuzzy
-msgid "Description"
-msgstr "Stilla handvirkt"
-
-#: ../../printerdrake.pm_.c:1007
-#, fuzzy
-msgid "Location"
-msgstr "Upplýsingar"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Er ţetta rétt?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#: ../../printerdrake.pm_.c:1139
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Veldu prenttengingu"
-
-#: ../../printerdrake.pm_.c:1140
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "Hvernig prentara ertu međ?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Sel stillingar"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Sel stillingar"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Viltu prenta út prufublađsíđu?"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "Prófa tengi"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-#, fuzzy
-msgid "No test pages"
-msgstr "Já, prenta báđar prufusíđur"
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "Prentari"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Forritun"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "Prenta út prufublađsíđu(r)..."
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "Prenta út prufublađsíđu(r)..."
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Prenta út prufublađsíđu(r)..."
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Prenta út prufublađsíđu(r)..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Stađbundinn prentari"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "USB mús"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Keyri upp netiđ"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Keyri upp netiđ"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Stillingar á prentara"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Sel stillingar"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "Stađbundinn prentari"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "Stilla prentara"
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Stilla nettengingu"
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Stilla nettengingu"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Skjár ekki skilgreindur"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Stilli stađarnetstenginu"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Hvađa sneiđtegund viltu?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Hátt"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Taugaveiklađ"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Hvađa sneiđtegund viltu?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Veldu prenttengingu"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Hvađa sneiđtegund viltu?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Setja upp prentara"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Set inn pakka %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Stillingar á prentara"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Setja upp prentara"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Viltu setja upp prentara?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Prentari"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Stilla nettengingu"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Normal Mode"
-msgstr "Venjulega"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Viltu prófa skilgreininguna"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Sel stillingar"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Viltu prófa skilgreininguna"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Veldu prenttengingu"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Veldu prenttengingu"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "Prenta út prufublađsíđu(r)..."
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Viltu prófa skilgreininguna"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Stađbundinn prentari"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Viltu prófa skilgreininguna"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-#, fuzzy
-msgid "Proxy configuration"
-msgstr "Lokauppsetning"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr ""
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-#, fuzzy
-msgid "port"
-msgstr "Lélegt"
-
-#: ../../proxy.pm_.c:44
-#, fuzzy
-msgid "Url should begin with 'http:'"
-msgstr "Sel á ađ vera http://..."
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr ""
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Sel á ađ vera ftp://..."
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-#, fuzzy
-msgid "login"
-msgstr "Belgískt"
-
-#: ../../proxy.pm_.c:82
-#, fuzzy
-msgid "password"
-msgstr "Lykilorđ"
-
-#: ../../proxy.pm_.c:84
-#, fuzzy
-msgid "re-type password"
-msgstr "Ekkert lykilorđ"
-
-#: ../../proxy.pm_.c:88
-#, fuzzy
-msgid "The passwords don't match. Try again!"
-msgstr "Mismunandi lykilorđ"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr ""
-
-#: ../../raid.pm_.c:111
-#, fuzzy, c-format
-msgid "Can't write file %s"
-msgstr "Villa viđ ađ skrifa í skrána %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr ""
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr ""
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Ekki nógu margar disksneiđar fyrir RAID %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr ""
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-
-#: ../../services.pm_.c:18
-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 ""
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-
-#: ../../services.pm_.c:23
-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 ""
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-
-#: ../../services.pm_.c:33
-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:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: ../../services.pm_.c:43
-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 ""
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-
-#: ../../services.pm_.c:52
-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 ""
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-
-#: ../../services.pm_.c:69
-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:71
-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 ""
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-
-#: ../../services.pm_.c:78
-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 ""
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr ""
-
-#: ../../services.pm_.c:81
-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 ""
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Veldu ţćr ţjónustur sem skal sjálfkrafa keyra viđ rćsingu"
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Prentari"
-
-#: ../../services.pm_.c:123
-#, fuzzy
-msgid "Internet"
-msgstr "Endursníđ..."
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Mouse Systems"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Prentţjónn"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "tćki"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "running"
-msgstr "Ađvörun"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "stopped"
-msgstr "Bćta aftan viđ"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr ""
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-
-#: ../../services.pm_.c:224
-#, fuzzy
-msgid "On boot"
-msgstr "Rót"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "takmarka"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Geiri"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Prófunar skilgreining"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Endursníđ..."
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Margmiđlun"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-#, fuzzy
-msgid "Development"
-msgstr "Forritun"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Nafn tengingar"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Endursníđ..."
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "Heiti SMB ţjóns"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-#, fuzzy
-msgid "Games"
-msgstr "Búiđ"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "snillingur"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Set inn pakka %s"
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Ég get ekki lesiđ disksneiđatöflu ţína, hún er of skemmd fyrir mig :-(\n"
-"Ég mun reyna ađ halda áfram međ ţví ađ hreinsa skemmdar disksneiđar"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Villa"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Lokauppsetning"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Lokauppsetning"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Til hamingju!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Innsetning"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Bćta viđ notanda"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Forsníđ disksneiđ %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Skemmd afritsskrá"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Skemmd afritsskrá"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Skemmd afritsskrá"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Val á pakkahóp"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Fjartengd prentröđ"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Hvernig mús ertu međ?"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Reyndu aftur"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Hvernig mús ertu međ?"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "Ákveđa rótarlykilorđ"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Hvađa lyklaborđsuppsetningu viltu?"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Smelltu á disksneiđ"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Veldu pakkana sem ţú vilt setja inn"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Hvernig mús ertu međ?"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Skemmd afritsskrá"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Geiri"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Notandanafn:"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Hvernig mús ertu međ?"
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Nota fínstillingar á hörđum disk(um)"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-#, fuzzy
-msgid "What"
-msgstr "Augnablik"
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "stig"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "stig"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Stillingar kjarnaeininga:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Uppsetning"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Veldu pakkana sem ţú vilt setja inn"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Veldu pakkana sem ţú vilt setja inn"
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Setja upp skráarkerfi"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Upplýsingar"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Hvađa rađtengi er mótaldiđ tengt viđ?"
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Netstillingar"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Hvernig mús ertu međ?"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Endurheimta frá skrá"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Annađ"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Setja kerfiđ inn"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Endurheimta frá skrá"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Endurheimta frá skrá"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Sérlagađa"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "Hjálp"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "netţjónn"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Endurstćkka"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Texta"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Veldu pakka til ađ setja inn"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Skemmd afritsskrá"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Skemmd afritsskrá"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Skemmd afritsskrá"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Vista í skrá"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Hvernig mús ertu međ?"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Veldu pakkana sem ţú vilt setja inn"
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Netstillingar"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Netstillingar"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Uppsetning"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Uppsetning"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Innsetning %s brást sökum eftirfarandi villu:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "%s fannst ekki"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Búiđ"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Forsníđ"
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Undirbý innsetningu"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "takmarka"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Forsníđa disksneiđar"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-#, fuzzy
-msgid "Uninstall Fonts"
-msgstr "Fjarlćgji RPM pakkana"
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Uppsetning"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Tengipunktur"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Veldu ţćr disksneiđar sem á ađ forsníđa"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "tćki"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Prentari"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Setja kerfiđ inn"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Veljiđ skrá"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Innsetning"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Hćtta innsetningu"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-#, fuzzy
-msgid "Internet Connection Sharing"
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-
-#: ../../standalone/drakgw_.c:143
-#, fuzzy
-msgid "disable"
-msgstr "Tafla"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-#, fuzzy
-msgid "reconfigure"
-msgstr "Stilla X"
-
-#: ../../standalone/drakgw_.c:146
-#, fuzzy
-msgid "Disabling servers..."
-msgstr "Leita ađ tćkjum..."
-
-#: ../../standalone/drakgw_.c:154
-#, fuzzy
-msgid "Internet connection sharing is now disabled."
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-
-#: ../../standalone/drakgw_.c:168
-#, fuzzy
-msgid "enable"
-msgstr "Tafla"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:180
-#, fuzzy
-msgid "Internet connection sharing is now enabled."
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:228
-#, fuzzy, c-format
-msgid "Interface %s"
-msgstr "Endursníđ..."
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Skjár ekki skilgreindur"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Lokauppsetning"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Sel stillingar"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "Vistfang SMB ţjóns"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-#, fuzzy
-msgid "Firewalling configuration detected!"
-msgstr "Les uppsetningarskrá"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:340
-#, fuzzy
-msgid "Configuring..."
-msgstr "Uppsetning"
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:378
-#, fuzzy, c-format
-msgid "Problems installing package %s"
-msgstr "Set inn pakka %s"
-
-#: ../../standalone/drakgw_.c:672
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:691
-#, fuzzy
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/drakgw_.c:696
-#, fuzzy
-msgid "Internet connection sharing configuration"
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/drakgw_.c:703
-#, 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 "Veldu prenttengingu"
-
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netstillingar"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "tókst ekki ađ tengja: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Vélarheiti:"
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "Endursníđ..."
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Tegund: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gátt:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "Endursníđ..."
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Setja upp prentara"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Uppsetning"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Driver"
-msgstr "Sem ţjón"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "Endursníđ..."
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr ""
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Stilla nettengingu"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Prófunar skilgreining"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Nafn tengingar"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "Uppsetning"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Virk"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Virk"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Veldu prenttengingu"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Nafn tengingar"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gátt"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Stilli öryggisţrep"
-
-#: ../../standalone/drakxconf_.c:47
-#, fuzzy
-msgid "Control Center"
-msgstr "Nafn tengingar"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Veldu forritiđ sem ţú vilt nota"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Kanadískt (Quebec)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Íslenskt"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "rađtengd"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:29
-#, fuzzy
-msgid "Please, choose your keyboard layout."
-msgstr "Hvađa lyklaborđsuppsetningu viltu?"
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
-
-#: ../../standalone/livedrake_.c:24
-#, fuzzy
-msgid "Change Cd-Rom"
-msgstr "Breyta upplausn"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr ""
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-#, fuzzy
-msgid "/File/_New"
-msgstr "Skrár:\n"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:106
-#, fuzzy
-msgid "/File/-"
-msgstr "Skrár:\n"
-
-#: ../../standalone/logdrake_.c:108
-#, fuzzy
-msgid "/_Options"
-msgstr "Upplýsingar"
-
-#: ../../standalone/logdrake_.c:109
-#, fuzzy
-msgid "/Options/Test"
-msgstr "Upplýsingar"
-
-#: ../../standalone/logdrake_.c:110
-#, fuzzy
-msgid "/_Help"
-msgstr "Hjálp"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr ""
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "USB mús"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "Prófa tengi"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-#, fuzzy
-msgid "search"
-msgstr "Leita"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:191
-#, fuzzy
-msgid "matching"
-msgstr "forsníđ"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:196
-#, fuzzy
-msgid "Choose file"
-msgstr "Veldu ađgerđ"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:211
-#, fuzzy
-msgid "Content of the file"
-msgstr "Nafn tengingar"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, fuzzy, c-format
-msgid "please wait, parsing file: %s"
-msgstr "Undirbý innsetningu"
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Uppsetning"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "skuggi"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "Endursníđ..."
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "forsníđ"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Uppsetning"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-#, fuzzy
-msgid "Save as.."
-msgstr "netţjónn"
-
-#: ../../standalone/mousedrake_.c:49
-#, fuzzy
-msgid "Please, choose the type of your mouse."
-msgstr "Hvernig mús ertu međ?"
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "ekkert serial_usb fannst\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Herma eftir ţriđja hnapp?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Veldu skjákort"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Rćsitćki"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "Les uppsetningarskrá"
-
-#: ../../standalone/tinyfirewall_.c:44
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "Les uppsetningarskrá"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Veldu tungumál"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Veldu innsetningarflokk"
-
-#: ../../steps.pm_.c:16
-#, fuzzy
-msgid "Hard drive detection"
-msgstr "Nota fínstillingar á hörđum disk(um)"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Tilgreindu mús"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Veldu lyklaborđ"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr ""
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Setja upp skráarkerfi"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Forsníđa disksneiđar"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Veldu pakka til ađ setja inn"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Setja kerfiđ inn"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Bćta viđ notanda"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Stilla nettengingu"
-
-#: ../../steps.pm_.c:28
-#, fuzzy
-msgid "Configure services"
-msgstr "Setja upp prentara"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Setja inn rćsihlađara"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Búa til rćsidiskling"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Stilla X"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Setja kerfiđ inn"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Hćtta innsetningu"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Villa viđ ađ opna %s til skriftar: %s"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Netstillingar"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Undirbý innsetningu"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer (client)"
-msgstr "Viđföng NetWare prentara"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Office"
-msgstr "tćki"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Gnome Workstation"
-msgstr "Upplýsingar"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Workstation"
-msgstr "Upplýsingar"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "KDE Workstation"
-msgstr "Upplýsingar"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - Video"
-msgstr "Margmiđlun"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Tools to ease the configuration of your computer"
-msgstr "Viltu prófa skilgreininguna"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - Sound"
-msgstr "Margmiđlun"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Leiđbeiningar"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet station"
-msgstr "Sel stillingar"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia station"
-msgstr "Margmiđlun"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "Uppsetning"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Office Workstation"
-msgstr "Upplýsingar"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Server"
-msgstr "netţjónn"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer server"
-msgstr "Viđföng NetWare prentara"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Game station"
-msgstr "Leiđbeiningar"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - Graphics"
-msgstr "Margmiđlun"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-
-#: ../../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:999
-msgid "Archiving, emulators, monitoring"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet gateway"
-msgstr "Endursníđ..."
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - CD Burning"
-msgstr "Margmiđlun"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Scientific Workstation"
-msgstr "Upplýsingar"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Tengipunktur"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "Búiđ"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Veldu nýja stćrđ"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Viđföng fyrir fjartengda lpd prentara"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Ţú getur núna gefiđ upp viđföng fyrir %s eininguna."
-
-#~ msgid "Low"
-#~ msgstr "Lágt"
-
-#~ msgid "Medium"
-#~ msgstr "Miđlungs"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-
-#~ msgid "mount failed"
-#~ msgstr "tókst ekki ađ tengja"
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Margmiđlun"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "F. snillinga"
-
-#, fuzzy
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Hérna velur ţú tímasvćđiđ sem gildir ţar sem ţú býrđ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Linux notar GMT eđa \"Greenwich Mean Time\" og breytir ţeim tíma\n"
-#~ "síđan í stađartíma samkvćmt ţví tímasvćđi sem ţú velur."
-
-#, fuzzy
-#~ msgid "Connect to Internet"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Hvađa disk viltu fćra til?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Veldu pakkana sem ţú vilt setja inn"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Upplýsingar"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Upplýsingar"
-
-#, fuzzy
-#~ msgid "authentification"
-#~ msgstr "Auđkenning"
-
-# ## skrytid
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Sjálfvirk tenging aukatćkja"
-
-#~ msgid "Active"
-#~ msgstr "Virk"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Nei"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Prentari af gerđinni \"%s\" fannst á "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Stađbundiđ prenttćki"
-
-#, fuzzy
-#~ msgid "Printer Device"
-#~ msgstr "Prenttćki:"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Fjartengd prentröđ"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Fjartengd prentröđ"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Veldu ţá stćrđ sem ţú vilt setja inn"
-
-#~ msgid "Total size: "
-#~ msgstr "Heildarstćrđ: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Vinsamlegast hinkriđ, "
-
-#~ msgid "Total time "
-#~ msgstr "Heildar tími "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Nota ţá X uppsetningu sem er til?"
-
-#, fuzzy
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Viđ hvađa tćki er prentarinn ţinn tengdur\n"
-#~ " (Athugađu ađ /dev/lp0 er ţađ sama og LPT1:)?\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "Hvađa disk viltu fćra til?"
-
-#~ msgid "New"
-#~ msgstr "Ný"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Fjarlćgja"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Smelltu á disksneiđ"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Óljóst (%s), vertu nákvćmari\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (sjálfgefiđ %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Ţitt val? (sjálfgefiđ %s sláđu inn `none' fyrir engan) "
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Ef um algengar ađstćđur er ađ rćđa ţá er rétt svar \"/dev/hda\"\n"
-#~ "(ađal diskurinn á ađal IDE rásinni)."
-
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Viltu prófa skilgreininguna"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Viltu prófa skilgreininguna"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Viltu prófa skilgreininguna"
-
-#, fuzzy
-#~ msgid ""
-#~ "The following printers are configured.\n"
-#~ "You can add some more or modify the existing ones."
-#~ msgstr ""
-#~ "Hérna eru núverandi stillingar LILO .\n"
-#~ "Ţú getur bćtt viđ fleirum eđa breytt ţessum."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Veldu nýja stćrđ"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Hvernig mús ertu međ?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Veldu tungumál til ađ nota viđ innsetningu og kerfisnotkun."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Veldu sniđ sem passar viđ lyklaborđiđ ţitt frá listanum ađ ofan"
-
-#, fuzzy
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Eftir óskum: Ef ţú hefur ţó nokkra reynslu međiar 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"
-#~ "\".\n"
-
-#, fuzzy
-#~ 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 ""
-#~ "Hérna geturđu stillt innhringitengingu. Ef ţú ert ekki viss um hvađ ţú "
-#~ "ţarft,\n"
-#~ "hafđu ţá samband viđ ţjónustuveituna til ađ fá ţćr upplýsingar."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Sláđu inn:\n"
-#~ "\n"
-#~ " - IP vistfang: Ef ţú veist ekki hvađ ţađ er, spurđu ţá kerfisstjóra eđa "
-#~ "fulltrúa hjá ţjónustuveitu.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Netsía: \"255.255.255.0\" er mjög algeng sía. Ef ţú ert ekki viss "
-#~ "hvađa\n"
-#~ "síu skal nota, spurđu ţá kerfisstjóra eđa fulltrúa ţjónustuveitu.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Sjálfvirkt vistfang: Ef ţú ert á neti sem notar bootp eđa dhcp "
-#~ "reglurnar, veldu \n"
-#~ "ţá ţennan kost. Í slíkum tilfellum ţarf ekki ađ gefa upp neitt \"IP "
-#~ "vistfang\". Eins \n"
-#~ "og međ ađrar stillingar, ţá vćri ekki slćm hugmynd ađ hafa samband viđ "
-#~ "kerfisstjóra.\n"
-
-#, 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 ""
-#~ "Ef NIS er notađ á netinu sem ţú ert á, veldu ţá \"Nota NIS\". Ef ţú ert "
-#~ "ekki\n"
-#~ "viss hvort ţađ sé notađ, spurđu ţá kerfisstjóra netsins."
-
-#~ 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 ""
-#~ "Hérna geturđu stillt innhringitengingu. Ef ţú ert ekki viss um hvađ ţú "
-#~ "ţarft,\n"
-#~ "hafđu ţá samband viđ ţjónustuveituna til ađ fá ţćr upplýsingar."
-
-#~ 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 ""
-#~ "Ef ţú notar einhverskonar sel (e. proxy), stilltu ţau ţá núna. Ef ţú "
-#~ "veist ekki\n"
-#~ "hvort ţú ţarft ađ still ţau, hafđu ţá samband viđ kerfisstjóra eđa "
-#~ "ţjónustuveitu."
-
-#, fuzzy
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Ţú getur núna náđ í dulritunarhugbúnađ ef Internet tengingin ţín er rétt\n"
-#~ "upp sett. Fyrst velur ţú ţá spegilvél ţađan sem ţú vilt sćkja "
-#~ "hugbúnađinn\n"
-#~ "og síđan velur ţú ţá pakka sem ţú vilt sćkja og setja inn.\n"
-#~ "\n"
-#~ "Athugađu ađ velja spegilvél og dulritunarhugbúnađ samkvćmt ţví sem lög "
-#~ "leyfa\n"
-#~ "á Íslandi eđa hvar sem ţú ert núna ađ nota tölvuna."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Hérna býrđu til rótarlykilorđ fyrir Mandrake Linux kerfiđ (lykilorđ\n"
-#~ "ofurpaursins :-). Ţú verđur ađ slá lykilorđiđ inn tvisvar til ađ \n"
-#~ "stađfesta ţađ (svo ţađ verđi örugglega ţađ lykilorđ sem ţú ćtlast til).\n"
-#~ "\n"
-#~ "\n"
-#~ "Rótin (root) er stjórnandi kerfisins (kerfisstjóri) og eini notandinn\n"
-#~ "sem breytt getur stýriskrám. Veldu lykilorđiđ ţví vandlega. Óheimil\n"
-#~ "notkun á rótarađgangi ađ kerfinu getur orđiđ mjög skađleg uppsetningu\n"
-#~ "og gögnum í kerfinu ásamt öđrum tölvum sem eru tengdar viđ ţessa.\n"
-#~ "Lykilorđiđ ćtti ađ vera hćfileg blanda af bókstöfum og tölustöfum og\n"
-#~ "minnst 8 stafa langt. Ţú ćttir *ekki* ađ skrifa ţađ niđur og ćttir\n"
-#~ "ţví ekki ađ hafa ţađ of langt eđa of flókiđ ţví ţá eykst hćttan á\n"
-#~ "á ţví ađ ţú gleymir ţví. Ţú ţarft ađ geta munađ hvađa lykilorđ\n"
-#~ "gefur rótarađgang til ađ geta breytt uppsetningu og stillingum."
-
-# ## skrytid
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-
-# ## skrytid
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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 main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Linear: Generate linear sector addresses instead of\n"
-#~ "sector/head/cylinder addresses. Linear addresses are translated at run\n"
-#~ "time and do not depend on disk geometry. Note that boot disks may not be\n"
-#~ "portable if \"linear\" is used, because the BIOS service to determine "
-#~ "the\n"
-#~ "disk geometry does not work reliably for floppy disks. When using\n"
-#~ "\"linear\" with large disks, /sbin/lilo may generate references to\n"
-#~ "inaccessible disk areas, because 3D sector addresses are not known\n"
-#~ "before boot time.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Compact: Tries to merge read requests for adjacent sectors into a\n"
-#~ "single read request. This drastically reduces load time and keeps the\n"
-#~ "map smaller. Using \"compact\" is especially recommended when booting "
-#~ "from\n"
-#~ "a floppy disk.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ " * <number>: use the corresponding text mode."
-
-# ## skrytid
-#, fuzzy
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "LILO main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Linear: Generate linear sector addresses instead of\n"
-#~ "sector/head/cylinder addresses. Linear addresses are translated at run\n"
-#~ "time and do not depend on disk geometry. Note that boot disks may not be\n"
-#~ "portable if \"linear\" is used, because the BIOS service to determine "
-#~ "the\n"
-#~ "disk geometry does not work reliably for floppy disks. When using\n"
-#~ "\"linear\" with large disks, /sbin/lilo may generate references to\n"
-#~ "inaccessible disk areas, because 3D sector addresses are not known\n"
-#~ "before boot time.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Compact: Tries to merge read requests for adjacent sectors into a\n"
-#~ "single read request. This drastically reduces load time and keeps the\n"
-#~ "map smaller. Using \"compact\" is especially recommended when booting "
-#~ "from\n"
-#~ "a floppy disk.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ " * <number>: use the corresponding text mode."
-
-#, fuzzy
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Nú er kominn tími til ađ stilla X, sem er undirstađa Linux notenda- \n"
-#~ "viđmótsins (GUI). Til ađ X virki, ţá ţarf ađ stilla skjákortiđ\n"
-#~ "og velja viđkomandi skjá. Ţessi atriđi er ţó oftast stillt\n"
-#~ "sjálfkrafa ţannig ađ ţú gćtir ađeins ţurft ađ stađfesta ţađ\n"
-#~ "sem Mandrake Linux vill gera :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Ţegar uppsetningu X er lokiđ ţá verđur X ţjónninn rćstur (nema\n"
-#~ "ţú biđjir DrakX ađ gera ţađ ekki) svo ţú getir stađfest ađ\n"
-#~ "stillingarnar séu viđunnandi. Ef ţú ert ekki sátt(ur) viđ ţćr X\n"
-#~ "stillingar sem eru valdar, ţá getur ţú breytt ţeim ađ eigin vild."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Ef eitthvađ kemur upp á í X, notađu ţá ţessar stillingar til ađ stilla\n"
-#~ "ţađ aftur."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Ef ţú vilt myndrćnt innstimplunarviđmót, veldu ţá \"Já\". Ef ekki, veldu\n"
-#~ "ţá \"Nei\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Tölvan verđur núna endurrćst.\n"
-#~ "\n"
-#~ "Mandrake Linux verđur sjálfkrafa keyrt upp. Ef ţú vilt hinsvegar\n"
-#~ "keyra upp eitthvađ annađ stýrikerfi, lestu ţá leiđbeiningarnar\n"
-#~ "sem fylgja."
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Skrifa /etc/fstab"
-
-#~ msgid "Restore from floppy"
-#~ msgstr "Endurheimta frá diskling"
-
-#~ msgid "Format all"
-#~ msgstr "Forsníđ"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Eftir forsníđingu allra sneiđa"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "munu öll gögn á ţessum disksneiđum tapast"
-
-#~ msgid "Reload"
-#~ msgstr "Endurhlađa"
-
-#~ msgid "Error reading file $f"
-#~ msgstr "Villa viđ lestur skráarinnar $f"
-
-#, fuzzy
-#~ msgid "ADSL configuration"
-#~ msgstr "Uppsetning"
-
-#~ msgid "Remote queue"
-#~ msgstr "Fjartengd prentröđ"
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Fjartengd prentröđ"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Nafn léns"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Stađbundinn prentari"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Netstillingar"
-
-#, fuzzy
-#~ msgid "Profile "
-#~ msgstr "tókst ekki ađ tengja: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Sjálfgefiđ"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#, fuzzy
-#~ msgid "Adapter"
-#~ msgstr "Uppfćrsla"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "USB mús"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Já, prenta ASCII prufusíđu"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Já, prenta PostScript prufusíđu"
-
-#~ msgid "Paper Size"
-#~ msgstr "Pappírsstćrđ"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Koma blađsíđu út eftirá?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint rekilvalkostir"
-
-#~ msgid "Color depth options"
-#~ msgstr "Stillingar á litadýpt"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Afstalla texta (tröppurnar)?"
-
-#, fuzzy
-#~ 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 ""
-#~ "Allar prentrađir (sem taka viđ prentverkum) ţurfa heiti\n"
-#~ "(oft bara lp) og möppu. Hvađa heiti og möppu viltu nota fyrir\n"
-#~ "ţessa prentröđ?"
-
-#, fuzzy
-#~ 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 ""
-#~ "Allar prentrađir (sem taka viđ prentverkum) ţurfa heiti\n"
-#~ "(oft bara lp) og möppu. Hvađa heiti og möppu viltu nota fyrir\n"
-#~ "ţessa prentröđ?"
-
-#, fuzzy
-#~ msgid "Name of queue"
-#~ msgstr "Heiti prentrađar:"
-
-#, fuzzy
-#~ msgid "Spool directory"
-#~ msgstr "Mappa prentrađar:"
-
-#, fuzzy
-#~ msgid "Disable"
-#~ msgstr "Tafla"
-
-#, fuzzy
-#~ msgid "Enable"
-#~ msgstr "Tafla"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Ef ţú vilt gera kerfiđ öruggara ţá ćttir ţú ađ velja \"Nota skuggaskrá\" "
-#~ "og\n"
-#~ "\"Nota MD5 lykilorđ\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Ef NIS er notađ á netinu sem ţú ert á, veldu ţá \"Nota NIS\". Ef ţú ert "
-#~ "ekki\n"
-#~ "viss hvort ţađ sé notađ, spurđu ţá kerfisstjóra netsins."
-
-#~ msgid "yellow pages"
-#~ msgstr "Gular síđur (yp)"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Uppsetning"
-
-#, fuzzy
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Hvađa disk viltu fćra til?"
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr "Uppsetning"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Veljiđ skrá"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Uppsetning: Bćta slóđ viđ"
-
-#, fuzzy
-#~ msgid "Boot style configuration"
-#~ msgstr "Lokauppsetning"
-
-#, fuzzy
-#~ msgid "Automatic dependencies"
-#~ msgstr "Athuga tengsli milli pakka"
-
-#, fuzzy
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Stilla X"
-
-#, fuzzy
-#~ msgid "Create a boot floppy"
-#~ msgstr "Búa til rćsidiskling"
-
-#, fuzzy
-#~ msgid "Choice"
-#~ msgstr "tćki"
-
-#, fuzzy
-#~ msgid "gMonitor"
-#~ msgstr "Skjár"
-
-# ## skrytid
-#, 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 ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ " - Use hard drive optimizations: This option can improve hard disk\n"
-#~ "accesses but is only for advanced users, it can ruin your hard drive if\n"
-#~ "used incorrectly. Use it only if you know how.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Choose security level: You can choose a security level for your\n"
-#~ "system.\n"
-#~ " Please refer to the manual for more information.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM size if needed: In some cases, Linux is unable to\n"
-#~ "correctly detect all the installed RAM on some systems. If this is the\n"
-#~ "case, specify the correct quantity. Note: a difference of 2 or 4 Mb is\n"
-#~ "normal.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Removable media automounting: If you would prefer not to manually\n"
-#~ "mount removable drives (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-#~ "\"umount\", select this option. \n"
-#~ "\n"
-#~ "\n"
-#~ " - Enable Num Lock at startup: If you want Number Lock enabled after\n"
-#~ "booting, select this option (Note: Num Lock will still not work under\n"
-#~ "X)."
-
-#, fuzzy
-#~ msgid "Internet/Network access"
-#~ msgstr "Endursníđ..."
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Ýmislegt"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Ýmsar spurningar:"
-
-#, fuzzy
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Stilli öryggisţrep"
-
-#, fuzzy
-#~ msgid "toot"
-#~ msgstr "Rót"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Ađal nafnamiđlari"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Vara nafnamiđlari"
-
-#, fuzzy
-#~ msgid "using module"
-#~ msgstr "Hringja inn međ mótaldi"
-
-#, fuzzy
-#~ msgid "Development, Database"
-#~ msgstr "Forritun"
-
-#, fuzzy
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Hverju viltu bćta viđ?"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Reyna ađ finna mótald?"
-
-#, fuzzy
-#~ msgid "Configure an ISDN connection"
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Configure local network"
-#~ msgstr "Stilla nettengingu"
-
-#, fuzzy
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr "LAN netuppsetning er ţegar til stađar. Hvađ viltu gera?"
-
-#, fuzzy
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Uppsetning"
-
-#, fuzzy
-#~ msgid "Internet Tools"
-#~ msgstr "Sel stillingar"
-
-#, fuzzy
-#~ msgid "Development C/C++"
-#~ msgstr "Forritun"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Tilgreina tímasvćđi"
-
-#, fuzzy
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Viđföng NetWare prentara"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(getur skađađ vistuđ gögn)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Kveikja á NUMLOCK viđ eftir rćsingu"
-
-#, fuzzy
-#~ msgid "Confirm Password"
-#~ msgstr "Lykilorđ"
-
-#~ msgid "DNS server:"
-#~ msgstr "Nafnamiđlari:"
-
-#~ msgid "Gateway device:"
-#~ msgstr "Gátt (tćkiđ):"
-
-#, fuzzy
-#~ msgid "default"
-#~ msgstr "Sjálfgefiđ"
-
-#, fuzzy
-#~ msgid "What is your system used for?"
-#~ msgstr "Á hvađa tímasvćđi ertu?"
-
-#, fuzzy
-#~ msgid "Select the size you want to install"
-#~ msgstr "Veldu ţá stćrđ sem ţú vilt setja inn"
-
-#~ msgid "Customized"
-#~ msgstr "Sérlagađa"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Nota skuggaskrá"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Nota MD5 lykilorđ"
-
-#~ msgid "Package"
-#~ msgstr "Pakka"
-
-#~ msgid "Tree"
-#~ msgstr "Tré"
-
-#~ msgid "Sort by"
-#~ msgstr "Rađa eftir"
-
-#~ msgid "Category"
-#~ msgstr "Flokk"
-
-#~ msgid "Installed packages"
-#~ msgstr "Pakkar sem eru inni"
-
-#~ msgid "Available packages"
-#~ msgstr "Tiltćkir pakkar"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Sýna ađeins laufblöđ"
-
-#~ msgid "Expand all"
-#~ msgstr "Opna allt"
-
-#~ msgid "Collapse all"
-#~ msgstr "Loka öllu"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Bćta slóđ pakkanna viđ"
-
-#~ msgid "Update location"
-#~ msgstr "Uppfćrsluslóđ"
-
-#~ msgid "Find Package"
-#~ msgstr "Finna pakka"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Finna pakka sem inniheldur skrá"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Skipta á milli innsettra og tiltćkra"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Athuga tengsli milli pakka"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Eftirfarandi pakkar verđa fjarlćgđir"
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Hvađa pakka ertu ađ leita ađ?"
-
-#~ msgid "No match"
-#~ msgstr "Ekkert fannst"
-
-#~ msgid "No more match"
-#~ msgstr "Fleira fannst ekki"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake er núna í ``lágminnis'' ham.\n"
-#~ "Ţađ verđur eyrt aftur til ađ leyfa skráarleit."
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Hvađa skrá ertu ađ leita ađ?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Hverju ertu ađ leita ađ?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Gefđu upp nafn (t.d. `extra', `commercial')"
-
-#~ msgid "Directory"
-#~ msgstr "Mappa"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Ekkert geisladrif til stađar (ekkert í /mnt/cdrom)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "Slóđ í möppu sem inniheldur RPM pakka"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Fyrir FTP og HTTP, ţá ţarftu ađ gefa upp stađsetningu hdlist.\n"
-#~ "Stađsetningin verđur ađ vera miđuđ viđ slóđina hér ađ ofan."
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Vinsamlega tilgreindu eftirfarandi"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s er nú ţegar í notkun."
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Uppfćri RPM gagnaskrána"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Fjarlćgji nafniđ %s"
-
-#~ msgid "Finding leaves"
-#~ msgstr "Leita ađ \"laufblöđum\"."
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Ţessi leit mun taka dálítinn tíma"
-
-#, fuzzy
-#~ msgid "ECI modem"
-#~ msgstr "F. snillinga"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "Viđ hvađa rađtengi er músin ţín tengd?"
-
-#~ msgid "Czech"
-#~ msgstr "Tékkneskt"
-
-#~ msgid "Slovakian"
-#~ msgstr "Slóvakískt"
-
-#, fuzzy
-#~ msgid "Reconfigure local network"
-#~ msgstr "Endurstilla netstillingar núna"
-
-#, fuzzy
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Nafn tengingar"
-
-#, fuzzy
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Ţýskt"
-
-#, fuzzy
-#~ msgid "What do you wish to do?"
-#~ msgstr "Hvađ viltu gera?"
-
-#, fuzzy
-#~ msgid "Install/Rescue"
-#~ msgstr "Innsetning"
-
-#, fuzzy
-#~ msgid "Rescue"
-#~ msgstr "Endurstćkka"
-
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Hvađa sneiđtegund viltu?"
-
-#, fuzzy
-#~ 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 Mandrake Linux "
-#~ "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"
-#~ msgstr ""
-#~ "Veldu \"Innsetning\" ef ţađ eru engar fyrri útgáfur af Linux á tölvunni\n"
-#~ "eđa ef ţú vilt nota fleiri en eina dreifingu af Linux.\n"
-#~ "\n"
-#~ "Veldu \"Uppfćrsla\" ef ţú vilt uppfćra fyrri innsetningu af Linux "
-#~ "Mandrake:\n"
-#~ "%s eđa %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Ráđlagt: Ef ţú hefur aldrei sett Linux inn áđur.\n"
-#~ "\n"
-#~ " - Eftir óskum: Ef ţú hefur ţó nokkra reynslu međiar 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"
-#~ " - 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"
-#~ "\".\n"
-
-# ***********************************************
-# *** Hér fyrir neđan er ţýđingin mín, en ***
-# *********** ég fór líka ađeins yfir ţađ sem var ************
-# *** ţýtt fyrir ofan. :-) - Ţórarinn ***
-# *** (Ég klára ţetta seinnipartinn á morgun) ***
-# ***********************************************
-#~ 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 Mandrake Linux 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 ""
-#~ "Ţessi hluti hefur ađ geyma uppsetningu á stađarnetstengingu\n"
-#~ "(LAN) eđa mótaldstengingu.\n"
-#~ "\n"
-#~ "Ef ţú velur \"Stađarnetstenging\" ţá mun DrakX\n"
-#~ "reyna ađ finna Ethernet netkortiđ í vélinni. Í flestum tilvikum\n"
-#~ "finnast PCI netkort og er ţá kortiđ strax tilbúiđ fyrir netuppsetningu.\n"
-#~ "Ef netkortiđ ţitt er hinsvegar ISA kort ţá er sjálfvirk uppsetning á ţví\n"
-#~ "ekki möguleg og ţú ţarft ţví ađ velja rekil af listanum sem birtist.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ef ţú ert međ SCSI kort ţá getur ţú látiđ leita ađ ţví fyrst en síđan\n"
-#~ "gefiđ upp viđföng ef ţađ finnst ekki. Viđföngin sem ţú ţarft ađ nota\n"
-#~ "ćttir ţú ađ finna í leiđbeiningunum sem komu međ kortinu.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Ef ţú ert ađ setja Mandrake Linux á tölvu sem er hluti af stađarneti\n"
-#~ "ţá ćttir ţú ađ fá nauđsynlegar upplýsingar fyrir tengingu hjá "
-#~ "kerfisstjóra.\n"
-#~ "Upplýsingarnar sem ţú ţarft til ađ tengjast stađarneti međ TCP/IP eru:\n"
-#~ "IP vistfang, undirnetssía (netsía) og tölvunafn. Ef ţú ert ađ\n"
-#~ "setja upp einkanet ţá getur ţú sjálf(ur) ákveđiđ hvađa vistfang,\n"
-#~ "netsíu og nafn ţú notar á tölvuna.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ef ţú velur \"Mótaldstenging\" ţá verđur mótaldstengingin gerđ klár.\n"
-#~ "DrakX mun reyna ađ finna mótaldiđ ţitt en ef sú leit ber ekki árangur\n"
-#~ "ţá verđur ţú sjálf(ur) ađ velja rađtengiđ (COM port) sem mótaldiđ er\n"
-#~ "tengt viđ."
-
-#, fuzzy
-#~ 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"
-#~ "\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"
-#~ "\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."
-#~ msgstr ""
-#~ "Linux getur notađ margar gerđir prentara. Prentararnir krefjast\n"
-#~ "mismunandi uppsetninga.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ef prentarinn ţinn er tengdur beint viđ tölvuna veldu ţá \n"
-#~ "\"Stađbundinn prentari\". Ţú ţarft síđan ađ tilgreina viđ\n"
-#~ "hvađa tengi prentarinn er tengdur og velja viđeigandi síu.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ef ţú vilt hafa ađgang ađ prentara sem tengdur er viđ fjarlćga UNIX vél\n"
-#~ "(eđa Windows NT međ LPD) ţá verđur ţú ađ velja \"Fjartengdur prentari\".\n"
-#~ "Ţú ţarft ekki ađ gefa upp notandanafn eđa lykilorđ en ţarft ađ vita \n"
-#~ "nafniđ á prentröđinni á ţeim ţjón.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ef ţú vilt hafa ađgang ađ SMB prentara (prentara sem er tengdur viđ\n"
-#~ "fjarlćga Windows 9x/NT vél), ţá ţarftu ađ gefa upp SMB nafn ţjónsins\n"
-#~ "sem oftast er sama og TCP/IP nafn (en ţarf ekki ađ vera). Einnig ţarftu\n"
-#~ "IP vistfang, notandanafn, lykilorđ, nafn vinnuhóps og auđvitađ sjálft\n"
-#~ "nafn prentarans. Sama gildir um NetWare prentara, nema ţú ţarft\n"
-#~ "ekkert vinnuhópsnafn."
-
-#, 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 ""
-#~ "Ţađ er stranglega mćlt međ ţví ađ ţú svarir \"Já\" hérna. Ef ţú setur\n"
-#~ "Microsoft Windows inn síđar ţá skrifar ţađ yfir rćsihluta disksins og\n"
-#~ "gerir ţér ţar međ ókleyft ađ rćsa Linux nema ţú hafir veriđ búin(n)\n"
-#~ "ađ útbúa rćsidiskling."
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Eyđa breytingum?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Hvernig mús ertu međ?"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "Sjálfvirk upplausn"
-
-#~ 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 ""
-#~ "Til ađ finna mögulegar upplausnir munu nokkrar verđa prófađar.\n"
-#~ "Skjárinn ţinn mun blikka...\n"
-#~ "Ţú getur slökkt á honum ef ţú vilt, tölvan flautar ţegar ţví er lokiđ"
-
-#~ 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?"
-#~ msgstr ""
-#~ "Ég get reynt ađ finna mögulegar upplausnir (t.d: 800x600).\n"
-#~ "Stundum getur tölvan frosiđ viđ ţađ.\n"
-#~ "Viltu prófa?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "Engar leyfilegar upplausnir fundust\n"
-#~ "Prófađu ađ velja annađ skjákort eđa skjá"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Sjálfvirk leit upplausna"
-
-#, fuzzy
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "ATI brautarmús"
-
-#, fuzzy
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "USB mús (3 eđa fleiri takkar)"
-
-#, fuzzy
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "USB mús (3 eđa fleiri takkar)"
-
-#, fuzzy
-#~ msgid "Apple USB Mouse"
-#~ msgstr "USB mús"
-
-#, fuzzy
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "USB mús (3 eđa fleiri takkar)"
-
-#, fuzzy
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "USB mús (3 eđa fleiri takkar)"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI brautarmús"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft brautarmús"
-
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech brautarmús"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB mús (3 eđa fleiri takkar)"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft útgáfa 2.1A eđa nýrri (rađtengd)"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (rađtengd)"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (rađtengd)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (rađtengd)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Almenn mús (rađtengd)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Microsoft samhćfđ (rađtengd)"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Almenn ţriggja hnappa mús (rađtengd)"
-
-#, fuzzy
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse"
-
-#~ msgid "nfs mount failed"
-#~ msgstr "tókst ekki ađ tengja nfs"
-
-#~ msgid "Cryptographic"
-#~ msgstr "Dulkóđun"
-
-#~ msgid "Show less"
-#~ msgstr "Sýna fćrri"
-
-#~ msgid "Show more"
-#~ msgstr "Sýna fleiri"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Hvađa lyklaborđsuppsetningu viltu?"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Viltu leita ađ PCMCIA kortun?"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Leita ađ %s kortum?"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Leita ađ PCI kortum?"
-
-#~ msgid "Searching root partition."
-#~ msgstr "Leita ađ rótardisksneiđ"
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr "%s: Ţetta er ekki rótardisksneiđ. Veldu ađra."
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# 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
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-# '\240' is 'á' (aacute) in cp437 encoding
-# '\224' is 'ö' (odiaeresis) in cp437 encoding.
-# '\221' is 'ć' (ae) in cp437 encoding
-# '\241' is 'í' (iacute) in cp437 encoding
-# '\242' is 'ó' (oacute) in cp437 encoding
-# '\230' is 'ý' (yacute) in cp437 encoding
-# '\243' is 'ú' (oacute) in cp437 encoding
-# there is no 'ţ' nor 'đ' in cp437; changed respectively to 'th' and 'd'
-#
-#~ 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 ""
-#~ "Velkomin(n) Ą LILO st˜rikerfisr‘sistj˘rann!\n"
-#~ "\n"
-#~ "Sl du   <TAB> til ad f  lista yfir m”gulega valkosti.\n"
-#~ "\n"
-#~ "Til r‘sa einn af theim, sl du inn nafnid og sĄdan   <ENTER>\n"
-#~ "eda bĄddu Ą %d sekŁndur thar til sj lfgefin r‘sing hefst.\n"
-#~ "\n"
-
-# 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 ""
-#~ "Velkomin(n) i SILO styrikerfisraesistjorann!\n"
-#~ "\n"
-#~ "Sladu a <TAB> til ad fa lista yfir moegulega valkosti.\n"
-#~ "\n"
-#~ "Til raesa einn af theim, sl du inn nafnid og sidan a <ENTER>\n"
-#~ "eda biddu i %d sekundur thar til sjalfgefin raesing hefst.\n"
-#~ "\n"
-
-#~ msgid "SILO main options"
-#~ msgstr "Stillingar SILO"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Hérna eru núverandi stillingar SILO .\n"
-#~ "Ţú getur bćtt viđ fleirum eđa breytt ţessum."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Ţetta nafn er nú ţegar í notkun."
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "Innsetning SILO brást sökum eftirfarandi villu:"
-
-#~ msgid "Shutting down"
-#~ msgstr "Slekk á tölvunni"
-
-#~ 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 ""
-#~ "Veldu \"Innsetning\" ef ţađ eru engar fyrri útgáfur af Linux á tölvunni\n"
-#~ "eđa ef ţú vilt nota fleiri en eina dreifingu af Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "Veldu \"Uppfćrsla\" ef ţú vilt uppfćra fyrri innsetningu af Linux "
-#~ "Mandrake:\n"
-#~ "5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios),\n"
-#~ "Gold 2000 eđa 7.0 (Air)."
-
-#~ msgid "Do you want to use LILO?"
-#~ msgstr "Viltu nota LILO?"
-
-#~ 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) getur rćst Linux og önnur stýrikerfi.\n"
-#~ "Venjulega finnast ţau viđ innsetningu á Linux. Ef ţú sérđ\n"
-#~ "ekki ţitt kerfi ţá getur ţú bćtt ţví viđ núna ásamt öđrum.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ef ţú vilt ekki ađ ađrir hafi ađgang ađ einhverju kerfanna ţá getur\n"
-#~ "ţú einfaldlega fjarlćgt ţađ núna (en ţá ţarf rćsidiskling til ađ rćsa "
-#~ "ţađ)."
-
-#~ 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ú ţegar flokkar hafa veriđ valdir skaltu velja hve marga \n"
-#~ "ţú vilt sitja inn. Ţú getur tilgreint litla eđa fulla \n"
-#~ "innsetningu af pökkum úr ţeim flokkum sem ţú valdir."
-
-#~ 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 ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Ráđlagt: Ef ţú hefur aldrei sett Linux inn áđur.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Eftir óskum: Ef ţú hefur ţó nokkra reynslu međiar 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"
-#~ "\"."
-
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "Sćki dulritunarpakkana"
-
-#~ msgid "Setup SCSI"
-#~ msgstr "Setja upp SCSI"
-
-#~ msgid "Local LAN"
-#~ msgstr "Stađarnet(LAN)"
-
-#~ msgid "Size: %s MB"
-#~ msgstr "Stćrđ: %s MB"
-
-#~ msgid "changing type of"
-#~ msgstr "breyti tegund"
-
-#~ msgid "After %s partition %s,"
-#~ msgstr "Eftir %s disksneiđar %s,"
-
-#~ msgid "linear"
-#~ msgstr "línulegan"
-
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "Nota línulegan ham (nauđsynlegt fyrir sum SCSI drif)"
-
-#~ msgid "User name:"
-#~ msgstr "Notandaheiti:"
-
-#~ msgid "Password:"
-#~ msgstr "Lykilorđ:"
-
-#~ msgid "developer"
-#~ msgstr "forritari"
-
-#~ msgid "beginner"
-#~ msgstr "byrjandi"
-
-#~ msgid ""
-#~ "Failed to create an HTP boot floppy.\n"
-#~ "You may have to restart installation and give ``%s'' at the prompt"
-#~ msgstr ""
-#~ "Smíđi HTP rćsidisks mistókst.\n"
-#~ "Ţú gćtir ţurft ađ endurrćsa og slá inn ``%s'' á skipanalínuna"
-
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "Ţađ ţarf ađ byrja innsetningu upp á nýtt međ nýju viđföngunum"
-
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "Ţađ ţarf ađ byrja innsetninguna upp á nýtt og rćsa međ diskling"
-
-#~ msgid ""
-#~ "Enter a floppy to create an HTP enabled boot\n"
-#~ "(all data on floppy will be lost)"
-#~ msgstr ""
-#~ "Settu diskling í drifiđ til ađ búa til HTP rćsingu\n"
-#~ "(Öll gögn á ţessum diskling tapast)"
-
-#~ msgid "A entry %s already exists"
-#~ msgstr "Nafniđ %s er ţegar í notkun"
-
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Veldu innsetningu eđa uppfćrslu"
-
-#~ msgid "What usage do you want?"
-#~ msgstr "Hverskyns notkun viltu?"
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
deleted file mode 100644
index 72cc40b1b..000000000
--- a/perl-install/share/po/it.po
+++ /dev/null
@@ -1,12041 +0,0 @@
-# Italian Translation of DrakX
-# Copyright (C) 1999 Mandrakesoft
-# Paolo Lorenzin <pasusu@tin.it>, 1999-2000.
-# Roberto Rosselli Del Turco <rosselli@ling.unipi.it>, 2000-2002
-# 8.0 Tech/Lang proofreading by Roberto Rosselli Del Turco <rosselli@ling.unipi.it>
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX 0.1\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-09 18:54+0100\n"
-"Last-Translator: Roberto Rosselli Del Turco <rosselli@ling.unipi.it>\n"
-"Language-Team: Italian <it@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configura tutte le testine indipendentemente"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Usa l'estensione Xinerama"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configura solo la scheda \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Configurazione multi-testine"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Il tuo sistema supporta la configurazione di piů testine.\n"
-"Cosa vuoi fare?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Scheda grafica"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Scegli una scheda grafica"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Scegli un server X"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Server X"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Scegli un driver X"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Driver X"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Che configurazione di XFree vuoi avere?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"La tua scheda puň avere accelerazione 3D hardware, ma solo con XFree %s.\n"
-"La tua scheda č supportata da XFree %s che potrebbe avere un miglior "
-"supporto in 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-"La tua scheda puň avere il supporto per l'accelerazione 3D hardware con "
-"XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s con accelerazione 3D hardware"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"La tua scheda puň avere l'accelerazione 3D hardware con XFree %s,\n"
-"NOTA CHE Č UN SUPPORTO SPERIMENTALE E POTREBBE BLOCCARE IL TUO COMPUTER."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s con accelerazione 3D hardware SPERIMENTALE"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 tua scheda puň avere accelerazione 3D hardware, ma solo con XFree %s,\n"
-"NOTA CHE Č UN SUPPORTO SPERIMENTALE E POTREBBE BLOCCARE IL TUO COMPUTER.\n"
-"La tua scheda č supportata da XFree %s che potrebbe avere un miglior "
-"supporto in 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installazione driver video)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configurazione di XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Scegli la quantitŕ di memoria della tua scheda grafica"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Scegli le opzioni per il server"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Scegli un monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"I due parametri critici sono la frequenza di refresh verticale, che č la "
-"frequenza\n"
-"con cui l'intero schermo č aggiornato, e ancora piů importante la frequenza\n"
-"di sincronia orizzontale, che č la frequenza con cui le line di scansione "
-"sono mostrate. \n"
-"\n"
-"Č MOLTO IMPORTANTE che tu non specifichi un tipo di monitor con una gamma di "
-"sincronia che vada oltre le capacitŕ del tuo monitor: potresti "
-"danneggiarlo.\n"
-"Se hai dubbi, scegli un settaggio prudente."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Frequenza di refresh orizzontale"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Frequenza di refresh verticale"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor non configurato"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Scheda grafica non ancora configurata"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Risoluzioni non ancora selezionate"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Vuoi provare la configurazione ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Attenzione: il test di questa scheda video puň bloccare il computer"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test della configurazione"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"prova a modificare alcuni parametri"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Si č verificato un errore:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Uscita in %d secondi"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Č il settaggio corretto?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Si č verificato un errore, prova a modificare alcuni parametri"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Risoluzione"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Seleziona risoluzione e profonditŕ di colore"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Scheda grafica: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Server XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Ancora"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modo Esperto"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mostra tutto"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Risoluzioni"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Tipo di tastiera: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Tipo di mouse: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Dispositivo del mouse: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Frequenza orizzontale del monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Refresh verticale del monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Scheda grafica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identificazione scheda grafica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Memoria scheda grafica: %s KB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Profonditŕ di colore: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Risoluzione: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Server XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Driver XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Sto preparando la configurazione di X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Cosa vuoi fare?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Cambia monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Cambia scheda grafica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Cambia opzioni server"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Cambia risoluzione"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostra informazioni"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Nuovo test"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Esci"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Mantieni le modifiche?\n"
-"La configurazione corrente č:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X all'avvio"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Posso configurare il tuo computer per eseguire X automaticamente all'avvio.\n"
-"Vuoi che X venga eseguito quando riavvierai?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Per favore rientra come %s per attivare le modifiche"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Per favore esci e usa Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 colori (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mila colori (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mila colori (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milioni di colori (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardi di colori (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 Kb"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 Kb"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mb o piů"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA standard, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatibile 8514, 1024x768 a 87 Hz interlacciato (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz interlacciato, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA estesa, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA non-interlacciato, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA alta frequenza, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequenza che raggiunge 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequenza che raggiunge 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequenza che raggiunge 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor che raggiunge 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor che raggiunge 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Primo settore della partizione di boot"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Primo settore del disco rigido (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Installazione di SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Dove vuoi installare il bootloader?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Installazione di LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO con menu in modo testo"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO con menu grafico"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Avvia da DOS/Windows (usando loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Opzioni principali del bootloader"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Bootloader da usare"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Installazione del bootloader"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Dispositivo di boot"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (non funziona con vecchi BIOS)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Compatta"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "compatta"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Modo video"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Ritardo prima di avviare con l'immagine predefinita"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Password"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Password (ripeti)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Limita opzioni della linea di comando"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "limita"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Pulisci /tmp ad ogni avvio"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Precisa la dimensione RAM se necessario (trovati %d Mb)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Abilita profili multipli"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Specifica dimensione RAM in Mb"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"L'opzione ''Limita opzioni della linea di comando'' č inutile\n"
-"senza una password"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Per favore prova di nuovo"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Le password non corrispondono"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Messaggio di init"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Attesa dell'Open Firmware"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Attesa per il boot del kernel"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Abilita l'avvio da CD-ROM?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Abilita boot OF?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Sistema operativo predefinito?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"Avete deciso di installare il bootloader su una partizione.\n"
-"Questo significa che avete giŕ un bootloader installato sul disco rigido dal "
-"quale effettuate il boot\n"
-"(ad esempio System Commander).\n"
-"\n"
-"Da quale disco effettuate il boot?"
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Queste sono le voci attuali.\n"
-"Puoi aggiungerne altre o cambiare quelle esistenti."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Aggiungi"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Fatto"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Modifica"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Che tipo di voce vuoi aggiungere"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Altro OS (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Altro OS (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Altro OS (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Immagine"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Aggiungi"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Lettura-scrittura"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabella"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Non sicuro"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Etichetta"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Predefinito"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Dimensioni Initrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "No Video"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Rimuovi voce"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Etichetta vuota non ammessa"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Dovete indicare l'immagine di un kernel"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Devi specificare una partizione radice"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Questa etichetta č giŕ stata usata"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Trovate %s interfacce %s"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Ne hai un'altra?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Hai una qualsiasi interfaccia %s?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "No"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Sě"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Vedi informazioni hardware"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Installazione driver per scheda %s %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modulo %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Quale driver %s dovrei provare?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"in alcuni casi, il driver %s ha bisogno di informazioni extra per "
-"funzionare\n"
-"correttamente, anche se normalmente puň farne a meno. Vorresti specificare\n"
-"opzioni extra o lasciare che il driver cerchi sulla tua macchina le\n"
-"informazioni di cui ha bisogno? Occasionalmente, la ricerca bloccherŕ il\n"
-"computer, ma non dovrebbe causare alcun danno."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Investgazione automatica"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Specifica opzioni"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Adesso potete fornire le sue opzioni al modulo %s.\n"
-"Si noti che ogni indirizzo dovrebbe essere inserito con il prefisso 0x (ad "
-"es. '0x123')."
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Adesso puoi passare le sue opzioni al modulo %s.\n"
-"Le opzioni sono in formato ''nome=valore nome2=valore2 ...''.\n"
-"Per esempio, ''io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opzioni del modulo:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Caricamento del modulo %s fallito.\n"
-"Vuoi riprovare con altri parametri?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "accesso ai programmi X"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "accesso agli strumenti RPM"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "permetti \"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "accesso ai file di amministrazione del sistema"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s giŕ aggiunto)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Questa password č troppo semplice"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Per favore fornisci un nome utente"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Il nome utente deve contenere solo lettere minuscole, numeri, '-' e '_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Questo nome utente č giŕ stato aggiunto"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Aggiungi utente"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Inserisci un utente\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Accetta utente"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Vero nome"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Nome utente"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Icona"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Autologin"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Posso configurare il tuo computer per fare automaticamente il login di un "
-"utente all'avvio.\n"
-"Vuoi sfruttare questa caratteristica?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Scegli l'utente predefinito"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Scegli il window manager da eseguire:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Per favore, scegli la lingua da utilizzare."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr ""
-"Potete scegliere altre lingue che saranno disponibili dopo l'installazione"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Tutto"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Permetti a tutti gli utenti"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Condivisione personalizzata"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Nessuna condivisione"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Il pacchetto %s deve essere installato. Volete installarlo?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Potete esportare usando NFS o Samba. Quale desiderate"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Il pacchetto obbligatorio %s č assente"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Annulla"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "Lancia userdrake"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"La condivisione in base all'utente usa il gruppo \"fileshare\". \n"
-"Potete utilizzare userdrake per aggiungere un utente a questo gruppo."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Benvenuti cracker"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Scarso"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Normale"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Alto"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "Piů alto"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoico"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Questo livello va usato con cura. Rende il sistema piů facile da usare,\n"
-"ma molto delicato: non deve essere usato per una macchina connessa ad altre\n"
-"o a Internet. Non c'č nessun accesso con password."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Ora le password sono abilitate, ma l'uso come computer di rete č comunque\n"
-"ancora sconsigliato."
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Questo č il livello di sicurezza standard raccomandato per un computer da "
-"usare per\n"
-"connettersi a Internet come cliente."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Esistono giŕ alcuni limiti, e ogni notte vengono eseguiti ulteriori "
-"controlli automatici."
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Con questo livello di sicurezza, l'uso di questo sistema come server "
-"diventa\n"
-"possibile. La sicurezza č ora abbastanza alta per consentire l'utilizzo\n"
-"del sistema come server che accetta connessioni da molti clienti. Nota: se "
-"la vostra\n"
-"macchina č un semplice cliente su Internet, fareste meglio a scegliere un "
-"livello\n"
-"piů basso."
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Basato sul livello precedente, ma ora il sistema č completamente\n"
-"chiuso. Le funzioni di sicurezza sono al massimo."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Scegli livello di sicurezza"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Livello di sicurezza"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Usa libsafe per i server"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Una libreria che difende il sistema da attacchi del tipo \"buffer overflow\" "
-"e \"format string\"."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Benvenuti su %s, il selezionatore di sistemi operativi!\n"
-"\n"
-"Scegliete un sistema operativo nella lista qui sopra, o\n"
-"aspettate %d secondi per il boot predefinito.\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Benvenuti su GRUB, il selezionatore di sistemi operativi!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Usate i tasti %c e %c per evidenziare la voce che interessa."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr ""
-"Premete Invio per avviare il sistema operativo selezionat, 'e' per modificare"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "i comandi prima del boot, o 'c' per avere una linea di comando."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "La voce evidenziata verrŕ avviata automaticamente in %d secondi."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "spazio insufficiente in /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Desktop"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Menu di avvio"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Non puoi installare il bootloader su una partizione %s\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "nessun aiuto presente (per ora).\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Configurazione stile di avvio"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_File"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/File/_Esci"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Monitor NewStyle per categorie"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Monitor NewStyle"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Monitor tradizionale"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Monitor Gtk tradizionale"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Lancia Aurora al momento del boot"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Modo LILO/GRUB"
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Yaboot mode"
-msgstr "Yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Al momento state usando %s come Boot Manager.\n"
-"Cliccate su Configura per lanciare l'assistente di configurazione."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Configura"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Modo sistema"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Lancia il sistema X Window all'avvio"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "No, non voglio il login automatico"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Sě, voglio il login automatico con questo (utente, desktop)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "Non riesco ad aprire /etc/inittab in lettura: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "Mb"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minuti"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minuto"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d secondi"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Non posso fare degli screenshot prima del partizionamento"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Dopo 'installazione degli screenshot saranno disponibili in %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Francia"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "Belgio"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Repubblica Ceca"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Germania"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Grecia"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Norvegia"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Svezia"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Olanda"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Italia"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Austria"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Stati Uniti"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Per favore prima fate un backup dei vostri dati"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Leggete con attenzione!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Se intendete usare aboot, prestate attenzione a lasciare uno spazio libero "
-"(2048\n"
-"settori sono sufficienti) all'inizio del disco"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Errore"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Assistente"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Scegli un'azione"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Hai una grossa partizione\n"
-"(generalmente usata da Microsoft Dos/Windows).\n"
-"Per prima cosa suggerisco di ridimensionare quella partizione\n"
-"(clicca su di essa, poi clicca su \"Ridimensiona\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Per favore clicca su una partizione"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Dettagli"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "FS con journal"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Vuoto"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Altro"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Tipo di filesystem:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Crea"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tipo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Usa ''%s'' invece"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Cancella"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Prima usa ''Unmount''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Dopo aver cambiato tipo di partizione %s, tutti i dati su questa partizione "
-"saranno persi"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Scegli una partizione"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Scegli un'altra partizione"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Esci"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Passa a modo Esperto"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Passa a modo Normale"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Un passo indietro"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Continuo comunque?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Esci senza salvare"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Esci senza scrivere la tabella delle partizioni?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Vuoi salvare le modifiche a /etc/fstab?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Alloca automaticamente"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Azzera tutto"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Informazioni sul disco fisso"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Tutte le partizioni primarie sono usate"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Non posso aggiungere altre partizioni"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Per avere piů partizioni, per favore eliminarne una per essere in grado di "
-"crearne una estesa"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Salva la tabella delle partizioni"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Ripristina tabella delle partizioni"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Recupera tabella delle partizioni"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Ricarica tabella delle partizioni"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Automounting di media rimovibili"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Scegli file"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"La copia di sicurezza della tabella delle partizioni non ha la stessa\n"
-"dimensione. Continuo comunque?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Attenzione"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Inserisci un floppy nel drive\n"
-"Tutti i dati su questo floppy saranno persi"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Provo a recuperare la tabella delle partizioni"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Informazioni dettagliate"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Punto di mount"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Opzioni"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Ridimensiona"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Sposta"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatta"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Esegui mount"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Aggiungi a RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Aggiungi a LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Esegui unmount"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Rimuovi da RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Rimuovi da LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Modifica RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Usa per loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Crea una nuova partizione"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Settore iniziale: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Dimensione in Mb: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Tipo di filesystem: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Punto di mount:"
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Preferenza: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Rimuovo il file di loopback?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Cambia il tipo di partizione"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Quale filesystem vuoi?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Passo da ext2 a ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Dove vuoi fare il mount del file loopback %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Dove vuoi fare il mount del dispositivo %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Non puoi deselezionare punti di mount perché questa partizione č usata\n"
-"per il loopback. Prima rimuovi il loopback"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Calcolo dei vincoli del filesystem FAT"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Ridimensionamento"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Questa partizione non č ridimensionabile"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Dovresti eseguire il backup di tutti i dati su questa partizione"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Dopo aver ridimensionato la partizione %s, tutti i dati su questa partizione "
-"saranno persi"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Scegli la nuova dimensione"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Nuova dimensione in Mb: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Su quale disco vuoi spostarlo?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Settore"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Su che settore vuoi spostarlo?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Spostamento"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Spostamento partizione..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Scegli un RAID esistente a cui effettuare l'aggiunta"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "nuovo"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Scegli un LVM esistente a cui effettuare l'aggiunta"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "Nome LVM?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Questa partizione non puň essere usata per il loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Nome file loopback: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Assegna un nome di file"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "File giŕ usato da un altro loopback, selezionane uno diverso"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Il file esiste giŕ. Lo uso?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Opzioni di mount"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Varie"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "dispositivo"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "livello"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "dimensione del blocco"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Fai attenzione: questa operazione č pericolosa."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Che tipo di partizionamento?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Spiacente ma non accetterň di creare /boot cosě avanti sul drive (su un "
-"cilindro > 1024).\n"
-"Nel caso tu usassi LILO non funzionerebbe, o se non usassi LILO non ti "
-"servirebbe /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"La partizione che hai scelto di aggiungere come root (/) si trova\n"
-"fisicamente oltre il 1024esimo cilindro del disco fisso, e non hai una\n"
-"partizione /boot. Se hai intenzione di usare LILO come boot manager, "
-"accertati di creare una partizione /boot"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Hai selezionato una partizione RAID software come root (/).\n"
-"Nessun bootloader puň gestirla senza una partizione /boot.\n"
-"Perciň accertati di aggiungere una partizione /boot."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr ""
-"La tabella delle partizioni del disco %s sta per essere scritta su disco!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr ""
-"Sarŕ necessario riavviare il sistema prima che le modifiche diventino "
-"effettive!"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Dopo aver formattato la partizione %s, tutti i dati su questa partizione "
-"saranno persi"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formattazione"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formattazione file di loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formattazione partizione %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Nascondi file"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Sposta i file sulla nuova partizione"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"La directory %s contiene giŕ dei dati\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Sto spostando i file sulla nuova partizione"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Sto copiando %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Sto cancellando: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "la partizione %s adesso č nota come %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Dispositivo: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Lettera di drive DOS: %s (solo una supposizione)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tipo: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Nome: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Inizia: settore %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Dimensione: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s settori"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Da cilindro %d a %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formattato\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Non formattato\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "In linea\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"File di loopback:\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partizione di boot predefinita\n"
-" (per boot MS-DOS, non per lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Livello %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Dimensione del blocco %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Dischi RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Nome file di loopback: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Molto probabilmente questa partizione č\n"
-"una partizione Driver, č meglio\n"
-"non toccarla.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Questa speciale partizione di boot\n"
-"viene utilizzata per effettuare\n"
-"il dual-boot del tuo sistema.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Dimensione: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometria: %s cilindri, %s testine, %s settori\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Dischi LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Tipo tabella delle partizioni: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "su bus %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Opzioni: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Chiave di crittazione del filesystem"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Scegliete la chiave di crittazione del filesystem"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Questa chiave di crittazione č troppo semplice (deve essere lunga almeno %d "
-"caratteri)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "Le chiavi di crittazione non corrispondono"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Chiave di crittazione"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Chiave di crittazione (di nuovo)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Cambia tipo"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Per favore clicca su un supporto"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Ricerca server"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formattazione di %s fallita"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Non so come formattare %s in tipo %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "il mount della partizione %s sulla directory %s non č riuscito"
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck č fallito con codice di uscita %d o segnale %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "errore in fase di unmount di %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "semplice"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "con /usr"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "server"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Non puoi usare JFS per partizioni piů piccole di 16 Mb"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Non puoi usare ReiserFS per partizioni piů piccole di 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "I punti di mount devono iniziare con /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "C'č giŕ una partizione con il punto di mount %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Non puoi usare un Volume Logico LVM per il punto di mount %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Questa directory dovrebbe rimanere all'interno del filesystem root"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr "č un vero filesystem (ext2, reiserfs) per questa punto di mount\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Non puoi usare un filesystem crittato per il punto di mount %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Non c'č abbastanza spazio libero per l'allocazione automatica"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Nulla da fare"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Errore aprendo %s in scrittura: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Si č verificato un errore - non č stato trovata alcuna unitŕ valida su cui "
-"creare nuovi filesystem. Per favore controlla il tuo hardware per stabilire "
-"la causa di questo problema"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Non hai alcuna partizione!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux č un sistema operativo multiutente, e questo significa che\n"
-"ciascun utente puň disporre di una configurazione personalizzata, di uno\n"
-"spazio per i propri file, e cosě via; consultate il ''Manuale dell'utente''\n"
-"per saperne di piů. Ma, a differenza di \"root\", che č l'amministratore\n"
-"del sistema, gli utenti che aggiungerete adesso non avranno il diritto di\n"
-"cambiare nulla, se non i propri file e la propria configurazione. Dovrete\n"
-"crearne almeno uno per voi stessi, e dovreste usare quello per l'uso\n"
-"quotidiano: per quanto sia molto comodo entrare nel sistema come \"root\"\n"
-"tutti i giorni, potrebbe anche essere molto pericoloso! Anche un errore\n"
-"banale potrebbe significare un sistema non piů in grado di funzionare\n"
-"correttamente. Se, invece, commettete un errore, anche grave, in qualitŕ di\n"
-"utente normale, potreste perdere parte dei vostri dati, ma non\n"
-"compromettere l'intero sistema.\n"
-"\n"
-"Prima di tutto, inserite il vostro nome reale. Naturalmente questo non č\n"
-"obbligatorio: potete digitare quello che volete. Fatto questo, DrakX\n"
-"prenderŕ la prima parola che avete inserito nel campo di testo e la copierŕ\n"
-"alla voce \"Nome utente\". Questo č il nome che l'utente dovrŕ usare per\n"
-"accedere al sistema, ma potete cambiarlo. Poi digitate una password per\n"
-"questo utente. La password di un utente non privilegiato dal punto di vista\n"
-"della sicurezza non č cruciale come quella di \"root\", ovviamente, ma non\n"
-"c'č motivo di essere frettolosi: dopo tutto, si tratta dei vostri file.\n"
-"\n"
-"Se cliccate su \"Accetta utente\", potrete poi aggiungerne un altro, e\n"
-"altri ancora, a vostra discrezione. Aggiungete un utente per ciascuno dei\n"
-"vostri amici, oppure per vostro padre e vostro fratello, ad esempio. Dopo\n"
-"aver aggiunto tutti gli utenti che volete, selezionate \"Fatto\".\n"
-"\n"
-"Cliccando sul pulsante \"Avanzato\" potrete cambiare la \"shell\" per\n"
-"quell'utente (come opzione predefinita č bash)."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"In alto potete vedere l'elenco delle partizioni Linux individuate sul\n"
-"vostro disco rigido. Potete attenervi alle scelte fatte dall'assistente,\n"
-"vanno bene per la maggior parte delle installazioni. Se fate dei\n"
-"cambiamenti, ricordate che dovete definire per lo meno una partizione root\n"
-"(''radice'') (\"/\"). Non scegliete una partizione troppo piccola,\n"
-"altrimenti non sarete in grado di installare parte del software. Se volete\n"
-"archiviare i vostri dati su una partizione separata, dovrete creare anche\n"
-"una partizione per \"/home\" (questo č possibile soltanto se avete a\n"
-"disposizione piů di una partizione Linux).\n"
-"\n"
-"Ogni partizione č elencata in base a queste caratteristiche: \"Nome\",\n"
-"\"Capacitŕ\".\n"
-"\n"
-"Il \"Nome\" č strutturato in: \"tipo di disco rigido\", \"numero del\n"
-"disco\", \"numero della partizione\" (ad esempio, \"hda1\").\n"
-"\n"
-"Il \"tipo di disco rigido\" č \"hd\" se il vostro disco č di tipo IDE, e\n"
-"\"sd\" se, invece, č un disco SCSI.\n"
-"\n"
-"Il \"numero del disco\" č sempre una lettera che segue \"hd\" o \"sd\". Per\n"
-"i dischi IDE:\n"
-"\n"
-" * \"a\" significa \"disco rigido master sul controller IDE primario\";\n"
-"\n"
-" * \"b\" means \"disco rigido slave sul controller IDE primario\";\n"
-"\n"
-" * \"c\" means \"disco rigido master sul controller IDE secondario\";\n"
-"\n"
-" * \"d\" means \"disco rigido slave sul controller IDE secondario\".\n"
-"\n"
-"Per i dischi rigidi di tipo SCSI, invece, una \"a\" significa \"ID SCSI\n"
-"piů\", una \"b\" significa \"ID SCSI superiore ad a\", etc."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"La distribuzione Mandrake Linux č suddivisa su piů CD-ROM. DrakX sa se uno\n"
-"dei pacchetti selezionati si trova su un altro CD-ROM, pertanto provvederŕ\n"
-"a espellere il CD attualmente inserito nel lettore e a chiedervi di\n"
-"inserire quello corretto."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"Adesso č il momento di indicare i programmi che volete siano installati sul\n"
-"vostro sistema. Ci sono migliaia di programmi disponibili per Mandrake\n"
-"Linux, e nessuno si aspetta che li conosciate tutti a memoria.\n"
-"\n"
-"Se state effettuando un'installazione standard da CD-ROM, per prima cosa vi\n"
-"verrŕ chiesto di specificare quali sono i CD in vostro possesso (solo se\n"
-"siete in modalitŕ Esperto): controllate i CD della distribuzione, cliccate\n"
-"sulle caselle corrispondenti ai CD che avete e infine sul pulsante \"Ok\"\n"
-"quando siete pronti per continuare.\n"
-"\n"
-"I pacchetti sono organizzati in gruppi corrispondenti a usi particolari\n"
-"della vostra macchina. I gruppi sono a loro volta divisi in quattro\n"
-"sezioni:\n"
-"\n"
-" * \"Workstation\": scegliete uno o piů dei gruppi di questa sezione se la\n"
-"vostra macchina verrŕ utilizzata prevalentemente come workstation.\n"
-"\n"
-" * \"Sviluppo\": se la macchina verrŕ usata per lo sviluppo di software\n"
-"scegliete i gruppi appropriati.\n"
-"\n"
-" * \"Server\": se il computer sarŕ usato come server, qui potrete scegliere\n"
-"i servizi piů comuni da installare.\n"
-"\n"
-" * \"Ambiente grafico\": scegliete qui il vostro ambiente grafico "
-"preferito.\n"
-"Indicatene almeno uno se desiderate avere una workstation grafica!\n"
-"\n"
-"Spostando il puntatore del mouse sul nome di un gruppo verrŕ mostrato un\n"
-"breve testo di informazioni riguardo quest'ultimo. Se state effettuando\n"
-"un'installazione normale (non un aggiornamento) e deselezionate tutti i\n"
-"gruppi, comparirŕ una finestra di dialogo che vi proporrŕ alcune opzioni\n"
-"relative a un'installazione ''minima'':\n"
-"\n"
-" * \"With X\": installa i pacchetti strettamente necessari per avere un\n"
-"ambiente grafico funzionante;\n"
-"\n"
-" * \"With basic documentation\": installa il sistema base piů le utilitŕ di\n"
-"base e la relativa documentazione; questo tipo di installazione č utile se\n"
-"si vuole configurare un server;\n"
-"\n"
-" * \"Truly minimal install\": provvederŕ all'installazione dello stretto\n"
-"necessario per avere un sistema Linux funzionante, avente come unica\n"
-"interfaccia la linea di comando.\n"
-"\n"
-"Se lo desiderate, potete abilitare l'opzione \"Selezione individuale dei\n"
-"pacchetti\". Questa č utilissima se conoscete bene i pacchetti presenti\n"
-"nella distribuzione o se desiderate avere il totale controllo di ciň che\n"
-"verrŕ installato.\n"
-"\n"
-"Se avete cominciato l'installazione in modalitŕ \"Aggiornamento\", potete\n"
-"deselezionare tutti i gruppi per evitare di installare nuovi pacchetti, in\n"
-"questo modo effettuerete soltanto il ripristino o l'aggiornamento del\n"
-"sistema esistente."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Ora, se avete scelto di indicare i pacchetti su base individuale, potete\n"
-"vedere una struttura ad albero contenente tutti i pacchetti organizzati in\n"
-"gruppi e sotto-gruppi. Mentre sfogliate questa lista gerarchica potete\n"
-"selezionare interi gruppi, sotto-gruppi o singoli pacchetti.\n"
-"\n"
-"Quando selezionate un pacchetto all'interno dell'albero, ne compare una\n"
-"descrizione sulla destra. Una volta terminata la scelta, cliccate sul\n"
-"pulsante \"Installa\" che provvederŕ a far partire l'installazione vera e\n"
-"propria. Il tempo necessario varia in base al numero di pacchetti che\n"
-"devono essere installati e alla velocitŕ del vostro hardware, l'attesa\n"
-"potrebbe anche essere lunga. Una stima del tempo richiesto per finire\n"
-"l'installazione č visibile sullo schermo, in questo modo potrete sapere se\n"
-"avete tempo a sufficienza per godervi una tazza di caffé.\n"
-"\n"
-"!! Se avete selezionato un pacchetto che offre un servizio come server\n"
-"(intenzionalmente, oppure perché faceva parte di un gruppo), vi verrŕ\n"
-"chiesta conferma riguardo una sua effettiva installazione. Come opzione\n"
-"predefinita, in Mandrake Linux tutti i servizi installati vengono avviati\n"
-"automaticamente al momento del boot. Anche se si tratta di servizi sicuri\n"
-"al momento in cui č stata rilasciata questa versione della distribuzione,\n"
-"potrebbe succedere che vengano scoperte delle falle di sicurezza in un\n"
-"momento successivo. Se poi non avete proprio idea di quale sia la funzione\n"
-"di uno di questi pacchetti, cliccate sul pulsante \"No\". Cliccando su\n"
-"\"Sě\" i servizi elencati verranno installati e saranno attivati in maniera\n"
-"automatica. !!\n"
-"\n"
-"L'opzione \"Mostra i pacchetti selezionati automaticamente\" vi permette di\n"
-"disabilitare la finestra di dialogo che compare tutte le volte che il\n"
-"programma di installazione seleziona automaticamente uno o piů pacchetti.\n"
-"Il programma determina in modo automatico, infatti, quali sono i pacchetti\n"
-"che sono indispensabili a un dato pacchetto (''dipendenze'') perché\n"
-"quest'ultimo possa essere installato con successo.\n"
-"\n"
-"Il piccolo dischetto floppy in fondo alla lista vi permette di caricare una\n"
-"lista di pacchetti scelti durante una precedente installazione. Cliccando\n"
-"su questa icona vi verrŕ chiesto di inserire un floppy che avrete creato\n"
-"alla fine di un'altra installazione. Consultate le informazioni che\n"
-"riguardano l'ultimo passo del processo di installazione per sapere come\n"
-"creare questo dischetto."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"Se desiderate connettere il vostro computer a Internet o a una rete locale,\n"
-"assicuratevi di scegliere l'opzione corretta. Accendete la periferica che\n"
-"dovrete usare per connettervi prima di scegliere l'opzione adeguata, per\n"
-"permettere a DrakX di individuarla automaticamente.\n"
-"\n"
-"Mandrake Linux vi permette di configurare la vostra connessione a Internet\n"
-"durante il processo di installazione. Le connessioni disponibili sono:\n"
-"modem tradizionale, modem ISDN, connessione ADSL, cable modem, e infine una\n"
-"semplice connessione a una LAN (Ethernet).\n"
-"\n"
-"Non possiamo descrivere in dettaglio le caratteristiche di ogni\n"
-"configurazione. In ogni caso, accertatevi di avere a portata di mano tutti\n"
-"i parametri indicati dal vostro fornitore di servizi internet o dal vostro\n"
-"amministratore di sistema.\n"
-"\n"
-"Per maggiori dettagli riguardo la configurazione della connessione a\n"
-"Internet potete consultare il relativo capitolo del ''User Guide''; in\n"
-"alternativa, potete attendere di aver portato a termine l'installazione e\n"
-"usare poi il programma descritto in tale capitolo per configurare la\n"
-"connessione.\n"
-"\n"
-"Se desiderate configurare la rete dopo aver terminato l'installazione, o se\n"
-"avete giŕ configurato la vostra rete, cliccate su \"Annulla\"."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"A questo punto potete scegliere i servizi da lanciare automaticamente\n"
-"all'avvio del sistema.\n"
-"\n"
-"Qui sono elencati tutti i servizi disponibili con l'installazione attuale.\n"
-"Esaminateli attentamente e disabilitate quelli che non sono sempre\n"
-"necessari all'avvio.\n"
-"\n"
-"Selezionando un servizio comparirŕ un breve testo di aiuto che ne spiega le\n"
-"caratteristiche. Se non siete realmente sicuri dell'utilitŕ o meno di un\n"
-"servizio, č piů prudente non modificare le impostazioni predefinite.\n"
-"\n"
-"!! In questa fase dell'installazione dovete fare le vostre scelte con\n"
-"particolare attenzione nel caso intendiate usare il vostro computer come\n"
-"server: probabilmente non volete che siano abilitati servizi di cui non\n"
-"avete bisogno. Ricordate che numerosi servizi sono potenzialmente\n"
-"pericolosi se attivi su un server. Come regola generale, selezionate\n"
-"soltanto quelli di cui avete effettivamente bisogno. !!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"GNU/Linux gestisce il tempo in base al GMT (''Greenwich Manage Time'') e lo\n"
-"traduce nell'ora locale in base al fuso orario selezionato. Tuttavia č\n"
-"possibile disabilitare questa opzione togliendo il segno di spunta alla\n"
-"casella \"Hardware clock set to GMT\", in modo che l'orologio hardware sia\n"
-"lo stesso dell'orologio di sistema. Questa scelta puň tornare utile nel\n"
-"caso sulla macchina sia installato un altro sistema operativo, ad esempio\n"
-"Windows.\n"
-"\n"
-"L'opzione \"Automatic time synchronization\" provvederŕ a gestire l'ora\n"
-"grazie alla connessione con un server del tempo remoto via Internet.\n"
-"Scegliete un server vicino a voi nella lista che vi verrŕ mostrata. Perché\n"
-"questa opzione funzioni, naturalmente, dovete disporre di una connessione a\n"
-"Internet funzionante. Sulla vostra macchina verrŕ installato un server del\n"
-"tempo che potrŕ essere usato anche per altre macchine che si trovano sulla\n"
-"vostra rete locale."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X (che sta per ''X Window System'') č il cuore dell'interfaccia grafica di\n"
-"GNU/Linux, sulla quale sono basati tutti gli ambienti grafici che sono\n"
-"inclusi in Mandrake Linux (KDE, GNOME, AfterStep, WindowMaker, etc.). In\n"
-"questa sezione, DrakX tenterŕ di configurare X automaticamente.\n"
-"\n"
-"Č molto raro che non abbia successo: l'unico caso in cui ciň potrebbe\n"
-"accadere č se l'hardware in questione č molto vecchio (o molto recente). Se\n"
-"l'operazione riesce, DrakX lancerŕ X automaticamente, con la miglior\n"
-"risoluzione possibile, in base alle dimensioni del monitor. A quel punto,\n"
-"comparirŕ una finestra che vi chiederŕ se potete vederla.\n"
-"\n"
-"Se state effettuando un'installazione in modo \"Esperto\", verrŕ lanciato\n"
-"l'assistente di configurazione di X. Consultate la sezione del manuale\n"
-"dedicata a questo assistente per avere piů informazioni al riguardo.\n"
-"\n"
-"Se potete vedere il messaggio e rispondete \"Sě\", allora DrakX passerŕ\n"
-"alla fase successiva. Se non potete vedere il messaggio, significa che la\n"
-"configurazione non andava bene, e il test terminerŕ automaticamente dopo 10\n"
-"secondi, riportandovi alla schermata precedente."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Puň verificarsi il caso che il primo tentativo non sia quello giusto (lo\n"
-"schermo č troppo piccolo, spostato a destra o a sinistra...). Questo č il\n"
-"motivo per cui, anche se X viene lanciato correttamente, DrakX vi chiederŕ\n"
-"subito dopo se la configurazione va bene, e vi proporrŕ di cambiarla\n"
-"elencando una lista di modi video validi (in base a quello che ha potuto\n"
-"accertare) chiedendovi di sceglierne uno.\n"
-"\n"
-"Come ultima risorsa, se proprio non riuscite a far funzionare X, scegliete\n"
-"\"Cambia scheda grafica\", selezionate \"Unlisted card\", e quando vi verrŕ\n"
-"chiesto quale server desiderate utilizzare, scegliete \"FBDev\": si tratta\n"
-"di un'opzione a prova d'errore, che funziona con qualsiasi scheda grafica\n"
-"moderna. Quindi scegliete \"Nuovo test\" per essere sicuri."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Infine DrakX vi chiederŕ se desiderate utilizzare l'interfaccia grafica una\n"
-"volta terminato il processo di avvio del sistema. Notate che questa domanda\n"
-"verrŕ fatta anche se avete deciso di non provare la configurazione.\n"
-"Ovviamente dovrete scegliere \"No\" se la vostra macchina dovrŕ svolgere il\n"
-"ruolo di server, o se non siete riusciti a ottenere una configurazione\n"
-"corretta."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"Il CD-ROM di Mandrake Linux ha una modalitŕ ''salvataggio'' preconfigurata.\n"
-"Potete accedervi effettuando il boot dal CD-ROM, premendo il tasto >>F1<<\n"
-"all'avvio e digitando >>rescue<< dal prompt. Ma se il vostro computer non\n"
-"puň essere avviato dal CD-ROM, dovete effettuare questa operazione (la\n"
-"creazione di un disco di avvio) per almeno due ragioni:\n"
-"\n"
-" * DrakX riscriverŕ il settore di boot (MBR) del vostro disco principale (a\n"
-"meno che voi non usiate un altro gestore del boot), in modo che possiate\n"
-"avviare sia Windows che GNU/Linux, se sul vostro sistema č installato anche\n"
-"Windows. Tuttavia, se in futuro si renderŕ necessario re-installare\n"
-"Windows, il programma di installazione Microsoft riscriverŕ il settore di\n"
-"boot, e di conseguenza non sarete piů in grado di avviare GNU/Linux!\n"
-"\n"
-" * se si verifica un problema per cui non potete piů lanciare GNU/Linux dal\n"
-"disco rigido, questo dischetto sarŕ l'unico mezzo per avviare GNU/Linux:\n"
-"contiene un buon numero di programmi di amministrazione del sistema per\n"
-"rimettere in sesto un'installazione che ha subito abbia crash per\n"
-"un'interruzione di corrente, uno sfortunato errore di battitura, una\n"
-"password dimenticata o qualsiasi altra ragione.\n"
-"\n"
-"Quando cliccherete su \"Sě\", vi verrŕ chiesto di inserire un disco in un\n"
-"lettore di floppy. Naturalmente il dischetto che utilizzerete deve essere\n"
-"vuoto o contenere soltanto dati di cui non avete piů bisogno. Non sarŕ\n"
-"necessario formattarlo: DrakX riscriverŕ l'intero disco."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"A questo punto dovete scegliere dove installare il vostro sistema operativo\n"
-"Mandrake Linux sul disco rigido. Se il vostro disco č vuoto, oppure se un\n"
-"sistema operativo esistente sta usando tutto lo spazio disponibile, allora\n"
-"dovrete partizionarlo. In breve, partizionare un disco rigido consiste nel\n"
-"suddividerlo logicamente in maniera da creare lo spazio sufficiente per\n"
-"installare il vostro nuovo sistema operativo Mandrake Linux.\n"
-"\n"
-"Dato che gli effetti del partizionamento sono di solito irreversibili,\n"
-"questa operazione puň intimidire e rivelarsi stressante per un utente\n"
-"inesperto. Fortunatamente, avete a vostra disposizione un assistente che\n"
-"semplifica questo passo. Prima di iniziare leggete attentamente il manuale,\n"
-"e prendete tutto il tempo che vi serve.\n"
-"\n"
-"Se state effettuando l'installazione in modalitŕ Esperto, verrŕ lanciato\n"
-"DiskDrake, il programma di gestione e partizionamento dei dischi rigidi di\n"
-"Mandrake Linux, che vi permetterŕ di configurare accuratamente le vostre\n"
-"partizioni. Consultate il capitolo relativo a DiskDrake nel manuale. Dal\n"
-"programma di installazione potete richiamare gli assistenti descritti qui\n"
-"di seguito cliccando sul pulsante \"Assistente\" (ingl. ''Wizard'').\n"
-"\n"
-"Se le partizioni sono giŕ state definite (per una precedente installazione,\n"
-"o da un'altra utilitŕ di partizionamento), dovrete solo scegliere quelle da\n"
-"usare per installare il vostro sistema Linux.\n"
-"\n"
-"Se le partizioni non sono ancora state definite, dovete crearle usando\n"
-"l'assistente. In base alla configurazione del vostro disco rigido, saranno\n"
-"disponibili diverse soluzioni:\n"
-"\n"
-" * \"Usa spazio disponibile\": questa opzione causerŕ un partizionamento\n"
-"automatico del vostro disco rigido (o dischi, se ne avete piů di uno). Non\n"
-"vi verrŕ posta nessun'altra domanda.\n"
-"\n"
-" * \"Usa partizioni esistenti\": l'assistente ha trovato una o piů\n"
-"partizioni Linux sul vostro disco rigido. Se desiderate usarle scegliete\n"
-"questa opzione.\n"
-"\n"
-" * \"Usa lo spazio libero nella partizione Windows\": se MicrosoftWindows č\n"
-"installato sul vostro disco rigido e occupa tutto lo spazio disponibile,\n"
-"dovrete creare spazio libero per i dati relativi a Linux. Per farlo potete\n"
-"cancellare la vostra partizione MicrosoftWindows e i dati che contiene\n"
-"(usando le soluzioni \"Cancella l'intero disco\" o \"Modo Esperto\"),\n"
-"oppure ridimensionarla. Il ridimensionamento puň essere effettuato evitando\n"
-"la perdita di dati a patto che prima di procedere la partizione Windows sia\n"
-"stata deframmentata. Vi raccomandiamo anche di fare un backup dei vostri\n"
-"dati. Questa č la soluzione consigliata se desiderate usare sia Mandrake\n"
-"Linux sia MicrosoftWindows sullo stesso computer.\n"
-"\n"
-" Prima di scegliere questa opzione, tenete presente che la dimensione "
-"della\n"
-"partizione su cui risiede MicrosoftWindows sarŕ ridotta rispetto a quella\n"
-"attuale. Significa che avrete meno spazio libero per archiviare i vostri\n"
-"dati o installare nuovo software su Windows.\n"
-"\n"
-" * \"Cancella l'intero disco\": se desiderate cancellare tutti i dati e\n"
-"tutte le partizioni presenti sul vostro disco rigido e rimpiazzarli con il\n"
-"vostro nuovo sistema Mandrake Linux, potete selezionare questa opzione.\n"
-"Fate attenzione nello scegliere questa soluzione, dopo la conferma non\n"
-"potrete piů tornare indietro.\n"
-"\n"
-" !! Se scegliete questa opzione, tutti i dati sul vostro disco andranno\n"
-"persi. !!\n"
-"\n"
-" * \"Cancella Windows\": l'effetto di questa opzione sarŕ di cancellare\n"
-"tutto quello che si trova sul disco e di ricominciare da capo, creando le\n"
-"partizioni su un disco vuoto. Tutti i dati presenti sul vostro disco\n"
-"andranno persi.\n"
-"\n"
-" !! Se scegliete questa opzione, tutti i dati sul vostro disco andranno\n"
-"persi. !!\n"
-"\n"
-" * \"Modo Esperto\": se volete partizionare manualmente il vostro disco\n"
-"rigido potete scegliere questa opzione. Fate attenzione prima di optare per\n"
-"questa soluzione: č potente, ma molto pericolosa. Potreste facilmente\n"
-"causare la perdita di tutti i vostri dati. Quindi, non scegliete questa\n"
-"soluzione se non sapete cosa state facendo."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"Ecco fatto: l'installazione č terminata, e il vostro sistema GNU/Linux č\n"
-"pronto per essere usato. Dovete soltanto cliccare sul pulsante \"OK\" per\n"
-"riavviare il sistema. Potete lanciare GNU/Linux o Windows (se presente),\n"
-"qualunque preferiate dei due, non appena il computer avrŕ terminato di\n"
-"effettuare il boot.\n"
-"\n"
-"Cliccando sul pulsante \"Avanzato\" (solo in modalitŕ Esperto) avrete altri\n"
-"due pulsanti a vostra disposizione:\n"
-"\n"
-" * \"Crea il floppy di auto installazione\": per creare un floppy di\n"
-"installazione che permette di eseguire automaticamente un' installazione\n"
-"completa, del tutto simile a quella che avete appena finito di configurare,\n"
-"senza che sia necessario l'intervento di un operatore.\n"
-"\n"
-" Notate che, dopo aver cliccato sul pulsante, saranno disponibili due\n"
-"opzioni diverse:\n"
-"\n"
-" * \"Ripeti\": questa č un'installazione automatizzata solo in parte, in\n"
-"quanto la fase di partizionamento del disco (e solo quella) resta\n"
-"interattiva.\n"
-"\n"
-" * \"Automatizzata\": l'installazione č completamente automatizzata: il\n"
-"disco rigido viene riscritto per intero, tutti tutti i dati che contiene\n"
-"andranno persi.\n"
-"\n"
-" Questa caratteristica č molto utile quando si deve installare il sistema "
-"su\n"
-"un gran numero di macchine dalle caratteristiche simili. Si veda la sezione\n"
-"Installazione automatica sul nostro sito web.\n"
-"\n"
-" * \"Salva scelta pacchetti\"(*): salva la selezione dei pacchetti\n"
-"effettuata in precedenza. Al momento di effettuare un'altra installazione,\n"
-"potrete inserire il dischetto nel lettore e installare il sistema\n"
-"richiamando lo schermo di aiuto (premendo [F1]) e digitando >>linux\n"
-"defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) Sarŕ necessario un dischetto formattato con il filesystem FAT: per\n"
-"formattarne uno sotto GNU/Linux digitate \"mformat a:\""
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Qualsiasi partizione appena definita deve essere formattata prima di poter\n"
-"essere usata (formattare significa creare un filesystem).\n"
-"\n"
-"Potreste anche voler riformattare alcune partizioni preesistenti, per\n"
-"cancellare i dati che contengono. Se desiderate farlo, scegliete qui le\n"
-"partizioni che intendete formattare.\n"
-"\n"
-"Tenete presente che non č necessario riformattare tutte le partizioni\n"
-"preesistenti. Dovete formattare le partizioni che contengono il sistema\n"
-"operativo (come \"/\", \"/usr\" o \"/var\"), ma potete evitare di\n"
-"riformattare partizioni che contengono dati che desiderate conservare\n"
-"(tipicamente \"/home\").\n"
-"\n"
-"Fate molta attenzione nella scelta delle partizioni, dopo la formattazione\n"
-"tutti i dati saranno cancellati e non potrete recuperarli.\n"
-"\n"
-"Cliccate su \"Ok\" quando siete pronti a formattare le partizioni.\n"
-"\n"
-"Cliccate su \"Annulla\" se desiderate scegliere altre partizioni sulle\n"
-"quali installare il vostro nuovo sistema operativo Mandrake Linux.\n"
-"\n"
-"Cliccate su \"Avanzato\" se desiderate che le partizioni selezionate\n"
-"vengano controllate per accertare la presenza di eventuali blocchi\n"
-"danneggiati."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Il vostro sistema operativo Mandrake Linux č in corso d'installazione. In\n"
-"base al numero di pacchetti che devono essere installati e alla velocitŕ\n"
-"del vostro computer, questa operazione potrebbe durare pochi minuti o\n"
-"richiedere un tempo molto lungo.\n"
-"\n"
-"Abbiate pazienza, per favore."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-"Č molto probabile che, al momento in cui state installando Mandrake Linux,\n"
-"alcuni pacchetti siano stati aggiornati rispetto alla versione iniziale.\n"
-"Potrebbe trattarsi di un ''bug fix'', o della soluzione di problemi\n"
-"relativi alla sicurezza. Per permettervi di beneficiare di questi\n"
-"aggiornamenti vi verrŕ proposto di scaricare la nuova versione dei\n"
-"pacchetti usando Internet. Scegliete \"Sě\" se potete contare su una\n"
-"connessione a Internet funzionante, oppure \"No\" se preferite installare i\n"
-"pacchetti aggiornati in un secondo momento.\n"
-"\n"
-"Se scegliete \"Sě\" comparirŕ una lista di siti da cui č possibile\n"
-"scaricare i pacchetti aggiornati. Selezionate quello piů vicino a voi. A\n"
-"questo punto comparirŕ una finestra di selezione pacchetti: controllate la\n"
-"lista e cliccate su \"Installa\" per scaricare e installare i pacchetti, o\n"
-"su \"Annulla\" per annullare l'operazione."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Prima di proseguire dovreste leggere con attenzione le condizioni d'uso;\n"
-"queste riguardano l'intera distribuzione Mandrake Linux, e se non siete\n"
-"d'accordo con qualche punto della licenza cliccate sul pulsante\n"
-"\"Rifiuta\": la procedura di installazione sarŕ immediatamente interrotta.\n"
-"Per proseguire con l'installazione, invece, cliccate sul pulsante\n"
-"\"Accetta\"."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"Ora č il momento di scegliere il livello di sicurezza desiderato per il\n"
-"vostro sistema. Come regola generale, quanto piů esposta č la macchina e\n"
-"quanto piů sono importanti i dati che contiene, tanto piů alto dovrebbe\n"
-"essere il livello di sicurezza. Tenete presente, tuttavia, che un livello\n"
-"di sicurezza molto alto in genere viene ottenuto a spese della facilitŕ\n"
-"d'uso. Consultate il capitolo MSEC nel ''Manuale di riferimento'' per avere\n"
-"ulteriori informazioni in merito al significato di tali livelli.\n"
-"\n"
-"Se non sapete cosa scegliere, mantenete l'opzione predefinita."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"A questo punto, dovete decidere quali partizioni devono essere usate per\n"
-"l'installazione del vostro sistema Mandrake Linux. Se sono giŕ state\n"
-"definite delle partizioni, grazie a una precedente installazione di\n"
-"GNU/Linux o usando un altro programma di partizionamento, potete utilizzare\n"
-"le partizioni esistenti. In caso contrario, sarŕ necessario creare o\n"
-"modificare le partizioni del disco rigido.\n"
-"\n"
-"Per creare delle partizioni dovete, per prima cosa, selezionare un disco\n"
-"rigido. Potete scegliere il disco da partizionare cliccando su \"hda\" per\n"
-"il primo disco IDE, \"hdb\" per il secondo, \"sda\" per il primo disco\n"
-"SCSI, e cosě via.\n"
-"\n"
-"Per partizionare il disco selezionato potete scegliere fra queste opzioni:\n"
-"\n"
-" * \"Cancella tutto\": questa opzione cancella tutte le partizioni presenti\n"
-"sul disco selezionato.\n"
-"\n"
-" * \"Alloca automaticamente\": questa opzione vi permette di creare\n"
-"automaticamente partizioni di sistema e di swap nello spazio libero\n"
-"presente sul vostro disco rigido.\n"
-"\n"
-" * \"Ancora\": permette di accedere a funzionalitŕ avanzate:\n"
-"\n"
-" * \"Salva tabella delle partizioni\": salva la tabella delle partizioni "
-"su\n"
-"un floppy. Utile per recuperarla in un momento successivo, se necessario.\n"
-"Vi raccomandiamo caldamente di effettuare questa operazione.\n"
-"\n"
-" * \"Ripristina tabella delle partizioni\": permette di ripristinare una\n"
-"tabella delle partizioni precedentemente salvata su floppy disk.\n"
-"\n"
-" * \"Recupera tabella delle partizioni\": se la vostra tabella delle\n"
-"partizioni č danneggiata potete provare a recuperarla grazie a questa\n"
-"opzione. Procedete con attenzione, e ricordate che potrebbe non avere\n"
-"successo.\n"
-"\n"
-" * \"Ricarica tabella delle partizioni\": annulla tutte le modifiche e\n"
-"ricarica la tabella delle partizioni originaria.\n"
-"\n"
-" * \"Removable media automounting\": se disabilitate questa opzione gli\n"
-"utenti saranno costretti a montare e smontare manualmente i dispositivi\n"
-"rimovibili come lettori floppy e CD-ROM.\n"
-"\n"
-" * \"Assistente\": usate questa opzione se desiderate che il "
-"partizionamento\n"
-"del disco sia effettuato con l'aiuto di un assistente. Altamente\n"
-"raccomandata se non avete una buona conoscenza del partizionamento.\n"
-"\n"
-" * \"Un passo indietro\": con questa opzione le modifiche apportate "
-"verranno\n"
-"annullate.\n"
-"\n"
-" * \"Passa a modo Esperto\": permette di effettuare ulteriori azioni sulle\n"
-"partizioni (tipo, opzioni, formattazione) e offre piů informazioni.\n"
-"\n"
-" * \"Fatto\": quando avrete finito il partizionamento del disco cliccate su\n"
-"questa opzione, le vostre modifiche verranno salvate sul disco.\n"
-"\n"
-"Si noti che č possibile raggiungere ogni opzione usando la tastiera. Per\n"
-"spostarvi fra le partizioni usate i tasti [Tab] e le frecce [Sů/Giů].\n"
-"\n"
-"Dopo aver selezionato una partizione potete usare:\n"
-"\n"
-" * Ctrl-c per creare una nuova partizione (se avete selezionato una\n"
-"partizione vuota);\n"
-"\n"
-" * Ctrl-d per cancellare una partizione;\n"
-"\n"
-" * Ctrl-m per impostare il punto di mount.\n"
-"\n"
-"Per ottenere informazioni in merito ai diversi tipi di filesystem\n"
-"disponibili, consultate il capitolo ext2fs del ''Reference Manual''.\n"
-"\n"
-"Se state effettuando l'installazione su una macchina PPC, sarŕ necessario\n"
-"creare una piccola partizione HFS di almeno 11MB, che verrŕ utilizzata dal\n"
-"bootloader yaboot. Se decidete di creare una partizione piů grande, diciamo\n"
-"sui 50MB, potrebbe rappresentare un utile deposito dove conservare un\n"
-"kernel di riserva e immagini di ''ramdisk'' da utilizzare in caso di\n"
-"emergenza."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Sul vostro disco rigido č stata individuata piů di una partizione\n"
-"MicrosoftWindows. Per favore, scegliete quella che deve essere\n"
-"ridimensionata in modo da poter installare il vostro nuovo sistema\n"
-"operativo Mandrake Linux.\n"
-"\n"
-"Ogni partizione viene elencata come segue: \"nome Linux\", \"nome Windows\"\n"
-"\"Capacitŕ\".\n"
-"\n"
-"Il \"nome Linux\" č strutturato in: \"tipo di disco rigido\", \"numero del\n"
-"disco\", \"numero della partizione\" (ad esempio, \"hda1\").\n"
-"\n"
-"Il \"tipo di disco rigido\" č \"hd\" se il vostro disco č di tipo IDE, e\n"
-"\"sd\" se, invece, č un disco SCSI.\n"
-"\n"
-"Il \"numero del disco\" č sempre una lettera che segue \"hd\" o \"sd\". Per\n"
-"i dischi IDE:\n"
-"\n"
-" * \"a\" significa \"disco rigido master sul controller IDE primario\",\n"
-"\n"
-" * \"b\" means \"disco rigido slave sul controller IDE primario\";\n"
-"\n"
-" * \"c\" means \"disco rigido master sul controller IDE secondario\";\n"
-"\n"
-" * \"d\" means \"disco rigido slave sul controller IDE secondario\".\n"
-"\n"
-"Per i dischi rigidi di tipo SCSI, invece, una \"a\" significa \"ID SCSI\n"
-"piů\", una \"b\" significa \"ID SCSI superiore ad a\", etc.\n"
-"\n"
-"Il \"nome Windows\" č la lettera che corrisponde al vostro disco rigido\n"
-"sotto Windows (il primo disco o partizione č chiamato \"C:\")."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr ""
-"Per favore siate pazienti. Questa operazione puň richiedere diversi minuti."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"A questo punto DrakX deve sapere se intendete effettuare un'installazione\n"
-"in modalitŕ predefinita (\"Raccomandata\") o se preferite avere un maggior\n"
-"controllo su di essa (\"Esperto\"). Inoltre potete scegliere se effettuare\n"
-"una nuova installazione o un aggiornamento di un sistema Mandrake Linux\n"
-"esistente:\n"
-"\n"
-" * \"Installazione\" Cancella completamente il vecchio sistema. A seconda "
-"di\n"
-"come č strutturato il sistema preesistente potrete mantenere inalterate\n"
-"alcune delle vecchie partizioni (Linux e altre).\n"
-"\n"
-" * \"Aggiornamento\" Questo tipo di installazione vi permette di effettuare\n"
-"un semplice aggiornamento dei pacchetti installati sul vostro sistema\n"
-"Mandrake Linux. Conserva tutte le partizioni attuali del disco rigido, come\n"
-"pure le configurazioni individuali degli utenti. Tutti gli altri passi\n"
-"relativi alla configurazione verranno effettuati come per una installazione\n"
-"da zero.\n"
-"\n"
-" * \"Solo aggiornamento pacchetti\" Questa nuovissima opzione vi permette "
-"di\n"
-"aggiornare un sistema Mandrake Linux esistente lasciando intatta la\n"
-"configurazione globale del sistema. č anche possibile aggiungere nuovi\n"
-"pacchetti all'installazione corrente.\n"
-"\n"
-"Gli aggiornamenti dovrebbe svolgersi senza difficoltŕ per sistemi Mandrake\n"
-"Linux a partire dalla versione \"8.1\".\n"
-"\n"
-"Scegliete una delle seguenti modalitŕ di installazione, in base alla vostra\n"
-"conoscenza di GNU/Linux:\n"
-"\n"
-" * Raccomandata: se non avete mai installato il sistema operativo GNU/"
-"Linux,\n"
-"scegliete questa modalitŕ. L'installazione sarŕ molto semplice e vi\n"
-"verranno poste solo poche domande;\n"
-"\n"
-" * Esperto: se avete abbastanza familiaritŕ con GNU/Linux potete scegliere\n"
-"questa modalitŕ, che vi permetterŕ di effettuare un'installazione altamente\n"
-"personalizzata. Rispondere ad alcune delle domande che vi verranno poste\n"
-"potrebbe essere difficile se non avete una buona conoscenza di GNU/Linux,\n"
-"pertanto non fate questa scelta se non sapete bene quello che state\n"
-"facendo."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Normalmente DrakX provvede a individuare automaticamente la tastiera\n"
-"corretta (in base alla lingua che avete scelto) e voi non vedrete nemmeno\n"
-"questo passo. Tuttavia, potreste avere una tastiera che non corrisponde\n"
-"esattamente alla vostra lingua: se siete un francese che parla italiano, ad\n"
-"esempio, potreste comunque preferire una tastiera francese. Oppure, se\n"
-"parlate italiano ma vivete nel Québec, potreste trovarvi nella stessa\n"
-"situazione. In entrambi i casi, dovrete tornare a questa fase\n"
-"dell'installazione e selezionare una tastiera appropriata dalla lista.\n"
-"\n"
-"Cliccate sul pulsante \"Avanzato\" per vedere una lista completa delle\n"
-"tastiere supportate."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Scegliete la lingua che intendete usare per l'installazione e l'uso del\n"
-"sistema.\n"
-"\n"
-"Cliccando sul pulsante \"Avanzato\" potrete scegliere altre lingue da\n"
-"installare sul vostro computer. La selezione di altre lingue comporta\n"
-"l'installazione dei file relativi alla documentazione e alle applicazioni\n"
-"per ciascuna di esse. Se il vostro computer dovrŕ essere usato, ad esempio,\n"
-"anche da persone di madre lingua spagnola, potete scegliere l'italiano come\n"
-"lingua principale nella struttura ad albero e, nella sezione \"Avanzato\",\n"
-"apporre un segno di spunta sul pulsante grigio corrispondente a\n"
-"\"Spanish|Spain\".\n"
-"\n"
-"Č possibile installare i file per piů lingue allo stesso tempo. Dopo aver\n"
-"scelto quelle che preferite cliccate sul pulsante \"Ok\" per continuare."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"In genere DrakX individua automaticamente il numero di pulsanti presente\n"
-"sul vostro mouse, in caso contrario conclude che il vostro mouse č un mouse\n"
-"a due tasti e lo imposta in modo da emulare il terzo tasto. DrakX, inoltre,\n"
-"riconosce automaticamente se si tratta di un mouse PS/2, seriale o USB.\n"
-"\n"
-"Se volete specificare un diverso tipo di mouse, scegliete il vostro modello\n"
-"dall'elenco che vi viene proposto.\n"
-"\n"
-"Se scegliete un mouse diverso dal tipo predefinito, vi verrŕ mostrata una\n"
-"finestra dove potrete provarlo. Provate sia i pulsanti che l'eventuale\n"
-"rotellina per controllare che la configurazione sia corretta. Se il mouse\n"
-"non funziona correttamente, premete la barra spaziatrice o il tasto [Invio]\n"
-"per premere il pulsante \"Annulla\" ed effettuare una nuova scelta."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Scegliete la porta appropriata. La porta \"COM1\" sotto Windows, ad\n"
-"esempio, č chiamata \"ttyS0\" sotto GNU/Linux."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"Questo č il punto piů critico per la sicurezza del vostro sistema\n"
-"GNU/Linux: state per decidere la password di \"root\". \"root\" č\n"
-"l'amministratore del sistema, ed č l'unico utente autorizzato a compiere\n"
-"aggiornamenti, aggiungere altri utenti, cambiare la configurazione globale\n"
-"del sistema, etc. In breve, puň fare tutto ciň che vuole! Questo č il\n"
-"motivo per cui dovete scegliere una password che sia difficile da\n"
-"indovinare: DrakX vi dirŕ se č troppo facile. Potete anche scegliere di non\n"
-"digitare una password, ma noi vi consigliamo caldamente di farlo, almeno\n"
-"per un motivo: non pensate che, avviando il sistema con GNU/Linux, gli\n"
-"altri sistemi operativi che convivono con esso sulla stessa macchina siano\n"
-"al sicuro da errori; al contrario: \"root\" puň scavalcare ogni limitazione\n"
-"e (magari involontariamente) cancellare tutti i dati presenti sulle\n"
-"partizioni accedendo in maniera scorretta a queste ultime! Quindi č molto\n"
-"importante che sia difficile per gli utenti normali diventare \"root\".\n"
-"\n"
-"La password ideale č costituita da un insieme di caratteri alfanumerici\n"
-"lungo almeno 8 caratteri. Non scrivete mai su qualche appunto la password\n"
-"di \"root\", renderebbe troppo facile l'accesso al sistema da parte di\n"
-"estranei.\n"
-"\n"
-"Prestate attenzione, tuttavia, a non scegliere una password troppo lunga o\n"
-"complicata, perché dovete essere in grado di ricordarla senza troppo\n"
-"sforzo.\n"
-"\n"
-"La password non verrŕ mostrata mentre la digitate. Per questo motivo č\n"
-"necessario che venga inserita due volte, per ridurre il rischio di un\n"
-"errore di battitura. Se per caso commettete lo stesso errore due volte,\n"
-"questa password \"scorretta\" sarŕ quella che verrŕ richiesta la prima\n"
-"volta che vi connetterete al sistema.\n"
-"\n"
-"In modalitŕ Esperto vi verrŕ chiesto se il vostro computer č connesso a un\n"
-"server di autenticazione, secondo il protocollo NIS o LDAP.\n"
-"\n"
-"Se la vostra rete si basa sul protocollo LDAP (o NIS) per l'autenticazione,\n"
-"selezionate il pulsante \"LDAP\" (o \"NIS\") per effettuare\n"
-"l'autenticazione. Se non siete sicuri, chiedete al vostro amministratore di\n"
-"rete.\n"
-"\n"
-"Se il vostro computer non č connesso a una rete soggetta ad autenticazione,\n"
-"scegliete \"File locali\"."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"LILO e grub sono due ''bootloader'' di GNU/Linux. Un bootloader č un\n"
-"programma per l'avvio di uno o piů sistemi operativi. Questa fase, in\n"
-"genere, č del tutto automatica; DrakX, infatti, analizza il settore di boot\n"
-"del disco, e si comporta in base a quello che vi trova:\n"
-"\n"
-" * se trova un settore di boot di Windows, lo rimpiazza con un settore di\n"
-"boot di grub o LILO, in modo da permettervi di lanciare GNU/Linux o un\n"
-"altro OS;\n"
-"\n"
-" * se trova un settore di boot di grub o LILO, lo sostituisce con uno "
-"nuovo.\n"
-"\n"
-"In caso di dubbio, DrakX mostrerŕ una finestra di dialogo con varie\n"
-"opzioni:\n"
-"\n"
-" * \"Bootloader da usare\": avete tre scelte a disposizione:\n"
-"\n"
-" * \"GRUB\": se preferite grub (menu in modo testo);\n"
-"\n"
-" * \"LILO con menu grafico\": se preferite LILO con la sua interfaccia\n"
-"grafica;\n"
-"\n"
-" * \"LILO con menu in modo testo\": se preferite LILO nella sua versione "
-"con\n"
-"menu in modo testo.\n"
-"\n"
-" * \"Dispositivo di boot\": nella maggior parte dei casi non sarŕ "
-"necessario\n"
-"cambiare le impostazioni predefinite (\"/dev/hda\"), ma, se lo preferite,\n"
-"il bootloader puň essere installato sul secondo disco rigido\n"
-"(\"/dev/hdb\"), o persino su un floppy (\"/dev/fd0\");\n"
-"\n"
-" * \"Ritardo prima di avviare con l'immagine predefinita\": č il tempo\n"
-"lasciato all'utente per scegliere una voce diversa da quella predefinita\n"
-"nel menu del bootloader.\n"
-"\n"
-"!! Prestate particolare attenzione al fatto che, se scegliete di non\n"
-"installare un bootloader (scegliendo \"Annulla\" nella finestra di cui\n"
-"sopra), dovete essere sicuri di poter avviare il vostro sistema Mandrake\n"
-"Linux in altro modo! Accertatevi anche di sapere quello che fate se\n"
-"modificate qualcuna delle opzioni. !!\n"
-"\n"
-"Cliccando sul pulsante \"Avanzato\" di questa finestra avrete la\n"
-"possibilitŕ di scegliere tra molte opzioni avanzate, riservate agli utenti\n"
-"esperti.\n"
-"\n"
-"Dopo aver configurato i parametri generali del bootloader, verrŕ mostra la\n"
-"lista delle opzioni disponibili al momento del boot.\n"
-"\n"
-"Se sulla vostra macchina č giŕ installato un altro sistema operativo,\n"
-"quest'ultimo verrŕ automaticamente aggiunto al menu di avvio. Potete anche\n"
-"scegliere di configurare con precisione le opzioni esistenti: selezionate\n"
-"una voce e cliccate su \"Modifica\" per modificarne i parametri o\n"
-"rimuoverla; \"Aggiungi\" crea una nuova voce, mentre cliccando su \"Fatto\"\n"
-"passerete alla fase di installazione successiva."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (il LInux LOader) e GRUB sono bootloader: sono in grado di caricare\n"
-"indifferentemente GNU/Linux o altri sistemi operativi presenti sul vostro\n"
-"computer. Normalmente, questi sistemi operativi sono correttamente rilevati\n"
-"e installati. Se non avviene, potete aggiungere una voce a mano in questo\n"
-"schermo. State attenti a scegliere i parametri corretti.\n"
-"\n"
-"Potreste anche non voler dare l'accesso a questi sistemi operativi a\n"
-"chiunque, nel qual caso potete cancellare le voci corrispondenti, ma in\n"
-"questo caso avrete bisogno di un boot disk per caricarli!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Dovete adesso indicare dove volete che vengano collocate le informazioni\n"
-"necessarie per effettuare il boot con GNU/Linux.\n"
-"\n"
-"A meno che non sappiate esattamente quello che state facendo, scegliete\n"
-"\"Primo settore del disco rigido (MBR)\"."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-"Qui potrete scegliere il sistema di stampa da usare con questo computer.\n"
-"Altri sistemi operativi possono offrirvene uno, ma Mandrake Linux ve ne\n"
-"offre ben tre.\n"
-"\n"
-" * \"pdq\" che sta per ''print, don't queue'' (''stampa, non mettere in\n"
-"coda''), č una buona scelta se avete una connessione diretta con la\n"
-"stampante e volete essere in grado di risolvere rapidamente eventuali\n"
-"inceppamenti della carta, e inoltre non avete altre stampanti connesse via\n"
-"rete. Infatti puň gestire solo connessioni di rete molto semplici ed č\n"
-"comunque piuttosto lento in quest'ultimo caso. Scegliete \"pdq\" se questa\n"
-"č la vostra prima volta con GNU/Linux. Potrete cambiare la vostra scelta\n"
-"dopo aver terminato l'installazione lanciando PrinterDrake dal Centro di\n"
-"controllo Mandrake e cliccando sul pulsante Esperto.\n"
-"\n"
-" * \"CUPS\"''Common Unix Printing System'' (''Sistema di stampa unificato\n"
-"per Unix''), offre risultati eccellenti sia che dobbiate stampare sulla\n"
-"vostra stampante locale, sia nel caso che la stampa debba essere effettuata\n"
-"sull'altra faccia del pianeta. Č semplice da usare e puň agire come server\n"
-"o client per il vecchio sistema di stampa \"lpd\". Infatti č compatibile\n"
-"con i sistemi precedenti. Ha molte frecce al suo arco, ma la configurazione\n"
-"basica č quasi altrettanto semplice di quella per \"pdq\". Se avete bisogno\n"
-"di emulare un server \"lpd\" dovete attivare il demone \"cups-lpd\".\n"
-"Dispone di interfaccia grafica per la stampa e per la configurazione delle\n"
-"opzioni della stampante.\n"
-"\n"
-" * \"lprNG\"''line printer daemon New Generation'' (''demone di stampa di\n"
-"nuova generazione''. Questo sistema č approssimativamente equivalente agli\n"
-"altri, ma č anche in grado di stampare su dispositivi collegati per mezzo\n"
-"di una rete Novell, dato che supporta il protocollo IPX, e puň stampare\n"
-"direttamente in base a comandi via shell. Se avete bisogno di una\n"
-"connessione di tipo Novell, o di stampare senza fare uso di pipe,\n"
-"utilizzate lprNG. In caso contrario, č preferibile usare CUPS dato che č\n"
-"piů semplice e migliore nel gestire stampanti di rete."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"Ora DrakX procederŕ con il rilevamento di tutti i dischi rigidi e altri\n"
-"dispositivi IDE presenti sul vostro computer, e cercherŕ anche di stabilire\n"
-"se sul vostro sistema sono presenti una o piů schede SCSI di tipo PCI. Se\n"
-"verrŕ individuato un dispositivo di questo tipo, DrakX installerŕ\n"
-"automaticamente il driver appropriato.\n"
-"\n"
-"Dato che il riconoscimento automatico in alcuni casi potrebbe non riuscire\n"
-"a individuare una particolare periferica, vi verrŕ comunque chiesto se\n"
-"avete una scheda SCSI PCI diversa da quelle eventualmente identificate\n"
-"oppure no. Scegliete \"Sě\" se siete sicuri che nel vostro computer č\n"
-"presente un'altra scheda SCSI: potrete scegliere la vostra scheda da una\n"
-"lista. Scegliete \"No\" se non disponete di nessun tipo di hardware SCSI, o\n"
-"se siete soddisfatti del riconoscimento automatico. Se non siete sicuri,\n"
-"potete anche controllare la lista dell'hardware rilevato nella vostra\n"
-"macchina selezionando \"Vedi informazioni hardware\" e cliccando su \"Ok\".\n"
-"Controllate l'elenco dell'hardware individuato e poi cliccate sul pulsante\n"
-"\"Ok\" per ritornare alla domanda relativa alla scheda SCSI.\n"
-"\n"
-"Se sarete costretti a specificare manualmente il tipo di scheda in vostro\n"
-"possesso, DrakX vi chiederŕ se intendete indicare delle opzioni da usare\n"
-"con essa. Vi consigliamo di permettere a DrakX di esaminare l'hardware per\n"
-"stabilire le particolari opzioni della scheda che dovranno essere usate\n"
-"all'inizializzazione; questo metodo in genere permette di ottenere buoni\n"
-"risultati.\n"
-"\n"
-"Se DrakX non riesce a stabilire quali sono le opzioni da passare alla\n"
-"scheda, dovrete specificarle manualmente. Consultate il ''Manuale\n"
-"dell'utente'' (capitolo 3, paragrafo \"Ricerca di informazioni sul vostro\n"
-"hardware\") per qualche suggerimento su come ottenerle dalla documentazione\n"
-"dell'hardware, dal sito web del produttore (se disponete di un accesso a\n"
-"Internet) o da MicrosoftWindows (se avete utilizzato la stessa scheda con\n"
-"Windows sul vostro stesso sistema)."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot č un bootloader per hardware NewWorld MacIntosh. Č in grado di\n"
-"avviare GNU/Linux, MacOS, o MacOSX, se presenti sul vostro computer.\n"
-"Normalmente gli altri sistemi operativi sono identificati e installati\n"
-"correttamente. Se cosě non fosse, potete aggiungere manualmente una voce\n"
-"in questa schermata. Accertatevi di scegliere i parametri corretti.\n"
-"\n"
-"\n"
-"Le opzioni principali di Yaboot sono:\n"
-"\n"
-"\n"
-" - Init Message: un semplice messaggio di testo che viene mostrato prima\n"
-"del prompt di boot.\n"
-"\n"
-"\n"
-" - Boot Device: specificate dove si trovano le informazioni richieste per \n"
-"avviare GNU/Linux. In genere č necessario prima impostare una partizione "
-"di \n"
-"bootstrap che contenga queste informazioni.\n"
-"\n"
-"\n"
-" - Open Firmware Delay: a differenza di LILO, sono possibili due pause \n"
-"diverse. La prima si misura in secondi, e a questo punto potete scegliere \n"
-"CD, OF boot, MacOS, o Linux.\n"
-"\n"
-"\n"
-" - Kernel Boot Timeout: questa pausa č simile all'attesa di LILO. Dopo \n"
-"aver selezionato Linux, avrai a disposizione un'attesa misurata in decimi "
-"di\n"
-"secondo prima che venga selezionata la descrizione del kernel predefinita.\n"
-"\n"
-"\n"
-" - Enable CD Boot?: selezionando questa opzione potrai scegliere 'C' per CD "
-"al\n"
-"primo avvio del sistema.\n"
-"\n"
-"\n"
-" - Enable OF Boot?: selezionando questa opzione potrai scegliere 'N' per "
-"Open\n"
-"Firmware al primo avvio del sistema.\n"
-"\n"
-"\n"
-" - Default OS: puoi scegliere qual č il SO predefinito da avviare quando "
-"termina \n"
-"la pausa dell'Open Firmware."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"Qui sono riportati vari parametri relativi al vostro sistema. In base\n"
-"all'hardware installato, potrebbero essere visualizzate le seguenti voci:\n"
-"\n"
-" * \"Mouse\": controllate la configurazione attuale del mouse, e cliccate\n"
-"sul pulsante per cambiarla, se necessario;\n"
-"\n"
-" * \"Tastiera\": controllate l'attuale impostazione della tastiera, e\n"
-"cliccate sul pulsante per cambiarla, se necessario;\n"
-"\n"
-" * \"Fuso orario\": DrakX, come opzione predefinita, deduce il vostro fuso\n"
-"orario dalla lingua che avete scelto. Ma anche in questo caso, come per la\n"
-"scelta della tastiera, potreste non trovarvi nella nazione cui corrisponde\n"
-"la lingua che avete scelto; in tal caso sarŕ necessario cliccare su questo\n"
-"pulsante per poter configurare il fuso orario in base a quello dell'area\n"
-"geografica in cui vivete;\n"
-"\n"
-" * \"Stampante\": cliccando sul pulsante \"Nessuna stampante\" si "
-"richiamerŕ\n"
-"l'assistente di configurazione della stampante;\n"
-"\n"
-" * \"Scheda audio\": se sul vostro sistema č stata individuata una scheda\n"
-"audio, verrŕ mostrata qui. Al momento dell'installazione non č possibile\n"
-"apportare alcuna modifica;\n"
-"\n"
-" * \"Scheda TV\": se sul vostro sistema č stata individuata una scheda TV,\n"
-"verrŕ mostrata qui. Al momento dell'installazione non č possibile apportare\n"
-"alcuna modifica;\n"
-"\n"
-" * \"Scheda ISDN\": se sul vostro sistema č stata individuata una scheda\n"
-"ISDN, verrŕ mostrata qui. Potete cliccare sul pulsante relativo per\n"
-"cambiarne i parametri."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Scegliete il disco rigido che volete cancellare per poter installare la\n"
-"nuova partizione per Mandrake Linux. Attenzione! tutti i dati presenti\n"
-"andranno perduti e non saranno piů recuperabili!"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/it/drakx-help.xml
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Cliccate sul pulsante \"OK\" se volete tutte le partizioni e i dati\n"
-"presenti su questo disco rigido. Prestate attenzione, dopo aver cliccato su\n"
-"\"OK\" non potrete piů recuperare le partizioni e i dati presenti sul\n"
-"disco, compresi eventuali dati di Windows.\n"
-"\n"
-"Cliccate su \"Annulla\" per annullare questa operazione senza che vengano\n"
-"persi dati o partizioni presenti su questo disco rigido."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Non riesco ad accedere ai moduli del kernel corrispondenti al vostro kernel "
-"(il file %s č assente), questo in genere significa che il vostro dischetto "
-"di boot non č aggiornato rispetto al supporto di installazione. Per favore "
-"create un dischetto di boot aggiornato."
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "Dovete formattare anche %s"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Hai selezionato i seguenti server: %s\n"
-"\n"
-"\n"
-"Questi server verranno attivati automaticamente. Non presenta problemi di\n"
-"sicurezza conosciuti, ma potrebbero esserne scoperti di nuovi. In tal caso,\n"
-" accertati di effettuare un aggiornamento non appena possibile.\n"
-"\n"
-"\n"
-"Vuoi davvero installare questi server?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Non posso usare broadcast senza un dominio NIS"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Inserisci un floppy MS-DOS nel drive %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Questo floppy non č stato formattato usando MS DOS/Windows"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Per usare la selezione di pacchetti che avete salvato, dovete cominciare "
-"l'installazione digitando ``linux defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Errore leggendo il file %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Parte dell'hardware del tuo computer richiede drivers ''proprietari'' per\n"
-"funzionare. Puoi trovare informazioni al riguardo presso: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Devi avere una partizione radice.\n"
-"A questo scopo, crea una partizione (o clicca su una giŕ esistente).\n"
-"Quindi clicca su \"Punto di mount\" e assegna '/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Devi avere una partizione di swap"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Non hai una partizione di swap\n"
-"\n"
-"Continuo comunque?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Devi avere una partizione FAT montata su /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Usa lo spazio libero"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Non c'č abbastanza spazio libero per allocare nuove partizioni"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Usa partizione esistente"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Non c'č una partizione esistente da usare"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Usa la partizione Windows per loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Che partizione vuoi usare per Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Scegli le dimensioni"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Dimensione partizione radice in Mb: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Dimensione partizione di swap in Mb: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Usa lo spazio libero della partizione Windows"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Quale partizione vuoi ridimensionare?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Calcolo i confini del filesystem di Windows "
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Il ridimensionatore della FAT non riesce a gestire la tua partizione, \n"
-"si č verificato il seguente errore: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"La tua partizione Windows č troppo frammentata, per favore prima\n"
-"lancia ''defrag''"
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"ATTENZIONE!\n"
-"\n"
-"DrakX ora ridimensionerŕ la tua partizione Windows. Stai attento: questa\n"
-"operazione č pericolosa. Se non lo hai giŕ fatto, dovresti prima uscire\n"
-"dall'installazione, lanciare scandisk sotto Windows (e opzionalmente "
-"defrag),\n"
-"e poi riavviare l'installazione. Dovresti anche fare il backup dei tuoi "
-"dati.\n"
-"Quando sei sicuro, premi Ok."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Quanto spazio vuoi lasciare per Windows sulla"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "partizione %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Ridimensionamento FAT fallito: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Non c'č una partizione FAT da ridimensionare o da usare come loopback (o \n"
-"non c'č abbastanza spazio su di essa)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Cancella l'intero disco"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Rimuovi Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Hai piů di un disco rigido, su quale vuoi installare linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"TUTTE le partizioni esistenti e i loro dati verranno persi sul disco %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Partizionamento personalizzato del disco"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Usa fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Adesso puoi partizionare %s\n"
-"Quando hai finito, non dimenticare di salvare usando 'w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Non hai sufficiente spazio libero sulla partizione Windows"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Non trovo lo spazio per installare Mandrake Linux"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr ""
-"Il wizard di partizionamento di DrakX ha trovato le seguenti soluzioni:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partizionamento fallito: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Sto attivando la rete"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Sto disattivando la rete"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"C'č stato un errore, ma non so come gestirlo correttamente.\n"
-"Continua a tuo rischio e pericolo."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Punto di mount doppio: %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Alcuni pacchetti importanti non sono stati installati correttamente.\n"
-"O il lettore di cdrom o il tuo cdrom sono danneggiati.\n"
-"Controlla il cdrom su un sistema giŕ installato digitando \"rpm -qpl "
-"mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Benvenuto a %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Nessun drive floppy disponibile"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Inizio fase '%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Il tuo sistema ha poche risorse. Potresti avere problemi installando\n"
-"Mandrake Linux. In tal caso, in alternativa puoi provare un'installazione \n"
-"testuale. Per questo, premi 'F1' all'avvio da CDROM, poi digita 'text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Classe d'installazione"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Per favore, scegli una delle seguenti classi d'installazione:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"La dimensione totale dei gruppi da te scelti č approssimativamente %d Mb.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Se desideri installare occupando una quantitŕ di spazio minore,\n"
-"scegli la percentuale dei pacchetti che vuoi installare.\n"
-"\n"
-"Una bassa percentuale installerŕ solo i pacchetti piů importanti;\n"
-"una percentuale del 100%% installerŕ tutti i pacchetti scelti."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Hai spazio sul tuo disco rigido solo per %d%% di questi pacchetti.\n"
-"\n"
-"Scegli una percentuale dei pacchetti che vuoi installare.\n"
-"Una bassa percentuale installerŕ solo i pacchetti piů importanti;\n"
-"una percentuale del %d%% installerŕ tutti i pacchetti possibili."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Potrai scegliere piů specificatamente nella prossima fase."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Percentuale dei pacchetti da installare"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Selezione Gruppi di Pacchetti"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Selezione individuale pacchetti"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Domensione totale: %d / %d Mb"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Pacchetto errato"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Nome: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versione: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Dimensioni: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Importanza: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Non puoi selezionare questo pacchetto perchč non c'č abbastanza spazio \n"
-"rimanente per installarlo"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "I seguenti pacchetti stanno per essere installati"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "I seguenti pacchetti satanno per essere rimossi"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Non puoi selezionare/deselezionare questo pacchetto"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Questo č un pacchetto obbligatorio, non puň essere deselezionato"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Non puoi deselezionare questo pacchetto. č giŕ installato"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Questo pacchetto deve essere aggiornato\n"
-"Sei sicuro di volerlo deselezionare?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Non puoi deselezionare questo pacchetto. Deve essere aggiornato"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Mostra i pacchetti selezionati automaticamente"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Installa"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Carica/Salva su floppy"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Aggiornamento scelta pacchetti"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Installazione minima"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Scegli i pacchetti da installare"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Installazione"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Sto valutando"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Tempo restante "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Per favore attendi, sto preparando l'installazione"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pacchetti"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Installazione del pacchetto %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Accetta"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Rifiuta"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Sostituisci il Cd-Rom!\n"
-"\n"
-"Per favore inserisci il Cd-Rom chiamato \"%s\" nel tuo lettore e premi Ok "
-"quando\n"
-"pronto. Se non ce l'hai, premi Annulla per evitare l'installazione da questo "
-"Cd-Rom."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Vado avanti comunque?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "C'č stato un errore ordinando i pacchetti:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "C'č stato un errore installando i pacchetti:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Attenzione\n"
-"\n"
-"Per favore leggete con attenzione il documento che segue.\n"
-"Se non siete d'accordo con una qualsiasi parte, non potete installare il CD\n"
-"successivo. Premete 'Rifiuta' per continuare l'installazione senza di esso.\n"
-"\n"
-"\n"
-"Alcune componenti software contenute nel CD successivo non sono\n"
-"soggette alla licenza GPL o a licenze simili. Ciascuna di tali componenti\n"
-"č pertanto soggetta ai termini e alle condizioni della propria\n"
-"licenza specifica. Per favore leggete con attenzione e attenetevi a tali\n"
-"licenze specifiche prima di usare o redistribuire tali\n"
-"componenti software. Tali licenze in genere proibiscono\n"
-"il trasferimento, la duplicazione (eccetto che per scopi di backup),\n"
-"la redistribuzione, il reverse engineering, il deassemblaggio,\n"
-"la decompilazione o la modifica della componente in questione.\n"
-"Qualunque infrazione del contratto porterŕ alla immediata cancellazione dei "
-"vostri\n"
-"diritti per quanto riguarda la specifica licenza.\n"
-"A meno che la licenza specifica non vi accordi tali diritti,\n"
-"in genere non potete installare i programmi su piů di un computer, o "
-"adattarlo in\n"
-"modo che possa essere usato su una rete. In caso di\n"
-"dubbio, per favore contattate direttamente il distributore\n"
-"o il curatore della componente. Il trasferimento a terzi o la copia di tali\n"
-"componenti, documentazione inclusa, č in genere proibito.\n"
-"\n"
-"\n"
-"Tutti i diritti relativi alle componenti del CD successivo appartengono ai\n"
-"loro rispettivi autori e sono protetti dalle leggi relative alla proprietŕ "
-"intellettuale\n"
-"e al copyright applicabili ai programmi software.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Si č verificato un errore"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "Vuoi davvero abbandonare l'installazione?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Accordo di licenza"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Introduzione\n"
-"\n"
-"Nel seguito intendiamo con \"Software\" il sistema operativo e le diverse "
-"componenti disponibili\n"
-"nella distribuzione Mandrake Linux. Il Software include, ma non č limitato "
-"a, l'insieme di\n"
-"programmi, metodi, regole e documentazione relativi al sistema operativo e "
-"alle diverse componenti\n"
-"della distribuzione Mandrake Linux.\n"
-"\n"
-"\n"
-"1. Licenza\n"
-"\n"
-"Per favore leggete con attenzione questo documento.\n"
-"Questo documento costituisce un contratto fra voi e la MandrakeSoft S.A. per "
-"quanto riguarda l'uso del Software. L'azione di installare, duplicare o "
-"usare in qualsiasi modo il Software implica l'esplicita accettazione e il "
-"pieno consenso ad adeguarsi ai termini e alle condizioni di questa Licenza. "
-"Se non siete d'accordo con uno o piů punti della Licenza, non avete "
-"l'autorizzazione a installare, duplicare o utilizzare il Software. Qualunque "
-"tentativo di installare, duplicare o utilizzare il Software in modi non "
-"conformi ai termini e alle condizioni della Licenza porterŕ automaticamente "
-"all'annullamento della licenza e alla revoca dei vostri diritti ai sensi "
-"della stessa. Una volta invalidata la Licenza, avete l'obbligo di "
-"distruggere immediatamente tutte le copie del Software in vostro possesso.\n"
-"\n"
-"\n"
-"2. Garanzia e limiti della garanzia\n"
-"\n"
-"Il Software e la documentazione allegata sono forniti \"come sono\", senza "
-"nessuna garanzia, nei limiti permessi dalla legge. In nessun caso, e nei "
-"limiti permessi dalla legge, la MandrakeSoft S.A. potrŕ essere ritenuta "
-"responsabile per un qualsiasi danno, speciale, accidentale, diretto o "
-"indiretto (inclusi, senza limitazioni, danni dovuti alla perdita di attivitŕ "
-"commerciali, interruzioni dell'attivitŕ commerciale, perdite finanziarie, "
-"oneri legali e sanzioni pecuniarie che derivino da sentenze giudiziarie, o "
-"qualsiasi altra perdita conseguente), dovuto all'utilizzo o "
-"all'impossibilitŕ di utilizzo del Software, anche nel caso in cui "
-"MandrakeSoft S.A. sia stata avvertita della possibilitŕ che si verificassero "
-"tali danni.\n"
-"\n"
-"RESPONSABILITŔ LIMITATA IN RELAZIONE AL POSSESSO O ALL'USO DI SOFTWARE "
-"PROIBITO IN ALCUNE NAZIONI\n"
-"\n"
-"Nei limiti di legge, in nessun caso MandrakeSoft S.A. o i suoi distributori "
-"potranno essere ritenuti responsabili per un qualsiasi danno, speciale, "
-"accidentale, diretto o indiretto (inclusi, senza limitazioni, danni dovuti "
-"alla perdita di attivitŕ commerciali, interruzioni dell'attivitŕ "
-"commerciale, perdite finanziarie, oneri legali e sanzioni pecuniarie che "
-"derivino da sentenze giudiziarie, o qualsiasi altra perdita conseguente), "
-"dovuto al possesso e all'uso di componenti software, o derivante dall'aver "
-"scaricato componenti software da uno dei siti di Mandrake Linux, che "
-"risultino proibiti o soggetti a limitazioni d'uso in alcune nazioni per "
-"effetto di leggi locali. Questa limitazione di responsabilitŕ si applica, ma "
-"non č limitata, alle componenti di crittografia sicura incluse nel "
-"Software.\n"
-"\n"
-"\n"
-"3. La Licenza GPL (\"General Public License\") e altre Licenze collegate\n"
-"\n"
-"Il Software č costituito da componenti create da persone ed enti diversi. La "
-"maggior parte di queste componenti sono soggette ai termini e alle "
-"condizioni della GNU General Public License, d'ora in poi chiamata \"GPL\", "
-"o di licenze simili. La maggior parte di queste licenze vi consente di "
-"usare, duplicare, adattare o redistribuire le componenti software che le "
-"adottano. Per favore leggete con attenzione i termini e le condizioni della "
-"licenza relativa a ciascuna componente prima di utilizzarla. Qualsiasi "
-"domanda relativa alla licenza di una componente software dovrebbe essere "
-"indirizzata all'autore di tale componente, e non alla MandrakeSoft. I "
-"programmi sviluppati dalla MandrakeSoft S.A. sono soggetti alla licenza GPL."
-"La documentazione scritta dalla MandrakeSoft S.A. č soggetta a una licenza "
-"specifica. Per favore consultate la documentazione per ulteriori dettagli.\n"
-"\n"
-"\n"
-"4. Diritti di proprietŕ intellettuale\n"
-"\n"
-"Tutti i diritti relativi alle componenti del Software appartengono ai "
-"rispettivi autori e sono protetti dalle leggi che disciplinano la proprietŕ "
-"intellettuale e il copyright applicabili ai programmi software.La "
-"MandrakeSoft S.A. si riserva il diritto di modificare o adattare il "
-"Software, in parte o in tutto, con ogni mezzo e per qualsiasi scopo."
-"\"Mandrake\", \"Mandrake Linux\" e i relativi logo sono proprietŕ della "
-"MandrakeSoft S.A.\n"
-"\n"
-"\n"
-"5. Disposizioni diverse\n"
-"\n"
-"Se una qualsiasi parte di questo contratto č ritenuta non valida, illegale o "
-"non applicabile in seguito a sentenza giudiziaria in una determinata "
-"giurisdizione, tale parte č esclusa dal contratto. Rimangono vincolanti le "
-"altre parti applicabili del contratto.I termini e le condizioni di questa "
-"Licenza sono soggetti alle leggi vigenti in Francia.Qualsiasi disputa in "
-"merito ai termini di questa licenza verrŕ risolta preferibilmente per via "
-"extra-giudiziaria. Come ultima risorsa, la disputa verrŕ portata "
-"all'attenzione del Tribunale competente di Parigi - Francia.Per qualsiasi "
-"domanda riguardo questo documento, per favore contattate MandrakeSoft S.A.\n"
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Tastiera"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Per favore, scegli la mappa della tastiera."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Ecco la lista completa delle tastiere disponibili"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Che classe di installazione preferisci?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Installa/Aggiorna"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Č un'installazione o un aggiornamento?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Raccomandata"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Esperto"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Aggiorna"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Solo aggiornamento pacchetti"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Per favore, scegli il tipo del tuo mouse."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Porta del mouse"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Per favore scegli a che porta seriale č connesso il mouse."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Emulazione pulsanti"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emulazione pulsante 2"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emulazione pulsante 3"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Configuro schede PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Sto configurando IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "nessuna partizione disponibile"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Controllo delle partizioni per trovare i punti di mount"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Scegli i punti di mount"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Non posso leggere la tua tabella delle partizioni, č troppo corrotta \n"
-"per me :( . Posso provare a continuare a svuotare le partizioni danneggiate\n"
-"(TUTTI I DATI verranno persi!). L'altra soluzione č di impedire a DrakX di\n"
-"modificare la tabella delle partizioni. (L'errore č %s)\n"
-"\n"
-"Ti va bene liberare tutte le partizioni?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"Diskdrake ha fallito la lettura della tabella delle partizioni.\n"
-"Continua a tuo rischio e pericolo!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Non c'č spazio libero per un bootstrap di 1MB! L'installazione continua, ma "
-"per avviare il sistema dovrai creare la partizione di bootstrap con DiskDrake"
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Non ho trovato una partizione root da aggiornare"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Partizione radice"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Qual'č la partizione radice (/) del tuo sistema?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Devi resettare affinché le modifiche alla tabella delle partizioni\n"
-"abbiano effetto"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Scegli le partizioni che vuoi formattare"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Controllo blocchi danneggiati?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formattazione partizioni"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Sto creando e formattando il file %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr ""
-"Swap insufficiente per completare l'installazione. Per favore, aumentane le "
-"dimensioni"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Sto cercando i pacchetti disponibili"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Sto cercando i pacchetti da aggiornare"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Il tuo sistema non ha abbastanza spazio rimanente per l'installazione o\n"
-"l'aggiornamento (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completa (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minima (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Raccomandata (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Per favore scegli di caricare o salvare la selezione pacchetti su floppy.\n"
-"Il formato č lo stesso dei floppy generati con auto_install."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Carica da floppy"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Caricamento da floppy"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Selezione pacchetti"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Inserisci un floppy contenente la scelta dei pacchetti"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Salva su floppy"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Lo spazio indicato č maggiore dello spazio disponibile"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Tipo di installazione"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Non avete selezionato nessun gruppo di pacchetti.\n"
-"Per favore scegliete il tipo di installazione minima desiderato:"
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "Con X"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "Con la documentazione essenziale (raccomandata!)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Installazione veramente minima (in particolare niente urpmi)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Se hai tutti i CDs nella lista qui sopra, clicca Ok.\n"
-"Se non hai nessuno di questi CDs, clicca su Annulla.\n"
-"Se mancano solo alcuni dei CD, deselezionali, e poi clicca Ok."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom chiamato \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Sto preparando l'installazione"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Installazione del pacchetto %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Configurazione post installazione"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Per favore inserisci il floppy di avvio utilizzato nel drive %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Per favore inserisci il floppy di aggiornamento moduli nel drive %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Hai ora la possibilitŕ di scaricare software per la cifratura dei dati.\n"
-"\n"
-"ATTENZIONE !\n"
-"A causa dei diversi requisiti generali applicabili a questi software e\n"
-"imposti da varie nazioni, clienti e/o utenti finali di questi software "
-"dovrebbero\n"
-"assicurarsi che le leggi della propria nazione consentano di scaricare, "
-"archiviare\n"
-"e/o usare questo tipo di software.\n"
-"\n"
-"Inoltre clienti e/o utenti finali dovrebbero prestare particolare attenzione "
-"a non infrangere\n"
-"le leggi della propria nazione. Se clienti e/o utenti finali non dovessero\n"
-"rispettare i dettami di tali leggi in vigore, potrebbero incorrere in gravi\n"
-"sanzioni.\n"
-"\n"
-"Sia Mandrakesoft sia i suoi produttori e fornitori non potranno essere "
-"ritenuti responsabili\n"
-"per danni speciali, indiretti o accidentali (inclusi, ma non limitati a, "
-"perdite\n"
-"di guadagni, interruzioni di affari, perdita di dati commerciali e altre "
-"perdite\n"
-"pecuniarie, ed eventuali multe e indennitŕ da pagare a seguito di sentenza "
-"di \n"
-"tribunale) derivanti da uso, possesso, o semplice scaricamento di questi "
-"software,\n"
-"a cui clienti e/o utenti finali abbiano eventuale accesso dopo aver "
-"sottoscritto\n"
-"il presente accordo.\n"
-"\n"
-"Per ogni eventuale delucidazione in relazione a questo argomento, si prega "
-"di\n"
-"contattare\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Adesso avete la possibilitŕ di scaricare dei pacchetti aggiornati che sono\n"
-"stati distribuiti dopo l'uscita della distribuzione.\n"
-"\n"
-"Riceverete aggiornamenti relativi alla sicurezza e/o bug fix, ma č "
-"necessario\n"
-"disporre di una connessione a Internet per continuare.\n"
-"\n"
-"Volete installare gli aggiornamenti?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Connessione con il sito Mandrake Linux per avere la lista dei mirror "
-"disponibili"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Scegli un mirror da cui prendere i pacchetti"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Conessione al mirror per avere la lista dei pacchetti disponibili"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Qual'č il tuo fuso orario?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "L'orologio del tuo hardware č settato su GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Sincronizzazione automatica dell'ora (usando NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "Server NTP"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Server CUPS remoto"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Nessuna stampante"
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "Hai una scheda audio ISA?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-"Lanciate \"sndconfig\" dopo l'installazione per configurare la vostra scheda "
-"audio"
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Non č stata rilevata nessuna scheda audio. Provate con \"harddrake\"\n"
-"dopo l'installazione."
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Riepilogo"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Mouse"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Fuso orario"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Stampante"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "Scheda ISDN"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Scheda audio"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "Scheda TV"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "File locali"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Scegli password per root"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Nessuna Password"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Questa password č troppo semplice (deve essere almeno di %d caratteri)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autenticazione"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Autenticazione LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "Server LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "Autenticazione NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "Dominio NIS"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "Server NIS"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Un disco di avvio personalizzato provvede un modo di accesso al tuo sistema\n"
-"Linux senza dipendere dal normale bootloader. Ciň č utile se non vuoi\n"
-"installare SILO sul tuo sistema, o un altro sistema operativo rimuove\n"
-"SILO o SILO non funziona con la tua configurazione hardware. Un disco di "
-"avvio\n"
-"personalizzato puň anche essere usato con l'immagine di salvataggio di\n"
-"Mandrake, rendendo molto piů facile il ripristino dopo gravi errori\n"
-"del sistema.\n"
-"\n"
-"Se vuoi creare un disco di avvio per il tuo sistema, inserisci un floppy\n"
-"nel primo drive e premi \"Ok\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Primo drive floppy"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Secondo drive floppy"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Salta"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Un disco di avvio personalizzato provvede un modo di accesso al tuo sistema\n"
-"Linux senza dipendere dal normale bootloader. Ciň č utile se non vuoi\n"
-"installare LILO (o Grub) sul tuo sistema, o un altro sistema operativo "
-"rimuove\n"
-"LILO o LILO non funziona con la tua configurazione hardware. Un disco di "
-"avvio\n"
-"personalizzato puň anche essere usato con l'immagine di salvataggio di\n"
-"Mandrake, rendendo molto piů facile il ripristino dopo gravi errori\n"
-"del sistema. Vuoi creare un disco di avvio per il tuo sistema?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-"\n"
-"\n"
-"(ATTENZIONE! State usando XFS per la vostra partizione radice,\n"
-"molto probabilmente non sarŕ possibile creare un floppy di 1.44 Mb\n"
-"perché XFS necessita di in driver molto grande)."
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Spiacente, nessun drive floppy disponibile"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
-"Scegli il drive floppy che vuoi utilizzare per creare il disco di avvio"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Inserisci un floppy nel drive %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Creazione disco di avvio"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Preparazione del bootloader"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Apparentemente disponi di una macchina OldWorld o\n"
-" sconosciuta, il bootloader yaboot non andrŕ bene per te.\n"
-"L'installazione continuerŕ, ma dovrai usare\n"
-" BootX per avviare il tuo computer"
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Vuoi usare aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Errore installando aboot, \n"
-"provo a forzare l'installazione anche se ciň distrugge la prima partizione?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Sto installando il bootloader"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr ""
-"Installazione del bootloader fallita. Si č verificato il seguente errore:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Potrebbe essere necessario cambiare il dispositivo di boot Open Firmware\n"
-" per abilitare il bootloader. Se non vedete il prompt del bootloader\n"
-" dopo il riavvio, premete Command-Option-O-F al riavvio e digitate:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Poi digitate: shut-down\n"
-"Al boot successivo dovreste vedere il prompt del bootloader."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Inserisci un floppy vuoto nel drive %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Sto creando il floppy di auto installazione"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Alcune fasi non sono completate.\n"
-"\n"
-"Vuoi veramente interrompere adesso?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Congratulazioni, l'installazione č completa.\n"
-"Rimuovi il disco di avvio e premi Invio per riavviare il sistema.\n"
-"\n"
-"\n"
-"Per informazioni su aggiornamenti disponibili per questa release di Linux\n"
-"Mandrake, consulta l'Errata disponibile su\n"
-"\n"
-"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Informazioni su come configurare il tuo sistema sono disponibili nel "
-"capitolo\n"
-"sulla post-installazione della Guida Ufficiale dell'Utente Mandrake Linux."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Crea il floppy di auto installazione"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"L'auto installazione puň essere del tutto automatizzata se desiderate,\n"
-"ma in tal caso il programma partizionerŕ automaticamente il disco!!\n"
-"(questa opzione č pensata per l'installazione su un'altra macchina).\n"
-"\n"
-"Probabilmente preferirete ripetere l'installazione.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automatizzata"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Ripeti"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Salva scelta pacchetti"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Installazione Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> muove il cursore | <Barra> seleziona | <F12> videata succ."
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu manca"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "manca l'aiuto per la console"
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Scegli un file"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Avanzato"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Di base"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Attendere prego"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Espandi struttura"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Raggruppa struttura"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Cambia tra ordinamento semplice o a gruppi"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Scelta errata, prova di nuovo\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "La tua scelta? (default %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Entrate che dovrete riempire:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "La tua scelta? (0/1, default `%s') "
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Pulsante `%s': %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "Vuoi cliccare su questo pulsante?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "La tua scelta? (default `%s'%s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Ci sono molte cose fra cui scegliere (%s)\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Per favore scegliete il primo numero dell'intervallo di 10 che desiderate\n"
-"modificare, oppure premete Invio per continuare.\n"
-"La vostra scelta?"
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Attenzione, un'etichetta č cambiata:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Riproporre"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Ceca (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Tedesca"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Spagnola"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Finlandese"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Francese"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norvegese"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polacca"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Russa"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Svedese"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Tastiera UK"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Tastiera US"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Albanese"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armena (vecchia)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armena (macchina da scrivere)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armena (fonetica)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjana (latina)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belga"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgara (fonetica)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "Bulgara (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasiliana (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Bielorussa"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Svizzera (mappa tedesca)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Svizzera (mappa francese)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Ceca (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Tedesca (nessun tasto morto)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Danese"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norvegese)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Svedese)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estone"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgiana (mappa \"Russa\")"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgiana (mappa \"Latina\")"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Greca"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Ungherese"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Croata"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Israeliana"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Israeliana (Fonetica)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iraniana"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandese"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italiana"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Giapponese 106 tasti"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Tastiera Coreana"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latino Americana"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituana AZERTY (vecchia)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituana AZERTY (nuova)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituana \"numero riga\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituana \"fonetica\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "Lettone"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Macedone"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Olandese"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Polacca (mappa qwerty)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Polacca (mappa qwertz)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portoghese"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Canadese (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Romena (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Romena (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Russa (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slovena"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovacca (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovacca (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Serba (cirillica)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "Tamil"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Tastiera Thai"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Tastiera Tajik"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turca (modulo \"F\" tradizionale)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turca (modello \"Q\" moderno)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ucraina"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Tastiera US (internazionale)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamita \"riga numerica\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Yugoslava (latino)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr "Tasto Alt di destra"
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr "Entrambi i tasti Shift allo stesso tempo"
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr "I tasti Ctrl e Shift allo stesso tempo"
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr "Il tasto CapsLock"
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Tasti Ctrl e Alt allo stesso tempo"
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr "I tasti Alt e Shift allo stesso tempo"
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr "Tasto \"Menu\""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr "Tasto \"Windows\" di sinistra"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr "Tasto \"Windows\" di destra"
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Mount circolari %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Prima rimuovi i volumi logici\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"Il supporto PCMCIA non č piů disponibile per i kernel 2.2, per favore usate "
-"un kernel 2.4."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Mouse"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Mouse con rotellina su porta PS2 generico "
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius Netscorll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 pulsante"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Mouse generico a 2 Pulsanti"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generico"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Ruota"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "seriale"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Mouse generico a 3 Pulsanti"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech serie CC (seriale)"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "Serie MM"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Mouse Logitech (seriale, vecchio tipo C7)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 pulsanti"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 pulsanti"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "nessuno"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Nessun mouse"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Per favore prova il mouse"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Per attivare il mouse"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "MUOVI LA RUOTA!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Finisci"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Avanti ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Indietro"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Č corretto?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Connetti a Internet"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Il modo piů comune per connettersi con adsl č pppoe.\n"
-"Alcune connessioni usano pptp, poche usano dhcp.\n"
-"Se non sai, scegli 'usa pppoe'."
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch USB"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "usa dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "usa pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "usa pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Quale cliente dhcp vuoi usare?\n"
-"Quello predefinito č dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Nessun adattatore di rete ethernet č stato rilevato nel tuo sistema.\n"
-"Non posso configurare questo tipo di connessione."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Scegli l'interfaccia di rete"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Per favore scegli quale adattatore di rete vuoi usare per connetterti a "
-"Internet"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "nessuna scheda di rete trovata"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Sto configurando la rete"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Per favore inserisci il tuo nome host se lo conosci.\n"
-"Alcuni server DHCP richiedono il nome host per funzionare.\n"
-"Il tuo nome host dovrebbe essere un nome pienamente qualificato,\n"
-"come ''mybox.mylab.myco.com''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Nome host"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Wizard della configurazione di rete"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Modem ISDN esterno"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Scheda ISDN interna"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Di che tipo č la tua connessione ISDN?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Che configurazione ISDN preferisci?\n"
-"\n"
-"* La Vecchia configurazione usa isdn4net. Contiene strumenti potenti,\n"
-" ma č difficile da configurare per un principiante, e non standard.\n"
-"\n"
-"* La Nuova configurazione č piů facile da capire, piů aderente allo\n"
-" standard, ma dispone di un numero di strumenti inferiore.\n"
-"\n"
-"Raccomandiamo la configurazione leggera.\n"
-"\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Nuova configurazione (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Vecchia configurazione (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Configurazione ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Scegli il tuo provider.\n"
-" Se non č nella lista, scegli Fuori Lista"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Protocollo per l'Europa"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Protocollo per l'Europa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protocollo per il resto del mondo"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protocollo per il resto del mondo \n"
-" no D-Channel (linee in affitto)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Quale protocollo vuoi usare?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Che tipo di scheda hai?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Non so"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Se hai una scheda ISA, i valori nella prossima schermata dovrebbero essere "
-"giusti.\n"
-"\n"
-"Se hai una scheda PCMCIA, devi sapere IRQ e I/O della tua scheda.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Annulla"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Continua"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Qual'č la tua scheda ISDN?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Ho trovato una scheda ISDN PCI, ma non so di che tipo. Per favore seleziona "
-"una scheda PCI nella prossima schermata."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Non trovo nessuna scheda ISDN PCI. Per favore selezionane una \n"
-"nella prossima schermata."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Per favore scegli a che porta seriale č connesso il tuo modem."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Opzioni di chiamata"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Nome connessione"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Numero telefonico"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "ID di accesso"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Basata su script"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Basata su terminale"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Nome dominio"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Primo server DNS (opzionale)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Secondo server DNS (opzionale)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Puoi disconnetterti o riconfigurare la tua connessione."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Puoi configurare nuovamente la connessione."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Adesso sei connesso a Internet"
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Puoi connetterti a Internet o configurare nuovamente la connessione."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "In questo momento non sei connesso a Internet"
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Connetti"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Disconnetti"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Configura la connessione"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Connessione & configurazione Internet"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Adesso proseguiremo con la configurazione della connessione %s."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Stiamo per configurare la connessione %s.\n"
-"\n"
-"\n"
-"Premi OK per cominciare."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Configurazione della rete"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Dato che stai effettuando una installazione via rete, quest'ultima č giŕ "
-"configurata.\n"
-"Clicca su Ok per mantenere questa configurazione, o su Annulla per "
-"riconfigurare la rete e la connessione a Internet.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Benvenuti nel Wizard di configurazione della Rete!\n"
-"\n"
-"Stiamo per configurare la vostra connessione di rete/a Internet.\n"
-"Se non volete usare il riconoscimento automatico, deselezionate il \n"
-"pulsante d'opzione.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Scegli il profilo da configurare"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Usa il riconoscimento automatico"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Riconoscimento periferiche..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Connessione normale via modem"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "rilevato sulla porta: %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "Connessione ISDN"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "rilevato %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "Connessione ADSL"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "rilevato sull'interfaccia %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Connessione via cavo"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "Rilevata connessione via cavo"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Connessione LAN"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "rilevata scheda(e) ethernet"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Scegli il tipo di connessione che vuoi configurare"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Hai configurato diversi tipi di connessione a Internet.\n"
-"Scegli quello che vuoi usare.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Connessione a Internet"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Vuoi effettuare la connessione all'avvio?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Configurazione della rete"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "La rete dev'essere riavviata"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Si č verificato un problema al momento di riavviare la rete: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Congratulazioni, la configurazione della rete e di Internet č finita.\n"
-"\n"
-"Adesso questa configurazione verrŕ applicata al vostro sistema.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Dopo che questo sarŕ stato fatto, vi raccomandiamo di riavviare il\n"
-"vostro ambiente X per evitare problemi relativi al cambio di hostname."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"Si sono verificati dei problemi durante la configurazione.\n"
-"Provate la connessione usando net_monitor o mcc. Se la connessione non "
-"funziona, dovreste ripetere la configurazione."
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"ATTENZIONE: questo dispositivo č stato precedentemente configurato per\n"
-"connettersi a Internet.\n"
-"Devi solo cliccare su OK per mantenere la precedente configurazione.\n"
-"Modifiche ai campi qui sotto cambieranno questa configurazione."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Per favore inserisci la configurazione IP per questa macchina.\n"
-"Ogni dato dovrebbe essere inserito come un indirizzo IP in notazione\n"
-"decimale puntata (ad esempio 1.2.3.4.)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Sto configurando il dispositivo di rete %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (driver %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "Indirizzo IP"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Netmask"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "IP automatico"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "L'indirizzo IP deve essere in formato 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Per favore inserisci il tuo nome host.\n"
-"Il tuo nome host dovrebbe essere uno pienamente qualificato,\n"
-"come ''mybox.mylab.myco.com''.\n"
-"Puoi anche inserire l'indirizzo IP del gateway se ne hai uno."
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "Server DNS"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (es. %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Dispositivo di gateway"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Configurazione dei proxy"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "Proxy HTTP"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "Proxy FTP"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Individua identitŕ della scheda audio (utile per i laptop)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Il proxy dovrebbe essere http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Il proxy dovrebbe essere ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Configurazione di internet"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Vuoi provare a connetterti a Internet adesso?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Sto provando la tua connessione ..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Adesso il sistema č connesso a Internet"
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Per ragioni di sicurezza, adesso verrŕ disconnesso."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Il sistema non sembra essere connesso a Internet.\n"
-"Prova a configurare nuovamente la connessione."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Configurazione della Connessione"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Per favore riempi o controlla il campo qui sotto"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ della scheda"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Memoria della scheda (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO della scheda"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_0 della scheda"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 della scheda"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Il tuo numero di telefono personale"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Nome del provider (es. provider.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Numero telefonico del provider"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Dns 1 del provider (opzionale)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Dns 2 del provider (opzionale)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Scegli la tua nazione"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Modalitŕ di chiamata"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Velocitŕ della connessione"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Timeout della connessione (in secondi)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Login dell'account (nome utente)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Password dell'account"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "mount fallito: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Partizione estesa non supportata su questa piattaforma"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Hai un buco nella tua tabella delle partizioni, ma io non posso usarlo.\n"
-"L'unica soluzione č di muovere le tue partizioni primarie per avere il buco "
-"vicino alle partizioni estese"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Ripristino da file %s fallito: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "File di backup errato"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Errore scrivendo sul file %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Al tuo disco sta accadendo qualcosa di brutto. \n"
-"Un test per verificare l'integritŕ dei dati č fallito. \n"
-"Significa che scrivere qualsiasi cosa sul disco genererŕ solo spazzatura a "
-"caso"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "da avere"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "importante"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "molto bello"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "bello"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "forse"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Stampante locale"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Stampante remota"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Stampante su server CUPS remoto"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Stampante su server lpd remoto"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Stampante di rete (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Stampante su server SMB/Windows95/98/NT"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Stampante su server NetWare"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Indica l'URI di un dispositivo di stamp"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Invia tramite pipe al comando"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Modello sconosciuto"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Stampanti locali"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Stampanti remote"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " sulla porta parallela \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", stampante USB \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", dispositivo multifunzione sulla porta parallela \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", dispositivo multifunzione su USB"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", dispositivo multifunzione su HP JetDirect"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", dispositivo multifunzione"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", sto stampando su %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "sul server LPD \"%s\", stampante \"%s\""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", host TCP/IP \"%s\", porta %s"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "sul server Windows \"%s\", condivisione \"%s\""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "sul server Novell \"%s\", stampante \"%s\""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", uso il comando %s"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Stampante di tipo raw (nessun driver)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(su %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(su questa macchina)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Sul server CUPS \"%s\""
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Predefinito)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Scegli Connessione stampante"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Com'č collegata la stampante?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Con un server remoto CUPS, non devi configurare alcuna stampante\n"
-"adesso: le stampanti saranno individuate automaticamente."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-msgid "CUPS configuration"
-msgstr "Configurazione di CUPS"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-msgid "Specify CUPS server"
-msgstr "Indica il server CUPS"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"Per avere accesso alle stampanti su server CUPS remoti all'interno della "
-"vostra rete locale non dovete configurare niente: i server CUPS informano la "
-"vostra macchina automaticamente in merito alle loro stampanti. Tutte le "
-"stampanti attualmente note alla vostra macchina sono elencate nella sezione "
-"\"Stampanti remote\" di Printerdrake. Quando il server CUPS non si trova "
-"all'interno della vostra rete locale, dovete indicare il suo indirizzo IP e, "
-"facoltativamente, il numero della porta in modo da ottenere le informazioni "
-"relative alla stampante dal server; altrimenti lasciate questi campi in "
-"bianco."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Normalmente CUPS viene configurato automaticamente in base al vostro "
-"ambiente di rete, in modo che possiate accedere alle sttampanti che "
-"dipendono dai server CUPS sulla vostra rete locale. Se questa caratteristica "
-"non funziona correttamente, disabilitate \"Configurazione automatica di CUPS"
-"\" e modificate manualmente il file /etc/cups/cupsd.conf. Non dimenticatevi "
-"di riavviare CUPS subito dopo (col comando: \"service cups restart\")."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "L'indirizzo IP deve essere in formato 192.168.1.20"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Il numero della porta dovrebbe essere un numero intero!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP del server CUPS"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Porta"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Configurazione automatica di CUPS"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Riconoscimento periferiche ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test delle porte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Aggiungi nuova stampante"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Benvenuti nell'assistente di configurazione delle stampanti\n"
-"\n"
-"Questo assistente vi permette di installare stampanti remote o locali che "
-"verranno usate da questa macchina e anche da altre macchine sulla rete.\n"
-"\n"
-"Vi chiederŕ tutte le informazioni necessarie per configurare la stampante, "
-"dandovi accesso a tutti i driver, opzioni dei driver e tipi di connessione "
-"disponibili."
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Stampante locale"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Benvenuti nell'assistente di configurazione delle stampanti\n"
-"\n"
-"Questo assistente vi aiuterŕ a configurare le stampanti collegate a questo "
-"computer.\n"
-"\n"
-"Per favore collegate la vostra stampante al computer e accendetela. Cliccate "
-"su \"Succ\" quando siete pronti, e su \"Annulla\" se non desiderate "
-"configurare le vostre stampanti adesso.\n"
-"\n"
-"Si noti che alcuni computer potrebbero bloccarsi durante il riconoscimento "
-"automatico delle stampanti, in tal caso disabilitate questa caratteristica "
-"per poter effettuare l'installazione. Usate il modo Esperto di Printerdrake "
-"quando volete configurare la stampa su una stampante remota se Printerdrake "
-"non la include nell'elenco automaticamente."
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Riconoscimento automatico stampanti"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"Congratulazioni, adesso la vostra stampante č installata e configurata!\n"
-"\n"
-"Potete stampare usando il comando \"Stampa\" delle vostre appllicazioni (in "
-"genere si trova nel menu File\").\n"
-"\n"
-"Se desiderate aggiungere, rimuovere o rinominare una stampante, o se volete "
-"modificare la configurazione predefinita (cassetto della carta, qualitŕ di "
-"stampa, etc.), selezionate \"Stampante\" nella sezione \"Hardware\" del "
-"Centro di controllo Mandrake."
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Riconoscimento automatico delle stampanti"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake č in grado di riconoscere automaticamente una stampante "
-"collegata localmente su una porta parallela o USB, ma si noti che su alcuni "
-"sistemi il riconoscimento automatico PUŇ BLOCCARE IL SISTEMA E QUESTO PUŇ "
-"CAUSARE LA CORRUZIONE DEL FILESYSTEM! Pertanto fatelo A VOSTRO RISCHIO E "
-"PERICOLO!\n"
-"\n"
-"Volete davvero che le stampanti vengano riconosciute automaticamente?"
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Usa il riconoscimento automatico"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Configurazione manuale della stampante"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "Rilevato %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Stasmpante sulla porta parallela \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "Stampante USB \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Non č stata trovata nessuna stampante locale! Per installare manualmente una "
-"stampante indicate il nome di un dispositivo o di un file nel campo di "
-"immissione (porte parallele: /dev/lp0, /dev/"
-"lp1, ..., equivalenti a LPT1:, LPT2:, ...; prima stampante USB: /dev/usb/"
-"lp0, seconda: /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Devi indicare il nome di un dispositivo o di un file!"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Non ho trovato nessuna stampante locale!\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Le stampanti di rete possono essere installate soltanto dopo "
-"l'installazione. Scegliete \"Hardware\" e poi \"Stampante\" nel Centro di "
-"controllo Mandrake."
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Per installare stampanti di rete, cliccate su \"Annulla\", passate al \"Modo "
-"esperto\" e cliccate su \"Aggiungi nuova stampante\"."
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"La stampante che segue č stata riconosciuta automaticamente, se non č quella "
-"che desiderate configurare inserite un nome di dispositivo o di file nel "
-"campo immissione testo"
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"Ecco una lista di tutte le stampanti che sono state riconosciute "
-"automaticamente. Per favore, scegliete quella che volete configurare, oppure "
-"inserite il nome di un dispositivo o di un file nel campo di immissione "
-"testo."
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-"La stampante che segue č stata riconosciuta automaticamente. La "
-"configurazione della stampante verrŕ effettuata automaticamente. Se la "
-"vostra stampante non č stata riconosciuta in modo corretto, o se preferite "
-"una configurazione personalizzata, cliccate su \"Configurazione manuale\"."
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Ecco una lista di tutte le stampanti che sono state riconosciute "
-"automaticamente. Per favore scegliete la stampante che volete configurare, "
-"la configurazione verrŕ effettuata in modo del tutto automatico. Se la "
-"vostra stampante non č stata riconosciuta correttamente, o se preferite una "
-"configurazione personalizzata, cliccate su \"Configurazione manuale\"."
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Per favore scegliete la porta alla quale č connessa la vostra stampante, "
-"oppure inserite il nome di un dispositivo o di un file nel campo di "
-"immissione testo"
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr ""
-"Per favore scegliete la porta alla quale č connessa la vostra stampante."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Porte parallele: /dev/lp0, /dev/lp1, ..., equivalenti a LPT1:, LPT2:, ...; "
-"prima stampante USB: /dev/usb/lp0, seconda: /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Dovete scegliere/indicare una stampante/un dispositivo!"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Configurazione manuale"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-"La vostra stampante č un dispositivo multifunzione prodotto da HP "
-"(OfficeJet, PSC, PhotoSmart, LaserJet 1100/1200/1220/3200/3300 con scanner)?"
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "Installazione del pacchetto HPOJ..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Controllo dispositivo e configuro HPOJ ..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Installazione del pacchetto SANE"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Effettuo una scansione con il vostro dispositivo multifunzione HP"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "Rendo la porta della stampante disponibile per CUPS ..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Sto leggendo il database delle stampanti"
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Opzioni stampante lpd remota"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Per usare una stampante lpd remota, dovete indicare\n"
-"il nome dell'host del server della stampante e il nome della stampante\n"
-"su quel server."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Nome host remoto"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Nome della stampante remota"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Nome host remoto assente!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Nome della stampante remota assente!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opzioni Stampante SMB (Windows9x/NT)"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Per stampare su una stampante SMB, dovete indicare il nome\n"
-"dell'host SMB (Attenzione! non sempre corrisponde al nome host TCP/IP\n"
-"della macchina!) e possibimente l'indirizzo IP del server di stampa, come\n"
-"pure il nome di condivisione per la stampante cui volete accedere e ogni\n"
-"informazione utile riguardo nome dell'utente, password e gruppo di lavoro."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Host del server SMB"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP del server SMB"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Nome di condivisione"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Gruppo di lavoro"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Devi indicare il nome del server o il numero IP dello stesso!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Il nome della condivisione Samba č assente!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Opzioni stampante NetWare"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Per stampare su una stampante NetWare, dovete fornire il nome\n"
-"del server di stampa NetWare (Attenzione! potrebbe essere diverso dal nome\n"
-"del suo host TCP/IP!) insieme al nome della coda di stampa per la\n"
-"stampante cui volete accedere e ogni nome utente e password applicabili."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Server della stampante"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Nome della coda di stampa"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "Il nome del server NCP č assente"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "Il nome dellla coda NCP č assente!"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "Opzioni della stampante TCP/Socket"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Per stampare su una stampante TCP/Socket, dovete indicare il\n"
-"nome host della stampante e opzionalmente il numero della porta.\n"
-"Sui server HP JetDirect il numero della porta in genere č 9100, su\n"
-"altri server potrebbe essere diverso. Consultate il manuale del vostro\n"
-"hardware."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Nome host della stampante"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Nome host della stampante assente!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "URI della stampante"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Potete indicare direttamente l'URI di accesso alla stampante. Tale URI deve "
-"essere conforme alle specifiche CUPS o Foomatic. Notate che non tutti i i "
-"tipi di URI sono supportati da tutti gli spooler."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Dev'essere inserito un'URI valido!"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Ogni stampante deve avere un nome (ad esempio \"stampante\").\n"
-"Non č indispensabile riempire i campi Descrizione e \n"
-"Posizione. Si tratta di commenti per gli utenti."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Nome della stampante"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descrizione"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Posizione"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Sto preparando il database delle stampanti ..."
-
-#: ../../printerdrake.pm_.c:1112
-msgid "Your printer model"
-msgstr "Il modello della vostra stampante"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-msgid "The model is correct"
-msgstr "Il modello č corretto"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-msgid "Select model manually"
-msgstr "Selezionate il modello manualmente"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Scelta del modello della stampante"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Che modello di stampante hai?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Per favore, controllate che Printerdrake abbia effettuato correttamente il "
-"riconoscimento automatico della vostra stampante. Se il cursore si trova su "
-"un modello errato o su \"Stampante di tipo raw\", cercate quello corretto "
-"nella lista."
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Se la vostra stampante non č presente nella lista, cercate un modello "
-"compatibile o simile (consultate il manuale della stampante)."
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "Configurazione di una stampante OKI winprinter"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Configurazione di una stampante Lexmark a getto d'inchiostro"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Impostazioni predefinite della stampante\n"
-"\n"
-"Dovreste accertarvi che le dimensioni della pagina e il tipo di inchiostro/"
-"modo di stampa (se disponibile) e anche la configurazione hardware delle "
-"stampanti laser (memoria, unitŕ duplex, cassetti supplementari) siano "
-"impostati correttamente. Si noti che quando la qualitŕ/risoluzione di stampa "
-"č molto alta, la durata della stampa puň diventare sensibilmente piů lenta."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "L'opzione %s dev'essere un numero intero!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "L'opzione %s dev'essere un numero!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Opzione %s fuori scala!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Volete impostare questa stampante (\"%s)\n"
-"come stampante predefinita?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Pagine di prova"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Nessuna pagina di prova"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Stampa"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Pagina di prova standard"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Pagina di prova alternativa (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Pagina di prova fotografica"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "Non stampare nessuna pagina di prova"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Stampa della(e) pagina(e) di prova..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"La pagina(e) di prova č stata inviata alla stampante.\n"
-"Potrebbe occorrere un po' di tempo prima che la stampa inizi.\n"
-"Stato della stampa:\n"
-"%s\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"La pagina(e) di prova č stata inviata alla stampante.\n"
-"potrebbe occorrere un po' di tempo prima che la stampa inizi.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Stampante in modo raw"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Chiudi"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Stampa/Scansione in corso su \"%s\""
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Sto stampando con la stampante \"%s\""
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Lista opzioni di stampa"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Sto leggendo i dati della stampante..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Configurazione della stampante a trasferimento"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"Il nome della stampante dovrebbe contenere solo lettere, numeri e il "
-"trattino di sottolineatura"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Nuovo nome della stampante"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Sto aggiornando i dati della stampante ..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Configura di una stampante remota"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Sto attivando la connessione di rete ..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Configura la rete adesso"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "Funzionalitŕ di rete non configurate"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Vai avanti senza configurare la rete"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Sto riavviando il sistema di stampa ..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "alto"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "paranoico"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Avvio il sistema di stampa al momento del boot"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Scegli il sistema di stampa"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Che sistema di stampa (spooler) vuoi usare?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Sto configurando la stampante \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "Installazione del pacchetto Foomatic"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Opzioni stampante"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "Sto preparando PrinterDrake"
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-msgid "Configuring applications..."
-msgstr "Configurazione applicazioni ..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Vorresti configurare la stampa?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "PrinterDrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-msgid "Change the printing system"
-msgstr "Cambia il sistema di stampa"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Modo Normale"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Volete configurare un'altra stampante?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Modifica configurazione stampante"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Stampante %s\n"
-"Cosa volete modificare riguardo questa stampante?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Tipo di connessione della stampante"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Nome, descrizione, collocazione della stampante"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Stampa della(e) pagina(e) di prova"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Sapere come usare questa stampante"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Rimuovi stampante"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Sto rimuovendo la vecchia stampante \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Stampante predefinita"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Volete davvero rimuovere la stampante \"%s\"?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Sto rimuovendo la stampante \"%s\" ..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Configurazione dei proxy"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Benvenuto nell'utilitŕ di configurazione dei proxy.\n"
-"\n"
-"Qui potrai configurare i tuoi proxy http e ftp,\n"
-"con o senza login e password\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Per favore completa le informazioni relative al proxy http\n"
-"Lascia in bianco se non desideri un proxy http"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "Porta"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "L'URL dovrebbe cominciare con 'http:'"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Il numero della porta dovrebbe essere in cifre"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Per favore completa le informazioni relative al proxy ftp\n"
-"Lascia in bianco se non desideri un proxy ftp"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "L'URL dovrebbe cominciare con 'ftp:'"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Per favore inserisci il login e la password per il proxy, se esistono.\n"
-"Lascia in bianco se non č necessario."
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "login"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "Password"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "digita ancora la password"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Le password non corrispondono. Prova ancora!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Non posso aggiungere una partizione a _RAID_ formattato md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Non posso scrivere il file %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid fallito"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid fallito (forse manca raidtools?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Non ci sono abbastanza partizioni per RAID livello %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Lancia il sistema audio ALSA (Advanced Linux Sound Architecture)"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, un gestore di comandi periodici."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd č usato per monitorare lo stato delle batterie e fare il log tramite\n"
-"syslog. Puň anche essere usato per spegnere la macchina quando la batteria\n"
-"č scarica."
-
-#: ../../services.pm_.c:18
-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 ""
-"Lancia comandi programmati dal comando at al momento specificato quando\n"
-"at č stato lanciato, e lancia comandi batch quando il carico medio č\n"
-"sufficientemente basso."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron č un programma UNIX standard che lancia programmi definiti dall'utente\n"
-"a intervalli periodici programmati. vixie cron aggiunge un numero di "
-"funzioni\n"
-"al cron UNIX di base, inclusi maggior sicurezza e opzioni di "
-"configurazione \n"
-"piů potenti."
-
-#: ../../services.pm_.c:23
-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 aggiunge il supporto del mouse ad applicazioni Linux basate su testo "
-"come\n"
-"Midnight Commander. Permette anche operazioni taglia/incolla via mouse in \n"
-"console e include supporto per dei menu a scomparsa in console."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake esegue un'indagine riguardo l'hardware, e opzionalmente\n"
-"configura l'hardware nuovo/cambiato."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache č un server per World Wide Web. Č usato per gestire files HTML\n"
-"e CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Il demone superserver di Internet (comunemente chiamato inetd) avvia una\n"
-"varietŕ di altri servizi Internet a richiesta. Č responsabile per l'avvio\n"
-"di molti servizi, inclusi telnet, ftp, rsh, e rlogin. Disabilitando inetd\n"
-"si disabilitano tutti i servizi di cui č responsabile."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Lancio del filtro dei pacchetti per la serie di kernel 2.2, allo\n"
-"scopo di impostare un firewall che protegga la tua macchina da intrusioni."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Questo pacchetto carica la mappa di tastiera selezionata come definito in\n"
-"/etc/sysconfig/keyboard, che puň essere scelta usando l'utilitŕ kdbconfig.\n"
-"Dovresti lasciarlo abilitato per la maggior parte delle macchine."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Rigenerazione automatica dell'intestazione del kernel /boot per\n"
-"/usr/include/linux/{autoconf,versione}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Riconoscimento e configurazione automatica dell'hardware al boot."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf talvolta deve eseguire alcune operazioni al momento\n"
-"del boot per gestire la configurazione del sistema."
-
-#: ../../services.pm_.c:43
-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 č il demone di stampa richiesto perchč lpr funzioni propriamente. Č\n"
-"fondamentalmente un server che distribuisce i job di stampa alle stampanti."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual Server, usato per impostare un server ad alte prestazioni\n"
-"e alta disponibilitŕ."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) č un Domain Name Server (DNS) utilizzato per risolvere\n"
-"nomi host in indirizzi IP."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Monta e smonta tutti i punti di mount di Network File System (NFS),\n"
-"SMB (Lan Manager/Windows), e NCP (Netware)."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Attiva/Disattiva tutte le interfacce di rete di cui č previsto l'avvio\n"
-"al momento del boot."
-
-#: ../../services.pm_.c:52
-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 č un popolare protocollo per la condivisione di file attraverso reti\n"
-"TCP/IP. Questo servizio consente funzionalitŕ di server NFS, che sono\n"
-"configurate tramite il file /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS č un popolare protocollo per la condivisione di file attraverso reti TCP/"
-"IP.\n"
-"Questo servizio consente funzionalitŕ di blocco dei file NFS."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Attiva automaticamente il tasto relativo al tastierino numerico\n"
-"per la console e XFree al momento del boot."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Supporto per le stampanti Windows OKI 4w e compatibili."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"Il supporto PCMCIA di solito serve per usare dispositivi di tipo ethernet e\n"
-"modem nei portatili. Non sarŕ lanciato se non č stato configurato, perciň "
-"č \n"
-"sicuro da avere installato anche su macchine che non lo richiedono."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Il portmapper gestisce connessioni RPC, che sono usate da protocolli\n"
-"come NFS e NIS. Il server portmap deve essere in esecuzione su macchine che\n"
-"agiscono come server per protocolli che fanno uso di meccanismi RPC."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix č un Agente di Trasporto di Posta, un programma che\n"
-"sposta messaggi da una macchina ad un'altra."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Salva e ripristina l'entropia del sistema per una generazione di numeri\n"
-"casuali di alta qualitŕ."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Assegna dispositivi raw a dispositivi a blocchi (quali le partizioni\n"
-"di un disco rigido), da usare con applicazioni come Oracle."
-
-#: ../../services.pm_.c:71
-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 ""
-"Il demone routed permette tabelle di router IP automatiche aggiornate per\n"
-"mezzo del protocollo RIP. Mentre RIP č largamente usato in piccole reti, \n"
-"protocolli di routing piů complessi sono necessari per reti piů complesse."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Il protocollo rstat permette agli utenti di una rete di recuperare\n"
-"misurazioni delle prestazioni per ogni macchina di quella rete."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Il protocollo rusers permette agli utenti di una rete di identificare\n"
-"chi č connesso su una macchina interrogata in proposito."
-
-#: ../../services.pm_.c:78
-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 ""
-"Il protocollo rwho permette a utenti remoti di ottenere una lista di \n"
-"tutti gli utenti connessi a una macchina su cui gira il demone rwho\n"
-"(similarmente a finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Lancia il sistema audio sulla tua macchina"
-
-#: ../../services.pm_.c:81
-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 č una utilitŕ che molti demoni usano per aggiungere messaggi\n"
-"in vari file di log di sistema. Č una buona idea lanciare sempre syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Carica i driver per i tuoi dispositivi USB."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Avvia il server di caratteri (indispensabile per eseguire XFree)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Scegli quali servizi saranno lanciati automaticamente all'avvio."
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Stampa"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "Sistema"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Amministrazione remota"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Server di database"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Servizi"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "in esecuzione"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "fermato"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Servizi e demoni"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Spiacente, ma non ci sono ulteriori\n"
-"informazioni riguardo questo servizio."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Al boot"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Avvia"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Stop"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "Unisciti al mondo del software libero"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet e messaggistica istantanea"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedia e Grafica"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Sviluppo"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Centro di Controllo Mandrake"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "Interfacce utente"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Software per server"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Giochi"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Installazione dei pacchetti ..."
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Non posso leggere la tua tabella delle partizioni, č troppo\n"
-"corrotta per me :( . Proverň a cancellare le partizioni rovinate."
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Errore!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Configurazione installazione automatica"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Configurazione automatica fasi di installazione"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Congratulazioni!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Installazione automatica"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Aggiungi una voce"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Rimuovi l'ultima voce"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr "***********************************************************************\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "progresso totale"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "Backup dei file di sistema..."
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "File di backup su disco rigido..."
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "Backup dei file dell'utente"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Progresso del backup del disco rigido..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Backup di altri file"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "Selezione file"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr "Selezionate i file e le directory e cliccate su 'Aggiungi'"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Per favore abilitate tutte le opzioni necessarie\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Queste opzioni possono effettuare il backup e il ripristino di tutti i file "
-"nella\n"
-"vostra directory /etc.\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Backup dei vostri file di sistema (directory /etc)"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Usa backup incrementali (non sostituire i vecchi backup)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Non includere file critici (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Grazie a questa opzione sarete in grado di ripristinare ogni versione della\n"
-"vostra directory /etc."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr "Per favore scegli tutti gli utenti che vuoi includere nel backup"
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "Non includere la cache del navigatore"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Usa backup incrementali (non sostituire i vecchi backup)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Rimuovi quelli selezionati"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "Utenti"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Per favore inserisci il nome dell'host o l'IP"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Per favore inserisci il tuo nomei di login"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Per favore inserisci la tua password"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Ricorda questa password"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "Connessione FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Connessione sicura"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Per favore, scegliete lo spazio su CD"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "Per favore, accertatevi di usare supporti CD-RW"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Per favore, controllate se volete includere\n"
-"il boot di install sul CD"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Per favore, inserite il numero che identifica il vostro masterizzatore\n"
-"ad esempio: 0,1,0"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "Usa unitŕ a nastro per effettuare il backup"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "Per favore, inserite il nome del dispositivo da usare per il backup"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Per favore, indicate le dimensioni massime\n"
-"concesse a Drakbackup"
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Per favore inserisci la directory da salvare:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Usa una quota per i file di backup."
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "Rete"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "Disco rigido  / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "ogni ora"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "ogni giorno"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "settimanale"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "ogni mese"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "Usa demone"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"Per favore, scegli la frequenza\n"
-"del backup"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"Per favore, scegli il supporto\n"
-"del backup"
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Usa disco rigido con il demone"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Usa FTP con il demone"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-"Per favore, accertatevi che il demone cron sia incluso fra i servizi attivi"
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "Dopo ogni backup invia una mail rapporto a:"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "Cosa"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "Dove"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "Quando"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "Altre opzioni"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "Configurazione di Drakbackup"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Per favore scegliete dove volete effettuare il backup"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "sul disco rigido"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "sulla rete"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Per favore scegliete i pacchetti che volete installare."
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "Sistema di backup"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "Fai il backup degli utenti"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Seleziona l'utente manualmente"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Fonti del backup: \n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- File di sistema:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- File degli utenti:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Altri file:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- Salva su disco rigido seguendo il percorso: %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- Salva via FTP sull'host: %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t nome utente: %s\n"
-"\t\t sul percorso: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"-Opzioni:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tNon includere file di sistema\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tEffettua backup usando tar e bzip2\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tI backup fanno uso di tar e gzip\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t-Disco rigido.\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-CDROM.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Rete via FTP.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Rete via SSH.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-"Nessun file di configurazione, per favore cliccate su Assistente o "
-"Avanzato.\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr "Lista di dati da ripristinare:\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr "Lista di dati corrotti:\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "Per favore scegliete a che porta seriale č connesso il vostro modem."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "I file di backup sono corrotti"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr "          Tutti i dati selezionati sono stati          "
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr "          Ripristinati con successo su %s       "
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr "         Ripristina configurazione       "
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "OK al ripristino degli altri file"
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Lista degli utenti da ripristinare (solo la data piů recente per utente č "
-"importante)"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "Effettua il backup dei file di sistema prima di:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "Per favore, scegliete la data da ripristinare"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Usa il disco rigido per effettuare il backup"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Ripristina da disco rigido"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "Per favore, indicate la directory in cui sono archiviati i backup"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Scegliete un altro supporto dal quale effettuare il ripristino"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Altri supporti"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "Ripristina sistema"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Ripristina utenti"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Ripristina altro"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "selezionate il percorso del ripristino (invece di / )"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"Effettua nuovo backup prima del ripristino (solo per backup incrementali)."
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Rimuovi le directory dell'utente prima del ripristino."
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Ripristina tutti i backup"
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "Personalizza il ripristino"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Aiuto"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "Precedente"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Salva"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Costruisci backup"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Ripristina"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Successivo"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Per favore fai un backup prima di ripristinarlo...\n"
-" o verifica che il percorso alla directory di salvataggio č corretto."
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"Errore usando sendmail\n"
-" la vostra mail di report non č stata inviata\n"
-" Per favore configurate sendmail"
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista dei pacchetti da installare"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Errore nella trasmissione del file via FTP.\n"
-" Per favore, controllate la configurazione FTP."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Per favore, scegliete il tipo del vostro mouse."
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Per favore, scegliete il tipo del vostro mouse."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Per favore, scegliete il tipo del vostro mouse."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Nessun file di configurazione trovato\n"
-"per favore cliccate su Assistente o Avanzato"
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "Ancora in sviluppo ... attendere per favore."
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "Backup dei file di sistema"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "Backup dei file degli utenti"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Backup di altri file"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Progresso totale"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "trasmissione file via FTP"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Sto inviando i file ..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "Lista di dati da includere su CDROM."
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Per favore, insersci la velocitŕ del masterizzatore"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-"Per favore inserite il numero che identifica il vostro masterizzatore (es.: "
-"0,1,0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Per favore scegliete i pacchetti che volete installare."
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "Effettua il backup adesso sulla base del file di configurazione"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Vedi la configurazione di backup"
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "Configurazione dell'assistente"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "Configurazione avanzata"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "Effettua il backup adesso"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-"\n"
-"Alcuni errori nell'invio della posta sono causati da\n"
-"un'errata configurazione di postfix. Per risolvere il problema\n"
-"dovete indicare ilmionomehost o ilmiodominio in /etc/postfix/main.cf\n"
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Installazione di %s fallita. Si č verificato il seguente errore:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Cerca fonti installate"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Deseleziona fonti installate"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "esamina tutti i font"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "nessun font trovato"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "fatto"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "non ho trovato nessun font nelle partizioni montate"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Ri-selezionate i font corretti"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "non ho trovato nessun font.\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Cerca font nella lista installati"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Copia i font"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "Installazione di font True Type"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "per favore attendere mentre eseguo ttmkfdir..."
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "Installazione font True Type effettuata"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "Conversione font"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "sto costruendo type1inst"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "conversione font ttf"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "conversione font pfm"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Soppressione file temporanei"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "Riavvia XFS"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Soppressione file dei font"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "riavvia xfs"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Prima di installare qualsiasi font accertatevi di avere il permesso di "
-"installarli e usarli sul vostro sistema.\n"
-"\n"
-"-Potete installare i font nel modo normale. In casi piuttosto rari, dei font "
-"corrotti potrebbero bloccare il vostro server X."
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "Importazione font"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Prendi i font di Windows"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Disintallazione font"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Opzioni avanzate"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Lista font"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Scegliete le applicazioni che supporteranno i font:"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Stampanti generiche"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Selezionate il file o la directory del font e cliccate su 'Aggiungi'"
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Lista di installazione"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "cliccate qui se ne siete sicuri."
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "qui in caso contrario."
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "Deseleziona tutto"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Tutti selezionati"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "Rimuovi lista"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Test iniziali"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Copia i font sul tuo sistema"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Installa e converti i font"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Post-installazione"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "Rimuovi i font dal tuo sistema"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Post-disinstallazione"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Condivisione connessione Internet"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Condivisione della connessione a Internet attualmente abilitata"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Il setup della condivisione della connessione Internet č giŕ stato fatto.\n"
-"Č attualmente abilitata.\n"
-"\n"
-"Cosa vorresti fare?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "disabilita"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "abbandona"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "riconfigura"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Sto disattivando i server..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "La condivisione della connessione a Internet ora č disabilitata."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Condivisione connessione Internet attualmente disabilitata"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Il setup della condivisione della connessione internet č giŕ stato fatto.\n"
-"Č attualmente disabilitata.\n"
-"\n"
-"Cosa vorresti fare?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "abilita"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Sto attivando i server..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "La condivisione della connessione a Internet ora č abilitata."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Stai per configurare il tuo computer per condividere la sua connessione a "
-"Internet.\n"
-"Grazie a questa caratteristica, altri computer sulla tua rete locale "
-"potranno usare la connessione a Internet di questa macchina.\n"
-"\n"
-"Nota: č necessario un Adattatore di Rete dedicato per realizzare una\n"
-"Rete di Area Locale (LAN)."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interfaccia %s (usa il modulo %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Interfaccia %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Nessun adattatore di rete nel tuo sistema!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Nessun adattatore di rete ethernet č stato rilevato nel tuo sistema. Per "
-"favore lancia l'utilitŕ di configurazione hardware."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Interfaccia di rete"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"C'č un solo adattatore di rete configurato nel tuo sistema:\n"
-"\n"
-"%s\n"
-"\n"
-"Sto per configurare la tua rete locale (LAN) usando quell'adattatore."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Per favore scegliete quale adattatore di rete sarŕ connesso alla vostra rete "
-"locale (LAN)."
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Interfaccia di rete giŕ configurata"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"Attenzione, la scheda di rete (%s) č giŕ configurata.\n"
-"\n"
-"Desiderate una ri-configurazione automatica?\n"
-"\n"
-"Potete farlo manualmente se sapete quello che state facendo."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Riconfigurazione automatica"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "Mostra la configurazione dell'interfaccia corrente"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"Configurazione attuale di `%s':\n"
-"\n"
-"Rete: %s\n"
-"Indirizzo IP: %s\n"
-"Attribuzione IP: %s\n"
-"Driver: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Posso conservare la vostra configurazione attuale e supporre che abbiate giŕ "
-"impostato un serverDHCP; in tal caso, per favore controllate che la rete di "
-"classe C che usate per la vostra rete locale sia stata letta correttamente; "
-"non la riconfigurerň e non toccherň la configurazione del vostro server "
-"DHCP.\n"
-"\n"
-"In alternativa, posso riconfigurare la vostra interfaccia di rete e (ri)"
-"configurare un server DHCP per voi.\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "Rete locale di classe C"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "IP di (questo) server DHCP"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Riconfigurazione dell'interfaccia di rete e del server DHCP"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "La rete locale non terminava con `.0', rinuncio."
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Trovato conflitto potenziale dell'indirizzo LAN nella configurazione "
-"corrente di %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Rilevata configurazione di Firewall!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Attenzione! Č stata rilevata una configurazione di firewall esistente. "
-"Potrebbe avere bisogno di alcuni aggiustamenti manuali dopo l'installazione."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Sto configurando..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Sto configurando gli script, installando il software, avviando i server..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemi nell'installazione del pacchetto %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Ogni cosa č stata configurata.\n"
-"Ora puoi condividere la connessione a Internet con altri computers sulla tua "
-"rete locale (LAN) usando la configurazione di rete automatica (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Il setup č giŕ stato fatto, ma č attualmente disabilitato."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Il setup č giŕ stato fatto, ed č attualmente abilitato."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr ""
-"Nessuna condivisione della connessione a Internet configurata in precedenza."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Configurazione della connessione a Internet"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Benvenuti nell'utilitŕ di condivisione della connessione a Internet!\n"
-"\n"
-"%s\n"
-"\n"
-"Cliccate su ``Configura'' se volete lanciare il Wizard di configurazione."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configurazione della rete (%d adattatori)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profilo: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Cancella profilo..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profilo da cancellare:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nuovo profilo..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Nome del profile da creare (il nuovo profilo verrŕ creato come copia di "
-"quello attuale):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nome host: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Accesso a Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfaccia:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Attendere per favore"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configura l'accesso a Internet"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configurazione LAN (rete locale)"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Driver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfaccia"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocollo"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Stato"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configura rete locale (LAN)"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Cliccate qui per lanciare l'assistente ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistente..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Applica"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Per favore attendi... sto applicando la configurazione"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Connesso"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Non connesso"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Connetti..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Disconnetti..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Attenzione, č stata individuata un'altra connessione a Internet, forse "
-"attraverso la vostra rete locale"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Non disponi di nessuna interfaccia configurata.\n"
-"Per prima cosa configurale cliccando su 'Configura'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configurazione rete locale (LAN)"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adattatore %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocollo di boot"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Attivato/a al momento del boot"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "attivare adesso"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "disattivare adesso"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Questa interfaccia non č stata ancora configurata.\n"
-"Lanciate l'assistente di configurazione nella finestra principale."
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Non disponi di una connessione a Internet.\n"
-"Creane una cliccando su 'Configura'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configurazione della connessione a Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configurazione della connessione a Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipo di connessione: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Scheda ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Sto settando il livello di sicurezza"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Centro di Controllo"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Scegliete l'utilitŕ che volete usare"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "Canada (cavo)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (bcast)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "USA (cavo)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "USA (cavo-hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Cina (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Giappone (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "Giappone (cavo)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Europa Orientale"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Irlanda"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "Europa Occidentale"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Australia"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "Nuova Zelanda"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "Sud Africa"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr "Per favore, digitate il vostro standard tv e la nazione"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "Standard TV:"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Area:"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "Ricerca di canali TV in corso ..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "Sto cercando canali TV"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "uso: keyboarddrake [--expert] [tastiera]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Per favore, scegliete l'impostazione della tastiera."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Vuoi che il tasto BackSpace funzioni come Canc nella console?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Cambia il CD-ROM"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Per favore inserisci il Cd-Rom di installazione nel lettore e premi Ok "
-"quando\n"
-"pronto. Se non ce l'hai, premi Annulla per evitare l'aggiornamento diretto."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Non riesco ad avviare l'aggiornamento diretto !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-"Il cambiamento č stato applicato, ma perché diventi effettivo dovete uscire "
-"dalla sessione"
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "Mostralo solo per il giorno selezionato"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/File/_Nuovo"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/File/_Apri"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/File/_Salva"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/File/Save _come"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/File/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Opzioni"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Opzioni/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Guida"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Aiuto/_Riguardo..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "Utente"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "Messaggi"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "Syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Spiegazioni relative agli strumenti Mandrake"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "cerca"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Un tool per monitorare i tuoi file di Log"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Impostazioni"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "coincidono"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "ma non coincidono"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Scegliete il file"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "calendario"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Contenuto del file"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "Notifica Mail/SMS"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "aspetta, sto analizzando: %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "Configurazione di avvisi email/SMS"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Benvenuto nell'utilitŕ di configurazione degli avvisi email/SMS..\n"
-"\n"
-"Qui potrai configurare il sistema di avvisi.\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "Proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "configurazione servizio"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-"Verrete avvisati se uno dei servizi selezionati non č piů in esecuzione"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "carica configurazione"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Riceverete una notifica se il carico eccede questo valore"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "configurazione avvisi"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "Configurazione del modo in cui il sistema vi avvertirŕ"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Salva con nome..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Per favore, scegliete il tipo del vostro mouse."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "nessun serial_usb trovato\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Emula il terzo pulsante?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "Trovato %s su %s, devo configurarlo?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Scegliete uno scanner"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "Questo scanner %s non č supportato"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Dispositivo di boot"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"Questo scanner %s deve essere configurato con printerdrake.\n"
-"Potete lanciare printerdrake dal Centro di controllo Mandrake, sezione "
-"Hardware."
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Configurazione del firewall!"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Configurazione del firewall!"
-
-#: ../../standalone/tinyfirewall_.c:79
-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"
-"Hai giŕ configurato un firewall.\n"
-"Clicca su Configura per modificare o rimuovere il firewall"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Clicca su Configura per configurare un firewall standard"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Scegli la lingua"
-
-# there is no room to put "Scegli classe d'installazione"
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Classe d'installazione"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Ricerca del disco fisso"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Configura mouse"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Scegli la tastiera"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Sicurezza"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Configura il filesystem"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formatta partizioni"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Pacchetti da installare"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Installa sistema"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Aggiungi un utente"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Configura rete"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Configura servizi"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Installa bootloader"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Crea disco di boot"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Configura X"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Installa aggiornamenti di sistema"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Termina installazione"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Configuratore di firewall minimo\n"
-"\n"
-"Configurazione di un firewall personale per questo sistema Mandrake Linux.\n"
-"Per una soluzione firewall potente e dedicata, per favore rivolgiti\n"
-"alla distribuzione specializzata MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Adesso ti faremo domande riguardo i servizi che vuoi rendere disponibili\n"
-"durante la connessione a Internet. Rifletti bene prima di rispondere,\n"
-"perché la sicurezza del tuo computer č molto importante.\n"
-"\n"
-"Se attualmente non sfrutti qualcuno di questi servizi, ti invitiamo a\n"
-"disabilitarlo. Potrai cambiare queste impostazioni quando vorrai\n"
-"usando di nuovo questa applicazione!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Su questa macchina č in esecuzione un server web che deve essere visibile\n"
-"da Internet? Se si accede a tale server web soltanto da questa macchina\n"
-"puoi rispondere NO tranquillamente.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Su questa macchina č in esecuzione un server dei nomi? Se non ne hai\n"
-"configurato uno per trasmettere informazioni su IP e domini all'intera\n"
-"Internet, per favore rispondi NO.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Vuoi accettare delle connessioni Secure Shell (ssh) in ingresso? ssh\n"
-"puň essere usato al posto di telnet per effettuare il login. Se adesso\n"
-"stai usando telnet, ti consigliamo di passare a ssh: telnet non effettua\n"
-"la cifratura dei dati, pertanto qualche pirata potrebbe intercettare\n"
-"la tua password. Invece ssh effettua la cifratura e non permette che\n"
-"qualcuno origli alle tue spalle."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Vuoi accettare delle connessioni telnet in ingresso?\n"
-"Come vi abbiamo spiegato prima, č un metodo terribilmente insicuro.\n"
-"Ti consigliamo caldamente di rispondere NO in questo caso, e di\n"
-"usare ssh invece di telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Su questa macchina č in esecuzione un server FTP che deve essere reso\n"
-"accessibile via Internet? In tal caso, ti consigliamo vivamente di\n"
-"usarlo soltanto per collegamenti di tipo Anonimo. Qualsiasi password\n"
-"inviata con FTP puň essere intercettata da qualche cracker, dato che\n"
-"anche FTP non fa uso di cifratura nel trasmettere le password.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Su questa macchina č in esecuzione un server di posta elettronica? Se\n"
-"inviate messaggi per mezzo di pine, mutt o altri programmi di posta\n"
-"basati su interfaccia a caratteri, allora probabilmente sě. Altrimenti\n"
-"dovreste nasconderlo dietro il firewall.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Su questa macchina č in esecuzione un server POP o IMAP? Questi\n"
-"vengono usati per le necessitŕ di utenti che hanno account di posta\n"
-"(non basata su interfaccia web) su questa macchina.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Apparentemente usi un kernel della serie 2.2. Se il tuo IP di\n"
-"rete č stabilito automaticamente da un computer connesso con\n"
-"questo (assegnazione dinamica), dobbiamo specificare questa\n"
-"impostazione. Il tuo indirizzo IP č assegnato dinamicamente?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"L'orologio di questo computer viene sincronizzato sulla base di\n"
-"un altro? Per lo piů questo si verifica in organizzazioni che fanno\n"
-"uso di Unix/Linux di dimensioni medio-grandi, allo scopo di avere\n"
-"dei log di sistema sincronizzati e simili. Se non fai parte di una\n"
-"rete piů grande e non hai mai sentito parlare di qualcosa del genere,\n"
-"probabilmente puoi rispondere NO."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Configurazione completa. Possiamo scrivere le modifiche su disco?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Non riesco ad aprire %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Non riesco ad aprire %s in scrittura: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr "No, il DHCP non mi serve"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr "Sě, ho bisogno del DHCP"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr "No, il NTP non mi serve"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr "Sě, ho bisogno del NTP"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr "Non salvare"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr "Salva ed Esci"
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "Assistente di configurazione del firewall"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr "No (usa un firewall per schermarlo da Internet)"
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr "Sě (lascia che passi attraverso il firewall)"
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr "Per favore attendere... Sto verificando i pacchetti installati"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Non ho potuto installare i pacchetti richiesti: %s e Bastille.\n"
-"Provate a installarli manualmente."
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Computer connesso alla rete (cliente)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "Server NFS, server SMB, server proxy, server SSH"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Office"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Workstation grafica con GNOME"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Utilitŕ per il tuo Palm Pilot o Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Workstation"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Firewall/Router"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Server di nomi di dominio (DNS) e informazioni sulla rete"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Programmi Office: wordprocessor (kword, abiword), fogli elettronici "
-"(kspread, gnumeric), visualizzatori pdf, etc"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Utilitŕ audio: riproduttori mp3 o midi, mixer, etc"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Libri e Howto su Linux e il software libero"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Workstation grafica con KDE"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedia - Video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Set di utilitŕ per posta, news, web, file transfer, e chat"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Database"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Server di database PostgreSQL o MySQL"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Strumenti per semplificare la configurazione del computer"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedia - Suono"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Programmi di utilitŕ"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Documentazione"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Programmi da linea di comando"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Server di posta Postfix, server di news Inn"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Computer con accesso a Internet"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Computer multimediale"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Configurazione"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Altri desktop grafici (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"Il K Desktop Environment, l'ambiente grafico di base con una collezione di "
-"utilitŕ che lo accompagnano"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Ambiente grafico"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache e Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Utilitŕ per creare e masterizzare CD"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Postazione di lavoro con programmi Office"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc."
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Programmi grafici come The Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Librerie di sviluppo, programmi e file include per C e C++"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Server di rete"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Posta/Groupware/Newsgroup"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Computer predisposto per i giochi"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Riproduttori video e programmi di editing"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedia - Grafica"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Programmi di svago: azione, da tavolo, strategia, etc"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Gruppo di programmi per leggere e inviare posta e news (pine, mutt, tin..) e "
-"per navigare il Web"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archiviazione, emulatori, monitoraggio"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Finanza Personale"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Un ambiente grafico con un set di applicazioni user-friendly e utilitŕ per "
-"il desktop"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Clienti per vari protocolli, incluso ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Gateway per Internet"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programmi di riproduzione/modifica audio e video"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Altri desktop grafici"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editor, shell, programmi di utilitŕ riguardo i file, terminali"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programmi per gestire le tue finanze, come gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Gestione di informazioni personali"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedia - Masterizzazione CD"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Workstation scientifica"
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
deleted file mode 100644
index 6a886fa7d..000000000
--- a/perl-install/share/po/ja.po
+++ /dev/null
@@ -1,15415 +0,0 @@
-# DrakX Japanese Translation.
-# ĄÖĄ×ĄČĄÉ
-# for Japanese text use ĄÖ and Ą× instead of ugly \" and \"
-# for ascii text in the transltion you can also useĄČ and ĄÉ
-# also, even if the English text has no lineabreak ( \n ) at
-# all, you must add some if the Japanese text is too long,
-# because the current toolkits are unable to wordwrap Japanese
-# text due to the lack of word delimiters.
-#
-# Copyright (c) 1999 MandrakeSoft
-# Junichi Kimura <jun@kde.gr.jp>, 1999-2000
-# YAMAGATA Hiroo <hiyori13@alum.mit.edu>, 1999-2002
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 1999-12-10 16:27+0100\n"
-"Last-Translator: YAMAGATA Hiroo <hiyori13@alum.mit.edu>\n"
-"Language-Team: Japanese\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=euc-jp\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "ĽŘĽĂĽÉ¤ň¤˝¤ě¤ž¤ěĆČΊ¤ËŔßÄę"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Xinerama łČÄĽ¤ňťČ¤Ś"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "°Ę˛ź¤ÎĽŤĄźĽÉ¤Ŕ¤ą¤ňŔßÄꥧ ĄČ%sĄÉ(%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "ĽŢĽëĽÁĽŘĽĂĽÉŔßÄę"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"¤˘¤Ę¤ż¤ÎĽˇĽšĽĆĽŕ¤ĎĽŢĽëĽÁĽŘĽĂĽÉ¤ÎŔßÄꤏ¤Ç¤­¤Ţ¤šĄŁ\n"
-"¤É¤Ś¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ňÁŞÂň¤ˇ¤Ć˛ź¤ľ¤¤"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "X ĽľĄźĽĐ¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X ĽľĄźĽĐ"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "X ĽÉĽéĽ¤ĽĐ¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X ĽÉĽéĽ¤ĽĐ"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "¤É¤Îš˝ŔŽ¤ÎXFree ¤Ë¤ˇ¤Ţ¤š¤Ť"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"¤ł¤ÎĽŤĄźĽÉ¤ĎXFree %s ¤Ç¤Î¤ß3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó˛ÄÇ˝¤Ç¤šĄŁ\n"
-"XFree %s ¤Ç¤Î¤ł¤ÎĽŤĄźĽÉ¤ÎĽľĽÝĄźĽČ¤ĎĄ˘2D ¤Î¤Ű¤Ś¤Ź¤š¤°¤ě¤Ć¤¤¤Ţ¤šĄŁ"
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "¤ł¤ÎĽŤĄźĽÉ¤ĎXFree %s ¤Ç3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó˛ÄÇ˝¤Ç¤šĄŁ"
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "ĽĎĄźĽÉĽŚĽ§Ľ˘3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó¤Ä¤­¤ÎXFree %s"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"¤ł¤ÎĽŤĄźĽÉ¤ĎXFree %s ¤Ç3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó˛ÄÇ˝¤Ç¤šĄŁ\n"
-"¤ż¤Ŕ¤ˇ¤˘¤Ż¤Ţ¤ÇĄ˘źÂ¸łĹŞ¤ĘĽľĽÝĄźĽČ¤ÇĄ˘ĽŢĽˇĽóĽŐĽęĄźĽş¤Î˛ÄÇ˝Ŕ­¤Ź¤˘¤ę¤Ţ¤šĄŁ"
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "źÂ¸łĂĘłŹ¤ÎĽĎĄźĽÉĽŚĽ§Ľ˘3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó¤Ä¤­¤ÎXFree %s"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (Ľ¤ĽóĽšĽČĄźĽëĽÇĽŁĽšĽ×ĽěĽ¤ĽÉĽéĽ¤ĽĐ)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree¤ÎŔßÄę"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ÎĽáĽâĽęĽľĽ¤Ľş¤ňÁŞÂň¤ˇ¤Ć˛ź¤ľ¤¤"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "ĽľĄźĽĐ¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "ĽâĽËĽż¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "ĽâĽËĽż"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Âçťö¤ĘĽŃĽéĽáĄźĽż¤Ź2¤Ä¤˘¤ę¤Ţ¤šĄŁżâÄžĽęĽŐĽěĽĂĽˇĽĺĽěĄźĽČ(ĽšĽŻĽęĄźĽóÁ´ÂÎ\n"
-"¤ňşĆÉÁ˛č¤š¤ëźţ´ü)¤ČżĺĘżĽęĽŐĽěĽĂĽˇĽĺĽěĄźĽČ(ÁöşşŔţ¤ÎÉ˝ź¨źţ´üĄ¤¤â¤Ă¤Č¤â\n"
-"˝ĹÍ×)¤Ç¤šĄŁ\n"
-"\n"
-"*˝ĹÍ×* ĽâĽËĽż¤ÎľöÍĆČĎ°ĎĆâ¤ÎżâÄžĄ¤żĺʿƹ´üČϰϤňťŘÄꤡ¤Ę¤¤¤ČĄ¤\n"
-"ĽâĽËĽż¤ŹĽŔĽáĄźĽ¸¤ňźő¤ą¤ë¤Ť¤âĂΤě¤Ţ¤ť¤óĄŁ\n"
-"ĘŹ¤Ť¤é¤Ę¤¤žěšç¤Ď, Äă¤á¤ÎŔßÄę¤Ë¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "żĺĘżĽęĽŐĽěĽĂĽˇĽĺĽěĄźĽČ"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "żâÄžĽęĽŐĽěĽĂĽˇĽĺĽěĄźĽČ"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "ĽâĽËĽż¤ŹŔßÄꤾ¤ě¤Ć¤Ţ¤ť¤ó"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ŹŔßÄꤾ¤ě¤Ć¤Ţ¤ť¤ó"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "˛ňÁüĹ٤ŹÁŞÂň¤ľ¤ě¤Ć¤Ţ¤ť¤ó"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "¤ł¤ÎŔßÄę¤Çťî¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠ"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"ˇŮšđĄ§¤ł¤ÎĽ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ňĽĆĽšĽČ¤š¤ë¤ČĽŢĽˇĽó¤ŹĽŐĽęĄźĽş¤š¤ë¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤ó"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "ŔßÄę¤ňťî¤ˇ¤Ţ¤š"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"¤¤¤Ż¤Ä¤ŤĽŃĽéĽáĄźĽż¤ňĘѤ¨¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ľ¨ĽéĄźČŻŔ¸"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "¤˘¤Č %d ÉäÇĚá¤ę¤Ţ¤š"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "ŔßÄę¤Ď¤ł¤ě¤Ç¤¤¤¤¤Ç¤š¤ŤĄŠ"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ľ¨ĽéĄźČŻŔ¸Ą¤¤¤¤Ż¤Ä¤Ť¤ÎĽŃĽéĽáĄźĽż¤ňĘѤ¨¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "˛ňÁüĹŮ"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "˛ňÁüĹ٤ȿ§żźĹŮ"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 ĽľĄźĽĐ: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "źĄ"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "OK"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ľ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉ"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Á´¤Ć¤ňÉ˝ź¨"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "˛ňÁüĹŮ"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Ľ­ĄźĽÜĄźĽÉĽěĽ¤Ľ˘ĽŚĽČ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "ĽŢĽŚĽš¤ÎźďÎŕ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "ĽŢĽŚĽšĽÇĽĐĽ¤Ľš: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "ĽâĽËĽż: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "ĽâĽËĽżżĺʿƹ´ü: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "ĽâĽËĽżżâÄžĽęĽŐĽěĽĂĽˇĽĺ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ id: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽáĽâĽę: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "ż§żźĹŮ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "˛ňÁüĹŮ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 ĽľĄźĽĐ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 ĽÉĽéĽ¤ĽĐ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X Window System ¤ÎŔßÄę¤Î˝ŕČ÷"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "¤É¤Ś¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "ĽâĽËĽż¤ÎĘŃšš"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ÎĘŃšš"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "ĽľĄźĽĐĽŞĽ×ĽˇĽçĽó¤ÎĘŃšš"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "˛ňÁüĹ٤ÎĘŃšš"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "žđĘó¤ňÉ˝ź¨"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "¤â¤Ś°ě˛óĽĆĽšĽČ"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "˝ŞÎť"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"ĘŃšš¤ňĘݸ¤ˇ¤Ţ¤š¤Ť?\n"
-"¸˝şß¤ÎŔßÄę¤Ď°Ę˛ź¤ÎÄ̤ę¤Ç¤š:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X ¤ÎľŻĆ°"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"ĽłĽóĽÔĽĺĄźĽż¤ňĽÖĄźĽČ¤ˇ¤żťţĄ¤źŤĆ°ĹŞ¤Ë X ¤ŹÎŠ¤Ážĺ¤Ź¤ëŔßÄę¤Ë¤Ç¤­¤Ţ¤šĄŁ\n"
-"ĽęĽÖĄźĽČ¤ˇ¤żťţ X ¤ňΊ¤Ážĺ¤˛¤Ţ¤š¤ŤĄŠ"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "ĘŃšš¤ňÍ­¸ú¤Ë¤š¤ë¤Ë¤Ď %s ¤ËĽíĽ°Ľ¤Ľó¤ˇ¤Ę¤Ş¤ˇ¤Ć˛ź¤ľ¤¤"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "ĽíĽ°Ľ˘ĽŚĽČ¤ˇ¤żžĺ¤Ç Ctrl-Alt-BackSpace ¤ň˛Ą¤ˇ¤Ć˛ź¤ľ¤¤"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 ż§(8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "3Ëü2Ŕ鿧 (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "6Ëü5Ŕ鿧 (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "1600Ëüż§ (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "40˛Żż§ (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB °Ęžĺ"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "ĽšĽżĽóĽŔĄźĽÉ VGA, 640x480 ¤Ç 60Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "ĽšĄźĽŃĄź VGA, 800x600 ¤Ç 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 ¸ß´š, 1024x768 at 87 Hz Ľ¤ĽóĽżĄźĽěĄźĽš (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "ĽšĄźĽŃĄź VGA, 1024x768 ¤Ç 87 Hz Ľ¤ĽóĽżĄźĽěĄźĽš, 800x600 ¤Ç 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "łČÄĽ ĽšĄźĽŃĄź VGA, 800x600 ¤Ç 60 Hz, 640x480 ¤Ç 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "1024x768 at 60 Hz, 800x600 at 72 Hz¤ÎĽÎĽóĽ¤ĽóĽżĄźĽěĽšSVGA"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "1280x1024 at 70 Hz¤ÎHigh Frequency SVGA"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "1280x1024 at 60 Hz¤Ź˛ÄÇ˝¤ĘĽŢĽëĽÁĽšĽ­ĽăĽóĽâĽËĽż"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "1280x1024 at 74 Hz¤Ź˛ÄÇ˝¤ĘĽŢĽëĽÁĽšĽ­ĽăĽóĽâĽËĽż"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "1280x1024 at 76 Hz¤Ź˛ÄÇ˝¤ĘĽŢĽëĽÁĽšĽ­ĽăĽóĽâĽËĽż"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "1600x1200 at 70 Hz ¤Ź˛ÄÇ˝¤ĘĽâĽËĽż"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "1600x1200 at 76 Hz ¤Ź˛ÄÇ˝¤ĘĽâĽËĽż"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "ĽÖĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó¤ÎşÇ˝é¤ÎĽťĽŻĽż"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "ĽÉĽéĽ¤ĽÖ¤ÎşÇ˝é¤ÎĽťĽŻĽż (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO ¤ÎĽ¤ĽóĽšĽČĄźĽë"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "ĽÖĄźĽČĽíĄźĽŔ¤ň¤É¤ł¤ËĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/grub ¤ÎĽ¤ĽóĽšĽČĄźĽë"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "ĽĆĽ­ĽšĽČĽáĽËĽĺĄźČÇ LILO"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽáĽËĽĺĄźČÇ LILO"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "DOS/Windows¤Ť¤éľŻĆ° (loadlin ťČÍŃ)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "ĽÖĄźĽČĽíĄźĽŔ¤ÎĽáĽ¤ĽóĽŞĽ×ĽˇĽçĽó"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "ťČÍѤš¤ëĽÖĄźĽČĽíĄźĽŔ"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "ĽÖĄźĽČĽíĄźĽŔ¤ÎĽ¤ĽóĽšĽČĄźĽë"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "ĽÖĄźĽČĽÇĽĐĽ¤Ľš"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (¸Ĺ¤¤ BIOS ¤Ç¤ĎĆ°¤Ť¤Ę¤¤)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "ĽłĽóĽŃĽŻĽČ"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "ĽłĽóĽŃĽŻĽČ"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "ĽÓĽÇĽŞĽâĄźĽÉ"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "ĽÇĽŐĽŠĽëĽČĽ¤ĽáĄźĽ¸ľŻĆ°¤ÎÂÔ¤Áťţ´Ö"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "ĽŃĽšĽďĄźĽÉ"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "ĽŃĽšĽďĄźĽÉ (¤â¤Ś°ěĹŮ)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "ĽłĽŢĽóĽÉĽéĽ¤ĽóĽŞĽ×ĽˇĽçĽó¤ÎŔŠ¸Â"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "ŔŠ¸Â"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "łĆĽÖĄźĽČťţ¤Ë /tmp °Ę˛ź¤ňžĂ¤š"
-
-# added a \n to the translation to avoid that the dialog window
-# in which it appears to be tooooo laaaaarge
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr ""
-"ÉŹÍפʤéŔľłÎ¤ĘRAMĽľĽ¤Ľş¤ňĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
-"ĄĘ%d MB¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ˇ¤żĄË"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "ĽŢĽëĽÁĽ×ĽíĽŐĽĄĽ¤Ľë¤ňÍ­¸ú¤Ë"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "RamĽľĽ¤Ľş¤ňMB¤ÇĆţÎĎ"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"ĄČĽłĽŢĽóĽÉĽéĽ¤ĽóĽŞĽ×ĽˇĽçĽó¤ÎŔŠ¸ÂĄÉĽŞĽ×ĽˇĽçĽó¤ĎĽŃĽšĽďĄźĽÉ¤Ź¤Ę¤¤¤Č\n"
-"Ěň¤Ë¤ż¤Á¤Ţ¤ť¤óĄŁ"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "¤â¤Ś°ěĹٝ¤Ć˛ź¤ľ¤¤"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "ĽŃĽšĽďĄźĽÉ¤Ź°ěĂפˇ¤Ţ¤ť¤ó"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "˝é´ü˛˝ĽáĽĂĽťĄźĽ¸"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "ĽŞĄźĽ×ĽóĽŐĽĄĄźĽŕĽŚĽ§Ľ˘¤ÎĽÇĽŁĽěĽ¤"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "ĽŤĄźĽÍĽëĽÖĄźĽČ¤ÎĽżĽ¤ĽŕĽ˘ĽŚĽČ"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "CD ¤Ť¤é¤ÎľŻĆ°¤ňÍ­¸ú¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "OF ¤Ť¤é¤ÎľŻĆ°¤ňÍ­¸ú¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "ĽÇĽŐĽŠĽëĽČ¤Î OS ¤ĎĄŠ"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Ľ¨ĽóĽČĽę¤Ď°Ę˛ź¤Î¤Č¤Ş¤ę¤Ç¤šĄŁ\n"
-"ÄɲåŚĘŃšš¤Ç¤­¤Ţ¤šĄŁ"
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "˛Ă¤¨¤ë"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "˝ŞÎť"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "ĘŃšš"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "¤É¤ÎĽżĽ¤Ľ×¤ňÄɲ䡤ޤš¤Ť"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "ž¤Î OS (SunOS¤Ę¤É...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "ž¤Î OS (MacOS¤Ę¤É...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "ž¤Î OS (ĽŚĽŁĽóĽÉĽŚĽş¤Ę¤É...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Ľ¤ĽáĄźĽ¸"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "ĽëĄźĽČ"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "ÄɲĂ"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Ćɤ߽ń¤­"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "ĽĆĄźĽÖĽë"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "´í¸ą"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "ĽéĽŮĽë"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "ĽÇĽŐĽŠĽëĽČ"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "InitrdĽľĽ¤Ľş"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "ĽÓĽÇĽŞ¤Ę¤ˇ"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Ľ¨ĽóĽČĽę¤ňžĂ¤š"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "śőÇň¤ÎĽéĽŮĽë¤Ďľö¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "ĽŤĄźĽÍĽëĽ¤ĽáĄźĽ¸¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "rootĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎÉŹ¤şťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "¤ł¤ÎĽéĽŮĽë¤Ď¤š¤Ç¤ËťČ¤ď¤ě¤Ć¤¤¤Ţ¤š"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s %s Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ˇ¤ż"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Ę̤Τâ¤Î¤Ď¤˘¤ę¤Ţ¤š¤ŤĄŠ"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "%s Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Ď¤˘¤ę¤Ţ¤š¤ŤĄŠ"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "¤¤¤¤¤¨"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "¤Ď¤¤"
-
-#: ../../any.pm_.c:661
-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:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "%s ĽŤĄźĽÉ %s ¤ÎĽÉĽéĽ¤ĽĐĽ¤ĽóĽšĽČĄźĽëĂć"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(ĽâĽ¸ĽĺĄźĽë %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "¤É¤Î %s ĽÉĽéĽ¤ĽĐ¤ňťî¤ˇ¤Ţ¤ˇ¤ç¤Ś¤ŤĄŠ"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"%s ĽÉĽéĽ¤ĽĐ¤ĎĄ˘Ŕľ¤ˇ¤ŻĆ°şî¤š¤ë¤Î¤ËĆĂĘ̤ʞđĘó¤ŹÍפëžěšç¤Ź¤˘¤ę¤Ţ¤šĄŁ¤ż¤Ŕ¤ˇ\n"
-"¤Ő¤Ä¤Ś¤ĎĄ˘¤Ę¤Ë¤â¤Ę¤ˇ¤ÇŔľžď¤ËĆ°¤Żžěšç¤Ź¤Ű¤Č¤ó¤É¤Ç¤šĄŁĆĂĘĚ¤ĘĽŞĽ×ĽˇĽçĽó¤ň\n"
-"ťŘÄꤡ¤Ţ¤š¤ŤĄŠĄĄ¤˝¤ě¤Č¤âĽÉĽéĽ¤ĽĐ¤ËĽŢĽˇĽó¤ňĽ×ĽíĄźĽÖ¤ľ¤ť¤ĆÉŹÍמđĘó¤ňźčĆŔ\n"
-"¤ľ¤ť¤Ć¤ß¤Ţ¤š¤ŤĄŠĄĄĽ×ĽíĄźĽÖĂć¤ËĽłĽóĽÔĽĺĄźĽż¤ŹÄäťß¤š¤ë¤Ť¤âĂΤě¤Ţ¤ť¤ó¤ŹĄ¤\n"
-"ĽŢĽˇĽó¤Ź¤ł¤ď¤ě¤ż¤ę¤š¤ë¤ł¤Č¤Ď¤˘¤ę¤Ţ¤ť¤óĄŁ"
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "ĽŞĄźĽČĽ×ĽíĄźĽÖ"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "ĽŞĽ×ĽˇĽçĽóťŘÄę"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"¤Ç¤ĎĽâĽ¸ĽĺĄźĽë %s ¤ÎĽŞĽ×ĽˇĽçĽó¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"¤Ę¤ŞĄ˘Ľ˘ĽÉĽěĽš¤Ď¤š¤Ů¤ĆĄ˘ĆŹ¤Ë 0x ¤ň¤Ä¤ą¤ĆĆţÎϤš¤ë¤ł¤ČĄŁÎ㥧 '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"ĽâĽ¸ĽĺĄźĽë %s ¤Ř¤ÎĽŞĽ×ĽˇĽçĽó¤ÎťŘÄꥣ\n"
-"ĽŞĽ×ĽˇĽçĽó¤ÎĽŐĽŠĄźĽŢĽĂĽČ¤ĎĄČĚžÁ°=ĂÍ ĚžÁ°2=ĂÍ2 ...ĄÉ¤Ç¤šĄŁ\n"
-"Îă: ĄČio=0x300 irq=7ĄÉ"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "ĽâĽ¸ĽĺĄźĽë¤ÎĽŞĽ×ĽˇĽçĽó"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"ĽâĽ¸ĽĺĄźĽë %s ¤ÎĽíĄźĽÉ¤Ź¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n"
-"ĽŃĽéĽáĄźĽż¤ňĘѤ¨¤Ć¤ä¤ę¤Ę¤Ş¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠ"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "X Ľ×ĽíĽ°ĽéĽŕ¤Ř¤ÎĽ˘ĽŻĽťĽš"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "rpm ĽÄĄźĽë¤Ř¤ÎĽ˘ĽŻĽťĽš"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "ĄČsuĄÉ¤ňľö¤š"
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "´ÉÍýĽŐĽĄĽ¤Ľë¤Ř¤ÎĽ˘ĽŻĽťĽš"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s ¤ĎÄɲúѤß)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "ĽŃĽšĽďĄźĽÉ¤Ź´ĘĂą¤š¤Ž¤Ţ¤š"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "ĽćĄźĽśĚž¤ňÍż¤¨¤Ć˛ź¤ľ¤¤"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "ĽćĄźĽśĚž¤Ë¤ĎąŃžŽĘ¸ťúĄ¤żôťúĄ˘ĄÖ-Ą×¤äĄÖ_Ą×¤ˇ¤ŤťČ¤¨¤Ţ¤ť¤óĄŁ"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "¤ł¤ÎĽćĄźĽśĚž¤Ď¤š¤Ç¤Ë¸şß¤ˇ¤Ţ¤š"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "ĽćĄźĽś¤ňÄɲĂ"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"ĽćĄźĽśĚž¤ňĆţÎϤˇ¤Ć˛ź¤ľ¤¤\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "źő¤ąÉŐ¤ą¤ëĽćĄźĽś"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "źÂşÝ¤ÎťáĚž"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "ĽćĄźĽśĚž"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "ĽˇĽ§Ľë"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ľ˘Ľ¤ĽłĽó"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "źŤĆ°ĽíĽ°Ľ¤Ľó"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"źŤĆ°ĹޤËĆĂÄęĽćĄźĽś¤ŹĽíĽ°ĽŞĽó¤š¤ë¤č¤Ś¤ËĽłĽóĽÔĽĺĄźĽż¤ňŔßÄę¤Ç¤­¤Ţ¤šĄŁ\n"
-"¤ł¤ÎľĄÇ˝¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "ĽÇĽŐĽŠĽëĽČĽćĄźĽś¤ÎÁŞÂň:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "ťČ¤ŚĽŚĽŁĽóĽÉĽŚĽŢĽÍĄźĽ¸Ľă¤ňÁޤó¤Ç˛ź¤ľ¤¤Ą§"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "¤É¤Î¸Ŕ¸ě¤ňťČ¤Ś¤ŤÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤¤ÍĄŁ"
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Ľ¤ĽóĽšĽČĄźĽë¸ĺťČÍѲÄÇ˝¤Ë¤Ę¤ë¤Ű¤Ť¤Î¸Ŕ¸ě¤ňÁŞÂň¤Ç¤­¤Ţ¤š"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "¤ź¤ó¤Ö"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "¤š¤Ů¤Ć¤ÎĽćĄźĽś¤ňǧ¤á¤ë"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "ĽŤĽšĽżĽŕ"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "ĽŐĽĄĽ¤ĽëśŚÍ­¤ˇ¤Ę¤¤"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ŹÉŹÍפǤšĄŁĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Ľ¨ĽŻĽšĽÝĄźĽČ¤Ë¤Ď NFS ¤Ť Samba ¤ŹťČ¤¨¤Ţ¤šĄŁ¤É¤Á¤é¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "ÉŹÍ׼ѼüąĄźĽ¸ %s ¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Ľ­ĽăĽóĽťĽë"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "userdrake ¤ňľŻĆ°"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"ĽćĄźĽśËč¤ÎśŚÍ­¤ĎĄ˘ĄČfileshareĄÉĽ°ĽëĄźĽ×¤ňťČ¤¤¤Ţ¤šĄŁ\n"
-"¤ł¤ÎĽ°ĽëĄźĽ×¤ËĽćĄźĽś¤ňÄɲ䚤ë¤Ë¤ĎĄ˘userdrake ¤ŹťČ¤¨¤Ţ¤š¤čĄŁ"
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "°­źÁ¤ĘĽŻĽéĽĂĽŤĄźÍͤ⿯Ćţ¤ˇ¤Ű¤Ś¤Ŕ¤¤"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "¤­¤ď¤á¤ĆÄ㤤"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "ɸ˝ŕ"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "šâ¤¤"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "¤â¤Ă¤Čšâ¤¤"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "żŔˇĐźÁ¤Ę¤Ű¤Éšâżĺ˝ŕ"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"¤ł¤ÎĽěĽŮĽë¤ňťČ¤Ś¤Ę¤éĂí°Ő¤ŹÉŹÍפǤšĄŁĽˇĽšĽĆĽŕ¤ňťČ¤Ś¤Î¤Ď´ĘĂą¤Ë¤Ę¤ę¤Ţ¤š¤ŹĄ˘\n"
-"¤Ŕ¤ě¤Ë¤Ç¤âĽ˘ĽŻĽťĽš¤Ç¤­¤Ć¤ˇ¤Ţ¤¤¤Ţ¤šĄŁÂž¤ÎĽŢĽˇĽó¤äĽ¤ĽóĽżĄźĽÍĽĂĽČ\n"
-"¤Ë¤Ä¤Ę¤Ź¤Ă¤żĽŢĽˇĽó¤Ç¤ĎťČ¤ď¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁĽŃĽšĽďĄźĽÉŔŠ¸Â¤â¤˘¤ę¤Ţ¤ť¤óĄŁ"
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"ĽŃĽšĽďĄźĽÉ¤ŹÍ­¸ú¤Ë¤Ę¤ę¤Ţ¤ˇ¤ż¤ŹĄ˘ĽÍĽĂĽČĽďĄźĽŻ¤Ë¤Ä¤Ę¤°¤Î¤Ď¤Ţ¤Ŕ\n"
-"¤ŞžŠ¤á¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"¤ł¤ě¤Ďɸ˝ŕ¤ÎĽťĽ­ĽĺĽęĽĆĽŁ¤ÇĄ˘ĽŻĽéĽ¤Ľ˘ĽóĽČ¤Č¤ˇ¤ĆĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤š¤ëĽŢĽˇĽó¤Ç"
-"¤ÎżäžŠĽěĽŮĽë¤Ç¤šĄŁ"
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr "¤š¤Ç¤ËŔŠ¸Â¤Ź¤Ť¤Ť¤Ă¤Ć¤¤¤ĆĄ˘¤ľ¤é¤ËËčČŐźŤĆ°ĽÁĽ§ĽĂĽŻ¤Ź¤â¤Ă¤Č¤Ť¤Ť¤ę¤Ţ¤šĄŁ"
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"¤ł¤ÎĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤Ŕ¤ČĄ˘ĽˇĽšĽĆĽŕ¤ňĽľĄźĽĐ¤Č¤ˇ¤ĆťČ¤¨¤ë¤č¤Ś¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-"Âżżô¤ÎĽŻĽéĽ¤Ľ˘ĽóĽČ¤Ť¤éŔÜÂł¤ňźő¤ą¤ëĽľĄźĽĐ¤Č¤ˇ¤Ć¤âťČ¤¨¤ë¤Ŕ¤ą¤ÎĽťĽ­ĽĺĽęĽĆĽŁ\n"
-"żĺ˝ŕ¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁĂ𥧤˘¤Ę¤ż¤ÎĽŢĽˇĽó¤ŹĽ¤ĽóĽżĄźĽÍĽĂĽČžĺ¤ÎĽŻĽéĽ¤Ľ˘ĽóĽČŔěÍѤĘ"
-"¤éĄ˘¤â¤Ă¤ČÄ㤤ĽěĽŮĽë¤ňÁޤó¤Ŕ¤Ű¤Ś¤Ź¤¤¤¤¤Ç¤š¤čĄŁ"
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Á°¤ÎĽěĽŮĽë¤Ë´đ¤Ĺ¤¤¤Ć¤¤¤Ţ¤š¤ŹĄ˘¤ł¤ě¤ÇĽˇĽšĽĆĽŕ¤Ď´°Á´¤Ë¤Č¤¸¤żžőÂÖ\n"
-"¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁĽťĽ­ĽĺĽęĽĆĽŁ¤ĎşÇÂç¤Ç¤šĄŁ"
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "ĽťĽ­ĽĺĽęĽĆĽŁ¤Îżĺ˝ŕ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "ĽťĽ­ĽĺĽęĽĆĽŁżĺ˝ŕ"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "ĽľĄźĽĐ¤Ëlibsafe¤ňťČ¤Ś"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"%s operating system chooser-he youkosou!\n"
-"\n"
-"Ichiran kara erande <ENTER> wo oshimasu. %d byou de Default ni narimasu.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "GRUB operating system chooser-he youkosou!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "%c, %c key wo tukatte entry wo shitei shite kudasai."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Kono OS wo kidou suru nara Enter, Kidou mae no jikkou command"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "no henshuu niha 'e', command line nara 'c' wo oshi masu."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Sentaku shita OS ga %d byou de jidoutekini kidou shimasu."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "/boot ¤ÎÍĆÎĚÉÔ­¤Ç¤š"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "ĽÇĽšĽŻĽČĽĂĽ×"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "ĽšĽżĄźĽČĽáĽËĽĺĄź"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "ĽÖĄźĽČĽíĄźĽŔ¤Ď %s ĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë¤ĎĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤ó\n"
-
-#: ../../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 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/ĽŐĽĄĽ¤Ľë(F)"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/ĽŐĽĄĽ¤Ľë(F)/˝ŞÎť(Q)"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "żˇĽšĽżĽ¤Ľë¤ËĘŹÎा¤ě¤ëĽâĽËĽż"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "żˇĽšĽżĽ¤ĽëĽâĽËĽż"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "¤Ő¤Ä¤Ś¤ÎĽâĽËĽż"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "¤Ő¤Ä¤Ś¤Î Gtk+ ĽâĽËĽż"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "ľŻĆ°ťţ¤ËAurora¤ňźÂšÔ"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub ĽâĄźĽÉ"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot ĽâĄźĽÉ"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"¤¤¤ŢĄ˘ĽÖĄźĽČĽŢĽÍĄźĽ¸Ľă¤Ë¤Ď %s ¤ň¤ŞťČ¤¤¤Ç¤šĄŁ\n"
-"ŔßÄ꼌ĽŁĽśĄźĽÉ¤ňľŻĆ°¤š¤ë¤Ë¤ĎĄÖŔßÄęĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "ŔßÄę"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "ĽˇĽšĽĆĽŕĽâĄźĽÉ"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "ľŻĆ°ťţ¤Ë X ĽŚĽŁĽóĽÉĽŚ¤ňźÂšÔ"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "źŤĆ°ĽíĽ°Ľ¤Ľó¤Ď¤ˇ¤Ę¤¤"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "¤ł¤Î (ĽćĄźĽśĄ˘ĽÇĽšĽŻĽČĽĂĽ×ĄË¤ÇźŤĆ°ĽíĽ°Ľ¤Ľó¤š¤ë"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "/etc/inittab ¤ŹĆɤߤȤęÍѤ˳Ť¤ą¤Ţ¤ť¤ó: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "¤˘¤Č %d ĘŹ"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "¤˘¤Č 1 ĘŹ"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "¤˘¤Č %d ÉĂ"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÄɲ䚤ë¤Ţ¤ÇĽšĽŻĽęĄźĽóĽˇĽçĽĂĽČ¤ĎťŁ¤ě¤Ţ¤ť¤ó"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "%s ¤ÎĽ¤ĽóĽšĽČĄźĽë¸ĺ¤ËĽšĽŻĽęĄźĽóĽˇĽçĽĂĽČ¤Ź˛ÄÇ˝¤Ç¤š"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "ĽŐĽéĽóĽš"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "ĽłĽšĽżĽęĽŤ"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "ĽŮĽëĽŽĄź"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "ĽÁĽ§ĽłśŚĎšń"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "ĽÉĽ¤ĽÄ"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "ĽŽĽęĽˇĽă"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "ĽÎĽëĽŚĽ§Ąź"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "ĽšĽŚĽ§ĄźĽÇĽó"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "ĽŞĽéĽóĽŔ"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Ľ¤ĽżĽęĽ˘"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "ĽŞĄźĽšĽČĽęĽ˘"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Ľ˘ĽáĽęĽŤšç˝°šń"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "ĽÇĄźĽż¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×¤ňźč¤Ă¤Ć˛ź¤ľ¤¤"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "¤č¤ŻĆɤó¤Ç˛ź¤ľ¤¤ĄŞ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"¤â¤ˇ aboot ¤ňťČ¤Ś¤Ä¤â¤ę¤Ę¤éĄ˘ĽÇĽŁĽšĽŻ¤ÎŔčĆŹ¤Ëśő¤­Îΰč (2048ĽťĽŻĽż¤Ż¤é¤¤)\n"
-"¤ňťÄ¤š¤č¤Śľ¤¤ňÉŐ¤ą¤Ć˛ź¤ľ¤¤ĄŁ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Ľ¨ĽéĄź"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "ĽŚĽŁĽśĄźĽÉ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Ć°şî¤ňÁŞÂň"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"ĽĎĄźĽÉĽÇĽŁĽšĽŻÁ´ÂΤŹÂ礭¤Ę FAT ĽŃĄźĽĆĽŁĽˇĽçĽó°ě¤Ä¤Ŕ¤ą¤Ç¤š¤Í\n"
-"ĄĘ¤ż¤Ö¤óMS Dos/ĽŚĽŁĽóĽÉĽŚĽş¤Î¤â¤Î¤Ç¤šĄËĄŁ\n"
-"¤Ţ¤ş¤Ď¤ł¤¤¤Ä¤ňĽęĽľĽ¤Ľş¤š¤ë¤Î¤Ź¤¤¤¤¤Ç¤ˇ¤ç¤Ś\n"
-"ĄĘ¤˝¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤ĆĄ˘źĄ¤ËĄÖĽęĽľĽ¤ĽşĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć˛ź¤ľ¤¤)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "ĘŃšš¤š¤ëĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "žÜşŮ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Ľ¸ĽăĄźĽĘĽęĽóĽ°ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "ĽšĽďĽĂĽ×"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "śő"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "¤˝¤Îž"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ ĽżĽ¤Ľ×:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "şîŔŽ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "ĽżĽ¤Ľ×"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Âĺ¤ď¤ę¤ËĄČ%sĄÉ¤ňťČ¤Ă¤Ć˛ź¤ľ¤¤"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "şď˝ü"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "şÇ˝é¤ËĄÖĽ˘ĽóĽŢĽŚĽóĽČĄ×¤ňťČ¤Ă¤Ć˛ź¤ľ¤¤"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"ĽŃĄźĽĆĽŁĽˇĽçĽó¤Îˇż¤ň %s ¤ËĘŃšš¤ˇ¤ż¸ĺĄ˘¤ł¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóžĺ¤ÎĽÇĄźĽż¤Ďźş¤ď¤ě¤Ţ"
-"¤š"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁŞÂň"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Ę̤μѥźĽĆĽŁĽˇĽçĽó¤ňÁޤÖ"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "˝ŞÎť"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Ľ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉ¤Ë°Ü¤ë"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "ĽÎĄźĽŢĽëĽâĄźĽÉ¤Ë°Ü¤ë"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "¤â¤Č¤ËĚᤚ"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "¤˝¤ě¤Ç¤âÂł¤ą¤Ţ¤š¤ŤĄŠ"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "ĽťĄźĽÖ¤ť¤ş˝ŞÎť"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňššżˇ¤ť¤ş¤Ë˝ŞÎťĄŠ"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr " /etc/fstab ¤ÎĘŃšš¤ňĘݸ¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "źŤĆ°łä¤ęĹö¤Ć"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Á´¤Ć¤ňĽŻĽęĽ˘"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤ÎžđĘó"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Á´¤Ć¤ÎĽ×ĽéĽ¤ĽŢĽęĽŃĄźĽĆĽŁĽˇĽçĽó¤ŹťČ¤ď¤ě¤Ć¤¤¤Ţ¤š"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "¤ł¤ě°Ęžĺ¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎÄɲäǤ­¤Ţ¤ť¤ó"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁý¤ä¤ˇ¤ż¤¤¤Ę¤éĄ¤łČÄĽĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź\n"
-"şî¤ě¤ë¤č¤Ś¤Ë¤É¤ł¤Ť¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňžĂ¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňĘݸ"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňşĆŔ¸"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňťÄ¤š"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňşĆĆÉšţ"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "ĽęĽŕĄźĽĐĽÖĽëĽáĽÇĽŁĽ˘źŤĆ°şĆĽŢĽŚĽóĽČĂć"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "ĽŐĽĄĽ¤Ľë¤ňÁŞÂň"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"ĽĐĽĂĽŻĽ˘ĽĂĽ×¤š¤ëĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ÎĽľĽ¤Ľş¤Ź°ă¤¤¤Ţ¤š\n"
-"Âł¤ą¤Ţ¤š¤ŤĄŠ"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "ˇŮšđ"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"ĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ¤ËÁŢĆţ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
-"ĽŐĽíĽĂĽÔĄźžĺ¤ÎÁ´¤Ć¤ÎĽÇĄźĽż¤Ďźş¤ď¤ě¤Ţ¤š"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňľß˝Đ¤ˇ¤Ć¤ß¤Ţ¤š"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "žÜşŮ¤ĘžđĘó"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "ĽŞĽ×ĽˇĽçĽó"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "ĽęĽľĽ¤Ľş"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "°ÜĆ°"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "ĽŐĽŠĄźĽŢĽĂĽČ"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "ĽŢĽŚĽóĽČ"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "RAID ¤Ë˛Ă¤¨¤ë"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "LVM ¤Ë˛Ă¤¨¤ë"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Ľ˘ĽóĽŢĽŚĽóĽČ"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "RAID ¤Ť¤é˝ü¤Ż"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "LVM ¤Ť¤é˝ü¤Ż"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "RAID¤ÎĘŃšš"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "ĽëĄźĽ×ĽĐĽĂĽŻ¤ÎťČÍŃ"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "żˇ¤ˇ¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşîŔŽ"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "łŤťĎĽťĽŻĽż: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "MB ¤Ç¤ÎĽľĽ¤Ľş: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕĽżĽ¤Ľ×: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Ľ×ĽęĽŐĽĄĽěĽóĽš: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "ĽëĄźĽ×ĽĐĽĂĽŻĽŐĽĄĽ¤Ľë¤ňşď˝ü¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽżĽ¤Ľ×¤ÎĘŃšš"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "¤É¤ÎĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "ext2 ¤Ť¤é ext3 ¤ËĘŃšš¤ˇ¤Ć¤¤¤Ţ¤š"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "ĽëĄźĽ×ĽĐĽĂĽŻĽŐĽĄĽ¤Ľë %s ¤ň¤É¤ł¤ËĽŢĽŚĽóĽČ¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "ĽÇĽĐĽ¤Ľš %s ¤ň¤É¤ł¤ËĽŢĽŚĽóĽČ¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"¤ł¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĽëĄźĽ×ĽĐĽĂĽŻ¤ÇťČ¤ď¤ě¤Ć¤¤¤ë¤Î¤ÇĄ˘\n"
-"ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤Ť¤éźč¤ę˝˘¤Ż¤ł¤Č¤Ź˝ĐÍč¤Ţ¤ť¤óĄŁ\n"
-"¤Ţ¤şĽëĄźĽ×ĽĐĽĂĽŻ¤ň˛ň˝ü¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "fat ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤Îś­łŚ¤ňˇ×ťť"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "ĽęĽľĽ¤ĽşĂć"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "¤ł¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĽęĽľĽ¤Ľş¤Ç¤­¤Ţ¤ť¤ó"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "¤ł¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóžĺ¤ÎĽÇĄźĽż¤ĎĽĐĽĂĽŻĽ˘ĽĂĽ×¤š¤ë¤Ů¤­¤Ç¤š"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "ĽęĽľĽ¤Ľş¸ĺ¤Ë¤ĎĄ˘ĽŃĄźĽĆĽŁĽˇĽçĽó %s žĺ¤ÎĽÇĄźĽż¤Ďźş¤ď¤ě¤Ţ¤š"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "żˇ¤ˇ¤¤ĽľĽ¤Ľş¤ňÁŞÂň"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "MB ¤Ç¤ÎĽľĽ¤Ľş: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "¤É¤ÎĽÇĽŁĽšĽŻ¤Ë°ÜĆ°¤ˇ¤Ţ¤š¤Ť?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "ĽťĽŻĽż"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "¤É¤ÎĽťĽŻĽż¤ň°ÜĆ°¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "°ÜĆ°Ăć"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ň°ÜĆ°Ăć..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Äɲ䚤ë´ű¸¤Î RAID ¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "żˇľŹ"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Äɲ䚤ë´ű¸¤Î LVM ¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "LVM Ěž¤ĎĄŠ"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "¤ł¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĽëĄźĽ×ĽĐĽĂĽŻ¤Ë¤ĎťČ¤¨¤Ţ¤ť¤ó"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "ĽëĄźĽ×ĽĐĽĂĽŻ"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "ĽëĄźĽ×ĽĐĽĂĽŻĽŐĽĄĽ¤ĽëĚž: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "ĽŐĽĄĽ¤ĽëĚž¤ňĆţÎĎ"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "ĽŐĽĄĽ¤Ľë¤Ď¤š¤Ç¤ËĘ̤μ륟Ľ×ĽĐĽĂĽŻ¤ÇťČÍŃĂ楣ž¤Î¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤Ś"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "ĽŐĽĄĽ¤Ľë¤Ď¤š¤Ç¤Ë¸şß¤ˇ¤Ţ¤šĄŁ¤¤¤Ţ¤˘¤ë¤Î¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "ĽŢĽŚĽóĽČĽŞĽ×ĽˇĽçĽó"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "¤˝¤Îž"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "ĽÇĽĐĽ¤Ľš"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "ĽěĽŮĽë"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "ĽÁĽăĽóĽŻĽľĽ¤Ľş"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Ăí°Ő: ¤ł¤ÎÁŕşî¤Ď´í¸ą¤Ç¤šĄŁ"
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "¤É¤ó¤ĘĽŃĄźĽĆĽŁĽˇĽçĽó¤Ç¤š¤ŤĄŠ"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"¤´¤á¤ó¤Ę¤ľ¤¤Ą¤¤˝¤ł¤ĎĽÉĽéĽ¤ĽÖ¤Î¤Ť¤Ę¤ęąü¤Î¤Ű¤Ś(ĽˇĽęĽóĽŔ>1024)¤Ę¤Î¤Ç\n"
-"¤˝¤ł¤Ë /boot ¤Ďşî¤ě¤Ţ¤ť¤óĄŁ/boot¤Ź¤˝¤ł¤Ŕ¤ČĄ˘LILO ¤Ź¤Ś¤Ţ¤ŻĆŻ¤Ť¤Ę¤¤¤ˇĄ¤\n"
-"LILO ¤ňťČ¤ď¤Ę¤¤¤Ę¤é /boot ¤ĎÍפę¤Ţ¤ť¤ó¤Ť¤é"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"¤¤¤ŢĽëĄźĽČ(/)ÍѤËÁޤó¤ŔĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĄ¤ĘŞÍýĹŞ¤ËĽÉĽéĽ¤ĽÖ¤ÎŔčĆŹ¤Ť¤é\n"
-"1024 ĽˇĽęĽóĽŔ¤č¤ęąó¤Ż¤Ë¤˘¤Ă¤ĆĄ¤¤ľ¤é¤Ë¤˘¤Ę¤ż¤Ď/boot ĽŃĄźĽĆĽŁĽˇĽçĽó¤ň\n"
-"ťý¤Ă¤Ć¤¤¤Ţ¤ť¤ó¤ÍĄŁLILO ¤ňĽÖĄźĽČĽŢĽÍĄźĽ¸Ľă¤ËťČ¤Ś¤Ę¤éĄ¤/boot ĽŃĄźĽĆĽŁ\n"
-"ĽˇĽçĽó¤ÎÄɲäň¤ŞËş¤ě¤Ę¤ŻĄŁ"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"¤˘¤Ę¤ż¤ĎĽëĄźĽČ(/)¤Č¤Č¤ˇ¤ĆĽ˝ĽŐĽČĽŚĽ§Ľ˘RAIDĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁŞ¤Ó¤Ţ¤ˇ¤ż¤ÍĄŁ\n"
-"/boot ĽŃĄźĽĆĽŁĽˇĽçĽóĚľ¤ˇ¤Ç¤ł¤ě¤ňÁŕşî˝ĐÍč¤ëĽÖĄźĽČĽíĄźĽŔ¤Ď¤˘¤ę¤Ţ¤ť¤óĄŁ\n"
-"¤Ç¤š¤Ť¤é /boot ĽŃĄźĽĆĽŁĽˇĽçĽó¤ÎÄɲäň¤ŞËş¤ě¤Ę¤ŻĄŁ"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "ĽÉĽéĽ¤ĽÖ %s ¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňĽÇĽŁĽšĽŻ¤Ë˝ń¤­šţ¤ß¤Ţ¤šĄŞ"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "ĽęĽÖĄźĽČ¤ˇ¤ĆĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ÎĘŃšš¤ňČżąÇ¤ľ¤ť¤ëÉŹÍפŹ¤˘¤ę¤Ţ¤š"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "ĽŐĽŠĄźĽŢĽĂĽČ¤ˇ¤ż¤éĄ˘ĽŃĄźĽĆĽŁĽˇĽçĽó %s žĺ¤ÎĽÇĄźĽż¤Ďźş¤ď¤ě¤Ţ¤šĄŁ"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "ĽŐĽŠĄźĽŢĽĂĽČĂć"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "ĽëĄźĽ×ĽĐĽĂĽŻĽŐĽĄĽ¤Ľë %s ¤ňĽŐĽŠĄźĽŢĽĂĽČĂć"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó %s ¤ňĽŐĽŠĄźĽŢĽĂĽČĂć"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "ĽŐĽĄĽ¤Ľë¤ňąŁ¤š"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "żˇ¤ˇ¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó¤ËĽŐĽĄĽ¤Ľë¤ň°ÜĆ°"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"ĽÇĽŁĽěĽŻĽČĽę %s ¤Ë¤Ď¤š¤Ç¤ËĽÇĄźĽż¤Ź¤˘¤ę¤Ţ¤š\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "żˇ¤ˇ¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó¤ËĽŐĽĄĽ¤Ľë¤ň°ÜĆ°Ăć"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "%s ĽłĽÔĄźĂć"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "%s şď˝üĂć"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó %s ¤Ď¤ł¤ě¤Ç %s¤Ë¤Ę¤ę¤Ţ¤ˇ¤żĄŁ"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "ĽÇĽĐĽ¤Ľš: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS ĽÇĽĐĽ¤ĽšĽěĽżĄź: %s (żäÄę)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "ĽżĽ¤Ľ×: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "ĚžÁ°: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "łŤťĎ: ĽťĽŻĽż %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "ĽľĽ¤Ľş: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s ĽťĽŻĽż"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "ĽˇĽęĽóĽŔ %d ¤Ť¤éĽˇĽęĽóĽŔ %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "ĽŐĽŠĄźĽŢĽĂĽČşŃ¤ß\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "̤ĽŐĽŠĄźĽŢĽĂĽČ\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "ĽŢĽŚĽóĽČşŃ¤ß\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"ĽëĄźĽ×ĽĐĽĂĽŻĽŐĽĄĽ¤Ľë:\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"ĽÇĽŐĽŠĽëĽČ¤ÇĽŃĄźĽĆĽŁĽˇĽçĽóĽÖĄźĽČ\n"
-" (MS-DOS ¤ÎĽÖĄźĽČ, lilo ¤Ç¤Ď¤Ę¤¤)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "ĽěĽŮĽë %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "ĽÁĽăĽóĽŻĽľĽ¤Ľş %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAIDĽÇĽŁĽšĽŻ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "ĽëĄźĽ×ĽĐĽĂĽŻĽŐĽĄĽ¤ĽëĚž: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"¤ł¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤Ď¤É¤Ś¤â\n"
-"ĽÉĽéĽ¤ĽĐĄŚĽŃĄźĽĆĽŁĽˇĽçĽó¤é¤ˇ¤¤¤Ç¤š¤čĄŁ\n"
-"¤¤¤¸¤é¤Ę¤¤¤Ű¤Ś¤Ź¤¤¤¤¤Ç¤ˇ¤ç¤ŚĄŁ\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"¤ł¤ÎĆĂĘĚ¤Ę Bootstrap\n"
-"ĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĄ˘\n"
-"ĽÇĽĺĽ˘ĽëĽÖĄźĽČĽˇĽšĽĆĽŕÍѤǤšĄŁ\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "ĽľĽ¤Ľş: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Ľ¸ĽŞĽáĽČĽę: %s ĽˇĽęĽóĽŔ, %s ĽŘĽĂĽÉ, %s ĽťĽŻĽż\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "žđĘó: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVMĽÇĽŁĽšĽŻ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽëĽżĽ¤Ľ×: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "ĽĐĽš %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "ĽŞĽ×ĽˇĽçĽó: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "ĽŐĽĄĽ¤Ľë°Ĺšć˛˝¤Î¸°"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ°Ĺšć˛˝ÍѤθ°¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "¤ł¤Î°Ĺšć¸°¤Ď´ĘĂą¤š¤Ž¤Ţ¤šĄĘşÇÄă¤Ç¤â %d ʸťúťČ¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄË"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "°Ĺšć¸°¤Ź°ěĂפˇ¤Ţ¤ť¤ó"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "°Ĺšć¸°"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "°Ĺšć¸°ĄĘ¤â¤Ś°ěĹŮĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄË"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "ĽżĽ¤Ľ×¤ÎĘŃšš"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "ĽáĽÇĽŁĽ˘¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "ĽľĄźĽĐ¤ň¸Ąş÷"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s ĽŐĽŠĄźĽŢĽĂĽČ, %s źşÇÔ"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "%s ¤ň ĽżĽ¤Ľ× %s ¤ÇĽŐĽŠĄźĽŢĽĂĽČ¤š¤ëĘýËĄ¤ňĂΤę¤Ţ¤ť¤ó"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó %s ¤ňĽÇĽŁĽěĽŻĽČĽę %s ¤ËĽŢĽŚĽóĽČ¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż"
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck źşÇÔĄ˘exit code %d ¤Ţ¤ż¤Ď signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "%s ¤ňĽ˘ĽóĽŢĽŚĽóĽČĂć¤ËĽ¨ĽéĄź: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "´ĘĂą¤Ë"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "/usr ¤Ç"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "ĽľĄźĽĐ"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "16MB°Ę˛ź¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë JFS ¤ĎťČ¤¨¤Ţ¤ť¤ó"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "32MB°Ę˛ź¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë ReiserFS ¤ĎťČ¤¨¤Ţ¤ť¤ó"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤Ď / ¤ÇťĎ¤Ţ¤ëÉŹÍפŹ¤˘¤ę¤Ţ¤š"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ %s ¤ËĽŢĽŚĽóĽČşŃ¤ß\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "LVM ĎŔÍýĽÜĽęĽĺĄźĽŕ¤ĎĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ %s ¤Ë¤ĎťČ¤¨¤Ţ¤ť¤ó"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "¤ł¤ÎĽÇĽŁĽěĽŻĽČĽę¤Ď root ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕĆâ¤ËťÄ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"¤ł¤ÎĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤Ë¤ĎĄ˘źÂşß¤š¤ëĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ (ext2, reiserfs) \n"
-"¤ŹÉŹÍפǤšĄŁ\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ %s ¤Ë¤Ď°Ĺšć˛˝ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤ĎťČ¤¨¤Ţ¤ť¤ó"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "źŤĆ°łä¤ęĹö¤Ć¤Ź¤Ç¤­¤ë¤Ű¤Éśő¤­ÍĆÎ̤Ź¤˘¤ę¤Ţ¤ť¤ó"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "¤š¤ë¤ł¤Č¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "˝ń¤­šţ¤ß¤Î¤ż¤á %s ¤ňłŤ¤Ż¤Č¤­Ľ¨ĽéĄź¤ŹČŻŔ¸: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Ľ¨ĽéĄźČŻŔ¸ - żˇ¤ˇ¤¤ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤ňš˝ĂۤǤ­¤ë¤č¤Ś¤ĘĽÇĽĐĽ¤Ľš¤Ź\n"
-"¸ŤÉŐ¤Ť¤ę¤Ţ¤ť¤óĄŁ¤Ę¤Ë¤Ź¸ś°ř¤ŤĄ˘ĽĎĄźĽÉĽŚĽ§Ľ˘¤ňĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux ¤ĎĽŢĽëĽÁĽćĄźĽśĽˇĽšĽĆĽŕ¤Ç¤šĄŁ¤Ä¤Ţ¤ęłĆĽćĄźĽś¤ĎźŤĘŹ¤ÎšĽ¤­¤ĘŔßÄę¤ä\n"
-"ĽŐĽĄĽ¤Ľë¤ň¤â¤Ć¤Ţ¤šĄŁžÜ¤ˇ¤Ż¤ĎĄ˘ĽćĄźĽśĄźĽŹĽ¤ĽÉ¤ňĆɤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"¤Ç¤â´ÉÍýźÔ¤Ç¤˘¤ë root ¤Č¤Ď¤Á¤Ź¤Ă¤ĆĄ˘¤˘¤Ę¤ż¤Ź¤ł¤ł¤ÇÄɲ䚤ëĽćĄźĽś¤ĎĄ˘źŤĘŹ\n"
-"¤ÎĽŐĽĄĽ¤Ľë¤ČźŤĘŹ¤ÎŔßÄę°Ęł°¤Î¤â¤Î¤ĎĘѤ¨¤ë¸˘¸Â¤Ź¤˘¤ę¤Ţ¤ť¤óĄŁźŤĘŹÍѤ˞Ż¤Ę¤Ż\n"
-"¤Č¤â°ě¤Ä°ěČ̼楟Ľś¤ňşî¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤Ő¤Ä¤ŚťČ¤Ś¤Č¤­¤Ë¤ĎĄ˘¤˝¤ÎĽ˘ĽŤĽŚĽóĽČ¤ň\n"
-"ťČ¤¤¤Ţ¤šĄŁËčĆü root ¤ÇĽíĽ°Ľ¤Ľó¤š¤ë¤Čźę´Ö¤ĎžĘ¤ą¤Ţ¤š¤ŹĄ˘¤Č¤Ă¤Ć¤â´í¸ą¤Ç¤š!\n"
-"¤Á¤ç¤Ă¤Č¤ˇ¤ż¤Ţ¤Á¤Ź¤¤¤ÇĽˇĽšĽĆĽŕ¤ŹĆ°¤Ť¤Ę¤Ż¤Ę¤ę¤Ť¤Í¤Ţ¤ť¤óĄŁ¤â¤ˇ°ěČ̼楟Ľś¤Ç\n"
-"ÇÉźę¤ĘĽßĽš¤ň¤ˇ¤Ć¤âĄ˘°ěÉôžđĘó¤ňźş¤Ś¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤ó¤ŹĄ˘ĽˇĽšĽĆĽŕÁ´ÂΤˤϹƜÁ\n"
-"¤ˇ¤Ţ¤ť¤óĄŁ\n"
-"\n"
-"¤Ţ¤şĄ˘ËÜĚž¤ňĆţ¤ě¤Ţ¤šĄŁ¤ł¤ě¤ĎÉŹ¤ş¤ˇ¤âÉŹÍפ˘¤ę¤Ţ¤ť¤óĄŁźÂşÝ¤Ë¤ĎšĽ¤­¤Ę¤â¤Î¤ň\n"
-"Ćţ¤ě¤é¤ě¤Ţ¤šĄŁ¤š¤ë¤Č drakX ¤Ď¤˘¤Ę¤ż¤ÎĆţÎϤˇ¤żşÇ˝é¤ÎĂą¸ě¤ň¤Č¤Ă¤ĆĄ˘¤˝¤ě¤ň\n"
-"ĽćĄźĽśĚž¤ÇťČ¤¤¤Ţ¤šĄŁ¤ł¤ě¤ĎĄ˘¤˝¤ÎĽćĄźĽś¤ŹĽˇĽšĽĆĽŕ¤ËĽíĽ°ĽŞĽó¤š¤ë¤Č¤­¤ÎĚžÁ°\n"
-"¤Ë¤Ę¤ę¤Ţ¤šĄŁ¤ł¤ě¤ĎĘѤ¨¤ë¤ł¤Č¤â¤Ç¤­¤Ţ¤šĄŁ¤˝¤ě¤Ť¤éĽŃĽšĽďĄźĽÉ¤ňĆţÎϤˇ¤Ţ¤šĄŁ\n"
-"Ćø˘¤Ę¤ˇ¤ÎĄĘ°ěČ̥˼楟Ľś¤ÎĽŃĽšĽďĄźĽÉ¤ĎĄ˘ĽťĽ­ĽĺĽęĽĆĽŁ¤Î´ŃĹŔ¤Ť¤é¤Ď root ¤Î\n"
-"ĽŃĽšĽďĄźĽÉ¤Ű¤É˝ĹÍפǤϤ˘¤ę¤Ţ¤ť¤ó¤ŹĄ˘¤Ŕ¤Ť¤é¤Č¤¤¤Ă¤Ć°Â°×¤Ę¤ł¤Č¤Ď¤ˇ¤Ę¤¤¤Ç¤Ż\n"
-"¤Ŕ¤ľ¤¤ĄŁ¤˘¤Ę¤ż¤ÎĽŐĽĄĽ¤Ľë¤Ź´í¸ą¤Ë¤ľ¤é¤ľ¤ě¤Ţ¤šĄŁ\n"
-"\n"
-"ĄÖĽćĄźĽś¤ňÄɲåפňĽŻĽęĽĂĽŻ¤ˇ¤ż¤éĄ˘šĽ¤­¤Ę¤Ŕ¤ąĽćĄźĽś¤ňÄɲäǤ­¤Ţ¤šĄŁĂç´Ö¤Î\n"
-"¤˝¤ě¤ž¤ě¤ËĽ˘ĽŤĽŚĽóĽČ¤ň¤Ä¤Ż¤ę¤Ţ¤ˇ¤ç¤ŚĄŁ¤ŞÉ㤾¤ó¤äËĺ¤ÎĘŹ¤Ç¤âĄŁšĽ¤­¤Ę¤Ŕ¤ą¤Î\n"
-"ĽćĄźĽś¤ňÄɲäˇ˝Ş¤¨¤ż¤éĄ˘ĄÖ´°ÎťĄ×¤ň˛Ą¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-"ĄÖšâĹ٤ĘÁŞÂňĄ×ĽÜĽżĽó¤ň˛Ą¤š¤ČĄ˘¤˝¤ÎĽćĄźĽś¤ÎĽÇĽŐĽŠĽëĽČ¤ÎĽˇĽ§Ľë¤ňĘѤ¨¤é¤ě¤Ţ\n"
-"¤šĄĘĽÇĽŐĽŠĽëĽČ¤Ď bashĄË"
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"ĽĎĄźĽÉĽÇĽŁĽšĽŻžĺ¤Ë¸Ą˝Đ¤ľ¤ě¤żĄ˘´ű¸¤Î Linux ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňžĺ¤Ë\n"
-"ź¨¤ˇ¤Ţ¤šĄŁĽŚĽŁĽśĄźĽÉ¤ÎÁŞÂň¤ň¤˝¤Î¤Ţ¤Ţ¤Ë¤ˇ¤Ć¤Ş¤¤¤Ć¤â¤¤¤¤¤Ç¤ˇ¤ç¤ŚĄŁ\n"
-"ÄĚžď¤ÎÍřÍѤˤĎĚäÂꤢ¤ę¤Ţ¤ť¤óĄŁÁŞÂň¤ňĘѤ¨¤ż¤éĄ˘şÇÄă¤Ç¤â root\n"
-"ĽŃĄźĽĆĽŁĽˇĽçĽóĄĘĄÖ/Ą×ĄË¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤˘¤Ţ¤ęžŽ¤ľ¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó\n"
-"¤ň¤ł¤ł¤ÇÁŞ¤Ö¤ČĄ˘Ľ˝ĽŐĽČ¤ŹĆţ¤ęŔÚ¤é¤Ę¤Ż¤Ę¤ę¤Ţ¤š¤čĄŁ¤Ţ¤żĄ˘ĽÇĄźĽż¤ňĘ̤Î\n"
-"ĽŃĄźĽĆĽŁĽˇĽçĽó¤ËľŻ¤­¤ż¤ą¤ě¤ĐĄ˘ĄÖ/homeĄ×¤âťŘÄꤡ¤Ţ¤ˇ¤ç¤ŚĄĘ¤ł¤ě¤ĎĄ˘\n"
-"Linux ĽŃĄźĽĆĽŁĽˇĽçĽó¤ŹĘŁżô¤Ę¤¤¤ČÉÔ˛ÄÇ˝¤Ç¤š¤ŹĄËĄŁ\n"
-"\n"
-"\n"
-"¤Á¤Ę¤ß¤ËłĆĽŃĄźĽĆĽŁĽˇĽçĽó¤Ď°Ę˛ź¤Î˝ńź°¤Çľó¤Ź¤Ă¤Ć¤¤¤Ţ¤š: ĄÖĚžÁ°Ą×ĄÖÍĆÎĚĄ×\n"
-"\n"
-"\n"
-"ĄÖĚžÁ°Ą×¤ĎźĄ¤Î˝ńź°¤Ç¤š: ĄÖĽĎĄźĽÉĽÇĽŁĽšĽŻźďÎŕĄ×ĄÖĽÉĽéĽ¤ĽÖČÖšćĄ×\n"
-"ĄÖĽŃĄźĽĆĽŁĽˇĽçĽóČÖšćĄ×ĄĘ¤ż¤Č¤¨¤ĐĄÖhda1Ą×)\n"
-"\n"
-"\n"
-"ĄÖĽĎĄźĽÉĽÇĽŁĽšĽŻźďÎŕĄ×¤ĎĄ˘IDE ĽÇĽŁĽšĽŻ¤Ę¤éĄÖhdĄ×¤ÇĄ˘SCSI ¤Ę¤éĄÖsdĄ×\n"
-"¤Ç¤šĄŁ\n"
-"\n"
-"\n"
-"ĄÖĽÉĽéĽ¤ĽÖČÖšćĄ×¤ĎĄ˘ĄÖhdĄ×¤äĄÖsdĄ×¤Î¸ĺ¤Ë¤Ä¤ŻĘ¸ťú¤Ç¤šĄŁIDE¤Ę¤é:\n"
-"\n"
-" * ĄÖaĄ×¤ĎĽ×ĽéĽ¤ĽŢĽęĽłĽóĽČĽíĄźĽéžĺ¤ÎĽŢĽšĽżĽÇĽŁĽšĽŻ\n"
-"\n"
-" * ĄÖbĄ×¤ĎĽ×ĽéĽ¤ĽŢĽęĽłĽóĽČĽíĄźĽéžĺ¤ÎĽšĽěĄźĽÖĽÇĽŁĽšĽŻ\n"
-"\n"
-" * ĄÖcĄ×¤ĎĽťĽŤĽóĽŔĽęIDEĽłĽóĽČĽíĄźĽéžĺ¤ÎĽŢĽšĽżĽÇĽŁĽšĽŻ\n"
-"\n"
-" * ĄÖdĄ×¤ĎĽťĽŤĽóĽŔĽęIDEĽłĽóĽČĽíĄźĽéžĺ¤ÎĽšĽěĄźĽÖĽÇĽŁĽšĽŻ\n"
-"\n"
-"\n"
-"SCSI ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ÎžěšçĄ˘ĄÖaĄ×¤ŹSCSI IDČÖšćşÇžŽ¤ÎĽÇĽŁĽšĽŻĄ˘\n"
-"ĄÖbĄ×¤Ď¤˝¤ÎźĄ¤ÎIDČ֚楢¤Č¤¤¤Śśńšç¤Ç¤š"
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"Mandrake Linux Ľ¤ĽóĽšĽČĄźĽë¤ĎCD-ROMżôËç¤Ë¤Ţ¤ż¤Ź¤ę¤Ţ¤šĄŁDrakX\n"
-"¤ĎĄ˘Áޤó¤ŔĽŃĽĂĽąĄźĽ¸¤ŹĘ̤ÎCD-ROMžĺ¤Ë¤˘¤ë¤Č¤­¤ĎĄ˘¤¤¤Ţ¤ÎCD¤ň\n"
-"ĹǤ­˝Đ¤ˇ¤ĆĄ˘ÉŹÍפĘĘ̤ΠCD ¤ňĆţ¤ě¤ë¤č¤ŚÍ׾ᤡ¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"¤Ç¤ĎĄ˘ĽˇĽšĽĆĽŕ¤Ë¤É¤ó¤ĘĽ˝ĽŐĽČ¤ňĽ¤ĽóĽšĽČĄźĽë¤š¤ë¤ŤťŘÄꤡ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"Mandrake Linux ¤ÇťČ¤¨¤ëĽ˝ĽŐĽČ¤Ď˛żŔé¤Č¤˘¤ę¤Ţ¤š¤ˇĄ˘Á´Éô¤ňłĐ¤¨¤é¤ě¤ëżÍ¤Ď\n"
-"¤¤¤Ţ¤ť¤óĄŁ\n"
-"\n"
-"CD-ROM ¤Ť¤é¤Îɸ˝ŕĽ¤ĽóĽšĽČĄźĽë¤ň¤ˇ¤Ć¤¤¤ë¤Ę¤éĄ˘¤Ţ¤şźęťý¤Á¤ÎCD¤ňśľ¤¨¤ë¤č¤Ś\n"
-"¸Ŕ¤ď¤ě¤Ţ¤šĄĘĽ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉ¤Ç¤Î¤ßĄËĄŁźęťý¤ÁCD¤ÎĽéĽŮĽë¤ňÄ´¤Ů¤ĆĄ˘Ľ¤Ľó\n"
-"ĽšĽČĄźĽëÍѤ˝Ȥ¨¤ëCD¤ÎĽÁĽ§ĽĂĽŻĽÜĽĂĽŻĽš¤ňĽĎĽ¤ĽéĽ¤ĽČ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁÁ´Éô¤š¤ó\n"
-"¤Ŕ¤éOK¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-"ĽŃĽĂĽąĄźĽ¸¤ĎĄ˘ĽŢĽˇĽó¤ÎťČ¤¤Ęý¤Ëąţ¤¸¤ĆĽ°ĽëĄźĽ×¤´¤Č¤Ë¤Ţ¤Č¤á¤é¤ě¤Ć¤¤¤Ţ¤šĄŁ\n"
-"Ľ°ĽëĄźĽ×źŤÂΤ⣴¤Ä¤ÎÉôĘŹ¤ÇŔ°Íý¤ľ¤ě¤Ć¤¤¤Ţ¤š:\n"
-"\n"
-" * ĄÖĽďĄźĽŻĽšĽĆĄźĽˇĽçĽóĄ×: ĽďĄźĽŻĽšĽĆĄźĽˇĽçĽó¤Č¤ˇ¤ĆĽŢĽˇĽó¤ňťČ¤Ś¤Ę¤éĄ˘°Ę˛ź¤Î\n"
-"Ľ°ĽëĄźĽ×¤ÇťČ¤Ś¤â¤Î¤ňÁ´ÉôÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-" * ĄÖłŤČŻĄ×: ĽŢĽˇĽó¤ňĽ×ĽíĽ°ĽéĽßĽóĽ°¤ËťČ¤Ś¤Ę¤éĄ˘°Ę˛ź¤Ť¤é¤Ű¤ˇ¤¤Ľ°ĽëĄźĽ×¤ň\n"
-"¤¤¤Ż¤Ä¤Ç¤âÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-" * ĄÖĽľĄźĽĐĄ×: ¤ł¤ě¤ŹĽľĄźĽĐÍŃĽŢĽˇĽó¤Ë¤Ę¤ë¤Ę¤éĄ˘ĽŢĽˇĽó¤ËĽ¤ĽóĽš\n"
-"ĽČĄźĽë¤ˇ¤ż¤¤°ěČĚĹŞ¤ĘĽľĄźĽÓĽš¤ň¤ł¤ł¤ÇÁŞ¤Ů¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖĽ°ĽéĽŐĽŁĽĂĽŻ´Äś­Ą×: şÇ¸ĺ¤ËĄ˘¤ł¤ł¤Ç¤ĎšĽ¤ß¤ÎĽ°ĽéĽŐĽŁĽĂĽŻ´Äś­¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-"Ľ°ĽéĽŐĽŁĽĂĽŻĽďĄźĽŻĽšĽĆĄźĽˇĽçĽó¤Ź¤Ű¤ˇ¤ą¤ě¤ĐĄ˘şÇÄă°ě¤Ä¤ĎÁŞ¤Ó¤Ţ¤ˇ¤ç¤Ś!\n"
-"\n"
-"ĽŢĽŚĽš¤ÎĽŤĄźĽ˝Ľë¤ňĽ°ĽëĄźĽ×Ěžžĺ¤ËĆ°¤Ť¤š¤ČĄ˘¤˝¤ÎĽ°ĽëĄźĽ×¤Ë¤Ä¤¤¤Ć¤ÎĂť¤¤\n"
-"ŔâĚŔ¤Ź¤Ç¤Ţ¤šĄŁÄ̞DĽóĽšĽČĄźĽëťţĄĘĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤Ç¤Ď¤Ę¤ŻĄË¤Ë˛ż¤â\n"
-"Ľ°ĽëĄźĽ×¤ňÁŞ¤Đ¤Ę¤¤¤ČĄ˘ĽŔĽ¤Ľ˘ĽíĽ°¤ŹĽÝĽĂĽ×Ľ˘ĽĂĽ×¤ˇ¤ĆĄ˘łĆźď¤ÎşÇÄă¸Â\n"
-"Ľ¤ĽóĽšĽČĄźĽë¤ňÄó°Ć¤ˇ¤Ć¤Ż¤ě¤Ţ¤šĄ§\n"
-"\n"
-" * ĄÖX ¤ňťČ¤ŚĄ×Ľ¤ĽóĽšĽČĄźĽë¤ĎĄ˘Ľ°ĽéĽŐĽŁĽĂĽŻĽÇĽšĽŻĽČĽĂĽ×¤ňźÂ¸˝¤š¤ë\n"
-"ÉŹÍ׺ÇÄă¸Â¤ÎĽŃĽĂĽąĄźĽ¸¤Ŕ¤ą¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤š;\n"
-"\n"
-" * ĄÖ´đËÜĹŞ¤Ęʸ˝ń¤âĆţ¤ě¤ëĄ×´đËÜĽˇĽšĽĆĽŕ¤ČĄ˘´đËܼ楟ĽĆĽŁĽęĽĆĽŁ¤ä\n"
-"¤˝¤ÎĽÉĽ­ĽĺĽáĽóĽĆĄźĽˇĽçĽó¤âĆłĆţĄ˘¤ł¤ÎĽ¤ĽóĽšĽČĄźĽë¤ĎĽľĄźĽĐŔßĂÖÍѤË\n"
-"¸ţ¤¤¤Ć¤¤¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖËÜĹö¤ËşÇÄă¸Â¤ÎĽ¤ĽóĽšĽČĄźĽëĄ×¤Č¤Ë¤Ť¤ŻLInuxĽˇĽšĽĆĽŕ¤ň˛ÔĆŻ¤ľ¤ť¤ë\n"
-"ÉŹÍ׺ÇÄă¸Â¤Î¤â¤Î¤Ŕ¤ą¤ňĽ¤ĽóĽšĽČĄźĽëĄŁĽłĽŢĽóĽÉĽéĽ¤Ľó¤Î¤ßĄŁ¤ł¤ÎĽ¤ĽóĽšĽČĄźĽë\n"
-"¤ĎÁ´Éô¤Ç 65Mb ÄřĹ٤ǤšĄŁ\n"
-"\n"
-"ĄÖ¸ÄĘĚĽŃĽĂĽąĄźĽ¸¤ÎÁŞÂňĄ×ĽŞĽ×ĽˇĽçĽó¤ňĽÁĽ§ĽĂĽŻ¤š¤ë¤ł¤Č¤â¤Ç¤­¤Ţ¤šĄŁ\n"
-"Ä󜥤ľ¤ě¤Ć¤¤¤ëĽŃĽĂĽąĄźĽ¸¤ň˝ĎĂΤˇ¤Ć¤¤¤ë¤ŤĄ˘Ľ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤ë¤â¤Î¤ň\n"
-"´°Á´¤ËÇÄ°Ž¤ˇ¤ż¤ą¤ě¤Đ¤ł¤ě¤ňťČ¤¤¤Ţ¤šĄŁ\n"
-"\n"
-"Ľ¤ĽóĽšĽČĄźĽë¤ňĄÖššżˇĄ×ĽâĄźĽÉ¤ÇłŤťĎ¤ˇ¤ż¤éĄ˘Á´Ľ°ĽëĄźĽ×¤ňČóÁŞÂň¤Ë¤š¤ë\n"
-"¤Čżˇ¤ˇ¤¤ĽŃĽĂĽąĄźĽ¸¤ĎĆţ¤ě¤ş¤ËĄ˘´ű¸ĽˇĽšĽĆĽŕ¤Î˝¤Éüššżˇ¤ň¤š¤ë¤Ŕ¤ą¤Ë¤Ę\n"
-"¤ę¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"şÇ¸ĺ¤ËĄ˘ĄÖ¸ÄĘĚĽŃĽĂĽąĄźĽ¸¤ÎÁŞÂňĄ×¤ňÁޤó¤Ŕ¤Ť¤É¤Ś¤Ť¤Ë¤č¤Ă¤Ć¤Ď\n"
-"¤š¤Ů¤Ć¤ÎĽŃĽĂĽąĄźĽ¸¤ŹĽ°ĽëĄźĽ×¤´¤Č¤ËĘŹÎा¤ě¤ĆĽÄĽęĄźÉ˝ź¨¤ľ¤ě¤Ţ¤šĄŁ\n"
-"¤ł¤ÎĽÄĽęĄź¤ň¸Ť¤Ę¤Ź¤éĄ˘Ľ°ĽëĄźĽ×¤äĽľĽÖĽ°ĽëĄźĽ×Ăą°ĚĄ˘¤Ţ¤ż¤Ď¸ÄĘĚ\n"
-"ĽŃĽĂĽąĄźĽ¸¤ňÁޤó¤Ŕ¤ę˝üł°¤ˇ¤ż¤ę¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-"ĽÄĽęĄź¤ÎĽŃĽĂĽąĄźĽ¸¤ňÁŞ¤Ö¤ČĄ˘ąŚ¤Ë¤˝¤ÎŔâĚŔ¤Ź˝Đ¤Ţ¤šĄŁÁŞ¤Ó˝Ş¤ď¤Ă¤ż¤é\n"
-"ĄÖĽ¤ĽóĽšĽČĄźĽëĄ×ĽÜĽżĽó¤ň˛Ą¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁĽ¤ĽóĽšĽČĄźĽë¤ŹťĎ¤Ţ¤ę¤Ţ¤šĄŁ\n"
-"ĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎÂŽĹ٤ČÁޤó¤ŔĽŃĽĂĽąĄźĽ¸¤Îżô¤Ë¤č¤Ă¤Ć¤ĎĄ˘Ľ¤ĽóĽšĽČĄźĽë\n"
-"´°Îť¤Ţ¤Ç¤Ë¤Ť¤Ę¤ęťţ´Ö¤Ź¤Ť¤Ť¤ę¤Ţ¤šĄŁ´°Îť¤Ţ¤Ç¤ÎżäÄęťţšď¤ŹÉ˝ź¨¤ľ¤ě¤ë\n"
-"¤Î¤ÇĄ˘¤˝¤ě¤ň¸Ť¤Ć¤Ę¤ó¤Ç¤ˇ¤ż¤é¤ŞĂă¤Ç¤â¤É¤Ś¤žĄŁ\n"
-"\n"
-"!! ĽľĄźĽĐĽŃĽĂĽąĄźĽ¸¤ňÁޤó¤Ŕ¤ęĄ˘¤˘¤ë¤¤¤Ď¤˝¤ě¤Ź¤É¤ł¤Ť¤ÎĽ°ĽëĄźĽ×¤Ë\n"
-"´Ţ¤Ţ¤ě¤Ć¤¤¤żžěšç¤Ë¤ĎĄ˘¤˝¤ÎĽľĄźĽĐ¤ňËÜĹö¤ËĽ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤¤¤ŤĄ˘\n"
-"łÎǧ¤ňľá¤á¤é¤ě¤Ţ¤šĄŁMandrake Linux¤Ç¤ĎĄ˘Ľ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤żĽľĄźĽĐ\n"
-"¤ĎĽÇĽŐĽŠĽëĽČ¤ÇľŻĆ°ťţ¤Ë¤ż¤Á¤˘¤Ź¤ę¤Ţ¤šĄŁ¤ł¤ÎĽÇĽŁĽšĽČĽęĽÓĽĺĄźĽˇĽçĽó\n"
-"˝Đ˛Ůťţ¤Ë¤Ď°ÂÁ´¤ÇĚäÂꤏĂΤé¤ě¤Ć¤¤¤Ę¤Ż¤Ć¤âĄ˘¤ł¤ÎĽĐĄźĽ¸ĽçĽó´°ŔŽ¸ĺ¤Ë\n"
-"ĽťĽ­ĽĺĽęĽĆĽŁĽŰĄźĽë¤Ź¸Ť¤Ä¤Ť¤ë¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ¤â¤ˇ¤˝¤ÎĽľĄźĽÓĽš¤Ź˛ż¤Î\n"
-"¤ż¤á¤Î¤â¤Î¤ŤĄ˘¤Ę¤źĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤ë¤Î¤Ť¤Ź¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄÖ¤¤¤¤¤¨Ą×\n"
-"¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁĄÖ¤Ď¤¤Ą×¤ňĽŻĽęĽĂĽŻ¤š¤ë¤ČĄ˘°ěÍ÷¤ÎĽľĄźĽÓĽš¤Ď\n"
-"Ľ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤ĆĄ˘ĽÇĽŐĽŠĽëĽČ¤ÇľŻĆ°ťţ¤Ë¤ż¤Á¤˘¤Ź¤ę¤Ţ¤šĄŁ !!\n"
-"\n"
-"ĄÖ°Í¸´Řˇ¸¤ÎźŤĆ°˛ňˇčĄ×ĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ö¤ČĄ˘Ľ¤ĽóĽšĽČĄźĽé¤ŹźŤĆ°ĹޤË\n"
-"ĽŃĽĂĽąĄźĽ¸¤ňÁޤó¤Ŕ¤Č¤­¤Ë¤âˇŮšđĽŔĽ¤Ľ˘ĽíĽ°¤Ź˝Đ¤Ţ¤ť¤óĄŁ¤Ę¤źžĄźę¤ËĽŃ\n"
-"ĽĂĽąĄźĽ¸¤ňÁޤ֤Ť¤Č¸Ŕ¤Ś¤ČĄ˘¤Ű¤Ť¤ÎĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë¤š¤ë¤Č¤­\n"
-"¤ËÉŹÍפȤʤëĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤Ă¤ĆĄ˘¤˝¤ě¤Ź¤Ę¤¤¤ČĽ¤ĽóĽšĽČĄźĽë¤Ź´°Îť¤ˇ\n"
-"¤Ę¤¤¤Ť¤é¤Ç¤šĄŁ\n"
-"\n"
-"°ěÍ÷¤Î˛ź¤Ë¤˘¤ëžŽ¤ľ¤ĘĽŐĽíĽĂĽÔĄźĽÇĽŁĽšĽŻ¤ÎĽ˘Ľ¤ĽłĽó¤ĎĄ˘°ĘÁ°¤ÎĽ¤ĽóĽš\n"
-"ĽČĄźĽëťţ¤ËÁޤó¤ŔĽŃĽĂĽąĄźĽ¸°ěÍ÷¤ňĆɤߚţ¤ŕ¤ż¤á¤Î¤â¤Î¤Ç¤šĄŁ¤ł¤ÎĽ˘Ľ¤\n"
-"ĽłĽó¤ňÁŞ¤Ö¤ČĄ˘°ĘÁ°¤ÎĽ¤ĽóĽšĽČĄźĽë¤ÎşÇ¸ĺ¤Ëşî¤Ă¤żĽŐĽíĽĂĽÔĄź¤ňĆţ¤ě¤ë\n"
-"¤č¤Ś¤ËťŮťý¤Ź˝Đ¤Ţ¤šĄŁ¤ł¤Ś¤¤¤ŚĽŐĽíĽĂĽÔĄź¤Îşî¤ęĘý¤ĎĄ˘¤ľ¤¤¤´¤ÎĽšĽĆĽĂĽ×\n"
-"¤ÎĆóČÖĚܤμҼóĽČ¤ňĆɤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"¤ł¤ł¤Ç¤ĎĄ˘Ľ¤ĽóĽżĄźĽÍĽĂĽČ/ĽÍĽĂĽČĽďĄźĽŻŔÜÂł¤ÎŔßÄꤏ¤Ç¤­¤Ţ¤šĄŁĽŢĽˇĽó¤ň\n"
-"Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤äLAN¤Ë¤Ä¤Ę¤Ž¤ż¤¤¤Ę¤éĄÖOKĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"ĽÍĽĂĽČĽďĄźĽŻĽÇĽĐĽ¤Ľš¤äĽâĽÇĽŕ¤ÎźŤĆ°¸Ą˝Đ¤ŹłŤťĎ¤ľ¤ě¤Ţ¤šĄŁ¤â¤ˇ¤ł¤Î¸Ą˝Đ\n"
-"¤Ź¤Ś¤Ţ¤Ż¤¤¤Ť¤Ę¤ą¤ě¤ĐĄ˘źĄ˛ó¤ĎĄÖźŤĆ°¸Ą˝Đ¤ňťČ¤ŚĄ×¤ÎĽÁĽ§ĽĂĽŻ¤ň¤Ď¤ş¤ˇ¤Ć\n"
-"¤Ş¤­¤Ţ¤ˇ¤ç¤ŚĄŁ¤Ţ¤żĽÍĽĂĽČĽďĄźĽŻŔßÄę¤ň¤ˇ¤Ę¤¤Ą˘¤˘¤ë¤¤¤Ď¸ĺ˛ó¤ˇ¤Ë¤â¤Ç¤­\n"
-"¤Ţ¤šĄŁ¤˝¤Îžěšç¤Ë¤ĎĄÖĽ­ĽăĽóĽťĽëĄ×¤ňĽŻĽęĽĂĽŻ¤š¤ë¤Ŕ¤ą¤Ç¤šĄŁ\n"
-"\n"
-"˛ÄÇ˝¤ĘŔÜÂł¤ĎĄ˘ÉáÄ̤μâĽÇĽŕĄ˘ISDNĽâĽÇĽŕĄ˘ADSLŔÜÂłĄ˘ĽąĄźĽÖĽëĽâĽÇĽŕĄ˘¤˝¤ˇ¤Ć\n"
-"ÄĚžď¤ÎLANŔÜÂłĄĘĽ¤ĄźĽľĽÍĽĂĽČĄË¤Ç¤šĄŁ\n"
-"\n"
-"¤ł¤ł¤Ç¤ĎŔßÄę¤ÎşŮ¤Ť¤¤ĎäϤˇ¤Ţ¤ť¤óĄŁ¤ż¤ŔĄ˘Ľ¤ĽóĽżĄźĽÍĽĂĽČĽľĄźĽÓĽšĽ×ĽíĽĐĽ¤ĽŔ\n"
-"¤äĽˇĽšĽĆĽŕ´ÉÍýźÔ¤Ë¤â¤é¤Ă¤żĽŃĽéĽáĄźĽż¤ĎÁ´ÉôÍŃ°Ő¤ˇ¤Ć¤Ş¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"ŔßÄę¤ÎžÜşŮ¤ĎĄ˘ĽŢĽËĽĺĽ˘Ľë¤ÎĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ÎžĎ¤ň¸Ť¤ë¤ŤĄ˘¤˘¤ë¤¤¤ĎĂą¤Ë\n"
-"ĽˇĽšĽĆĽŕŔßÄꤏ¤š¤ó¤Ç¤Ť¤éĄ˘¤˝¤ł¤ÇŔâĚŔ¤š¤ëĽ×ĽíĽ°ĽéĽŕ¤ňťČ¤Ă¤ĆŔÜÂł¤ňŔßÄꤡ\n"
-"¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-"ĽÍĽĂĽČĽďĄźĽŻ¤ÎŔßÄę¤ĎĽ¤ĽóĽšĽČĄźĽë¸ĺ¤Ë¤ä¤ę¤ż¤¤Ą˘¤˘¤ë¤¤¤ĎĽÍĽĂĽČĽďĄźĽŻŔßÄꤏ\n"
-"¤š¤ó¤Ç¤¤¤ë¤Ę¤éĄÖĽ­ĽăĽóĽťĽëĄ×¤ň˛Ą¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"¤Ç¤ĎĽŢĽˇĽó¤ÎľŻĆ°ťţ¤ËźŤĆ°ĹŞ¤ËłŤťĎ¤ˇ¤ż¤¤ĽľĄźĽÓĽš¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-"¤ł¤ł¤Ë¤Ď¸˝şß¤ÎĽ¤ĽóĽšĽČĄźĽë¤ÇťČ¤¨¤ëĽľĄźĽÓĽš¤ŹÁ´Éôľó¤Ź¤Ă¤Ć¤¤¤Ţ¤šĄŁ\n"
-"¤č¤Ż¸Ť¤ĆĄ˘ľŻĆ°ťţ¤ËÉŹ¤ş¤ˇ¤âÉŹÍפʤ¤¤â¤Î¤ÎĽÁĽ§ĽĂĽŻ¤ň¤Ď¤ş¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-"łĆĽľĄźĽÓĽš¤ňÁŞ¤Ö¤ČĄ˘ŔâĚŔ¤Ź˝Đ¤Ţ¤šĄŁ¤Ç¤âĄ˘¤˝¤ÎĽľĄźĽÓĽš¤ŹĚň¤ËΊ¤Ä¤Ť\n"
-"¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘ĽÇĽŐĽŠĽëĽČ¤Î¤Ţ¤Ţ¤Ë¤ˇ¤Ć¤Ş¤Ż¤Ű¤Ś¤ŹĚľĆń¤Ç¤šĄŁ\n"
-"\n"
-"¤ł¤ÎĽŢĽˇĽó¤ňĽľĄźĽĐ¤Ë¤š¤ë¤Ä¤â¤ę¤Ę¤éĄ˘¤ł¤ł¤Ç¤ĎĆä˾¤¤ň¤Ä¤ą¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"ťČ¤ď¤Ę¤¤ĽľĄźĽÓĽš¤ň¤ŕ¤ä¤ß¤ËłŤťĎ¤ľ¤ť¤Ć¤Ď¤¤¤ą¤Ţ¤ť¤óĄŁ°ěÉô¤ÎĽľĄźĽÓĽš¤ĎĄ˘\n"
-"ĽľĄźĽĐžĺ¤ÇťČ¤Ś¤Č´í¸ą¤Ŕ¤Č¤¤¤Ś¤Î¤ň¤ŞËş¤ě¤Ę¤ŻĄŁ\n"
-"°ěČ̤˥˘ËÜĹö¤ËÉŹÍפʼľĄźĽÓĽš¤Ŕ¤ąÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"GNU/Linux ¤Ďťţ´Ö¤ň GMT (Ľ°ĽęĽËĽĂĽ¸É¸˝ŕťţ) ¤Ç´ÉÍý¤ˇ¤ĆĄ˘ÁŞ¤Đ¤ě¤żťţ´ÖÂÓ¤ň\n"
-"¤â¤Č¤Ë¸˝ĂĎťţ´Ö¤ËĘŃ´š¤ˇ¤Ţ¤šĄŁ¤Ç¤âĄ˘ĄÖĽĎĄźĽÉĽŚĽ§Ľ˘ĽŻĽíĽĂĽŻ¤ňGMT¤Ë¤˘¤ď¤ť¤ëĄ×\n"
-"¤ňČóÁŞÂň¤Ë¤š¤ě¤ĐĄ˘¤ł¤ÎĘýź°¤ň¤ä¤á¤ĆĄ˘ĽĎĄźĽÉĽŚĽ§Ľ˘ĽŻĽíĽĂĽŻ¤ČĽˇĽšĽĆĽŕĽŻĽíĽĂĽŻ\n"
-"¤ŹĆą¤¸ťţ´Ö¤Ë¤Ę¤ë¤č¤Ś¤Ë¤Ç¤­¤Ţ¤šĄŁ¤â¤ˇ¤ł¤ÎĽŢĽˇĽó¤ÇĽŚĽŁĽóĽÉĽŚĽş¤Î¤č¤Ś¤ĘĘ̤Î\n"
-"OS ¤ňĆ°¤Ť¤ˇ¤Ć¤¤¤ë¤Ę¤éĄ˘¤˝¤Î¤Ű¤Ś¤Ź¤¤¤¤¤Ç¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-"ĄÖźŤĆ°ťţ´Ö¤˘¤ď¤ťĄ×ĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ö¤ČĄ˘Ľ¤ĽóĽżĄźĽÍĽĂĽČžĺ¤ÎĽęĽâĄźĽČĽżĽ¤Ľŕ\n"
-"ĽľĄźĽĐ¤ËŔÜÂł¤ˇ¤ĆĄ˘źŤĆ°ĹŞ¤Ëťţ´Ö¤˘¤ď¤ť¤ňšÔ¤¤¤Ţ¤šĄŁ˝Đ¤Ć¤­¤ż°ěÍ÷¤Ť¤éĄ˘şÇ´ó¤ę\n"
-"¤ÎĽľĄźĽĐ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤â¤Á¤í¤ó¤ł¤ÎľĄÇ˝¤ňťČ¤Ś¤Ë¤ĎĄ˘Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł\n"
-"¤ŹÉŹÍפˤʤę¤Ţ¤šĄŁ¤˘¤Ę¤ż¤ÎĽŢĽˇĽóžĺ¤ËĽżĽ¤ĽŕĽľĄźĽĐ¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤ĆĄ˘\n"
-"ĽŞĽ×ĽˇĽçĽó¤Ë¤č¤Ă¤Ć¤ĎĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻžĺ¤Îž¤ÎĽŢĽˇĽó¤ŹĄ˘¤˝¤ě¤ËŔÜÂł¤ˇ¤Ć\n"
-"ťţ´Ö¤˘¤ď¤ť¤ň¤š¤ë¤ł¤Č¤â¤Ç¤­¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X (X ĽŚĽŁĽóĽÉĽŚĽˇĽšĽĆĽŕ) ¤ĎĄ˘GNU/Linux Ľ°ĽéĽŐĽŁĽĂĽŻĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Î\n"
-"Ľ­Ľâ¤ÇĄ˘Mandrake Linux ¤Ë¤Ä¤¤¤Ć¤¤¤ëĽ°ĽéĽŐĽŁĽĂĽŻ´Äś­ (KDE, Gnome, \n"
-"AfterStep, WindowMaker...)¤Ď¤š¤Ů¤Ć¤ł¤ě¤Ë°Í¸¤ˇ¤Ţ¤šĄŁ¤ł¤ł¤Ç¤ĎĄ˘DrakX\n"
-"¤ĎźŤĆ°ĹŞ¤Ë X ¤ňŔßÄꤡ¤č¤Ś¤Č¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-"¤ł¤ě¤ŹźşÇÔ¤š¤ë¤ł¤Č¤Ď¤Ţ¤ş¤˘¤ę¤Ţ¤ť¤óĄŁźşÇÔ¤š¤ë˛ÄÇ˝Ŕ­¤Č¤ˇ¤ĆšÍ¤¨¤é¤ě¤ë¤Î\n"
-"¤ĎĄ˘ĽĎĄźĽÉĽŚĽ§Ľ˘¤Ź¤Č¤Ć¤â¸Ĺ¤¤ĄĘ¤Ťżˇ¤ˇ¤š¤ŽĄË¤Č¤¤¤Ś¤ł¤Č¤Ç¤šĄŁŔŽ¸ů¤š¤ě¤Đ\n"
-"ĽâĽËĽż¤Ë˛ÄÇ˝¤ĘşÇÂç¤Î˛ňÁüĹ٤ǟŤĆ°ĹޤËX¤ŹľŻĆ°¤ˇ¤Ţ¤šĄŁ¤˝¤ˇ¤ĆĽŚĽŁĽóĽÉĽŚ\n"
-"¤Ź˝Đ¤Ć¤­¤ĆĄ˘¤ł¤Î˛čĚ̤Ź¸Ť¤¨¤ë¤Ť¤ČłÎǧ¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-"ĄÖĽ¨Ľ­ĽšĽŃĄźĽČĄ×Ľ¤ĽóĽšĽČĄźĽë¤Îžěšç¤Ë¤ĎĄ˘X ŔßÄ꼌ĽŁĽśĄźĽÉ¤ËĆţ¤ę¤Ţ¤šĄŁ\n"
-"¤ł¤ÎĽŚĽŁĽśĄźĽÉ¤Ë¤Ä¤¤¤ĆžÜ¤ˇ¤Ż¤ĎĄ˘ĽŢĽËĽĺĽ˘Ľë¤ň¸Ť¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"ĽáĽĂĽťĄźĽ¸¤Ź¸Ť¤¨¤ĆĄ˘¤˝¤ě¤ËĄÖ¤Ď¤¤Ą×¤ČĹú¤¨¤ż¤éĄ˘DrakX ¤ĎźĄ¤ËżĘ¤ß¤Ţ¤šĄŁ\n"
-"ĽáĽĂĽťĄźĽ¸¤Ź¸Ť¤¨¤Ę¤ą¤ě¤ĐĄ˘ŔßÄꤏ¤Ţ¤Á¤Ź¤Ă¤Ć¤¤¤ë¤Č¤¤¤Ś¤ł¤Č¤Ę¤Î¤ÇĄ˘¤˝¤Î\n"
-"ĽĆĽšĽČ¤Ď10ÉäǽŞÎť¤ˇ¤ĆĄ˘¤â¤Č¤Î˛čĚ̤ËĚá¤ę¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"°ěČŻĚܤŔ¤ČĄ˘¤˘¤Ţ¤ę˛čĚ̤Μńšç¤Ź¤č¤Ż¤Ę¤¤¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ\n"
-"˛čĚ̤ŹžŽ¤ľ¤š¤Ž¤ë¤Č¤ŤĄ˘ş¸ąŚ¤Ë¤ş¤ě¤Ć¤¤¤ë¤Č¤ŤĄËĄŁ¤Ŕ¤Ť¤é X ¤ŹŔľ¤ˇ¤Ż\n"
-"ľŻĆ°¤ˇ¤żžěšç¤Ë¤Ç¤âĄ˘DrakX ¤ĎŔßÄꤏŏŔÚ¤Ť¤É¤Ś¤Ť¤­¤¤¤ĆĄ˘˛ÄÇ˝¤ĘłĆźď¤Î\n"
-"ĽâĄźĽÉ¤ňÉ˝ź¨¤ˇ¤ĆĄ˘šĽ¤­¤Ę¤Î¤ňÁŞ¤Ů¤Č¸Ŕ¤Ś¤ď¤ą¤Ç¤šĄŁ\n"
-"\n"
-"şÇ¸ĺ¤ÎźęĂʤȤˇ¤ĆĄ˘ÁęĘѤď¤é¤şX¤ŹĆ°¤Ť¤Ę¤ą¤ě¤ĐĄÖĽ°ĽéĽŐĽŁĽĂĽŻĽšĽŤĄźĽÉ¤ÎĘŃššĄ×\n"
-"¤ňÁŞ¤ÓĄÖ°ěÍ÷¤Ë¤Ę¤¤ĽŤĄźĽÉĄ×¤ňÁŞÂňĄ˘¤É¤ÎĽľĄźĽĐ¤ňťČ¤Ś¤Ť¤­¤Ť¤ě¤ż¤é FBDev¤ň\n"
-"ÁŞ¤Ó¤Ţ¤šĄŁ¤ł¤ě¤ĎĽŐĽ§ĄźĽëĽťĄźĽŐ¤ĘÁŞÂňťč¤ÇĄ˘şÇśá¤Î¤š¤Ů¤Ć¤ÎĽ°ĽéĽŐĽŁĽĂĽŻĽš\n"
-"ĽŤĄźĽÉ¤ÇťČ¤¨¤Ţ¤šĄŁ¤˝¤ě¤Ť¤éĄÖşĆĽĆĽšĽČĄ×¤ňÁޤó¤ÇłÎǧ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"şÇ¸ĺ¤ËĄ˘ľŻĆ°ťţ¤ËĽ°ĽéĽŐĽŁĽĂĽŻĽćĄźĽśĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Ź¤Ű¤ˇ¤¤¤ŤĘš¤Ť¤ě¤Ţ¤šĄŁ\n"
-"ŔßÄę¤ňťî¤ˇ¤Ć¤¤¤Ę¤¤¤Č¤­¤Ç¤âĄ˘¤ł¤ÎźÁĚä¤Ď˝Đ¤Ţ¤šĄŁĽŢĽˇĽó¤ňĽľĄźĽĐ¤Č¤ˇ¤ĆťČ¤Ś¤Ť\n"
-"ĽÇĽŁĽšĽ×ĽěĽ¤¤ÎŔßÄꤏ¤Ś¤Ţ¤Ż¤¤¤Ť¤Ę¤Ť¤Ă¤żťţ¤Ë¤ĎĄ˘¤ł¤ł¤Ç¤Ď¤â¤Á¤í¤óĄÖ¤¤¤¤¤¨Ą×\n"
-"¤ČĹú¤¨¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"Mandrake Linux CDROM ¤Ë¤ĎĽěĽšĽ­ĽĺĄźĽâĄźĽÉ¤ŹÁȤߚţ¤ó¤Ç¤˘¤ę¤Ţ¤šĄŁ¤ł¤ě¤ň\n"
-"ťČ¤Ś¤Ë¤Ď CDROM ¤Ť¤éľŻĆ°¤ˇ¤ĆĄ˘ľŻĆ°ťţ¤Ë >>F1<< Ľ­Ąź¤ň˛Ą¤ˇĄ˘Ľ×ĽíĽóĽ×ĽČ¤Ç\n"
-">>rescue<< ¤ČĽżĽ¤Ľ×¤š¤ë¤ł¤Č¤Ç¤šĄŁ¤Ç¤âĄ˘CDROM¤Ť¤éľŻĆ°¤Ç¤­¤Ę¤¤žěšç¤Ë¤ĎĄ˘\n"
-"2źďÎŕ¤Îžěšç¤Ë¤ł¤ł¤ËĚá¤Ă¤Ć¤Ż¤ëÉŹÍפŹ¤˘¤ë¤Ç¤ˇ¤ç¤Ś:\n"
-"\n"
-" * ĽÖĄźĽČĽíĄźĽŔ¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Ë¤ĎĄ˘drakX ¤ĎźçĽÇĽŁĽšĽŻ¤ÎĽÖĄźĽČĽťĽŻĽż\n"
-" (MBR) ¤ň˝ń¤­´š¤¨¤Ţ¤šĄĘĘ̤μ֥źĽČĽŢĽÍĄźĽ¸Ľă¤ňťČ¤Ă¤Ć¤¤¤Ę¤¤¸Â¤ęĄËĄŁ¤ł¤Ś\n"
-"¤š¤ë¤ł¤Č¤ÇĄ˘ĽŚĽŁĽóĽÉĽŚĽş¤Č GNU/Linux ¤Î¤É¤Ă¤Á¤Ç¤âľŻĆ°¤Ç¤­¤ë¤č¤Ś¤Ë¤Ę¤ę\n"
-"¤Ţ¤šĄĘĽˇĽšĽĆĽŕ¤ËĽŚĽŁĽóĽÉĽŚĽş¤ŹĆţ¤Ă¤Ć¤¤¤ëžěšçĄËĄŁ\n"
-"ĄĄĽŚĽŁĽóĽÉĽŚĽş¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ę¤Ş¤š¤ČĄ˘ĽŢĽ¤ĽŻĽíĽ˝ĽŐĽČ¤ÎĽ¤ĽóĽšĽČĄźĽë\n"
-"Ľ×ĽíĽťĽš¤ŹĽÖĄźĽČĽťĽŻĽż¤ň˝ń¤­´š¤¨¤ë¤Î¤ÇĄ˘GNU/Linux¤ŹľŻĆ°¤Ç¤­¤Ţ¤ť¤ó!\n"
-"\n"
-" * ¤â¤ˇ˛ż¤ŤĚäÂꤏľŻ¤­¤ĆĄ˘ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤Ť¤é GNU/Linux ¤ňľŻĆ°¤Ç¤­¤Ę¤¤\n"
-"žěšç¤Ë¤ĎĄ˘GNU/Linux ¤ňľŻĆ°¤š¤ë¤Ë¤Ď¤ł¤ÎĽŐĽíĽĂĽÔĄź¤ˇ¤Ťźę¤Ź¤˘¤ę¤Ţ¤ť¤óĄŁ\n"
-"¤ł¤ÎĽÇĽŁĽšĽŻ¤Ë¤ĎĄ˘ÄäĹŤȤŤ¤Á¤ç¤Ă¤Č¤ˇ¤żĽżĽ¤Ľ×ĽßĽšĄ˘ĽŃĽšĽďĄźĽÉ¤Î´Ö°ă¤¤\n"
-"¤Ę¤É¤Ë¤č¤ëĽŻĽéĽĂĽˇĽĺ¤Ť¤éĽˇĽšĽĆĽŕ¤ň˛óÉü¤ľ¤ť¤ë¤Î¤ËťČ¤¨¤ëĄ˘łĆźď¤ÎĽÄĄźĽë\n"
-"¤ŹĆţ¤Ă¤Ć¤¤¤Ţ¤šĄŁ\n"
-"\n"
-"¤ł¤ÎĽšĽĆĽĂĽ×¤ňĽŻĽęĽĂĽŻ¤š¤ë¤ČĄ˘ĽŐĽíĽĂĽÔĄźĽÇĽŁĽšĽŻ¤ňĽÉĽéĽ¤ĽÖ¤ËĆţ¤ě¤í¤Č\n"
-"Í׾᤾¤ě¤Ţ¤šĄŁÁŢĆţ¤š¤ëĽŐĽíĽĂĽÔĄźĽÇĽŁĽšĽŻ¤ĎĄ˘śő¤ŤĄ˘ÉÔÍפʼǥźĽż¤ˇ¤Ť\n"
-"Ćţ¤Ă¤Ć¤¤¤Ę¤¤¤â¤Î¤Ë¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁĽŐĽŠĄźĽŢĽĂĽČ¤š¤ëÉŹÍפϤ˘¤ę¤Ţ¤ť¤óĄŁ\n"
-"DrakX¤Ź´°Á´¤Ë¤˝¤ě¤ň˝ń¤­´š¤¨¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"¤ľ¤Ć¤ł¤ó¤É¤ĎĄ˘ĽĎĄźĽÉĽÇĽŁĽšĽŻžĺ¤ÇMandrake Linux OS ¤ň¤É¤ł¤ËĽ¤ĽóĽšĽČĄźĽë\n"
-"¤š¤ë¤ŤÁޤ֤ł¤Č¤Ë¤Ę¤ę¤Ţ¤šĄŁ¤â¤ˇĽĎĄźĽÉĽÇĽŁĽšĽŻ¤Źśő¤ŤĄ˘¤š¤Ç¤ËĘ̤ΠOS ¤Ź\n"
-"ĽšĽÚĄźĽš¤ňÁ´ÉôťČ¤Ă¤Ć¤ˇ¤Ţ¤Ă¤Ć¤¤¤ż¤éĄ˘ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňŔڤäƤä¤ëÉŹÍפŹ\n"
-"¤˘¤ę¤Ţ¤šĄŁ°ě¸Ŕ¤ÇĄ˘ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňŔÚ¤ë¤Č¤¤¤Ś¤Î¤ĎĄ˘ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ňĎŔÍý\n"
-"ĹŞ¤ËĘŹłä¤ˇ¤Ć¤ä¤ë¤ł¤Č¤Ç¤šĄŁ¤˝¤Ś¤ä¤Ă¤ĆĄ˘żˇ¤ˇ¤Ż Mandrake Linux ĽˇĽšĽĆĽŕ¤ň\n"
-"Ľ¤ĽóĽšĽČĄźĽë¤š¤ëśčŔÚ¤ę¤ň¤ł¤ˇ¤é¤¨¤Ć¤ä¤ë¤ď¤ą¤Ç¤šĄŁ\n"
-"\n"
-"ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňŔÚ¤ë¤Î¤ĎĄ˘¤ä¤ę¤Ę¤Ş¤ˇ¤ä¸ĺĚá¤ę¤Ź¤­¤­¤Ţ¤ť¤óĄŁ¤Ŕ¤Ť¤é\n"
-"˝éż´źÔ¤Ë¤Ď¤Ş¤Ă¤Ť¤Ę¤¤¤ˇĄ˘ľ¤Čč¤ě¤š¤ëşîśČ¤Ç¤Ď¤˘¤ę¤Ţ¤šĄŁ\n"
-"¤ł¤ÎĽŚĽŁĽśĄźĽÉ¤ĎĽ×ĽíĽťĽš¤ň´ĘĂą¤Ë¤š¤ë¤ż¤á¤Î¤â¤Î¤Ç¤šĄŁťĎ¤á¤ëÁ°¤ËĄ˘\n"
-"ĽŢĽËĽĺĽ˘Ľë¤ň¤¸¤Ă¤Ż¤ęĆɤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"Ľ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉ¤ÇĽ¤ĽóĽšĽČĄźĽë¤ň¤ˇ¤Ć¤¤¤Ś¤Ę¤éĄ˘Mandrake Linux \n"
-"¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóĽÄĄźĽë DiskDrake ¤ŹľŻĆ°¤ˇ¤Ţ¤šĄŁ¤ł¤ě¤ňťČ¤Ś¤ČĄ˘ĽŃĄź\n"
-"ĽĆĽŁĽˇĽçĽó¤ÎşŮ¤Ť¤¤ŔßÄꤏ¤Ç¤­¤Ţ¤šĄŁĽŢĽËĽĺĽ˘Ľë¤Î DiskDrake ¤ÎžĎ¤ň \n"
-"ť˛žČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁťČ¤¤Ęý¤ĎĆą¤¸¤Ç¤šĄŁĽ¤ĽóĽšĽČĄźĽëĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš \n"
-"¤Ť¤é¤ĎĄ˘¤ł¤ł¤ÇŔâĚŔ¤š¤ëĽŚĽŁĽśĄźĽÉ¤ŹťČ¤¨¤Ţ¤šĄŁ¤ł¤ě¤Ë¤ĎĄ˘Ľ¤ĽóĽżĄź \n"
-"ĽŐĽ§ĄźĽš¤ÇĄÖĽŚĽŁĽśĄźĽÉĄ×ĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-"¤â¤ˇĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¤š¤Ç¤ËŔڤäƤ˘¤ë¤Ę¤éĄĘÁ°¤ËĽ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤ł \n"
-"¤Č¤Ź¤˘¤ë¤Č¤ŤĄ˘Ę̤μѥźĽĆĽŁĽˇĽçĽóĽÄĄźĽë¤ňťČ¤Ă¤ż¤Č¤ŤĄËĄ˘¤˘¤Č¤ĎĂą¤Ë \n"
-"Linux ĽˇĽšĽĆĽŕ¤ňĽ¤ĽóĽšĽČĄźĽë¤š¤ě¤Đ¤¤¤¤¤Ŕ¤ą¤Ç¤šĄŁ\n"
-"\n"
-"ĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¤Ţ¤ŔÄęľÁ¤ľ¤ě¤Ć¤¤¤Ę¤ą¤ě¤ĐĄ˘żˇ¤ˇ¤Żşî¤ę¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"¤˝¤ě¤Ë¤ĎĄ˘žĺ¤ÇÍŃ°Ő¤ˇ¤żĽŚĽŁĽśĄźĽÉ¤ňťČ¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ÎŔßÄę\n"
-"¤Ëąţ¤¸¤ĆĄ˘¤¤¤Ż¤Ä¤Ť¤ä¤ęĘý¤Ź¤˘¤ę¤Ţ¤š:\n"
-"\n"
-" * śő¤­ĽšĽÚĄźĽš¤ňťČ¤ŚĄ§¤ł¤ě¤Ďśő¤­ĽÇĽŁĽšĽŻ¤ňźŤĆ°ĹŞ¤ËĽŃĄźĽĆĽŁĽˇĽçĽó¤ˇ¤Ć \n"
-"¤Ż¤ě¤Ţ¤šĄŁ¤ł¤ě°Ęžĺ˛ż¤â¤š¤ëÉŹÍפϤ˘¤ę¤Ţ¤ť¤óĄŁ\n"
-"\n"
-"* ´ű¸ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňťČ¤Ś: ĽŚĽŁĽśĄźĽÉ¤Ź´ű¸¤ÎLinux ĽŃĄźĽĆĽŁĽˇĽçĽó¤ň \n"
-"ĽÇĽŁĽšĽŻžĺ¤Ç¸Ť¤Ä¤ą¤Ţ¤ˇ¤żĄŁ¤â¤ˇ¤ł¤ě¤ňťČ¤Ś¤Ę¤éĄ˘¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-"\n"
-" * ĽŚĽŁĽóĽÉĽŚĽş¤Îśő¤­ÉôĘŹ¤ňťČ¤Ś: ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ËĽŚĽŁĽóĽÉĽŚĽş¤Ź\n"
-" Ľ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ć¤¤¤ĆĄ˘ĽÇĽŁĽšĽŻÁ´ÂΤňťČ¤Ă¤Ć¤¤¤ë¤Ę¤éĄ˘\n"
-" Linux ¤ÎĽÇĄźĽżÍѤ˜ő¤­¤ň¤Ä¤Ż¤ëÉŹÍפŹ¤˘¤ę¤Ţ¤šĄŁ¤ł¤ě¤Ë¤ĎĄ˘\n"
-" ĽŚĽŁĽóĽÉĽŚĽş¤ňžĂ¤ˇ¤Ć¤ˇ¤Ţ¤Ă¤Ć¤â¤¤¤¤¤Ç¤š¤ˇĄĘžĺ¤ÎĄÖÁ´ĽÇĽŁĽšĽŻžĂľîĄ×\n"
-" ¤ŤĄÖĽ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉĄ×¤ň¸Ť¤Ć¤Ż¤Ŕ¤ľ¤¤ĄËĄ˘ĽŚĽŁĽóĽÉĽŚĽş¤Î\n"
-" ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽęĽľĽ¤Ľş¤š¤ëĘýËĄ¤â¤˘¤ę¤Ţ¤šĄŁĽęĽľĽ¤Ľş¤ÎžěšçĄ˘\n"
-" ĽÇĄźĽż¤Ď¤š¤Ů¤ĆťÄ¤ę¤Ţ¤šĄŁ Mandrake Linux ¤ČĽŚĽŁĽóĽÉĽŚĽş¤ňĆą¤¸\n"
-" ĽŢĽˇĽó¤ÇťČ¤¤¤ż¤ą¤ě¤Đ¤ł¤ě¤Ź¤ŞžŠ¤á¤Ç¤šĄŁ\n"
-"\n"
-" ¤ł¤ÎĘýËĄ¤ňÁޤÖÁ°¤ËĄ˘¤ł¤ě¤ň¤ä¤ë¤ČĽŚĽŁĽóĽÉĽŚĽş¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤Ď\n"
-" Á°¤č¤ęžŽ¤ľ¤Ż¤Ę¤ë¤Î¤ĎžľĂΤˇ¤Ć¤Ş¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-" ¤Ä¤Ţ¤ęĄ˘ĽŚĽŁĽóĽÉĽŚĽş¤Î¤Ű¤Ś¤Ç¤ĎĄ˘ĽÇĄźĽż¤ňĘݸ¤ˇ¤ż¤ężˇ¤ˇ¤¤Ľ˝ĽŐĽČ¤ň\n"
-" Ľ¤ĽóĽšĽČĄźĽë¤š¤ë¤Č¤­¤ËĄ˘ťČ¤¨¤ëśő¤­¤ŹžŻ¤Ę¤Ż¤Ę¤ë¤ď¤ą¤Ç¤šĄŁ\n"
-"\n"
-" * ĽÇĽŁĽšĽŻÁ´ÂΤňžĂľî: ĽĎĄźĽÉĽÉĽéĽ¤ĽÖžĺ¤ÎÁ´ĽÇĄźĽż¤äĽŃĄźĽĆĽŁĽˇĽçĽó¤ň\n"
-" žĂľî¤ˇ¤ĆĄ˘żˇ¤ˇ¤Ż Mandrake Linux ¤Çžĺ˝ń¤­¤ˇ¤ż¤ą¤ě¤ĐĄ˘¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ň\n"
-" ÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ¤ł¤ÎžěšçĄ˘żľ˝Ĺ¤Ë¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤¤¤Ă¤ż¤ółÎǧĽÜĽżĽó¤ň\n"
-" ˛Ą¤ˇ¤ż¤éĄ˘¤â¤Ś¤ä¤ę¤Ę¤Ş¤ˇ¤Ď¤­¤­¤Ţ¤ť¤óĄŁ\n"
-"\n"
-" !! ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ö¤ČĄ˘ĽÇĽŁĽšĽŻžĺ¤ÎĽÇĄźĽż¤Ď¤š¤Ů¤ĆžĂ¤¨¤Ţ¤š¤č !!\n"
-"\n"
-" * ĽŚĽŁĽóĽÉĽŚĽş¤ňşď˝ü: ĽÉĽéĽ¤ĽÖžĺ¤Î¤â¤Î¤š¤Ů¤Ć¤ňžĂľî¤ˇ¤ĆĄ˘Çňťć¤ÎžőÂÖ \n"
-"¤Ť¤éĽŃĄźĽĆĽŁĽˇĽçĽó¤ň¤ä¤ęÄž¤ˇ¤Ţ¤šĄŁĽÇĽŁĽšĽŻžĺ¤ÎĽÇĄźĽż¤ĎÁ´ÉôžĂ¤¨¤Ţ¤šĄŁ\n"
-"\n"
-" !! ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ö¤ČĄ˘ĽÇĽŁĽšĽŻžĺ¤ÎĽÇĄźĽż¤ĎÁ´ÉôžĂ¤¨¤Ţ¤š¤č !!\n"
-"\n"
-" * Ľ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉ: ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ňźęĆ°¤ÇĽŃĄźĽĆĽŁĽˇĽçĽó¤ˇ¤ż¤ą¤ě¤ĐĄ˘\n"
-" ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ¤Ç¤âĄ˘Ăí°Ő¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁśŻÎϤʤŔ¤ą¤ËĄ˘\n"
-" ´í¸ą¤ĘÁŞÂň¤Ç¤â¤˘¤ę¤Ţ¤šĄŁĽÇĽŁĽšĽŻžĺ¤ÎÁ´ĽÇĄźĽż¤ň¤˘¤Ă¤ľ¤ęžĂ¤ˇ¤Ć¤ˇ¤Ţ¤¨¤Ţ¤šĄŁ\n"
-" ¤č¤Ż¤č¤Ż¤ď¤Ť¤Ă¤ż¤Ś¤¨¤Ç¤Ę¤ą¤ě¤ĐĄ˘¤ł¤ě¤ĎÁŞ¤Đ¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"¤ĎĄź¤¤Ą˘¤Ç¤­¤Ţ¤ˇ¤żĄŁĽ¤ĽóĽšĽČĄźĽë¤Ź´°Îť¤ˇ¤ĆĄ˘GNU/LinuxĽˇĽšĽĆĽŕ¤ŹťČ¤¨¤ë\n"
-"¤č¤Ś¤Ë¤Ę¤ę¤Ţ¤ˇ¤ż¤čĄŁOK ¤ňĽŻĽęĽĂĽŻ¤š¤ë¤ČĽˇĽšĽĆĽŕ¤ŹşĆľŻĆ°¤ˇ¤Ţ¤šĄŁ¤â¤ˇ\n"
-"ĽÇĽĺĽ˘ĽëĽÖĄźĽČ¤Ë¤ˇ¤Ć¤¤¤ż¤éĄ˘ĽŚĽŁĽóĽÉĽŚĽş¤Ç¤âLinux¤Ç¤âÁŞ¤Ů¤Ţ¤šĄŁ\n"
-"\n"
-"ĄÖšâĹ٥׼ܼżĽóĄĘĽ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉ¤Î¤ßĄË¤ň˛Ą¤š¤ČĄ˘Ćó¤ÄĽÜĽżĽó¤Ź˝Đ¤Ć¤­¤Ţ¤š:\n"
-"\n"
-" * źŤĆ°Ľ¤ĽóĽšĽČĄźĽëĽŐĽíĽĂĽÔĄź¤ňşî¤ë: ˛ż¤âźę˝Đ¤ˇ¤ˇ¤Ę¤Ż¤Ć¤âźŤĆ°ĹŞ¤ËĄ˘\n"
-"¤¤¤Ţ¤ä¤Ă¤ż¤Î¤Č¤Ű¤Č¤ó¤ÉĆą¤¸Ľ¤ĽóĽšĽČĄźĽë¤ň¤ˇ¤Ć¤Ż¤ě¤ëĽŐĽíĽĂĽÔĄź¤ňşîŔŽĄŁ\n"
-"\n"
-" ¤ł¤ÎĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤š¤ë¤ČĄ˘Ćó¤Ä¤ÎĽŞĽ×ĽˇĽçĽó¤ŹÁŞ¤Ů¤Ţ¤š:\n"
-"\n"
-" * şĆ¸˝: ¤ł¤ě¤Ďźç¤ËźŤĆ°Ľ¤ĽóĽšĽČĄźĽë¤Ç¤šĄŁĽŃĄźĽĆĽŁĽˇĽçĽóŔÚ¤ę¤Ŕ¤ą¤Ď\n"
-"ÂĐĎῤǚԤď¤ě¤Ţ¤šĄŁ\n"
-"\n"
-" * źŤĆ°˛˝: ´°Á´¤ËźŤĆ°˛˝¤ľ¤ě¤żĽ¤ĽóĽšĽČĄźĽë¤Ç¤šĄŁĽĎĄźĽÉĽÇĽŁĽšĽŻ¤Ď\n"
-"´°Á´¤Ëžĺ˝ń¤­¤ľ¤ě¤ĆĽÇĄźĽż¤ĎÁ´ÉôžĂ¤¨¤Ţ¤šĄŁ\n"
-"\n"
-" ť÷¤ż¤č¤Ś¤ĘĽŢĽˇĽóÂżżô¤ËĽ¤ĽóĽšĽČĄźĽë¤š¤ë¤Č¤­¤Ë¤Ď¤Č¤Ć¤âĘŘÍř¤Ç¤šĄŁ\n"
-"ĘŔźŇ¤ÎĽŚĽ§ĽÖĽľĽ¤ĽČ¤ÇĄ˘Auto install ¤Îšŕ¤ň¸Ť¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-" * ĽŃĽĂĽąĄźĽ¸ÁŞÂň¤ňĘݸ(*): ¤¤¤ŢÁޤó¤ŔĽŃĽĂĽąĄźĽ¸¤ÎĽęĽšĽČ¤ňĘݸĄŁ\n"
-"¤ł¤Ś¤ˇ¤Ć¤Ş¤Ż¤ČĄ˘Ę̤μ¤ĽóĽšĽČĄźĽëťţ¤Ë¤âĽÉĽéĽ¤ĽÖ¤Ë¤ł¤ÎĽŐĽíĽĂĽÔĄź¤ň\n"
-"Ćţ¤ě¤ĆĄ˘ĽŘĽëĽ×˛čĚĚ F1 ¤Ç ĄÖlinux defcfg=\"floppy\"Ą×¤Ç¤š¤ß¤Ţ¤šĄŁ\n"
-"\n"
-"(*) FAT ˇÁź°¤ÎĽŐĽíĽĂĽÔĄź¤ŹÉŹÍץĘGNU/Linux ¤Çşî¤ë¤Ë¤ĎĄÖmformat a:Ą×\n"
-"¤ČĽżĽ¤Ľ×¤ˇ¤Ţ¤šĄŁ)"
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"żˇ¤ˇ¤Ż¤Ä¤Ż¤Ă¤żĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĄ˘¤š¤Ů¤ĆĽŐĽŠĄźĽŢĽĂĽČ¤ˇ¤Ę¤¤¤ČťČ¤¨¤Ţ¤ť¤ó\n"
-"ĄĘĽŐĽŠĄźĽŢĽĂĽČ¤Č¤ĎĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤ň¤Ä¤Ż¤ë¤Č¤¤¤Ś¤ł¤Č¤Ç¤šĄËĄŁ\n"
-"\n"
-"¤ł¤ł¤ÇĄ˘´ű¸¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤âĽŐĽŠĄźĽŢĽĂĽČ¤ˇ¤ĆĄ˘ĂćżČ¤ÎĽÇĄźĽż¤ňžĂľî\n"
-"¤ˇ¤Ć¤Ş¤Ż¤ł¤Č¤â¤Ç¤­¤Ţ¤šĄŁ¤ł¤Îžěšç¤Ë¤ĎĄ˘ĽŐĽŠĄźĽŢĽĂĽČ¤ˇ¤ż¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó\n"
-"¤âÁޤó¤Ç¤Ş¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"Ę̤˴ű¸¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĚľÍý¤ËĽŐĽŠĄźĽŢĽĂĽČ¤š¤ëÉŹÍפϤ˘¤ę¤Ţ¤ť¤óĄŁ\n"
-"OS ¤ÎĆţ¤Ă¤żĽŃĄźĽĆĽŁĽˇĽçĽóĄĘ¤ż¤Č¤¨¤ĐĄÖ/Ą×ĄÖ/usrĄ×ĄÖ/varĄ×¤Ę¤ÉĄË¤Ď\n"
-"ĽŐĽŠĄźĽŢĽĂĽČ¤ŹÉŹÍפǤš¤ŹĄ˘¤Č¤Ă¤Ć¤Ş¤­¤ż¤¤ĽÇĄźĽż¤ÎĆţ¤Ă¤ż\n"
-"ĽŃĄźĽĆĽŁĽˇĽçĽóĄĘÄĚžď¤ĎĄÖ/homeĄ×ĄË¤Ď¤˝¤Î¤Ţ¤Ţ¤Ç¤Ŕ¤¤¤¸¤ç¤Ś¤Ö¤Ç¤šĄŁ\n"
-"\n"
-"ĽŃĄźĽĆĽŁĽˇĽçĽóÁޤӤˤĎĂí°Ő¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁĽŐĽŠĄźĽŢĽĂĽČ¤ˇ¤ż¤éĄ˘ĽÇĄźĽż¤Ď\n"
-"Á´ÉôžĂľî¤ľ¤ě¤ĆĄ˘ĆóĹ٤ȲóÉü¤Ç¤­¤Ţ¤ť¤óĄŁ\n"
-"\n"
-"ĽŃĄźĽĆĽŁĽˇĽçĽó¤ÎĽŐĽŠĄźĽŢĽĂĽČ¤ňłŤťĎ¤š¤ë¤Ë¤ĎĄÖOKĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-"ž¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁޤó¤Ç¤˝¤Á¤é¤ËMandrake Linux OS ¤ňĆţ¤ě¤ë¤Ę¤éĄ˘\n"
-"ĄÖĽ­ĽăĽóĽťĽëĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"ÉÔÎÉĽÖĽíĽĂĽŻ¤ÎĽÁĽ§ĽĂĽŻ¤ň¤ˇ¤ż¤ą¤ě¤ĐĄÖšâĹ٤ĘÁŞÂňĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"żˇ¤ˇ¤¤ Mandrake Linux os ¤ňĽ¤ĽóĽšĽČĄźĽëĂć¤Ç¤šĄŁ¤ˇ¤Đ¤é¤Żťţ´Ö¤Ź\n"
-"¤Ť¤Ť¤ę¤Ţ¤šĄĘĽ¤ĽóĽšĽČĄźĽë¤š¤ëĽľĽ¤Ľş¤ČĽłĽóĽÔĽĺĄźĽż¤ÎÂŽĹ٤ˤâ¤č¤ę¤Ţ¤šĄËĄŁ\n"
-"\n"
-"¤ˇ¤Đ¤é¤Ż¤ŞÂÔ¤Á¤ňĄŁ"
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-"Mandrake Linux ¤ň¤˘¤Ę¤ż¤ŹĽ¤ĽóĽšĽČĄźĽë¤š¤ëş˘¤Ë¤ĎĄ˘¤ż¤Ö¤ó¤¤¤Ż¤Ä¤Ť¤ÎĽŃĽĂĽąĄźĽ¸\n"
-"¤Źššżˇ¤ľ¤ě¤Ć¤¤¤ë¤Ď¤ş¤Ç¤šĄŁĽĐĽ°ĽŐĽŁĽŻĽš¤ŹšÔ¤ď¤ě¤ż¤ęĄ˘ĽťĽ­ĽĺĽęĽĆĽŁĚäÂꤏ˛ňˇč\n"
-"¤ľ¤ě¤Ć¤¤¤ë¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ¤ł¤Ś¤¤¤Śššżˇ¤Î˛¸ˇĂ¤ňČď¤ë¤ż¤áĄ˘¤˝¤ě¤ňĽ¤ĽóĽżĄźĽÍĽĂ"
-"ĽČ\n"
-"¤Ť¤éĽŔĽŚĽóĽíĄźĽÉ¤š¤ë¤Ť¤É¤Ś¤Ť¤­¤Ť¤ě¤Ţ¤šĄŁĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤Ź¤˘¤ě¤ĐĄÖ¤Ď¤¤Ą×\n"
-"¤ňÁŞ¤ÓĄ˘ššżˇĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽë¤ň¸ĺ˛ó¤ˇ¤Ë¤š¤ë¤Ę¤éĄÖ¤¤¤¤¤¨Ą×¤ňÁޤӤŢ"
-"¤šĄŁ\n"
-"\n"
-"ĄÖ¤Ď¤¤Ą×¤ňÁŞ¤Ö¤ČĄ˘ššżˇĽŃĽĂĽąĄźĽ¸¤ÎĂÖ¤Ť¤ě¤żžě˝ę°ěÍ÷¤ŹÉ˝ź¨¤ľ¤ě¤Ţ¤šĄŁ\n"
-"şÇ´ó¤ę¤Îžě˝ę¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤š¤ë¤ČĽŃĽĂĽąĄźĽ¸ÁŞÂňĽÄĽęĄź¤ŹÉ˝ź¨¤ľ¤ě¤Ţ¤šĄŁ\n"
-"˛ż¤ŹÁŞ¤Đ¤ě¤ż¤ŤłÎǧ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁĄÖĽ¤ĽóĽšĽČĄźĽëĄ×¤ň˛Ą¤š¤ČĄ˘ÁŞÂňĽŃĽĂĽąĄźĽ¸\n"
-"¤ŹĆɤߚţ¤ßĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤šĄŁĄÖĽ­ĽăĽóĽťĽëĄ×¤ÇĂćĂǤǤšĄŁ"
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Ŕč¤ËżĘ¤ŕÁ°¤ËĽéĽ¤ĽťĽóĽšžňˇď¤ňżľ˝Ĺ¤ËĆɤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤ł¤ě¤Ď Mandrake Linux\n"
-"Á´ÂΤňĽŤĽĐĄź¤š¤ë¤â¤Î¤Ç¤šĄŁ°ě¤Ä¤Ç¤âĆą°Ő¤Ç¤­¤Ę¤¤žňšŕ¤Ź¤˘¤ě¤ĐĄ˘ĄÖľńČÝĄ×\n"
-"¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤š¤ë¤ČĽ¤ĽóĽšĽČĄźĽë¤Ź¤š¤°¤Ë˝Ş¤ď¤ę¤Ţ¤šĄŁĽ¤ĽóĽšĽČĄźĽë¤ň\n"
-"Âł¤ą¤ë¤Ë¤ĎĄ˘ĄÖĆą°Ő¤š¤ëĄ×ĽÜĽżĽó¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"¤ľ¤ĆĄ˘¤ł¤ó¤É¤Ď¤ł¤ÎĽŢĽˇĽó¤Ëľá¤á¤ëĽťĽ­ĽĺĽęĽĆĽŁżĺ˝ŕ¤ňÁޤÖĂĘłŹ¤Ç¤šĄŁ¸śÂ§¤Č¤ˇ¤Ć\n"
-"ĽŢĽˇĽó¤Źł°Éô¤Ë¤ľ¤é¤ľ¤ě¤Ć¤¤¤ëĹٚ礤¤Źšâ¤¤¤Ű¤ÉĄ˘¤˝¤ˇ¤ĆĽŢĽˇĽóĆâ¤ÎĽÇĄźĽż¤Î˝ĹÍ×\n"
-"Ŕ­¤Źšâ¤¤¤Ű¤ÉĄ˘ĽťĽ­ĽĺĽęĽĆĽŁżĺ˝ŕ¤âšâ¤Ż¤ˇ¤Ţ¤šĄŁ\n"
-"¤Ç¤âĄ˘šâ¤¤ĽťĽ­ĽĺĽęĽĆĽŁ¤ĎĄ˘°ěČ̤˼޼ˇĽó¤ÎťČ¤¤¤ä¤š¤ľ¤ňľžŔˇ¤Ë¤ˇ¤Ţ¤šĄŁ\n"
-"łĆżĺ˝ŕ¤Ë¤Ä¤¤¤ĆžÜ¤ˇ¤Ż¤ĎĄ˘ĽěĽŐĽĄĽěĽóĽšĽŢĽËĽĺĽ˘Ľë¤Î MSEC ¤ÎžĎ¤ňť˛žČ¤Î¤ł¤ČĄŁ\n"
-"\n"
-"˛ż¤ňÁŞ¤Ů¤Đ¤¤¤¤¤Ť¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘ĽÇĽŐĽŠĽëĽČ¤Î¤Ţ¤Ţ¤Ë¤ˇ¤Ć¤Ş¤­¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"¤ľ¤Ć¤ł¤ł¤ÇĄ˘żˇ¤ˇ¤¤ Mandrake Linux ĽˇĽšĽĆĽŕ¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ë¤É¤Î\n"
-"ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňťČ¤Ś¤ŤťŘÄꤡ¤Ţ¤šĄŁ¤â¤ˇĽŃĄźĽĆĽŁĽˇĽçĽó¤ŹÄęľÁşŃ¤ß¤Ę¤é\n"
-"ĄĘÁ°¤Ë GNU/Linux ¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤ł¤Č¤Ź¤˘¤Ă¤ż¤ęĘ̤μĥźĽë¤ňťČ¤Ă¤ż\n"
-"¤ę¤ˇ¤żžěšçĄËĄ˘¤˝¤ě¤ň¤˝¤Î¤Ţ¤ŢťČ¤Ś¤ł¤Č¤â¤Ç¤­¤Ţ¤šĄŁ¤˝¤ě°Ęł°¤ĎĄ˘\n"
-"ĽŃĄźĽĆĽŁĽˇĽçĽóÄęľÁ¤ŹÉŹÍפǤšĄŁ\n"
-"\n"
-"ĽŃĄźĽĆĽŁĽˇĽçĽó¤ň¤Ä¤Ż¤ë¤Ë¤ĎĄ˘¤Ţ¤şĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ňÁŞ¤Ó¤Ţ¤šĄŁ¤â¤ˇ\n"
-"şÇ˝é¤Î IDE ĽÉĽéĽ¤ĽÖ¤ňÁŞ¤Ö¤Ę¤éĄÖhdaĄ×Ą˘ĆóČÖĚܤΠIDE ¤Ę¤éĄÖhdbĄ×Ą˘\n"
-"şÇ˝é¤Î SCSI ĽÇĽŁĽšĽŻ¤Ę¤éĄÖsdaĄ×¤Č¤¤¤Śśńšç¤ËĽŻĽęĽĂĽŻ¤ˇ¤ĆÁŞ¤Ó¤Ţ¤šĄŁ\n"
-"\n"
-"ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňŔÚ¤ë¤Ë¤ĎĄ˘°Ę˛ź¤ÎĽŞĽ×ĽˇĽçĽó¤ŹťČ¤¨¤Ţ¤š:\n"
-"\n"
-" * ĄÖÁ´žĂľîĄ×: Áޤó¤ŔĽĎĄźĽÉĽÇĽŁĽšĽŻžĺ¤ÎÁ´ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňžĂľî¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖźŤĆ°łä¤ęĹö¤ĆĄ×: ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤Îśő¤­ÉôĘŹ¤ËĄ˘źŤĆ°ĹŞ¤Ë Ext2 ¤Č\n"
-" ĽšĽďĽĂĽ×ĽŃĄźĽĆĽŁĽˇĽçĽó¤ň¤Ä¤Ż¤ę¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖ¤â¤Ă¤ČĄ×: ¤ľ¤é¤ËÄɲþĄÇ˝¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤ë¤č¤Ś¤Ë¤Ę¤ę¤Ţ¤š:\n"
-"\n"
-" * ĄÖĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňĘݸĄ×: ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňĽŐĽíĽĂĽÔĄź\n"
-" ¤ËĘݸ¤ˇ¤Ţ¤šĄŁ¸ĺĆüĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë˝¤Éü¤ŹÉŹÍפʤȤ­¤ËĘŘÍř¤Ç¤šĄŁ\n"
-" ¤ł¤ě¤ĎŔ§Čó¤ä¤Ă¤Ć¤Ş¤Ż¤č¤Ś¤Ş´Ť¤á¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňÉü¸ľĄ×: Á°¤ËĽŐĽíĽĂĽÔĄź¤ËĘݸ¤ˇ¤żĽŃĄźĽĆĽŁĽˇĽç"
-"Ľó\n"
-" ĽĆĄźĽÖĽë¤ňÉü¸ľ¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë˝¤ÉüĄ×: ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ŹÇ˲ő¤ľ¤ě\n"
-" ¤ż¤éĄ˘¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤Ç¤˝¤ě¤ň˝¤Éü¤ˇ¤Ć¤ß¤ë¤ł¤Č¤Ź¤Ç¤­¤Ţ¤šĄŁ\n"
-" żľ˝Ĺ¤ËťČ¤Ă¤ĆĄ˘¤ł¤ě¤ŹËüÇ˝¤Ç¤Ę¤¤¤ł¤Č¤ĎžľĂΤˇ¤Ć¤Ş¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-" * ĄÖĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽëşĆĆÉšţĄ×: ĘŃšš¤ň¤š¤Ů¤ĆźÎ¤Ć¤ĆĄ˘şÇ˝é¤Î\n"
-" ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ËĚᤚ\n"
-"\n"
-" * ĄÖĽęĽŕĄźĽĐĽÖĽëĽáĽÇĽŁĽ˘¤ÎźŤĆ°ĽŢĽŚĽóĽČĄ×: ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ÎĽÁĽ§ĽĂĽŻ¤ň\n"
-" ¤Ď¤ş¤š¤ČĄ˘ĽćĄźĽś¤ĎźęĆ°¤ÇĽęĽŕĄźĽĐĽÖĽëĽáĽÇĽŁĽ˘Ą˘¤ż¤Č¤¨¤ĐĽŐĽíĽĂĽÔĄź¤ä \n"
-" CD-ROM¤ňźęĆ°¤ÇĽŢĽŚĽóĽČ/Ľ˘ĽóĽŢĽŚĽóĽČ¤š¤ëÉŹÍפŹ¤˘¤ę¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖĽŚĽŁĽśĄźĽÉĄ×: ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóĽŚĽŁĽśĄźĽÉ¤ňťČ¤Ś¤Č¤­¤Î\n"
-"ĽŞĽ×ĽˇĽçĽó¤Ç¤šĄŁĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë¤Ä¤¤¤Ć¤ÎĂÎźą¤Ź¤Ę¤¤żÍ¤ĎĄ˘¤ł¤ě¤Ź¤ŞžŠ¤á¤Ç¤šĄŁ\n"
-"\n"
-" * ĄÖźč¤ęžĂ¤ˇĄ×: ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňťČ¤Ă¤ĆĘŃšš¤ňźč¤ęžĂ¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖÄĚžď/Ľ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉ¤Ř¤ÎŔÚ¤ęÂؤ¨Ą×: ĽŃĄźĽĆĽŁĽˇĽçĽó¤ËÂФˇ¤ĆÄɲäÎ\n"
-"ťŘÄꤏ¤Ç¤­¤ë¤Ă¤č¤Ś¤Ë¤Ę¤ëĄĘźďÎॢĽŞĽ×ĽˇĽçĽóĄ˘ĽŐĽŠĄźĽŢĽóĽČ¤Ę¤ÉĄËĄŁ¤Ţ¤żžđĘó¤â\n"
-"žÜ¤ˇ¤ŻÉ˝ź¨¤ľ¤ě¤ëĄŁ\n"
-"\n"
-" * ĄÖ´°ÎťĄ×: ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóŔڤꤏ˝Ş¤ď¤Ă¤ż¤éĄ˘¤ł¤ÎĽŞĽ×ĽˇĽçĽó"
-"¤ň\n"
-"ťČ¤Ă¤ĆĘŃšš¤ňĘݸ¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-"ť˛šÍ¤Ţ¤Ç¤ËĄ˘Ľ­ĄźĽÜĄźĽÉ¤Ť¤éłĆĽŞĽ×ĽˇĽçĽó¤ŹÁŞ¤Ů¤Ţ¤šĄŁĽżĽÖ¤Čžĺ˛źĚđ°ő¤ňťČ¤Ă¤Ć\n"
-"ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-"ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁޤó¤Ŕ¤éĄ˘°Ę˛ź¤ŹťČ¤¨¤Ţ¤š:\n"
-"\n"
-" * Ctrl-cĄ§żˇľŹĽŃĄźĽĆĽŁĽˇĽçĽó¤ň¤Ä¤Ż¤ëĄĘśő¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁޤó¤Ŕ¤Č¤­)\n"
-"\n"
-" * Ctrl-dĄ§ĽŃĄźĽĆĽŁĽˇĽçĽóşď˝ü\n"
-"\n"
-" * Ctrl-mĄ§ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤ňĽťĽĂĽČ\n"
-"\n"
-"PPC ĽŢĽˇĽó¤ËĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤¤¤ëžěšç¤Ë¤ĎĄ˘yaboot ĽÖĄźĽČĽíĄźĽŔÍѤ˥˘\n"
-"şÇÄă 1 MB ¤ÎžŽ¤ľ¤Ę HFSĄÖĽÖĄźĽČĽšĽČĽéĽĂĽ×Ą×ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşî¤ę¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"¤ł¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĄ˘¤ż¤Č¤¨¤Đ 50 MB ¤Č¤ŤÂ礭¤á¤Ë¤ˇ¤Ć¤Ş¤Ż¤ČĄ˘¤˝¤ł¤ËÍ˝Č÷¤Î\n"
-"ĽŤĄźĽÍĽë¤äramdisk Ľ¤ĽáĄźĽ¸¤ňĘݸ¤ˇ¤Ć¤Ş¤ą¤ĆĄ˘śŰľŢľŻĆ°¤ËťČ¤¨¤ĆĘŘÍř¤Ç¤šĄŁ"
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"ĽŚĽŁĽóĽÉĽŚĽş¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¤¤¤Ż¤Ä¤ŤĽĎĄźĽÉĽÇĽŁĽšĽŻžĺ¤Ë¸Ť¤Ä¤Ť¤ę¤Ţ¤ˇ¤żĄŁ\n"
-"Mandrake Linux OS ¤ÎĽ¤ĽóĽšĽČĄźĽëÍѤ˼꼾Ľ¤Ľş¤ˇ¤ż¤¤¤â¤Î¤ňÁޤó¤Ç\n"
-"¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"łĆĽŃĄźĽĆĽŁĽˇĽçĽó¤Ď°Ę˛ź¤Î˝ńź°¤Ç¤š: ĄÖLinuxĚžĄ×ĄÖĽŚĽŁĽóĽÉĽŚĽşĚžĄ×ĄÖÍĆÎĚĄ×\n"
-"\n"
-"ĄÖLinux ĚžĄ×¤ĎźĄ¤Î˝ńź°¤Ç¤š: ĄÖĽĎĄźĽÉĽÇĽŁĽšĽŻźďÎŕĄ×ĄÖĽÉĽéĽ¤ĽÖČÖšćĄ×\n"
-"ĄÖĽŃĄźĽĆĽŁĽˇĽçĽóČÖšćĄ×ĄĘ¤ż¤Č¤¨¤ĐĄÖhda1Ą×)\n"
-"\n"
-"\n"
-"ĄÖĽĎĄźĽÉĽÇĽŁĽšĽŻźďÎŕĄ×¤ĎĄ˘IDE ĽÇĽŁĽšĽŻ¤Ę¤éĄÖhdĄ×¤ÇĄ˘SCSI ¤Ę¤éĄÖsdĄ×\n"
-"¤Ç¤šĄŁ\n"
-"\n"
-"\n"
-"ĄÖĽÉĽéĽ¤ĽÖČÖšćĄ×¤ĎĄ˘ĄÖhdĄ×¤äĄÖsdĄ×¤Î¸ĺ¤Ë¤Ä¤ŻĘ¸ťú¤Ç¤šĄŁIDE¤Ę¤é:\n"
-"\n"
-" * ĄÖaĄ×¤ĎĽ×ĽéĽ¤ĽŢĽęĽłĽóĽČĽíĄźĽéžĺ¤ÎĽŢĽšĽżĽÇĽŁĽšĽŻ\n"
-"\n"
-" * ĄÖbĄ×¤ĎĽ×ĽéĽ¤ĽŢĽęĽłĽóĽČĽíĄźĽéžĺ¤ÎĽšĽěĄźĽÖĽÇĽŁĽšĽŻ\n"
-"\n"
-" * ĄÖcĄ×¤ĎĽťĽŤĽóĽŔĽęIDEĽłĽóĽČĽíĄźĽéžĺ¤ÎĽŢĽšĽżĽÇĽŁĽšĽŻ\n"
-"\n"
-" * ĄÖdĄ×¤ĎĽťĽŤĽóĽŔĽęIDEĽłĽóĽČĽíĄźĽéžĺ¤ÎĽšĽěĄźĽÖĽÇĽŁĽšĽŻ\n"
-"\n"
-"\n"
-"SCSI ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ÎžěšçĄ˘ĄÖaĄ×¤ŹSCSI IDČÖšćşÇžŽ¤ÎĽÇĽŁĽšĽŻĄ˘\n"
-"ĄÖbĄ×¤Ď¤˝¤ÎźĄ¤ÎIDČ֚楢¤Č¤¤¤Śśńšç¤Ç¤š\n"
-"ĄÖĽŚĽŁĽóĽÉĽŚĽşĚžĄ×¤ĎĄ˘ĽŚĽŁĽóĽÉĽŚĽş¤Ç¤ÎĽÉĽéĽ¤ĽÖʸťú¤Ç¤šĄĘşÇ˝é¤ÎĽÇĽŁĽšĽŻ\n"
-"¤äĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĄÖC:Ą×ĽÉĽéĽ¤ĽÖ¤Ç¤š)ĄŁ"
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "¤ˇ¤Đ¤é¤Ż¤ŞÂÔ¤Á¤ňĄŁ¤ł¤ÎÁŕşî¤Ď¤ˇ¤Đ¤é¤Ż¤Ť¤Ť¤ę¤Ţ¤š¤Î¤ÇĄŁ"
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"DrakX¤Ď¤ł¤ó¤É¤ĎĄ˘¤É¤ó¤ĘźďÎŕ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ň¤ˇ¤ż¤¤¤ŤżŇ¤Í¤Ţ¤šĄŁĽÇĽŐĽŠĽëĽČ\n"
-"ĄĘżäžŠĄËĽ¤ĽóĽšĽČĄźĽë¤ŤĄ˘¤â¤Ă¤ČĽłĽóĽČĽíĄźĽë¤ˇ¤ż¤¤¤ŤĄĘĄÖĽ¨Ľ­ĽšĽŃĄźĽČĄ×ĄË\n"
-"¤Ç¤šĄŁ¤Ţ¤żżˇľŹĽ¤ĽóĽšĽČĄźĽë¤Ť´ű¸¤ÎMandrake Linux¤ňššżˇ¤š¤ë¤Î¤Ť¤âÁŞ¤Ů¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖĽ¤ĽóĽšĽČĄźĽëĄ× ¸Ĺ¤¤ĽˇĽšĽĆĽŕ¤ň´°Á´¤ËžĂľî¤ˇ¤Ţ¤šĄŁźÂ¤ĎĄ˘¤¤¤Ţ¤ÎĽŢĽˇĽó¤Î\n"
-"źďÎŕ¤Ë¤č¤Ă¤Ć¤ĎĄ˘¸Ĺ¤¤ĄĘLinux¤Î¤ß¤Ę¤é¤şÂž¤ÎĄËĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĘŃšš¤ˇ¤Ę¤¤¤Ţ¤Ţ\n"
-"Ęݸ¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖššżˇĄ× ¤ł¤ÎĽ¤ĽóĽšĽČĄźĽëĽŻĽéĽš¤Ç¤ĎĄ˘¤¤¤Ţ¤Î Mandrake Linux ĽˇĽšĽĆĽŕ\n"
-"žĺ¤ÎĽŃĽĂĽąĄźĽ¸¤ňššżˇ¤š¤ë¤Ŕ¤ą¤Ç¤šĄŁĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤äłĆźď\n"
-"ĽćĄźĽś¤Ë¤č¤ëŔßÄę¤ĎťÄ¤ę¤Ţ¤šĄŁ¤˝¤ě°Ęł°¤ĎÄ̞DĽóĽšĽČĄźĽë¤Č¤Ţ¤Ă¤ż¤ŻĆą¤¸\n"
-"ÁŞÂňťč¤ŹĆŔ¤é¤ě¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖĽŃĽĂĽąĄźĽ¸¤Î¤ßššżˇĄ× ¤ł¤Îżˇ¤ˇ¤¤ĽŻĽéĽš¤ĎĄ˘´ű¸ Mandrake Linux ¤ňššżˇ\n"
-"¤ˇ¤Ä¤ÄĄ˘¤¤¤Ţ¤Ţ¤Ç¤ÎĽˇĽšĽĆĽŕŔßÄę¤ĎĘѤ¨¤Ţ¤ť¤óĄŁĽŤĽěĽóĽČ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ËÂФˇ¤Ć\n"
-"żˇ¤ˇ¤¤ĽŃĽĂĽąĄźĽ¸¤ňÄɲ䚤ë¤Č¤­¤â¤ł¤ł¤Ç¤šĄŁ\n"
-"\n"
-"Mandrake Linux8.1°Ęšß¤ňššżˇ¤ˇ¤ż¤¤¤Î¤Ę¤éĄÖššżˇĄ×¤Ç¤Ŕ¤¤¤¸¤ç¤Ś¤Ö¤Ç¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-"GNU/Linux ¤Ř¤Î˝Ź˝ĎĹ٤˹ţ¤¸¤ĆĄ˘°Ę˛ź¤ÎĽ¤ĽóĽšĽČĄźĽëĄŚššżˇĽěĽŮĽë¤Ź\n"
-"ÁŞ¤Ů¤Ţ¤š:\n"
-"\n"
-"* żäžŠ: GNU/Linux ¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ź˝é¤á¤Ć¤Ę¤é¤ł¤ě¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"¤Ś¤ë¤ľ¤¤źÁĚä¤â¤˘¤Ţ¤ę¤Ę¤ŻĄ˘¤Č¤Ć¤â´ĘĂą¤ËĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-"* Ľ¨Ľ­ĽšĽŃĄźĽČ: GNU/Linux ¤ËžÜ¤ˇ¤¤żÍ¤ĎĄ˘¤ł¤ÎĽ¤ĽóĽšĽČĄźĽëĽŻĽéĽš¤ň\n"
-"ÁŞ¤Ů¤Ţ¤šĄŁ¤­¤ď¤á¤ĆĽŤĽšĽżĽŕ˛˝¤ˇ¤żĽ¤ĽóĽšĽČĄźĽë¤Ź¤Ç¤­¤Ţ¤šĄŁ\n"
-"GNU/Linux¤Ë¤Ä¤¤¤Ć¤č¤Ű¤ÉžÜ¤ˇ¤Ż¤Ę¤¤¤ČĄ˘¤Ę¤Ť¤Ę¤ŤĹú¤¨¤é¤ě¤Ę¤¤źÁĚ䤏\n"
-"¤˘¤ę¤Ţ¤šĄŁ¤ď¤Ť¤Ă¤żżÍ°Ęł°¤ĎĄ˘¤ł¤ÎĽŻĽéĽš¤ĎÁŞ¤Đ¤Ę¤¤¤ł¤ČĄŁ"
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"¤Ő¤Ä¤ŚĄ˘drakX¤Ď¤˘¤Ę¤żÍѤÎŔľ¤ˇ¤¤Ľ­ĄźĽÜĄźĽÉ¤ňźŤĆ°ĹޤËÁŞ¤Ó¤Ţ¤šĄĘ¸Ŕ¸ě¤ÎÁŞÂň\n"
-"¤ň¤â¤Č¤ËČ˝ĂǤˇ¤Ţ¤šĄËĄŁ¤Ŕ¤Ť¤é¤ł¤ÎĽšĽĆĽĂĽ×¤Ď¤Ő¤Ä¤Ś¤Ď˝Đ¤Ć¤­¤Ţ¤ť¤óĄŁ¤ŹĄ˘źŤĘŹ\n"
-"¤Î¸Ŕ¸ě¤Ë¤­¤Ă¤Á¤ęÂĐąţ¤ˇ¤żĽ­ĄźĽÜĄźĽÉ¤ňťČ¤Ă¤Ć¤¤¤Ę¤¤¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ¤ż¤Č¤¨¤Đ\n"
-"ąŃ¸ě¤ňĎ䚼šĽ¤ĽšżÍ¤Ę¤éĄ˘Ľ­ĄźĽÜĄźĽÉ¤ĎĽšĽ¤Ľšź°¤Î¤Ű¤Ś¤Ź¤¤¤¤¤Čť×¤Ś¤Ť¤â¤ˇ¤ě¤Ţ\n"
-"¤ť¤óĄŁ¤˘¤ë¤¤¤ĎąŃ¸ě¤Ä¤Ť¤¤¤Ç¤âĽąĽŮĽĂĽŻşß˝ť¤Ę¤éĄ˘ť÷¤żžőśˇ¤Ë¤Ę¤ë¤Ç¤ˇ¤ç¤ŚĄŁ\n"
-"¤¤¤ş¤ě¤Îžěšç¤Ç¤âĄ˘¤ł¤ÎĽ¤ĽóĽšĽČĄźĽëĂĘłŹ¤ËĚá¤Ă¤ĆĄ˘°ěÍ÷¤Ť¤éĹŹŔڤʼ­ĄźĽÜĄźĽÉ\n"
-"¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"ĄÖ¤â¤Ă¤ČĄ×ĽÜĽżĽó¤ň˛Ą¤š¤ČĄ˘ĽľĽÝĄźĽČ¤ľ¤ě¤ëĽ­ĄźĽÜĄźĽÉ¤Ź¤š¤Ů¤ĆÉ˝ź¨¤ľ¤ě¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Ľ¤ĽóĽšĽČĄźĽë¤ČĽˇĽšĽĆĽŕÍřÍѤǝȤŚ¸Ŕ¸ě¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"ĄÖšâĹ٤ĘÁŞÂňĄ×ĽÜĽżĽó¤ÇĄ˘¤Ű¤Ť¤Î¸Ŕ¸ě¤âÁŞ¤Ů¤Ţ¤šĄŁ¤ł¤ě¤ĎĽŢĽˇĽó¤ËĆţ¤Ă¤ĆĄ˘¸ĺ¤Ç\n"
-"ÉŹÍפ˹ţ¤¸¤ĆťČ¤¨¤Ţ¤šĄŁ¤ż¤Č¤¨¤Đ¤ł¤ÎĽŢĽˇĽó¤ňĽšĽÚĽ¤Ľó¤ÎżÍ¤Ë¤âťČ¤Ă¤Ć¤â¤é¤Ś¤Ę\n"
-"¤éĄ˘ĽÄĽęĄźÉ˝ź¨¤ÎźçÍ׸Ŕ¸ě¤Ë¤ĎąŃ¸ě¤ňÁޤó¤ÇĄ˘ĄÖšâĹ٤ĘÁŞÂňĄ×¤ÇĽšĽÚĽ¤Ľó¸ě/Ľš\n"
-"ĽÚĽ¤Ľó¤ËÂĐąţ¤š¤ëĽÜĽĂĽŻĽš¤ËĽÁĽ§ĽĂĽŻ¤ňĆţ¤ě¤Ţ¤šĄŁ\n"
-"\n"
-"¸Ŕ¸ě¤ĎĘŁżôÁŞ¤Ů¤Ţ¤šĄŁÄɲäθŔ¸ěĄĘĽíĽąĄźĽëĄË¤ňÁޤó¤ÇĄ˘OK¤ň˛Ą¤ˇ¤ĆłÎǧ¤ˇ¤ż¤éĄ˘\n"
-"źŤĆ°ĹŞ¤ËźĄ¤ÎĽšĽĆĽĂĽ×¤ËżĘ¤ß¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"ĽÇĽŐĽŠĽëĽČ¤Ŕ¤ČĄ˘DrakX ¤ĎŁ˛ĽÜĽżĽóĽŢĽŚĽš¤ňÁŰÄꤡ¤ĆĄ˘ĂćąűĽÜĽżĽó¤ňĽ¨ĽßĽĺĽěĄźĽČ\n"
-"¤š¤ëŔßÄę¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁDrakX ¤ĎĄ˘¤˝¤ě¤ŹPS/2ĽŢĽŚĽš¤ŤUSBĽŢĽŚĽš¤Ť¤ňźŤĆ°Č˝Äę\n"
-"¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-"ĘĚźď¤ÎĽŢĽŚĽš¤ňťŘÄꤚ¤ë¤Ë¤ĎĄ˘°ěÍ÷¤Ť¤éĘ̤μ޼ŚĽš¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"ĽÇĽŐĽŠĽëĽČ°Ęł°¤ÎĽŢĽŚĽš¤ňÁޤó¤Ŕ¤éĄ˘ĽŢĽŚĽš¤ÎĽĆĽšĽČ˛čĚ̤Ź˝Đ¤Ć¤­¤Ţ¤šĄŁ\n"
-"ĽÜĽżĽó¤äĽŰĽ¤ĄźĽë¤ňťČ¤Ă¤Ć¤ß¤ĆĄ˘¤ł¤ÎŔßÄę¤Ç¤¤¤¤¤Ť¤ňłÎǧ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ¤Ś¤Ţ¤Ż\n"
-"Ć°¤Ť¤Ę¤ą¤ě¤ĐĄ˘ĽšĽÚĄźĽš¤ŤĄÖĽęĽżĄźĽóĄ×¤ň˛Ą¤ˇ¤ĆĽ­ĽăĽóĽťĽë¤ˇ¤ĆĄ˘ÁŞ¤Ó¤Ę¤Ş¤ˇ\n"
-"¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Ŕľ¤ˇ¤¤ĽÝĄźĽČ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤ż¤Č¤¨¤ĐĄ˘MS ĽŚĽŁĽóĽÉĽŚĽş¤Ç¤Î\n"
-"COM1ĽÝĄźĽČ¤ĎĄ˘GNU/Linux¤Ç¤Ď ttyS0 ¤Č¤¤¤ŚĚžÁ°¤Ë¤Ę¤ę¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"¤ľ¤˘Ą˘GNU/LinuxĽˇĽšĽĆĽŕ¤ÎĽťĽ­ĽĺĽęĽĆĽŁžĺ¤Ç°ěČ֤μ­Ľâ¤Ë¤ä¤Ă¤Ć¤­¤Ţ¤ˇ¤żĄŁ\n"
-"root ĽŃĽšĽďĄźĽÉ¤ÎÁŞÂň¤Ç¤šĄŁroot ¤ĎĽˇĽšĽĆĽŕ´ÉÍýźÔ¤ÇĄ˘ĽˇĽšĽĆĽŕ¤ňššżˇ¤ˇ\n"
-"¤ż¤ęĄ˘ĽćĄźĽś¤ňÄɲ䡤ż¤ęĄ˘ĽˇĽšĽĆĽŕÁ´ÂΤÎŔßÄę¤ňĘѤ¨¤ż¤ę¤Ç¤­¤ëÍŁ°ě¤Î¸şß\n"
-"¤Ç¤šĄŁroot ¤Ď¤ł¤ÎĽˇĽšĽĆĽŕ¤Ç¤ĎËüÇ˝¤Ę¤Î¤Ç¤šĄŞ\n"
-"¤Ŕ¤Ť¤é¤ł¤˝Ą˘ÂžżÍ¤ËżäÂŹ¤ľ¤ě¤Ę¤¤ĽŃĽšĽďĄźĽÉÁޤӤŹÉŹÍפǤšĄŁ´ĘĂą¤š¤Ž¤ż¤é\n"
-"drakX ¤ŹˇŮšđ¤ˇ¤Ţ¤šĄŁ¤ł¤ł¤Çź¨¤š¤č¤Ś¤ËĄ˘ĽŃĽšĽďĄźĽÉ¤ňĆţÎϤˇ¤Ę¤¤¤ł¤Č¤Ď˛ÄÇ˝\n"
-"¤Ç¤š¤ŹĄ˘¤Ç¤âŔßÄꤚ¤ë¤ł¤Č¤ňśŻ¤Ż¤Ş´Ť¤á¤ˇ¤Ţ¤šĄŁ¤˝¤Ś¤š¤Ů¤­ÍýÍł¤Ź°ě¤ÄĄ§\n"
-"GNU/Linux ¤ňľŻĆ°¤ˇ¤ż¤Ť¤é¤Č¤¤¤Ă¤ĆĄ˘¤Ű¤Ť¤ÎĽŞĽÚĽěĄźĽĆĽŁĽóĽ°ĽˇĽšĽĆĽŕ¤Ź\n"
-"˛ż¤ň¤ä¤Ă¤Ć¤âĚľťö¤Čť×¤Ă¤Á¤ă¤¤¤ą¤Ę¤¤Ą˘¤Č¤¤¤Ś¤ł¤Č¤Ç¤šĄŁroot¤Ę¤é¤˘¤é¤ć¤ë\n"
-"ŔŠ¸Â¤ňĆÍÇˤˇ¤ĆĄ˘ĽŃĄźĽĆĽŁĽˇĽçĽó¤˝¤Î¤â¤Î¤ňĽ˘ĽŻĽťĽš¤ˇ¤ĆĄ˘Á´ĽÇĽŁĽšĽŻ¤Î\n"
-"ĽÇĄźĽż¤ň¤Ś¤Ă¤Ť¤ęşď˝ü¤ˇ¤Ć¤ˇ¤Ţ¤¨¤Ţ¤šĄŞ ¤Ŕ¤Ť¤éĄ˘root¤Ë¤Ę¤ë¤Î¤Ď¤ŕ¤ş¤Ť¤ˇ¤Ż\n"
-"¤ˇ¤Ć¤Ş¤Ż¤Î¤ŹÂçťö¤Ç¤šĄŁ\n"
-"\n"
-"ĽŃĽšĽďĄźĽÉ¤ĎĄ˘Ľ˘ĽëĽŐĽĄĽŮĽĂĽČ¤Čżôťú¤ňşŽ¤ź¤ż¤â¤Î¤ÇĄ˘şÇÄă¤Ç¤â8ʸťú¤Ź\n"
-"ÉŹÍפǤšĄŁˇč¤ˇ¤Ć˝ń¤­Îą¤á¤ż¤ę¤ˇ¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"ĽŃĽšĽďĄźĽÉ¤ĎĄ˘Äš¤š¤Ž¤ż¤ę¤ä¤ä¤ł¤ˇ¤š¤Ž¤ż¤ę¤ˇ¤Ć¤â¤¤¤ą¤Ţ¤ť¤óĄŁłÚ¤ËłĐ¤¨\n"
-"¤Ć¤Ş¤ą¤ë¤â¤Î¤Ë¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-"ĽŃĽšĽďĄźĽÉ¤ĎĆó˛óĆţÎϤˇ¤Ţ¤šĄŁ¤ł¤Î¤Č¤­¤Ë¤Ţ¤Á¤Ź¤¤¤ň¤š¤ë¤ČĄ˘¤Ţ¤Á¤Ź¤Ă¤ż\n"
-"¤â¤Î¤ŹĹĐĎż¤ľ¤ě¤Ć¤ˇ¤Ţ¤Ś¤Î¤ÇĄ˘ş¤¤Ă¤ż¤ł¤Č¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-"\n"
-"ĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻ¤ÎŔßÄę¤Ë¤č¤Ă¤Ć¤ĎĄ˘NIS ¤ňťČ¤Ś¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ\n"
-"¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĽˇĽšĽĆĽŕ´ÉÍýźÔ¤Ë¤­¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁNIS¤ňťČ¤Śžěšç¤Ë¤Ď\n"
-"ĄÖNIS¤ňťČ¤ŚĄ×ĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ó¤Ţ¤šĄŁĄÖOKĄ×¤ň˛Ą¤ˇ¤ż¤éĄ˘ÉŹÍפʞđĘó\n"
-"¤ňĆţÎϤˇ¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"LILO ¤Č GRUB ¤Ď GNU/Linux ¤ÎľŻĆ°¤ËťČ¤ď¤ě¤ëĽÖĄźĽČĽíĄźĽŔ¤Ç¤šĄŁ¤ł¤ÎĂĘłŹ¤Ď\n"
-"¤Ő¤Ä¤ŚĄ˘´°Á´¤ËźŤĆ°˛˝¤ľ¤ě¤Ć¤¤¤Ţ¤šĄŁDrakX¤ĎĽÇĽŁĽšĽŻ¤ÎĽÖĄźĽČĽťĽŻĽż¤ňĘŹŔϤˇ¤Ć\n"
-"¤˝¤Îˇë˛Ě¤Ëąţ¤¸¤ĆÂĐąţ¤š¤ë¤č¤Ś¤Ë¤ˇ¤Ţ¤š:\n"
-"\n"
-" * ¤â¤ˇĽŚĽŁĽóĽÉĽŚĽş¤ÎĽÖĄźĽČĽťĽŻĽż¤Ź¤˘¤ě¤ĐĄ˘¤˝¤ě¤Ď GRUB/LILO ĽÖĄźĽČ\n"
-"ĽťĽŻĽż¤Ë˝ń¤­´š¤¨¤é¤ěĄ˘GNU/Linux ¤Č Windows¤ÎΞĘý¤ŹľŻĆ°˛ÄÇ˝¤Ë¤Ę¤ë;\n"
-"\n"
-" * ¤â¤ˇ GRUB ¤Ť LILO ĽÖĄźĽČĽťĽŻĽż¤Ź¸Ť¤Ä¤Ť¤ě¤ĐĄ˘şÇżˇČǤ˚šżˇ;\n"
-"\n"
-"¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘drakX ¤ĎłĆźďĽŞĽ×ĽˇĽçĽó¤ňľó¤˛¤żĽŔĽ¤Ľ˘ĽíĽ°¤ňÉ˝ź¨¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖťČ¤ŚĽÖĄźĽČĽíĄźĽŔĄ×: ÁŞÂňťč¤Ď3¤Ä¤˘¤ę¤Ţ¤š:\n"
-"\n"
-" * ĄÖLILOĄ˘Ľ°ĽéĽŐĽŁĽĂĽŻĽáĽËĽĺĄź¤Ä¤­Ą×: Ľ°ĽéĽŐĽŁĽĂĽŻĽáĽËĽĺĄź¤Ä¤­¤Î LILO ¤Ź"
-"¤č¤ą¤ě¤Đ¤ł¤ě¤ňĄŁ\n"
-"\n"
-" * ĄÖGrubĄ×: GRUB (ĽĆĽ­ĽšĽČĽáĽËĽĺĄź)¤ÎžěšçĄŁ\n"
-"\n"
-" * ĄÖLILO ĽĆĽ­ĽšĽČĽáĽËĽĺĄźĄ×: ĽĆĽ­ĽšĽČĽáĽËĽĺĄź¤Ä¤­ LILO ¤ÎžěšçĄŁ\n"
-"\n"
-" * ĄÖĽÖĄźĽČĽÇĽĐĽ¤ĽšĄ×: ¤Ű¤Č¤ó¤É¤ĎĄ˘ĽÇĽŐĽŠĽëĽČ (/dev/hda) ¤Î¤Ţ¤Ţ¤Ç¤š¤Ź\n"
-"žěšç¤Ë¤č¤Ă¤Ć¤ĎĽÖĄźĽČĽíĄźĽŔ¤ňĆóČÖĚܤμϥźĽÉĽÇĽŁĽšĽŻ (/dev/hdb)¤äĄ˘\n"
-"ĽŐĽíĽĂĽÔĄźĽÇĽŁĽšĽŻ¤ËĂÖ¤ą¤Ţ¤š (/dev/fd0)ĄŁ\n"
-"\n"
-" * ĄÖĽÇĽŐĽŠĽëĽČĽ¤ĽáĄźĽ¸ľŻĆ°¤ÎÂÔ¤Áťţ´ÖĄ×: ĽłĽóĽÔĽĺĄźĽż¤ňşĆľŻĆ°¤ˇ¤ż¤Č¤­Ą˘\n"
-"ĽÖĄźĽČĽíĄźĽŔ¤ÎĽÇĽŐĽŠĽëĽČ°Ęł°¤ÎĽáĽËĽĺĄź¤ňÁޤ֤ż¤á¤Îťţ´Ö¤ňťŘÄꤡ¤Ţ¤šĄŁ\n"
-"\n"
-"!! ĽÖĄźĽČĽíĄźĽŔ¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ę¤¤¤ČĄĘ¤ł¤ł¤ÇĄÖĽ­ĽăĽóĽťĽëĄ×¤ňÁޤó¤Ŕ\n"
-"žěšçĄËĄ˘¤Ű¤Ť¤ËMandrake Linux¤ňľŻĆ°¤š¤ëĘýËĄ¤ňłÎĘݤš¤ë¤Î¤ňËş¤ě¤Ę¤¤¤Ç\n"
-"¤Ż¤Ŕ¤ľ¤¤ĄŞ\n"
-"¤Ţ¤żĄ˘¤ł¤ł¤Ç¤ÎĽŞĽ×ĽˇĽçĽó¤ňĘѤ¨¤ë¤Î¤ĎĄ˘¤˝¤Î°ŐĚŁ¤ŹĘŹ¤Ť¤Ă¤Ć¤¤¤ëżÍ¤Ŕ¤ą¤Ë\n"
-"¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ !!\n"
-"\n"
-"¤ł¤ÎĽŔĽ¤Ľ˘ĽíĽ°¤ÇĄÖšâĹ٤ĘÁŞÂňĄ×ĽÜĽżĽó¤ň˛Ą¤š¤ČĄ˘šâĹ٤ʼ楟ĽśŔěÍѤÎ\n"
-"łĆźďžÜşŮĽŞĽ×ĽˇĽçĽó¤Ź˝Đ¤Ć¤­¤Ţ¤šĄŁ\n"
-"\n"
-"ČĆÍŃĽÖĄźĽČĽíĄźĽŔ¤ÎĽŃĽéĽáĄźĽż¤ňŔßÄꤡ¤ż¤éĄ˘¤ł¤ó¤É¤ĎľŻĆ°ťţ¤ËÁŞ¤Ů¤ë\n"
-"ĽÖĄźĽČĽŞĽ×ĽˇĽçĽó¤Î°ěÍ÷¤Źź¨¤ľ¤ě¤Ţ¤šĄŁ\n"
-"\n"
-"ĘĚ¤ÎĽŞĽÚĽěĄźĽĆĽŁĽóĽ°ĽˇĽšĽĆĽŕ¤ŹĽˇĽšĽĆĽŕžĺ¤Ë¤˘¤ě¤ĐĄ˘źŤĆ°ĹŞ¤ËľŻĆ°\n"
-"ĽáĽËĽĺĄź¤ËÄɲ侤ě¤Ţ¤šĄŁ´ű¸¤ÎĽŞĽ×ĽˇĽçĽó¤ÎşŮ¤Ť¤¤ŔßÄę¤â¤Ç¤­¤Ţ¤šĄŁ\n"
-"´ű¸Ľ¨ĽóĽČĽę¤ňĽŔĽÖĽëĽŻĽęĽĂĽŻ¤š¤ë¤ČĄ˘ĽŃĽéĽáĄźĽż¤ňĘѤ¨¤ż¤ęşď˝ü¤ˇ\n"
-"¤ż¤ę¤Ç¤­¤Ţ¤šĄŁĄÖ´°ÎťĄ×¤ň˛Ą¤ť¤ĐĄ˘Ľ¤ĽóĽšĽČĄźĽë¤ÎźĄ¤ÎĽšĽĆĽĂĽ×¤ŘżĘ¤ß\n"
-"¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (LInux LOader) ¤Č Grub ¤ĎĽÖĄźĽČĽíĄźĽŔ¤Ç¤šĄŁĽłĽóĽÔĽĺĄźĽżžĺ¤ÎGNU/Linux\n"
-"¤Ę¤ÉłĆźďOS¤ňľŻĆ°¤Ç¤­¤Ţ¤šĄŁ\n"
-"ÉáÄ̤ϥ˘¤ł¤ě¤é¤ÎOS¤ĎźŤĆ°Ĺޤˤ­¤Á¤ó¤Č¸Ą˝Đ¤ľ¤ě¤ĆĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤šĄŁ\n"
-"¤ł¤ě¤ŹĽŔĽá¤Ę¤éĄ˘¤ł¤ł¤ÇźęĆ°¤ÇĽ¨ĽóĽČĽę¤ňÄɲ䡤ޤˇ¤ç¤ŚĄŁĽŃĽéĽáĄźĽż¤ň\n"
-"¤Ţ¤Á¤Ź¤¨¤Ę¤¤¤č¤ŚĂí°Ő¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"ž¤ÎOS¤Ë¤Ďž¤ÎżÍ¤ŹĽ˘ĽŻĽťĽš¤Ç¤­¤Ę¤¤¤č¤Ś¤Ë¤ˇ¤ż¤¤¤ł¤Č¤â¤˘¤ę¤Ţ¤šĄŁ¤ł¤Î\n"
-"žěšç¤Ë¤Ď¤˝¤ÎOS¤ÎĽ¨ĽóĽČĽę¤ňşď˝ü¤ˇ¤Ć¤Ş¤­¤Ţ¤ˇ¤ç¤ŚĄŁ¤ż¤Ŕ¤ˇ¤ł¤Îžěšç¤ĎĄ˘\n"
-"¤˝¤ÎOS¤ňťČ¤Ś¤Č¤­¤Ë¤ĎľŻĆ°ĽÇĽŁĽšĽŻ¤ŹÍפę¤Ţ¤š¤čĄŞ"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"GNU/Linux¤ň¤ż¤Á¤˘¤˛¤ë¤Î¤ËÉŹÍפʞđĘó¤ňĄ˘¤É¤ł¤ËĂÖ¤­¤ż¤¤¤ŤťŘÄꤡ¤Ţ¤šĄŁ\n"
-"\n"
-"¤č¤Ż¤ď¤Ť¤é¤Ę¤¤¤Ę¤éĄÖĽÉĽéĽ¤ĽÖ¤ÎşÇ˝é¤ÎĽťĽŻĽż(MBR)Ą×¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-"¤ł¤ł¤Ç¤ĎĽłĽóĽÔĽĺĄźĽżÍѤΰőşţĽˇĽšĽĆĽŕ¤ňÁŞ¤Ó¤Ţ¤šĄŁÂž¤ÎOS¤Ç¤Ď°ě¤Ä¤ˇ¤Ť\n"
-"Ä󜥤ľ¤ě¤Ę¤¤°őşţĽˇĽšĽĆĽŕ¤ŹĄ˘¤ł¤ł¤Ç¤Ď3¤Ä¤â¤˘¤ę¤Ţ¤šĄŁ\n"
-"\n"
-" * \"pdq\" - ¤ł¤ě¤ĎĄÖprint, don't queueĄĘ°őşţ¤ˇ¤ĆĽ­ĽĺĄź¤Ď¤ˇ¤Ę¤¤ĄËĄ×\n"
-"¤Ç¤šĄŁĽ×ĽęĽóĽż¤ŹĽŢĽˇĽó¤ËÄžˇë¤ˇ¤Ć¤¤¤ĆĄ˘ťćľÍ¤Ţ¤ę¤Î¤Č¤­¤Ë¤š¤°ĂćĂǤǤ­\n"
-"¤ĆĄ˘ĽÍĽĂĽČĽďĄźĽŻĽ×ĽęĽóĽż¤Ź¤Ę¤¤žěšç¤Ë¤Ď¤ł¤ě¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁĽÍĽĂĽČĽďĄźĽŻ\n"
-"¤Ď¤´¤Ż´ĘĂą¤Ę¤â¤Î¤ˇ¤ŤÂĐąţ¤Ç¤­¤Ę¤¤¤ˇĄ˘¤˝¤ě¤ËĽÍĽĂĽČĽďĄźĽŻ¤ÇťČ¤Ś¤ČĂ٤Ż¤Ę¤ę\n"
-"¤Ţ¤šĄŁGNU/Linux¤Ź˝é¤á¤Ć¤Ę¤éĄ˘\"pdq\" ¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁĽ¤ĽóĽšĽČĄźĽë¸ĺ¤Ç\n"
-"¤âPrinterDrake¤ňMandrake ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź¤Ť¤éÁޤó¤ÇĄÖĽ¨Ľ­ĽšĽŃĄźĽČĄ×\n"
-"ĽÜĽżĽó¤ň˛Ą¤ť¤ĐĄ˘¸ĺ¤Ť¤éÁŞÂň¤ĎĘѤ¨¤é¤ě¤Ţ¤šĄŁ\n"
-"\n"
-" * \"CUPS\"ĄÖCommon Unix Printing SystemĄĘśŚÄĚUnix°őşţĽˇĽšĽĆĽŕĄËĄ×\n"
-"¤ĎĽíĄźĽŤĽëĽ×ĽęĽóĽż¤Ř¤Î°őşţ¤âĄ˘ĂĎľĺ¤Î΢Œ¤ÎĽ×ĽęĽóĽż¤Ř¤Î°őşţ¤â¸Ťťö¤Ë˝čÍý\n"
-"¤ˇ¤Ţ¤šĄŁĽľĄźĽĐžő¤Ë¤âťČ¤¨¤ë¤ˇĄ˘ŔΤʤŹ¤é¤Î \"lpd\" °őşţĽˇĽšĽĆĽŕ¤ÎĽŻĽéĽ¤\n"
-"Ľ˘ĽóĽČ¤Ë¤â¤Ę¤ë¤Î¤ÇĄ˘¸Ĺ¤¤ĽˇĽšĽĆĽŕ¤Č¸ß´šŔ­¤â¤˘¤ę¤Ţ¤šĄŁ¤¤¤í¤¤¤íˇÝ¤â¤Ç¤­¤Ţ\n"
-"¤š¤ŹĄ˘´đËÜĹŞ¤ĘŔßÄę¤Ď \"pdq\" ¤ČĆą¤¸¤Ż¤é¤¤´ĘĂą¤Ç¤šĄŁ¤ł¤ě¤Ë \"lpd\" ĽľĄźĽĐ\n"
-"¤ňĽ¨ĽßĽĺĽěĄźĽČ¤ˇ¤Ć¤Ű¤ˇ¤ą¤ě¤ĐĄ˘\"cups-lpd\" ĽÇĄźĽâĽó¤ňÍ­¸ú¤Ë¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"°őşţ¤äĽ×ĽęĽóĽżĽŞĽ×ĽˇĽçĽóÁŞÂňÍѤ˼°ĽéĽŐĽŁĽĂĽŻĽŐĽíĽóĽČĽ¨ĽóĽÉ¤â¤˘¤ę¤Ţ¤šĄŁ\n"
-"\n"
-" * \"lprNG\" - ĄÖline printer daemon New GenerationĄĘĽéĽ¤ĽóĽ×ĽęĽóĽżĽÇĄźĽâĽó\n"
-"ĽËĽĺĄźĽ¸Ľ§ĽÍĽěĄźĽˇĽçĽóĄËĄ×ĄŁ¤ł¤ě¤Ďž¤ÎĽŞĽ×ĽˇĽçĽó¤Č¤Ű¤ÜĆą¤¸¤ł¤Č¤Ź¤Ç¤­¤Ţ¤š¤Ź\n"
-"IPXĽ×ĽíĽČĽłĽë¤ňĽľĽÝĄźĽČ¤ˇ¤Ć¤¤¤ë¤Î¤ÇNovell Networkžĺ¤ÎĽ×ĽęĽóĽż¤Ç¤â°őşţ¤Ç¤­\n"
-"¤ë¤ˇĄ˘ĽˇĽ§ĽëĽłĽŢĽóĽÉ¤ŘÄžŔÜ°őşţ¤â¤Ç¤­¤Ţ¤šĄŁNovell ¤ŹÉŹÍפŔ¤Ă¤ż¤ęĄ˘ĽŃĽ¤Ľ×\n"
-"¤ňťČ¤ď¤ş¤ËĽłĽŢĽóĽÉ¤Ř°őşţ¤ˇ¤ż¤ą¤ě¤Đ lprNG¤ňťČ¤¤¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"¤ľ¤â¤Ę¤ą¤ě¤ĐĄ˘CUPS ¤Î¤Ű¤Ś¤Ź´ĘĂą¤Ŕ¤ˇĽÍĽĂĽČĽďĄźĽŻžĺ¤Ç¤ÎŔ­Ç˝¤ŹÍĽ¤ě¤Ć¤¤¤ë¤Î¤Ç\n"
-"CUPS¤Ë¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX¤ĎĽŢĽˇĽóžĺ¤ÎIDEĽÇĽĐĽ¤Ľš¤ňÁ´Éô¸Ť¤Ä¤ą¤č¤Ś¤Č¤ˇ¤Ţ¤šĄŁ¤Ţ¤żPCI SCSI\n"
-"Ľ˘ĽŔĽ×Ľż¤â¤˘¤ě¤Đ¸Ą˝Đ¤ˇ¤č¤Ś¤Č¤ˇ¤Ţ¤šĄŁSCSIĽŤĄźĽÉ¤ß¤Ä¤ą¤ż¤éĄ˘ĹŹŔڤʼɼ鼤ĽĐ\n"
-"¤ňźŤĆ°ĹŞ¤ËĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-"ĽĎĄźĽÉĽŚĽ§Ľ˘¸Ą˝Đ¤Ď¤Č¤­¤É¤­źşÇÔ¤š¤ë¤ł¤Č¤â¤˘¤ë¤Î¤ÇĄ˘DrakX¤ĎPCI SCSIĽ˘ĽŔ\n"
-"Ľ×Ľż¤ŹĽˇĽšĽĆĽŕ¤Ë¤˘¤ë¤Ť¤É¤Ś¤ŤłÎǧ¤š¤ë¤č¤ŚĘš¤¤¤Ć¤­¤Ţ¤šĄŁ¤â¤ˇÂ¸şß¤š¤ë¤Ę¤é\n"
-"ĄÖ¤Ď¤¤Ą×¤ňĽŻĽęĽĂĽŻ¤š¤ë¤ČĄ˘Ľ˘ĽŔĽ×Ľż¤ÎĽÉĽéĽ¤ĽĐ°ěÍ÷¤ňÉ˝ź¨¤š¤ë¤Î¤ÇĄ˘¤˝\n"
-"¤ł¤Ť¤éÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁSCSI ¤Ź¤Ę¤ą¤ě¤ĐĄÖ¤¤¤¤¤¨Ą×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤šĄŁ\n"
-"¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘ĄÖĽĎĄźĽÉĽŚĽ§Ľ˘žđĘó¤ň¸Ť¤ëĄ×¤ňÁޤó¤ÇOK¤ňĽŻĽęĽĂĽŻ¤ˇĄ˘\n"
-"ĽĎĄźĽÉĽŚĽ§Ľ˘°ěÍ÷¤ň¸Ť¤ë¤ł¤Č¤â¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-"źęĆ°¤ÇĽ˘ĽŔĽ×Ľż¤ňťŘÄꤡ¤żžěšç¤Ë¤ĎĄ˘DrakX¤ĎĽŞĽ×ĽˇĽçĽóťŘÄę¤ň¤ˇ¤ż¤¤¤Ť¤É¤Ś¤Ť\n"
-"źÁĚ䤡¤Ć¤­¤Ţ¤šĄŁDrakX¤ËĽĎĄźĽÉĽŚĽ§Ľ˘¤ňĽ×ĽíĄźĽÖ¤ľ¤ť¤ĆĄ˘ĽŞĽ×ĽˇĽçĽó¤ňˇč¤á¤ľ¤ť\n"
-"¤Ţ¤ˇ¤ç¤ŚĄŁ¤ż¤¤¤Ć¤¤¤ł¤ě¤Ç¤Ś¤Ţ¤ŻĆŻ¤­¤Ţ¤šĄŁ\n"
-"\n"
-"¤â¤ˇÉŹÍ×ĽŞĽ×ĽˇĽçĽó¤ňDrakX¤ŹźŤĆ°ĹŞ¤ËźčĆŔ¤Ç¤­¤Ę¤ą¤ě¤ĐĽŔĽá¤Ę¤éĄ˘ĽÉĽéĽ¤ĽĐ¤Ë\n"
-"źŤĘŹ¤ÇĽŞĽ×ĽˇĽçĽó¤ňÍż¤¨¤ëÉŹÍפŹ¤˘¤ę¤Ţ¤šĄŁ\n"
-"ĽćĄźĽśĽŹĽ¤ĽÉĄĘ3žĎĄ˘ĄÖĽĎĄźĽÉĽŚĽ§Ľ˘¤Ë¤Ä¤¤¤Ć¤ÎžđĘóźý˝¸Ą×ĄË¤Ť¤éĄ˘¤ł¤ě¤Ë´Ř¤ď¤ë\n"
-"žđĘó¤ňĽĎĄźĽÉ¤ÎĽŢĽËĽĺĽ˘Ľë¤äĽáĄźĽŤĄź Web ĽľĽ¤ĽČĄĘĽÍĽĂĽČ¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤ě¤ĐĄË\n"
-"¤˘¤ë¤¤¤ĎĄĘĽˇĽšĽĆĽŕžĺ¤Ë¤˘¤ě¤ĐĄËMS Windows ¤Ť¤é¤É¤Ś¤ä¤Ă¤ĆÉŹÍמđĘó¤ňĆŔ¤ë¤Ť\n"
-"¤ňÄ´¤Ů¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"yabootÍѤÎÄɲü¨ĽóĽČĽę¤ň¤ł¤ł¤ÇÄɲäǤ­¤Ţ¤šĄŁÂž¤ÎOS¤Îžěšç¤Ç¤âĄ˘Âž¤Î\n"
-"ĽŤĄźĽÍĽë¤Ç¤âĄ˘śŰľŢÍŃľŻĆ°Ľ¤ĽáĄźĽ¸¤Ç¤â˛ÄÇ˝¤Ç¤šĄŁ\n"
-"\n"
-"¤Ű¤Ť¤ÎOS¤Îžěšç - Ľ¨ĽóĽČĽę¤ĎĄ˘ĽéĽŮĽë¤ČrootĽŃĄźĽĆĽŁĽˇĽçĽó¤Ŕ¤ą¤Ç¤šĄŁ\n"
-"\n"
-"Linux ¤ÎžěšçĄ˘˛ÄÇ˝¤ĘĽŞĽ×ĽˇĽçĽó¤Ź¤¤¤Ż¤Ä¤Ť¤˘¤ę¤Ţ¤š: \n"
-"\n"
-" * ĽéĽŮĽë: ¤ł¤ÎľŻĆ°ĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ö¤Č¤­¤ËĄ˘yabootĽ×ĽíĽóĽ×ĽČ¤ÇĽżĽ¤Ľ×\n"
-"¤š¤ëĚžžÎĄŁ\n"
-"\n"
-" * Ľ¤ĽáĄźĽ¸: ľŻĆ°¤š¤ëĽŤĄźĽÍĽë¤ÎĚžžÎĄŁÉáÄĚ¤Ď vmlinuxĄ˘¤Ţ¤ż¤Ď\n"
-"¤˝¤ě¤Ë¤Ę¤Ë¤ŤłČÄĽťŇ¤Ź¤Ä¤¤¤ż¤â¤Î¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-"\n"
-" * ľŻĆ°: LinuxĽ¤ĽóĽšĽČĄźĽëÍѤÎrootĽŃĄźĽĆĽŁĽˇĽçĽó¤Ţ¤ż¤ĎĄÖ/Ą×\n"
-"\n"
-" \n"
-" * ÄɲĂ: Apple ¤ÎĽĎĄźĽÉĽŚĽ§Ľ˘¤Ç¤ĎĄ˘ĽŤĄźĽÍĽëÄÉ˛ĂĽŞĽ×ĽˇĽçĽó¤Ď¤Ť¤Ę¤ę¤Îžěšç\n"
-"ĽÓĽÇĽŞĽĎĄźĽÉĽŚĽ§Ľ˘¤Î˝é´ü˛˝¤ËťČ¤Ă¤ż¤ęĄ˘1ĽÜĽżĽóĽŢĽŚĽšÍѤ˼­ĄźĽÜĄźĽÉ¤Ë¤č¤ë\n"
-"ĽŢĽŚĽšĽÜĽżĽó¤ÎĽ¨ĽßĽĺĽěĄźĽˇĽçĽó¤ËťČ¤Ă¤ż¤ę¤ˇ¤Ţ¤šĄŁ°Ę˛ź¤ËÎă¤ňľó¤˛¤Ţ¤š:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ĎĄ˘ľŻĆ°ĽÇĽĐĽ¤Ľš¤ŹÍ­¸ú¤Ë¤Ę¤ëÁ°¤Ë˝é´üĽâĽ¸ĽĺĄźĽë\n"
-"¤ÎĽíĄźĽÉ¤ŤĄ˘¤˘¤ë¤¤¤ĎśŰľŢľŻĆ°ťţ¤Îramdisk Ľ¤ĽáĄźĽ¸¤ÎĽíĄźĽÉ¤ËťČ¤¤¤Ţ¤šĄŁ\n"
-"\n"
-" * Initrd-size: ĽÇĽŐĽŠĽëĽČ¤Î ramdisk ĽľĽ¤Ľş¤Ď4096 ĽĐĽ¤ĽČ¤Ç¤šĄŁ\n"
-"¤â¤Ă¤ČÂ礭¤Ę ramdisk ¤ňťČ¤Ś¤Č¤­¤ËĄ˘¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňťČÍѤˇ¤Ţ¤šĄŁ\n"
-"\n"
-" * Read-write: Ä̞異ĄÖrootĄ×ĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĆɤ߽ФˇŔěÍѤǾŻĆ°¤ˇĄ˘\n"
-"ĽˇĽšĽĆĽŕ¤ŹĄÖΊ¤Ážĺ¤Ź¤ëĄ×Á°¤ËĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤ÎĽÁĽ§ĽĂĽŻ¤ň¤ˇ¤Ţ¤šĄŁ¤ł¤Î\n"
-"ĽŞĽ×ĽˇĽçĽó¤Ç¤ł¤ě¤ňĽŞĄźĽĐĄźĽéĽ¤ĽÉ¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-" * NoVideo: Apple ¤ÎĽÓĽÇĽŞ˛óĎŠ¤ŹśËĂź¤ËĚäÂę¤ňľŻ¤ł¤š¤č¤Ś¤Ę¤éĄ˘¤ł¤Î\n"
-"ĽŞĽ×ĽˇĽçĽó¤ňÁޤó¤ÇĄÖĽÓĽÇĽŞ¤Ę¤ˇĄ×ĽâĄźĽÉ¤ÇľŻĆ°¤Ç¤­¤Ţ¤šĄŁ¤ł¤Îžěšç¤Ë¤Ď\n"
-"ĽÍĽ¤ĽĆĽŁĽÖ¤ÎĽŐĽěĄźĽŕĽĐĽĂĽŐĽĄ¤ÇľŻĆ°¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-" * ĽÇĽŐĽŠĽëĽČ: ĽÇĽŐĽŠĽëĽČ¤Î Linux ¤ÎÁŞÂň¤Č¤ˇ¤Ć¤ł¤ÎĽ¨ĽóĽČĽę¤ŹťČ¤ď¤ě\n"
-"¤Ţ¤šĄŁ¤ł¤ě¤ĎĂą¤ËĄ˘yaboot Ľ×ĽíĽóĽ×ĽČ¤Ç ENTER ¤ň˛Ą¤ť¤ĐÁŞ¤Ů¤Ţ¤šĄŁ¤ł¤Î\n"
-"Ľ¨ĽóĽČĽę¤Ď¤Ţ¤żĄ˘TAB¤ň˛Ą¤ˇ¤ĆľŻĆ°ťţ¤ÎÁŞÂňťč¤ňÉ˝ź¨¤ľ¤ť¤ż¤Č¤­¤Ë¤ĎĄ˘\n"
-"ĄÖ*Ą×¤Ź¤Ä¤¤¤ĆĽĎĽ¤ĽéĽ¤ĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot ¤ĎĄ˘NewWorld MacIntosh ĽĎĄźĽÉĽŚĽ§Ľ˘ÍѤμ֥źĽČĽíĄźĽŔ¤Ç¤šĄŁ¤ł¤ě¤Ź\n"
-"¤˘¤ë¤ČĄ˘ĽŢĽˇĽóžĺ¤ÎGNU/Linux, MacOS, MacOSX ¤ňľŻĆ°ťţ¤ËÁŞ¤Ů¤Ţ¤šĄŁ\n"
-"¤Ő¤Ä¤ŚĄ˘¤ł¤Ś¤ˇ¤ż GNU/Linux °Ęł°¤Î OS ¤ĎźŤĆ°Ĺޤˤ­¤Á¤ó¤Č¸Ą˝Đ¤ľ¤ě¤Ć\n"
-"Ľ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤šĄŁ¤â¤ˇĽŔĽá¤Ę¤éĄ˘¤ł¤Î˛čĚ̤ǥ˘źŤĘŹ¤ÇĽ¨ĽóĽČĽę¤ňÄɲĂ\n"
-"¤Ç¤­¤Ţ¤šĄŁŔľ¤ˇ¤¤ĽŃĽéĽáĄźĽż¤ňÁŞ¤Ö¤č¤ŚĂí°Ő¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"Yaboot ¤ÎźçĽŞĽ×ĽˇĽçĽó¤Ď:\n"
-"\n"
-" * ľŻĆ°ĽáĽĂĽťĄźĽ¸: bootĽ×ĽíĽóĽ×ĽČÁ°¤ËÉ˝ź¨¤ľ¤ě¤ë´ĘĂą¤ĘĽáĽĂĽťĄźĽ¸\n"
-"\n"
-" * ľŻĆ°ĽÇĽĐĽ¤Ľš: GNU/Linux ľŻĆ°ÍѤΞđĘó¤ň¤É¤ł¤ËĂÖ¤Ż¤ŤťŘź¨ĄŁ\n"
-"ÉáÄ̤ϥ˘¤ł¤ÎžđĘóÍѤ˼֥źĽČĽšĽČĽéĽĂĽ×ÍѤμѥźĽĆĽŁĽˇĽçĽó¤ň\n"
-"¤ł¤ÎÁ°¤ÎĂĘłŹ¤Çşî¤Ă¤Ć¤˘¤ë¤Ď¤ş¤Ç¤šĄŁ\n"
-"\n"
-" * ĽŞĄźĽ×ĽóĽŐĽĄĄźĽŕĽŚĽ§Ľ˘¤ÎÂÔ¤Áťţ´Ö: LILO ¤Č¤Á¤Ź¤Ă¤ĆĄ˘yaboot¤Ë¤ĎÂÔ¤Áťţ´Ö\n"
-"¤ŹĆóźďÎŕŔßÄę¤Ç¤­¤Ţ¤šĄŁşÇ˝é¤ÎÂÔ¤Áťţ´Ö¤ĎÉĂĂą°Ě¤ÇĄ˘¤ł¤ÎÂÔ¤Áťţ´Ö¤Î´Ö¤ËĄ˘\n"
-"CD, OF boot, MacOS, Linux¤Î¤É¤ě¤ňľŻĆ°¤š¤ë¤ŤÁŞ¤Ů¤Ţ¤šĄŁ\n"
-"\n"
-" * ĽŤĄźĽÍĽëľŻĆ°ĽżĽ¤ĽŕĽ˘ĽŚĽČ: ¤ł¤ÎĽżĽ¤ĽŕĽ˘ĽŚĽČ¤Ď LILO ľŻĆ°ÂÔ¤Áťţ´Ö¤Čť÷¤Ć¤¤¤Ţ"
-"¤šĄŁLinux ¤ňÁޤó¤Ŕ¤éĄ˘¤ł¤ÎÂÔ¤Áťţ´Ö¤Ź0.1ÉĂĂą°Ě¤ÇźÂšÔ¤ľ¤ě¤ĆĄ˘¤˝¤Î¤Ţ¤Ţ\n"
-"¤Ŕ¤ČĽÇĽŐĽŠĽëĽČ¤ÎĽŤĄźĽÍĽëľ­˝Ň¤ŹÁŞ¤Đ¤ě¤Ţ¤šĄŁ\n"
-"\n"
-" - CD ľŻĆ°¤ňÍ­¸ú¤Ë¤ˇ¤Ţ¤š¤Ť?: ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňĽÁĽ§ĽĂĽŻ¤š¤ë¤ČĄ˘şÇ˝é¤ÎľŻĆ°Ľ×Ľí"
-"ĽóĽ×ĽČ¤ÇĄÖCĄ×¤ňÁޤó¤ÇCD¤Ť¤éľŻĆ°¤Ç¤­¤ë¤č¤Ś¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-"\n"
-" * OF ľŻĆ°¤ňÍ­¸ú¤Ë¤ˇ¤Ţ¤š¤Ť?: ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňĽÁĽ§ĽĂĽŻ¤š¤ë¤ČĄ˘şÇ˝é¤ÎľŻĆ°Ľ×Ľí"
-"ĽóĽ×ĽČ¤ÇĄÖNĄ×¤ňÁޤó¤ÇĽŞĄźĽ×ĽóĽŐĽĄĄźĽŕĽŚĽ§Ľ˘¤Ť¤éľŻĆ°¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-" * ĽÇĽŐĽŠĽëĽČ OS: ĽŞĄźĽ×ĽóĽŐĽĄĄźĽŕĽŚĽ§Ľ˘¤ÎÂÔ¤Áťţ´Ö¤Ź˛á¤Ž¤ż¤Č¤­Ą˘¤É¤Î\n"
-"OS¤ŹľŻĆ°¤š¤ë¤Ť¤ňťŘÄꤡ¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"¤˘¤Ę¤ż¤ÎĽŢĽˇĽó¤Ë´Ř¤š¤ëłĆźď¤ÎĽŃĽéĽáĄźĽż¤ňź¨¤ˇ¤Ţ¤šĄŁĽĎĄźĽÉĽŚĽ§Ľ˘¤Ë¤â\n"
-"¤č¤ę¤Ţ¤š¤ŹĄ˘°Ę˛ź¤Î¤č¤Ś¤ĘšŕĚܤŹ˝Đ¤Ć¤Ż¤ë¤Ď¤ş¤Ç¤š:\n"
-"\n"
-" * ĄÖĽŢĽŚĽšĄ×: ĽŢĽŚĽšĄŁ¸˝şß¤ÎĽŢĽŚĽšŔßÄę¤ň¸Ť¤ĆĄ˘ÉŹÍפʤéĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ\n"
-"¤ˇ¤ĆĘŃšš¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖĽ­ĄźĽÜĄźĽÉĄ×Ą§Ľ­ĄźĽÜĄźĽÉĄŁ¤¤¤Ţ¤ÎĽ­ĄźĽÜĄźĽÉ¤ÎłäÉŐŔßÄę¤ň¸Ť¤ĆĄ˘ÉŹÍפʤé\n"
-"ĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤ĆĘŃšš¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖťţ´ÖÂÓĄ×: ťţ´ÖÂÓĄĄDrakX ¤ĎĽÇĽŐĽŠĽëĽČ¤ÇĄ˘¤˘¤Ę¤ż¤ÎÁޤó¤Ŕ¸Ŕ¸ě¤Ëąţ¤¸¤Ć\n"
-"ťţ´ÖÂÓ¤ňżäÄꤡ¤Ţ¤šĄŁ¤Ç¤â¤ł¤ł¤Ç¤âĽ­ĄźĽÜĄźĽÉ¤ÎÁŞÂň¤ČĆą¤¸¤ÇĄ˘¸Ŕ¸ě¤Č¤Ď\n"
-"¤Á¤Ź¤Śšń¤Ë¤¤¤ë¤Č¤­¤Ë¤ĎĄ˘ťţ´ÖÂÓĽÜĽżĽó¤ň˛Ą¤ˇ¤ĆĄ˘źŤĘŹ¤Îťţ´ÖÂӤˤ˘¤ď¤ť¤ż\n"
-"ŔßÄę¤Ë¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖĽ×ĽęĽóĽżĄ×: ĄÖĽ×ĽęĽóĽż¤Ę¤ˇĄ×ĽÜĽżĽó¤ň˛Ą¤š¤ČĄ˘Ľ×ĽęĽóĽżŔßÄ꼌ĽŁĽśĄźĽÉ\n"
-"¤ŹłŤ¤­¤Ţ¤šĄŁ\n"
-"\n"
-" * ĄÖĽľĽŚĽóĽÉĽŤĄźĽÉĄ×: ĽľĽŚĽóĽÉĽŤĄźĽÉ¤Ź¸Ą˝Đ¤ľ¤ě¤ż¤é¤ł¤ł¤ËÉ˝ź¨¤ľ¤ě¤Ţ¤šĄŁ\n"
-"Ľ¤ĽóĽšĽČĄźĽëťţ¤Ë¤ĎĘŃšš¤Ç¤­¤Ţ¤ť¤óĄŁ\n"
-"\n"
-" * ĄÖTV ĽŤĄźĽÉĄ×: TV ĽŤĄźĽÉ¤Ź¸Ą˝Đ¤ľ¤ě¤ż¤é¤ł¤ł¤ËÉ˝ź¨¤ľ¤ě¤Ţ¤šĄŁ\n"
-"Ľ¤ĽóĽšĽČĄźĽëťţ¤Ë¤ĎĘŃšš¤Ç¤­¤Ţ¤ť¤óĄŁ\n"
-"\n"
-" * ĄÖISDN ĽŤĄźĽÉĄ×: ISDN ĽŤĄźĽÉ¤Ź¸Ą˝Đ¤ľ¤ě¤ż¤é¤ł¤ł¤ËÉ˝ź¨¤ľ¤ě¤Ţ¤šĄŁ\n"
-"ĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤š¤ë¤Č´ŘϢĽŃĽéĽáĄźĽż¤ŹĘѤ¨¤é¤ě¤Ţ¤šĄŁ"
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"żˇ¤ˇ¤¤ Mandrake Linux ĽŃĄźĽĆĽŁĽˇĽçĽó¤ÎĽ¤ĽóĽšĽČĄźĽëÍѤ˞þ¤ż¤¤\n"
-"ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤˝¤ÎĽĎĄźĽÉĽÇĽŁĽšĽŻžĺ¤ÎĽÇĄźĽż¤ĎÁ´Éô\n"
-"žĂ¤¨¤Ć˛óÉü¤Ç¤­¤Ţ¤ť¤óĄŁĂí°Ő¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"¤ł¤ÎĽĎĄźĽÉĽÇĽŁĽšĽŻžĺ¤Î¤š¤Ů¤Ć¤ÎĽÇĄźĽż¤äĽŃĄźĽĆĽŁĽˇĽçĽó¤ň\n"
-"žĂľî¤š¤ë¤Ę¤éĄÖOKĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĄÖOKĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤ż¤éĄ˘\n"
-"¤ł¤ÎĽĎĄźĽÉĽÇĽŁĽšĽŻžĺ¤ËşŁ¤˘¤ëĽÇĄźĽż¤äĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĄ˘ĽŚĽŁĽóĽÉĽŚĽş\n"
-"¤Î¤â¤Î¤ň´Ţ¤áĄ˘¤š¤Ů¤ĆžĂľî¤ľ¤ě¤Ć˛óÉüÉÔ˛ÄÇ˝¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-"\n"
-"¤ł¤ÎÁŕşî¤ňźč¤ę¤ä¤á¤ĆĄ˘ĽĎĄźĽÉĽÇĽŁĽšĽŻžĺ¤ÎĽÇĄźĽż¤äĽŃĄźĽĆĽŁĽˇĽçĽó¤ň\n"
-"¤˝¤Î¤Ţ¤Ţ¤Ë¤ˇ¤Ć¤Ş¤Ż¤Ë¤ĎĄÖĽ­ĽăĽóĽťĽëĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "%s ¤âĽŐĽŠĄźĽŢĽĂĽČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"°Ę˛ź¤ÎĽľĄźĽĐ¤ňÁŞ¤Ó¤Ţ¤ˇ¤ż¤Í: %s\n"
-"\n"
-"\n"
-"¤ł¤ě¤é¤ÎĽľĄźĽĐ¤ĎĽÇĽŐĽŠĽëĽČ¤ÇÍ­¸ú¤Ë¤Ę¤ę¤Ţ¤šĄŁĆä˼ťĽ­ĽĺĽęĽĆĽŁžĺ¤Î\n"
-"ĚäÂę¤Ď¤Ę¤¤¤č¤Ś¤Ç¤š¤ŹĄ˘¤ł¤ÎŔčČŻŔ¸¤š¤ë¤ł¤Č¤â¤˘¤ę¤Ţ¤šĄŁ¤˝¤Îžěšç¤Ë¤Ď\n"
-"¤š¤°¤ËĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"\n"
-"ËÜĹö¤Ë¤ł¤ÎĽľĄźĽĐ¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤¤¤¤¤Ç¤š¤ÍĄŠ\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "NIS ĽÉĽáĽ¤Ľó¤Ź¤Ę¤¤¤Î¤ÇĽÖĽíĄźĽÉĽ­ĽăĽšĽČ¤ŹťČ¤¨¤Ţ¤ť¤ó"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "FATˇÁź°¤ÎĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "¤ł¤ÎĽŐĽíĽĂĽÔĄź¤Ď FATĽŐĽŠĄźĽŢĽĂĽČ¤¸¤ă¤˘¤ę¤Ţ¤ť¤ó"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"¤ł¤ÎĘݸ¤ˇ¤żĽŃĽĂĽąĄźĽ¸ÁŞÂň¤ňťČ¤Ś¤Ë¤ĎĄ˘Ľ¤ĽóĽšĽČĄźĽë¤ÎľŻĆ°ťţ¤ËĄÖlinux "
-"defcfg=floppyĄ×¤ČťŘÄꤡ¤Ţ¤šĄŁ"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "ĽŐĽĄĽ¤Ľë %s ¤ÎĆɤߤȤ꼨ĽéĄź¤Ç¤š"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"¤˘¤Ę¤ż¤ÎĽŢĽˇĽóžĺ¤ÎĽĎĄźĽÉ¤ÎĂć¤Ë¤ĎĄ˘ĄÖČó¸řłŤ¤ÎĄ×ĽÉĽéĽ¤ĽĐ¤ŹÉŹÍפʤâ¤Î¤Ź\n"
-"¤˘¤ę¤Ţ¤šĄŁ°Ę˛ź¤ÎžđĘó¤ň¸Ť¤Ć¤Ż¤Ŕ¤ľ¤¤: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"root ĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¸Ť¤˘¤ż¤ę¤Ţ¤ť¤ó¤ÍĄŁ¤ł¤ě¤ĎŔäÂФËÉŹÍפǤšĄŁ\n"
-"żˇ¤ˇ¤ŻĽŃĄźĽĆĽŁĽˇĽçĽó¤ň¤Ä¤Ż¤ë¤ŤĄ˘´ű¸¤Î¤â¤Î¤ňĽŻĽęĽĂĽŻ¤ˇ¤ĆÁŞ¤Ó¤Ţ¤šĄŁ\n"
-"¤˝¤ˇ¤ĆĄČĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČĄÉĽ˘ĽŻĽˇĽçĽó¤ňÁŞ¤ÓĄ˘ĄÖ/Ą×¤ËĽťĽĂĽČ¤ˇ¤Ţ¤š"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "ĽšĽďĽĂĽ×ĽŃĄźĽĆĽŁĽˇĽçĽó¤ŹÉŹÍפǤš"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"ĽšĽďĽĂĽ×ĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¤˘¤ę¤Ţ¤ť¤ó\n"
-"\n"
-"š˝¤ď¤ş¤ËÂł¤ą¤Ţ¤š¤ŤĄŠ"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "/boot/efi ¤Ë FAT ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽŢĽŚĽóĽČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "ĽŐĽęĄźĽšĽÚĄźĽš¤ÎťČÍŃ"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "żˇ¤ˇ¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó¤Ëłä¤ęĹö¤Ć¤ë˝˝ĘŹ¤ĘĽŐĽęĄźĽšĽÚĄźĽš¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "´ű¸¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňťČÍŃ"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "¸şß¤ˇ¤Ę¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Windows ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽëĄźĽ×ĽĐĽĂĽŻ¤ËťČÍŃ"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "¤É¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ËLinux4Win¤ňĆţ¤ě¤Ţ¤š¤Ť"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "ĽľĽ¤Ľş¤ňÁŞÂň"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "ĽëĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó¤ÎĽľĽ¤Ľş (MB)"
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "ĽšĽďĽĂĽ×ĽŃĄźĽĆĽŁĽˇĽçĽó¤ÎĽľĽ¤Ľş (MB): "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "ĽŚĽŁĽóĽÉĽŚĽşĽŃĄźĽĆĽŁĽˇĽçĽóžĺ¤ÎĽŐĽęĄźĽšĽÚĄźĽš¤ňťČÍŃ"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "¤É¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽęĽľĽ¤Ľş¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "ĽŚĽŁĽóĽÉĽŚĽşĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤Îś­łŚ¤ňˇ×ťť"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"FAT ĽęĽľĽ¤ĽśĄź¤ĎĽŃĄźĽĆĽŁĽˇĽçĽóÁŕşî¤Ź¤Ç¤­¤Ţ¤ť¤óĄŁ\n"
-"°Ę˛ź¤ÎĽ¨ĽéĄź¤ŹČŻŔ¸: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr "ĽŚĽŁĽóĽÉĽŚĽşĽŃĄźĽĆĽŁĽˇĽçĽó¤ŹĂÇĘҲ˝¤ˇ¤š¤Ž¤Ç¤šĄŁĄČĽÇĽŐĽéĽ°ĄÉ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"Ăí°ŐĄŞ\n"
-"\n"
-"DrakX ¤Ď¤ł¤ě¤Ť¤éĽŚĽŁĽóĽÉĽŚĽş¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóĽľĽ¤Ľş¤ňĘŃšš¤ˇ¤Ţ¤šĄŁ\n"
-"Ăí°Ő:¤ł¤ÎÁŕşî¤Ď´í¸ą¤Ç¤šĄŁ¤â¤ˇťöÁ°¤Ë scandisk ¤ň¤Ť¤ą¤Ć¤¤¤Ę¤ą¤ě¤ĐĄ˘\n"
-"¤ł¤ł¤ÇĽ¤ĽóĽšĽČĄźĽë¤ňĂćĂǤˇĄ˘scandisk¤ň¤Ť¤ą¤Ţ¤ˇ¤ç¤ŚĄĘ¤ľ¤é¤Ëdefrag\n"
-"¤â¤Ť¤ą¤ż¤Ű¤Ś¤Ź¤¤¤¤¤Ç¤š)ĄŁ\n"
-"ĽÇĄźĽż¤âĽĐĽĂĽŻĽ˘ĽĂĽ×¤ˇ¤Ć¤˘¤ę¤Ţ¤š¤ŤĄŠĄĄ¤¤¤Ţ¤Î¤Ś¤Á¤Ë¤ˇ¤Ć\n"
-"¤Ş¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"ÂçžćÉפʤé Ok ¤ň˛Ą¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "ĽŚĽŁĽóĽÉĽŚĽşÍѤˤɤΤŻ¤é¤¤¤ÎĽľĽ¤Ľş¤ňťÄ¤ˇ¤Ć¤Ş¤­¤Ţ¤š¤Ź"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT ¤ÎĽęĽľĽ¤Ľş¤ËźşÇÔ: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"ĽęĽľĽ¤Ľş¤äĽëĄźĽ×ĽĐĽĂĽŻÍѤÎFATĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¤˘¤ę¤Ţ¤ť¤ó (¤Ţ¤ż¤Ď˝˝ĘŹ¤ĘĽšĽÚĄźĽš"
-"¤ŹĚľ¤¤)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Á´ĽÇĽŁĽšĽŻžĂľî"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Windows(TM) ¤ňşď˝ü"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"ĘŁżô¤ÎĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤ňťý¤Ă¤Ć¤¤¤Ţ¤š¤ÍĄ˘¤É¤ě¤Ë linux ¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "ĽÉĽéĽ¤ĽÖ %s žĺ¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤Ş¤č¤ÓĽÇĄźĽż¤ĎÁ´Éôźş¤ď¤ě¤Ţ¤š"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňźŤĘŹ¤ÇťŘÄę"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "fdisk¤ňťČ¤Ś"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"%s ¤ňĽŃĄźĽĆĽŁĽˇĽçĽó¤Ç¤­¤Ţ¤šĄŁ\n"
-"˝Ş¤ď¤Ă¤ż¤éĄ˘ÉŹ¤şĄÖwĄ×¤ňťČ¤Ă¤ĆĘݸ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "ĽŚĽŁĽóĽÉĽŚĽşĽŃĄźĽĆĽŁĽˇĽçĽóžĺ¤ÎĽŐĽęĄźĽšĽÚĄźĽš¤ŹÂ­¤ę¤Ţ¤ť¤ó"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Ľ¤ĽóĽšĽČĄźĽëÍѤΜő¤­¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó¤Ź"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX ĽŃĄźĽĆĽŁĽˇĽçĽóĽŚĽŁĽśĄźĽÉ¤Ď°Ę˛ź¤Î˛ňËĄ¤ň¸ŤÉŐ¤ą¤Ţ¤ˇ¤ż:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽËĽóĽ°¤ËźşÇÔ: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ň¤ż¤Á¤˘¤˛¤ë"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ňÄäťß¤š¤ë"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Ľ¨ĽéĄźČŻŔ¸Ą¤¤Ś¤Ţ¤Ż˝čÍý¤š¤ëĘýËĄ¤Ź¤ď¤Ť¤ę¤Ţ¤ť¤óĄŁ\n"
-"źŤĘŹ¤ÎŔŐǤ¤ÇÂł¤ą¤Ć˛ź¤ľ¤¤ĄŁ"
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ %s ¤Ź˝Ĺ¤Ę¤Ă¤Ć¤¤¤Ţ¤š"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"¤Ŕ¤¤¤¸¤ĘĽŃĽĂĽąĄźĽ¸¤Ź¤¤¤Ż¤Ä¤Ť¤­¤Á¤ó¤ČĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n"
-"CD-ROM¤ŤĄ˘CD-ROM¤ÎĽÉĽéĽ¤ĽÖ¤Ź¤Ş¤Ť¤ˇ¤¤¤č¤Ś¤Ç¤šĄŁ\n"
-"Ľ¤ĽóĽšĽČĄźĽëşŃ¤ß¤ÎĽłĽóĽÔĽĺĄźĽż¤ÇĄ˘°Ę˛ź¤ÎĽłĽŢĽóĽÉ¤ÇCD-ROM¤ňĽÁĽ§ĽĂĽŻ\n"
-"¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤Ą§\n"
-"ĄÖ rpm -qpl Mandrake/RPMS/*.rpm Ą×\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "%s ¤Ř¤č¤Ś¤ł¤˝"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Í­¸ú¤ĘĽŐĽíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "ĽšĽĆĽĂĽ× ĄÖ%sĄ×¤ňťĎ¤á¤Ţ¤š\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"ĽˇĽšĽĆĽŕĽęĽ˝ĄźĽš¤ŹÂ­¤ę¤Ţ¤ť¤óĄŁ Mandrake Linux ¤ňĽ¤ĽóĽšĽČĄźĽë¤š¤ë¤Ë¤Ď\n"
-"¤¤¤Ż¤Ä¤ŤĚäÂꤏ¤˘¤ę¤Ţ¤šĄŁ\n"
-"¤ł¤ÎžÉžő¤ŹľŻ¤­¤ż¤Č¤­Ą˘¤Ť¤ď¤ę¤ËĽĆĽ­ĽšĽČĽ¤ĽóĽšĽČĄźĽë¤ňťî¤ť¤Ţ¤šĄŁ\n"
-"¤ł¤ě¤ň¤š¤ë¤Ë¤ĎĄ˘CDROM ¤Ť¤éĽÖĄźĽČ¤ˇ¤ż¤Č¤­Ą˘ĄÖF1Ą×¤ň˛Ą¤ˇĄ˘ĄÖtextĄ×¤ČĆţÎϤˇ¤Ć\n"
-"¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Ľ¤ĽóĽšĽČĄźĽëĽŻĽéĽš"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "°Ę˛ź¤ÎĽ¤ĽóĽšĽČĄźĽëĽŻĽéĽš¤ň¤É¤ě¤ŤÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, 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:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ľ¤ĽóĽšĽČĄźĽëÎ̤ň¸ş¤é¤ˇ¤ż¤ą¤ě¤ĐĄ˘ĽŃĽĂĽąĄźĽ¸¤ÎĽŃĄźĽťĽóĽČżô¤ň\n"
-"ťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"¤ł¤ě¤ň˛ź¤˛¤ë¤ČĄ˘¤¤¤Á¤Đ¤ó˝ĹÍפʤâ¤Î¤Ŕ¤ą¤ŹĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤šĄŁ\n"
-"100%% ¤ňťŘÄꤚ¤ë¤ČĄ˘Áޤó¤ŔĽŃĽĂĽąĄźĽ¸¤ň¤š¤Ů¤ĆĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"ĽÇĽŁĽšĽŻžĺ¤Ëśő¤­Îΰč¤Ë¤ĎĄ˘¤ł¤ě¤é¤ÎĽŃĽĂĽąĄźĽ¸¤Î %d%% ¤ˇ¤ŤĆţ¤ę¤Ţ¤ť¤óĄŁ\n"
-"\n"
-"Ľ¤ĽóĽšĽČĄźĽëÎ̤ň¸ş¤é¤ˇ¤ż¤ą¤ě¤ĐĄ˘ĽŃĄźĽťĽóĽČżô¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"¤ł¤ě¤ň˛ź¤˛¤ë¤ČĄ˘¤¤¤Á¤Đ¤ó˝ĹÍפʤâ¤Î¤Ŕ¤ą¤ŹĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤šĄŁ\n"
-"%d%% ¤ňťŘÄꤚ¤ë¤ČĄ˘şÇÂç¸Â¤ÎĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "źĄ¤ÎĽšĽĆĽĂĽ×¤Ç¤Ď¤â¤Ă¤ČşŮ¤Ť¤¤ÁŞÂň¤Ź˝ĐÍč¤Ţ¤š"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Ľ¤ĽóĽšĽČĄźĽë¤š¤ëĽŃĽĂĽąĄźĽ¸Ăć¤Îłäšç"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "ĽŃĽĂĽąĄźĽ¸Ľ°ĽëĄźĽ×¤ňÁŞÂň"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "¸ÄĘĚĽŃĽĂĽąĄźĽ¸¤ÎÁŞÂň"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "šçˇ×ĽľĽ¤Ľş: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "ĽŃĽĂĽąĄźĽ¸¤Ź˛ő¤ě¤Ć¤¤¤Ţ¤š"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "ĚžÁ°: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "ĽĐĄźĽ¸ĽçĽó: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "ĽľĽ¤Ľş: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "˝ĹÍ×: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "¤ł¤ÎĽŃĽĂĽąĄźĽ¸¤ĎÁŞÂň¤Ç¤­¤Ţ¤ť¤óĄŁĽÇĽŁĽšĽŻ¤Îśő¤­ÍĆÎ̤ŹÉÔ­¤Ç¤šĄŁ"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "°Ę˛ź¤ÎĽŃĽĂĽąĄźĽ¸¤ŹĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤š"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "°Ę˛ź¤ÎĽŃĽĂĽąĄźĽ¸¤Źźč¤ę˝ü¤Ť¤ě¤Ţ¤š"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "¤ł¤ÎĽŃĽĂĽąĄźĽ¸¤ĎÁŞÂňĄŚČóÁŞÂň¤Ç¤­¤Ţ¤ť¤ó"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "¤ł¤ě¤ĎÉԲġç¤ĘĽŃĽĂĽąĄźĽ¸¤Ç¤šĄŁČóÁŞÂň¤Ë¤Ď¤Ç¤­¤Ţ¤ť¤ó"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "¤ł¤ÎĽŃĽĂĽąĄźĽ¸¤ĎČóÁŞÂň¤Ë¤Ç¤­¤Ţ¤ť¤óĄŁ¤š¤Ç¤ËĽ¤ĽóĽšĽČĄźĽëşŃ¤ß¤Ç¤š"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"¤ł¤ÎĽŃĽĂĽąĄźĽ¸¤ĎĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ŹÉŹÍפǤšĄŁ\n"
-"ËÜĹö¤ËÁŞÂň˛ň˝ü¤ˇ¤Ć¤¤¤¤¤ó¤Ç¤š¤ŤĄŠ"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "¤ł¤ÎĽŃĽĂĽąĄźĽ¸¤ĎÁŞÂň˛ň˝ü¤Ç¤­¤Ţ¤ť¤óĄŁĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ŹÉŹÍפǤš"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "źŤĆ°ÁŞÂň¤ľ¤ě¤żĽŃĽĂĽąĄźĽ¸¤ňÉ˝ź¨"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Ľ¤ĽóĽšĽČĄźĽë"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "ĽŐĽíĽĂĽÔĄź¤ËĽťĄźĽÖ/ĽíĄźĽÉ¤š¤ë"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "ĽŃĽĂĽąĄźĽ¸ÁŞÂň¤Îššżˇ"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "şÇžŽĽ¤ĽóĽšĽČĄźĽë"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Ľ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤¤ĽŃĽĂĽąĄźĽ¸¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Ľ¤ĽóĽšĽČĄźĽëĂć"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "ťîťť¤ˇ¤Ć¤¤¤Ţ¤š"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "ťÄ¤ęťţ´Ö "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Î˝ŕČ÷Ă楢žŻĄš¤ŞÂÔ¤Á¤ň"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d ĽŃĽĂĽąĄźĽ¸"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ÎĽ¤ĽóĽšĽČĄźĽë"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "ǧ¤á¤ë"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "ľńČÝ"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Cd-Rom ¤ň¸ň´š¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞ\n"
-"ĄÖ %s Ą×¤Č¤¤¤Ś Cd-Rom ¤ňĽÉĽéĽ¤ĽÖ¤Ë¤¤¤ě¤ĆĄ˘ Ok ¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"CD¤Ź¤Ę¤ą¤ě¤ĐĄ˘Cancel ¤ň˛Ą¤ˇ¤Ć¤ł¤Î Cd-Rom ¤Ť¤é¤ÎĽ¤ĽóĽšĽČĄźĽë¤ň˛óČň¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "¤Ť¤Ţ¤ď¤şŔč¤ËżĘ¤ß¤Ţ¤š¤ŤĄŠ"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "ĽŃĽĂĽąĄźĽ¸¤ÎŔ°Îó¤ÇĽ¨ĽéĄź¤ŹČŻŔ¸:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "ĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽë¤ÇĽ¨ĽéĄź¤ŹČŻŔ¸:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"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 ĽáĽÇĽŁĽ˘¤Ë´Ţ¤Ţ¤ě¤ëĽłĽóĽÝĄźĽÍĽóĽČ¤Î°ěÉô¤ĎĄ˘GPL¤äÎŕť÷ĽéĽ¤ĽťĽóĽš\n"
-"¤ŹĹŹÍѤľ¤ě¤Ţ¤ť¤óĄŁ¤˝¤ÎžěšçĄ˘¤˝¤ě¤ž¤ě¤ŹĆČźŤ¤ÎĽéĽ¤ĽťĽóĽšžňšŕ¤äžňˇď¤Ç\n"
-"ĽŤĽĐĄź¤ľ¤ě¤ë¤ł¤Č¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-"łşĹö¤š¤ëĽłĽóĽÝĄźĽÍĽóĽČ¤ňťČÍѤˇ¤ż¤ęşĆÇŰÉۤˇ¤ż¤ę¤š¤ëžěšç¤Ë¤ĎĄ˘¤˝¤Ś¤ˇ¤ż\n"
-"¸ÄĘ̼鼤ĽťĽóĽš¤ňĆɤó¤Ç¤˝¤ě¤Ë¤ˇ¤ż¤Ź¤Ś¤č¤Ś¤Ë¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"¤˝¤Ś¤ˇ¤żĽéĽ¤ĽťĽóĽš¤Ď¤Ş¤Ş¤ŕ¤ÍĄ˘ĹöłşĽłĽóĽÝĄźĽÍĽóĽČ¤Î°ÜĹžĄ˘ĘŁŔ˝ĄĘĽĐĽĂĽŻ\n"
-"Ľ˘ĽĂĽ×ĚÜĹŞ¤Î¤â¤Î¤ň˝ü¤ŻĄËĄ˘şĆÇŰÉŰĄ˘ĽęĽĐĄźĽšĽ¨ĽóĽ¸ĽËĽ˘ĽęĽóĽ°Ą˘ĘŹ˛ňĄ˘\n"
-"ľŐĽłĽóĽŃĽ¤ĽëĄ˘ĘŃšš¤Ę¤É¤ňśŘ¤¸¤Ć¤¤¤ë¤Î¤Ź¤Ő¤Ä¤Ś¤Ç¤šĄŁ\n"
-"šç°Ő¤ËÂФš¤ë°ăČż¤Ď¤ż¤Ŕ¤Á¤ËĄ˘¤˝¤ÎĹöłşĽéĽ¤ĽťĽóĽš˛ź¤Ç¤Î¤˘¤Ę¤ż¤Î¸˘Íř¤ň\n"
-"žĂźş¤ľ¤ť¤Ţ¤šĄŁĹöłşĽéĽ¤ĽťĽóĽš¤Îžňšŕ¤Ź¤˝¤Ś¤ˇ¤ż¸˘Íř¤ňǧ¤á¤Ć¤¤¤Ę¤¤¸Â¤ę\n"
-"ĘŁżô¤ÎĽˇĽšĽĆĽŕ¤Ë¤˝¤ÎĽ×ĽíĽ°ĽéĽŕ¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤ęĄ˘ĽÍĽĂĽČĽďĄźĽŻžĺ\n"
-"¤ÇťČ¤Ś¤č¤Ś¤Ë¤ˇ¤ż¤ę¤Ď¤Ç¤­¤Ţ¤ť¤óĄŁÉÔĚŔĹŔ¤Ź¤˘¤ë¤Č¤­¤Ë¤ĎĄ˘¤˝¤ÎĽłĽóĽÝĄź\n"
-"ĽÍĽóĽČ¤ÎÇŰÉŰźÔ¤ŤĘÔ˝¸źÔ¤ËÄžŔÜĚ䤤šç¤ď¤ť¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"¤˝¤Ś¤ˇ¤żĽłĽóĽÝĄźĽÍĽóĽČ¤ÎĄ˘Âčť°źÔ¤Ř¤Î°ÜĹž¤äĘŁŔ˝¤ĎĄ˘ĽÉĽ­ĽĺĽáĽóĽĆĄźĽˇĽçĽó\n"
-"¤â´Ţ¤áÄĚžď¤ĎśŘťß¤ľ¤ě¤Ć¤¤¤Ţ¤šĄŁ\n"
-"\n"
-"\n"
-"źĄ¤ÎCD ĽáĽÇĽŁĽ˘¤ÎĽłĽóĽÝĄźĽÍĽóĽČ¤Ë´Ř¤š¤ë¸˘Íř¤Î¤š¤Ů¤Ć¤ĎĄ˘¤˝¤ě¤ž¤ě¤Î\n"
-"şîźÔ¤Ë°¤ˇĄ˘Ľ˝ĽŐĽČĽŚĽ§Ľ˘Ľ×ĽíĽ°ĽéĽŕ¤ËĹŹÍѤľ¤ě¤ëĂÎĹŞşâťş¤ČĂřşî¸˘ËĄ¤Ë\n"
-"¤č¤Ă¤ĆĘݸ¤ě¤Ć¤¤¤Ţ¤šĄŁ\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Ľ¨ĽéĄźČŻŔ¸"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "ËÜĹö¤ËĽ¤ĽóĽšĽČĄźĽë¤ňĂćĂǤˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Ľ˝ĽŐĽČťČÍѼ鼤ĽťĽóĽšžňšŕ"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"¤Ď¤¸¤á¤Ë\n"
-"\n"
-"ËÜĽŞĽÚĽěĄźĽĆĽŁĽóĽ°ĽˇĽšĽĆĽŕ¤Ş¤č¤ÓMandrake LinuxĽÇĽŁĽšĽČĽęĽÓĽĺĄźĽˇĽçĽó¤Ç\n"
-"Ä󜥤ľ¤ě¤ëłĆźď¤ÎĽłĽóĽÝĄźĽÍĽóĽČ¤ňĄ˘°Ę˛ź¤Ç¤ĎĄÖĽ˝ĽŐĽČĽŚĽ§Ľ˘Ŕ˝ÉʥפȸƤ֥Ł\n"
-"Ľ˝ĽŐĽČĽŚĽ§Ľ˘Ŕ˝Éʤϥ˘ĽŞĽÚĽěĄźĽĆĽŁĽóĽ°ĽˇĽšĽĆĽŕ¤Ş¤č¤ÓMandrake LinuxĽÇĽŁĽš\n"
-"ĽČĽęĽÓĽĺĄźĽˇĽçĽó¤ÇÄ󜥤ľ¤ě¤ëłĆźď¤ÎĽłĽóĽÝĄźĽÍĽóĽČ¤Ë´ŘϢ¤š¤ëĽ×ĽíĽ°ĽéĽŕˇ˛\n"
-"¤äĽáĽ˝ĽĂĽÉĄ˘¤­¤˝¤Ż¤äĽÉĽ­ĽĺĽáĽóĽĆĄźĽˇĽçĽó¤ň´Ţ¤ŕ¤ŹĄ˘¤˝¤ě¤Ë¸Â¤é¤ě¤ë¤â¤Î¤Ç\n"
-"¤Ď¤Ę¤¤ĄŁ\n"
-"\n"
-"\n"
-"1. ĽéĽ¤ĽťĽóĽšĆą°Őťöšŕ\n"
-"\n"
-"¤ł¤Îʸ˝ń¤ňżľ˝Ĺ¤ËĆɤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁËÜʸ˝ń¤Ď¤˘¤Ę¤ż¤ČMandrake S.A.¤Č¤Î´Ö¤Ç\n"
-"Äůˇë¤ľ¤ě¤ëĄ˘Ľ˝ĽŐĽČĽŚĽ§Ľ˘Ŕ˝ÉʤËĹŹÍѤľ¤ě¤ëĽéĽ¤ĽťĽóĽšĆą°Őťöšŕ¤Ç¤šĄŁ\n"
-"Ľ˝ĽŐĽČĽŚĽ§Ľ˘Ŕ˝Éʤň¤¤¤Ť¤Ę¤ëˇÁ¤Ç¤˘¤ěĽ¤ĽóĽšĽČĄźĽëĄ˘ĘŁŔ˝Ą˘ťČÍѤš¤ë¤ł¤Č¤Ç\n"
-"¤˘¤Ę¤ż¤ĎĚŔź¨ĹŞ¤ËĄ˘Ëܼ鼤ĽťĽóĽš¤ÎÁ´žňˇď¤äžňšŕ¤Ë˝ž¤Ś¤ł¤Č¤ňźő¤ąĆţ¤ě\n"
-"´°Á´¤ËĆą°Ő¤ˇ¤ż¤â¤Î¤Č¤ľ¤ě¤Ţ¤šĄŁ\n"
-"Ëܼ鼤ĽťĽóĽš¤Î¤¤¤Ť¤Ę¤ëÉôĘŹ¤Ç¤˘¤ěĆą°Ő¤Ç¤­¤Ę¤ą¤ě¤ĐĄ˘Ľ˝ĽŐĽČĽŚĽ§Ľ˘Ŕ˝ÉʤÎ\n"
-"Ľ¤ĽóĽšĽČĄźĽëĄ˘ĘŁŔ˝Ą˘ťČÍѤĎǧ¤á¤é¤ě¤Ţ¤ť¤óĄŁ\n"
-"Ëܼ鼤ĽťĽóĽš¤Îžňšŕ¤äžňˇď¤ËĹŹšç¤ˇ¤Ę¤¤ˇÁ¤ÇĽ˝ĽŐĽČĽŚĽ§Ľ˘Ŕ˝ÉʤňĽ¤ĽóĽšĽČĄźĽë\n"
-"ĘŁŔ˝Ą˘ÍřÍѤˇ¤č¤Ś¤Č¤š¤ëťî¤ß¤ĎĚľ¸ú¤Ç¤˘¤ęĄ˘Ëܼ鼤ĽťĽóĽš˛ź¤Ç¤Î¤˘¤Ę¤ż¤Î¸˘Íř\n"
-"¤ňÇíĂĽ¤š¤ë¤ł¤Č¤Č¤Ę¤ę¤Ţ¤šĄŁĽéĽ¤ĽťĽóĽš¤ÎÇË´ţ¤ËČź¤¤Ą˘¤˘¤Ę¤ż¤ĎĽ˝ĽŐĽČĽŚĽ§Ľ˘\n"
-"Ŕ˝ÉʤÎĘŁŔ˝¤š¤Ů¤Ć¤ň¨şÂ¤ËÇ˲ő¤ˇ¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤óĄŁ\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 Mandrake Linux 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\", \"Mandrake Linux\" 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:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Ľ­ĄźĽÜĄźĽÉ"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Ľ­ĄźĽÜĄźĽÉĽěĽ¤Ľ˘ĽŚĽČ¤Ď˛ż¤Ç¤š¤ŤĄŠ"
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "ťČ¤¨¤ëĽ­ĄźĽÜĄźĽÉĽěĽ¤Ľ˘ĽŚĽČ¤Î°ěÍ÷¤ňÉ˝ź¨¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "¤É¤ÎĽ¤ĽóĽšĽČĄźĽëĽŻĽéĽš¤ňËž¤ß¤Ţ¤š¤ŤĄŠ"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Ľ¤ĽóĽšĽČĄźĽë/ššżˇ"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Ç¤š¤ŤĄ¤ššżˇ¤Ç¤š¤ŤĄŠ"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "żäžŠ"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Ľ¨Ľ­ĽšĽŃĄźĽČ"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "ššżˇ"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "ĽŃĽĂĽąĄźĽ¸¤Ŕ¤ą¤ňššżˇ"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "ĽŢĽŚĽš¤Îˇż¤Ď¤Ę¤ó¤Ç¤š¤ŤĄŠ"
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "ĽŢĽŚĽšĽÝĄźĽČ"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "ĽŢĽŚĽš¤Ď¤É¤ÎĽˇĽęĽ˘ĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "ĽÜĽżĽóĽ¨ĽßĽĺĽěĄźĽˇĽçĽó"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "ĽÜĽżĽó2¤ÎĽ¨ĽßĽĺĽěĄźĽˇĽçĽó"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "ĽÜĽżĽó3¤ÎĽ¨ĽßĽĺĽěĄźĽˇĽçĽó"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIAĽŤĄźĽÉ¤ÎŔßÄęĂć..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "IDE ¤ÎŔßÄę"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "ťČ¤¨¤ëĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽšĽ­ĽăĽó¤ˇ¤ĆĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤ňĂľ¤ˇ¤Ć¤¤¤Ţ¤š"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤ÎÁŞÂň"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ŹĆɤá¤Ţ¤ť¤óĄ¤˛ő¤ě¤Ć¤¤¤ë¤č¤Ś¤Ç¤š:(\n"
-"ÉÔŔľ¤ĘĽŃĄźĽĆĽŁĽˇĽçĽó¤ňžĂ¤ˇ¤Ć¤ß¤Ţ¤ˇ¤ç¤Ś¤ŤĄŠĄĘ¤ł¤ě¤Ŕ¤ČĽÇĄźĽż¤ŹÁ´ÉôžĂ¤¨¤Ţ"
-"¤šĄŞĄË\n"
-"¤˘¤ë¤¤¤ĎĄ˘DrakX¤ËĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňĘŃšš¤ľ¤ť¤Ę¤¤źę¤Ź¤˘¤ę¤Ţ¤šĄŁ\n"
-"(Ľ¨ĽéĄź¤Ď%s¤Ç¤š)\n"
-"\n"
-"Á´ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňžĂľî¤ˇ¤Ć¤č¤í¤ˇ¤¤¤Ç¤š¤ÍĄŠ\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake ¤ĎĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňŔľ¤ˇ¤ŻĆɤá¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n"
-"¤ł¤ł¤Ť¤éŔč¤Ď˛ż¤ŹľŻ¤­¤Ć¤â¤ˇ¤ę¤Ţ¤ť¤ó¤čĄŞ"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"1MB ĽÖĄźĽČĽšĽČĽéĽĂĽ×ÍѤΜő¤­ĽšĽÚĄźĽš¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞĄĄĽ¤ĽóĽšĽČĄźĽë¤ĎÂł¤ą¤Ţ¤š"
-"¤ŹĄ˘ĽˇĽšĽĆĽŕ¤ÎľŻĆ°¤Ë¤Ď DiskDrake ¤ÇĽÖĄźĽÄĽšĽČĽéĽĂĽ×ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşî¤Ă¤Ć¤Ż¤Ŕ"
-"¤ľ¤¤."
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "ššżˇ¤Ç¤­¤ëĽëĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "ĽëĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "ĽˇĽšĽĆĽŕ¤ÎĽëĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó(/) ¤Ď¤Ę¤ó¤Ç¤š¤ŤĄŠ"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ÎĘŃšš¤ňČżąÇ¤š¤ë¤Ë¤ĎĽęĽÖĄźĽČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "ĽŐĽŠĄźĽŢĽĂĽČ¤š¤ëĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "ÉÔÎÉĽÖĽíĽĂĽŻ¤ň¸Ąşş¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽŐĽŠĄźĽŢĽĂĽČ"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "ĽŐĽĄĽ¤Ľë %s ¤ÎşîŔŽ¤ČĽŐĽŠĄźĽŢĽĂĽČ"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Ë˝˝ĘŹ¤ĘĽšĽďĽĂĽ×¤Ź¤˘¤ę¤Ţ¤ť¤óĄ¤ĽšĽďĽĂĽ×¤ň˛Ă¤¨¤Ć˛ź¤ľ¤¤"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "źęťý¤Á¤ÎĽŃĽĂĽąĄźĽ¸¤ň¤ľ¤Ź¤ˇ¤Ć¤¤¤Ţ¤š"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Ľ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤š¤ëĽŃĽĂĽąĄźĽ¸¤ň¤ľ¤Ź¤ˇ¤Ć¤¤¤Ţ¤š"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Ľ¤ĽóĽšĽČĄźĽë¤äĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ËÉŹÍפʼǼŁĽšĽŻ¤Îśő¤­ÍĆÎ̤ŹÉÔ­¤Ç¤šĄŁ (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "´°Á´ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "şÇžŽ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "żäžŠ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"ĽŐĽíĽĂĽÔĄź¤Ř¤ÎĽŃĽĂĽąĄźĽ¸ÁŞÂň¤ÎĘݸ¤ŤĆɤߚţ¤ß¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"ˇÁź°¤Ď auto_install ¤ÇŔ¸ŔŽ¤ˇ¤żĽŐĽíĽĂĽÔĄź¤ČĆą¤¸¤Ç¤šĄŁ"
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "ĽŐĽíĽĂĽÔĄź¤Ť¤éĆɤߚţ¤ŕ"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "ĽŐĽíĽĂĽÔĄź¤Ť¤éĆɤߚţ¤ßĂć"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "ĽŃĽĂĽąĄźĽ¸¤ňÁŞÂň"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "ĽŃĽĂĽąĄźĽ¸ÁŞÂň¤ÎĆţ¤Ă¤żĽŐĽíĽĂĽÔĄź¤ňÁŢĆţ"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "ĽŐĽíĽĂĽÔĄź¤ËĽťĄźĽÖ¤š¤ë"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Áޤó¤Ŕ¤â¤Î¤ÎĽľĽ¤Ľş¤Ďśő¤­ĽšĽÚĄźĽš¤ňąŰ¤¨¤Ć¤¤¤Ţ¤š"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Ľ¤ĽóĽšĽČĄźĽë¤ÎźďÎŕ"
-
-#: ../../install_steps_interactive.pm_.c:672
-#, fuzzy
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"ĽŃĽĂĽąĄźĽ¸Ľ°ĽëĄźĽ×¤ŹÁŞ¤Đ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ\n"
-"şÇÄă¸ÂÍߤˇ¤¤Ľ¤ĽóĽšĽČĄźĽë¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "X ¤ňťČ¤Ś"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "´đËÜĹŞ¤ĘĽÉĽ­ĽĺĽáĽóĽĆĄźĽˇĽçĽó¤ňĆţ¤ě¤ëĄĘżäžŠĄŞĄË"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "ËÜĹö¤ËşÇÄă¸Â¤ÎĽ¤ĽóĽšĽČĄźĽëĄĘurpmi ¤â¤Ę¤ˇĄË"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"žĺľ­¤Î°ěÍ÷¤ÎCD¤Ź¤š¤Ů¤Ć¤˝¤í¤Ă¤Ć¤¤¤ě¤ĐĄ˘Ok¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"CD¤Ź°ě¤Ä¤â¤Ę¤ą¤ě¤ĐĄ˘Ľ­ĽăĽóĽťĽë¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"źę¸ľ¤Ë¤Ę¤¤CD¤Ź¤˘¤ě¤ĐĄ˘¤˝¤ě¤ňÁŞÂň¤Ť¤é¤Ď¤ş¤ˇ¤Ć¤Ť¤éOk¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "ĄÖ %s Ą×¤Č¤¤¤ŚCd-Rom"
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Î˝ŕČ÷"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"ĽŃĽĂĽąĄźĽ¸ %s ¤ňĽ¤ĽóĽšĽČĄźĽë\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Ľ¤ĽóĽšĽČĄźĽëŔßÄę¤ňłÎÄę"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "ťČ¤Ă¤żľŻĆ°ĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "ššżˇĽâĽ¸ĽĺĄźĽëĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ¤ˇ¤Ć˛ź¤ľ¤¤"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"¤ľ¤˘Ą˘°Ĺšć˛˝ÍѤμ˝ĽŐĽČ¤ňĽŔĽŚĽóĽíĄźĽÉ¤š¤ë˝ŕČ÷¤Ź¤Ç¤­¤Ţ¤ˇ¤żĄŁ\n"
-"\n"
-"ˇŮšđ:\n"
-"\n"
-"¤ł¤ě¤é¤ÎĽ˝ĽŐĽČ¤ËÂФš¤ëÍסď¤äĄ˘łĆĂϤÎËĄŔŠĹ٤ΤÁ¤Ź¤¤¤Ź¤¤¤í¤¤¤í¤˘¤ë¤Î¤ÇĄ˘\n"
-"¤ł¤ÎĽ˝ĽŐĽČ¤Î¤ŞľŇÍͤ伨ĽóĽÉĽćĄźĽś¤ĎĄ˘źŤĘŹ¤Î˝ę°¤š¤ëËĄŔŠĹ٤Τâ¤Č¤ÇĄ˘¤ł¤Ś\n"
-"¤ˇ¤żĽ˝ĽŐĽČ¤ÎĽŔĽŚĽóĽíĄźĽÉ¤äĘݸĄ˘ťČÍѤʤɤŹÇ§¤á¤é¤ě¤Ć¤¤¤ë¤Ť¤É¤Ś¤Ť¤ňźŤĘŹ\n"
-"¤ÇłÎǧ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"¤ľ¤é¤Ë¤ŞľŇÍͤ伨ĽóĽÉĽćĄźĽś¤ĎĄ˘źŤĘŹ¤Î˝ę°¤š¤ëËĄŔŠĹ٤ÎËĄľŹŔŠ¤Ë°ăČż¤ˇ¤Ę¤¤\n"
-"¤č¤Ś¤č¤ŻĂí°Ő¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤ŞľŇÍͤ伨ĽóĽÉĽćĄźĽś¤ŹłşĹö¤š¤ëËĄľŹŔŠ¤ÎľŹÄę¤ň\n"
-"Âş˝Ĺ¤ˇ¤Ę¤¤žěšç¤Ë¤ĎĄ˘żźšď¤Ę˝čČłÂОݤȤʤë´í¸ą¤ň¤Ş¤Ť¤š¤ł¤Č¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-"\n"
-"¤ł¤ÎĆą°Ő˝ń¤Ë˝đĚž¤ˇ¤ż¸ĺ¤Ë¸ÜľŇ¤äĽ¨ĽóĽÉĽćĄźĽś¤ŹĽ˘ĽŻĽťĽš¤š¤ë¸Ťšţ¤ß¤Î¤˘¤ëĄ˘\n"
-"¤ł¤ě¤é¤ÎĽ˝ĽŐĽČĽŚĽ§Ľ˘¤ňťČ¤¤Ą˘ĘÝťý¤ˇĄ˘¤˘¤ë¤¤¤ĎĽŔĽŚĽóĽíĄźĽÉ¤š¤ë¤ł¤Č¤Ë¤č¤ë\n"
-"Ćß쥢´ÖŔÜĄ˘śöČŻ¤Ę¤É°ěŔÚ¤ÎÂťł˛ĄĘ¤ł¤ě¤Ë¤ĎÇäžĺÂťźşĄ˘śČĚł¤ÎÄäťßĄ˘žŚÍŃĽÇĄźĽż¤Î\n"
-"ÁÓźş¤ä´ŘϢźş¤ČËĄÄîČ˝ĂǤ˴đ¤Ĺ¤ŻÂťł˛Çĺ˝ţ¤äĘä˝ţśâťŮʧ¤¤¤Ę¤É¤Ź´Ţ¤Ţ¤ě¤ë¤Ź\n"
-"¤ł¤ě¤Ë¸Â¤é¤ě¤ë¤â¤Î¤Ç¤Ď¤Ę¤¤ĄË¤Ë¤Ä¤¤¤ĆĄ˘Mandrakesoft ¤ä¤˝¤ÎŔ˝Â¤śČźÔ¤ä\n"
-"ĽľĽ×ĽéĽ¤Ľä¤Ď¤¤¤Ť¤Ę¤ëžěšç¤Ë¤â¤Ę¤ó¤éŔŐǤ¤ňťý¤ż¤Ę¤¤ĄŁ\n"
-"\n"
-"°Ęžĺ¤Îźč¤ęˇč¤á¤Ë¤Ä¤¤¤Ć¤ÎĚ䤤šç¤ď¤ť¤ĎĄ˘°Ę˛ź¤ËϢÍí¤Î¤ł¤ČĄ§\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"ĽÇĽŁĽšĽČĽęĽÓĽĺĄźĽˇĽçĽó¸řłŤťţ°Ęšß¤Ëššżˇ¤ľ¤ě¤żĽŃĽĂĽąĄźĽ¸¤ň\n"
-"ĽŔĽŚĽóĽíĄźĽÉ¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-"ĽťĽ­ĽĺĽęĽĆĽŁĽŐĽŁĽĂĽŻĽš¤äĽĐĽ°ĽŐĽŁĽĂĽŻĽš¤ŹĆŔ¤é¤ě¤Ţ¤š¤ŹĄ˘\n"
-"¤ł¤ě¤Ë¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ŹÉŹÍפǤšĄŁ\n"
-"\n"
-"ššżˇĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Mandrake Linux ĽľĽ¤ĽČ¤ËŔÜÂł¤ˇ¤ĆĽßĽéĄź°ěÍ÷¤ňźčĆŔ¤ˇ¤Ć¤¤¤Ţ¤š"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "¤É¤ÎĽľĽ¤ĽČ¤Ť¤éĽŃĽĂĽąĄźĽ¸¤ňťý¤Ă¤Ć¤Ż¤ë¤Ť¤ňÁŞÂň"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "ĽľĽ¤ĽČ¤ËŔÜÂł¤ˇ¤ĆĽŃĽĂĽąĄźĽ¸°ěÍ÷¤ňźčĆŔ¤ˇ¤Ć¤¤¤Ţ¤š"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "¤˘¤Ę¤ż¤Îťţ´ÖÂӤϤɤě¤Ç¤š¤ŤĄŠ"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "ĽĎĄźĽÉĽŚĽ§Ľ˘ĽŻĽíĽĂĽŻ¤Ď GMT ¤ËĽťĽĂĽČ¤ˇ¤Ć¤˘¤ę¤Ţ¤š"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "źŤĆ°ťţ´Ö¤˘¤ď¤ťĄĘNTP¤ňťČ¤ŚĄË"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP ĽľĄźĽĐ"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "ĽęĽâĄźĽČCUPS ĽľĄźĽĐ"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Ľ×ĽęĽóĽż¤Ę¤ˇ"
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "ISA ĽľĽŚĽóĽÉĽŤĄźĽÉ¤Ď¤˘¤ę¤Ţ¤š¤ŤĄŠ"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-"Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ËĄÖsndconfigĄ×¤ňźÂšÔ¤ˇ¤ĆĽľĽŚĽóĽÉĽŤĄźĽÉ¤ňŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"ĽľĽŚĽóĽÉĽŤĄźĽÉ¤Ź¸Ą˝Đ¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n"
-"Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ËĄÖharddrakeĄ×¤ňťî¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "¤Ţ¤Č¤á"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "ĽŢĽŚĽš"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "ťţ´ÖÂÓ"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Ľ×ĽęĽóĽż"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDNĽŤĄźĽÉ"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "ĽľĽŚĽóĽÉĽŤĄźĽÉ"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "ĽĆĽěĽÓĽŤĄźĽÉ"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "ĽíĄźĽŤĽëĽŐĽĄĽ¤Ľë"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "ĽëĄźĽČĽŃĽšĽďĄźĽÉ"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "ĽŃĽšĽďĄźĽÉ¤Ę¤ˇ"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "¤ł¤ÎĽŃĽšĽďĄźĽÉ¤Ď´ĘĂą¤š¤Ž¤Ţ¤šĄĘşÇÄă¤Ç¤â %d ʸťúťČ¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄË"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "ǧžÚ"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "ǧžÚLDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAPĽŮĄźĽšdn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAPĽľĄźĽĐ"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "ǧžÚNIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS ĽÉĽáĽ¤Ľó"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS ĽľĄźĽĐ"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"ĽŤĽšĽżĽŕĽÖĄźĽČĽÇĽŁĽšĽŻ¤Ź¤˘¤ë¤ČĄ˘ÄĚžď¤ÎĽÖĄźĽČĽíĄźĽŔ¤ňťČ¤ď¤ş¤Ë Linux ¤ň\n"
-"ľŻĆ°¤Ç¤­¤Ţ¤šĄŁSILO ¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤Ż¤Ę¤¤žěšç¤äĄ˘Âž¤Î OS ¤Ź\n"
-" SILO ¤ňşď˝ü¤š¤ëžěšçĄ˘¤Ţ¤ż¤ĎĽĎĄźĽÉĽŚĽ§Ľ˘ŔßÄę¤Î¤ż¤á SILO ¤Ź¤Ś¤Ţ¤ŻşîĆ°\n"
-"¤ˇ¤Ę¤¤žěšç¤ËťČÍѤǤ­¤Ţ¤šĄŁ\n"
-"ĽŤĽšĽżĽŕĽÖĄźĽČĽÇĽŁĽšĽŻ¤ĎĄ˘Mandrake ¤ÎĽˇĽšĽĆĽŕÉüľěÍѤμ켚Ľ­ĽĺĄźĽ¤ĽáĄźĽ¸\n"
-"¤Č¤ˇ¤Ć¤âťČÍѤǤ­¤Ţ¤šĄŁ¤ł¤ě¤Ź¤˘¤ě¤ĐĽˇĽšĽĆĽŕ¤Ź´íľĄ¤Ë¤Ş¤Á¤¤¤Ă¤ż¤Č¤­¤Ë\n"
-"Éüľě¤š¤ë¤Î¤ŹłÚ¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-"ĽÖĄźĽČĽÇĽŁĽšĽŻ¤ňşî¤ë¤Ę¤é¤ĐĄ˘ĽŐĽíĽĂĽÔĽŁĽÇĽŁĽšĽŻ¤ňĽÉĽéĽ¤ĽÖ¤ËÁŢĆţ¤ˇĄ˘\n"
-"ĄÖOKĄ×¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "şÇ˝é¤ÎĽŐĽíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "ĆóČÖĚܤμռíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "ĽšĽ­ĽĂĽ×"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"ĽŤĽšĽżĽŕĽÖĄźĽČĽÇĽŁĽšĽŻ¤Ź¤˘¤ë¤ČĄ˘ÄĚžď¤ÎĽÖĄźĽČĽíĄźĽŔ¤ňťČ¤ď¤ş¤Ë Linux ¤ň\n"
-"ľŻĆ°¤Ç¤­¤Ţ¤šĄŁLILO (¤Ţ¤ż¤ĎGRUB)¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤Ż¤Ę¤¤žěšç¤äĄ˘Âž¤Î OS ¤Ź\n"
-" LILO ¤ňşď˝ü¤š¤ëžěšçĄ˘¤Ţ¤ż¤ĎĽĎĄźĽÉĽŚĽ§Ľ˘ŔßÄę¤Î¤ż¤á LILO ¤Ź¤Ś¤Ţ¤ŻşîĆ°\n"
-"¤ˇ¤Ę¤¤žěšç¤ËťČÍѤǤ­¤Ţ¤šĄŁ\n"
-"ĽŤĽšĽżĽŕĽÖĄźĽČĽÇĽŁĽšĽŻ¤ĎĄ˘Mandrake ¤ÎĽˇĽšĽĆĽŕÉüľěÍѤμ켚Ľ­ĽĺĄźĽ¤ĽáĄźĽ¸\n"
-"¤Č¤ˇ¤Ć¤âťČÍѤǤ­¤Ţ¤šĄŁ¤ł¤ě¤Ź¤˘¤ě¤ĐĽˇĽšĽĆĽŕ¤Ź´íľĄ¤Ë¤Ş¤Á¤¤¤Ă¤ż¤Č¤­¤Ë\n"
-"Éüľě¤š¤ë¤Î¤ŹłÚ¤Ë¤Ę¤ę¤Ţ¤šĄŁĽÖĄźĽČĽÇĽŁĽšĽŻ¤ňşî¤ę¤Ţ¤š¤ŤĄŠ\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-"\n"
-"\n"
-"(ˇŮšđĄŞĄĄroot ĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë XFS ¤ňťČ¤Ă¤Ć¤¤¤Ţ¤š¤ÍĄŁ\n"
-"1.44 Mb ĽŐĽíĽĂĽÔĄź¤ÇľŻĆ°ĽÇĽŁĽšĽŻ¤ňşî¤ë¤Î¤Ď¤ż¤Ö¤óĚľÍý¤Ç¤šĄŁ\n"
-"XFS ¤Ď¤Č¤Ć¤âÂ礭¤ĘĽÉĽéĽ¤ĽĐ¤ŹÉŹÍפŔ¤Ť¤é¤Ç¤š)."
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Í­¸ú¤ĘĽŐĽíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ¤Ź¤˘¤ę¤Ţ¤ť¤óĄ¤¤´¤á¤ó¤Ę¤ľ¤¤"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "ĽÖĄźĽČĽÇĽŁĽšĽŻ¤ňşî¤ę¤ż¤¤ĽŐĽíĽĂĽÔĽŁĽÉĽéĽ¤ĽÖ¤ňÁŞÂň"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "ĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "ĽÖĄźĽČĽÇĽŁĽšĽŻ¤ÎşîŔŽ"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "ĽÖĄźĽČĽíĄźĽŔ¤Î˝ŕČ÷"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"¤Č¤Ć¤â¸Ĺ¤¤¤ŤĄ˘Ě¤ĂΤμ޼ˇĽó¤ňťČ¤Ă¤Ć¤¤¤ë¤č¤Ś¤Ç¤š¤ÍĄŁ\n"
-"yaboot ĽÖĄźĽČĽíĄźĽŔ¤Ď¤ł¤ě¤Ç¤ĎťČ¤¨¤Ţ¤ť¤óĄŁ\n"
-"Ľ¤ĽóĽšĽČĄźĽë¤ĎÂł¤ą¤Ţ¤š¤ŹĄ˘ĽŢĽˇĽó¤ÎľŻĆ°¤Ë¤Ď\n"
-"BootX ¤ňťČ¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "aboot ¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"aboot Ľ¤ĽóĽšĽČĄźĽëťţ¤ËĽ¨ĽéĄźČŻŔ¸ĄŁ\n"
-"ĚľÍý¤ËĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠĄĄ¤ż¤Ŕ¤ˇşÇ˝é¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ŹÇ˲ő¤ľ¤ě¤Ţ¤šĄŁ"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "ĽÖĄźĽČĽíĄźĽŔĽ¤ĽóĽšĽČĄźĽëĂć"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "ĽÖĄźĽČĽíĄźĽŔ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤żĄŁ°Ę˛ź¤ÎĽ¨ĽéĄź¤ŹČŻŔ¸:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"ĽŞĄźĽ×ĽóĽŐĽĄĄźĽŕĽŚĽ§Ľ˘ľŻĆ°ĽÇĽĐĽ¤Ľš¤ňĘŃšš¤ˇ¤Ę¤¤¤ČĄ˘ĽÖĄźĽČĽíĄźĽŔ¤Ź\n"
-"Í­¸ú¤Ë¤Ę¤é¤Ę¤¤¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁşĆľŻĆ°¤ˇ¤ĆĽÖĄźĽČĽíĄźĽŔ¤ÎĽ×ĽíĽóĽ×ĽČ\n"
-"¤Ź˝Đ¤Ę¤Ť¤Ă¤ż¤éĄ˘şĆľŻĆ°ťţ¤Ë Command-Option-O-F ¤ň˛Ą¤ˇ¤Ć¤ł¤ŚĆţÎϤˇ¤Ţ¤š:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" ¤˝¤ě¤Ť¤é¤ł¤ŚĽżĽ¤Ľ×¤ˇ¤Ţ¤š: shut-down\n"
-"źĄ¤ÎľŻĆ°ťţ¤Ë¤ĎĽÖĄźĽČĽíĄźĽŔ¤ÎĽ×ĽíĽóĽ×ĽČ¤Ź˝Đ¤ë¤Ď¤ş¤Ç¤šĄŁ"
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "śő¤ÎĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ¤ˇ¤Ć˛ź¤ľ¤¤"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Ľ¤ĽóĽšĽČĄźĽëĽŐĽíĽĂĽÔĄź¤ÎźŤĆ°şîŔŽ"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"¤¤¤Ż¤Ä¤Ť¤ÎĽ¤ĽóĽšĽČĄźĽëĽšĽĆĽĂĽ×¤ŹÉÔ´°Á´¤Ç¤šĄŁ\n"
-"\n"
-"ËÜĹö¤Ë˝ŞÎť¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"¤Ş¤á¤Ç¤Č¤Ś¤´¤ś¤¤¤Ţ¤š!ĄĄĽ¤ĽóĽšĽČĄźĽë´°Îť¤Ç¤šĄŁ\n"
-"ĽÖĄźĽČÍŃĽáĽÇĽŁĽ˘¤ňČ´¤¤¤ĆĄ˘ĽęĽżĄźĽó¤ň˛Ą¤ˇ¤ĆşĆľŻĆ°¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ\n"
-"\n"
-"\n"
-"¤ł¤ÎĽĐĄźĽ¸ĽçĽó¤Î Mandrake Linux ¤ÎĽĐĽ°˝¤ŔľžđĘó¤ĎĄ˘\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3 ¤ÇÄ´¤Ů¤é¤ě¤Ţ¤šĄŁ\n"
-"\n"
-"\n"
-"Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ÎŔßÄę¤Ë¤Ä¤¤¤Ć¤ĎĽćĄźĽśĽŹĽ¤ĽÉ¤ÎĄÖĽ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¸ĺĄ×¤Î\n"
-"žĎ¤ňť˛žČ¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Ľ¤ĽóĽšĽČĄźĽëĽŐĽíĽĂĽÔĄź¤ÎźŤĆ°şîŔŽ"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Á´źŤĆ°"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "şĆŔ¸"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "ĽŃĽĂĽąĄźĽ¸ÁŞÂň¤ÎĘݸ"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux Ľ¤ĽóĽšĽČĄźĽë %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr " <Tab>/<Alt-Tab> Í×ÁǴ֤ΰÜĆ° | <Space> ÁŞÂň | <F12> źĄ¤Î˛čĚĚ "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu ¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "consolehelper ¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "ĽŐĽĄĽ¤Ľë¤ňÁŞÂň"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "šâĹ٤ĘÁŞÂň"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "´đËÜ"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "¤ŞÂÔ¤Á˛ź¤ľ¤¤"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "žđĘó"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "ĽÄĽęĄź¤ň¤Î¤Đ¤š"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "ĽÄĽęĄź¤ň˝Ě¤á¤ë"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "¤˝¤Î¤Ţ¤Ţ¤ČĽ°ĽëĄźĽ×Ę̤ňŔÚ¤ęÂؤ¨"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "ÉÔŔľ¤ĘÁŞÂňĄ¤¤â¤Ś°ěĹٝ¤Ć˛ź¤ľ¤¤\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "¤É¤ě¤Ë¤ˇ¤Ţ¤š¤ŤĄŠĄĘĽÇĽŐĽŠĽëĽČ¤Ď %sĄË"
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"°Ę˛ź¤ÎĽ¨ĽóĽČĽę¤âĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "¤É¤ě¤Ë¤ˇ¤Ţ¤š¤ŤĄŠĄĘ0/1, ĽÇĽŐĽŠĽëĽČ¤Ď %sĄË"
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "ĽÜĽżĽóĄÖ%sĄ×: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "¤ł¤ÎĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "¤É¤ě¤Ë¤ˇ¤Ţ¤š¤ŤĄŠĄĘĽÇĽŐĽŠĽëĽČ¤Ď `%s'%sĄË"
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> ÁŞÂňťč¤Ď¤¤¤í¤¤¤í¤˘¤ę¤Ţ¤š (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"10¤Î¤Ę¤Ť¤Ç¤É¤ě¤ňĘÔ˝¸¤ˇ¤ż¤¤¤ŤşÇ˝é¤Îżôťú¤ňĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"¤˘¤ë¤¤¤ĎĂą¤Ë Enter ¤ň˛Ą¤ť¤ĐŔč¤ËżĘ¤ß¤Ţ¤šĄŁ\n"
-"¤É¤ě¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Ăí°ŐĄ˘ĽéĽŮĽë¤ŹĘѤď¤ę¤Ţ¤ˇ¤ż:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "ĹĐĎż¤ˇ¤Ę¤Ş¤ˇ"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "ĽÁĽ§Ľł (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "ĽÉĽ¤ĽÄ"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "ĽšĽÚĽ¤Ľó"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "ĽŐĽŁĽóĽéĽóĽÉ"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "ĽŐĽéĽóĽš"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "ĽÎĽëĽŚĽ§Ąź"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "ĽÝĄźĽéĽóĽÉ"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "ĽíĽˇĽ˘"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "ĽšĽŚĽ§ĄźĽÇĽó"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Ľ¤ĽŽĽęĽšź°Ľ­ĄźĽÜĄźĽÉ"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Ľ˘ĽáĽęĽŤź°Ľ­ĄźĽÜĄźĽÉ"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Ľ˘ĽëĽĐĽËĽ˘"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Ľ˘ĽëĽáĽËĽ˘ĄĘ¸Ĺ¤¤ĄË"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Ľ˘ĽëĽáĽËĽ˘ĄĘĽżĽ¤Ľ×ĽéĽ¤ĽżĄźĄË"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Ľ˘ĽëĽáĽËĽ˘ĄĘČŻ˛ťľ­šćĄË"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Ľ˘ĽźĽëĽĐĽ¤Ľ¸ĽăĽó(ĽéĽĆĽó)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "ĽŮĽëĽŽĄź"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "Ľ˘ĽëĽáĽËĽ˘ĄĘČŻ˛ťľ­šćĄË"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "ĽÖĽëĽŹĽęĽ˘ (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "ĽÖĽéĽ¸Ľë"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "ĽŮĽéĽëĄźĽˇ"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "ĽšĽ¤ĽšĄĘĽÉĽ¤ĽÄź°ÇŰÎóĄË"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "ĽšĽ¤ĽšĄĘĽŐĽéĽóĽšź°ÇŰÎóĄË"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "ĽÁĽ§Ľł (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "ĽÉĽ¤ĽÄĄĘĽÇĽĂĽÉĽ­Ąź¤Ę¤ˇĄË"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "ĽÇĽóĽŢĄźĽŻ"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (ĽÎĽëĽŚĽ§Ąź)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (ĽšĽŚĽ§ĄźĽÇĽó)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Ľ¨ĽšĽČĽËĽ˘"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Ľ°ĽëĽ¸Ľ˘ĄĘĄÖĽíĽˇĽ˘ź°Ą×ÇŰÎóĄË"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Ľ°ĽëĽ¸Ľ˘ĄĘĄÖĽéĽĆĽóĄ×ÇŰÎóĄË"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "ĽŽĽęĽˇĽă"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "ĽĎĽóĽŹĽęĄź"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "ĽŻĽíĽ˘ĽÁĽ˘"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Ľ¤ĽšĽéĽ¨Ľë"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Ľ¤ĽšĽéĽ¨ĽëĄĘČŻ˛ťľ­šćĄË"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Ľ¤ĽéĽó"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Ľ˘Ľ¤ĽšĽéĽóĽÉ"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Ľ¤ĽżĽęĽ˘"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "ĆüËܸě106Ľ­ĄźĽÜĄźĽÉ"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "ÄŤÁŻź°Ľ­ĄźĽÜĄźĽÉ"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "ĽéĽĆĽóĽ˘ĽáĽęĽŤ"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "ĽęĽČĽ˘ĽËĽ˘ AZERTY (ľě)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "ĽęĽČĽ˘ĽËĽ˘ AZERTY (żˇ)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "ĽęĽČĽ˘ĽËĽ˘ ĄÖżôťúÎóĄ× QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "ĽęĽČĽ˘ĽËĽ˘ ĄÖČŻ˛ťĄ× QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "ĽéĽČĽôĽŁĽ˘"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "ĽŢĽąĽÉĽËĽ˘"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "ĽŞĽéĽóĽŔ"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "ĽÝĄźĽéĽóĽÉĄĘqwerty ÇŰÎóĄË"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "ĽÝĄźĽéĽóĽÉĄĘqwertzÇŰÎóĄË"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "ĽÝĽëĽČĽŹĽë"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "ĽŤĽĘĽŔĄĘĽąĽŮĽĂĽŻĄË"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "ĽëĄźĽŢĽËĽ˘ĄĘqwertzĄË"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "ĽëĄźĽŢĽËĽ˘ĄĘqwertyĄË"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "ĽíĽˇĽ˘ĄĘYawertyĄË"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "ĽšĽíĽŮĽËĽ˘"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "ĽšĽíĽĐĽ­Ľ˘ (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "ĽšĽíĽĐĽ­Ľ˘ (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "ĽťĽëĽÓĽ˘(cyrillic)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "ĽżĽßĽë"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "ĽżĽ¤ĄĄĽ­ĄźĽÜĄźĽÉ"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "ĽżĽ¸ĽŻĄĄĽ­ĄźĽÜĄźĽÉ"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "ĽČĽëĽłĄĘĹÁĹýĹŞĄÖŁĆĄ×ĽâĽÇĽëĄË"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "ĽČĽëĽłĄĘ¸˝ÂĺĄÖŁŃĄ×ĽâĽÇĽëĄË"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "ĽŚĽŻĽéĽ¤ĽĘ"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Ľ˘ĽáĽęĽŤź°Ľ­ĄźĽÜĄźĽÉĄĘšńşÝź°ĄË"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "ĽŮĽČĽĘĽŕ ĄÖżôťúÎóĄ× QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "ĽćĄźĽ´ĽšĽéĽÓĽ˘ĄĘĽéĽĆĽóĄË"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr "ąŚ Alt Ľ­Ąź"
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr "ş¸ąŚ¤ÎĽˇĽŐĽČĽ­Ąź¤ňĆąťţ¤Ë"
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr "Control ¤ČĽˇĽŐĽČ¤ňĆąťţ¤Ë"
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr "CapsLock Ľ­Ąź"
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl ¤Č Alt Ľ­Ąź¤ňĆąťţ¤Ë"
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt ¤ČĽˇĽŐĽČĽ­Ąź¤ňĆąťţ¤Ë"
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr "ĄÖĽáĽËĽĺĄźĄ×Ľ­Ąź"
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr "ş¸ĄÖĽŚĽŁĽóĽÉĽŚĽşĄ×Ľ­Ąź"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr "ąŚĄÖĽŚĽŁĽóĽÉĽŚĽşĄ×Ľ­Ąź"
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "˝ä˛óĽŢĽŚĽóĽČ %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "¤Ţ¤şĎŔÍýĽÜĽęĽĺĄźĽŕ¤ňşď˝ü¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"2.2ĽŤĄźĽÍĽëÍѤΠPCMCIA ĽľĽÝĄźĽČ¤Ď¤â¤Ś´Ţ¤Ţ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ\n"
-"2.4ĄĄĽŤĄźĽÍĽë¤ňťČ¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - ĽŢĽŚĽš"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "ČĆÍŃ PS/2 ĽŰĽ¤ĄźĽëĽŢĽŚĽš"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 ĽÜĽżĽó"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "ČĆÍѤÎ2ĽÜĽżĽóĽŢĽŚĽš"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "ČĆÍŃ"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "ĽŰĽ¤ĄźĽë"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "ĽŢĽ¤ĽŻĽíĽ˝ĽŐĽČĄŚĽ¤ĽóĽĆĽęĽŢĽŚĽšĄĘĽˇĽęĽ˘ĽëĄË"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "ČĆÍѤÎ3ĽÜĽżĽóĽŢĽŚĽš"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "ĽŢĽ¤ĽŻĽíĽ˝ĽŐĽČĄŚĽ¤ĽóĽĆĽęĽŢĽŚĽšĄĘPS/2ĄË"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC ĽˇĽęĄźĽş (ĽˇĽęĽ˘Ľë)"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (ĽˇĽęĽ˘Ľë, ¸Ĺ¤¤ C7 ĽżĽ¤Ľ×)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "ĽĐĽšĽŢĽŚĽš"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2ĽÜĽżĽó"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3ĽÜĽżĽó"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "¤Ę¤ˇ"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "ĽŢĽŚĽš¤Ę¤ˇ"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "ĽŢĽŚĽš¤ňĽĆĽšĽČ¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "ĽŢĽŚĽš¤ňÍ­¸ú¤Ë¤š¤ë¤Ë¤ĎĄ˘"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "ĽŰĽ¤ĄźĽë¤ňĆ°¤Ť¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞ"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-"adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-1,-*-fixed-medium-r-"
-"normal--24-*-100-100-c-*-jisx0208.1983-0,*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "´°Îť"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "źĄ ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- ¤â¤É¤ë"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Ŕľ¤ˇ¤ŻÉ˝ź¨˝ĐÍč¤Ţ¤ˇ¤ż¤ŤĄŠ"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ŘŔÜÂł"
-
-#: ../../network/adsl.pm_.c:20
-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¤äĄ˘dhcp¤ˇ¤ŤťČ¤ď¤Ę¤¤ŔÜÂł¤â¤˘¤ę¤Ţ¤šĄŁ\n"
-"¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘ĄÖpppoe¤ňťČ¤ŚĄ×¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "dhcp¤ňťČ¤Ś"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "pppoe¤ňťČ¤Ś"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "pptp¤ňťČ¤Ś"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"¤É¤ÎdhcpĽŻĽéĽ¤Ľ˘ĽóĽČ¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ\n"
-"ĽÇĽŐĽŠĽëĽČ¤Ď dhcpcd¤Ç¤š"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"ĽˇĽšĽĆĽŕžĺ¤ËĽ¤ĄźĽľĽÍĽĂĽČĽ˘ĽŔĽ×Ľż¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄŁ¤ł¤ÎźďÎŕ¤Î\n"
-"ŔÜÂł¤ĎŔßÄę¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ¤ĽóĽżĄźĽŐĽ§Ľ¤Ľš¤ÎÁŞÂň"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ËťČ¤ŚĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤Ś"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻĽŤĄźĽÉ¤Ź¸ŤÉŐ¤Ť¤ę¤Ţ¤ť¤ó"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ÎŔßÄę"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"ĽŰĽšĽČĚž¤ŹĘŹ¤Ť¤ë¤Ę¤éĄ˘¤˝¤ě¤ňĆţÎϤˇ¤Ć˛ź¤ľ¤¤ĄŁ\n"
-"¤¤¤Ż¤Ä¤Ť¤ÎDHCPĽľĄźĽĐ¤ĎĆ°şî¤š¤ë¤Î¤ËĽŰĽšĽČĚž¤ňÉŹÍפȤˇ¤Ţ¤šĄŁ\n"
-"ĽŰĽšĽČĚž¤ĎĄČmybox.mylab.myco.comĄÉ¤Î¤č¤Ś¤ËŔŠ¸Â¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "ĽŰĽšĽČĚž:"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻŔßÄ꼌ĽŁĽśĄźĽÉ"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "ł°ÉŐ ISDN ĽâĽÇĽŕ"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Ćâ¢ISDNĽŤĄźĽÉ"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "¤É¤ÎźďÎŕ¤ÎISDNŔÜÂł¤Ç¤š¤ŤĄŠ"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"¤É¤ÎISDN ŔßÄꤏ¤¤¤¤¤Ç¤š¤Ť?\n"
-"\n"
-"* ¸Ĺ¤¤ŔßÄę¤Ď isdn4net ¤ňťČ¤¤¤Ţ¤šĄŁśŻÎϤʼĥźĽë¤Ź¤˘¤ę¤Ţ¤š¤ŹĄ˘\n"
-" ˝éż´źÔ¤Ë¤ĎŔßÄꤏ¤ŕ¤ş¤Ť¤ˇ¤¤¤ˇĄ˘É¸˝ŕ¤Ç¤Ď¤˘¤ę¤Ţ¤ť¤óĄŁ\n"
-"\n"
-"* żˇ¤ˇ¤¤ŔßÄę¤Ď¤ď¤Ť¤ę¤ä¤š¤¤¤ˇÉ¸˝ŕĹŞ¤Ç¤š¤ŹĄ˘ĽÄĄźĽë¤ĎžŻ¤Ę¤¤¤Ç¤šĄŁ\n"
-"\n"
-"¤Ş´Ť¤á¤ĎĄ˘¸ĺźÔ¤ÎˇÚ¤¤ŔßÄę¤Î¤Ű¤Ś¤Ç¤šĄŁ\n"
-"\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "żˇ¤ˇ¤¤ŔßÄęĄĘisdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "¸Ĺ¤¤ŔßÄę (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN¤ÎŔßÄę"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Ľ×ĽíĽĐĽ¤ĽŔ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"¤â¤ˇĽęĽšĽČ¤Ë¤Ę¤ą¤ě¤ĐĄ˘Unlisted¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "ĽčĄźĽíĽĂĽŃ¤ÎĽ×ĽíĽČĽłĽë"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "ĽčĄźĽíĽĂĽŃĽ×ĽíĽČĽłĽë (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Ŕ¤łŚ¤Î¤˝¤ÎžÍѼ׼íĽČĽłĽë"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Ŕ¤łŚ¤Î¤˝¤ÎžÍѼ׼íĽČĽłĽë \n"
-" D-Channel ¤Ç¤Ę¤¤(ĽęĄźĽš¤ľ¤ě¤ż˛óŔţ)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "¤É¤ÎĽ×ĽíĽČĽłĽë¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "¤É¤ó¤ĘĽŤĄźĽÉ¤ňťČ¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "ĘŹ¤Ť¤é¤Ę¤¤"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"¤â¤ˇISAĽŤĄźĽÉ¤ňťý¤Ă¤Ć¤¤¤ż¤éĄ˘źĄ¤Î˛čĚ̤ÎĂͤŹĹŹŔڤǤˇ¤ç¤ŚĄŁ\n"
-"\n"
-"¤â¤ˇPCMCIAĽŤĄźĽÉ¤ňťý¤Ă¤Ć¤¤¤ż¤éĄ˘ĽŤĄźĽÉ¤Îirq¤Čio¤ňĂΤëÉŹÍפŹ¤˘¤ę¤Ţ¤šĄŁ\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "ĂćĂÇ"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Âł¤ą¤ë"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "¤˘¤Ę¤ż¤ÎISDNĽŤĄźĽÉ¤Ď¤É¤ě¤Ç¤š¤ŤĄŠ"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"ISDN ĽŤĄźĽÉ¤ň¸Ą˝Đ¤ˇ¤Ţ¤ˇ¤ż¤ŹĄ˘ĽżĽ¤Ľ×¤ŹĘŹ¤Ť¤ę¤Ţ¤ť¤óĄŁźĄ¤Î˛čĚ̤Ť¤é PCI ĽŤĄźĽÉ¤ň"
-"Áޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "ISDN PCI ĽŤĄźĽÉ¤Ď¸ŤÉŐ¤Ť¤ę¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁźĄ¤Î˛čĚ̤Ť¤éÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "ĽâĽÇĽŕ¤Ď¤É¤ÎĽˇĽęĽ˘ĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "ĽŔĽ¤Ľ˘ĽëĽ˘ĽĂĽ×ĽŞĽ×ĽˇĽçĽó"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Ŕ̞ܳ"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "ĹĹĎĂČÖšć"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "ĽíĽ°Ľ¤Ľó ID"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "ĽšĽŻĽęĽ×ĽČ¤ňťČ¤ŚÇ§žÚ"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "ĽżĄźĽßĽĘĽë¤Ť¤é¤ÎǧžÚ"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "ĽÉĽáĽ¤ĽóĚž"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "DNS ĽľĄźĽĐĄĘĽŞĽ×ĽˇĽçĽóĄË"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "ĽťĽŤĽóĽÉ DNS ĽľĄźĽĐĄĘĽŞĽ×ĽˇĽçĽóĄË"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"ŔÜÂł¤ňŔڤ뤍Ą˘¤˘¤ë¤¤¤ĎşĆŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ňşĆŔßÄę¤Ç¤­¤Ţ¤šĄŁ"
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤ľ¤ě¤Ć¤¤¤Ţ¤šĄŁ"
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ŘŔÜÂł¤š¤ë¤ŤŔÜÂł¤ňşĆŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "¸˝şß¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤ˇ¤Ć¤¤¤Ţ¤ť¤óĄŁ"
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "ŔÜÂł"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "ŔÚĂÇ"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "ŔÜÂł¤ÎŔßÄę"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ČŔßÄę"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "¤Ç¤Ď %s ŔÜÂł¤ňŔßÄꤡ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"¤Ç¤Ď %s ŔÜÂł¤ňŔßÄꤡ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-"\n"
-"ĄÖOKĄ×¤ň˛Ą¤ˇ¤ĆťĎ¤á¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ÎŔßÄę"
-
-#: ../../network/netconnect.pm_.c:139
-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"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "ŔßÄꤚ¤ëĽ×ĽíĽŐĽŁĄźĽë¤ÎÁŞÂň"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "źŤĆ°¸Ą˝Đ¤ňťČ¤Ś"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "ĽÇĽĐĽ¤Ľš¤Î¸Ą˝ĐĂć¤Ç¤šĄÄĄÄ"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "¤Ő¤Ä¤Ś¤ÎĽâĽÇĽŕŔÜÂł¤ňŔßÄę"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "ĽÝĄźĽČ %s ¤Ç¸Ą˝Đ¤ˇ¤Ţ¤ˇ¤ż"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN ŔÜÂł"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "%s ¤ň¸Ą˝Đ"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ADSL ŔÜÂł"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš %s ¤Ç¸Ą˝Đ"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "ĽąĄźĽÖĽëŔÜÂł"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "ĽąĄźĽÖĽëŔÜÂł¤Ź¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤ż"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "LAN ŔÜÂł"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "Ľ¤ĄźĽľĽÍĽĂĽČĽŤĄźĽÉ¤Ź¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤ż"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "ŔßÄꤡ¤ż¤¤ŔÜÂł¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłĘýËĄ¤ňĘŁżôŔßÄꤡ¤Ţ¤ˇ¤ż¤ÍĄŁ\n"
-"¤É¤ě¤ňťČ¤Ś¤ŤÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "ĽÖĄźĽČťţ¤ËŔÜÂł¤ňłŤťĎ¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻŔßÄę"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ňşĆľŻĆ°¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"ĽÍĽĂĽČĽďĄźĽŻ¤ňşĆľŻĆ°ťţ¤ËĽ¨ĽéĄźČŻŔ¸: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"¤Ş¤á¤Ç¤Č¤Ś¤´¤ś¤¤¤Ţ¤šĄŁĽÍĽĂĽČĽďĄźĽŻ¤ČĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤Ź´°Îť¤Ç¤šĄŁ\n"
-"\n"
-"ŔßÄę¤ň¤ł¤ě¤Ť¤éĽˇĽšĽĆĽŕ¤ËČżąÇ¤ľ¤ť¤Ţ¤šĄŁ\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"¤ł¤ě¤Ź˝Ş¤ď¤Ă¤ż¤éĄ˘X ĽŚĽŁĽóĽÉĽŚ´Äś­¤ňşĆľŻĆ°¤ľ¤ť¤ĆĄ˘ĽŰĽšĽČĚžĘŃšš¤ËČź¤Ś\n"
-"ĚäÂę¤ň˛óČň¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"ŔßÄęĂć¤ËĚäÂꤏľŻ¤­¤Ţ¤ˇ¤żĄŁ\n"
-"net_monitor ¤Ť mcc¤ÇŔÜÂł¤ňĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁŔÜÂł¤Ź¤Ç¤­¤Ć¤¤¤Ę¤ą¤ě¤ĐŔßÄę¤ň"
-"şĆľŻĆ°¤ˇ¤ż¤Ű¤Ś¤Ź¤¤¤¤¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤ó"
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"ˇŮšđĄŞ: ¤ł¤ÎĽÇĽĐĽ¤Ľš¤ĎĄ˘¤š¤Ç¤ËĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłÍѤËŔßÄꤾ¤ě¤Ć¤¤¤Ţ¤šĄŁ\n"
-"¤â¤Č¤ÎŔßÄę¤ňťÄ¤ˇ¤ż¤ą¤ě¤ĐĄ˘¤ł¤Î¤Ţ¤Ţ OK ¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"°Ę˛ź¤ÎĽŐĽŁĄźĽëĽÉ¤ňĘŃšš¤š¤ë¤ČĄ˘ŔßÄꤏĘѤď¤Ă¤Ć¤ˇ¤Ţ¤¤¤Ţ¤šĄŁ"
-
-#: ../../network/network.pm_.c:297
-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 ""
-"¤ł¤ÎĽŢĽˇĽó¤Î IP Ľ˘ĽÉĽěĽš¤ňĆţÎϤˇ¤Ć˛ź¤ľ¤¤ĄŁ\n"
-"łĆĄš¤ÎšŕĚܤˤϼɼüȤǜčŔÚ¤é¤ě¤ż˝˝żĘżô(Î㥤1.2.3.4)¤ŹIP Ľ˘ĽÉĽěĽš¤Č¤ˇ¤ĆĆţÎϤľ"
-"¤ě¤Ţ¤šĄŁ"
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻĽÇĽĐĽ¤Ľš %s ¤ÎŔßÄę"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (ĽÉĽéĽ¤ĽĐ %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP Ľ˘ĽÉĽěĽš:"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "ĽÍĽĂĽČĽŢĽšĽŻ:"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "IP ¤ÎźŤĆ°ŔßÄę"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP Ľ˘ĽÉĽěĽš¤Ď 1.2.3.4 ¤Î¤č¤Ś¤ËĆţÎϤˇ¤Ć˛ź¤ľ¤¤"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"ĽŰĽšĽČĚž¤ňĆţÎϤˇ¤Ć˛ź¤ľ¤¤ĄŁ\n"
-"ĽŰĽšĽČĚž¤ĎĄČmybox.mylab.myco.comĄÉ¤Î¤č¤Ś¤Ë¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ\n"
-"¤â¤ˇĽ˛ĄźĽČĽŚĽ§Ľ¤¤Ź¤˘¤ě¤ĐĄ¤¤˝¤Î IP Ľ˘ĽÉĽěĽš¤âĆţÎϤˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS ĽľĄźĽĐ"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤ (Îă %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤ĽÇĽĐĽ¤Ľš"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Ľ×ĽíĽ­Ľˇ¤ÎŔßÄę"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻĽŤĄźĽÉ¤Îid¤ňÄÉŔץʼéĽĂĽ×ĽČĽĂĽ×¤ÇĘŘÍřĄË"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy ¤Ď http://... ¤Ç¤š"
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy ¤Ď ftp://... ¤Ç¤š"
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ÎŔßÄę"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "şŁĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "ŔÜÂł¤ňĽĆĽšĽČ¤ˇ¤Ć¤¤¤Ţ¤š..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "ĽˇĽšĽĆĽŕ¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤ˇ¤Ţ¤ˇ¤żĄŁ"
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "ĽťĽ­ĽĺĽęĽĆĽŁžĺ¤ÎÍýÍł¤ÇĄ˘ŔÜÂł¤ňŔÚ¤ę¤Ţ¤šĄŁ"
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"¤ł¤ÎĽŢĽˇĽó¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČ¤Ř¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ę¤¤¤č¤Ś¤Ç¤š¤ÍĄŁ\n"
-"ŔÜÂł¤ÎŔßÄę¤ň¤ä¤ę¤Ę¤Ş¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "ŔÜÂł¤ÎŔßÄę"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "˛ź¤ÎĽŐĽŁĄźĽëĽÉ¤ňËä¤á¤ë¤ŤĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "ĽŤĄźĽÉ IRQ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "ĽŤĄźĽÉ mem (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "ĽŤĄźĽÉ IO"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "ĽŤĄźĽÉ IO_0"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "ĽŤĄźĽÉ IO_1"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "¤˘¤Ę¤ż¤ÎĹĹĎĂČÖšć"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Ľ×ĽíĽĐĽ¤ĽŔ¤ÎĚžÁ° (Îă provider.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Ľ×ĽíĽĐĽ¤ĽŔ¤ÎĹĹĎĂČÖšć"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Ľ×ĽíĽĐĽ¤ĽŔ¤Î dns 1 (ĽŞĽ×ĽˇĽçĽó)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Ľ×ĽíĽĐĽ¤ĽŔ¤Î dns 2 (ĽŞĽ×ĽˇĽçĽó)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "šń¤ÎÁŞÂň"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "ĽŔĽ¤Ľ˘ĽëĽâĄźĽÉ"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "ŔÜÂł¤ÎÂŽĹŮ: "
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "ŔÜÂł¤ÎĽżĽ¤ĽŕĽ˘ĽŚĽČĄĘÉĂĄË"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Ľ˘ĽŤĽŚĽóĽČĽíĽ°Ľ¤ĽóĄĘĽćĄźĽśĚžĄË"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Ľ˘ĽŤĽŚĽóĽČĽŃĽšĽďĄźĽÉ"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "ĽŢĽŚĽóĽČ¤ËźşÇÔ: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "¤ł¤ÎĽŢĽˇĽó¤Ç¤ĎĄ˘łČÄĽĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤Ë̤ťŘÄę¤Îˇę¤Ź¤˘¤ę¤Ţ¤š¤ŹĄ˘ťČ¤¨¤Ţ¤ť¤óĄŁ\n"
-"¤É¤Ś¤ˇ¤Ć¤âťČ¤¤¤ż¤ą¤ě¤ĐĄ˘Ľ×ĽéĽ¤ĽŢĽęĽŃĄźĽĆĽŁĽˇĽçĽó¤ň°ÜĆ°¤ˇ¤ĆĄ˘Ě¤ťŘÄę¤Îˇę¤ň\n"
-"łČÄĽĽŃĄźĽĆĽŁĽˇĽçĽó¤ÎÎ٤ˤâ¤Ă¤Ć¤­¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "%s ĽŐĽĄĽ¤Ľë¤Ť¤é¤ÎÉü¸ľ¤ŹźşÇÔ¤ˇ¤Ţ¤ˇ¤żĄ§ %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤Ź˛ő¤ě¤Ć¤¤¤Ţ¤š"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "ĽŐĽĄĽ¤Ľë %s ¤Ř¤Î˝ń¤­šţ¤ßĽ¨ĽéĄź"
-
-#: ../../partition_table_raw.pm_.c:186
-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"
-"¤Ä¤Ţ¤ęĽÇĽŁĽšĽŻ¤Ř˝ń¤­šţ¤ß¤ň¤ˇ¤Ć¤âĽÇĄźĽż¤Ź¤á¤Á¤ă¤Ż¤Á¤ă¤Ë¤Ę¤ę¤Ţ¤šĄŁ"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "ÉŹżÜ"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "˝ĹÍ×"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "¤˘¤ë¤ČşÇšâ"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "¤˘¤ë¤Č¤Ś¤ě¤ˇ¤¤"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "¤˘¤Ă¤Ć¤â¤¤¤¤"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - śŚÄĚ Unix °őşţĽˇĽšĽĆĽŕ"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New GenerationĄĘżˇŔ¤ÂĺĄË"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - ĽéĽ¤ĽóĽ×ĽęĽóĽżĽÇĄźĽâĽó"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't QueueĄĘĽ­ĽĺĄź¤Ę¤ˇ¤Ç°őşţĄË"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "ĽíĄźĽŤĽëĽ×ĽęĽóĽż"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽż"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "ĽęĽâĄźĽČCUPS ĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "ĽęĽâĄźĽČ lpdĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ×ĽęĽóĽżĄĘTCP/Ľ˝ĽąĽĂĽČĄË"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/ĽŚĽŁĽóĽÉĽŚĽş 95/98/NTĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "NetWare ĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Ľ×ĽęĽóĽżĽÇĽĐĽ¤Ľš¤ÎURI¤ňĆţÎĎ"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Ľ¸ĽçĽÖ¤ňĽłĽŢĽóĽÉ¤ŘĽŃĽ¤Ľ×"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "̤ĂΤμâĽÇĽë"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "ĽíĄźĽŤĽëĽ×ĽęĽóĽż"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽż"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " °Ę˛ź¤ÎĽŃĽéĽěĽëĽÝĄźĽČžĺ \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", USB Ľ×ĽęĽóĽż \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", ĽŃĽéĽěĽëĽÝĄźĽČžĺ¤ÎÂżľĄÇ˝ĽÇĽĐĽ¤Ľš \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr "USB žĺ¤ÎÂżľĄÇ˝ĽÇĽĐĽ¤Ľš"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", HP JetDirectžĺ¤ÎÂżľĄÇ˝ĽÇĽĐĽ¤Ľš"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", ÂżľĄÇ˝ĽÇĽĐĽ¤Ľš"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr "%s ¤Ř°őşţ˝ĐÎĎĂć"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "LPD ĽľĄźĽĐ ĄÖ%sĄ×žĺ¤Î, Ľ×ĽęĽóĽżĄÖ%sĄ×"
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP ĽŰĽšĽČĄÖ%sĄ×, ĽÝĄźĽČ %s"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "ĽŚĽŁĽóĽÉĽŚĽşĽľĄźĽĐ ĄÖ%sĄ×žĺ¤Î, śŚÍ­ĄÖ%sĄ×"
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "Novell ĽľĄźĽĐ ĄÖ%sĄ×žĺ¤Î, Ľ×ĽęĽóĽżĄÖ%sĄ×"
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", ĽłĽŢĽóĽÉĄÖ%sĄ×¤ňťČÍŃ"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Ŕ¸¤ÎĽ×ĽęĽóĽżĄĘĽÉĽéĽ¤ĽĐ¤Ę¤ˇĄË"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(%sžĺ¤Ç)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "ĄĘ¤ł¤ÎĽŢĽˇĽóžĺ¤ÇĄË"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "CUPS ĽľĄźĽĐĄÖ%sĄ×žĺ¤Ç"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (ĽÇĽŐĽŠĽëĽČ)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Ľ×ĽęĽóĽż¤ÎŔÜÂł¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Ľ×ĽęĽóĽż¤Ď¤É¤Ś¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"ĽęĽâĄźĽČ CUPS ĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż¤ĎĄ˘¤ł¤ł¤Ç¤ĎŔßÄęÉÔÍפǤšĄŁ\n"
-"Ľ×ĽęĽóĽż¤ĎźŤĆ°¸Ą˝Đ¤ľ¤ě¤Ţ¤šĄŁ"
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-msgid "CUPS configuration"
-msgstr "CUPS ŔßÄę"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-msgid "Specify CUPS server"
-msgstr "CUPS ĽľĄźĽĐ¤ňťŘÄę"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"ĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻžĺ¤Î CUPS ĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż¤ËĽ˘ĽŻĽťĽš¤š¤ë¤Ę¤éĄ˘˛ż¤â\n"
-"ŔßÄꤚ¤ëÉŹÍפϤ˘¤ę¤Ţ¤ť¤óĄŁCUPS ĽľĄźĽĐ¤ŹźŤĆ°ĹŞ¤ËĽ×ĽęĽóĽż¤ÎžđĘó¤ňÎŽ¤ˇ¤Ć¤Ż¤ě¤Ţ"
-"¤šĄŁ\n"
-"ĽŢĽˇĽó¤ŹÇ§źą¤ˇ¤Ć¤¤¤ëĽ×ĽęĽóĽż¤Ď¤š¤Ů¤ĆĄ˘Printerdrake ¤ÎźçĽŚĽŁĽóĽÉĽŚ¤ÎĄÖĽęĽâĄź"
-"ĽČ\n"
-"Ľ×ĽęĽóĽżĄ×¤Ëľó¤Ź¤Ă¤Ć¤¤¤Ţ¤šĄŁĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻžĺ¤Ë CUPS ĽľĄźĽĐ¤Ź¤Ę¤ą¤ě"
-"¤ĐĄ˘\n"
-"CUPS ĽľĄźĽĐ¤Î IP Ľ˘ĽÉĽěĽš¤ČĄ˘žěšç¤Ë¤č¤Ă¤Ć¤ĎĽÝĄźĽČČÖšć¤ňźęĆ°¤ÇĆţÎϤˇ¤ĆĄ˘ĽľĄź"
-"ĽĐ\n"
-"¤Ť¤éĽ×ĽęĽóĽżžđĘó¤ň¤â¤é¤Ś¤ŤĄ˘¤˘¤ë¤¤¤Ď¤ł¤ł¤ňśőÇň¤Ë¤ˇ¤Ć¤Ş¤­¤Ţ¤šĄŁ"
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"ÄĚžď¤ĎĄ˘CUPS ¤ĎźŤĆ°ĹŞ¤ËĽÍĽĂĽČĽďĄźĽŻ´Äś­¤Ë¤˘¤ď¤ť¤ĆŔßÄꤾ¤ě¤ĆĄ˘\n"
-"ĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻ¤Î CUPS ĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤ë\n"
-"¤č¤Ś¤Ë¤Ę¤ę¤Ţ¤šĄŁ¤Ç¤âŔľ¤ˇ¤ŻľĄÇ˝¤ˇ¤Ę¤¤¤Ę¤éĄ˘ĄÖźŤĆ°CUPSŔßÄęĄ×¤ň\n"
-"ĽŞĽŐ¤Ë¤ˇ¤ĆĄ˘/etc/cups/cupsd.conf ¤ňźę¤Ç˝ń¤­´š¤¨¤Ć¤ä¤ę¤Ţ¤šĄŁ\n"
-"˝Ş¤ď¤Ă¤ż¤éĄ˘CUPS ¤ňşĆľŻĆ°¤š¤ë¤Î¤ň¤ŞËş¤ě¤Ę¤ŻĄŞ\n"
-"ĄĘĽłĽŢĽóĽÉ: ĄÖservice cups restartĄ×)."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP Ľ˘ĽÉĽěĽš¤Ď 192.168.1.20 ¤Î¤č¤Ś¤ËĆţÎϤˇ¤Ć˛ź¤ľ¤¤"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "ĽÝĄźĽČČÖšć¤ĎŔľżô¤Ç¤šĄŞ"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "CUPS ĽľĄźĽĐ¤ÎIP"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "ĽÝĄźĽČ"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "źŤĆ° CUPS ŔßÄę"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "ĽÇĽĐĽ¤Ľš¤Î¸Ą˝ĐĂć¤Ç¤šĄÄĄÄ"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "ĽÝĄźĽČ¤ÎĽĆĽšĽČ"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Ľ×ĽęĽóĽżÄɲĂ"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Ľ×ĽęĽóĽżŔßÄ꼌ĽŁĽśĄźĽÉ¤Ř¤¤¤é¤Ă¤ˇ¤ăĄÁ¤¤\n"
-"\n"
-"¤ł¤ÎĽŚĽŁĽśĄźĽÉ¤Ç¤ĎĄ˘¤ł¤ÎĽŢĽˇĽó¤äĽÍĽĂĽČĽďĄźĽŻžĺ¤Îž¤ÎĽŢĽˇĽó¤ÇťČ¤Ś\n"
-"ĽíĄźĽŤĽëĽ×ĽęĽóĽż¤äĽęĽâĄźĽČĽ×ĽęĽóĽż¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-"Ľ×ĽęĽóĽżŔßÄę¤ËÉŹÍפʳƟďžđĘó¤ňËŹ¤Í¤ĆĄ˘łĆźďĽ×ĽęĽóĽżĽÉĽéĽ¤ĽĐ¤ä\n"
-"¤˝¤ÎĽŞĽ×ĽˇĽçĽóĄ˘Ľ×ĽęĽóĽżŔÜÂłĘýź°¤ňÁŞ¤Ů¤ë¤č¤Ś¤Ë¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "ĽíĄźĽŤĽëĽ×ĽęĽóĽż"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Ľ×ĽęĽóĽżŔßÄ꼌ĽŁĽśĄźĽÉ¤Ř¤¤¤é¤Ă¤ˇ¤ăĄÁ¤¤\n"
-"\n"
-"¤ł¤ÎĽŚĽŁĽśĄźĽÉ¤ĎĄ˘ŔÜÂł¤ľ¤ě¤żĽ×ĽęĽóĽż¤ÎĽ¤ĽóĽšĽČĄźĽë¤ň¤ŞźęĹÁ¤¤¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-"Ľ×ĽęĽóĽż¤ňĽłĽóĽÔĽĺĄźĽż¤Ë¤Ä¤Ę¤¤¤ÇĹŸť¤ňĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ˝ŕČ÷¤Ź¤Ç¤­¤ż¤éĄÖźĄĄ×"
-"¤ň\n"
-"ĽŻĽęĽĂĽŻ¤š¤ë¤ŤĄ˘¤¤¤Ţ¤ĎŔßÄꤡ¤ż¤Ż¤Ę¤ą¤ě¤Đ \"Ľ­ĽăĽóĽťĽë\" ¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤šĄŁ\n"
-"\n"
-"¤Ę¤ŞĄ˘°ěÉô¤ÎĽłĽóĽÔĽĺĄźĽż¤ĎĽ×ĽęĽóĽżźŤĆ°¸Ą˝ĐĂć¤ËĽŻĽéĽĂĽˇĽĺ¤ˇ¤Ţ¤šĄŁ\n"
-"źŤĆ°¸Ą˝Đ¤Ę¤ˇ¤ÇĽ×ĽęĽóĽżŔßÄę¤ň¤š¤ë¤Ë¤ĎĄ˘ĄÖĽ×ĽęĽóĽżźŤĆ°¸Ą˝ĐĄ×¤ňĽŞĽŐ¤Ë¤ˇ¤Ţ¤šĄŁ\n"
-"¤Ţ¤żprinterdrake ¤ŹźŤĆ°ĹŞ¤ËĽęĽâĄźĽČĽ×ĽęĽóĽż¤ň¸Ą˝Đ¤ˇ¤Ę¤ą¤ě¤ĐĄ˘\n"
-"ĄÖĽ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉĄ×¤ňťČ¤Ă¤ĆŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Ľ×ĽęĽóĽżźŤĆ°¸Ą˝Đ"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"¤Ş¤á¤Ç¤Č¤Ś¤´¤ś¤¤¤Ţ¤šĄŁĽ×ĽęĽóĽż¤ÎĽ¤ĽóĽšĽČĄźĽë¤ČŔßÄꤏ´°Îť¤ˇ¤Ţ¤ˇ¤żĄŞ\n"
-"\n"
-"Ľ˘Ľ×ĽęĽąĄźĽˇĽçĽó¤ÎĄÖ°őşţĄ×ĽłĽŢĽóĽÉĄĘ¤Ő¤Ä¤Ś¤ĎĄÖĽŐĽĄĽ¤ĽëĄ×ĽáĽËĽĺĄź¤ÎĄË\n"
-"¤Ť¤é°őşţ¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-"Ľ×ĽęĽóĽż¤ÎÄɲå˘şď˝üĄ˘ĚžžÎĘŃššĄ˘ĽÇĽŐĽŠĽëĽČŔßÄęĄĘÍŃťćĽČĽěĽ¤Ą˘°őťúÉĘźÁ¤Ę¤ÉĄË"
-"¤Ź\n"
-"¤ˇ¤ż¤ą¤ě¤ĐĄ˘Mandrake ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź¤ÎĄÖĽĎĄźĽÉĽŚĽ§Ľ˘Ą×¤ÎĂć¤Î\n"
-"ĄÖĽ×ĽęĽóĽżĄ×¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Ľ×ĽęĽóĽż¤ÎźŤĆ°¸Ą˝Đ"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake ¤ĎĽíĄźĽŤĽëĽ×ĽęĽóĽż¤ňźŤĆ°¸Ą˝Đ¤Ç¤­¤Ţ¤š¤ŹĄ˘°ěÉô¤ÎĽˇĽšĽĆĽŕ¤Ç¤Ď\n"
-"ĽˇĽšĽĆĽŕ¤ňĽŐĽęĄźĽş¤ľ¤ť¤ĆĄ˘ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤ň˛ő¤ˇ¤Ţ¤šĄŁ˛ż¤ŹľŻ¤­¤Ć¤âĂΤę¤Ţ¤ť¤ó"
-"¤čĄŞ\n"
-"\n"
-"¤ÇĄ˘ËÜĹö¤ËĽ×ĽęĽóĽż¤ÎźŤĆ°¸Ą˝Đ¤ň¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "źŤĆ°¸Ą˝Đ¤ň¤š¤ë"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Ľ×ĽęĽóĽż¤ňźęĆ°¤ÇŔßÄę"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "%s ¤ň¸Ą˝Đ"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "ĽŃĽéĽěĽëĽÝĄźĽČžĺ¤ÎĽ×ĽęĽóĽż \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "USB Ľ×ĽęĽóĽż \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"ĽíĄźĽŤĽëĽ×ĽęĽóĽż¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄŁźęĆ°¤ÇĽ¤ĽóĽšĽČĄźĽë¤š¤ë¤Ë¤ĎĄ˘ĽÇĽĐĽ¤ĽšĚž¤Ť\n"
-"ĽŐĽĄĽ¤ĽëĚž¤ňĆţÎϼ鼤Ľó¤ËĆţ¤ě¤Ţ¤š (ĽŃĽéĽěĽëĽÝĄźĽČ¤Ę¤é: /dev/lp0, /dev/lp1,... "
-"¤Ź LPT1:, LPT2:, ..., ¤ËÂĐąţ¤ˇ¤ĆĄ˘1ČÖĚܤΠUSB Ľ×ĽęĽóĽż: /dev/usb/lp0, 2ČÖĚÜ"
-"¤Î USB Ľ×ĽęĽóĽż: /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "ĽÇĽĐĽ¤Ľš¤ŤĽŐĽĄĽ¤ĽëĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"ĽíĄźĽŤĽëĽ×ĽęĽóĽż¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄŞ\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"ĽÍĽĂĽČĽďĄźĽŻĽ×ĽęĽóĽż¤ÎĽ¤ĽóĽšĽČĄźĽë¤ĎĄ˘OS Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤Ë¤ˇ¤Ť¤Ç¤­¤Ţ¤ť¤óĄŁ\n"
-"Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ËMandrake ĽłĽóĽČĽíĄźĽëĽťĽóĽż¤ÇĄÖĽĎĄźĽÉĽŚĽ§Ľ˘Ą×¤ÎĂć¤Î\n"
-"ĄÖĽ×ĽęĽóĽżĄ×¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"ĽÍĽĂĽČĽďĄźĽŻĽ×ĽęĽóĽż¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ë¤ĎĄÖĽ­ĽăĽóĽťĽëĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć\n"
-"ĄÖĽ¨Ľ­ĽšĽŃĄźĽČĽâĄźĽÉĄ×¤ËĘŃšš¤ˇ¤Ć¤Ť¤éĄÖżˇľŹĽ×ĽęĽóĽż¤ÎÄɲåפňĽŻĽęĽĂĽŻ\n"
-"¤ˇ¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"°Ę˛ź¤ÎĽ×ĽęĽóĽż¤ŹźŤĆ°¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤żĄŁ¤â¤ˇ¤ł¤ě¤ŹŔßÄꤡ¤ż¤¤¤â¤Î¤Ç¤Ę¤ą¤ě¤ĐĄ˘\n"
-"ĆţÎϚԤ˥˘ĽÇĽĐĽ¤ĽšĚž/ĽŐĽĄĽ¤ĽëĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"°Ę˛ź¤ÎĽ×ĽęĽóĽż¤ŹźŤĆ°¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤żĄŁ¤â¤ˇŔßÄꤡ¤ż¤¤¤â¤Î¤Ź¤ł¤ł¤Ë¤Ę¤ą¤ě¤ĐĄ˘\n"
-"ĆţÎϚԤ˥˘ĽÇĽĐĽ¤ĽšĚž/ĽŐĽĄĽ¤ĽëĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-"°Ę˛ź¤ÎĽ×ĽęĽóĽż¤ŹźŤĆ°¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤żĄŁĽ×ĽęĽóĽż¤Ď´°Á´¤ËźŤĆ°¤ÇŔßÄꤾ¤ě¤Ţ¤šĄŁ\n"
-"¸Ą˝Đ¤ľ¤ě¤Ć¤¤¤Ę¤Ť¤Ă¤ż¤ęĄ˘ĽŤĽšĽżĽŕŔßÄę¤ň¤ˇ¤ż¤ą¤ě¤ĐĄÖźęĆ°ŔßÄęĄ×¤ňÍ­¸ú¤Ë¤ˇ¤Ć¤Ż¤Ŕ"
-"¤ľ¤¤ĄŁ"
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-"°Ę˛ź¤ÎĽ×ĽęĽóĽż¤ŹźŤĆ°¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤żĄŁŔßÄꤡ¤ż¤¤Ľ×ĽęĽóĽż¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"Ľ×ĽęĽóĽż¤Ď´°Á´¤ËźŤĆ°¤ÇŔßÄꤾ¤ě¤Ţ¤šĄŁ¸Ą˝Đ¤ľ¤ě¤Ć¤¤¤Ę¤Ť¤Ă¤ż¤ęĄ˘ĽŤĽšĽżĽŕŔßÄę\n"
-"¤ˇ¤ż¤ą¤ě¤ĐĄÖźęĆ°ŔßÄęĄ×¤ňÍ­¸ú¤Ë¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Ľ×ĽęĽóĽż¤ŹŔÜÂł¤ľ¤ě¤Ć¤¤¤ëĽÝĄźĽČ¤ňÁޤ֤ŤĄ˘ĆţÎϚԤ˼Ǽм¤ĽšĚž/ĽŐĽĄĽ¤ĽëĚž¤ň\n"
-"ĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "ĽâĽÇĽŕ¤Ď¤É¤ÎĽˇĽęĽ˘ĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-"(ĽŃĽéĽěĽëĽÝĄźĽČ¤Ę¤é: /dev/lp0, /dev/lp1,... ¤Ź LPT1:, LPT2:, ..., ¤ËÂĐąţĄ˘1ČÖ"
-"ĚܤΠUSB Ľ×ĽęĽóĽż: /dev/usb/lp0, 2ČÖĚܤΠUSB Ľ×ĽęĽóĽż: /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Ľ×ĽęĽóĽż¤ŤĽÇĽĐĽ¤Ľš¤ňĆţÎĎĄŚÁŞÂň"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "ĽŢĽËĽĺĽ˘ĽëŔßÄę"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-"¤˘¤Ę¤ż¤ÎĽ×ĽęĽóĽż¤ĎĄ˘HPŔ˝ÂżľĄÇ˝ĽÇĽĐĽ¤Ľš (OfficeJet, PSC, PhotoSmart, LaserJet "
-"1100/1200/1220/3200/3300 ¤ÎĽšĽ­ĽăĽĘ¤Ä¤­) ¤Ç¤š¤Ť?"
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "HPOJ ĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĂć..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "ĽÇĽĐĽ¤Ľš¤ňĽÁĽ§ĽĂĽŻ¤ˇ¤ĆHPOJ ¤ňĽ¤ĽóĽšĽČĄźĽëĂć..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "SANE ĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĂć..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "HP ĽŢĽëĽÁľĄÇ˝ĽÇĽĐĽ¤Ľš¤ÇĽšĽ­ĽăĽóĂć"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "Ľ×ĽęĽóĽżĽÝĄźĽČ¤ň CUPS ÍѤËÄóśĄĂć..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Ľ×ĽęĽóĽżĽÇĄźĽżĽŮĄźĽš¤ňĆɤó¤Ç¤¤¤Ţ¤š..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "ĽęĽâĄźĽČlpdĽ×ĽęĽóĽżĽŞĽ×ĽˇĽçĽó"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"ĽęĽâĄźĽČ¤Î lpd ¤Î Ľ×ĽęĽóĽż¤ňťČ¤Ś¤Ë¤ĎĄ¤Ľ×ĽęĽóĽżĽľĄźĽĐ¤Î\n"
-"ĽŰĽšĽČĚž¤ČĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽżĚž¤ŹÉŹÍפˤʤę¤Ţ¤šĄŁ."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "ĽęĽâĄźĽČĽŰĽšĽČĚž"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽżĚž"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "ĽęĽâĄźĽČĽŰĽšĽČĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽżĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (ĽŚĽŁĽóĽÉĽŚĽş 9x/NT) Ľ×ĽęĽóĽż¤ÎĽŞĽ×ĽˇĽçĽó"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"SMB Ľ×ĽęĽóĽż¤ňťČ¤Ś¤Ë¤ĎĄ¤SMB ĽŰĽšĽČĚž(ĂíĄŞTCP/IP ĽŰĽšĽČĚž¤Č¤ĎĘĚĄŞ)¤ČĄ¤\n"
-"¿ʏĽ×ĽęĽóĽČĽľĄźĽĐ¤Î IP Ľ˘ĽÉĽěĽšĄ¤Ľ˘ĽŻĽťĽš¤ˇ¤ż¤¤Ľ×ĽęĽóĽż¤ÎśŚÍ­ĚžĄ¤\n"
-"ĹŹŔڤʼ楟ĽśĚžĄ¤ĽŃĽšĽďĄźĽÉ¤Ş¤č¤ÓĽďĄźĽŻĽ°ĽëĄźĽ×¤ÎžđĘó¤ŹÉŹÍפˤʤę¤Ţ¤šĄŁ"
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "SMBĽľĄźĽĐĽŰĽšĽČ"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "SMBĽľĄźĽĐ¤ÎIP"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "ĽˇĽ§Ľ˘Ěž"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "ĽďĄźĽŻĽ°ĽëĄźĽ×"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "ĽľĄźĽĐĚž¤ŤĄ˘ĽľĄźĽĐ¤ÎIP¤Ď¤É¤Ś¤ˇ¤Ć¤âÍפę¤Ţ¤šĄŞ"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "SambaĽˇĽ§Ľ˘Ěž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Netware Ľ×ĽęĽóĽż¤ÎĽŞĽ×ĽˇĽçĽó"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Netware Ľ×ĽęĽóĽż¤ňťČ¤Ś¤Ë¤ĎĄ¤NetWare ĽŰĽšĽČĚž(ĂíĄŞTCP/IP ĽŰĽšĽČĚž¤Č¤Ď°ă¤ŚĄŞ)\n"
-"¤ČĄ¤Ľ˘ĽŻĽťĽš¤ˇ¤ż¤¤Ľ×ĽęĽóĽż¤ÎĽ×ĽęĽóĽČĽ­ĽĺĄźĚžĄ¤ĹŹŔڤʼ楟ĽśĚž¤Ş¤č¤Ó\n"
-"ĽŃĽšĽďĄźĽÉ¤ŹÉŹÍפˤʤę¤Ţ¤šĄŁ"
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Ľ×ĽęĽóĽżĽľĄźĽĐ"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "°őşţĽ­ĽĺĄź¤ÎĚžÁ°"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "NCP ĽľĄźĽĐĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "NCP Ľ­ĽĺĄźĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Ľ˝ĽąĽĂĽČĽ×ĽęĽóĽż¤ÎĽŞĽ×ĽˇĽçĽó"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Ľ˝ĽąĽĂĽČĽ×ĽęĽóĽż¤Ç°őşţ¤š¤ë¤Ę¤éĄ˘Ľ×ĽęĽóĽż¤ÎĽŰĽšĽČĚž¤ČĄ˘žěšç¤Ë¤č¤Ă¤Ć¤Ď\n"
-"ĽÝĄźĽČČ֚椏ɏÍפˤʤę¤Ţ¤šĄŁHP JetDirect ĽľĄźĽĐ¤Ç¤ĎĄ˘ĽÝĄźĽČČÖšć¤Ď\n"
-"ÄĚžď9100¤Ç¤š¤ŹĄ˘¤Ű¤Ť¤ÎĽľĄźĽĐ¤Ŕ¤Č¤Ţ¤Á¤Ţ¤Á¤Ç¤šĄŁĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎĽŢĽËĽĺĽ˘Ľë¤ň\n"
-"¸Ť¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Ľ×ĽęĽóĽżĽŰĽšĽČĚž"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Ľ×ĽęĽóĽżĽŰĽšĽČĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Ľ×ĽęĽóĽżĽÇĽĐĽ¤Ľš¤ÎURI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Ľ×ĽęĽóĽż¤ňĽ˘ĽŻĽťĽš¤š¤ë¤Î¤ËÄžŔÜ URI ¤ňťŘÄꤚ¤ë¤ł¤Č¤â¤Ç¤­¤Ţ¤šĄŁ\n"
-"¤ł¤ÎURI¤ĎCUPSťĹÍͤŤFoomaticťĹÍͤǝŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"¤Ę¤ŞĄ˘¤š¤Ů¤Ć¤ÎURIĽżĽ¤Ľ×¤ŹÁ´ĽšĽ×ĄźĽé¤ÇĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤ë¤ď¤ą¤¸¤ă¤Ę¤¤¤Ç¤šĄŁ"
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Í­¸ú¤ĘURI¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞ"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Ľ×ĽęĽóĽż¤Ď¤˝¤ě¤ž¤ěĚžÁ°¤ŹÉŹÍפǤšĄĘ¤ż¤Č¤¨¤ĐĄÖprinterĄ×ĄŁ\n"
-"ŔâĚŔ¤äžě˝ę¤ÎÍó¤ĎśőÍó¤Ç¤â¤Ť¤Ţ¤¤¤Ţ¤ť¤óĄŁ\n"
-"¤ł¤ě¤ĎĽćĄźĽś¤Ë¤ď¤Ť¤ę¤ä¤š¤Ż¤š¤ë¤ż¤á¤Î¤â¤Î¤Ç¤šĄŁ"
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Ľ×ĽęĽóĽż¤ÎĚžÁ°"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Ľ×ĽęĽóĽż¤ÎŔâĚŔ"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Ľ×ĽęĽóĽż¤Îžě˝ę"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Ľ×ĽęĽóĽżĽÇĄźĽżĽŮĄźĽš¤ň˝ŕČ÷Ăć..."
-
-#: ../../printerdrake.pm_.c:1112
-msgid "Your printer model"
-msgstr "Ľ×ĽęĽóĽż¤ÎľĄźď"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Printerdrake ¤ĎĄ˘Ľ×ĽęĽóĽż¤ÎźŤĆ°¸Ą˝Đ¤ÇĆŔ¤é¤ě¤żľĄźďĚž¤ČĄ˘Ľ×ĽęĽóĽż¤Î\n"
-"ĽÇĄźĽżĽŮĄźĽš¤Č¤ňČćłÓ¤ˇ¤ĆşÇĹŹ¤Ę¤â¤Î¤ňÁŞ¤Ó¤Ţ¤ˇ¤żĄŁ¤Ç¤â¤ł¤ÎÁŞÂň¤Ď¤Ţ¤Á¤Ź¤Ă¤Ć\n"
-"¤¤¤ë¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁĆä˼׼ęĽóĽż¤ŹĽÇĄźĽżĽŮĄźĽšĆâ¤Ë¤Ţ¤Ă¤ż¤Ż¤Ę¤¤žěšç¤Ë¤Ď\n"
-"¤č¤Ż¤Ţ¤Á¤Ź¤¤¤ŹĹܤę¤Ţ¤šĄŁPrinterdrake ¤ÎÁŞÂň¤ŹŔľ¤ˇ¤¤¤Ť¤ňłÎ¤Ť¤á¤ĆĄ˘\n"
-"Ŕľ¤ˇ¤ą¤ě¤ĐĄÖ¤ł¤ÎĽâĽÇĽë¤ňťČ¤ŚĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤šĄŁ¤Ţ¤Á¤Ź¤Ă¤Ć¤¤¤ż¤é\n"
-"ĄÖźęĆ°¤ÇÁŞ¤ÖĄ×¤ňÁޤó¤ÇĄ˘źĄ˛čĚ̤Ť¤éźęĆ°¤ÇĽ×ĽęĽóĽżľĄźďĚž¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"Printerdrake ¤Ď°Ę˛ź¤ÎĽ×ĽęĽóĽż¤ň¸Ť¤Ä¤ą¤Ţ¤ˇ¤ż:\n"
-"\n"
-"%s"
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-msgid "The model is correct"
-msgstr "¤ł¤ÎĽâĽÇĽë¤ňťČ¤Ś"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-msgid "Select model manually"
-msgstr "źęĆ°¤ÇÁޤÖ"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Ľ×ĽęĽóĽż¤ÎľĄźď¤ňÁޤÖ"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "¤É¤ÎľĄźď¤ÎĽ×ĽęĽóĽż¤ňťČ¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Printerdrake ¤ŹĽ×ĽęĽóĽż¤ÎľĄźď¤ňŔľ¤ˇ¤ŻźŤĆ°¸Ą˝Đ¤ˇ¤ż¤ŤłÎ¤Ť¤á¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"ĽŤĄźĽ˝Ľë¤Ź¤Ţ¤Á¤Ź¤Ă¤żĽâĽÇĽë˛˝ĄÖĽĘĽŢ¤ÎĽ×ĽęĽóĽżĄĘRaw Printer)Ą×¤ňťŘ¤ˇ¤Ć\n"
-"¤¤¤ż¤éĄ˘°ěÍ÷¤Ť¤éŔľ¤ˇ¤¤ľĄźď¤ňĂľ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"¤˘¤Ę¤ż¤ÎĽ×ĽęĽóĽż¤Ź¤Ę¤ą¤ě¤ĐĄ˘¸ß´šŔ­¤Î¤˘¤ëĽ×ĽęĽóĽżĄĘĽ×ĽęĽóĽż¤ÎĽŢĽËĽĺĽ˘Ľë¤Ť\n"
-"Îŕť÷Ľ×ĽęĽóĽż¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "OKI winĽ×ĽęĽóĽż¤ÎŔßÄę"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"OKI ¤ÎĽěĄźĽświnĽ×ĽęĽóĽż¤ňŔßÄꤡ¤č¤Ś¤Č¤ˇ¤Ć¤¤¤Ţ¤š¤ÍĄŁ¤ł¤ÎĽ×ĽęĽóĽż¤ĎČóžď¤ËĆĂźě"
-"¤Ę\n"
-"Ľ×ĽíĽČĽłĽë¤ňťČ¤Ś¤Î¤ÇĄ˘şÇ˝é¤ÎĽŃĽéĽěĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤Ź¤Ę¤¤¤ČľĄÇ˝¤ˇ¤Ţ¤ť¤óĄŁ\n"
-"¤â¤ˇĘ̤μݥźĽČ¤ËŔÜÂł¤ľ¤ě¤Ć¤¤¤ż¤ęĄ˘Ľ×ĽęĽóĽżĽľĄźĽĐ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ż¤ę¤š¤ëžěšç¤Ë"
-"¤ĎĄ˘\n"
-"ĽĆĽšĽČĽÚĄźĽ¸°őşţ¤ÎÁ°¤ËĄ˘şÇ˝é¤ÎĽŃĽéĽěĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤Ž¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"¤ľ¤â¤Ę¤¤¤ČťČ¤¨¤Ţ¤ť¤óĄŁŔÜÂłźďÎŕ¤ÎŔßÄę¤ĎĚľťë¤ľ¤ě¤Ţ¤šĄŁ"
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "LexmarkĽ¤ĽóĽŻĽ¸Ľ§ĽĂĽČ¤ÎŔßÄę"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Lexmark¤ŹÄ󜥤š¤ëĽ¤ĽóĽŻĽ¸Ľ§ĽĂĽČĽ×ĽęĽóĽżĽÉĽéĽ¤ĽĐ¤ĎĄ˘ĽíĄźĽŤĽëĽ×ĽęĽóĽż¤ˇ¤Ť\n"
-"ĽľĽÝĄźĽČ¤ˇ¤Ţ¤ť¤óĄŁĽęĽâĄźĽČĽŢĽˇĽó¤äĽ×ĽęĽóĽżĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż¤ĎťČ¤¨¤Ţ¤ť¤óĄŁ\n"
-"Ľ×ĽęĽóĽż¤ňĽíĄźĽŤĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤°¤ŤŔÜÂł¤ľ¤ě¤Ć¤¤¤ëĽŢĽˇĽó¤ÇŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-"Lexmark Ľ¤ĽóĽŻĽ¸Ľ§ĽĂĽČ¤Č¤ł¤ÎŔßÄę¤Ç°őşţ¤š¤ë¤Ë¤ĎĄ˘Lexmark(http://www.lexmark."
-"com/) ¤ÎÄ󜥤š¤ëĽ¤ĽóĽŻĽ¸Ľ§ĽĂĽČĽ×ĽęĽóĽżĽÉĽéĽ¤ĽĐ¤ŹÉŹÍפǤšĄŁĽ˘ĽáĽęĽŤĽľĽ¤ĽČ¤Ë"
-"šÔ¤Ă¤ĆĄ˘ĄÖĽÉĽéĽ¤ĽĐĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ¤˝¤ě¤Ť¤éźŤĘŹ¤ÎľĄźď¤ňÁޤó¤ÇĄ˘OS¤ÎÍó"
-"¤Ç\"Linux\" ¤ňÁŞ¤Ó¤Ţ¤šĄŁĽÉĽéĽ¤ĽĐ¤Ď RPM ĽŃĽĂĽąĄźĽ¸¤ŤĄ˘Ľ°ĽéĽŐĽŁĽĂĽŻĽ¤ĽóĽšĽČĄźĽë"
-"ÍѤμˇĽ§ĽëĽšĽŻĽęĽ×ĽČ¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁ¤ł¤ÎŔßÄę¤ĎĽ°ĽéĽŐĽŁĽĂĽŻĽŐĽíĽóĽČĽ¨ĽóĽÉ¤ňťČ"
-"¤ď¤Ę¤Ż¤Ć¤â¤Ç¤­¤Ţ¤šĄŁĽéĽ¤ĽťĽóĽšĆą°Ő¤Î¤˘¤Č¤Ç¤š¤°¤ËĽ­ĽăĽóĽťĽë¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤˝¤ě"
-"¤Ť¤é°őşţĽŘĽĂĽÉ¤ÎĽ˘ĽéĽ¤ĽóĽáĽóĽČĽÚĄźĽ¸¤ň\"lexmarkmaintain\" ¤Ç°őşţ¤ˇ¤ĆĄ˘¤ł¤ÎĽ×"
-"ĽíĽ°ĽéĽŕ¤ÇĽŘĽĂĽÉ¤ÎĽ˘ĽéĽ¤ĽóĽáĽóĽČ¤ňÄ´Ŕ°¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Ľ×ĽęĽóĽż¤ÎĽÇĽŐĽŠĽëĽČŔßÄę\n"
-"\n"
-"ĽÚĄźĽ¸¤ÎÂ礭¤ľ¤ČĽ¤ĽóĽŻ¤ÎźďÎŕĄĘłşĹö¤š¤ëžěšç¤Î¤ßĄË¤ŹŔľ¤ˇ¤ŻŔßÄꤾ¤ě¤Ć¤¤¤ë¤Ť¤ňłÎ"
-"ǧ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ¤Ę¤ŞĄ˘ÄśšâÉĘźÁ°őşţ¤Ď¤š¤´¤Żťţ´Ö¤Ź¤Ť¤Ť¤ë¤ł¤Č¤Ź¤˘¤ę¤Ţ¤šĄŁ"
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "ĽŞĽ×ĽˇĽçĽó %s ¤ĎŔ°żô¤Ç¤šĄŞ"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "ĽŞĽ×ĽˇĽçĽó %s ¤Ďżôťú¤Ç¤šĄŞ"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "ĽŞĽ×ĽˇĽçĽó %s ČĎ°Ďł°¤Ç¤š!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"¤ł¤ÎĽ×ĽęĽóĽż (\"%s\") ¤ň\n"
-"ĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "ĽĆĽšĽČĽÚĄźĽ¸"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"°őşţ¤ˇ¤ż¤¤ĽĆĽšĽČĽÚĄźĽ¸¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"ĂíĄ§źĚżżĽĆĽšĽČĽÚĄźĽ¸¤ĎĄ˘°őşţ¤Ë¤Ť¤Ę¤ęťţ´Ö¤Ź¤Ť¤Ť¤ë¤ł¤Č¤Ź¤˘¤ę¤Ţ¤š¤ˇĄ˘ĽáĽâĽę¤ÎžŻ"
-"¤Ę¤¤ĽěĄźĽśĽ×ĽęĽóĽż¤Ç¤Ď˝ĐÎϤǤ­¤Ę¤¤¤ł¤Č¤â¤˘¤ę¤Ţ¤šĄŁÂż¤Ż¤Îžěšç¤Ďɸ˝ŕĽÚĄźĽ¸¤Ź°ő"
-"şţ¤Ç¤­¤ě¤ĐÂçžćÉפǤšĄŁ"
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "ĽĆĽšĽČĽÚĄźĽ¸¤Ę¤ˇ"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "°őşţ"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "ɸ˝ŕĽĆĽšĽČĽÚĄźĽ¸"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Ę̤μƼšĽČĽÚĄźĽ¸ (ĽěĽżĄź)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Ę̤μƼšĽČĽÚĄźĽ¸ (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "źĚżżĽĆĽšĽČĽÚĄźĽ¸"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "ĽĆĽšĽČĽÚĄźĽ¸¤ň°őşţ¤ˇ¤Ę¤¤"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "ĽĆĽšĽČĽÚĄźĽ¸°őşţĂćĄÄĄÄ"
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"ĽĆĽšĽČĽÚĄźĽ¸¤ňĽ×ĽęĽóĽżĽÇĄźĽâĽó¤ËÁ÷¤ę¤Ţ¤ˇ¤żĄŁ\n"
-"Ľ×ĽęĽóĽż¤ŹĆ°¤­˝Đ¤š¤Ţ¤ÇĄ˘¤Á¤ç¤Ă¤Čťţ´Ö¤Ź¤Ť¤Ť¤ę¤Ţ¤šĄŁ\n"
-"°őşţ¤ÎĽšĽĆĄźĽżĽšĄ§\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"ĽĆĽšĽČĽÚĄźĽ¸¤ňĽ×ĽęĽóĽżĽÇĄźĽâĽó¤ËÁ÷¤ę¤Ţ¤ˇ¤żĄŁ\n"
-"Ľ×ĽęĽóĽż¤ŹĆ°¤­˝Đ¤š¤Ţ¤ÇĄ˘¤Á¤ç¤Ă¤Čťţ´Ö¤Ź¤Ť¤Ť¤ę¤Ţ¤šĄŁ\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "¤Ś¤Ţ¤ŻĆ°¤­¤Ţ¤ˇ¤ż¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Ŕ¸¤ÎĽ×ĽęĽóĽż"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"ĽłĽŢĽóĽÉĽéĽ¤ĽóĄĘĽżĄźĽßĽĘĽëĽŚĽŁĽóĽÉĽŚĄË¤Ť¤éĽŐĽĄĽ¤Ľë¤ň°őşţ¤š¤ë¤Ë¤ĎĄ˘\n"
-"ĽłĽŢĽóĽÉĄÖ%s <file>Ą×¤ŤĄ˘Ľ°ĽéĽŐĽŁĽĂĽŻ°őşţĽÄĄźĽë: ĄÖxpp <file>Ą×¤Ť\n"
-"ĄÖkprinter <file>Ą×¤ňťČ¤¤¤Ţ¤šĄŁĽ°ĽéĽŐĽŁĽĂĽŻĽÄĄźĽë¤ĎĄ˘\n"
-"Ľ×ĽęĽóĽżÁŞÂň¤ČĽŞĽ×ĽˇĽçĽóŔßÄę¤ň´ĘĂą¤Ë¤ˇ¤Ć¤Ż¤ě¤Ţ¤šĄŁ\n"
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"¤ł¤Ś¤ˇ¤żĽłĽŢĽóĽÉ¤ĎĄ˘Âż¤Ż¤ÎĽ˘Ľ×ĽęĽąĄźĽˇĽçĽó¤Î°őşţĽŔĽ¤Ľ˘ĽíĽ°¤ÎĂć¤Î\n"
-"ĄÖ°őşţĽłĽŢĽóĽÉĄ×ĽŐĽŁĄźĽëĽÉ¤Ç¤âťČ¤¨¤Ţ¤š¤ŹĄ˘¤˝¤Îžěšç¤ĎĽŐĽĄĽ¤ĽëĚž¤ĎÍפę¤Ţ¤ť"
-"¤óĄŁ\n"
-"°őşţ¤š¤ëĽŐĽĄĽ¤Ľë¤ĎĽ˘Ľ×ĽęĽąĄźĽˇĽçĽó¤Ť¤é¤Ż¤ë¤Ť¤é¤Ç¤šĄŁ\n"
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"ĄÖ%sĄ×ĽłĽŢĽóĽÉ¤Ď¤Ţ¤żĄ˘°őşţĽ¸ĽçĽÖ¤´¤Č¤ËĽŞĽ×ĽˇĽçĽóŔßÄę¤ňĘѤ¨¤ľ¤ť¤Ć¤Ż¤ě¤Ţ¤šĄŁ\n"
-"ĽłĽŢĽóĽÉĽéĽ¤Ľó¤Ë´őËž¤ÎŔßÄę¤ňÄɲ䚤ë¤Ŕ¤ą¤Ç¤šĄŁ\n"
-"¤ż¤Č¤¨¤ĐĄÖ%s <file>Ą×¤Č¤¤¤Śśńšç¤Ç¤šĄŁ "
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"¤¤¤Ţ¤ÎĽ×ĽęĽóĽż¤ÇťČ¤¨¤ëĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň¸Ť¤ë¤Ë¤ĎĄ˘˛ź¤Î°ěÍ÷¤ňĆɤऍĄ˘\n"
-"¤˘¤ë¤¤¤ĎĄÖĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň°őşţĄ×ĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"¤¤¤Ţ¤ÎĽ×ĽęĽóĽż¤ÇťČ¤¨¤ë°őşţĽŞĽ×ĽˇĽçĽó°ěÍ÷¤Ď°Ę˛ź¤ÎÄ̤ę¤Ç¤š:\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"ĽłĽŢĽóĽÉĽéĽ¤ĽóĄĘĽżĄźĽßĽĘĽëĽŚĽŁĽóĽÉĽŚĄË¤Ť¤éĽŐĽĄĽ¤Ľë¤ň°őşţ¤š¤ë¤Ë¤ĎĄ˘\n"
-"ĽłĽŢĽóĽÉĄÖ%s <file>Ą×¤ňťČ¤¤¤Ţ¤šĄŁ\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"¤ł¤Ś¤ˇ¤żĽłĽŢĽóĽÉ¤ĎĄ˘Âż¤Ż¤ÎĽ˘Ľ×ĽęĽąĄźĽˇĽçĽó¤Î°őşţĽŔĽ¤Ľ˘ĽíĽ°¤ÎĂć¤Î\n"
-"ĄÖ°őşţĽłĽŢĽóĽÉĄ×ĽŐĽŁĄźĽëĽÉ¤Ç¤âťČ¤¨¤Ţ¤š¤ŹĄ˘¤˝¤Îžěšç¤ĎĽŐĽĄĽ¤ĽëĚž¤ĎÍפę¤Ţ¤ť"
-"¤óĄŁ\n"
-"°őşţ¤š¤ëĽŐĽĄĽ¤Ľë¤ĎĽ˘Ľ×ĽęĽąĄźĽˇĽçĽó¤Ť¤é¤Ż¤ë¤Ť¤é¤Ç¤šĄŁ\n"
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"¤¤¤Ţ¤ÎĽ×ĽęĽóĽż¤ÇťČ¤¨¤ëĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň¸Ť¤ë¤Ë¤ĎĄ˘ĄÖĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň°őşţĄ×ĽÜĽż"
-"Ľó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"ĽłĽŢĽóĽÉĽéĽ¤ĽóĄĘĽżĄźĽßĽĘĽëĽŚĽŁĽóĽÉĽŚĄË¤Ť¤éĽŐĽĄĽ¤Ľë¤ň°őşţ¤š¤ë¤Ë¤ĎĄ˘\n"
-"ĽłĽŢĽóĽÉĄÖ%s <file>Ą×¤Ţ¤ż¤ĎĄÖ%s <file>Ą×¤ňťČ¤¤¤Ţ¤šĄŁ\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"¤Ţ¤żĽŞĽ×ĽˇĽçĽóŔßÄę¤ä°őşţĽ¸ĽçĽÖ¤Î˝čÍý¤Ë¤ĎĽ°ĽéĽŐĽŁĽĂĽŻ¤ÎĄÖxpdqĄ×¤âťČ¤¨¤Ţ¤šĄŁ\n"
-"ĽÇĽšĽŻĽČĽĂĽ×´Äś­¤Ź KDE ¤Ę¤éĄ˘ĄÖĽŃĽËĽĂĽŻĽÜĽżĽóĄ×¤Č¤¤¤ŚĽ˘Ľ¤ĽłĽó¤ŹĽÇĽšĽŻĽČĽĂĽ×"
-"¤Ë\n"
-"¤˘¤ë¤Ç¤ˇ¤ç¤ŚĄŁ¤ł¤ě¤ňĽŻĽęĽĂĽŻ¤š¤ë¤ČĄ˘°őşţĽ¸ĽçĽÖ¤ŹÁ´Éô¤š¤°¤Ëťß¤Ţ¤ę¤Ţ¤šĄŁ\n"
-"¤ł¤ě¤Ď¤ż¤Č¤¨¤ĐťćľÍ¤Ţ¤ę¤Î¤Č¤­¤ËĘŘÍř¤Ç¤šĄŁ\n"
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"ĄÖ%sĄ×¤ČĄÖ%sĄ×ĽłĽŢĽóĽÉ¤Ď¤Ţ¤żĄ˘°őşţĽ¸ĽçĽÖ¤´¤Č¤ËĽŞĽ×ĽˇĽçĽóŔßÄę¤ň\n"
-"ĘѤ¨¤ľ¤ť¤Ć¤Ż¤ě¤Ţ¤šĄŁĽłĽŢĽóĽÉĽéĽ¤Ľó¤Ë´őËž¤ÎŔßÄę¤ňÄɲ䚤ë¤Ŕ¤ą¤Ç¤šĄŁ\n"
-"¤ż¤Č¤¨¤ĐĄÖ%s <file>Ą×¤Č¤¤¤Śśńšç¤Ç¤šĄŁ\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "ĘĤ¸¤ë"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "°Ę˛ź¤Ç°őşţĂć/ĽšĽ­ĽăĽóĄ§ \"%s\""
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "°Ę˛ź¤ÎĽ×ĽęĽóĽż¤Ç°őşţĂ楧 \"%s\""
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Ľ×ĽęĽóĽżĽŞĽ×ĽˇĽçĽó°ěÍ÷"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"HP ÂżľĄÇ˝ĽÇĽĐĽ¤Ľš¤ňźŤĆ°ŔßÄꤡ¤ĆĄ˘ĽšĽ­ĽăĽĘ¤âťČ¤¨¤ë¤č¤Ś¤Ë¤ˇ¤Ţ¤ˇ¤żĄŁ¤ł¤ě¤ÇĽłĽŢĽó"
-"ĽÉĽéĽ¤Ľó¤Ť¤é\"scanimage\"¤ňĆţÎϤš¤ë¤Ť (ĘŁżô¤ÎĽšĽ­ĽăĽĘ¤Ź¤˘¤ëžěšç¤Ď\"scanimage "
-"-d hp:%s\" ¤ÇĽšĽ­ĽăĽĘ¤ňťŘÄę)Ą˘Ľ°ĽéĽŐĽŁĽĂĽŻĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Î\"xscanimage\" "
-"¤Ť \"xsane\"¤ňťČ¤Ă¤ĆĽšĽ­ĽăĽó¤Ź¤Ç¤­¤Ţ¤šĄŁGIMP¤ňťČ¤Ă¤Ć¤¤¤ë¤Ę¤éĄ˘\"ĽŐĽĄĽ¤Ľë\"/"
-"\"Ćɤߚţ¤ß\"ĽáĽËĽĺĄź¤ÇĹŹŔÚ¤ĘÉôĘŹ¤ňÁޤó¤Ç¤â˛ÄÇ˝¤Ç¤šĄŁžÜ¤ˇ¤Ż¤ĎĄ˘ĽłĽŢĽóĽÉĽéĽ¤Ľó"
-"¤Ç \"man scanimage\" ¤Č \"man sane-hp\" ¤ňť˛žČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"¤ł¤ÎĽÇĽĐĽ¤Ľš¤Ç¤Ď\"scannerdrake\" ¤ĎťČ¤ď¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤!"
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"HP ÂżľĄÇ˝ĽÇĽĐĽ¤Ľš¤ňźŤĆ°ŔßÄꤡ¤ĆĄ˘ĽšĽ­ĽăĽĘ¤âťČ¤¨¤ë¤č¤Ś¤Ë¤ˇ¤Ţ¤ˇ¤żĄŁ¤ł¤ě¤ÇĽłĽŢĽó"
-"ĽÉĽéĽ¤Ľó¤Ť¤é\"ptal-hp %s scan ...\"¤ÇĽšĽ­ĽăĽó¤Ź¤Ç¤­¤Ţ¤šĄŁĽ°ĽéĽŐĽŁĽĂĽŻĽ¤ĽóĽżĄź"
-"ĽŐĽ§ĄźĽš¤äGIMP¤Ť¤é¤ÎĽšĽ­ĽăĽó¤ĎĄ˘¤ł¤ÎĽÇĽĐĽ¤Ľš¤Ç¤Ď¤Ţ¤ŔĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ"
-"žÜ¤ˇ¤Ż¤Ď\"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" ¤ňť˛žČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁHP "
-"LaserJet 1100 ¤Ť 1200 ¤Îžěšç¤Ë¤ĎĄ˘ĽšĽ­ĽăĽĘĽŞĽ×ĽˇĽçĽó¤ŹĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤¤¤Ę¤¤"
-"¤ČĽŔĽá¤Ç¤šĄŁ\n"
-"\n"
-"¤ł¤ÎĽÇĽĐĽ¤Ľš¤Ç¤Ď\"scannerdrake\" ¤ĎťČ¤ď¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤!"
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Ľ×ĽęĽóĽż¤ÎžđĘó¤ňĆɤó¤Ç¤¤¤Ţ¤š..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Ľ×ĽęĽóĽż¤ÎŔßÄę¤ň°ÜĆ°"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"ĽšĽ×ĄźĽé %s ¤Ť¤é¤¤¤Ţ¤ÎĽšĽ×ĄźĽé %s ¤ŘĄ˘Ľ×ĽęĽóĽż¤ÎŔßÄę¤ňĽłĽÔĄź¤Ç¤­¤Ţ¤šĄŁŔßÄę"
-"ĽÇĄźĽż¤š¤Ů¤ĆĄĘĽ×ĽęĽóĽżĚžĄ˘ŔâĚŔĄ˘žě˝ęĄ˘ŔÜÂłźďÎॢĽÇĽŐĽŠĽëĽČ¤ÎĽŞĽ×ĽˇĽçĽóŔßÄęĄË"
-"¤Ď¤˝¤Á¤é¤Ëźč¤é¤ě¤Ţ¤š¤ŹĄ˘Ľ¸ĽçĽÖ¤Ď°ÜĆ°¤ˇ¤Ţ¤ť¤óĄŁ°Ę˛ź¤ÎÍýÍł¤ÇĄ˘°ÜĆ°¤Ç¤­¤Ę¤¤"
-"Ľ­ĽĺĄź¤â¤˘¤ę¤Ţ¤šĄ§\n"
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS ¤Ď Novell ĽľĄźĽĐ¤ÎĽ×ĽęĽóĽż¤äĄ˘źŤÍłˇÁź°¤ÎĽłĽŢĽóĽÉ¤ËĽÇĄźĽż¤ňÁ÷¤ëĽ×ĽęĽóĽż¤Ď"
-"ĽľĽÝĄźĽČ¤ˇ¤Ţ¤ť¤óĄŁ\n"
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ ¤ĎĽíĄźĽŤĽëĽ×ĽęĽóĽż¤ČĽęĽâĄźĽČ¤Î LPD Ľ×ĽęĽóĽżĄ˘Ľ˝ĽąĽĂĽČ/TCP Ľ×ĽęĽóĽż¤ˇ¤ŤĽľ"
-"ĽÝĄźĽČ¤ˇ¤Ţ¤ť¤óĄŁ\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD ¤Č LPRng ¤ĎIPP Ľ×ĽęĽóĽż¤ňĽľĽÝĄźĽČ¤ˇ¤Ţ¤ť¤óĄŁ\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"¤ľ¤é¤Ë¤ł¤ÎĽ×ĽíĽ°ĽéĽŕ¤ä\"foomatic-configure\" ¤Çşî¤Ă¤Ć¤¤¤Ę¤¤Ľ­ĽĺĄź¤Ď°ÜĆ°¤Ç¤­¤Ţ"
-"¤ť¤óĄŁ"
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"¤Ţ¤żĽáĄźĽŤĄźÄ󜥤ΠPPD ĽŐĽĄĽ¤Ľë¤äĽÍĽ¤ĽĆĽŁĽÖ¤Î CUPS ĽÉĽéĽ¤ĽĐ¤ÇŔßÄꤾ¤ě¤żĽ×ĽęĽó"
-"Ľż¤Ď°ÜĆ°¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"°ÜĆ°¤ˇ¤ż¤¤Ľ×ĽęĽóĽż¤ňÁޤó¤Ç \"T°ÜĆ°\"¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Ľ×ĽęĽóĽż¤ň°ÜĆ°¤ˇ¤Ę¤¤"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "°ÜĆ°"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"\"%s\" ¤Č¤¤¤ŚĽ×ĽęĽóĽż¤Ď¤š¤Ç¤Ë %s ¤Î˛ź¤Ë¸şß¤ˇ¤Ţ¤šĄŁ\n"
-"žĺ˝ń¤­¤š¤ë¤Ë¤Ď \"°ÜĆ°\" ¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"żˇ¤ˇ¤¤ĚžÁ°¤ňĽżĽ¤Ľ×¤š¤ë¤ŤĄ˘¤ł¤ÎĽ×ĽęĽóĽż¤ň¤Č¤Đ¤š¤ł¤Č¤â¤Ç¤­¤Ţ¤šĄŁ"
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Ľ×ĽęĽóĽżĚž¤ĎĄ˘Ę¸ťú¤Čżôťú¤ČĽ˘ĽóĽŔĄźĽšĽłĽ˘ (_)¤ˇ¤ŤťČ¤¨¤Ţ¤ť¤ó"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Ľ×ĽęĽóĽż \"%s\" ¤Ď¤š¤Ç¤Ë¸şß¤ˇ¤Ţ¤šĄŁ\n"
-"¤¤¤Ţ¤ÎŔßÄę¤ňžĺ˝ń¤­¤ˇ¤Ć¤ˇ¤Ţ¤¤¤Ţ¤š¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "żˇ¤ˇ¤¤Ľ×ĽęĽóĽż¤ÎĚžÁ°"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "%s °ÜĆ°ĂćĄÄĄÄ"
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Á°¤ÎĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż (\"%s\")¤ň°ÜĆ°¤ˇ¤Ţ¤ˇ¤żĄŁżˇ¤ˇ¤¤°őşţĽˇĽšĽĆĽŕ%s¤Ç¤â¤ł¤ě¤ň"
-"ĽÇĽŐĽŠĽëĽČ¤ÎĽ×ĽęĽóĽż¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Ľ×ĽęĽóĽżĽÇĄźĽżššżˇĂć..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽż¤ÎŔßÄę"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "ĽÍĽĂĽČĽďĄźĽŻľŻĆ°Ăć..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "şŁ¤š¤°ĽÍĽĂĽČĽďĄźĽŻŔßÄę¤ň¤š¤ë"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻľĄÇ˝¤ŹŔßÄꤾ¤ě¤Ć¤Ţ¤ť¤ó"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"ĽęĽâĄźĽČĽ×ĽęĽóĽż¤ÎŔßÄę¤ň¤ˇ¤Ţ¤šĄŁ¤ł¤ě¤ĎĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŻĽťĽš¤Î˛ÔĆŻ¤ŹÉŹżÜ¤Ç¤š"
-"¤ŹĄ˘¤˘¤Ę¤ż¤ÎĽÍĽĂĽČĽďĄźĽŻŔßÄę¤Ď¤š¤ó¤Ç¤¤¤Ţ¤ť¤óĄŁĽÍĽĂĽČĽďĄźĽŻŔßÄę¤Ę¤ˇ¤ÇżĘ¤ŕ¤ČĄ˘"
-"¤¤¤ŢŔßÄęĂć¤ÎĽ×ĽęĽóĽż¤ĎťČ¤¨¤Ţ¤ť¤óĄŁ¤ľ¤Ć¤É¤ŚżĘ¤á¤Ţ¤ˇ¤ç¤Ś¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ÎŔßÄę¤ň¤Č¤Đ¤ˇ¤ĆŔč¤ËżĘ¤ŕ"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-"Ľ¤ĽóĽšĽČĄźĽëĂć¤Ë¤ä¤Ă¤żĽÍĽĂĽČĽďĄźĽŻŔßÄꤏľŻĆ°¤Ç¤­¤Ţ¤ť¤óĄŁľŻĆ°ťţ¤ËĽÍĽĂĽČĽďĄźĽŻ"
-"¤ŹÍ­¸ú¤Ë¤Ę¤Ă¤Ć¤¤¤ë¤ŤÄ´¤Ů¤ĆĄ˘ÉŹÍפʤéMandrakeĽłĽóĽČĽíĄźĽëĽťĽóĽż¤ÎĄÖĽÍĽĂĽČĽďĄź"
-"ĽŻ&Ľ¤ĽóĽżĄźĽÍĽĂĽČ/ŔÜÂłĄ×¤ÎÉôĘŹ¤ÇŔßÄę¤ň¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤˝¤ě¤Ź˝ť¤ó¤Ç¤Ť¤éĄ˘Ćą"
-"¤¸¤ŻMandrakeĽłĽóĽČĽíĄźĽëĽťĽóĽż¤ÎĄÖĽĎĄźĽÉĽŚĽ§Ľ˘/Ľ×ĽęĽóĽżĄ×¤ÎÉôĘŹ¤ÇĽ×ĽęĽóĽż¤ÎŔß"
-"Äę¤ň¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"ĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŻĽťĽš¤ŹÍî¤Á¤Ć¤¤¤ĆĄ˘ľŻĆ°¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁĽĎĄźĽÉĽŚĽ§Ľ˘¤äŔßÄę¤ň"
-"ĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤˝¤ě¤Ť¤éĽęĽâĄźĽČĽ×ĽęĽóĽż¤ÎŔßÄę¤ň¤ä¤ę¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Ľ×ĽęĽóĽżĽˇĽšĽĆĽŕşĆľŻĆ°Ăć..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "šâ¤¤"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "żŔˇĐźÁ¤Ę¤Ű¤Éšâżĺ˝ŕ"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "°őşţĽˇĽšĽĆĽŕ¤ňĽťĽ­ĽĺĽęĽĆĽŁżĺ˝ŕ %s ¤ÇĽ¤ĽóĽšĽČĄźĽëĂć"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"¤ł¤ě¤Ť¤éĄ˘°őşţĽˇĽšĽĆĽŕ %s ¤ňĽťĽ­ĽĺĽęĽĆĽŁżĺ˝ŕ %s ¤ÎĽŢĽˇĽó¤ËĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ"
-"¤šĄŁ\n"
-"\n"
-"¤ł¤Î°őşţĽˇĽšĽĆĽŕ¤ĎĄ˘ĽÇĄźĽâĽóĄĘĽĐĽĂĽŻĽ°ĽéĽŚĽóĽÉ¤ÎĽ×ĽíĽťĽšĄË¤ňźÂšÔ¤ˇ¤Ţ¤šĄŁ¤ł¤ě"
-"¤Ď°őşţĽ¸ĽçĽÖ¤ňÂԤäƥ˘¤˝¤ě¤Ź¤­¤ż¤é˝čÍý¤ˇ¤Ţ¤šĄŁ¤ł¤ÎĽÇĄźĽâĽó¤ĎĽÍĽĂĽČĽďĄźĽŻˇĐÍł"
-"¤ÇĄ˘ĽęĽâĄźĽČĽŢĽˇĽó¤Ť¤é¤âĽ˘ĽŻĽťĽš¤Ç¤­¤ë¤Î¤ÇĄ˘šśˇâ¤ľ¤ě¤ë˛ÄÇ˝Ŕ­¤Ź¤˘¤ę¤Ţ¤šĄŁ¤Ç¤š"
-"¤Ť¤é¤ł¤ÎĽťĽ­ĽĺĽęĽĆĽŁżĺ˝ŕ¤Ç¤ĎĄ˘ĽÇĽŐĽŠĽëĽČ¤ÇľŻĆ°¤š¤ëĽÇĄźĽâĽó¤Ď¤´¤ŻžŻżô¤Ç¤šĄŁ\n"
-"\n"
-"¤ł¤ÎĽŢĽˇĽó¤Ç°őşţ¤ÎŔßÄę¤ňËÜĹö¤Ë¤ä¤Ă¤Ć¤¤¤¤¤Ç¤š¤ÍĄŠ"
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "ľŻĆ°ťţ¤Ë°őşţĽˇĽšĽĆĽŕ¤ňĽšĽżĄźĽČ"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"°őşţĽˇĽšĽĆĽŕ (%s) ¤ĎĄ˘ĽŢĽˇĽóľŻĆ°ťţ¤ËźŤĆ°ĽšĽżĄźĽČ¤ˇ¤Ţ¤ť¤óĄŁ\n"
-"\n"
-"ĽťĽ­ĽĺĽęĽĆĽŁżĺ˝ŕ¤ňžĺ¤˛¤ż¤ż¤á¤ËĄ˘źŤĆ°ĽšĽżĄźĽČ¤ŹĚľ¸ú¤Ë¤Ę¤Ă¤ż¤Î¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ"
-"°őşţĽˇĽšĽĆĽŕ¤ĎĄ˘šśˇâ¤ľ¤ě¤ë˛ÄÇ˝Ŕ­¤Ź¤˘¤ë¤Ť¤é¤Ç¤šĄŁ\n"
-"\n"
-"°őşţĽˇĽšĽĆĽŕ¤ÎźŤĆ°ĽšĽżĄźĽČ¤ň¤â¤Ś°ěĹŮÍ­¸ú¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Ľ¤ĽóĽšĽČĄźĽëşŃ¤ßĽ˝ĽŐĽČ¤ňĽÁĽ§ĽĂĽŻĂćĄÄĄÄ"
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "LPRng şď˝üĂćĄÄĄÄ"
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "LPD şď˝üĂćĄÄĄÄ"
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Ľ×ĽęĽóĽż¤ÎĽšĽ×ĄźĽé¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "¤É¤Î°őşţĽˇĽšĽĆĽŕĄĘĽšĽ×ĄźĽéĄË¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Ľ×ĽęĽóĽż \"%s\" ¤ÎŔßÄęĂć..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "Foomatic ¤ÎĽ¤ĽóĽšĽČĄźĽëĂć..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Ľ×ĽęĽóĽżĽŞĽ×ĽˇĽçĽó"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "PrinterDrake˝ŕČ÷Ăć..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-msgid "Configuring applications..."
-msgstr "Ľ˘Ľ×ĽęĽąĄźĽˇĽçĽó¤ÎŔßÄęĂć..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "°őşţ¤ÎŔßÄę¤ň¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "°őşţĽˇĽšĽĆĽŕ:"
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"°Ę˛ź¤ÎĽ×ĽęĽóĽż¤ŹŔßÄꤾ¤ě¤Ć¤¤¤Ţ¤šĄŁŔßÄę¤ňĘŃšš¤ˇ¤ż¤¤Ľ×ĽęĽóĽż¤ňĽŔĽÖĽëĽŻĽęĽĂĽŻ¤ˇ"
-"¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż¤Ë¤ˇ¤ż¤ęĄ˘¤˝¤ÎžđĘó¤ň¸Ť¤ż¤ęĄ˘ĽęĽâĄźĽČ¤ÎCUPS ĽľĄź"
-"ĽĐžĺ¤ÎĽ×ĽęĽóĽż¤ň Star Office/OpenOffice.org¤ÇťČ¤¨¤ë¤č¤Ś¤Ë¤š¤ëžěšç¤â¤˝¤Ś¤Ç¤šĄŁ"
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"°Ę˛ź¤ÎĽ×ĽęĽóĽż¤ŹŔßÄꤾ¤ě¤Ć¤¤¤Ţ¤šĄŁĘŃššĄ˘ĽÇĽŐĽŠĽëĽČ˛˝Ą˘žđĘó¤Îť˛žČ¤Ë¤ĎĄ˘\n"
-"¤˝¤ÎĽ×ĽęĽóĽż¤ňĽŔĽÖĽëĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "Ľ×ĽęĽóĽż°ěÍ÷ššżˇĄĘĽęĽâĄźĽČ CUPSĽ×ĽęĽóĽż¤ň¤š¤Ů¤ĆÉ˝ź¨)"
-
-#: ../../printerdrake.pm_.c:2464
-msgid "Change the printing system"
-msgstr "°őşţĽˇĽšĽĆĽŕ¤ňĘŃšš"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "ĽÎĄźĽŢĽëĽâĄźĽÉ"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Ę̤μ׼ęĽóĽż¤ňŔßÄꤡ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Ľ×ĽęĽóĽżŔßÄę¤ÎĘŃšš"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Ľ×ĽęĽóĽż %s\n"
-"¤ł¤ÎĽ×ĽęĽóĽż¤Î˛ż¤ňĘŃšš¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "¤ä¤ěĄŞ"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Ľ×ĽęĽóĽżŔÜÂł¤ÎźďÎŕ"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Ľ×ĽęĽóĽż¤ÎĚžÁ°Ą˘ŔâĚŔĄ˘žě˝ę"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Ľ×ĽęĽóĽż¤ÎĽáĄźĽŤĄźĄ˘ľĄźďĄ˘ĽÉĽéĽ¤ĽĐ"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Ľ×ĽęĽóĽż¤ÎĽáĄźĽŤĄźĄ˘ľĄźď"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "¤ł¤ÎĽ×ĽęĽóĽż¤ňĽÇĽŐĽŠĽëĽČ¤Ë¤š¤ë"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "¤ł¤ÎĽ×ĽęĽóĽż¤ň Star Office/OpenOffice.org ¤ËÄɲĂ"
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "¤ł¤ÎĽ×ĽęĽóĽż¤ň Star Office/OpenOffice.org ¤Ť¤éşď˝ü"
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "ĽĆĽšĽČĽÚĄźĽ¸°őşţ"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "¤ł¤ÎĽ×ĽęĽóĽż¤ÎťČ¤¤Ęý¤ňÄ´¤Ů¤ë"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Ľ×ĽęĽóĽżşď˝ü"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "¸Ĺ¤¤Ľ×ĽęĽóĽż \"%s\" ¤ňşď˝üĂć..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "ĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Ľ×ĽęĽóĽż %s ¤ŹĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż¤Ë¤Ę¤ę¤Ţ¤ˇ¤żĄŁ"
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Ľ×ĽęĽóĽż¤ň Star Office/OpenOffice.org ¤ËÄɲĂĂć"
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr "Ľ×ĽęĽóĽż %s ¤ň Star Office/OpenOffice.org ¤ËÄɲ䡤ޤˇ¤żĄŁ"
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr "Ľ×ĽęĽóĽż %s ¤ň Star Office/OpenOffice.org ¤ËÄɲäǤ­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ"
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Ľ×ĽęĽóĽż¤ň Star Office/OpenOffice.org ¤Ť¤éşď˝üĂć"
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr "Ľ×ĽęĽóĽż %s ¤ň Star Office/OpenOffice.org ¤Ť¤éşď˝ü¤ˇ¤Ţ¤ˇ¤żĄŁ"
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr "Ľ×ĽęĽóĽż %s ¤ň Star Office/OpenOffice.org ¤Ť¤éşď˝ü¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ"
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Ľ×ĽęĽóĽż %s ¤ňËÜĹö¤Ëşď˝ü¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Ľ×ĽęĽóĽż \"%s\" ¤ňşď˝üĂć..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Ľ×ĽíĽ­Ľˇ¤ÎŔßÄę"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Ľ×ĽíĽŻĽˇŔßÄęĽćĄźĽĆĽŁĽęĽĆĽŁ¤Ř¤¤¤é¤Ă¤ˇ¤ă¤¤¤Ţ¤ťĄÁĄŁ\n"
-"\n"
-"¤ł¤ł¤Ç¤Ď http ¤Č ftp ¤ÎĽ×ĽíĽŻĽˇ¤ňŔßÄꤡ¤Ţ¤šĄŁ\n"
-"ĽíĽ°Ľ¤Ľó¤äĽŃĽšĽďĄźĽÉ¤âĄ˘ÉŹÍפʤéŔßÄę¤Ç¤­¤Ţ¤šĄŁ\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"http Ľ×ĽíĽŻĽˇžđĘó¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
-"http proxy¤ňťČ¤ď¤Ę¤¤¤Ę¤éśőÍó¤Ë¤ˇ¤Ć¤Ş¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "ĽÝĄźĽČ"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "Url ¤Ď http://... ¤Ç¤Ď¤¸¤Ţ¤ę¤Ţ¤š"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "ĽÝĄźĽČČÖšć¤Ďżôťú¤Ç¤šĄŁ"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"ftp Ľ×ĽíĽŻĽˇžđĘó¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
-"ftp proxy¤ňťČ¤ď¤Ę¤¤¤Ę¤éśőÍó¤Ë¤ˇ¤Ć¤Ş¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Url ¤Ď ftp://... ¤Ç¤Ď¤¸¤Ţ¤ę¤Ţ¤š"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Ľ×ĽíĽŻĽˇ¤ÎĽíĽ°Ľ¤ĽóĚž¤ČĽŃĽšĽďĄźĽÉ¤Ź¤˘¤ě¤ĐĆţÎϤˇ¤Ţ¤šĄŁ\n"
-"ĽíĽ°Ľ¤Ľó/ĽŃĽšĽďĄźĽÉ¤Ź¤Ę¤ą¤ě¤ĐśőÍó¤Î¤Ţ¤Ţ¤Ç¤š"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "ĽíĽ°Ľ¤Ľó"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "ĽŃĽšĽďĄźĽÉ"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "ĽŃĽšĽďĄźĽÉ¤ň¤â¤Ś°ěĹŮĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "ĽŃĽšĽďĄźĽÉ¤Ź°ěĂפˇ¤Ţ¤ť¤óĄŁ¤â¤Ś°ěĹŮĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞ"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "ĽŐĽŠĄźĽŢĽĂĽČşŃ¤ß¤Î RAID md%d ¤Ë¤ĎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÄɲäǤ­¤Ţ¤ť¤ó"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "%s ĽŐĽĄĽ¤Ľë¤Ź˝ń¤­šţ¤á¤Ţ¤ť¤ó"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid ¤ËźşÇÔ"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid ¤ËźşÇÔ (raidtools ¤ŹĆţ¤Ă¤Ć¤Ę¤¤¤Î¤Ť¤â?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "RAID ĽěĽŮĽë %d ¤Î¤ż¤á¤Ë¤ĎĽŃĄźĽĆĽŁĽˇĽçĽó¤ŹÉÔ­¤Ç¤š\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "ALSA (ŔčżĘLinux ĽľĽŚĽóĽÉĽ˘ĄźĽ­ĽĆĽŻĽÁĽă) ĽľĽŚĽóĽÉĽˇĽšĽĆĽŕľŻĆ°"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron ¤ĎÄę´üĹŞ¤ĘĽłĽŢĽóĽÉĽšĽąĽ¸ĽĺĄźĽé¤Ç¤šĄŁ"
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd ¤ĎĽĐĽĂĽĆĽęĄź¤ÎžőÂÖ¤ňÄ´¤Ů¤Ć¤˝¤ě¤ňsyslogˇĐÍł¤Çľ­Ďż¤ˇ¤Ţ¤šĄŁ\n"
-"ĹĹĂÓ¤Ź¤Ę¤Ż¤Ę¤Ă¤ż¤Č¤­¤ËĽŢĽˇĽó¤ňĽˇĽăĽĂĽČĽŔĽŚĽó¤š¤ë¤Î¤Ë¤âťČ¤¨¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:18
-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 ""
-"atĽłĽŢĽóĽÉ¤ÇĽšĽąĽ¸ĽĺĄźĽë¤ľ¤ě¤żĽłĽŢĽóĽÉ¤ňĄ˘atźÂšÔťţ¤ËťŘÄꤡ¤żťţ´Ö¤Ë\n"
-"źÂšÔ¤ˇ¤ĆĄ˘ĘżśŃÉé˛Ů¤ŹÄ㤤¤Č¤­¤ËĽĐĽĂĽÁĽłĽŢĽóĽÉ¤ňźÂšÔ¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron¤ĎUNIXɸ˝ŕ¤ÎĽ×ĽíĽ°ĽéĽŕ¤ÇĄ˘ĽćĄźĽśťŘÄę¤ÎĽ×ĽíĽ°ĽéĽŕ¤ňÄę´üĹŞ¤Ë\n"
-"źÂšÔ¤ˇ¤Ţ¤šĄŁvixie cron¤Ďɸ˝ŕ¤ÎUNIX cron¤ËšâĹ٤ʼťĽ­ĽĺĽęĽĆĽŁ¤ä\n"
-"śŻÎϤĘŔßÄ꼪Ľ×ĽˇĽçĽó¤Ę¤É¤ÎľĄÇ˝¤ňÄɲ䡤Ƥ¤¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:23
-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¤Ę¤ÉĽĆĽ­ĽšĽČĽŮĄźĽš¤ÎLinuxĽ˝ĽŐĽČ¤ÇĽŢĽŚĽš¤Ź\n"
-"ťČ¤¨¤ë¤č¤Ś¤Ë¤ˇ¤Ţ¤šĄŁĽŢĽŚĽš¤Ë¤č¤ëĽłĽóĽ˝ĄźĽë¤Ç¤ÎĽŤĽĂĽČĄŚĽÚĄźĽšĽČ\n"
-"¤äĄ˘ĽÝĽĂĽ×Ľ˘ĽĂĽ×ĽáĽËĽĺĄź¤âťČ¤¨¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake ¤ĎĽĎĄźĽÉĽŚĽ§Ľ˘¤ňĂľ¤ˇ¤ĆĄ˘˛ÄÇ˝¤Ę¤éżˇ¤ˇ¤¤ĽĎĄźĽÉĽŚĽ§Ľ˘¤äĘŃšš¤ˇ¤ż\n"
-"ĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎŔßÄę¤ň¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr "Apache¤ĎWorld Wide WebĽľĄźĽĐ¤ÇĄ˘HTML ĽŐĽĄĽ¤Ľë¤äCGI¤Î¸řłŤ¤ËťČ¤¤¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Ľ¤ĽóĽżĄźĽÍĽĂĽČĄŚĽšĄźĽŃĄźĽľĄźĽĐĄŚĽÇĄźĽâĽó (ÄĚžÎinetd) ¤ĎĄ˘ÉŹÍפË\n"
-"ąţ¤¸¤Ć¤˝¤ÎžłĆźďĽ¤ĽóĽżĄźĽÍĽĂĽČĽľĄźĽÓĽš¤ňłŤťĎ¤ˇ¤Ţ¤šĄŁtelnetĄ˘ftpĄ˘\n"
-"rshĄ˘rlogin¤Ę¤É¤ÎĽľĄźĽÓĽšłŤťĎ¤ňĂ´Ĺö¤ˇ¤Ţ¤šĄŁinetd¤ňĚľ¸ú¤Ë¤š¤ë¤ČĄ˘\n"
-"¤ł¤Ś¤ˇ¤żłĆźďĽľĄźĽÓĽš¤š¤Ů¤Ć¤ŹĚľ¸ú¤Ë¤Ę¤ę¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"ĽÍĽĂĽČĽďĄźĽŻšśˇâ¤Ť¤éĽŢĽˇĽó¤ňźé¤ë¤ż¤á¤ÎĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽë¤ň\n"
-"ŔßÄꤚ¤ë¤Ë¤ĎĄ˘Linux ĽŤĄźĽÍĽë2.2 ¤ÎĽŃĽąĽĂĽČĽŐĽŁĽëĽż¤ňľŻĆ°¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"¤ł¤ÎĽŃĽĂĽąĄźĽ¸¤ĎĄ˘/etc/sysconfig/keyboard¤Ť¤éŔßÄꤡ¤żĽ­ĄźĽÜĄźĽÉĽŢĽĂĽ×¤ň\n"
-"ĽíĄźĽÉ¤ˇ¤Ţ¤šĄŁ¤ł¤ě¤ĎkbdconfigĽćĄźĽĆĽŁĽęĽĆĽŁ¤ňťČ¤Ă¤ĆŔßÄꤡ¤Ţ¤šĄŁÄĚžď¤Ď\n"
-"Í­¸ú¤Ë¤ˇ¤Ć¤Ş¤­¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"/usr/include/linux/{autoconf,version}.h ÍѤË\n"
-"/boot ¤ÎĽŤĄźĽÍĽëĽŘĽĂĽŔ¤ňşĆŔ¸ŔŽ¤ˇ¤Ţ¤š"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "ľŻĆ°ťţ¤ËĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎźŤĆ°¸Ą˝Đ¤ČŔßÄę¤ň¤š¤ëĄŁ"
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf ¤Ď¤Č¤­¤É¤­Ą˘ĽˇĽšĽĆĽŕŔßÄę°Ýťý¤Î¤ż¤á¤ËľŻĆ°ťţ¤Ë\n"
-"łĆźďşîśČ¤ň¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:43
-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¤ÎĆ°şî¤ËÉŹÍפǤšĄŁ´đËÜĹŞ¤Ë\n"
-"¤ĎĽ×ĽęĽóĽż¤Ë°őşţĽ¸ĽçĽÖ¤ňżś¤ęĘŹ¤ą¤ëĽľĄźĽĐ¤Ç¤šĄŁ"
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux ĽĐĄźĽÁĽăĽëĽľĄźĽĐ¤ĎĄ˘šâŔ­Ç˝¤Ç¤¤¤Ä¤Ç¤âťČ¤¨¤ëĽľĄźĽĐ¤Î\n"
-"š˝Ăۤ˝Ȥ¤¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) ¤ĎĄ˘IPĽ˘ĽÉĽěĽš¤ČĽŰĽšĽČĚž¤ňˇë¤Ó¤Ä¤ą¤ë¤ż¤á¤ÎĽÉĽáĽ¤ĽóĚžĽľĄźĽĐ"
-"ĄĘDomain Name Server, DNS) ¤Ç¤šĄŁ"
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"ĽÍĽĂĽČĽďĄźĽŻĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ (NFS), SMB (LanManager/Windows),\n"
-"NCP (NetWare) ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤ň¤š¤Ů¤ĆĽŢĽŚĽóĽČĄŚĽ˘ĽóĽŢĽŚĽóĽČ¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"ľŻĆ°ťţ¤ËÍ­¸ú¤Ë¤š¤ëŔßÄę¤ÎĽÍĽĂĽČĽďĄźĽŻĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤ň¤š¤Ů¤ĆĄ˘\n"
-"Í­¸úĄŚĚľ¸ú¤Ë¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:52
-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ĽÍĽĂĽČĽďĄźĽŻžĺ¤ÇĽŐĽĄĽ¤ĽëśŚÍ­¤ň¤š¤ë¤Î¤Ë¤č¤ŻťČ¤ŚĽ×ĽíĽČĽłĽë\n"
-"¤Ç¤šĄŁ¤ł¤ÎĽľĄźĽÓĽš¤Ď NFS ĽľĄźĽĐľĄÇ˝¤ňÄ󜥤ˇ¤Ţ¤šĄŁŔßÄę¤Ë¤Ď/etc/exports \n"
-"ĽŐĽĄĽ¤Ľë¤ňťČ¤¤¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:55
-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 ĽŐĽĄĽ¤ĽëĽíĽĂĽŻľĄÇ˝¤ňÄ󜥤ˇ¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr "ľŻĆ°ťţ¤ËĽłĽóĽ˝ĄźĽë¤Č XFree ¤ÇźŤĆ°ĹŞ¤Ë numlock ¤ňÍ­¸ú¤Ë¤š¤ëĄŁ"
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "OKI 4w ¸ß´š¤ÎwinĽ×ĽęĽóĽż¤ňĽľĽÝĄźĽČ"
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA ĽľĽÝĄźĽČ¤ĎĄ˘ĽéĽĂĽ×ĽČĽĂĽ×ĽłĽóĽÔĽĺĄźĽż¤ÇEthernet¤äĽâĽÇĽŕ\n"
-"¤Ę¤É¤ÎPCĽŤĄźĽÉ¤ňťČ¤¨¤ë¤č¤Ś¤Ë¤š¤ë¤ż¤á¤Î¤â¤Î¤Ç¤šĄŁŔßÄꤚ¤ë¤Ţ¤Ç\n"
-"¤ĎľŻĆ°¤ˇ¤Ę¤¤¤Î¤ÇĄ˘ÉŹÍפʤ¤ĽŢĽˇĽó¤ËĆţ¤ě¤Ć¤˘¤Ă¤Ć¤â°ÂÁ´¤Ç¤šĄŁ"
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"portmapper ¤Ď RPC ŔÜÂł¤ň´ÉÍý¤ˇ¤Ţ¤šĄŁ¤ł¤ě¤ĎNFS¤äNIS¤Ę¤É¤ÎĽ×ĽíĽČĽłĽë¤Ç\n"
-"ťČÍѤľ¤ě¤Ţ¤šĄŁRPCľĄš˝¤ňťČ¤ŚĽ×ĽíĽČĽłĽë¤ÎĽľĄźĽĐ¤Č¤Ę¤ëĽŢĽˇĽó¤Ç¤ĎĄ˘¤ł¤Î\n"
-"portmap ĽľĄźĽĐ¤ŹĆ°¤¤¤Ć¤¤¤ëÉŹÍפŹ¤˘¤ę¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix ¤ĎĽáĄźĽëĹžÁ÷Ľ¨ĄźĽ¸Ľ§ĽóĽČ¤Ç¤š (MTA) ¤Ç¤šĄŁ¤ł¤ě¤ĎĄ˘ĽŢĽˇĽó´Ö¤ÇĽáĄźĽë¤ň¤ä"
-"¤ę¤Č¤ę¤š¤ëĽ×ĽíĽ°ĽéĽŕ¤Ç¤šĄŁ"
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"ÍđżôČŻŔ¸¤ÎźÁ¤ňžĺ¤˛¤ë¤ż¤á¤ËĄ˘ĽˇĽšĽĆĽŕ¤ÎĽ¨ĽóĽČĽíĽÔĄźĽ×ĄźĽë¤ňĘݸĄŚ\n"
-"Éüłč¤ľ¤ť¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Oracle ¤Ę¤É¤ÎĽ˘Ľ×ĽęĽąĄźĽˇĽçĽó¤ÇťČ¤¨¤ë¤č¤Ś¤ËĄ˘ĽÖĽíĽĂĽŻĽÇĽĐĽ¤Ľš\n"
-"¤ż¤Č¤¨¤ĐĽĎĄźĽÉĽÉĽéĽ¤ĽÖĽŃĄźĽĆĽŁĽˇĽçĽóĄË¤ňŔ¸ĽÇĽĐĽ¤Ľš¤Ëłä¤ę¤Ä¤ą¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:71
-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 ĽÇĄźĽâĽó¤ĎĄ˘RIPĽ×ĽíĽČĽłĽë¤ňťČ¤Ă¤ĆIPĽĆĄźĽÖĽë¤ÎźŤĆ°ššżˇ¤ň\n"
-"˛ÄÇ˝¤Ë¤ˇ¤Ţ¤šĄŁRIP ¤ĎžŽľŹĚϼͼüȼ寧ĽŻ¤Ç¤ĎĘŘÍř¤Ç¤č¤ŻťČ¤ď¤ě¤Ţ¤š¤ŹĄ˘\n"
-"ĽÍĽĂĽČĽďĄźĽŻ¤ŹĘŁť¨¤Ë¤Ę¤Ă¤Ć¤Ż¤ë¤ČĄ˘¤ł¤ě¤Ç¤ĎÉÔ˝˝ĘŹ¤Ç¤šĄŁ"
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstatĽ×ĽíĽČĽłĽë¤ňťČ¤Ś¤ČĄ˘ĽÍĽĂĽČĽďĄźĽŻžĺ¤ÎĽćĄźĽś¤ŹĄ˘¤˝¤ÎĽÍĽĂĽČĽďĄźĽŻ\n"
-"¤ËŔÜÂł¤ˇ¤żĽŢĽˇĽó¤Î¤š¤Ů¤Ć¤Ë¤Ä¤¤¤ĆĄ˘Ŕ­Ç˝ťŘɸ¤ňĆŔ¤é¤ě¤ë¤č¤Ś¤Ë¤Ę¤ę¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"rusersĽ×ĽíĽČĽłĽë¤Ç¤ĎĄ˘ĽÍĽĂĽČĽďĄźĽŻžĺ¤ÎĽćĄźĽś¤ŹĄ˘ąţĹú¤š¤ë¤Ű¤Ť¤ÎĽŢĽˇĽó\n"
-"¤ËĽíĽ°Ľ¤Ľó¤ˇ¤Ć¤¤¤ëżÍ¤ż¤Á¤ň¸Ť¤ë¤ł¤Č¤Ź¤Ç¤­¤Ţ¤šĄŁ"
-
-#: ../../services.pm_.c:78
-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 ĽÇĄźĽâĽó¤ŹÁö¤Ă¤Ć¤¤¤ëĽŢĽˇĽó¤Ç¤ĎĄ˘¤˝¤ÎĽŢĽˇĽó¤ËĽíĽ°Ľ¤ĽóĂć¤Î\n"
-"ĽćĄźĽś°ěÍ÷¤ňrwhoĽ×ĽíĽČĽłĽëˇĐÍł¤Ç¸Ť¤é¤ě¤Ţ¤š (finger¤Ëť÷¤Ć¤¤¤Ţ¤š)ĄŁ"
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "ĽľĽŚĽóĽÉĽˇĽšĽĆĽŕ¤ňľŻĆ°"
-
-#: ../../services.pm_.c:81
-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 ¤ĎĄ˘łĆźď¤ÎĽÇĄźĽâĽó¤Ź¤¤¤í¤ó¤ĘĽíĽ°ĽŐĽĄĽ¤Ľë¤ËĽáĽĂĽťĄźĽ¸¤ňľ­Ďż\n"
-"¤š¤ë¤Č¤­¤ËťČ¤¤¤Ţ¤šĄŁ¤ş¤Ă¤ČľŻĆ°¤ˇ¤Ć¤Ş¤Ż¤Ű¤Ś¤Ź¤¤¤¤¤Ç¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "usb ĽÇĽĐĽ¤ĽšÍѤμɼ鼤ĽĐ¤ňĆɤߚţ¤ß¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "XĽŐĽŠĽóĽČĽľĄźĽĐ¤ňłŤťĎ¤ˇ¤Ţ¤šĄĘXFree ťČÍѤˤĎÉŹżÜĄËĄŁ"
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "ľŻĆ°ťţ¤ËźŤĆ°Ĺޤˤż¤Á¤˘¤˛¤ëĽľĄźĽÓĽš¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "°őşţ"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "ĽŐĽĄĽ¤ĽëśŚÍ­"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "ĽˇĽšĽĆĽŕ"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "ĽęĽâĄźĽČ´ÉÍý"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "ĽÇĄźĽżĽŮĄźĽšĽľĄźĽĐ"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "ĽľĄźĽÓĽš: %d ¤Ź %d ÍѤ˾ŻĆ°¤ˇ¤ż¤Î¤ňĹĐĎż"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "ĽľĄźĽÓĽš"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "źÂšÔĂć"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "ÄäťßĂć"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "ĽľĄźĽÓĽš¤ČĽÇĄźĽâĽó"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"¤ł¤ÎĽľĄźĽÓĽš¤Ë¤Ä¤¤¤Ć¤ĎĄ˘ÄɲäÎ\n"
-"žđĘó¤Ď¤˘¤ę¤Ţ¤ť¤óĄŁ¤´¤á¤ó¤Ę¤ľ¤¤ĄŁ"
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "ľŻĆ°ťţ¤ÎĆ°şî"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "łŤťĎ"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Ääťß"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Mandrake Linux 8.2¤ň¤ŞÁޤӤ¤¤ż¤Ŕ¤­¤Ţ¤ˇ¤Ć¤˘¤ę¤Ź¤Č¤Ś¤´¤ś¤¤¤Ţ¤š"
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr "ĽŞĄźĽ×ĽóĽ˝ĄźĽš¤ÎŔ¤łŚ¤Ř¤č¤Ś¤ł¤˝"
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-"MandrakeSoft ¤ÎŔŽ¸ů¤ĎĄ˘ĽŐĽęĄźĽ˝ĽŐĽČ¤Î¸śÍý¤ËşŹ¤ś¤ˇ¤ż¤â¤Î¤Ç¤šĄŁ"
-"¤˘¤Ę¤ż¤ÎżˇĽŞĽÚĽěĄźĽĆĽŁĽóĽ°ĽˇĽšĽĆĽŕ¤ĎĄ˘Á´Ŕ¤łŚ¤Î Linux ĽłĽßĽĺĽËĽĆĽŁ¤Ë"
-"¤č¤ëśŚĆąşîśČ¤ÎŔŽ˛Ě¤Ę¤Î¤Ç¤šĄŁ"
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "ĽŐĽęĄźĽ˝ĽŐĽČ¤ÎŔ¤łŚ¤Ëť˛˛Ă¤ˇ¤Ţ¤ˇ¤ç¤Ś"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-"ĽŞĄźĽ×ĽóĽ˝ĄźĽšĽłĽßĽĺĽËĽĆĽŁ¤Î¤ł¤Č¤ň¤â¤Ă¤ČĂΤäƥ˘¤˝¤Î°ě°÷¤Ë¤Ę¤ę¤Ţ¤ˇ¤ç¤ŚĄŁ"
-"ĄÖĽłĽßĽĺĽËĽĆĽŁĄ×ĽŚĽ§ĽÖĽÚĄźĽ¸¤Ë¤˘¤ëłĆźďĽŐĽŠĄźĽéĽŕ¤Ëť˛˛Ă¤ˇ¤ĆĄ˘łŘ¤ÓĄ˘śľ¤¨Ą˘"
-"¤Ű¤Ť¤ÎżÍĄš¤ň˝ő¤ą¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ČĽáĽĂĽťĄźĽ¸"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-"Mandrake Linux 8.2 ¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ÎÄ󜥤š¤ë¤â¤Î¤š¤Ů¤Ć¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤ë"
-"şÇšâ¤ÎĽ˝ĽŐĽČ¤ňźč¤ę¤˝¤í¤¨¤Ć¤¤¤Ţ¤šĄŁĽŚĽ§ĽÖ¤ňĽľĄźĽŐĽŁĽó¤ˇ¤ĆĄ˘Ć°˛č¤ň¸Ť¤ë¤Ę¤é"
-"Mozilla ¤Č Konqueror ¤Ź¤˘¤ë¤ˇĄ˘ĽáĄźĽë¤ÎÁ÷źőżŽ¤Č¸ÄżÍžđĘó´ÉÍý¤Ď"
-"Evolution ¤Č Kmail, ¤˝¤Îž¤Ę¤ó¤Ç¤â¤˘¤ę¤Ţ¤šĄŁ"
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "ĽŢĽëĽÁĽáĽÇĽŁĽ˘¤Č˛čÁü"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-"Mandrake Linux 8.2 ¤ĎĄ˘ĽŢĽëĽÁĽáĽÇĽŁĽ˘ľĄÇ˝¤ňśË¸Â¤Ţ¤ÇťČ¤¤Ĺݤˇ¤Ţ¤šĄŞ"
-"şÇżˇĽ˝ĽŐĽČ¤Ç˛ťłÚ¤ä˛ťŔźĽŐĽĄĽ¤Ľë¤ÎşĆŔ¸¤ň¤ˇ¤ż¤ęĄ˘˛čÁü¤äźĚżż¤ň´ÉÍý¤ˇ¤ż¤ęĄ˘"
-"ĽĆĽěĽÓ¤ň¸Ť¤ż¤ęĄ˘¤˝¤Îž¤Ę¤ó¤Ç¤â¤Ç¤­¤Ţ¤šĄŁ"
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "łŤČŻÍŃ"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-"Mandrake Linux 8.2 ¤ĎľćśË¤ÎłŤČŻĽ×ĽéĽĂĽČĽŰĄźĽŕ¤Ç¤šĄŁ"
-"GNU gcc ĽłĽóĽŃĽ¤Ľé¤ň¤Ď¤¸¤áĄ˘şÇšâ¤ÎĽŞĄźĽ×ĽóĽ˝ĄźĽš"
-"łŤČŻ´Äś­¤Î°ŇÎϤňČŻ¸Ť¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Mandrake ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-"Mandrake Linux 8.2 ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź¤ĎĄ˘Mandrake ĽˇĽšĽĆĽŕ¤Î"
-"ĽŤĽšĽżĽŢĽ¤Ľş¤ČŔßÄę¤Î¤ż¤á¤ÎĽďĽóĽšĽČĽĂĽ×ĽŃĽÍĽë˝¸¤Ç¤šĄŁ"
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "ĽćĄźĽśĽ¤ĽóĽżĄźĽŐĽ§Ľ¤Ľš"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-"Mandrake Linux 8.2 ¤Ë¤Ď11źďÎŕ¤ÎĽ°ĽéĽŐĽŁĽĂĽŻĽÇĽšĽŻĽČĽĂĽ×´Äś­¤Č"
-"ĽŚĽŁĽóĽÉĽŚĽŢĽÍĄźĽ¸Ľă¤ŹĆţ¤Ă¤Ć¤¤¤Ţ¤šĄŁGNOME 1.4, KDE 2.2.2,"
-" Window Maker 0.8 ¤Ę¤É¤Ç¤šĄŁ"
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "ĽľĄźĽĐĽ˝ĽŐĽČ"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-"ĽŢĽŚĽš¤ň¤Ű¤ó¤ÎżôĽŻĽęĽĂĽŻ¤š¤ë¤Ŕ¤ą¤ÇĄ˘¤˘¤Ę¤ż¤ÎĽŢĽˇĽó¤Ď"
-"śŻÎϤʼľĄźĽĐ¤ËÁáĘѤď¤ęĄŞĽŚĽ§ĽÖĽľĄźĽĐĄ˘ĽáĄźĽëĄ˘ĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽëĄ˘"
-"ĽëĄźĽżĄ˘ĽŐĽĄĽ¤ĽëĽľĄźĽĐ¤Ë°őşţĽľĄźĽĐ¤Ę¤É¤â¤í¤â¤í¤Ç¤šĄŁ"
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Ľ˛ĄźĽŕ"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-"Mandrake Linux 8.2 ¤Ë¤ĎĄ˘şÇšâ¤ÎĽŞĄźĽ×ĽóĽ˝ĄźĽšĽ˛ĄźĽŕ¤Ź¤Ä¤¤¤Ć¤­¤Ţ¤šĄŁ"
-"Ľ˘ĄźĽąĄźĽÉˇżĄ˘Ľ˘ĽŻĽˇĽçĽóˇżĄ˘ĽŤĄźĽÉĽ˛ĄźĽŕĄ˘ĽšĽÝĄźĽÄĄ˘ŔďÎŹĽ˛ĄźĽŕ..."
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-"Linux ¤ňźęˇÚ¤Ë¤š¤Đ¤ä¤ŻĄ˘ĚľÎÁ¤ÇĘŮśŻ¤ˇ¤ż¤¤¤Ç¤š¤ŤĄŠ MandrakeSoft ¤Ď"
-"ĚľÎÁ¤ÎLinux ĽČĽěĄźĽËĽóĽ°¤äĄ˘¤š¤š¤ßśńšç¤ňĽÁĽ§ĽĂĽŻ¤š¤ëĘýËĄ¤ňÄ󜥤ˇ¤Ć¤¤¤Ţ¤šĄŁ"
-"¤˝¤ě¤ŹMandrakeCampus -- ĘŔźŇ¤ÎĽŞĽóĽéĽ¤Ľó¸Ś˝¤ĽťĽóĽżĄź¤Ç¤šĄŁ"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeĽ¨Ľ­ĽšĽŃĄźĽČ"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-"Linux ĽłĽßĽĺĽËĽĆĽŁ¤Č MandrakeSoft ¤Ť¤é¤ÎšâźÁ¤ĘĽľĽÝĄźĽČ¤Ź¤š¤°¤ËĆŔ¤é¤ě¤Ţ¤šĄŁ"
-"¤˝¤ˇ¤Ć¤˘¤Ę¤ż¤ŹśÚśâĆţ¤ę¤Î Linux żÍ¤Ę¤éĄ˘ĄÖĽ¨Ľ­ĽšĽŃĄźĽČĄ×¤Ë¤Ę¤Ă¤ĆĽľĽÝĄźĽČÍŃ"
-"ĽŚĽ§ĽÖĽľĽ¤ĽČ¤ÇĂÎźą¤ňśŚÍ­¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "Mandrake ĽłĽóĽľĽëĽĆĽŁĽóĽ°"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-"¤˘¤é¤ć¤ë IT Ľ×ĽíĽ¸Ľ§ĽŻĽČ¤Ë¤Ä¤¤¤ĆĄ˘ĘŔźŇ¤ÎĽłĽóĽľĽëĽżĽóĽČ¤ż¤Á¤ŹÍסď¤ňĘŹŔϤˇĄ˘"
-"ĽŤĽšĽżĽŕ˛˝¤ˇ¤żĽ˝ĽęĽĺĄźĽˇĽçĽó¤ňÄó°Ć¤¤¤ż¤ˇ¤Ţ¤šĄŁLinux ĽŮĽóĽŔĄź¤Č¤ˇ¤Ć¤Î"
-" MandrakeSoft ¤ÎÇüÂç¤ĘˇĐ¸ł¤ňŔ¸¤Ť¤ˇ¤ĆĄ˘¤˘¤Ę¤ż¤ÎĽÓĽ¸ĽÍĽšÁČżĽ¸ţ¤ą¤Ë"
-"żż¤Î ITÂĺÂذƤňÄ󜥤¤¤ż¤ˇ¤Ţ¤šĄŁ"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-"ĽŐĽëĽěĽóĽ¸¤ÎLinux Ľ˝ĽęĽĺĄźĽˇĽçĽó¤äĄ˘Ŕ˝ÉʤäłĆźďĽ˘Ľ¤ĽĆĽŕ¤ÎĆòÁČÎÇ䤏Ą˘"
-"ĘŔźŇ¤ÎĽŞĽóĽéĽ¤ĽóžŚĹš¤Çźę¤ËĆţ¤ę¤Ţ¤šĄŁ"
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-"MandrakeSoft ¤ÎŔěĚ缾ĄźĽÓĽš¤äČÎÇ䞌ÉʤˤĤ¤¤ĆžÜ¤ˇ¤Ż¤Ď°Ę˛ź¤Î"
-"ĽŚĽ§ĽÖĽÚĄźĽ¸¤ňť˛žČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤:"
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "ĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĂć..."
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ŹĆɤá¤Ţ¤ť¤óĄ¤˛ő¤ě¤Ć¤¤¤ë¤č¤Ś¤Ç¤š:(\n"
-"ÉÔŔľ¤ĘĽŃĄźĽĆĽŁĽˇĽçĽó¤ňśőÇň¤ÇËä¤á¤č¤Ś¤Č¤ˇ¤Ţ¤š"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Ľ¨ĽéĄźĄŞ"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "ÉŹÍפʲčÁüĽŐĽĄĽ¤Ľë %s ¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄŁ"
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "źŤĆ°Ľ¤ĽóĽšĽČĄźĽëŔßÄę"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"¤ł¤ě¤Ť¤éźŤĆ°Ľ¤ĽóĽšĽČĄźĽëĽŐĽíĽĂĽÔĄź¤ňŔßÄꤡ¤Ţ¤šĄŁ¤ł¤ÎľĄÇ˝¤Ď¤¤¤ľ¤ľ¤Ť´í¸ą¤Ę¤Î¤Ç"
-"żľ˝Ĺ¤ËťČ¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"¤ł¤ÎľĄÇ˝¤Ç¤ĎĄ˘¤ł¤ÎĽłĽóĽÔĽĺĄźĽż¤Ç¤ä¤Ă¤żĽ¤ĽóĽšĽČĄźĽë¤ňĘ̤μ޼ˇĽó¤ÇşĆ¸˝¤Ç¤­¤Ţ"
-"¤šĄŁ¤ż¤Ŕ¤ˇ¤Č¤­¤É¤­Ľ×ĽíĽóĽ×ĽČ¤Ź˝Đ¤ĆĄ˘ĂͤŹĘŃšš¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-"¤¤¤Á¤Đ¤ó°ÂÁ´¤Ë¤ä¤ë¤Ë¤ĎĄ˘ĽŃĄźĽĆĽŁĽˇĽçĽóŔÚ¤ę¤ČĽŐĽŠĄźĽŢĽĂĽČ¤ĎźŤĆ°˛˝¤ˇ¤Ć¤Ď¤¤¤ą¤Ţ"
-"¤ť¤óĄŁ¤É¤ó¤ĘĽŃĄźĽĆĽŁĽˇĽçĽóĘýź°¤Ë¤ˇ¤żžěšç¤Ç¤â¤˝¤Ś¤Ç¤šĄŁ\n"
-"\n"
-"Âł¤ą¤Ţ¤š¤ŤĄŠ"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "ľŻĆ°ĽšĽĆĽĂĽ×ŔßÄę"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"łĆĽšĽĆĽĂĽ×¤ÇĄ˘¤˘¤Ę¤ż¤ÎĽ¤ĽóĽšĽČĄźĽë¤ČĆą¤¸¤Ë¤š¤ë¤ŤĄ˘źęĆ°ŔßÄꤚ¤ë¤Ť¤ňÁŞ¤Ó¤Ţ¤šĄŁ"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"¤¤¤é¤Ă¤ˇ¤ă¤¤¤Ţ¤ťĄÁ\n"
-"\n"
-"źŤĆ°Ľ¤ĽóĽšĽČĄźĽë¤ÎĽŃĽéĽáĄźĽż¤Źş¸¤ËÉ˝ź¨¤ľ¤ě¤Ć¤¤¤Ţ¤š"
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "¤Ş¤á¤Ç¤Č¤Ś¤´¤ś¤¤¤Ţ¤šĄŞ"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"ĽŐĽíĽĂĽÔĄź¤ŹŔľ¤ˇ¤Żşî¤é¤ě¤Ţ¤ˇ¤żĄŁ\n"
-"¤ł¤ě¤ÇĽ¤ĽóĽšĽČĄźĽë¤ŹşĆ¸˝¤Ç¤­¤Ţ¤šĄŁ"
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "źŤĆ°Ľ¤ĽóĽšĽČĄźĽë"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Ľ˘Ľ¤ĽĆĽŕÄɲĂ"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "şÇ¸ĺ¤ÎĽ˘Ľ¤ĽĆĽŕ¤ňşď˝ü"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Ęóšđ \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup ĽÇĄźĽâĽóĘóšđ\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup žÜşŮĘóšđ\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "żĘšÔžőśˇ"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×..."
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë..."
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "ĽćĄźĽśĽŐĽĄĽ¤Ľë¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×..."
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "ĽĎĄźĽÉĽÇĽŁĽšĽŻĽĐĽĂĽŻĽ˘ĽĂĽ×¤ÎżĘšÔ..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "ž¤ÎĽŐĽĄĽ¤Ľë¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×..."
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"FTP ¤ÇÁ÷¤ëĽŐĽĄĽ¤Ľë¤ÎĽęĽšĽČ: %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) FTP ŔÜÂł¤ÎĽČĽéĽÖĽë: FTP¤ÇĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤ňÁ÷¤ě¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) ĽáĄźĽëÁ÷żŽĂć¤ËĽ¨ĽéĄźĄŁ\n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "ĽŐĽĄĽ¤Ľë¤ňÁŞÂň"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr "ĽŐĽĄĽ¤Ľë¤äĽÇĽŁĽěĽŻĽČĽę¤ňÁޤó¤ÇĄÖÄɲåפňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤š"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"ÉŹÍ×¤ĘĽŞĽ×ĽˇĽçĽó¤ËĽÁĽ§ĽĂĽŻ¤ň¤Ä¤ą¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤Ď /etc ĽÇĽŁĽěĽŻĽČĽę¤ÎĽŐĽĄĽ¤Ľë¤ň¤š¤Ů¤ĆĽĐĽĂĽŻĽ˘ĽĂĽ×ĄŚÉü¸ľ¤Ç¤­¤Ţ"
-"¤šĄŁ\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×ĄĘ/etcĽÇĽŁĽěĽŻĽČĽę)"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Ľ¤ĽóĽŻĽęĽáĽóĽżĽëĽĐĽĂĽŻĽ˘ĽĂĽ×ĄĘ¸Ĺ¤¤ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ĎťÄ¤š)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "˝ĹÍ׼ռĄĽ¤Ľë (passwd, group, fstab) ¤Ď´Ţ¤á¤Ę¤¤"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤Ç¤ĎĄ˘šĽ¤­¤ĘĽĐĄźĽ¸ĽçĽó¤Î /etc ĽÇĽŁĽěĽŻĽČĽę¤ň\n"
-"Éü¸ľ¤Ç¤­¤Ţ¤šĄŁ"
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ë´Ţ¤á¤ż¤¤ĽćĄźĽś¤ňÁ´°÷Áޤó¤Ç˛ź¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "ĽÖĽéĽŚĽś¤ÎĽ­ĽăĽĂĽˇĽĺ¤Ď´Ţ¤á¤Ę¤¤"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Ľ¤ĽóĽŻĽęĽáĽóĽżĽëĽĐĽĂĽŻĽ˘ĽĂĽ×ĄĘ¸Ĺ¤¤ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ĎťÄ¤š)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Áޤó¤Ŕ¤â¤Î¤ňşď˝ü"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "ĽćĄźĽśĚž"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ë FTP ŔÜÂł¤ňťČÍŃ"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "ĽŰĽšĽČĚž¤Ť IP ¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-"¤ł¤ÎĽŰĽšĽČžĺ¤Ç¤˝¤ÎĽÇĽŁĽěĽŻĽČĽę¤Ë\n"
-"ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ňĘݸ¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "ĽíĽ°Ľ¤ĽóĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "ĽŃĽšĽďĄźĽÉ¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "¤ł¤ÎĽŃĽšĽďĄźĽÉ¤ňľ­˛ą¤š¤ë"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP ŔÜÂł"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "ĽťĽ­ĽĺĽ˘ŔÜÂł"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "CD/DVDROM ¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "CD ĽšĽÚĄźĽš¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "CDRW¤ňťČ¤Ă¤Ć¤¤¤ëžěšç¤ĎĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "¤Ţ¤ş CDRW ¤ňžĂľî¤š¤ëžěšç¤Ë¤Ď¤ł¤ł¤ňĽŻĽęĽĂĽŻ"
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"CD ¤ËľŻĆ°ÍѤÎboot¤ň´Ţ¤á¤ë¤Ę¤é\n"
-"ĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"CD ĽéĽ¤ĽżĄź¤ÎĽÇĽĐĽ¤ĽšĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
-"Îă: 0,1,0"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "ĽĆĄźĽ×¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ÍŃĽÇĽĐĽ¤ĽšĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Drakbackup¤Ëľö¤ľ¤ě¤ëşÇÂ缾Ľ¤Ľş¤ň\n"
-"ĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Ęݸ¤š¤ëĽÇĽŁĽěĽŻĽČĽę¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤ÎĽŻĽŠĄźĽż¤ňťČ¤Ś"
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻ"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "Ëčťţ´Ö"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "ËčĆü"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "Ë轾"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "Ëčˇî"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "ĽÇĄźĽâĽó¤ňťČ¤Ś"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤Î´ÖłÖ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ÎĽáĽÇĽŁĽ˘¤ň\n"
-"Áޤó¤Ç¤Ż¤Ŕ¤ľ¤¤¤ÍĄŁ"
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "ĽÇĄźĽâĽó¤ÇĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤ňťČ¤Ś"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "ĽÇĄźĽâĽó¤Ç FTP ¤ňťČ¤Ś"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "ĽľĄźĽÓĽš¤Ë cron ĽÇĄźĽâĽó¤Ź´Ţ¤Ţ¤ě¤Ć¤¤¤ë¤ł¤Č¤ňłÎǧ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×Ëč¤ÎĘóšđĽáĄźĽëÁ÷¤ęŔč: "
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "˛ż¤ň"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "¤˝¤ł¤Ë"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "¤¤¤Ä"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "¤˝¤ÎžĽŞĽ×ĽˇĽçĽó"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup ŔßÄę"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×Ŕč¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤Ř"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻˇĐÍł¤Ç"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ˇ¤ż¤¤¤â¤Î¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "ĽˇĽšĽĆĽŕ¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "ĽćĄźĽś¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "ĽćĄźĽś¤ňźęĆ°¤ÇÁޤÖ"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"ĽĐĽĂĽŻĽ˘ĽĂĽ×¸ľ: \n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- ĽćĄźĽśĽŐĽĄĽ¤Ľë:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- ¤˝¤ÎžĽŐĽĄĽ¤Ľë:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- ĽĎĄźĽÉĽÉĽéĽ¤ĽÖžĺ¤ÎĘݸĽŃĽš : %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- FTP ¤Ç¤ÎĘݸŔčĽŰĽšĽČ : %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t ĽćĄźĽśĚž: %s\n"
-"\t\t ĽŃĽš: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- ĽŞĽ×ĽˇĽçĽó:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤Ď´Ţ¤á¤Ę¤¤\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ç tar ¤Č bzip2¤ňťČÍŃ\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ç tar ¤Č gzip¤ňťČÍŃ\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- ĽÇĄźĽâĽó (%s) ¤Ź´Ţ¤ŕ¤â¤Î :\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t-ĽĎĄźĽÉĽÉĽéĽ¤ĽÖĄŁ\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-CDROM.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-ĽÍĽĂĽČĽďĄźĽŻ¤Ç FTP.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-ĽÍĽĂĽČĽďĄźĽŻ¤Ç SSH.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "ŔßÄꤏ¤˘¤ę¤Ţ¤ť¤óĄŁĽŚĽŁĽśĄźĽÉ¤Ťžĺľé¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Éü¸ľ¤š¤ëĽÇĄźĽż¤Î°ěÍ÷:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"˛ő¤ě¤Ć¤¤¤ëĽÇĄźĽż°ěÍ÷:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "źĄ˛ó¤ËĽÁĽ§ĽĂĽŻ¤ň¤Ď¤ş¤š¤Ťşď˝ü¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤Ź˛ő¤ě¤Ć¤¤¤Ţ¤š"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " ÁŞÂň¤ˇ¤żĽÇĄźĽż¤Ď¤š¤Ů¤Ć "
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " %s žĺ¤ËÉü¸ľ¤ľ¤ě¤Ţ¤ˇ¤ż "
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " ŔßÄęÉü¸ľ "
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "ž¤ÎĽŐĽĄĽ¤ĽëÉü¸ľ¤Ë¤ĎOK¤ň"
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "Éü¸ľ¤š¤ëĽćĄźĽś¤Î°ěÍ÷ĄĘłĆĽćĄźĽś¤ÎşÇżˇ¤ÎĆüÉŐ¤Ŕ¤ą¤Ź˝ĹÍפǤšĄË"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×´ü¸Â:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "Éü¸ľ¤š¤ëĆüÉŐ¤ňÁŞÂň¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ËĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ňťČÍŃ"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤Ť¤éÉü¸ľ¤š¤ë"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ÎĘݸĽÇĽŁĽěĽŻĽČĽę¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Éü¸ľ¸ľ¤ÎĽáĽÇĽŁĽ˘¤ňÁŞ¤Ó¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "¤˝¤ÎžĽáĽÇĽŁĽ˘"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "ĽˇĽšĽĆĽŕÉü¸ľ"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "ĽćĄźĽśÉü¸ľ"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "¤˝¤ÎžĽŐĽĄĽ¤Ľë¤ňÉü¸ľ"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "Éü¸ľĽŃĽš¤ňÁŞ¤ÖĄĘ/°Ęł°)"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Éü¸ľÁ°¤ËżˇľŹĽĐĽĂĽŻĽ˘ĽĂĽ×ĄĘĽ¤ĽóĽŻĽęĽáĽóĽżĽëĽĐĽĂĽŻĽ˘ĽĂĽ×¤Î¤ßĄË"
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Éü¸ľÁ°¤ËĽćĄźĽśĽÇĽŁĽěĽŻĽČĽę¤ňşď˝ü"
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Á´ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ÎÉü¸ľ"
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "ĽŤĽšĽżĽŕÉü¸ľ"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "ĽŘĽëĽ×"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "¤â¤É¤ë"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Ęݸ"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×š˝ĂŰ"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Éü¸ľ"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "źĄ"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Éü¸ľ¤š¤ë¤Ë¤ĎĽĐĽĂĽŻĽ˘ĽĂĽ×¤ň¤Ţ¤şš˝Ăۤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤...\n"
-"¤˘¤ë¤¤¤ĎĘݸŔčĽŃĽš¤ĎŔľ¤ˇ¤¤¤Ç¤š¤ŤĄŠ"
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"ĽáĄźĽëÁ÷żŽĽ¨ĽéĄź\n"
-" ĘóšđĽáĄźĽë¤ĎÁ÷żŽ¤Ç¤­¤Ţ¤ť¤ó\n"
-" sendmail¤ňŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Ľ¤ĽóĽšĽČĄźĽë¤š¤ëĽŃĽĂĽąĄźĽ¸°ěÍ÷"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"FTP¤Ç¤ÎĽŐĽĄĽ¤ĽëĹžÁ÷Ăć¤ËĽ¨ĽéĄź.\n"
-"FTP ŔßÄę¤ň¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Éü¸ľĽÇĄźĽż¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤¤ÍĄŁ"
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ÍŃĽáĽÇĽŁĽ˘¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤¤ÍĄŁ"
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤š¤ëĽÇĄźĽż¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"ŔßÄęĽŐĽĄĽ¤Ľë¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó\n"
-"ĽŚĽŁĽśĄźĽÉ¤Ťžĺľé¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "¤Ţ¤ŔłŤČŻĂć...ÂԤäƤƤŻ¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "ĽćĄźĽśĽŐĽĄĽ¤Ľë¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "¤˝¤ÎžĽŐĽĄĽ¤Ľë¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Á´ÂΤοʚԞőśˇ"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "FTP¤ÇĽŐĽĄĽ¤ĽëÁ÷żŽĂć"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "ĽŐĽĄĽ¤ĽëÁ÷żŽĂć..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "CDROM¤Ë´Ţ¤á¤ëĽÇĄźĽż°ěÍ÷"
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "CDĽéĽ¤ĽżĄź¤ÎÂŽĹ٤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "CDĽéĽ¤Ľż¤ÎĽÇĽĐĽ¤ĽšĚž¤ňĆţÎĎĄĘÎă: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Ľ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤¤ĽŃĽĂĽąĄźĽ¸¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "ŔßÄęĽŐĽĄĽ¤Ľë¤Ť¤éşŁ¤š¤°ĽĐĽĂĽŻĽ˘ĽĂĽ×"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ŔßÄę¤ň¸Ť¤ë"
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "ĽŚĽŁĽśĄźĽÉŔßÄę"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "žĺľéŔßÄę"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "şŁ¤š¤°ĽŃĽĂĽŻĽ˘ĽĂĽ×"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-"ĽŞĽ×ĽˇĽçĽó¤ÎŔâĚŔ:\n"
-"\n"
-" ¤ł¤ÎĽšĽĆĽĂĽ×¤Ç¤ĎĄ˘Drakbackup ¤Ç°Ę˛ź¤ŹĘŃšš¤Ç¤­¤Ţ¤š:\n"
-"\n"
-" - °ľ˝ĚĽâĄźĽÉ:\n"
-" \n"
-" bzip2 °ľ˝Ě¤ňÁŞ¤Ů¤ĐĄ˘°ľ˝ĚΨ¤Ď gzip ¤č¤ęšâ¤Ż\n"
-" ¤Ę¤ę¤Ţ¤š ( 2-10 %¤Ű¤É˛ţÁą).\n"
-" ĽÇĽŐĽŠĽëĽČ¤Ç¤ĎĚľ¸ú¤Ë¤ˇ¤Ć¤˘¤ę¤Ţ¤šĄŁ°ľ˝Ě¤Ë¤Ť¤Ť¤ë\n"
-" ťţ´Ö¤ŹÁý¤¨¤ë¤Ť¤é¤Ç¤š ( 10ÇÜÄřĹŮ).\n"
-" \n"
-" - ššżˇĽâĄźĽÉ:\n"
-"\n"
-" ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ĎĽĐĽĂĽŻĽ˘ĽĂĽ×¤ňššżˇ¤ˇ¤Ć¤Ż¤ě¤Ţ¤š¤ŹĄ˘\n"
-" źÂ¤Ď¤˘¤Ţ¤ęĚň¤Ë¤ż¤Á¤Ţ¤ť¤óĄŁššżˇ¤š¤ë¤Č¤­ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ň\n"
-" ¤ď¤ś¤ď¤śĹ¸łŤ¤ˇ¤Ę¤¤¤ČĽŔĽá¤Ŕ¤Ť¤é¤Ç¤šĄŁ\n"
-" \n"
-" - .backupignore ĄĘĽĐĽĂĽŻĽ˘ĽĂĽ×ĚľťëĄËĽâĄźĽÉ:\n"
-"\n"
-" cvs ¤ČĆą¤¸¤č¤Ś¤ËĄ˘Drakbackup ¤Ď łĆĽÇĽŁĽěĽŻĽČĽę¤Î\n"
-" .backupignore ĽŐĽĄĽ¤Ľë¤Ëľ­˝Ň¤ľ¤ě¤ż¤â¤Î¤ňĚľťë¤ˇ¤Ţ¤šĄŁ\n"
-" Îă: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-"\n"
-" ĽáĄźĽëÁ÷żŽĂć¤Î°ěÉô¤ÎĽ¨ĽéĄź¤ĎĄ˘postfix¤ÎŔßÄꤏ\n"
-" ¤Ţ¤Á¤Ź¤Ă¤Ć¤¤¤ë¤ť¤¤¤Ç¤šĄŁ¤ł¤ě¤ňÄž¤š¤Ë¤ĎĄ˘\n"
-" /etc/postfix/main.cf¤Î myhostname ¤Ť mydomain ¤ňŔßÄꤡ¤Ţ¤šĄŁ\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-"ĽŞĽ×ĽˇĽçĽó¤ÎŔâĚŔ:\n"
-"\n"
-" - ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×:\n"
-" \n"
-"\t¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ĎĄ˘ŔßÄęĽŐĽĄĽ¤Ľë¤ŹĘݸ¤ľ¤ě¤Ć¤¤¤ë\n"
-"\t /etc ĽÇĽŁĽěĽŻĽČĽę¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×¤ˇ¤Ţ¤šĄŁÉü¸ľťţ¤Ë¤Ď\n"
-"\t°Ę˛ź¤ÎĽŐĽĄĽ¤Ľë¤ňžĺ˝ń¤­¤ˇ¤Ę¤¤¤č¤Ś¤ËĂí°Ő¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - ĽćĄźĽśĽŐĽĄĽ¤Ľë¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×: \n"
-"\n"
-"\t¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ĎĄ˘ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ˇ¤ż¤¤ĽćĄźĽś¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-"\tĽÇĽŁĽšĽŻŔáĚó¤Î¤ż¤áĄ˘ĽŚĽ§ĽÖĽÖĽéĽŚĽś¤ÎĽ­ĽăĽĂĽˇĽĺ¤Ď´Ţ¤á¤Ę¤¤\n"
-"\t¤č¤Ś¤Ë¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-" - ¤˝¤ÎžĽŐĽĄĽ¤Ľë¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×: \n"
-"\n"
-"\tĘݸ¤ˇ¤ż¤¤ĽÇĄźĽż¤ň¤ľ¤é¤ËÄɲ䚤뼪Ľ×ĽˇĽçĽó¤Ç¤šĄŁ\n"
-"\t¤ł¤ě¤ňÁŞ¤Ö¤ČĄ˘Ľ¤ĽóĽŻĽęĽáĽóĽżĽëĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ď\n"
-"\tÁŞ¤Ů¤Ţ¤ť¤óĄŁ\t\t\n"
-" \n"
-" - Ľ¤ĽóĽŻĽęĽáĽóĽżĽëĽĐĽĂĽŻĽ˘ĽĂĽ×:\n"
-"\n"
-"\t¤ł¤ě¤ĎĽĐĽĂĽŻĽ˘ĽĂĽ×şÇśŻ¤ÎĽŞĽ×ĽˇĽçĽó¤Ç¤šĄŁ\n"
-"\tşÇ˝é¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ç¤ĎÁ´ĽÇĄźĽż¤ŹĽĐĽĂĽŻĽ˘ĽĂĽ×¤ľ¤ěĄ˘\n"
-"\t¤˝¤Î¸ĺ¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ç¤ĎĘŃšš¤ľ¤ě¤ż¤â¤Î¤Ŕ¤ą¤Ź\n"
-"\tĘݸ¤ľ¤ě¤Ţ¤šĄŁ\n"
-"\t¤˝¤ˇ¤ĆÉü¸ľ¤š¤ë¤Č¤­¤Ë¤ĎĄ˘ťŘÄęĆüťţ¤ÎĽÇĄźĽż¤ŹÉü¸ľ\n"
-"\t¤Ç¤­¤Ţ¤šĄŁ\n"
-"\t¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Đ¤Ę¤¤¤ČĄ˘¸Ĺ¤¤ĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ď\n"
-"\tËč˛óşď˝ü¤ľ¤ě¤Ţ¤šĄŁ \n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Éü¸ľ¤ÎŔâĚŔ:\n"
-" \n"
-"ťČ¤ď¤ě¤ë¤Î¤ĎşÇżˇĽÇĄźĽż¤Ŕ¤ą¤Ç¤šĄŁĽ¤ĽóĽŻĽęĽáĽóĽżĽëĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ç¤Ď\n"
-"żˇ¤ˇ¤¤¤â¤Î¤Ť¤é˝ç¤Ë°ě¤Ä¤Ĺ¤ÄÉü¸ľ¤ˇ¤Ę¤ą¤ě¤Đ¤Ę¤é¤Ę¤¤¤Ť¤é¤Ç¤šĄŁ\n"
-"\n"
-"¤ˇ¤ż¤Ź¤Ă¤ĆĄ˘ĆĂÄęĽćĄźĽś¤ňÉü¸ľ¤ˇ¤ż¤Ż¤Ę¤ą¤ě¤ĐĄ˘¤˝¤ÎżÍ¤ÎĽÁĽ§ĽĂĽŻ\n"
-"ĽÜĽĂĽŻĽš¤ň¤š¤Ů¤Ć¤Ď¤ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"¤ľ¤â¤Ę¤¤¤Č¤ł¤ÎĂć¤Î°ě¤Ä¤ˇ¤Ť¤¨¤é¤Ů¤Ţ¤ť¤ó\n"
-"\n"
-" - Ľ¤ĽóĽŻĽęĽáĽóĽżĽëĽĐĽĂĽŻĽ˘ĽĂĽ×:\n"
-"\n"
-"\t¤ł¤ě¤ĎĽĐĽĂĽŻĽ˘ĽĂĽ×şÇśŻ¤ÎĽŞĽ×ĽˇĽçĽó¤Ç¤šĄŁ\n"
-"\tşÇ˝é¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ç¤ĎÁ´ĽÇĄźĽż¤ŹĽĐĽĂĽŻĽ˘ĽĂĽ×¤ľ¤ěĄ˘\n"
-"\t¤˝¤Î¸ĺ¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ç¤ĎĘŃšš¤ľ¤ě¤ż¤â¤Î¤Ŕ¤ą¤Ź\n"
-"\tĘݸ¤ľ¤ě¤Ţ¤šĄŁ\n"
-"\t¤˝¤ˇ¤ĆÉü¸ľ¤š¤ë¤Č¤­¤Ë¤ĎĄ˘ťŘÄęĆüťţ¤ÎĽÇĄźĽż¤ŹÉü¸ľ\n"
-"\t¤Ç¤­¤Ţ¤šĄŁ\n"
-"\t¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Đ¤Ę¤¤¤ČĄ˘¸Ĺ¤¤ĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ď\n"
-"\tËč˛óşď˝ü¤ľ¤ě¤Ţ¤šĄŁ \n"
-"\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-" ¤ł¤ÎĽ×ĽíĽ°ĽéĽŕ¤ĎĽŐĽęĄźĽ˝ĽŐĽČĽŚĽ§Ľ˘¤Ç¤šĄŁFree Software Foundation¤Î\n"
-" ČŻšÔ¤š¤ë GNU °ěČĚśŚÍ­ĽéĽ¤ĽťĽóĽš¤ÎĽĐĄźĽ¸ĽçĽó2°Ęšß¤Îžňˇď¤Ë˝ž¤Ă¤Ć\n"
-" şĆÇŰÉŰĄŚ˛ţĘѤŹ¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-" ¤ł¤ÎĽ×ĽíĽ°ĽéĽŕ¤ĎĄ˘Ěň¤ËΊ¤Ä¤Ů¤ŻÇŰÉۤľ¤ě¤Ć¤Ď¤¤¤Ţ¤š¤ŹĄ˘\n"
-" ¤Ţ¤Ă¤ż¤Ż¤ÎĚľĘݞڤǤšĄŁžŚśČŔ­¤äĄ˘¤˘¤ëĚÜĹŞ¤Ř¤ÎĹŹšçŔ­¤Ë¤Ä¤¤¤Ć\n"
-" ĚŔź¨ĹŞĄ˘°Ĺź¨ĹޤňĚä¤ď¤ş°ěŔÚ¤ÎĘÝžÚ¤ňšÔ¤¤¤Ţ¤ť¤óĄŁžÜşŮ¤Ď\n"
-" GNU °ěČĚśŚÍ­ĽéĽ¤ĽťĽóĽš¤ňť˛žČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-" GNU °ěČĚśŚÍ­ĽéĽ¤ĽťĽóĽš¤Ź¤ł¤ÎĽ×ĽíĽ°ĽéĽŕ¤Ë¤ĎÉŐ°¤ˇ¤Ć¤­¤ż¤Ď¤ş\n"
-" ¤Ç¤šĄŁÉŐ°¤ˇ¤Ć¤¤¤Ę¤¤žěšç¤Ë¤ĎĄ˘°Ę˛ź¤ËϢÍí¤ˇ¤ĆĆţźę¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤Ą§\n"
-" Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n"
-" Boston, MA 02111-1307, USA."
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-"ŔâĚŔ:\n"
-"\n"
-" Drakbackup ¤ĎĽˇĽšĽĆĽŕ¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×¤ËťČ¤¤¤Ţ¤šĄŁ\n"
-" ŔßÄę¤Ëąţ¤¸¤ĆĄ˘ĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤ŹÁŞ¤Ů¤Ţ¤š: \n"
-"\t- ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë\n"
-"\t- ĽćĄźĽśĽŐĽĄĽ¤Ľë\n"
-"\t- ¤˝¤ÎžĽŐĽĄĽ¤Ľë\n"
-"\t¤˘¤ë¤¤¤ĎÁ´ĽˇĽšĽĆĽŕ¤äĄ˘¤˝¤ÎžĽˇĽšĽĆĽŕĄĘĽŚĽŁĽóĽÉĽŚĽş\n"
-"\tĽŃĄźĽĆĽŁĽˇĽçĽóĄË¤âĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-" Drakbackup ¤Ç¤ĎĄ˘°Ę˛ź¤ÎĽáĽÇĽŁĽ˘¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ź¤Ç¤­¤Ţ¤š:\n"
-"\t- ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (autoboot, ĽěĽšĽ­ĽĺĄźĄ˘źŤĆ°Ľ¤ĽóĽšĽČĄźĽë¤â˛Ä).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- ĽĆĄźĽ×\n"
-"\n"
-" Drakbackup ¤Ç¤ĎĄ˘Âž¤ÎĽÇĽŁĽěĽŻĽČĽę¤ňÁޤó¤Ç¤˝¤ł¤Ë\n"
-" ĽˇĽšĽĆĽŕ¤ňÉü¸ľ¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-" ĽÇĽŐĽŠĽëĽČ¤Ç¤Ď¤š¤Ů¤Ć¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ď\n"
-" /var/lib/drakbackup ĽÇĽŁĽěĽŻĽČĽę¤ËĘݸ¤ľ¤ě¤Ţ¤šĄŁ\n"
-"\n"
-" ŔßÄęĽŐĽĄĽ¤Ľë:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Éü¸ľ¤Î¤ä¤ęĘý:\n"
-" \n"
-" Éü¸ľĽšĽĆĽĂĽ×¤Ç¤Ď DrakBackup ¤Ď¤â¤Č¤ÎĽÇĽŁĽěĽŻĽČĽę¤ň\n"
-" şď˝ü¤ˇ¤ĆĄ˘¤š¤Ů¤Ć¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤Ź´°Á´¤Ť¤É¤Ś¤Ť\n"
-" łÎ¤Ť¤á¤Ţ¤šĄŁÉü¸ľ¤š¤ëÁ°¤ËĄ˘¤˝¤ÎťţĹŔ¤ÎĽˇĽšĽĆĽŕ¤ňĽĐĽĂĽŻ\n"
-" Ľ˘ĽĂĽ×¤ˇ¤Ć¤Ş¤­¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-"ĽŞĽ×ĽˇĽçĽóŔâĚŔ:\n"
-"\n"
-"ftp ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ňťČ¤Ś¤Č¤­¤ĎĂí°Ő¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁĽľĄźĽĐ¤ËÁ÷¤é¤ě¤ë\n"
-"¤Î¤Ďš˝ĂۺѤߤμмüŻĽ˘ĽĂĽ×¤Ŕ¤ą¤Ç¤šĄŁ¤ˇ¤ż¤Ź¤Ă¤ĆĄ˘ĽľĄźĽĐ¤ËÁ÷¤ë\n"
-"Á°¤ËĄ˘¤Ţ¤şĽĎĄźĽÉĽÉĽéĽ¤ĽÖžĺ¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×š˝ĂۤŹÉŹÍפˤʤę¤Ţ¤šĄŁ\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-"\n"
-"ĽĐĽĂĽŻĽ˘ĽĂĽ×Éü¸ľ¤ÎĚäÂę:\n"
-"\n"
-"Éü¸ľĽšĽĆĽĂĽ×Ăć¤ËĄ˘Drakbackup ¤ĎÉü¸ľ¤ËŔčΊ¤Ă¤Ć¤š¤Ů¤Ć¤Î\n"
-"ĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤ňĽÁĽ§ĽĂĽŻ¤ˇ¤Ţ¤šĄŁ\n"
-"Éü¸ľ¤ňťĎ¤á¤ëÁ°¤ËĄ˘Drakbackup ¤ĎşŁ¤ÎĽÇĽŁĽěĽŻĽČĽę¤ňşď˝ü\n"
-"¤š¤ë¤Î¤ÇĄ˘¤¤¤Ţ¤ÎĽÇĄźĽż¤ĎÁ´ÉôžĂ¤¨¤Ţ¤šĄŁ¤Ç¤š¤Ť¤éĄ˘ĽĐĽĂĽŻ\n"
-"Ľ˘ĽĂĽ×ĽÇĄźĽż¤ÎĽŐĽĄĽ¤Ľë¤Ďźę¤Ç˛ţĘѤˇ¤Ę¤¤¤Ű¤Ś¤Ź¸­ĚŔ¤Ç¤šĄŁ\n"
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-" Drakbackup ¤ĎĽˇĽšĽĆĽŕ¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×¤ËťČ¤¤¤Ţ¤šĄŁ\n"
-" ŔßÄę¤Ëąţ¤¸¤ĆĄ˘ĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤ŹÁŞ¤Ů¤Ţ¤š: \n"
-"\t- ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë\n"
-"\t- ĽćĄźĽśĽŐĽĄĽ¤Ľë\n"
-"\t- ¤˝¤ÎžĽŐĽĄĽ¤Ľë\n"
-"\t¤˘¤ë¤¤¤ĎÁ´ĽˇĽšĽĆĽŕ¤äĄ˘¤˝¤ÎžĽˇĽšĽĆĽŕĄĘĽŚĽŁĽóĽÉĽŚĽş\n"
-"\tĽŃĄźĽĆĽŁĽˇĽçĽóĄË¤âĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-" Drakbackup ¤Ç¤ĎĄ˘°Ę˛ź¤ÎĽáĽÇĽŁĽ˘¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ź¤Ç¤­¤Ţ¤š:\n"
-"\t- ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (autoboot, ĽěĽšĽ­ĽĺĄźĄ˘źŤĆ°Ľ¤ĽóĽšĽČĄźĽë¤â˛Ä).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- ĽĆĄźĽ×\n"
-"\n"
-" Drakbackup ¤Ç¤ĎĄ˘Âž¤ÎĽÇĽŁĽěĽŻĽČĽę¤ňÁޤó¤Ç¤˝¤ł¤Ë\n"
-" ĽˇĽšĽĆĽŕ¤ňÉü¸ľ¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-" ĽÇĽŐĽŠĽëĽČ¤Ç¤Ď¤š¤Ů¤Ć¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ď\n"
-" /var/lib/drakbackup ĽÇĽŁĽěĽŻĽČĽę¤ËĘݸ¤ľ¤ě¤Ţ¤šĄŁ\n"
-"\n"
-" ŔßÄęĽŐĽĄĽ¤Ľë:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Éü¸ľ¤Î¤ä¤ęĘý:\n"
-" \n"
-" Éü¸ľĽšĽĆĽĂĽ×¤Ç¤Ď DrakBackup ¤Ď¤â¤Č¤ÎĽÇĽŁĽěĽŻĽČĽę¤ň\n"
-" şď˝ü¤ˇ¤ĆĄ˘¤š¤Ů¤Ć¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤Ź´°Á´¤Ť¤É¤Ś¤Ť\n"
-" łÎ¤Ť¤á¤Ţ¤šĄŁÉü¸ľ¤š¤ëÁ°¤ËĄ˘¤˝¤ÎťţĹŔ¤ÎĽˇĽšĽĆĽŕ¤ňĽĐĽĂĽŻ\n"
-" Ľ˘ĽĂĽ×¤ˇ¤Ć¤Ş¤­¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤żĄŁ°Ę˛ź¤ÎĽ¨ĽéĄź¤ŹČŻŔ¸:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Ľ¤ĽóĽšĽČĄźĽëşŃ¤ßĽŐĽŠĽóĽČ¤ň¸Ąş÷"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Ľ¤ĽóĽšĽČĄźĽëşŃ¤ßĽŐĽŠĽóĽČ¤ňÁŞÂň¤ˇ¤Ę¤¤"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "¤š¤Ů¤Ć¤ÎĽŐĽŠĽóĽČ¤ňĽÁĽ§ĽĂĽŻ"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "ĽŐĽŠĽóĽČ¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "´°Îť"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "ĽŢĽŚĽóĽČ¤ľ¤ě¤żĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë¤ĎĽŐĽŠĽóĽČ¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Ŕľ¤ˇ¤¤ĽŐĽŠĽóĽČ¤ňÁޤÓÄž¤š"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "ĽŐĽŠĽóĽČ¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄŁ\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Ľ¤ĽóĽšĽČĄźĽëşŃ¤ß°ěÍ÷¤Ť¤éĽŐĽŠĽóĽČ¤ňĂľ¤š"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "ĽŐĽŠĽóĽČ¤ňĽłĽÔĄź"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "True Type ĽŐĽŠĽóĽČ¤ÎĽ¤ĽóĽšĽČĄźĽë"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "ttmkfdir Ăć¤Ę¤Î¤ÇžŻĄš¤ŞÂÔ¤Á¤ň..."
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "True Type Ľ¤ĽóĽšĽČĄźĽë´°Îť"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "ĽŐĽŠĽóĽČĘŃ´š"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "type1inst š˝ĂŰĂć"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr "Ghostscript ť˛žČĂć"
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "ttf ĽŐĽŠĽóĽČĘŃ´š"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "pfm ĽŐĽŠĽóĽČĘŃ´š"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "°ěťţĽŐĽĄĽ¤Ľë¤ňşî¤é¤Ę¤¤"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "XFS şĆľŻĆ°"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "ĽŐĽŠĽóĽČĽŐĽĄĽ¤Ľë¤ňşî¤é¤Ę¤¤"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "xfs şĆľŻĆ°"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"ĽŐĽŠĽóĽČĽ¤ĽóĽšĽČĄźĽë¤ËŔčΊ¤Ă¤ĆĄ˘¤˝¤ě¤é¤ÎĽŐĽŠĽóĽČ¤ňťČ¤Ś¸˘Íř¤äĽ¤ĽóĽšĽČĄźĽë¤š¤ë"
-"¸˘Íř¤Ź¤˘¤ë¤ł¤Č¤ňłÎǧ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-"-ĽŐĽŠĽóĽČ¤ňÄĚžď¤Î¤ä¤ęĘý¤ÇĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤šĄŁ¤Č¤­¤É¤­Ą˘¤Ş¤Ť¤ˇ¤ĘĽŐĽŠĽóĽČ¤Ç "
-"X ĽľĄźĽĐ¤ŹĽĎĽóĽ°¤š¤ëžěšç¤Ź¤˘¤ę¤Ţ¤šĄŁ"
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "ĽŐĽŠĽóĽČĆɤߚţ¤ß"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "ĽŚĽŁĽóĽÉĽŚĽş¤ÎĽŐĽŠĽóĽČ¤ňźč¤Ă¤Ć¤Ż¤ë"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "ĽŐĽŠĽóĽČ¤ÎĽ˘ĽóĽ¤ĽóĽšĽČĄźĽë"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "žĺľéĽŞĽ×ĽˇĽçĽó"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "ĽŐĽŠĽóĽČ°ěÍ÷"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "¤ł¤ÎĽŐĽŠĽóĽČ¤ňĽľĽÝĄźĽČ¤š¤ëĽ˘Ľ×ĽęĽąĄźĽˇĽçĽó¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤:"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "°ěČ̼׼ęĽóĽż"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "ĽŐĽŠĽóĽČĽŐĽĄĽ¤Ľë¤ŤĽÇĽŁĽěĽŻĽČĽę¤ňÁޤó¤ÇĄÖÄɲåפňĽŻĽęĽĂĽŻ"
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "°ěÍ÷¤ÎĽ¤ĽóĽšĽČĄźĽë"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "¤Ţ¤Á¤Ź¤¤¤Ę¤ą¤ě¤ĐĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "ĽŔĽá¤Ę¤é¤ł¤Á¤é¤ň"
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "¤š¤Ů¤Ć¤ňČóÁŞÂň¤Ë"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "¤š¤Ů¤Ć¤ňÁŞÂň"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "°ěÍ÷¤ňşď˝ü"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Ľ¤ĽËĽˇĽăĽëĽĆĽšĽČ"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "ĽˇĽšĽĆĽŕžĺ¤ÎĽŐĽŠĽóĽČ¤ňĽłĽÔĄź"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "ĽŐĽŠĽóĽČ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ČĘŃ´š"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ÎşîśČ"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "ĽˇĽšĽĆĽŕ¤Ť¤éĽŐĽŠĽóĽČ¤ňşď˝ü"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Ľ˘ĽóĽ¤ĽóĽšĽČĄźĽë¸ĺ¤ÎşîśČ"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ÎśŚÍ­"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłśŚÍ­¤Ď¸˝şßÍ­¸ú"
-
-#: ../../standalone/drakgw_.c:139
-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"
-"Í­¸ú¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁ\n"
-"\n"
-"¤É¤Ś¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "Ěľ¸ú¤Ë"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "Ěľťë"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "şĆŔßÄę"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "ĽľĄźĽĐ¤ňĚľ¸ú¤Ë¤ˇ¤Ć¤¤¤Ţ¤šĄÄĄÄ"
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłśŚÍ­¤ĎĚľ¸ú¤Ë¤Ę¤ę¤Ţ¤ˇ¤żĄŁ"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłśŚÍ­¤Ď¸˝şßĚľ¸ú¤Ç¤š"
-
-#: ../../standalone/drakgw_.c:164
-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"
-"Ěľ¸ú¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁ\n"
-"\n"
-"¤É¤Ś¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "Í­¸ú¤Ë"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "ĽľĄźĽĐ¤ňÍ­¸ú¤Ë¤ˇ¤Ć¤¤¤Ţ¤šĄÄĄÄ"
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłśŚÍ­¤ŹÍ­¸ú¤Ç¤šĄŁ"
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"¤ł¤ÎĽŢĽˇĽó¤ÎĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ňśŚÍ­¤š¤ë¤č¤Ś¤ËŔßÄꤡ¤Ţ¤šĄŁ\n"
-"¤ł¤ÎľĄÇ˝¤Ź¤˘¤ë¤ČĄ˘ĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻžĺ¤Îž¤ÎĽłĽóĽÔĽĺĄźĽż¤ŹĄ˘\n"
-"¤ł¤ÎĽłĽóĽÔĽĺĄźĽż¤ÎĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ňťČ¤¨¤Ţ¤šĄŁ\n"
-"ĂíĄ§ĽíĄźĽŤĽëĽ¨ĽęĽ˘ĽÍĽĂĽČĽďĄźĽŻ (LAN) ¤ň¤Ä¤Ż¤ë¤Ë¤ĎĄ˘ŔěÍѤμͼüȼ寧ĽŻĽ˘ĽŔĽ×Ľż"
-"¤ŹÍפę¤Ţ¤šĄŁ"
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš %s (ĽâĽ¸ĽĺĄźĽë %s ¤ňťČÍŃ)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"ĽˇĽšĽĆĽŕžĺ¤ËĽ¤ĄźĽľĽÍĽĂĽČĽ˘ĽŔĽ×Ľż¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄŁ ĽĎĄźĽÉĽŚĽ§Ľ˘ŔßÄęĽÄĄźĽë¤ňźÂ"
-"šÔ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ¤ĽóĽżĄźĽŐĽ§Ľ¤Ľš"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"ĽˇĽšĽĆĽŕ¤Ë¤ĎŔßÄꤾ¤ě¤żĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż¤Ź¤Ň¤Č¤Ä¤ˇ¤Ť¤˘¤ę¤Ţ¤ť¤óĄ§\n"
-"\n"
-"%s\n"
-"\n"
-"¤ł¤ÎĽ˘ĽŔĽ×Ľż¤Ç LAN ¤ËŔÜÂł¤ˇ¤Ţ¤š¤ÍĄŁ"
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"ĽíĄźĽŤĽëĽ¨ĽęĽ˘ĽÍĽĂĽČĽďĄźĽŻ¤Ë¤Ä¤Ę¤Ź¤ëĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż¤ň\n"
-"Áޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤ĎŔßÄęşŃ¤ß¤Ç¤šŔßÄꤾ¤ě¤Ć¤Ţ¤ť¤ó"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"ˇŮšđĄ˘ĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż (%s) ¤ĎŔßÄęşŃ¤ß¤Ç¤šĄŁ\n"
-"\n"
-"źŤĆ°şĆŔßÄę¤ň¤ˇ¤Ţ¤š¤ŤĄŠ\n"
-"\n"
-"źęĆ°¤Ç¤ä¤ë¤ł¤Č¤â¤Ç¤­¤Ţ¤š¤ŹĄ˘¤˝¤ě¤Ę¤ę¤ÎĂÎźą¤ŹÉŹÍפǤš¤čĄŁ"
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "źŤĆ°şĆŔßÄę"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "¸˝şß¤ÎĽ¤ĽóĽżĄźĽŐĽ§ĄźĽšŔßÄę¤ňÉ˝ź¨"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"CĄÖ%sĄ×¤Î¸˝žő¤ÎŔßÄę:\n"
-"\n"
-"ĽÍĽĂĽČĽďĄźĽŻ: %s\n"
-"IP Ľ˘ĽÉĽěĽš: %s\n"
-"IP °Ŕ­: %s\n"
-"ĽÉĽéĽ¤ĽĐ: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"¸˝žő¤ÎŔßÄę¤ň°Ýťý¤ˇ¤ĆĄ˘¤š¤Ç¤Ë DHCP ĽľĄźĽĐ¤ňŔßĂÖ¤ˇ¤ż¤â¤Î¤ČÁŰÄꤚ¤ë¤ł¤Č¤â¤Ç¤­¤Ţ"
-"¤šĄŁ¤˝¤Îžěšç¤Ë¤ĎĄ˘ĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻ¤ÎCĽŻĽéĽšĽ˘ĽÉĽěĽš¤ňŔľ¤ˇ¤ŻĆɤó¤Ç¤¤¤ë¤ŤłÎ"
-"ǧ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁźŤĆ°ŔßÄę¤Ď¤ˇ¤Ţ¤ť¤ó¤ˇĄ˘DHCP ĽľĄźĽĐ¤ÎŔßÄę¤âĘѤ¨¤Ţ¤ť¤ó¤Î¤ÇĄŁ\n"
-"\n"
-"¤˘¤ë¤¤¤ĎĄ˘¤ł¤Á¤é¤ÇĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤ČDHCPĽľĄźĽĐ¤ÎŔßÄę¤ň¤ä¤ë¤ł¤Č¤â¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "CĽŻĽéĽšĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻ"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "ĄĘ¤ł¤ÎĄËDHCP ĽľĄźĽĐ¤Î IP"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤ČDHCPĽľĄźĽĐ¤ÎşĆŔßÄę"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "ĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻ¤ŹĄÖ.0Ą×¤Ç˝Ş¤ď¤Ă¤Ć¤¤¤Ţ¤ť¤óĄŁĂćĂǤˇ¤Ţ¤šĄŁ"
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "¸˝şß¤Î %s ¤ÎŔßÄę¤Ç¤ĎLANĽ˘ĽÉĽěĽš¤Źž×Ćͤš¤ë¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŞ\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "ĽŐĽĄĽ¤Ľ˘ĽŚĽŠĄźĽë¤ÎŔßÄę¤ň¸Ą˝ĐĄŞ"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"ˇŮšđĄŞ´ű¸ĽŐĽĄĽ¤ĽäĽŚĽŠĄźĽë¤ÎŔßÄę¤ň¸Ą˝ĐĄŁ\n"
-"Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ËĄ˘źęĆ°¤Ç˝¤Ŕľ¤ŹÍפ뤍đ⤡¤ě¤Ţ¤ť¤óĄŁ"
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "ŔßÄęĂć..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "ĽšĽŻĽęĽ×ĽČ¤ÎŔßÄꥢĽ˝ĽŐĽČĽŚĽ§Ľ˘¤ÎĽ¤ĽóĽšĽČĄźĽëĄ˘ĽľĄźĽĐ¤ÎľŻĆ°..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ÇĚäÂęČŻŔ¸"
-
-#: ../../standalone/drakgw_.c:672
-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) ¤ňťČ¤Ă¤ĆĄ˘LAN žĺ¤Îž¤ÎĽŢĽˇĽó¤ČĽ¤ĽóĽżĄźĽÍĽĂ"
-"ĽČŔÜÂł¤ňśŚÍ­¤Ç¤­¤Ţ¤šĄŁ"
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "ŔßÄę¤Ď¤š¤ó¤Ç¤¤¤Ţ¤š¤ŹĄ˘¤¤¤Ţ¤ĎĚľ¸ú¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁ"
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "ŔßÄę¤Ď¤š¤ó¤Ç¤¤¤ĆĄ˘¤¤¤Ţ¤ĎÍ­¸ú¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁ"
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłśŚÍ­¤Ď¤Ţ¤Ă¤ż¤ŻŔßÄꤾ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ"
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ÎŔßÄę"
-
-#: ../../standalone/drakgw_.c:703
-#, 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:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻŔßÄę (%d Ľ˘ĽŔĽ×Ľż)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Ľ×ĽíĽŐĽŁĄźĽë: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Ľ×ĽíĽŐĽŁĄźĽëşď˝üĄÄĄÄ"
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "şď˝ü¤ˇ¤ż¤¤Ľ×ĽíĽŐĽŁĄźĽëĄ§"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "żˇľŹĽ×ĽíĽŐĽŁĄźĽëĄÄĄÄ"
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr "şîŔŽ¤š¤ëĽ×ĽíĽŐĽŁĄźĽë¤ÎĚžÁ°ĄĘżˇĽ×ĽíĽŐĽĄĽ¤Ľë¤Ď¸˝şß¤Î¤â¤Î¤ÎĽłĽÔĄź¤Ç¤šĄËĄ§"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "ĽŰĽšĽČĚž:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "ĽżĽ¤Ľ×: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "ĽšĽĆĄźĽżĽš: "
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "žŻĄš¤ŞÂÔ¤Á¤ň"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČĽ˘ĽŻĽťĽš¤ÎŔßÄę"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN¤ÎŔßÄę"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "ĽÉĽéĽ¤ĽĐ"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Ľ×ĽíĽČĽłĽë"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "žőÂÖ"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "LAN ŔßÄęĄÄĄÄ"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "ĽŚĽŁĽśĄźĽÉ¤ÎľŻĆ°¤Ë¤Ď¤ł¤Á¤é¤ňĽŻĽęĽĂĽŻ -->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "ĽŚĽŁĽśĄźĽÉ..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "ĹŹÍŃ"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "žŻĄš¤ŞÂÔ¤Á¤ňĄÄĄÄŔßÄę¤ňĹŹÍѤˇ¤Ć¤¤¤Ţ¤š"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "ŔÜÂł´°Îť"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "ŔÜÂł¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "ŔÜÂłĄÄĄÄ"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "ŔÜÂł¤ňŔÚĂÇĄÄĄÄ"
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"ˇŮšđĄ˘Ę̤μ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤Ź¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤żĄŁĽÍĽĂĽČĽďĄźĽŻ¤ĎťČÍŃĂ植¤â¤ˇ¤ě¤Ţ"
-"¤ť¤ó"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"ŔßÄęşŃ¤ß¤ÎĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Ź¤˘¤ę¤Ţ¤ť¤óĄŁ\n"
-"ĄÖŔßÄęĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ţ¤ş¤˝¤ě¤é¤ňŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN¤ÎŔßÄę"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Ľ˘ĽŔĽ×Ľż %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "ĽÖĄźĽČĽ×ĽíĽČĽłĽë"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "ľŻĆ°ťţ¤ËłŤťĎ"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP ĽŻĽéĽ¤Ľ˘ĽóĽČ"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "¤¤¤Ţ¤š¤°Í­¸ú¤Ë"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "¤¤¤Ţ¤š¤°Ěľ¸ú¤Ë"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"¤ł¤ÎĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Ď¤Ţ¤ŔŔßÄꤾ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ\n"
-"źçĽŚĽŁĽóĽÉĽŚ¤ÇŔßÄ꼌ĽŁĽśĄźĽÉ¤ňľŻĆ°¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤Ź¤˘¤ę¤Ţ¤ť¤óĄŁ\n"
-"ĄÖŔßÄęĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤ĆşîŔŽ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłŔßÄę"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłŔßÄę"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "ŔÜÂł¤ÎźďÎŕ: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "ĽŃĽéĽáĄźĽż"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ľ¤ĄźĽľĽÍĽĂĽČĽŤĄźĽÉ"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP ĽŻĽéĽ¤Ľ˘ĽóĽČ"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "ĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤ÎŔßÄęĂć"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "ťČÍѤš¤ëĽÄĄźĽë¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "ĽŤĽĘĽŔĄĘĽąĄźĽÖĽëĄË"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (bcast)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "USA (ĽąĄźĽÖĽë)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "USA (ĽąĄźĽÖĽë-hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Ăćšń (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "ĆüËÜ (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "ĆüËÜ (ĽąĄźĽÖĽë)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "ĹěĽčĄźĽíĽĂĽŃ"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Ľ˘Ľ¤ĽëĽéĽóĽÉ"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "ŔžĽčĄźĽíĽĂĽŃ"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "ĽŞĄźĽšĽČĽéĽęĽ˘"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "ĽËĽĺĄźĽ¸ĄźĽéĽóĽÉ"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "ĆĽŐĽęĽŤ"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Ľ˘ĽëĽźĽóĽÁĽó"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"¤Ç¤Ď\n"
-"ĽĆĽěĽÓĘýź°¤Čšń¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "ĽĆĽěĽÓĘýź°Ą§"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Ăϰ襧"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "ĽĆĽěĽÓĽÁĽăĽóĽÍĽë¤ňĂľ¤ˇ¤Ć¤¤¤Ţ¤š..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "ĽĆĽěĽÓĽÁĽăĽóĽÍĽë¤ňĂľ¤ˇ¤Ć¤¤¤Ţ¤š"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "ťČ¤¤Ęý: keyboarddrake [--expert] [Ľ­ĄźĽÜĄźĽÉ]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Ľ­ĄźĽÜĄźĽÉĽěĽ¤Ľ˘ĽŚĽČ¤Ď˛ż¤Ç¤š¤ŤĄŠ"
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "BackSpaceĽ­Ąź¤ŹĽłĽóĽ˝ĄźĽë¤ÇžĂľî¤ň¤š¤ë¤č¤Ś¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "CD-ROM¤ňĆţ¤ěÂؤ¨¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/livedrake_.c:25
-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 ¤ňĽÉĽéĽ¤ĽÖ¤Ë¤¤¤ě¤ĆĄ˘ Ok ¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"CD¤Ź¤Ę¤ą¤ě¤ĐĄ˘Cancel ¤ň˛Ą¤ˇ¤ĆĽéĽ¤ĽÖĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ň˛óČň¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "ĽéĽ¤ĽÖĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ňłŤťĎ¤Ç¤­¤Ţ¤ť¤ó!!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr "ĘŃšš¤Ź´°Îť¤ˇ¤Ţ¤ˇ¤ż¤ŹĄ˘Í­¸ú¤Ë¤š¤ë¤Ë¤Ď¤¤¤Ă¤ż¤óĽíĽ°Ľ˘ĽŚĽČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "Áޤó¤ŔĆü¤ÎĘŹ¤Ŕ¤ą¤ňÉ˝ź¨"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/ĽŐĽĄĽ¤Ľë(F)/żˇľŹ(N)"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/ĽŐĽĄĽ¤Ľë(F)/łŤ¤Ż(O)"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/ĽŐĽĄĽ¤Ľë(F)/Ęݸ(S)"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/ĽŐĽĄĽ¤Ľë(F)/Ę̤ÎĚžÁ°¤ÇĘݸ(A)"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/ĽŐĽĄĽ¤Ľë(F)/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/ĽŞĽ×ĽˇĽçĽó(_O)"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/ĽŞĽ×ĽˇĽçĽó(O)/ĽĆĽšĽČ"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/ĽŘĽëĽ×(_H)"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/ĽŘĽëĽ×(H)/¤ł¤ÎĽ˝ĽŐĽČ¤Ë¤Ä¤¤¤Ć(A)"
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-"-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-iso8859-1,-*-fixed-medium-r-normal--"
-"24-*-100-100-c-*-jisx0208.1983-0,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-"-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-iso8859-1,-*-fixed-medium-r-normal--"
-"24-*-100-100-c-*-jisx0208.1983-0,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "ĽćĄźĽśĚž"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "ĽáĽĂĽťĄźĽ¸"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "ĽˇĽšĽíĽ°"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Mandrake ĽÄĄźĽë¤ÎŔâĚŔ"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "¸Ąş÷"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "ĽíĽ°¤ňĽâĽËĽż¤š¤ë¤ż¤á¤ÎĽÄĄźĽë"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "ŔßÄę"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "°ěĂפš¤ë¤â¤Î"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "°Ę˛ź¤Ë¤Ď°ěĂפˇ¤Ę¤¤"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "ĽŐĽĄĽ¤Ľë¤ňÁŞÂň"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "ĽŤĽěĽóĽŔ"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "ĽŐĽĄĽ¤Ľë¤ÎĆâÍĆ"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "Mail/SMS ˇŮšđ"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "žŻĄš¤ŞÂÔ¤Á¤ňĄ˘ĽŐĽĄĽ¤Ľë %s ¤ňĂľ¤ˇ¤Ć¤¤¤Ţ¤šĄŁ"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "Mail/SMS ˇŮšđ¤ÎŔßÄę"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Mail/SMS ŔßÄęĽćĄźĽĆĽŁĽęĽĆĽŁ¤Ř¤¤¤é¤Ă¤ˇ¤ă¤¤¤Ţ¤ťĄÁĄŁ\n"
-"\n"
-"¤ł¤ł¤Ç¤ĎˇŮšđĽˇĽšĽĆĽŕ¤ňŔßÄꤡ¤Ţ¤šĄŁ\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "ĽľĄźĽÓĽšŔßÄę"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr "°Ę˛ź¤ÇÁޤó¤ŔĽľĄźĽÓĽš¤Źťß¤Ţ¤Ă¤ż¤éˇŮĘ󤏽ФޤšĄŁ"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "ŔßÄę¤ÎĆɤߚţ¤ßĂć"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Éé˛Ů¤Ź¤ł¤ÎĂͤňžĺ˛ó¤Ă¤ż¤éˇŮĘ󤏽Фޤš"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "ˇŮšđ¤ÎŔßÄę"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "ĽˇĽšĽĆĽŕ¤ÎˇŮšđĘýËĄ¤ňŔßÄę"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "ĚžÁ°¤ň¤Ä¤ą¤ĆĘݸ..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "ĽŢĽŚĽš¤Îˇż¤Ď¤Ę¤ó¤Ç¤š¤ŤĄŠ"
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "serial_usb¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "żżĂćĽÜĽżĽó¤ňĽ¨ĽßĽĺĽěĄźĽČ¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "%s ¤Ź %s ¤Ç¸Ť¤Ä¤Ť¤ę¤Ţ¤ˇ¤żĄŁŔßÄꤡ¤Ţ¤š¤Ť?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "ĽšĽ­ĽăĽĘ¤ňÁŞÂň¤ˇ¤Ć˛ź¤ľ¤¤"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "¤ł¤Î %s ĽšĽ­ĽăĽĘ¤ĎĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "ĽÖĄźĽČĽÇĽĐĽ¤Ľš"
-
-#: ../../standalone/scannerdrake_.c:102
-#, fuzzy, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"printerdrake ¤ÎľŻĆ°¤ĎĄ˘Mandrake ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź¤ÎĽĎĄźĽÉĽŚĽ§Ľ˘¤Îšŕ¤ÇšÔ¤Ă"
-"¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "ĽŐĽĄĽ¤Ľ˘ĽŚĽŠĄźĽë¤ÎŔßÄę"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "ĽŐĽĄĽ¤Ľ˘ĽŚĽŠĄźĽë¤ÎŔßÄę"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"ĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽë\n"
-"\n"
-"¤š¤Ç¤ËĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽë¤ĎŔßÄęşŃ¤ß¤Ç¤šĄŁ\n"
-"¤˝¤ě¤ňĘŃššĄŚşď˝ü¤š¤ë¤Ë¤ĎĄÖŔßÄęĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"ĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽë\n"
-"\n"
-"ĄÖŔßÄęĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ćɸ˝ŕĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽë¤ňŔßÄꤡ¤Ţ¤š"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "¸Ŕ¸ě¤ÎÁŞÂň"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "ĆłĆţĽŻĽéĽš¤ÎÁŞÂň"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "ĽÇĽŁĽšĽŻ¤Î¸Ą˝Đ"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "ĽŢĽŚĽš¤ÎŔßÄę"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Ľ­ĄźĽÜĄźĽÉ¤ÎÁŞÂň"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "ĽťĽ­ĽĺĽęĽĆĽŁ"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "ĽŐĽŠĄźĽŢĽĂĽČ"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "ĽŃĽĂĽąĄźĽ¸¤ÎÁŞÂň"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "ĽˇĽšĽĆĽŕ¤ÎĆłĆţ"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "ĽćĄźĽś¤ÎĹĐĎż"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻŔßÄę"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "ĽľĄźĽÓĽš¤ÎŔßÄę"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "ĽÖĄźĽČĽíĄźĽŔŔßÄę"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "ľŻĆ°ĽÇĽŁĽšĽŻşîŔŽ"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "X ¤ÎŔßÄę"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "ĽˇĽšĽĆĽŕššżˇ¤ňĽ¤ĽóĽšĽČĄźĽë"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "ĆłĆţşîśČ¤ň˝ŞÎť"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"ĽßĽËĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽëŔßÄę\n"
-"\n"
-"¤ł¤Î Mandrake Linux ĽŢĽˇĽóÍѤθĿÍÍŃĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽëŔßÄę¤ň¤ˇ¤Ţ¤šĄŁ\n"
-"śŻÎϤĘŔěÍŃĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽë¸ţ¤ą¤Ë¤ĎĄ˘ŔěÍѤΠMandrakeSecurity\n"
-"ĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽëĽŃĽĂĽąĄźĽ¸¤ň¸ĄĆ¤¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"¤ľ¤ĆĄ˘Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ˇ¤ż¤¤ĽľĄźĽÓĽš¤Ë¤Ä¤¤¤Ć¤¤¤í¤¤¤í¤ŞżŇ¤Í¤ˇ¤Ţ¤šĄŁ\n"
-"Ĺú¤¨¤ë¤Č¤­¤Ë¤Ď¤č¤ŻšÍ¤¨¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤˘¤Ę¤ż¤ÎĽłĽóĽÔĽĺĄźĽż¤ÎĽťĽ­ĽĺĽęĽĆĽŁ\n"
-"¤Ë´Ř¤ď¤ëĚäÂę¤Ç¤š¤Ť¤éĄŁ\n"
-"\n"
-"¤ł¤Ś¤ˇ¤żĽľĄźĽÓĽš¤ÇĄ˘¤¤¤ŢźŤĘŹ¤ÇťČ¤Ă¤Ć¤¤¤Ę¤¤¤â¤Î¤ĎĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽë\n"
-"¤ÇąŁ¤ˇ¤Ć¤ˇ¤Ţ¤¤¤Ţ¤ˇ¤ç¤ŚĄŁ¤ł¤ÎĽ˘Ľ×ĽęĽąĄźĽˇĽçĽó¤ňźÂšÔ¤š¤ě¤ĐĄ˘ŔßÄę¤Ď\n"
-"¤¤¤Ä¤Ç¤âĘŃšš¤Ç¤­¤Ţ¤šĄŁ"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"¤ł¤ÎĽŢĽˇĽó¤ÇĄ˘Á´Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤Ť¤é¸Ť¤¨¤ëĽŚĽ§ĽÖĽľĄźĽĐ¤ňźÂšÔ¤ˇ¤Ţ¤š¤ŤĄŠ\n"
-"źŤĘŹ¤ÎĽŢĽˇĽó¤Ŕ¤ą¤ÇťČ¤ŚĽŚĽ§ĽÖĽľĄźĽĐ¤ˇ¤Ť¤Ę¤¤¤Ę¤éĄ˘¤ł¤ł¤ÇĄÖ¤¤¤¤¤¨Ą×¤Č\n"
-"Ĺú¤¨¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"¤ł¤ÎĽŢĽˇĽó¤ÇĽÍĄźĽŕĽľĄźĽĐĄĘDNS) ¤ňźÂšÔ¤ˇ¤Ţ¤š¤ŤĄŠĄĄÁ´Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤Ë\n"
-"IP ¤äĽžĄźĽóžđĘó¤ň¸řłŤ¤š¤ë¤č¤ŚŔßÄꤡ¤Ć¤¤¤Ę¤ą¤ě¤ĐĄ˘ĄÖ¤¤¤¤¤¨Ą×¤ČĹú¤¨¤Ć\n"
-"¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"ł°¤Ť¤é¤Î Secure Shell (ssh) ŔÜÂł¤ňľö˛Ä¤ˇ¤Ţ¤š¤ŤĄŠĄĄssh¤Ď\n"
-"telnet¤ËÂĺ¤ď¤ë¤â¤Î¤ÇĄ˘ĽíĽ°Ľ¤Ľó¤ËťČ¤¨¤Ţ¤šĄŁ¤¤¤Ţ telnet ¤ňťČ¤Ă¤Ć¤¤¤ż¤é\n"
-"ŔäÂĐ¤Ë ssh ¤ËŔÚ¤ęÂؤ¨¤Ţ¤ˇ¤ç¤ŚĄŁtelnet ¤Ď°Ĺšć˛˝¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ¤Ŕ¤Ť¤é\n"
-"ĽŃĽšĽďĄźĽÉ¤ňĹđ¤Ţ¤ě¤ë´í¸ą¤Ź¤˘¤ę¤Ţ¤šĄŁssh¤Ď°Ĺšć˛˝¤ľ¤ě¤Ć¤¤¤ë¤Î¤ÇĄ˘¤ł¤Ś\n"
-"¤¤¤Ă¤żĹđ¤ßÄ°¤­¤Ź¤Ç¤­¤Ţ¤ť¤ó"
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"ł°¤Ť¤é¤Î telnet ŔÜÂł¤ňľö˛Ä¤ˇ¤Ţ¤š¤ŤĄŠ\n"
-"¤ľ¤Ă¤­ŔâĚŔ¤ˇ¤ż¤Č¤Ş¤ęĄ˘¤ł¤ě¤Ď¤Č¤ó¤Ç¤â¤Ę¤Ż´í¸ą¤Ę¤ł¤Č¤Ç¤šĄŁ¤ł¤ł¤Ç¤Ď\n"
-"ŔäÂФ˥֤¤¤¤¤¨Ą×¤ČĹú¤¨¤ĆĄ˘ssh ¤ňťČ¤Ś¤č¤Ś¤Ë¤Ş´Ť¤á¤ˇ¤Ţ¤šĄŁ\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ÇĽ˘ĽŻĽťĽš¤Ç¤­¤ë FTP ĽľĄźĽĐ¤ňźÂšÔ¤ˇ¤Ţ¤š¤ŤĄŠ\n"
-"¤â¤ˇ¤˝¤Ś¤Ę¤éĄ˘¤Ę¤ë¤Ů¤Ż Anonymous ĹžÁ÷¤Ë¤Ŕ¤ąťČ¤Ś¤č¤Ś¤Ş´Ť¤á¤ˇ¤Ţ¤šĄŁ\n"
-"FTP ¤ÇÁ÷żŽ¤š¤ëĽŃĽšĽďĄźĽÉ¤ĎĄ˘¤š¤Ů¤ĆĹđÄ°¤Ç¤­¤Ţ¤šĄŁFTP ¤ĎĽŃĽšĽďĄźĽÉÁ÷żŽ¤Ë\n"
-"°Ĺšć¤ňťČ¤ď¤Ę¤¤¤Ť¤é¤Ç¤šĄŁ\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"ĽáĄźĽëĽľĄźĽĐ¤ňźÂšÔ¤ˇ¤Ţ¤š¤ŤĄŠĄĄĽáĄźĽë¤ÎÁ÷żŽ¤Ë pineĄ˘mutt¤Ę¤É¤Î\n"
-"ĽĆĽ­ĽšĽČĽŮĄźĽš¤ÎĽáĄźĽëĽŻĽéĽ¤Ľ˘ĽóĽČ¤ňťČ¤ŚżÍ¤ĎĄ˘¤ż¤Ö¤óĽáĄźĽëĽľĄźĽĐ\n"
-"¤ŹÉŹÍפǤšĄŁ¤ľ¤â¤Ę¤ą¤ě¤ĐĄ˘ĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽë¤ÇąŁ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"POP ĽľĄźĽĐ¤Ť IMAP ĽľĄźĽĐ¤ĎťČ¤¤¤Ţ¤š¤ŤĄŠ\n"
-"¤ł¤ÎĽŢĽˇĽóˇĐÍł¤ÇĄ˘webĽáĄźĽë°Ęł°¤ÎĽáĄźĽëĽ˘ĽŤĽŚĽóĽČ¤ňŔßÄꤚ¤ë\n"
-"¤Ę¤éÉŹÍפǤšĄŁ\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"2.2 ĽŤĄźĽÍĽë¤ňťČ¤Ă¤Ć¤¤¤Ţ¤š¤ÍĄŁ¤â¤ˇĽÍĽĂĽČĽďĄźĽŻ IP ¤Ź\n"
-"˛ČÄí¤äĽŞĽŐĽŁĽš¤ÇźŤĆ°łä¤ęĹö¤Ć¤Ë¤Ę¤Ă¤Ć¤¤¤ë¤Ę¤éĄ˘¤˝¤ě¤Ë\n"
-"ąţ¤¸¤żŔßÄę¤ň¤ˇ¤Ţ¤šĄŁźŤĆ°łä¤ęĹö¤Ć¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"¤˘¤Ę¤ż¤ÎĽłĽóĽÔĽĺĄźĽż¤ĎĄ˘¤Ű¤Ť¤ÎĽłĽóĽÔĽĺĄźĽż¤Čťţˇ×¤˘¤ď¤ť¤ň¤ˇ¤Ć\n"
-"¤¤¤Ţ¤š¤ŤĄŠĄĄ¤ł¤ě¤Ď¤Ő¤Ä¤ŚĄ˘Ă澏ĚϤŤ¤éÂ羏ĚϤΠLinux/Unix ÁČżĽ\n"
-"¤ÇĄ˘ĽíĽ°Ľ¤Ľó¤Ę¤É¤ÎĆą´ü¤ň¤Č¤ë¤Î¤ËťČ¤ď¤ě¤Ţ¤šĄŁ¤˝¤Ś¤¤¤ŚÂ礭¤Ę\n"
-"ÁČżĽ¤Î°ěÉô¤Ç¤Ď¤Ę¤ŻĄ˘ťţˇ×¤˘¤ď¤ť¤Ę¤ó¤ŤÄ°¤¤¤ż¤ł¤Č¤Ź¤Ę¤ą¤ě¤ĐĄ˘\n"
-"¤ż¤Ö¤óÉÔÍפǤš"
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"ŔßÄę´°ÎťĄŁĘŃšš¤ňĽÇĽŁĽšĽŻ¤Ë˝ń¤­šţ¤ß¤Ţ¤š¤ŤĄŠ\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "%s ¤ŹłŤ¤ą¤Ţ¤ť¤ó: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "˝ń¤­šţ¤ßÍŃ¤Ë %s ¤ŹłŤ¤ą¤Ţ¤ť¤ó: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr "DHCP ¤ĎťČ¤ď¤Ę¤¤"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr "DHCP ¤ňťČ¤Ś"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr "NTP ¤Ď¤¤¤é¤Ę¤¤"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr "NTP¤ňťČ¤Ś"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr "Ęݸ¤ˇ¤Ę¤¤"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr "Ęݸ¤ˇ¤Ć˝ŞÎť"
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "ĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽëŔßÄ꼌ĽŁĽśĄźĽÉ"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr "¤¤¤¤¤¨ĄĘ¤ł¤ě¤ňĽ¤ĽóĽżĄźĽÍĽĂĽČ¤Ť¤éËɸćĄË"
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr "¤Ď¤¤ĄĘĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽë¤ňÄ̤šĄË"
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr "žŻĄš¤ŞÂÔ¤Á¤ň...Ľ¤ĽóĽšĽČĄźĽëşŃ¤ßĽĐĽĂĽąĄźĽ¸¤ňłÎǧĂć"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"ÉŹÍ׼ѼüąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽë¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż : %s ¤Č Bastille.\n"
-"źęĆ°¤ÇĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "ĽľĄźĽĐĄ˘Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻĽłĽóĽÔĽĺĄźĽż (ĽŻĽéĽ¤Ľ˘ĽóĽČ)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS ĽľĄźĽĐ, SMB ĽľĄźĽĐ, Proxy ĽľĄźĽĐ, SSH ĽľĄźĽĐ"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "ĽŞĽŐĽŁĽš´ŘϢ"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome ĽďĄźĽŻĽšĽĆĄźĽˇĽçĽó"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Palm Pilot ¤ä VisorÍŃĽÄĄźĽë"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "ĽďĄźĽŻĽšĽĆĄźĽˇĽçĽó"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "ĽľĄźĽĐĄ˘ĽŐĽĄĽ¤Ľ˘ĽŚĽŠĄźĽë/ĽëĄźĽż"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "ĽÉĽáĽ¤ĽóĚžĽľĄźĽĐ (DNS) ¤ČĽÍĽĂĽČĽďĄźĽŻžđĘ󼾥źĽĐĄĘNIS)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"ĽŞĽŐĽŁĽšˇĎĽ˝ĽŐĽČ: ĽďĄźĽ×Ľí (kword, abiword), É˝ˇ×ťť (kspread, gnumeric), pdf"
-"ĽÓĽĺĄźĽ˘¤Ę¤É"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "ĽŞĄźĽÇĽŁĽŞ´ŘϢĽÄĄźĽëĄ§mp3, midi, ĽßĽ­ĽľĄź¤Ę¤É"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Linux ¤äĽŐĽęĄźĽ˝ĽŐĽČ´ŘϢ¤ÎËܤäĽĎĽŚĽÄĄźĘ¸˝ń"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE ĽďĄźĽŻĽšĽĆĄźĽˇĽçĽó"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm¤Ę¤É"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "ĽŢĽëĽÁĽáĽÇĽŁĽ˘Ą§ĽÓĽÇĽŞ"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "ĽáĄźĽëĄ˘ĽËĽĺĄźĽšĄ˘web, ĽŐĽĄĽ¤ĽëĹžÁ÷Ą˘ĽÁĽăĽĂĽČ¤Ę¤É¤ÎĽÄĄźĽë"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "ĽÇĄźĽżĽŮĄźĽš"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL ¤Ť MySQL ĽÇĄźĽżĽŮĄźĽšĽľĄźĽĐ"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "ĽŢĽˇĽó¤ÎŔßÄę¤ňłÚ¤Ë¤š¤ëĽÄĄźĽë"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "ĽŢĽëĽÁĽáĽÇĽŁĽ˘ĄĄĽľĽŚĽóĽÉ"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "ĽćĄźĽĆĽŁĽęĽĆĽŁ"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "ĽÉĽ­ĽĺĽáĽóĽĆĄźĽˇĽçĽó"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "ĽłĽóĽ˝ĄźĽëĽÄĄźĽë"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix ĽáĄźĽëĽľĄźĽĐ, Inn ĽËĽĺĄźĽšĽľĄźĽĐ"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČĄŚĽšĽĆĄźĽˇĽçĽó"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "ĽŢĽëĽÁĽáĽÇĽŁĽ˘ĄŚĽšĽĆĄźĽˇĽçĽó"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "ŔßÄę"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Ľ°ĽéĽŐĽŁĽŤĽë¤ĘĽÇĽšĽŻĽČĽĂĽ×¤ň¤â¤Ă¤Č"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr "K ĽÇĽšĽŻĽČĽĂĽ×´Äś­ĄŁ´đËÜĹŞ¤ĘĽ°ĽéĽŐĽŁĽšĽŻ´Äś­¤ËĄ˘´ŘϢĽÄĄźĽëľÍ¤ášç¤ď¤ť"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻ´Äś­"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache ¤Č Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "CD ¤ň¤Ä¤Ż¤Ă¤ĆžĆ¤ŻĽÄĄźĽë"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "ĽŞĽŐĽŁĽšĽďĄźĽŻĽšĽĆĄźĽˇĽçĽó"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "ĽľĄźĽĐ"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm ¤Ę¤É"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "The Gimp¤Ę¤É¤Î˛čÁü˝čÍýĽ˝ĽŐĽČ"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C ¤Č C++ łŤČŻĽéĽ¤ĽÖĽéĽęĄ˘Ľ×ĽíĽ°ĽéĽŕ¤ä include ĽŐĽĄĽ¤Ľë"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻĽłĽóĽÔĽĺĄźĽżĄŚĽľĄźĽĐ"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "ĽľĄźĽĐĄ˘ĽáĄźĽë/Ľ°ĽëĄźĽ×ĽŚĽ§Ľ˘/ĽËĽĺĄźĽš"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Ľ˛ĄźĽŕĽšĽĆĄźĽˇĽçĽó"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "ĽÓĽÇĽŞĽ×ĽěĄźĽä¤äĘÔ˝¸Ľ˝ĽŐĽČ"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "ĽŢĽëĽÁĽáĽÇĽŁĽ˘ĄĄ˛čÁü"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "¸äłÚĽ˝ĽŐĽČĄ§ĽĆĽěĽÓĽ˛ĄźĽŕĄ˘ĽÜĄźĽÉĽ˛ĄźĽŕĄ˘ŔďÎŹĽ˛ĄźĽŕ¤Ę¤É"
-
-#: ../../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:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Ľ˘ĄźĽŤĽ¤ĽÖĽ˝ĽŐĽČĄ˘Ľ¨ĽßĽĺĽěĄźĽżĄ˘ĽâĽËĽżÍŃĽ˝ĽŐĽČ"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "¸ÄżÍ¤ÎşâĚł´ÉÍý"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr "ťČ¤¤¤ä¤š¤¤Ľ˘Ľ×ĽęĽąĄźĽˇĽçĽó¤äĽÇĽšĽŻĽČĽĂĽ×ĽÄĄźĽë¤ňťý¤ÄĄ˘Ľ°ĽéĽŐĽŁĽŻĽš´Äś­"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "ssh ¤Ę¤ÉłĆźďĽ×ĽíĽČĽłĽëÍŃĽŻĽéĽ¤Ľ˘ĽóĽČ"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČĽ˛ĄźĽČĽŚĽ§Ľ¤"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "ĽľĽŚĽóĽÉ¤äĽÓĽÇĽŞ¤ÎşĆŔ¸ĘÔ˝¸Ľ˝ĽŐĽČ"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "¤˝¤ÎžĽ°ĽéĽŐĽŁĽĂĽŻĽÇĽšĽŻĽČĽĂĽ×"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Ľ¨ĽÇĽŁĽżĄ˘ĽˇĽ§ĽëĄ˘ĽŐĽĄĽ¤Ľë´ŘϢĽÄĄźĽëĄ˘ĽżĄźĽßĽĘĽë"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "gnucash¤Ę¤É¤Î˛Čˇ×´ÉÍýĽ˝ĽŐĽČ"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "¸ÄżÍžđĘó´ÉÍý"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "ĽŢĽëĽÁĽáĽÇĽŁĽ˘ĄĄCD ¤ňžĆ¤Ż"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "˛ĘłŘĽďĄźĽŻĽšĽĆĄźĽˇĽçĽó"
-
-#~ msgid "About"
-#~ msgstr "žđĘó"
-
-#~ msgid " Help "
-#~ msgstr " ĽŘĽëĽ× "
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr ""
-#~ "ĽŤĄźĽÍĽë¤ËÂĐąţ¤ˇ¤żĽŤĄźĽÍĽëĽâĽ¸ĽĺĄźĽë¤ňĽ˘ĽŻĽťĽš¤Ç¤­¤Ţ¤ť¤óĄĘĽŐĽĄĽ¤Ľë%s¤Ź¤˘¤ę"
-#~ "¤Ţ¤ť¤ó)"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr ""
-#~ "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,-*-fixed-medium-r-"
-#~ "normal--24-*-100-100-c-*-jisx0208.1983-0,*"
-
-#~ msgid "None"
-#~ msgstr "¤Ę¤ˇ"
-
-#~ msgid "Choose a default printer!"
-#~ msgstr "ĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŞ"
-
-#~ msgid ""
-#~ "With remote CUPS servers, you do not have to configure any printer here; "
-#~ "CUPS servers inform your machine automatically about their printers. All "
-#~ "printers known to your machine currently are listed in the \"Default "
-#~ "printer\" field. Choose the default printer for your machine there and "
-#~ "click the \"Apply/Re-read printers\" button. Click the same button to "
-#~ "refresh the list (it can take up to 30 seconds after the start of CUPS "
-#~ "until all remote printers are visible). When your CUPS server is in a "
-#~ "different network, you have to give the CUPS server IP address and "
-#~ "optionally the port number to get the printer information from the "
-#~ "server, otherwise leave these fields blank."
-#~ msgstr ""
-#~ "ĽęĽâĄźĽČ¤Î CUPS ĽľĄźĽĐ¤Ę¤éĄ˘¤ł¤ł¤Ç¤ĎĽ×ĽęĽóĽżŔßÄę¤ĎÉÔÍפǤšĄŁ\n"
-#~ "CUPS ĽľĄźĽĐ¤ĎĽŢĽˇĽó¤ËźŤĆ°ĹŞ¤ËĽ×ĽęĽóĽżžđĘó¤ňĹϤˇ¤Ţ¤šĄŁ¤¤¤ŢĄ˘\n"
-#~ "¤˘¤Ę¤ż¤ÎĽŢĽˇĽó¤ŹĂΤäƤ¤¤ëĽ×ĽęĽóĽż¤Ź \"ĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż\"\n"
-#~ "¤Ë˝Đ¤Ć¤¤¤Ţ¤šĄŁĽŢĽˇĽó¤ÎĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż¤ňÁޤó¤ÇĄ˘\n"
-#~ "\"Ľ×ĽęĽóĽż¤ňĹŹÍŃ/şĆĆÉšţ\" ĽÜĽżĽó¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ°ěÍ÷¤Îššżˇ\n"
-#~ "¤Ë¤â¤ł¤ÎĽÜĽżĽó¤ň˛Ą¤ˇ¤Ţ¤šĄĘĽęĽâĄźĽČĽ×ĽęĽóĽż¤Ź¸Ť¤¨¤ë¤Ţ¤ÇĄ˘CUPS \n"
-#~ "łŤťĎ¤Ť¤éşÇÂç30É䍤Ť¤ę¤Ţ¤šĄŁ\n"
-#~ "CUPS ĽľĄźĽĐ¤ŹĘ̤μͼüȼ寧ĽŻ¤Ë¤˘¤ë¤Ę¤éĄ˘CUPSĽľĄźĽĐ¤ÎIPĽ˘ĽÉĽěĽš\n"
-#~ "¤ČĄ˘žěšç¤Ë¤č¤Ă¤Ć¤ĎĽÝĄźĽČČÖšć¤ňťŘÄꤡ¤Ę¤¤¤ČĽľĄźĽĐ¤Ť¤éĽ×ĽęĽóĽżžđ\n"
-#~ "Ę󤏤â¤é¤¨¤Ţ¤ť¤óĄŁ¤˝¤Ś¤Ç¤Ę¤ą¤ě¤ĐĄ˘¤ł¤ł¤ĎśőÍó¤Ë¤ˇ¤Ţ¤šĄŁ"
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Ľ×ĽęĽóĽż¤ňĹŹÍŃ/şĆĆÉšţ"
-
-#~ msgid "Configure printing system"
-#~ msgstr "°őşţĽˇĽšĽĆĽŕŔßÄę"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "ĽâĽ¸ĽĺĄźĽë %s ¤ÎĽŞĽ×ĽˇĽçĽó¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "Low"
-#~ msgstr "Ä㤤"
-
-#~ msgid "Medium"
-#~ msgstr "¤Ű¤É¤Ű¤É"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "¤ł¤ÎĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤Ď¤Á¤ç¤Ă¤Č¤č¤Ż¤Ę¤Ă¤Ć¤¤¤ĆĄ˘ˇŮšđ¤äĽÁĽ§ĽĂĽŻ¤Ź\n"
-#~ "Áý¤¨¤Ć¤¤¤Ţ¤šĄŁ"
-
-#~ msgid "Boot mode"
-#~ msgstr "ĽÖĄźĽČĽâĄźĽÉ"
-
-#~ msgid "Export"
-#~ msgstr "Ľ¨Ľ­ĽšĽÝĄźĽČ"
-
-#~ msgid "click here"
-#~ msgstr "¤ł¤ł¤ňĽŻĽęĽĂĽŻ"
-
-#~ msgid "mount failed"
-#~ msgstr "ĽŢĽŚĽóĽČ¤ËźşÇÔ"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Linux ¤Ďťţ´Ö¤ňGMTĄ˘¤Ä¤Ţ¤ęĄÖĽ°ĽęĽËĽĂĽ¸É¸˝ŕťţĄ×¤Ç´ÉÍý¤ˇ¤Ć¤¤¤ĆĄ˘¤˝¤ě¤ň\n"
-#~ "¤˘¤Ę¤ż¤ÎÁޤó¤Ŕťţ´ÖÂӤˤ˘¤ď¤ť¤ĆĘŃ´š¤ˇ¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "You may choose to upload updated packages that have been released after "
-#~ "the\n"
-#~ "distribution has been made available. You will get security fixes or bug\n"
-#~ "fixes, but you need to have an Internet connection configured to "
-#~ "proceed.\n"
-#~ "Answer \"Yes\" to the dialog to choose an available mirror. After "
-#~ "choosing\n"
-#~ "a mirror, a packages selection tree appears to allow you to choose "
-#~ "packages\n"
-#~ "individually, package that need to be updated are already selected, but "
-#~ "you\n"
-#~ "may choose to install other package or deselect packages. Press \"Install"
-#~ "\"\n"
-#~ "to install the updated package or \"Cancel\" not to upgrade them. (this\n"
-#~ "*REALLY* need to be modified according to real DrakX, if you need other\n"
-#~ "help section, let us (DrakX team developer) known)."
-#~ msgstr ""
-#~ "ĽÇĽŁĽšĽČĽęĽÓĽĺĄźĽˇĽçĽó¸řłŤťţ°Ęšß¤Ëššżˇ¤ľ¤ě¤żĽŃĽĂĽąĄźĽ¸¤ňĽ˘ĽĂĽ×ĽíĄźĽÉ\n"
-#~ "¤š¤ë¤č¤Ś¤ËťŘÄę¤Ç¤­¤Ţ¤šĄŁĽťĽ­ĽĺĽęĽĆĽŁĽŐĽŁĽĂĽŻĽš¤äĽĐĽ°ĽŐĽŁĽĂĽŻĽš¤Ź¤Ç¤­\n"
-#~ "¤Ţ¤š¤ŹĄ˘¤ł¤ě¤Ë¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ŹÉŹÍפǤšĄŁ\n"
-#~ "ťČ¤¨¤ëĽßĽéĄźĽľĽ¤ĽČ¤ňÁŞ¤Ö¤Ë¤ĎĄ˘ĽŔĽ¤Ľ˘ĽíĽ°¤Ç \"¤Ď¤¤\" ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "ĽŃĽĂĽąĄźĽ¸ÁŞÂňĽÄĽęĄź¤Ź˝Đ¤Ć¤­¤ĆĄ˘¸ÄĘ̤˼ѼüąĄźĽ¸¤ňÁŞ¤Ů¤ë¤č¤Ś¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-#~ "ššżˇ¤ŹÉŹÍפʼѼüąĄźĽ¸¤ĎÁŞÂňşŃ¤ß¤Ç¤š¤ŹĄ˘Âž¤ÎĽŃĽĂĽąĄźĽ¸¤ňÁޤó¤Ŕ¤ęĄ˘¤Ţ¤Ď¤ż\n"
-#~ "°ěÉô¤ňÁŞÂň˛ň˝ü¤Ç¤­¤Ţ¤šĄŁššżˇĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ë¤Ď \"Ľ¤ĽóĽšĽČĄźĽë"
-#~ "\"\n"
-#~ "¤ň˛Ą¤ˇĄ˘ššżˇ¤ˇ¤Ę¤¤¤Ę¤é \"Ľ­ĽăĽóĽťĽë\" ¤ň˛Ą¤ˇ¤Ţ¤š (¤ł¤ě¤ĎËÜĘŞ¤Î DrakXĹŞ\n"
-#~ "¤Ë¤ĎŔäÂФËĘŃšš¤š¤Ů¤­¤ÇĄ˘¤â¤ˇÂž¤ÎĽŘĽëĽ×¤ŹÉŹÍפʤ饢DrakXłŤČŻĽÁĄźĽŕ¤Ţ¤Ç\n"
-#~ "¤´°ěĘó¤ňĄŁ"
-
-#~ msgid ""
-#~ "To know about the options available for the current printer read either "
-#~ "the list shown below or click on the \"Print option list\" button. %s\n"
-#~ "\n"
-#~ msgstr ""
-#~ "¤¤¤Ţ¤ÎĽ×ĽęĽóĽż¤ÇťČ¤¨¤ëĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň¸Ť¤ë¤Ë¤ĎĄ˘˛ź¤Î°ěÍ÷¤ňĆɤऍĄ˘¤˘¤ë¤¤¤Ď"
-#~ "ĄÖĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň°őşţĄ×ĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ%s\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "This %s scanner uses parallel port, which is unsupported for the moment"
-#~ msgstr ""
-#~ "¤ł¤Î %s ĽšĽ­ĽăĽĘ¤ĎĽŃĽéĽěĽëĽÝĄźĽČ¤ňťČ¤Ś¤Î¤ÇĄ˘¤¤¤Ţ¤ĎĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤Ř¤ÎŔÜÂł"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤Ť¤éŔÚĂÇ"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻŔÜÂł (LAN/Ľ¤ĽóĽżĄźĽÍĽĂĽČ)¤ÎŔßÄę"
-
-#~ msgid "authentification"
-#~ msgstr "ǧžÚ"
-
-#~ msgid "user"
-#~ msgstr "ĽćĄźĽś"
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "nfs śŚÍ­ĽęĽ˝ĄźĽš¤ÇťČ¤¨¤ë¤â¤Î¤ňĽšĽ­ĽăĽóĂć"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "ĽľĄźĽĐ %s ¤Î nfs śŚÍ­ĽęĽ˝ĄźĽš¤ÇťČ¤¨¤ë¤â¤Î¤ňĽšĽ­ĽăĽóĂć"
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "samba śŚÍ­ĽęĽ˝ĄźĽš¤ÇťČ¤¨¤ë¤â¤Î¤ňĽšĽ­ĽăĽóĂć"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "ĽľĄźĽĐ %s ¤Î samba śŚÍ­ĽęĽ˝ĄźĽš¤ÇťČ¤¨¤ë¤â¤Î¤ňĽšĽ­ĽăĽóĂć"
-
-#~ msgid "Removable media"
-#~ msgstr "ĽęĽŕĄźĽĐĽÖĽëĽáĽÇĽŁĽ˘"
-
-#~ msgid "Active"
-#~ msgstr "Ľ˘ĽŻĽĆĽŁĽÖ"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "ĄÖ%sĄ×Ľ×ĽęĽóĽż¤ŹĄ˘źĄ¤Î¤Č¤ł¤í¤Ç¸Ť¤Ä¤Ť¤ę¤Ţ¤ˇ¤ż"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "ĽíĄźĽŤĽëĽ×ĽęĽóĽżĽÇĽĐĽ¤Ľš"
-
-#~ msgid "Printer Device"
-#~ msgstr "Ľ×ĽęĽóĽżĽÇĽĐĽ¤Ľš"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "ĽÇĽĐĽ¤Ľš/ĽŐĽĄĽ¤ĽëĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "ĽęĽâĄźĽČCUPS ĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż"
-
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "ĽęĽâĄźĽČĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "ŔÜÂł¤ˇ¤Ć¤¤¤Ţ¤š..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "ŔÜÂł¤ňĘĤ¸¤Ć¤¤¤Ţ¤š..."
-
-#~ 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"
-#~ "root ¤Ë¤Ę¤Ă¤ĆĄ˘°Ę˛ź¤ňźÂšÔ¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤Ą§\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down"
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "ĽˇĽšĽĆĽŕ¤ÎŔÜÂł¤ĎŔÚĂǤľ¤ě¤Ţ¤ˇ¤żĄŁ"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽë¤š¤ëĽľĽ¤Ľş¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#~ msgid "Total size: "
-#~ msgstr "šçˇ×ĽľĽ¤Ľş: "
-
-#~ msgid "Please wait, "
-#~ msgstr "¤ˇ¤Đ¤é¤Ż¤ŞÂÔ¤Á˛ź¤ľ¤¤Ą¤"
-
-#~ msgid "Total time "
-#~ msgstr "šçˇ×ťţ´Ö "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "¤š¤Ç¤Ë¤˘¤ë X11 ¤ÎŔßÄę¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Ľ×ĽęĽóĽż¤Ź¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ëĽÇĽĐĽ¤Ľš¤Ď˛ż¤Ç¤š¤Ť\n"
-#~ "(Ăí°Ő /dev/lp0 ¤Ď LPT1: ¤Ë¤Ę¤ę¤Ţ¤š)ĄŠ\n"
-
-#~ msgid "%s"
-#~ msgstr "%s"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "ˇŮšđĄ˘ĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż¤Ď¤â¤ŚŔßÄꤏ¤š¤ó¤Ç¤¤¤Ţ¤šĄŁ\n"
-#~ "ŔßÄę¤ň¤ä¤ę¤Ę¤Ş¤ˇ¤Ţ¤š¤čĄŁ"
-
-#~ msgid "New"
-#~ msgstr "żˇľŹ"
-
-#~ msgid "Remote"
-#~ msgstr "ĽęĽâĄźĽČ"
-
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr ""
-#~ "žĺ¤ÎĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤š¤ë¤Ť\n"
-#~ "\n"
-#~ "\"New\"¤ňťČ¤¤¤Ţ¤š"
-
-#~ msgid "Use \"New\""
-#~ msgstr "\"New\"¤ňťČ¤¤¤Ţ¤š"
-
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr "žĺ¤Î°ěÍ÷¤Ë´őËž¤ÎĽ¨ĽóĽČĽę¤Ź¤Ę¤ą¤ě¤Đ¤ł¤ł¤ËĆţÎϤˇ¤Ţ¤ˇ¤ç¤Ś:"
-
-#~ msgid "Shared resource"
-#~ msgstr "śŚÍ­ĽęĽ˝ĄźĽš"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "ÉÔĚŔ (%s)Ą¤¤â¤Ă¤ČŔľłÎ¤Ë\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr "? (ĽÇĽŐĽŠĽëĽČ¤Ď %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "¤É¤ě¤Ë¤ˇ¤Ţ¤š¤ŤĄŠĄĘĽÇĽŐĽŠĽëĽČ¤Ď %sĄ˘ÁŞ¤Đ¤Ę¤¤¤Ę¤éĄÖ¤Ę¤ˇĄ×ĄË"
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "/etc/sysconfig/autologin ¤ŹĆɤߤȤęÍѤ˳Ť¤ą¤Ţ¤ť¤ó: %s"
-
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "¤Ő¤Ä¤Ś¤ĎĄÖ/dev/hdaĄ×ĄĘĽ×ĽéĽ¤ĽŢĽęĽÁĽăĽÍĽë¤ÎĽŢĽšĽżĄźĽÉĽéĽ¤ĽÖĄË¤ŤĄ˘\n"
-#~ "ĄÖ/dev/sdaĄ× (şÇ˝é¤Î SCSI ĽÇĽŁĽšĽŻ) ¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "źŤżŽ¤Ź¤˘¤ëžěšç¤Ë¤Ŕ¤ąÂž¤ÎĂͤňĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻĽÇĽĐĽ¤Ľš %s ¤ňşĆľŻĆ°¤ˇ¤Ţ¤šĄŁ¤¤¤¤¤Ç¤š¤ÍĄŠ"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ňşĆľŻĆ°¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "¤č¤í¤ˇ¤¤¤Ç¤š¤ÍĄŠ"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻĽÇĽĐĽ¤Ľš¤ňşĆľŻĆ°¤ˇ¤Ţ¤š¤č:\n"
-
-#~ msgid ""
-#~ "The following printers are configured.\n"
-#~ "You can add some more or modify the existing ones."
-#~ msgstr ""
-#~ "°Ę˛ź¤Î°őşţĽ­ĽĺĄź¤ŹŔßÄęşŃ¤ß¤Ç¤šĄŁ\n"
-#~ "°őşţĽ­ĽĺĄź¤ňÄɲåŚĘŃšš¤Ç¤­¤Ţ¤šĄŁ"
-
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "ŔÜÂłĽżĽ¤ĽŕĽ˘ĽŚĽČ (ÉĂ) [ ĽŮĄźĽżĄ˘Ě¤źÂÁő ]"
-
-#~ msgid ""
-#~ "The Mandrake Linux spreads among several CDROMs. It may be that drakX "
-#~ "has\n"
-#~ "selected packages on another CDROM than the installation CDROM, and when "
-#~ "it\n"
-#~ "needs that you put another one into the drive, it will eject the current "
-#~ "CDROM\n"
-#~ "and ask you for another one."
-#~ msgstr ""
-#~ "Mandrake Linux ¤ĎĘŁżô¤Î CDROM ¤Ë¤Ţ¤ż¤Ź¤Ă¤Ć¤¤¤Ţ¤šĄŁ¤Ç¤š¤Ť¤é drakX ¤Ź\n"
-#~ "Ľ¤ĽóĽšĽČĄźĽëCDROM°Ęł°¤ÎCDROM¤ËĆţ¤Ă¤żĽŃĽĂĽąĄźĽ¸¤ňÁޤó¤Ŕ¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ\n"
-#~ "Ę̤ÎCDROM¤ŹÉŹÍפˤʤ俤饢¤¤¤Ţ¤ÎCDROM¤ĎĽ¤Ľ¸Ľ§ĽŻĽČ¤ľ¤ě¤ĆĄ˘Ę̤ΤňĆţ¤ě¤Ć\n"
-#~ "¤Ż¤ě¤ČşĹÂĽ¤Ź¤Ç¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "drakX just skips this test unless you purposely click on the "
-#~ "corresponding step\n"
-#~ "on the left. By default, drakX sees your mouse as a two-button mouse and\n"
-#~ "emulates the third button, and knows whether it's PS/2, serial or USB.\n"
-#~ "\n"
-#~ "Perhaps this is not what you want. In that case, you just have to select "
-#~ "the\n"
-#~ "right type for your mouse in the list which appears.\n"
-#~ "\n"
-#~ "You can now test your mouse. Use buttons and wheel to verify if settings "
-#~ "are\n"
-#~ "good. If not, you can click on \"Cancel\" to choose another driver."
-#~ msgstr ""
-#~ "drakX ¤ĎĄ˘ş¸¤ÎÂĐąţ¤š¤ëĽšĽĆĽĂĽ×¤ň°ŐżŢĹŞ¤ËĽŻĽęĽĂĽŻ¤ˇ¤Ć¤¤¤Ę¤¤¸Â¤ęĄ˘¤ł¤Î\n"
-#~ "ĽĆĽšĽČ¤ň¤Č¤Đ¤ˇ¤Ţ¤šĄŁĽÇĽŐĽŠĽëĽČ¤Ç¤Ď drakX ¤ĎĄ˘ĽŢĽŚĽš¤Ź2ĽÜĽżĽóĽŢĽŚĽš¤Ŕ\n"
-#~ "¤ČČ˝ĂǤˇ¤ĆĂćąűĽÜĽżĽó¤ĎĽ¨ĽßĽĺĽěĄźĽČ¤ˇ¤Ţ¤š¤ˇĄ˘¤˝¤ě¤Ź PS/2, ĽˇĽęĽ˘ĽëĄ˘ USB\n"
-#~ "¤Î¤É¤ě¤Ť¤ĎźŤĆ°Č˝Äꤡ¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "¤Ç¤âĄ˘¤ł¤ě¤Ď¤˘¤Ę¤ż¤Î¤Ű¤ˇ¤¤ŔßÄę¤Ç¤Ď¤Ę¤¤¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ¤˝¤Îžěšç¤Ë¤ĎĄ˘\n"
-#~ "˝Đ¤Ć¤Ż¤ë°ěÍ÷¤Ť¤éĹŹŔڤʼ޼ŚĽš¤ÎźďÎŕ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "¤ľ¤˘Ą˘ĽŢĽŚĽš¤ňĽĆĽšĽČ¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽÜĽżĽó¤äĽŰĽ¤ĄźĽë¤ňťČ¤Ă¤ĆŔßÄꤏ\n"
-#~ "ÂçžćÉפŤłÎǧ¤ˇ¤Ţ¤šĄŁ¤Ŕ¤á¤Ę¤éĄÖĽ­ĽăĽóĽťĽëĄ×¤ňÁޤó¤ÇĘ̤μɼ鼤ĽĐ¤Ë¤ˇ¤Ţ¤šĄŁ"
-
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "%s ¤ňĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż¤Ë¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŞ"
-
-#~ msgid "Spooler: "
-#~ msgstr "ĽšĽ×ĄźĽé: "
-
-#~ msgid "Test the mouse here."
-#~ msgstr "ĽŢĽŚĽš¤ňĽĆĽšĽČ¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "Press next to continue."
-#~ msgstr "ĄÖźĄĄ×¤ň˛Ą¤ˇ¤ĆŔč¤ËżĘ¤ß¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "ĽÇĽŐĽŠĽëĽČ¤ÎĽéĽóĽěĽŮĽë"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "/etc/fstab ¤ňššżˇ"
-
-#~ msgid "Format all"
-#~ msgstr "Á´¤Ć¤ňĽŐĽŠĄźĽŢĽĂĽČ"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Á´¤Ć¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽŐĽŠĄźĽŢĽĂĽČ¤ˇ¤ż¸ĺ,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "¤ł¤ě¤é¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóĂć¤ÎĽÇĄźĽż¤Ďźş¤ď¤ě¤Ţ¤š"
-
-#~ msgid "Reload"
-#~ msgstr "ĽęĽíĄźĽÉ"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Îťţ¤ČĽˇĽšĽĆĽŕÍřÍŃťţ¤ËťČ¤¤¤ż¤¤¸Ŕ¸ě¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Ľ¤ĽóĽšĽČĄźĽë¤ňÂł¤ą¤ë¤Ë¤ĎĄ˘žĺ¤ÎĽéĽ¤ĽťĽóĽš¤Îžňšŕ¤ËĆą°Ő¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "žňšŕ¤ËĆą°Ő¤š¤ë¤Ę¤éĄÖĆą°Ő¤š¤ëĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "Ćą°Ő¤Ç¤­¤Ę¤ą¤ě¤ĐĄÖľńČݥפňÁŞ¤Ó¤Ţ¤šĄŁĽ¤ĽóĽšĽČĄźĽë¤Ď˝ŞÎť¤ˇĄ˘¸˝şß¤ÎŔßÄę¤Ď\n"
-#~ "¤˝¤Î¤Ţ¤Ţ¤Ç¤š"
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "žĺ¤ÎĽęĽšĽČ¤Ť¤éĄ˘źŤĘŹ¤ÎĽ­ĄźĽÜĄźĽÉÇŰĂÖ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "¤Ű¤Ť¤Î¤ł¤Č¤ĐĄĘĽ¤ĽóĽšĽČĄźĽëłŤťĎťţ¤ËÁޤó¤Ŕ¤Î¤Č¤ĎĘ̤Τł¤Č¤ĐĄË¤ňËž¤ŕ\n"
-#~ "¤Ę¤éĄ˘žĺ¤Î°ěÍ÷¤Ť¤éÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁÁ´ÉôÁŞ¤Ö¤Č¤­¤Ë¤ĎĄ˘ĄÖÁ´ÉôĄ×¤ň\n"
-#~ "ÁŞ¤Ů¤Đ¤Ŕ¤¤¤¸¤ç¤Ś¤Ö¤Ç¤šĄŁ"
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "ÁŞÂň:\n"
-#~ "\n"
-#~ " - ĽŤĽšĽżĽŢĽ¤Ľş: GNU/Linux ¤ËžÜ¤ˇ¤ą¤ě¤ĐĄ˘źŤĘŹ¤ÎĽŢĽˇĽó¤Îźç¤ĘťČ¤¤Ęý¤Ë\n"
-#~ " ¤˘¤ď¤ť¤ĆÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁžÜ¤ˇ¤Ż¤Ď°Ę˛ź¤ňť˛žČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ľ¨Ľ­ĽšĽŃĄźĽČ: ¤ł¤ě¤ĎËÜĹö¤ËGNU/Linux¤ËžÜ¤ˇ¤¤żÍ¤ŹĄ˘Čóžď¤ËĆĂźě¤Ę\n"
-#~ " Ľ¤ĽóĽšĽČĄźĽë¤ň¤ˇ¤ż¤¤žěšç¤ËÁŞ¤Ó¤Ţ¤šĄŁĄÖĽŤĽšĽżĽŢĽ¤ĽşĄ×\n"
-#~ " ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ČĆą¤¸¤ŻĄ˘źŤĘŹ¤ÎĽˇĽšĽĆĽŕ¤ÎťČ¤¤Ęý¤ňÁŞ¤Ů¤Ţ¤šĄŁ\n"
-#~ " ¤Ç¤âĄ˘´°Á´¤ËźŤżŽ¤Ź¤Ę¤¤¤Ę¤éĄ˘ŔäÂФˤł¤ě¤ĎťČ¤ď¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŞ"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "ĽŢĽˇĽó¤ÎťČ¤¤Ęý¤ÎÁŞÂňťčĄĘ¤ł¤ě¤Ď¤Ä¤Ţ¤ęĄ˘¤˘¤Ę¤ż¤ŹĽ¤ĽóĽšĽČĄźĽë¤ÎÁŞÂň¤Ç\n"
-#~ "ĄÖĽŤĽšĽżĽŕĄ×¤ŤĄÖĽ¨Ľ­ĽšĽŃĄźĽČĄ×¤ňÁޤó¤Ŕ¤éťČ¤¤¤Ţ¤šĄË¤Ď°Ę˛ź¤ÎÄ̤ę:\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽďĄźĽŻĽšĽĆĄźĽˇĽçĽó: ĽŢĽˇĽó¤ňźç¤ËĽÇĽšĽŻĽČĽĂĽ×¤Î°ěČĚÍřÍѤǝȤŚ¤Ę\n"
-#~ " ¤éĄ˘¤ł¤ě¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁĽŞĽŐĽŁĽšśČĚłĄ˘˛čÁü¤ÎĘÔ˝¸¤Ę¤É¤ÇĽŢĽˇĽó\n"
-#~ " ¤ňťČ¤Śžěšç¤Ë¤Ď¤ł¤ě¤Ç¤šĄŁĽłĽóĽŃĽ¤Ľé¤äłŤČŻÍѤμ楟ĽĆĽŁĽęĽĆĽŁ¤ĎĆţ\n"
-#~ " ¤ě¤Ţ¤ť¤óĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - łŤČŻÍŃ: ĚžÁ°¤Î¤Č¤Ş¤ęĄŁ¤ł¤ÎĽŢĽˇĽó¤ňźç¤ËĽ˝ĽŐĽČłŤČŻ¤ÇťČ¤Ś¤Î¤Ę¤éĄ˘\n"
-#~ " ¤ł¤ě¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁĽ˝ĄźĽšĽłĄźĽÉ¤ňĽłĽóĽŃĽ¤ĽëĄ˘ĽÇĽĐĽĂĽ°Ą˘Ŕ°ˇÁ\n"
-#~ " ¤ˇ¤ż¤ęĄ˘Ľ˝ĽŐĽČĽŃĽĂĽąĄźĽ¸¤ňşî¤Ă¤ż¤ę¤š¤ë¤Î¤ËťČ¤ŚĽ˝ĽŐĽČ˝¸¤Ź¤š¤Ů¤Ć\n"
-#~ " Ľ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽľĄźĽĐÍŃ: Mandrake Linux¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤č¤Ś¤Č¤ˇ¤Ć¤¤¤ëĽŢĽˇĽó¤ňĄ˘\n"
-#~ " ĽľĄźĽĐŔěÍѤǝȤŚ¤Ä¤â¤ę¤Ę¤é¤ł¤ě¤Ç¤šĄŁĽŐĽĄĽ¤ĽëĽľĄźĽĐ (NFS¤äSMB)Ą˘\n"
-#~ " Ľ×ĽęĽóĽżĽľĄźĽĐĄĘUnix¤Îlp (ĽéĽ¤ĽóĽ×ĽęĽóĽż) Ľ×ĽíĽČĽłĽë¤ŤĽŚĽŁĽóĽÉĽŚĽş\n"
-#~ " ź°¤ÎSMBˇĐÍł¤Î°őşţĄËĄ˘Ç§žÚĽľĄźĽĐ (NIS)Ą˘ĽÇĄźĽżĽŮĄźĽšĽľĄźĽĐ¤Ę¤É¤Ç¤šĄŁ\n"
-#~ " ¤ł¤Îžěšç¤Ë¤ĎĄ˘KDE¤äGNOME¤Ę¤É¤Î¤ł¤ś¤Ť¤ˇ¤¤ÂĺĘŞ¤ĎĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤ť¤óĄŁ"
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "¤Ç¤ĎĽ¤ĽóĽšĽČĄźĽëĄŚĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ˇ¤ż¤¤ĽŃĽĂĽąĄźĽ¸ˇ˛¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "Áޤó¤Ŕ¤éĄ˘DrakX ¤Î¤Ű¤Ś¤ÇĄ˘¤˝¤ě¤ňĽ¤ĽóĽšĽČĄźĽë¤š¤ë¤Ŕ¤ą¤Î͞;¤Ź¤˘¤ë¤Ť\n"
-#~ "ĽÁĽ§ĽĂĽŻ¤ˇ¤Ţ¤šĄŁÉÔ­¤Ę¤éˇŮšđ¤ň˝Đ¤ˇ¤Ţ¤šĄŁ¤˝¤ě¤Ç¤âÂł¤ą¤ż¤ą¤ě¤ĐĄ˘DrakX\n"
-#~ "¤ĎźÂşÝ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ËżĘ¤ß¤Ţ¤š¤ŹĄ˘˝ĹÍפǤʤ¤ĽŃĽĂĽąĄźĽ¸¤ĎÍî¤Č¤ˇ¤Ţ¤šĄŁ\n"
-#~ "°ěÍ÷¤ÎşÇ¸ĺ¤ËĄÖ¸ÄĘ̤μѼüąĄźĽ¸¤ňÁŞÂňĄ×¤Č¤¤¤Ś¤Î¤Ź¤˘¤ę¤Ţ¤šĄŁ¤ł¤ě¤ň\n"
-#~ "ÁŞ¤Ö¤ČĄ˘1000¸Ä°Ęžĺ¤ÎĽŃĽĂĽąĄźĽ¸¤ň¤ş¤Ă¤Č¸Ť¤Ć¤¤¤Ż¤ł¤Č¤Ë¤Ę¤ę¤Ţ¤š¤č..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "¤ł¤ł¤Ç¤ĎĽ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤¤ĽŃĽĂĽąĄźĽ¸¤ň¸ÄĘ̤ËÁŞ¤Ů¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽŃĽĂĽąĄźĽ¸ĽŚĽŁĽóĽÉĽŚ¤Îş¸¤š¤ß¤Ë¤˘¤ëĽŞĽ×ĽˇĽçĽó¤ňĽŻĽęĽĂĽŻ¤š¤ë¤ČĄ˘ĽÄĽęĄź¤ň\n"
-#~ "¤Î¤Đ¤ˇ¤ż¤ę˝Ě¤á¤ż¤ę¤Ç¤­¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽŃĽĂĽąĄźĽ¸¤ň abc ˝ç¤ËʤŮÂؤ¨¤ż¤ą¤ě¤ĐĄ˘ĄÖabc˝ç¤ČĽ°ĽëĄźĽ×˝çŔÚ¤ęÂؤ¨Ą×\n"
-#~ "Ľ˘Ľ¤ĽłĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "°Í¸´Řˇ¸¤Ë¤Ä¤¤¤Ć¤ÎˇŮšđ¤Ź¤¤¤é¤Ę¤ą¤ě¤ĐĄ˘ĄÖ°Í¸´Řˇ¸źŤĆ°˝čÍýĄ×¤ň\n"
-#~ "ĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤ł¤ě¤ňÁŞ¤Ö¤ČĄ˘¤˘¤ëĽŃĽĂĽąĄźĽ¸¤ňÁŞÂň˛ň˝ü\n"
-#~ "¤ˇ¤ż¤éĄ˘¤˝¤ě¤Ë°Í¸¤š¤ëĽŃĽĂĽąĄźĽ¸¤â¤Ŕ¤Ţ¤Ă¤Ć˛ň˝ü¤ľ¤ě¤Ţ¤šĄŁ"
-
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "žĺľ­¤Î°ěÍ÷¤ÎCD¤Ź¤š¤Ů¤Ć¤˝¤í¤Ă¤Ć¤¤¤ě¤ĐĄ˘Ok¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "CD¤Ź°ě¤Ä¤â¤Ę¤ą¤ě¤ĐĄ˘Ľ­ĽăĽóĽťĽë¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "źę¸ľ¤Ë¤Ę¤¤CD¤Ź¤˘¤ě¤ĐĄ˘¤˝¤ě¤ňÁŞÂň¤Ť¤é¤Ď¤ş¤ˇ¤Ć¤Ť¤éOk¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤šĄŁ"
-
-#~ 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.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are installing on an Apple machine with a 1-button mouse, you "
-#~ "will\n"
-#~ "be given the opportunity to define some keyboard keys to emulate the 2nd\n"
-#~ "and 3rd mouse buttons. This will allow you to be able to access the "
-#~ "full\n"
-#~ "functionality of the mouse in both the Linux console and the X Window "
-#~ "GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have an ADB mouse, please select USB, as the Linux kernel will "
-#~ "take\n"
-#~ "care of mapping your mouse hardware correctly."
-#~ msgstr ""
-#~ "¤Ç¤ĎĽŢĽŚĽš¤ňĽĆĽšĽČ¤ˇ¤Ć¤ß¤Ţ¤ˇ¤ç¤ŚĄŁĽÜĽżĽó¤äĽŰĽ¤ĄźĽë¤ňťČ¤Ă¤Ć¤ß¤Ć\n"
-#~ "¤ł¤ÎŔßÄꤏ¤¤¤¤¤Ťťî¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽŔĽá¤Ę¤éĄÖĽ­ĽăĽóĽťĽëĄ×¤ňĽŻĽęĽĂĽŻ\n"
-#~ "¤ˇ¤ĆĘ̤μɼ鼤ĽĐ¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤â¤ˇĽ˘ĽĂĽ×Ľë¤ÎĽŢĽˇĽó¤ÇĽŢĽŚĽšĽÜĽżĽó¤Ź°ě¤Ä¤ˇ¤Ť¤Ę¤ą¤ě¤ĐĄ˘2ČÖĚܤČ3ČÖĚÜ\n"
-#~ "¤ÎĽŢĽŚĽšĽÜĽżĽó¤ňĽ¨ĽßĽĺĄźĽěĄźĽČ¤š¤ëĽ­Ąź¤ÎÁȤߚç¤ď¤ť¤ŹťŘÄę¤Ç¤­¤Ţ¤šĄŁ\n"
-#~ "¤ł¤ě¤Ç Linux ĽłĽóĽ˝ĄźĽë¤Ç¤â X ĽŚĽŁĽóĽÉĽŚ GUI ¤Ç¤âĄ˘ĽŢĽŚĽš¤ÎľĄÇ˝¤ň\n"
-#~ "´°Á´¤ËťČ¤¨¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ADB ĽŢĽŚĽš¤ňťČ¤Ă¤Ć¤¤¤ë¤Č¤­¤Ď USB ¤ňÁŞÂň¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁLinux ĽŤĄźĽÍĽë\n"
-#~ "¤Î¤Ű¤Ś¤ÇĄ˘ĽŢĽŚĽš¤ÎĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎĽŢĽĂĽÔĽóĽ°¤ň¤­¤Á¤ó¤Č˝čÍý¤ˇ¤Ţ¤šĄŁ"
-
-#~ 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 "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "ĽŢĽˇĽó¤ňĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ä LAN ¤Ë¤Ä¤Ę¤Ž¤ż¤¤¤Ę¤éĄ˘ÂĐąţ¤š¤ë\n"
-#~ "ĽŞĽ×ĽˇĽçĽó¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤Ą˘Ŕľ¤ˇ¤¤ĽŞĽ×ĽˇĽçĽó¤ňÁޤÖÁ°¤ËĄ˘¤˝¤ÎĽÇĽĐĽ¤Ľš\n"
-#~ "¤ÎĹŸť¤ň¤¤¤ě¤ĆĄ˘DrakX ¤ËźŤĆ°¸Ą˝Đ¤ľ¤ť¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ä LAN ¤ËŔÜÂł¤ˇ¤Ę¤¤¤Ę¤éĄ˘ĄÖĽÍĽĂĽČĽďĄźĽŻ¤ňťČ¤ď¤Ę¤¤Ą×¤ň\n"
-#~ "ÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽÍĽĂĽČĽďĄźĽŻŔßÄę¤ň¤˘¤Č¤Ţ¤ď¤ˇ¤Ë¤š¤ë¤ŤĄ˘¤˘¤ë¤¤¤Ď¤â¤ŚŔßÄꤡ˝Ş¤ď¤Ă¤Ć¤¤¤ë\n"
-#~ "¤Ę¤éĄÖ´°ÎťĄ×¤ňÁŞ¤Ó¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "ĽâĽÇĽŕ¤Ź¸Ą˝Đ¤Ç¤­¤Ţ¤ť¤óĄŁĽâĽÇĽŕ¤Î¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ëĽˇĽęĽ˘ĽëĽÝĄźĽČ¤ň\n"
-#~ "Áޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ť˛šÍ¤Ţ¤Ç¤ËĄ˘şÇ˝é¤ÎĽˇĽęĽ˘ĽëĽÝĄźĽČĄĘĽŚĽŁĽóĽÉĽŚĽş¤Ç¤ĎĄÖCOM1Ą×ĄË¤ĎĄ˘\n"
-#~ "Linux ¤Ç¤ĎĄÖttyS0Ą×¤Č¸Ć¤Đ¤ě¤Ţ¤šĄŁ"
-
-#~ 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 "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "¤ľ¤˘ĽŔĽ¤ĽäĽëĽ˘ĽĂĽ×¤ÎŔßÄę¤ň¤ˇ¤Ţ¤šĄŁ˛ż¤ňĆţÎϤˇ¤Ć¤¤¤¤¤Ť¤ď¤Ť¤é¤Ę¤¤Ą˘\n"
-#~ "¤Ţ¤ż¤ĎźŤżŽ¤Ź¤Ę¤¤¤Č¤­¤ĎĄ˘Ŕľ¤ˇ¤¤žđĘó¤ňĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ÎĽ×ĽíĽĐĽ¤ĽŔ¤Ë\n"
-#~ "śľ¤ď¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁDNS (ĽÍĄźĽŕĽľĄźĽĐ) žđĘó¤ň¤ł¤ł¤ÇĆţÎϤˇ¤Ę¤ą¤ě¤ĐĄ˘\n"
-#~ "¤ł¤ÎžđĘó¤ĎŔÜÂłťţ¤ËĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ÎĽ×ĽíĽĐĽ¤ĽŔ¤Ť¤éźčĆŔ¤ľ¤ě¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "ĽâĽÇĽŕ¤Źł°ÉŐ¤ą¤Ę¤éĄ˘¤¤¤ŢĹŸť¤ňĆţ¤ě¤ĆĄ˘DrakX¤ËźŤĆ°Ĺޤ˸Ą˝Đ¤ľ¤ť¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "ĽâĽÇĽŕ¤ÎĹŸť¤ňĆţ¤ě¤ĆĄ˘Ŕľ¤ˇ¤¤¤â¤Î¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ 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"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "žĺ¤ÎžđĘó¤ŹŔľ¤ˇ¤¤¤Ť¤É¤Ś¤Ť¤ď¤Ť¤é¤Ę¤¤Ą˘¤˘¤ë¤¤¤Ď˛ż¤ňĆţÎϤš¤ë¤Ť\n"
-#~ "¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘Ŕľ¤ˇ¤¤žđĘó¤ňĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ÎĽ×ĽíĽĐĽ¤ĽŔĄĘISP) ¤Ë\n"
-#~ "śľ¤ď¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁDNS (ĽÍĄźĽŕĽľĄźĽĐ) žđĘó¤ň¤ł¤ł¤ÇĆţÎϤˇ¤Ę¤ą¤ě¤ĐĄ˘\n"
-#~ "¤ł¤ÎžđĘó¤ĎŔÜÂłťţ¤ËĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ÎĽ×ĽíĽĐĽ¤ĽŔ¤Ť¤éźčĆŔ¤ľ¤ě¤Ţ¤šĄŁ"
-
-#~ 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 ""
-#~ "¤Ç¤ĎĄ˘ÉŹÍפʤéĽŰĽšĽČĚž¤ňĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤â¤ˇ¤ď¤Ť¤é¤Ę¤¤¤ŤĄ˘\n"
-#~ "˛ż¤ňĆţÎϤˇ¤Ć¤¤¤¤¤Ť¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘ISP¤ËŔľ¤ˇ¤¤žđĘó¤ňśľ¤ď¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"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 Ľ˘ĽÉĽěĽš: ¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘ĽÍĽĂĽČĽďĄźĽŻ´ÉÍýźÔ¤Ë¤­¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ " ˛ź¤ÇĄÖźŤĆ° IPĄ× ĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ö¤Ę¤éĄ˘ĆţÎϤˇ¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤\n"
-#~ "\n"
-#~ " - ĽÍĽĂĽČĽŢĽšĽŻ: ĄÖ255.255.255.0Ą×¤Ë¤ˇ¤Ć¤Ş¤Ż¤Î¤ŹĚľĆń¤Ç¤šĄŁźŤżŽ¤Ź¤Ę¤ą¤ě"
-#~ "¤Đ\n"
-#~ "ĽÍĽĂĽČĽďĄźĽŻ´ÉÍýźÔ¤Ë¤­¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - źŤĆ° IP: ĽÍĽĂĽČĽďĄźĽŻ¤Ç BOOTP ¤Ť DHCP Ľ×ĽíĽČĽłĽë¤ňťČ¤Ă¤Ć¤¤¤ż¤é\n"
-#~ "¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤ł¤ě¤ňÁŞ¤Ö¤ČĄ˘ĄÖIP Ľ˘ĽÉĽěĽšĄ×¤ňťŘÄę\n"
-#~ "¤š¤ëÉŹÍפϤ˘¤ę¤Ţ¤ť¤óĄŁźŤżŽ¤Ź¤Ę¤ą¤ě¤ĐĄ˘ĽÍĽĂĽČĽďĄźĽŻ´ÉÍýźÔ¤Ë¤­¤¤¤Ć\n"
-#~ "¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ 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 ""
-#~ "¤ľ¤ĆĄ˘ÉŹÍפʤ韍ʏ¤ÎĽŰĽšĽČĚž¤ňĆţÎϤˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "¤ď¤Ť¤é¤Ę¤¤¤ŤźŤżŽ¤Ź¤Ę¤ą¤ě¤ĐĽÍĽĂĽČĽďĄźĽŻ´ÉÍýźÔ¤Ë¤­¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ 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"
-#~ "¤ď¤Ť¤é¤Ę¤¤¤ŤźŤżŽ¤Ź¤Ę¤ą¤ě¤ĐĄ˘śő¤ą¤Ć¤Ş¤­¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#~ 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 ""
-#~ "¤Ç¤ĎĽŔĽ¤ĽäĽëĽ˘ĽĂĽ×¤ÎŔßÄę¤ň¤ˇ¤Ţ¤šĄŁ˛ż¤ňĆţÎϤˇ¤Ć¤¤¤¤¤Ť¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘\n"
-#~ "ISP¤ËŔľ¤ˇ¤¤žđĘó¤ňśľ¤ď¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ 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 ""
-#~ "Ľ×ĽíĽ­Ľˇ¤ňťČ¤Ś¤Ę¤éĄ˘¤ł¤ł¤ÇŔßÄꤡ¤Ţ¤ˇ¤ç¤ŚĄŁĽ×ĽíĽ­Ľˇ¤ňťČ¤Ś¤Ť¤É¤Ś¤Ť\n"
-#~ "¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘ĽÍĽĂĽČĽďĄźĽŻ´ÉÍýźÔ¤ŤISP¤Ë¤­¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ÎŔßÄꤏŔľ¤ˇ¤ą¤ě¤ĐĄ˘¤ł¤ł¤Ç°ĹšćĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë\n"
-#~ "¤Ç¤­¤Ţ¤šĄŁ¤Ţ¤şĽŃĽĂĽąĄźĽ¸¤ň¤Č¤Ă¤Ć¤Ż¤ëĽľĽ¤ĽČ¤ňÁޤó¤ÇĄ˘¤˝¤ě¤Ť¤éĽ¤ĽóĽšĽČĄźĽë\n"
-#~ "¤š¤ëĽŃĽĂĽąĄźĽ¸¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "¤Ę¤ŞĄ˘ĽľĽ¤ĽČ¤ÎÁŞÂň¤Č°ĹšćĽŃĽĂĽąĄźĽ¸¤ÎÁŞÂň¤ĎĄ˘źŤĘŹ¤Î¤Č¤ł¤í¤ÎËĄľŹŔŠ¤Ë¤˘¤Ă¤ż\n"
-#~ "¤â¤Î¤Ë¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "¤ľ¤ĆĄ˘źŤĘŹ¤Îľďžě˝ę¤Ë¤˘¤ď¤ť¤żĽżĽ¤ĽŕĽžĄźĽó¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#~ 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 ¤ÎĽÍĽĂĽČĽďĄźĽŻˇĐÍł¤Î¤â¤ÎĄË¤Ç"
-#~ "¤â\n"
-#~ "¤Ť¤Ţ¤¤¤Ţ¤ť¤óĄŁ"
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "°őşţ¤Ç¤­¤ë¤č¤Ś¤Ë¤ˇ¤ż¤¤¤Ę¤é¤ĐĄ˘CUPS ¤Č LPR¤Î¤É¤Á¤é¤Ť¤Î°őşţĽˇĽšĽĆĽŕ¤ň\n"
-#~ "Áޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS ¤Ďżˇ¤ˇ¤¤Ą˘śŻÎϤǽŔĆđ¤Ę Unix ÍŃ°őşţĽˇĽšĽĆĽŕ¤Ç¤š (CUPS¤Č¤¤¤Ś¤Î¤Ď\n"
-#~ "ĄÖCommon Unix Printing SystemĄ×¤ÎÎŹ)ĄŁMandrake Linux¤Ç¤Ď¤ł¤ě¤ŹĽÇĽŐĽŠĽëĽČ\n"
-#~ "¤Ç¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR ¤Ď¸Ĺ¤¤°őşţĽˇĽšĽĆĽŕ¤ÇĄ˘ŔΤΠMandrake Linux ¤ÇťČ¤Ă¤Ć¤¤¤Ţ¤ˇ¤żĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "Ľ×ĽęĽóĽż¤ňťý¤Ă¤Ć¤¤¤Ę¤ą¤ě¤ĐĄ˘ĄÖ¤Ę¤ˇĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "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"
-#~ "ĽęĽâĄźĽČ¤Î Unix ĽŢĽˇĽó¤Ë¤Ä¤Ę¤Ź¤Ă¤żĽ×ĽęĽóĽż¤ňĽ˘ĽŻĽťĽš¤ˇ¤ż¤¤žěšç¤Ë¤ĎĄ˘\n"
-#~ "ĄÖĽęĽâĄźĽČĽ×ĽęĽóĽżĄ×¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽęĽâĄźĽČ¤Î MS Windows ĽŢĽˇĽó¤Ë¤Ä¤Ę¤Ź¤Ă¤żĽ×ĽęĽóĽż¤ňĽ˘ĽŻĽťĽš¤š¤ë¤Ę¤é\n"
-#~ "(¤˘¤ë¤¤¤Ď SMB Ľ×ĽíĽČĽłĽë¤ňťČ¤Ă¤ż Unix ĽŢĽˇĽó¤ÎĽ×ĽęĽóĽżĄËĄ˘Áޤ֤ΤĎ\n"
-#~ "ĄÖSMB/Windows 95/98/NTĄ×¤Ç¤šĄŁ"
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " 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"
-#~ " śčŔÚ¤ě¤Đ¤¤¤¤¤Î¤Ç¤šĄŁ¤Ç¤š¤Ť¤éĄ˘¤â¤Ă¤Č°ŐĚŁ¤Î¤˘¤ëĚžÁ°¤Ë¤ˇ¤ż¤ą¤ě¤ĐĄ˘\n"
-#~ " ¤˝¤ě¤ň¤Ţ¤şťý¤Ă¤Ć¤­¤Ţ¤ˇ¤ç¤ŚĄŁĄÖMy printer|lpĄ×¤Č¤¤¤ŚśńšçĄŁ\n"
-#~ " ĚžÁ°¤ËĄÖlpĄ×¤Î¤Ä¤¤¤żĽ×ĽęĽóĽż¤ŹĽÇĽŐĽŠĽëĽČ¤ÎĽ×ĽęĽóĽż¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " * ŔâĚŔ: ¤ł¤ě¤Ď¤Ę¤Ż¤Ć¤â¤¤¤¤¤Ç¤š¤ŹĄ˘ĘŁżô¤ÎĽ×ĽęĽóĽż¤ňťý¤Ă¤Ć¤¤¤ż¤ęĄ˘¤Ű¤Ť"
-#~ "¤Î\n"
-#~ " ĽŢĽˇĽó¤Ź¤ł¤ÎĽ×ĽęĽóĽż¤ËĽ˘ĽŻĽťĽš¤š¤ë¤Č¤­¤ËĘŘÍř¤Ç¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " * žě˝ę: ¤â¤ˇĽ×ĽęĽóĽż¤Îžě˝ę¤Ë¤Ä¤¤¤ĆžđĘó¤ňĆţ¤ě¤ż¤ą¤ě¤ĐĄ˘¤ł¤ł¤Ë\n"
-#~ " ĆţÎϤˇ¤Ţ¤ˇ¤ç¤ŚĄĘĄÖĆ󳏥פȤŤšĽ¤­¤Ęľ­˝Ň¤Ç¤Ť¤Ţ¤¤¤Ţ¤ť¤óĄËĄŁ\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "¤ł¤ł¤Ç¤¤¤í¤¤¤ížđĘó¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ľ­ĽĺĄź¤ÎĚžÁ°: Ľ×ĽęĽóĽż¤ÎĽšĽ×ĄźĽé¤ĎĄ˘ĽÇĽŐĽŠĽëĽČ¤Ç¤ĎĄÖlpĄ×¤ňťČ¤¤¤Ţ"
-#~ "¤šĄŁ\n"
-#~ " ¤Ŕ¤Ť¤éĄÖlpĄ×¤Č¤¤¤ŚĽ×ĽęĽóĽż¤ŹÉŹÍפǤšĄŁ\n"
-#~ " ¤â¤ˇĽ×ĽęĽóĽż¤Ź°ěÂć¤Ŕ¤ą¤Ç¤âĄ˘ĚžÁ°¤ĎĘŁżôťý¤ż¤ť¤é¤ě¤Ţ¤šĄŁ¤ż¤ŔĄ˘¤˝¤ě¤ň\n"
-#~ " ĽŃĽ¤Ľ×ʸťúĄÖĄĂĄ×¤ÇśčŔÚ¤ě¤Đ¤¤¤¤¤Î¤Ç¤šĄŁ¤Ç¤š¤Ť¤éĄ˘¤â¤Ă¤Č°ŐĚŁ¤Î¤˘¤ë\n"
-#~ " ĚžÁ°¤Ë¤ˇ¤ż¤ą¤ě¤ĐĄ˘¤˝¤ě¤ň¤Ţ¤şťý¤Ă¤Ć¤­¤Ţ¤ˇ¤ç¤ŚĄŁĄÖMy printer|lpĄ×¤Č\n"
-#~ " ¤¤¤ŚśńšçĄŁ\n"
-#~ " ĚžÁ°¤ËĄÖlpĄ×¤Î¤Ä¤¤¤żĽ×ĽęĽóĽż¤ŹĽÇĽŐĽŠĽëĽČ¤ÎĽ×ĽęĽóĽż¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " * ĽšĽ×ĄźĽëĽÇĽŁĽěĽŻĽČĽę: ¤ł¤ÎĽÇĽŁĽěĽŻĽČĽę¤Ë°őşţĽ¸ĽçĽÖ¤ŹĘݸ¤ľ¤ě¤Ţ¤šĄŁ\n"
-#~ " ˛ż¤ňťČ¤Ś¤Ů¤­¤Ť¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĽÇĽŐĽŠĽëĽČ¤Î¤Ţ¤Ţ¤Ë¤ˇ¤Ć¤Ş¤­¤Ţ¤ˇ¤ç¤Ś\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ľ×ĽęĽóĽżŔÜÂł: Ľ×ĽęĽóĽż¤ŹĽŢĽˇĽó¤ËÄžŔܤĤʤŹ¤Ă¤Ć¤¤¤ëžěšç¤ĎĄ˘\n"
-#~ " ĄÖĽíĄźĽŤĽëĽ×ĽęĽóĽżĄ×¤ňÁŞ¤Ó¤Ţ¤šĄŁĽęĽâĄźĽČ¤ÎUnixĽŢĽˇĽóžĺ¤ÎĽ×ĽęĽóĽż¤ň\n"
-#~ " ťČ¤Ś¤Ë¤ĎĄ˘ĄÖĽęĽâĄźĽČlpdĽ×ĽęĽóĽżĄ×¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " ĽęĽâĄźĽČ¤ÎĽŚĽŁĽóĽÉĽŚĽşĽŢĽˇĽóĄĘ¤Ţ¤ż¤ĎSMB Ľ×ĽíĽČĽłĽëťČÍѤÎUnixĽŢĽˇĽó\n"
-#~ " žĺ¤ÎĽ×ĽęĽóĽż¤ňĽ˘ĽŻĽťĽš¤š¤ë¤Ë¤ĎĄ˘ĄÖSMB/Windows 95/98/NTĄ×¤ňÁޤӤŢ"
-#~ "¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " NetWare ĽÍĽĂĽČĽďĄźĽŻžĺ¤ÎĽ×ĽęĽóĽż¤ňĽ˘ĽŻĽťĽš¤ˇ¤ż¤ą¤ě¤ĐĄ˘\n"
-#~ " ĄÖNetWareĄ×¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Ľ×ĽęĽóĽż¤Ź¸Ą˝Đ¤Ç¤­¤Ţ¤ť¤óĄŁĽ×ĽęĽóĽż¤ŹŔÜÂł¤ľ¤ě¤żĽÇĽĐĽ¤ĽšĚž¤ňĆţÎϤˇ¤Ć\n"
-#~ "¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤Á¤Ę¤ß¤ËĄ˘Ľ×ĽęĽóĽż¤Ď¤Ő¤Ä¤Ś¤ĎşÇ˝é¤ÎĽŃĽéĽěĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ë¤â¤Î¤Ç"
-#~ "¤šĄŁ\n"
-#~ "¤ł¤ě¤ĎGNU/Linux ¤Ç¤ĎĄÖ/dev/lp0Ą×¤Ŕ¤ˇĄ˘ĽŚĽŁĽóĽÉĽŚĽş¤Ç¤ĎĄÖLPT1Ą×¤Ë¤Ę¤ę¤Ţ¤šĄŁ"
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "¤ľ¤˘žĺ¤Î°ěÍ÷¤Ť¤éźŤĘŹ¤ÎĽ×ĽęĽóĽż¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "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"
-#~ "¤˝¤ł¤ÇĘѤ¨¤é¤ě¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "¤Ç¤ĎMandrake LinuxĽˇĽšĽĆĽŕ¤ÎrootĽŃĽšĽďĄźĽÉ¤ňŔßÄꤡ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "ĽŃĽšĽďĄźĽÉ¤Ď 2 ˛óĆţÎϤˇ¤ĆĄ˘ĽżĽ¤Ľ×ĽßĽš¤Ź¤Ę¤¤¤Ť¤É¤Ś¤Ť¤ňłÎǧ¤ˇ¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "Root¤Č¤¤¤Ś¤Î¤ĎĽˇĽšĽĆĽŕ¤Î´ÉÍýźÔ¤ÇĄ˘ĽˇĽšĽĆĽŕ¤ÎŔßÄę¤ňĘѤ¨¤é¤ě¤ëÍŁ°ě¤Î\n"
-#~ "żÍĘŞ¤Ç¤šĄŁ¤Ç¤š¤Ť¤éĄ˘¤ł¤ÎĽŃĽšĽďĄźĽÉ¤ňĆţÎϤš¤ë¤Č¤­¤ĎĂí°Ő¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞ\n"
-#~ "root¸˘¸Â¤ňÉÔŔľ¤ËťČ¤Ś¤ČĄ˘¤ł¤ÎĽˇĽšĽĆĽŕ¤äĄ˘ĽÍĽĂĽČĽďĄźĽŻ¤Ç¤Ä¤Ę¤Ź¤Ă¤żÂž¤Î\n"
-#~ "ĽˇĽšĽĆĽŕ¤ä¤˝¤ÎĽÇĄźĽż¤Ë˝ĹÂç¤Ę´í¸ą¤ňľÚ¤Ü¤š¤ł¤Č¤Ë¤Ę¤ę¤Ť¤Í¤Ţ¤ť¤óĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽŃĽšĽďĄźĽÉ¤ĎĄ˘Ľ˘ĽëĽŐĽĄĽŮĽĂĽČ¤äżôťú¤ňşŽ¤ź¤ż¤â¤Î¤Ë¤ˇ¤ĆĄ˘şÇÄă¤Ç¤â 8 ʸťú\n"
-#~ "ÉŹÍפǤšĄŁ*ŔäÂФË*ĽáĽâ¤Ă¤Ć¤Ş¤¤¤ż¤ę¤ˇ¤Ć¤Ď¤¤¤ą¤Ţ¤ť¤óĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤Ç¤âÄš¤š¤Ž¤ż¤ę¤ä¤ä¤ł¤ˇ¤š¤Ž¤ż¤ę¤š¤ëĽŃĽšĽďĄźĽÉ¤âĽŔĽá¤Ç¤š¤čĄŁźŤĘŹ¤Ç¤Ď\n"
-#~ "łÚ¤Ëť×¤¤¤Ŕ¤ť¤ëÉŹÍפŹ¤˘¤ę¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
-#~ "select\n"
-#~ "\"LDAP\" (or \"NIS\") as authentication. If you don't know, ask your "
-#~ "network\n"
-#~ "administrator.\n"
-#~ "\n"
-#~ "If your computer is not connected to any administrated network, you may "
-#~ "want to\n"
-#~ "choose \"Local files\" for authentication."
-#~ msgstr ""
-#~ "ĽÍĽĂĽČĽďĄźĽŻ¤ÇǧžÚ¤Ë LDAP (¤Ţ¤ż¤Ď NIS) ¤ňťČ¤Ă¤Ć¤¤¤ë¤Ę¤éĄ˘Ç§žÚ¤Î¤Č¤ł¤í¤Ç\n"
-#~ "\"LDAP\" (¤Ţ¤ż¤Ď \"NIS\") ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘ĽÍĽĂĽČĽďĄźĽŻ\n"
-#~ "¤Î´ÉÍýźÔ¤Ë¤­¤­¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "¤â¤ˇĽłĽóĽÔĽĺĄźĽż¤Ź´ÉÍýźÔ¤Ä¤­ĽÍĽĂĽČĽďĄźĽŻ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ę¤¤¤Ę¤é\n"
-#~ "ǧžÚ¤Ë¤Ď \"ĽíĄźĽŤĽëĽŐĽĄĽ¤Ľë\" ¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "¤Ç¤Ď¤ł¤ł¤ÇĄ˘ĄÖÄĚžď¤ÎĄ×ĽćĄźĽśĽ˘ĽŤĽŚĽóĽČ¤ň¤Ä¤Ż¤ę¤Ţ¤šĄŁ\n"
-#~ "¤ł¤ě¤ĎĄÖĆø˘Ą×ĽćĄźĽśĽ˘ĽŤĽŚĽóĽČ¤Îroot ¤Č¤Ď¤Á¤Ź¤¤¤Ţ¤šĄŁ¤ł¤ÎĽˇĽšĽĆĽŕ¤ň\n"
-#~ "ťČ¤ŚżÍ¤ż¤Á¤ËĄ˘¤˝¤ě¤ž¤ěĘĚĄš¤ÎĽ˘ĽŤĽŚĽóĽČ¤ň¤Ä¤Ż¤ë¤č¤Ś¤Ë¤ˇ¤Ţ¤šĄŁłĆĽ˘ĽŤĽŚ\n"
-#~ "ĽóĽČ¤ĎĆČźŤ¤Î´Äś­ŔßÄęĄĘĽ°ĽéĽŐĽŁĽĂĽŻ´Äś­Ą˘Ľ×ĽíĽ°ĽéĽŕŔßÄę¤Ę¤ÉĄË¤ňťý¤ÁĄ˘\n"
-#~ "¤˝¤ě¤ž¤ěźŤÁ°¤ÎĄÖĽŰĄźĽŕĽÇĽŁĽěĽŻĽČĽęĄ×¤ňťý¤Ă¤Ć¤˝¤ł¤Ë¤ł¤Ś¤¤¤ŚŔßÄę¤ňĘݸ\n"
-#~ "¤ˇ¤Ć¤Ş¤­¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤Ţ¤ş¤ĎźŤĘŹÍѤμ˘ĽŤĽŚĽóĽČ¤ň¤Ä¤Ż¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞĄĄĽćĄźĽś¤Ź¤˘¤Ę¤ż°ěżÍ¤Ç¤âĄ˘\n"
-#~ "¤Ő¤Ŕ¤óĽˇĽšĽĆĽŕ¤ňťČ¤Ś¤Č¤­¤Ë¤ĎĄ˘root¤ňťČ¤Ă¤Ć¤Ď*¤¤¤ą¤Ţ¤ť¤óĄŞ*\n"
-#~ "¤ł¤ě¤ň¤ä¤ë¤ČĄ˘ĽťĽ­ĽĺĽęĽĆĽŁžĺ¤ÎĽęĽšĽŻ¤Ź¤­¤ď¤á¤ĆÂ礭¤Ż¤Ę¤ę¤Ţ¤šĄŁ¤Á¤ç¤Ă¤Č\n"
-#~ "¤ˇ¤żĽżĽ¤Ľ×ĽßĽš¤ÇĄ˘ĽˇĽšĽĆĽŕ¤ň˛ő¤š¤Ş¤˝¤ě¤â˝Đ¤Ć¤­¤Ţ¤š¤čĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤ˇ¤ż¤Ź¤Ă¤ĆĄ˘¤Ő¤Ä¤Ś¤Ď¤ł¤ł¤Ç¤Ä¤Ż¤ëĽćĄźĽśĽ˘ĽŤĽŚĽóĽČ¤ÇĽˇĽšĽĆĽŕ¤ňťČ¤¤¤Ţ¤ˇ¤ç\n"
-#~ "¤ŚĄŁroot¤ÇĽíĽ°Ľ¤Ľó¤š¤ë¤Î¤ĎĄ˘ĽˇĽšĽĆĽŕ´ÉÍý¤ČĽáĽóĽĆĽĘĽóĽš¤Î¤Č¤­¤Ŕ¤ą¤Ç¤šĄŁ"
-
-#~ 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 ""
-#~ "ľŻĆ°ĽÇĽŁĽšĽŻ¤ĎŔ§Čó¤Č¤â¤Ä¤Ż¤Ă¤Ć¤Ş¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽŢĽˇĽó¤ňľŻĆ°¤Ç¤­¤Ę¤Ż\n"
-#~ "¤Ę¤Ă¤ż¤éĄ˘¤ł¤ě¤ŹşĆĽ¤ĽóĽšĽČĄźĽë¤ť¤ş¤ËĽÇĽŁĽšĽŻ¤ňľß¤ŚÍŁ°ě¤ÎźęĂʤǤšĄŁ"
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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"
-#~ " - ĽÖĄźĽČĽÇĽĐĽ¤Ľš: ĽÖĄźĽČĽťĽŻĽż¤ňťý¤ÄĽÇĽĐĽ¤ĽšĚž¤ňŔßÄęĄĘ¤ż¤Č¤¨¤ĐĽĎĄźĽÉ\n"
-#~ "ĽÇĽŁĽšĽŻ¤ÎĽŃĄźĽĆĽŁĽˇĽçĽóĄËĄŁźŤżŽ¤Ź¤Ę¤¤¸Â¤ęĄ˘ĄÖ/dev/hdaĄ×¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽÇĽŐĽŠĽëĽČĽ¤ĽáĄźĽ¸ľŻĆ°¤ÎÂÔ¤Áťţ´Ö: ĽÖĄźĽČĽíĄźĽŔ¤ŹşÇ˝é¤ÎĽ¤ĽáĄźĽ¸¤ňľŻĆ°\n"
-#~ "¤š¤ë¤Ţ¤Ç¤ÎÂÔ¤Áťţ´Ö¤ň1/10ÉĂĂą°Ě¤ÇťŘÄꤡ¤Ţ¤šĄŁ¤ł¤ě¤ĎĄ˘Ľ­ĄźĽÜĄźĽÉ¤ŹÍ­¸ú¤Ë\n"
-#~ "¤Ę¤Ă¤Ć¤š¤°¤ËĽĎĄźĽÉĽÇĽŁĽšĽŻ¤Ť¤éľŻĆ°¤š¤ëĽˇĽšĽĆĽŕ¤Ę¤É¤ÇĘŘÍř¤Ç¤šĄŁ¤ł¤Î\n"
-#~ "ĄÖÂÔ¤Áťţ´ÖĄ×¤ŹĚľľ­Ćţ¤Ŕ¤Ă¤ż¤ęĽźĽí¤Ŕ¤Ă¤ż¤ę¤ˇ¤ż¤éĄ˘ĽÖĄźĽČĽíĄźĽŔ¤ĎÂÔ¤Á¤Ţ¤ť"
-#~ "¤óĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽÓĽÇĽŞĽâĄźĽÉĄ§ľŻĆ°ťţ¤ËťČ¤Ś VGA ĽĆĽ­ĽšĽČĽâĄźĽÉ¤ňťŘÄꤡ¤Ţ¤šĄŁťČ¤¨¤ë¤Î"
-#~ "¤Ď\n"
-#~ "°Ę˛ź¤ÎĂͤǤšĄ§\n"
-#~ "\n"
-#~ " * ĽÎĄźĽŢĽë: ÄĚžď¤Î 80x25 ¤ÎĽĆĽ­ĽšĽČĽâĄźĽÉ\n"
-#~ "\n"
-#~ " * <żôťú>: żôťú¤ËÂĐąţ¤ˇ¤żĽĆĽ­ĽšĽČĽâĄźĽÉ\n"
-#~ "\n"
-#~ " - ľŻĆ°¤Î¤ż¤Ó¤Ë \"/tmp\" ¤ňĽŻĽęĽ˘: ĽˇĽšĽĆĽŕľŻĆ°ťţ¤Ë \"/tmp\" Ćâ¤ÎÁ´ĽŐĽĄĽ¤"
-#~ "Ľë¤äĽÇĽŁĽěĽŻĽČĽę¤ň\n"
-#~ "žĂľî¤ˇ¤ż¤ą¤ě¤Đ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ÉŹÍפ˹ţ¤¸¤Ć¸ˇĚŠ¤Ę RAM ťŘÄę: ťÄÇ°¤Ę¤Ź¤éĄ˘BIOS ¤ËĽŢĽˇĽóžĺ¤Î RAM ¤Î\n"
-#~ "ŔľłÎ¤ĘÎ̤ň¤­¤ŻĘýËĄ¤ĎĹý°ě¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ¤ł¤Î¤ż¤á Linux ¤ĎĄ˘RAM¤Î\n"
-#~ "Î̤ňŔľłÎ¤Ë¸Ą˝Đ¤Ç¤­¤Ę¤¤¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ¤ł¤ÎžěšçĄ˘¤ł¤ł¤ÇŔľłÎ¤Ę RAM ¤Î\n"
-#~ "Î̤ň¤ł¤ł¤ÇťŘÄę¤Ç¤­¤Ţ¤šĄŁ¤Ę¤ŞĄ˘¸Ą˝Đ¤ľ¤ě¤żRAM¤ČźÂşÝ¤ÎRAM¤Ź 2-4 MB ¤Ű¤É\n"
-#~ "¤ş¤ě¤Ć¤¤¤ë¤Î¤Ď¤Ţ¤Ă¤ż¤ŻĚäÂę¤Ę¤¤źŤÁł¤Ę¤ł¤Č¤Ç¤šĄŁ"
-
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 ¤ĎSPARCÍѤμ֥źĽČĽíĄźĽŔ¤Ç¤šĄŁĽłĽóĽÔĽĺĄźĽżžĺ¤ÎGNU/Linux\n"
-#~ "¤Ę¤ÉłĆźďOS¤ňľŻĆ°¤Ç¤­¤Ţ¤šĄŁ\n"
-#~ "ÉáÄ̤ϥ˘¤ł¤ě¤é¤ÎOS¤ĎźŤĆ°Ĺޤˤ­¤Á¤ó¤Č¸Ą˝Đ¤ľ¤ě¤ĆĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤šĄŁ\n"
-#~ "¤ł¤ě¤ŹĽŔĽá¤Ę¤éĄ˘¤ł¤ł¤ÇźęĆ°¤ÇĽ¨ĽóĽČĽę¤ňÄɲ䡤ޤˇ¤ç¤ŚĄŁĽŃĽéĽáĄźĽż¤ň\n"
-#~ "¤Ţ¤Á¤Ź¤¨¤Ę¤¤¤č¤ŚĂí°Ő¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ž¤ÎOS¤Ë¤Ďž¤ÎżÍ¤ŹĽ˘ĽŻĽťĽš¤Ç¤­¤Ę¤¤¤č¤Ś¤Ë¤ˇ¤ż¤¤¤ł¤Č¤â¤˘¤ę¤Ţ¤šĄŁ¤ł¤Î\n"
-#~ "žěšç¤Ë¤Ď¤˝¤ÎOS¤ÎĽ¨ĽóĽČĽę¤ňşď˝ü¤ˇ¤Ć¤Ş¤­¤Ţ¤ˇ¤ç¤ŚĄŁ¤ż¤Ŕ¤ˇ¤ł¤Îžěšç¤ĎĄ˘\n"
-#~ "¤˝¤ÎOS¤ňťČ¤Ś¤Č¤­¤Ë¤ĎľŻĆ°ĽÇĽŁĽšĽŻ¤ŹÍפę¤Ţ¤š¤čĄŞ"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "SILO ¤ÎźçÍ×ĽŞĽ×ĽˇĽçĽó¤Ď°Ę˛ź¤Î¤Č¤Ş¤ę¤Ç¤š:\n"
-#~ " - ĽÖĄźĽČĽíĄźĽŔ¤ÎĆłĆţ: GNU/Linux ¤ňľŻĆ°¤š¤ë¤Î¤ËÉŹÍפȤʤëžđĘó¤ňĂÖ¤Żžě˝ę"
-#~ "¤ň\n"
-#~ "Ćţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤Ę¤Ë¤ň¤š¤ě¤Đ¤¤¤¤¤Ť¤Ď¤Ă¤­¤ę¤ČĘŹ¤Ť¤é¤Ę¤¤žěšç¤ĎĄ˘\n"
-#~ "ĄÖĽÉĽéĽ¤ĽÖ¤ÎşÇ˝é¤ÎĽťĽŻĽż(MBR)Ą×¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽÇĽŐĽŠĽëĽČĽ¤ĽáĄźĽ¸ľŻĆ°¤ÎÂÔ¤Áťţ´Ö: ĽÖĄźĽČĽíĄźĽŔ¤ŹşÇ˝é¤ÎĽ¤ĽáĄźĽ¸¤ňľŻĆ°\n"
-#~ "¤š¤ë¤Ţ¤Ç¤ÎÂÔ¤Áťţ´Ö¤ň1/10ÉĂĂą°Ě¤ÇťŘÄꤡ¤Ţ¤šĄŁ¤ł¤ě¤ĎĄ˘Ľ­ĄźĽÜĄźĽÉ¤ŹÍ­¸ú¤Ë\n"
-#~ "¤Ę¤Ă¤Ć¤š¤°¤ËĽĎĄźĽÉĽÇĽŁĽšĽŻ¤Ť¤éľŻĆ°¤š¤ëĽˇĽšĽĆĽŕ¤Ę¤É¤ÇĘŘÍř¤Ç¤šĄŁ¤ł¤Î\n"
-#~ "ĄÖÂÔ¤Áťţ´ÖĄ×¤ŹĚľľ­Ćţ¤Ŕ¤Ă¤ż¤ęĽźĽí¤Ŕ¤Ă¤ż¤ę¤ˇ¤ż¤éĄ˘ĽÖĄźĽČĽíĄźĽŔ¤ĎÂÔ¤Á¤Ţ¤ť¤óĄŁ"
-
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "¤Ç¤ĎXĽŚĽŁĽóĽÉĽŚĽˇĽšĽĆĽŕ¤ÎŔßÄę¤ň¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ¤ł¤ě¤ĎGNU/Linux GUI (Ľ°ĽéĽŐĽŁĽŤ"
-#~ "Ľë\n"
-#~ "ĽćĄźĽśĽ¤ĽóĽżĄźĽŐĽ§ĄźĽšĄË¤ÎłËż´ÉôĘŹ¤Ç¤šĄŁ¤ł¤Î¤ż¤á¤Ë¤Ď¤Ţ¤şĄ˘ĽÓĽÇĽŞĽŤĄźĽÉ¤Č\n"
-#~ "ĽâĽËĽż¤ÎŔßÄę¤ň¤ˇ¤Ţ¤šĄŁ¤ŹĄ˘ĹÓĂ楢¤Ű¤Č¤ó¤É¤ĎźŤĆ°˛˝¤ľ¤ě¤Ć¤¤¤ë¤Î¤ÇĄ˘ÄĚžď¤Ę¤é\n"
-#~ "Ăą¤ËĄ˘ˇë˛Ě¤ň¸Ť¤Ć¤˝¤ÎŔßÄę¤ňžľÇ§¤š¤ë¤Ŕ¤ą¤Ç¤š¤ß¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ŔßÄꤏ˝Ş¤ď¤Ă¤ż¤éĄ˘X¤Ź¤ż¤Á¤˘¤Ź¤ę¤Ţ¤šĄĘ¤˘¤Ę¤ż¤Ź¤˝¤Ś¤š¤ë¤Ę¤ČDrakX¤ËĚżÎᤡ¤Ę"
-#~ "¤¤\n"
-#~ "¸Â¤ęĄËĄŁ¤ł¤ě¤ÇŔßÄꤏŔľ¤ˇ¤¤¤Ť¤ňłÎǧ¤Ç¤­¤Ţ¤šĄŁŔľ¤ˇ¤Ż¤Ę¤ą¤ě¤ĐĄ˘Ěá¤Ă¤Ć¤­¤Ć\n"
-#~ "¤ä¤ę¤Ę¤Ş¤ť¤Ţ¤šĄŁ¤ł¤ě¤Ď˛żĹ٤Ǥ⚼¤­¤Ę¤Ŕ¤ą¤Ç¤­¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "X ¤ÎŔßÄꤏ¤Ş¤Ť¤ˇ¤ą¤ě¤ĐĄ˘¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňťČ¤Ă¤ĆĄ˘XĽŚĽŁĽóĽÉĽŚĽˇĽšĽĆĽŕ¤ň\n"
-#~ "Ŕľ¤ˇ¤ŻŔßÄꤡФˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Ľ°ĽéĽŐĽŁĽŤĽëĄŚĽíĽ°Ľ¤Ľó¤ŹšĽ¤­¤Ę¤éĄ˘ĄÖ¤Ď¤¤Ą×¤ňÁŞ¤Ó¤Ţ¤šĄŁ¤˝¤Ś¤Ç¤Ę¤ą¤ě¤Đ\n"
-#~ "ĄÖ¤¤¤¤¤¨Ą×¤ňÁŞ¤Ó¤Ţ¤šĄŁ"
-
-#~ msgid ""
-#~ "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"
-#~ msgstr ""
-#~ "ĽŢĽˇĽó¤ÎĽťĽ­ĽĺĽęĽĆĽŁ¤ÎĽěĽŮĽë¤ňÁŞ¤Ů¤Ţ¤šĄŁžÜ¤ˇ¤¤ŔâĚŔ¤ĎĽŢĽËĽĺĽ˘Ľë¤ňť˛žČĄŁ\n"
-#~ "´đËÜĹŞ¤Ë¤ĎĄ˘¤É¤ě¤ňÁŞ¤Ů¤Đ¤¤¤¤¤Ť¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĽÇĽŐĽŠĽëĽČ¤Î¤Ţ¤Ţ¤Ë¤ˇ¤Ţ¤šĄŁ\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "ĽˇĽšĽĆĽŕ¤ňşĆľŻĆ°¤ˇ¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "şĆľŻĆ°¤ˇ¤ż¤éĄ˘żˇ¤ˇ¤¤ Mandrake Linux ĽˇĽšĽĆĽŕ¤ŹźŤĆ°Ĺޤˤż¤Á¤˘¤Ź¤ę¤Ţ¤šĄŁ\n"
-#~ "Ę̤ÎOS¤ň¤ż¤Á¤˘¤˛¤ż¤¤¤Č¤­¤Ë¤ĎĄ˘ÄɲäÎŔâĚŔ¤ňĆɤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "linux¤ÎĘŁŔ˝ÍѤ˥˘źŤĆ°Ľ¤ĽóĽšĽČĄźĽëĽÇĽŁĽšĽŻ¤ň¤Ä¤Ż¤ę¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "ĽÁĽ§ĽłĄĘĽ×ĽíĽ°ĽéĽŢĄË"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "ĽšĽíĽĐĽ­Ľ˘ĄĘĽ×ĽíĽ°ĽéĽŢĄË"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL¤ÎŔßÄę"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Remote queue"
-#~ msgstr "ĽęĽâĄźĽČĽ­ĽĺĄź"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr "ĽęĽâĄźĽČĽ­ĽĺĄźĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#~ msgid ""
-#~ "Here you can specify any arbitrary command line into which the job should "
-#~ "be piped instead of being sent directly to a printer."
-#~ msgstr ""
-#~ "¤ł¤ł¤Ç¤ĎĄ˘Ľ¸ĽçĽÖ¤ňĽ×ĽęĽóĽż¤ËÁ÷¤ëÁ°¤ËĄ˘Ç¤°Ő¤ÎĽłĽŢĽóĽÉ¤ËĽŃĽ¤Ľ×¤š¤ë¤č¤ŚťŘÄę¤Ç"
-#~ "¤­¤Ţ¤šĄŁ"
-
-#~ msgid "Command line"
-#~ msgstr "ĽłĽŢĽóĽÉĽéĽ¤Ľó"
-
-#~ msgid "A command line must be entered!"
-#~ msgstr "ĽłĽŢĽóĽÉĽéĽ¤Ľó¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞ"
-
-#~ msgid "Option %s->{ARGS}[%s]{'comment'} must be an integer number!"
-#~ msgstr "Option %s->{ARGS}[%s]{'comment'} ¤ĎŔľżô¤Ë¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤!"
-
-#~ msgid "Option %s->{ARGS}[%s]{'comment'} must be a number!"
-#~ msgstr "Option %s->{ARGS}[%s]{'comment'} ¤Ďżôťú¤Ë¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤!"
-
-#~ msgid "Option %s->{ARGS}[%s]{'comment'} out of range!"
-#~ msgstr "Option %s->{ARGS}[%s]{'comment'} ¤ŹČĎ°Ďł°¤Ç¤š!"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "ĽęĽâĄźĽČ CUPS ĽľĄźĽĐ¤ÎžěšçĄ˘¤ł¤ł¤Ç¤ĎĽ×ĽęĽóĽż¤ÎŔßÄę¤ĎÉÔÍפǤšĄŁ\n"
-#~ "Ľ×ĽęĽóĽż¤ĎźŤĆ°¸Ą˝Đ¤ľ¤ě¤Ţ¤šĄŁ¤ż¤Ŕ¤ˇĽľĄźĽĐ¤ŹĘ̤μͼüȼ寧ĽŻžĺ¤Ë\n"
-#~ "¤˘¤ë¤ČĽŔĽá¤Ç¤šĄŁ¤ł¤Î¤Č¤­¤ĎĄ˘CUPSĽľĄźĽĐ¤ÎIPĽ˘ĽÉĽěĽš¤ČĄ˘ÉŹÍפʤé\n"
-#~ "ĽÝĄźĽČČÖšć¤ňťŘÄꤡ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#~ msgid "Enter Printer Name and Comments"
-#~ msgstr "Ľ×ĽęĽóĽż¤ÎĚžÁ°¤ČĽłĽáĽóĽČ¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "ŔßÄęĽŐĽĄĽ¤Ľë¤ÎĆâÍƤŹ˛ňźá¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "ŔßÄęĽŐĽĄĽ¤Ľë¤ŹĘѤǤš"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "ÁϤëĽ×ĽíĽŐĽŁĄźĽëĚž:"
-
-#~ msgid "Adapter"
-#~ msgstr "Ľ˘ĽŔĽ×Ľż"
-
-#~ msgid "Disable network"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ňĚľ¸ú¤Ë¤š¤ë"
-
-#~ msgid "Enable network"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ňÍ­¸ú¤Ë¤š¤ë"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤Î´Ćťë"
-
-#~ msgid "Profile "
-#~ msgstr "Ľ×ĽíĽ¤ĄźĽë "
-
-#~ msgid "Statistics"
-#~ msgstr "Ĺýˇ×"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Á÷żŽÂŽĹŮĄ§"
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "źőżŽÂŽĹŮĄ§"
-
-#~ msgid "Logs"
-#~ msgstr "ĽíĽ°"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ŘŔÜÂł"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤Ť¤éŔÚĂÇ"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤Ť¤é¤ÎŔÚĂǤ˟şÇÔ"
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤Ť¤é¤ÎŔÚĂÇ´°Îť"
-
-#~ msgid "Connection complete."
-#~ msgstr "ŔÜÂł´°Îť"
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "ŔÜÂłźşÇÔĄŁ\n"
-#~ "Mandrake ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź¤ÇŔßÄę¤ňłÎǧ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "sent: "
-#~ msgstr "Á÷żŽşŃ¤ßĄ§"
-
-#~ msgid "received: "
-#~ msgstr "źőżŽşŃ¤ßĄ§"
-
-#~ msgid "average"
-#~ msgstr "ĘżśŃ"
-
-#~ 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"
-#~ "ĽÉĽéĽ¤ĽĐ¤ňÁޤÓÄž¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (¤Ţ¤ż¤Ď ADSL) ŔÜÂł"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "CUPS ¤ÇĽ×ĽęĽóĽż¤ňĽ˘ĽŻĽťĽš¤š¤ë¤Ę¤éĄ˘ÄžŔÜ URI ¤ňťŘÄę¤Ç¤­¤Ţ¤šĄŁ"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "ASCIIĽĆĽšĽČĽÚĄźĽ¸¤ň°őşţ¤ˇ¤Ć¤ß¤ë"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "PostScriptĽĆĽšĽČĽÚĄźĽ¸¤ň°őşţ¤ˇ¤Ć¤ß¤ë"
-
-#~ msgid "Paper Size"
-#~ msgstr "Íѝ漾Ľ¤Ľş"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Ľ¸ĽçĽÖ¤Î¸ĺ¤ÇĽÚĄźĽ¸ÇӽФˇ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "UniprintĽÉĽéĽ¤ĽĐĽŞĽ×ĽˇĽçĽó"
-
-#~ msgid "Color depth options"
-#~ msgstr "ż§żźĹŮĽŞĽ×ĽˇĽçĽó"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "ĽĆĽ­ĽšĽČ¤ňPostScript¤Ç°őşţ¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "ʸťú¤ÎĽ¸ĽăĽŽĄź¤ň¤Ę¤Ş¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "˝ĐÎĎĽÚĄźĽ¸¤˘¤ż¤ę¤ÎĽÚĄźĽ¸żô"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "ş¸ąŚ¤ÎÍžÇň¤ňĽÝĽ¤ĽóĽČżôĄĘ1/72Ľ¤ĽóĽÁĄË¤ÇťŘÄę"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "žĺ˛ź¤ÎÍžÇň¤ňĽÝĽ¤ĽóĽČżôĄĘ1/72Ľ¤ĽóĽÁĄË¤ÇťŘÄę"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "¤˝¤Îž GhostScriptĽŞĽ×ĽˇĽçĽó"
-
-#~ msgid "Extra Text options"
-#~ msgstr "¤˝¤ÎžĽĆĽ­ĽšĽČĽŞĽ×ĽˇĽçĽó"
-
-#~ msgid "Reverse page order"
-#~ msgstr "şÇ¸ĺ¤ÎĽÚĄźĽ¸¤Ť¤é°őşţ"
-
-#~ msgid "CUPS starting"
-#~ msgstr "CUPS łŤťĎ"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽż¤ÎŔÜÂł¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#~ 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 ""
-#~ "Ľ×ĽęĽóĽż¤Ď¤˝¤ě¤ž¤ěĚžÁ°¤ŹÍפę¤Ţ¤šĄĘ¤ż¤Č¤¨¤Đlp)ĄŁ\n"
-#~ "¤Ű¤Ť¤Ë¤âĄ˘Ľ×ĽęĽóĽż¤ÎźďÎŕ¤äĽŢĽˇĽó¤Ř¤Î¤Ä¤Ę¤Ź¤ę¤Ť¤ż¤Ę¤É¤ÎĽŃĽéĽáĄźĽż¤Ź\n"
-#~ "ŔßÄę¤Ç¤­¤Ţ¤šĄŁ¤ł¤ÎĽ×ĽęĽóĽż¤Ď¤Ę¤ó¤Č¤¤¤ŚĚžÁ°¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ ¤˝¤ˇ¤ĆĽŢĽˇĽó¤Č¤Ď¤É"
-#~ "¤Ś¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-
-#~ 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 ""
-#~ "¤˘¤é¤ć¤ëĽ×ĽęĽóĽČĽ­ĽĺĄź(Ľ×ĽęĽóĽČĽ¸ĽçĽÖ¤Ź´ÉÍý¤ľ¤ě¤ë)¤ĎĚžÁ°(¤ż¤¤¤Ć¤¤¤Ď\n"
-#~ " lp)¤Č¤˝¤ě¤Ë´ŘϢ¤ˇ¤Ć¤¤¤ëĽšĽ×ĄźĽëĽÇĽŁĽěĽŻĽČĽę¤ŹÉŹÍפǤšĄŁ¤ł¤ÎĽ­ĽĺĄź¤Ç\n"
-#~ "ťČ¤ŚĚžÁ°¤ČĽÇĽŁĽěĽŻĽČĽę¤Ď˛ż¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ\n"
-#~ "¤Ţ¤żĽ×ĽęĽóĽż¤Ď¤É¤ŚŔÜÂł¤ľ¤ě¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Name of queue"
-#~ msgstr "Ľ­ĽĺĄź¤ÎĚžÁ°Ą§"
-
-#~ msgid "Spool directory"
-#~ msgstr "ĽšĽ×ĄźĽë¤ÎĽÇĽŁĽěĽŻĽČĽęĄ§"
-
-#~ msgid "Disable"
-#~ msgstr "Ěľ¸ú¤Ë"
-
-#~ msgid "Enable"
-#~ msgstr "Í­¸ú¤Ë"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "šâĽťĽ­ĽĺĽęĽĆĽŁĽˇĽšĽĆĽŕ¤Ë¤ˇ¤ż¤ą¤ě¤ĐĄ˘ĄÖĽˇĽăĽÉĽŚĽŐĽĄĽ¤Ľë¤ňťČ¤ŚĄ×¤Č\n"
-#~ "ĄÖMD5 ĽŃĽšĽďĄźĽÉ¤ňťČ¤ŚĄ×¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "¤â¤ˇĽÍĽĂĽČĽďĄźĽŻ¤Ç NIS ¤ňťČ¤Ă¤Ć¤¤¤ë¤Ę¤éĄÖNIS ¤ňťČ¤ŚĄ×¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĽÍĽĂĽČĽďĄźĽŻ´ÉÍýźÔ¤Ë¤­¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "yellow pages"
-#~ msgstr "Ľ¤Ľ¨ĽíĄźĽÚĄźĽ¸"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Ľ×ĽíĽĐĽ¤ĽŔ¤Î dns 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Ľ×ĽíĽĐĽ¤ĽŔ¤Î dns 2"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "¤É¤Î¤č¤Ś¤Ë¤ˇ¤ĆĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤ˇ¤Ţ¤š¤Ť?"
-
-#~ msgid "cannot fork: "
-#~ msgstr "ĽŐĽŠĄźĽŻÉÔ˛ÄÇ˝Ą§"
-
-#~ msgid "Configure..."
-#~ msgstr "ŔßÄęĂć..."
-
-#~ msgid "Selected size %d%s"
-#~ msgstr "ÁŞ¤Đ¤ě¤żĽľĽ¤ĽşĄ§%d%s"
-
-#~ msgid "Opening your connection..."
-#~ msgstr "ŔÜÂł¤ňłŤťĎ..."
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "¤ł¤ÎľŻĆ°ĽšĽŻĽęĽ×ĽČ¤ĎUSBĽŢĽŚĽšÍѤμ⼸ĽĺĄźĽë¤ňĽíĄźĽÉ¤ˇ¤Ţ¤šĄŁ"
-
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Lilo ¤ÎŔßÄę/Grub"
-
-#~ msgid "Boot style configuration"
-#~ msgstr "ľŻĆ°Ęýź°¤ÎŔßÄę"
-
-#~ 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 ""
-#~ "¤ľ¤˘Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ÎŔßÄꤏ˝Ş¤ď¤ę¤Ţ¤ˇ¤żĄŁ¤Ű¤Ť¤ÎĽŢĽˇĽó¤Ź\n"
-#~ "¤ł¤ÎĽŢĽˇĽóˇĐÍł¤ÇĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤š¤ë¤č¤Ś¤ËŔßÄę¤Ç¤­¤Ţ¤š\n"
-#~ "ĂíĄ§ĽíĄźĽŤĽëĽ¨ĽęĽ˘ĽÍĽĂĽČĽďĄźĽŻ (LAN) ¤ň¤Ä¤Ż¤ë¤Ë¤ĎĄ˘ŔěÍѤμͼüȼ寧ĽŻĽ˘ĽŔ"
-#~ "Ľ×Ľż¤ŹÍפę¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ÎśŚÍ­¤ňŔßÄꤡ¤Ţ¤š¤ŤĄŠ\n"
-
-#~ msgid "Welcome to the Internet Connection Sharing utility!"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłśŚÍ­ĽćĄźĽĆĽŁĽęĽĆĽŁ¤Ř¤č¤Ś¤ł¤˝ĄŞ"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "°Í¸´Řˇ¸¤ÎźŤĆ°˛ňˇč"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "LILO/GRUB ¤ÎŔßÄę"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "ľŻĆ°ĽÇĽŁĽšĽŻşîŔŽ"
-
-#~ msgid "Choice"
-#~ msgstr "ÁŞÂň"
-
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr "żĺĘż¤Ç¤­¤ě¤¤¤Ë¸Ť¤¨¤ëaurora"
-
-#~ msgid "vertical traditional aurora"
-#~ msgstr "˝žÍ衿¤ÎżâÄž¤Ę aurora"
-
-#~ msgid "gMonitor"
-#~ msgstr "gĽâĽËĽż"
-
-#~ 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 ""
-#~ "¤Ç¤Ď¤˝¤Îž¤ÎĽŞĽ×ĽˇĽçĽó¤ň¤¤¤Ż¤Ä¤ŤŔßÄꤡ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ " - ĽĎĄźĽÉĽÇĽŁĽšĽŻşÇĹŹ˛˝¤ň¤š¤ë: ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ĎĄ˘ĽĎĄźĽÉĽÇĽŁĽšĽŻŔ­Ç˝\n"
-#~ " ¤ň˛ţÁą¤ˇ¤Ć¤Ż¤ě¤Ţ¤š¤ŹĄ˘šâĹ٤ʼ楟ĽśŔěÍѤǤšĄŁ°ěÉô¤ÎĽÁĽĂĽ×ĽťĽĂĽČ¤Ŕ¤Č\n"
-#~ " ĽÇĽŁĽšĽŻžĺ¤ÎĽÇĄźĽż¤Ź˛ő¤ě¤Ţ¤šĄŁĽŤĄźĽÍĽë¤Ç¤âĄ˘ş¤¤Ă¤żĽÁĽĂĽ×ĽťĽĂĽČ¤ä\n"
-#~ " ĽÉĽéĽ¤ĽÖ¤ÎĽÖĽéĽĂĽŻĽęĽšĽČ¤Ďťý¤Ă¤Ć¤¤¤Ţ¤š¤ŹĄ˘Äˤ¤Ěܤˤ˘¤¤¤ż¤Ż¤Ę¤ą¤ě¤Đ\n"
-#~ " Čň¤ą¤ż¤Ű¤Ś¤ŹĚľĆń¤Ç¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤ÎÁŞÂň: ĽˇĽšĽĆĽŕ¤ÎĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤ňÁŞ¤Ů¤Ţ¤šĄŁ\n"
-#~ " žÜ¤ˇ¤Ż¤ĎĽŢĽËĽĺĽ˘Ľë¤ňť˛žČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ´đËÜĹŞ¤Ë¤ĎĄ˘¤č¤Ż¤ď¤Ť¤é¤Ę¤ą¤ě\n"
-#~ " ¤ĐĽÇĽŐĽŠĽëĽČ¤Î¤Ţ¤Ţ¤Ç¤¤¤­¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ÉŹÍפʤéŔľłÎ¤ĘRAMĽľĽ¤Ľş: ťÄÇ°¤Ę¤Ź¤é¤¤¤Ţ¤ÎĽŃĽ˝ĽłĽó¤ÎŔ¤łŚ¤Ç¤ĎĄ˘BIOS¤Ë\n"
-#~ " ĽˇĽšĽĆĽŕžĺ¤ÎRAM¤ÎÎ̤ˤĤ¤¤Ć¤Ţ¤Č¤â¤ËĘš¤ŻĘýËĄ¤Ź¤˘¤ę¤Ţ¤ť¤óĄŁ¤ł¤Îˇë˛ĚĄ˘\n"
-#~ " Linux¤ĎĽŢĽˇĽóžĺ¤ÎRAM¤ň¤­¤Á¤ó¤Č¸Ą˝Đ¤Ç¤­¤Ę¤¤¤ł¤Č¤Ź¤˘¤ę¤Ţ¤šĄŁ¤ł¤Îžěšç\n"
-#~ " ¤Ë¤ĎĄ˘Ŕľ¤ˇ¤¤Î̤ňťŘÄꤡ¤Ţ¤šĄŁ\n"
-#~ " Ăí°ŐĄ§ 2 or 4 MB ¤Ż¤é¤¤¤Î¤ş¤ě¤Ďľ¤¤Ë¤ˇ¤Ę¤Ż¤ĆÂçžćÉפǤšĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽęĽŕĄźĽĐĽÖĽëĽáĽÇĽŁĽ˘¤ÎźŤĆ°ĽŢĽŚĽóĽČ: ĽęĽŕĄźĽĐĽÖĽëĽÉĽéĽ¤ĽÖĄĘCD-ROM¤ä\n"
-#~ " ĽŐĽíĽĂĽÔĄźĄ˘ZIP¤Ę¤ÉĄË¤ňĄÖmountĄ×¤äĄÖumountĄ×ĽłĽŢĽóĽÉ¤ÇźęĆ°ĽŢĽŚĽóĽČ\n"
-#~ " ¤š¤ë¤Î¤ŹĚĚĹݤʤ饢¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "* ľŻĆ°¤Î¤ż¤Ó¤ËĄÖ/tmpĄ×¤ňśő¤Ë: ¤â¤ˇĽˇĽšĽĆĽŕ¤ňľŻĆ°¤š¤ë¤ż¤Ó¤ËĄÖ/tmpĄ×¤Î\n"
-#~ "ĽŐĽĄĽ¤Ľë¤äĽÇĽŁĽěĽŻĽČĽę¤ňžĂľî¤š¤ë¤Ë¤ĎĄ˘¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ľŻĆ°ťţ¤ËNum Lock¤ňĽŞĽó¤Ë¤š¤ë: ľŻĆ°ťţ¤ËNumber Lock¤ňĽŞĽó¤Ë¤ˇ¤ż¤ą¤ě¤Đ\n"
-#~ " ¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ňÁŞ¤Ó¤Ţ¤šĄĘĂí°ŐĄ§ĽéĽĂĽ×ĽČĽĂĽ×¤Ç¤ĎĄ˘¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤ň\n"
-#~ " ĽŞĽó¤Ë¤ˇ¤Ć¤Ď¤¤¤ą¤Ţ¤ť¤óĄŁ¤Ţ¤żĄ˘XĽŚĽŁĽóĽÉĽŚ¤Ç¤ĎNum Lock¤ĎťČ¤¨¤Ę¤¤¤ł\n"
-#~ " ¤Č¤Ź¤˘¤ę¤Ţ¤šĄËĄŁ"
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr "¤´¤á¤ó¤Ę¤ľ¤¤Ą˘ĽáĄźĽë¤ÎŔßÄę¤Ď¤Ţ¤Ŕ¤Ç¤­¤Ţ¤ť¤óĄŁ¤´ÍƟϤňĄŁ"
-
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "ĽÍĽĂĽČĽďĄźĽŻŔßÄ꼌ĽŁĽśĄźĽÉ¤Ř¤č¤Ś¤ł¤˝ĄŁ\n"
-#~ "¤É¤ÎĽłĽóĽÝĄźĽÍĽóĽČ¤ňŔßÄꤡ¤ż¤¤¤Ç¤š¤Ť?\n"
-
-#~ msgid "Internet/Network access"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ/ĽÍĽĂĽČĽďĄźĽŻ¤Ř¤ÎĽ˘ĽŻĽťĽš"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "¤˝¤Îž¤â¤í¤â¤í"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "¤˝¤Îž¤ÎźÁĚä"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "ĽšĄźĽŃĄźĽŢĽŚĽóĽČ¤Ďšâ¤¤ĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤Ç¤ĎťČ¤¨¤Ţ¤ť¤ó"
-
-#~ 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 ""
-#~ "Ăí°Ő: ¤ł¤ÎĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤Ç¤ĎĄ˘ĽłĽóĽ˝ĄźĽë¤Ç¤ÎĽëĄźĽČĽíĽ°Ľ¤Ľó¤Ď\n"
-#~ "ľö˛Ä¤ľ¤ě¤Ţ¤ť¤óĄŞ\n"
-#~ "root ¤Ë¤Ę¤ę¤ż¤¤¤Č¤­¤ĎĄ˘ĽćĄźĽś¤ÇĽíĽ°Ľ¤Ľó¤ˇ¤ĆĄÖsuĄ×¤ňťČ¤ŚÉŹÍפŹ¤˘¤ę¤Ţ¤šĄŁ\n"
-#~ "°ěČĚĹŞ¤Ë¤ĎĄ˘ĽľĄźĽĐ¤ň˝ü¤Ż˛ż¤Ť¤ŹĽŢĽˇĽó¤ňťČ¤¨¤ë¤Č´üÂÔ¤ľ¤ť¤Ę¤¤¤ż¤á¤Ç¤šĄŁ\n"
-#~ "ˇŮšđ¤ˇ¤Ţ¤ˇ¤ż¤čĄŁ"
-
-#~ 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Ą×¤ňĘÖ¤ˇ¤Ţ¤š)"
-
-#~ msgid "not connected"
-#~ msgstr "ŔÜÂł¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
-
-#~ msgid "Actions"
-#~ msgstr "¤Ő¤ë¤Ţ¤¤"
-
-#~ msgid "Scientific applications"
-#~ msgstr "˛ĘłŘĽ˘Ľ×ĽęĽąĄźĽˇĽçĽó"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "ĽľĄźĽĐĄ˘ĽŐĽĄĽ¤Ľë/°őşţ/Samba"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "ĽľĄźĽĐĄ˘DNS/DHCP"
-
-#~ msgid "First DNS Server"
-#~ msgstr "ĽŐĽĄĄźĽšĽČ DNS ĽľĄźĽĐ"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "ĽťĽŤĽóĽÉ DNS ĽľĄźĽĐ"
-
-#~ msgid "using module"
-#~ msgstr "ĽâĽ¸ĽĺĄźĽë¤ňťČÍŃ"
-
-#~ msgid "Development, Database"
-#~ msgstr "ĽÇĄźĽżĽŮĄźĽšłŤČŻÍŃ"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr "łŤČŻĄ˘Ĺýšç´Äś­"
-
-#~ msgid "Development, Standard tools"
-#~ msgstr "łŤČŻÍŃĄ˘É¸˝ŕĽÄĄźĽë"
-
-#~ msgid ""
-#~ "\n"
-#~ "Warning:\n"
-#~ "Applying the changes while running may crash your X environnement."
-#~ msgstr ""
-#~ "\n"
-#~ "ˇŮšđ:\n"
-#~ "źÂšÔĂć¤ËĘŃšš¤ňĹŹÍѤš¤ë¤ČĄ˘X ´Äś­¤ŹĽŻĽéĽĂĽˇĽĺ¤š¤ë¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ"
-
-#~ msgid ""
-#~ "\n"
-#~ "If you continue, I will shut down your %s environnement"
-#~ msgstr ""
-#~ "\n"
-#~ "Âł¤ą¤ë¤Ę¤éĄ˘%s ´Äś­¤ňĽˇĽăĽĂĽČĽŔĽŚĽó¤ˇ¤Ţ¤š"
-
-#~ msgid "eth%s"
-#~ msgstr "eth%s"
-
-#~ msgid "loopback"
-#~ msgstr "ĽëĄźĽ×ĽĐĽĂĽŻ"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "¤É¤ÎĽÖĄźĽČĽíĄźĽŔ¤ňťČ¤¤¤Ţ¤š¤Ť"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "ĆłĆţŔßÄęĽŐĽíĽĂĽÔ"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "ĽâĽÇĽŕ¤ň¸Ąş÷¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Configure an ISDN connection"
-#~ msgstr "ISDN ŔÜÂł¤ÎŔßÄę"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ňĚľ¸ú¤Ë¤š¤ë"
-
-#~ msgid "Configure local network"
-#~ msgstr "LAN ŔßÄę"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂłŔßÄ꥿LAN ŔßÄę"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ "ĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻ¤ĎŔßÄęşŃ¤ß¤Ç¤šĄŁ\n"
-#~ "°Ę˛ź¤ň¤ˇ¤ż¤¤¤Ç¤š¤ŤĄ§"
-
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "ĽŚĽŁĽśĄźĽÉ¤ňťČ¤Ă¤ĆŔßÄęĂć..."
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "˛čÁüÁŕşî"
-
-#~ msgid "Multimedia"
-#~ msgstr "ĽŢĽëĽÁĽáĽÇĽŁĽ˘"
-
-#~ msgid "Sciences"
-#~ msgstr "˛ĘłŘ"
-
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ "xchat, licq, gaim¤Ę¤É¤ÎĽÁĽăĽĂĽČÍŃĽ˝ĽŐĽČ (IRC ¤äĽ¤ĽóĽšĽżĽóĽČĽáĽĂĽťĄźĽ¸) ¤Č"
-#~ "ĽŐĽĄĽ¤ĽëĹžÁ÷ĽÄĄźĽë"
-
-#~ msgid "Communication facilities"
-#~ msgstr "ÄĚżŽ´ŘϢ"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČĽÄĄźĽë"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "ĽÇĄźĽżĽŮĄźĽšĽŻĽéĽ¤Ľ˘ĽóĽČ¤ČĽľĄźĽĐ (mysql, postgresql)"
-
-#~ msgid "Development C/C++"
-#~ msgstr "łŤČŻÍŃ C/C++"
-
-#~ msgid "Configure timezone"
-#~ msgstr "ĽżĽ¤ĽŕĽžĄźĽóŔßÄę"
-
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż 1ĄĘeth0ĄË"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "ĄĘĽÇĄźĽż¤Ź˛ő¤ě¤ë¤Ş¤˝¤ě¤Ź¤˘¤ę¤Ţ¤šĄË"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "ľŻĆ°ťţ¤Ënum lock¤ňĽŞĽó¤Ë¤š¤ë"
-
-#~ msgid "Confirm Password"
-#~ msgstr "ĽŃĽšĽďĄźĽÉ¤ÎŔßÄę"
-
-#~ msgid "DNS server:"
-#~ msgstr "DNS ĽľĄźĽĐ:"
-
-#~ msgid "Gateway device:"
-#~ msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤ĽÇĽĐĽ¤Ľš:"
-
-#~ msgid "default"
-#~ msgstr "ĽÇĽŐĽŠĽëĽČ"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "ĽˇĽšĽĆĽŕ¤ÎťČ¤¤Ęý¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽë¤š¤ëĽľĽ¤Ľş¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "diskdrake¤ňťČ¤Ś"
-
-#~ msgid "Customized"
-#~ msgstr "ĽŤĽšĽżĽŢĽ¤Ľş"
-
-#~ 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"
-#~ "ĄÖĽŃĽšĽďĄźĽÉ¤ňĽˇĽăĽÉĽŚ¤Ë¤ˇ¤Ţ¤š¤ŤĄ×¤Č¤¤¤Ă¤żźÁĚä¤ňżÖ¤Ť¤ě¤Ţ¤šĄŁ ¤ł¤Î¤č¤Ś¤ĘźÁ"
-#~ "Ěä¤ËĽŰĽóĽČ¤ËĹú¤¨¤é¤ě¤ë¤ó¤Ç¤š¤ŤĄŁ"
-
-#~ msgid "Use shadow file"
-#~ msgstr "ĽˇĽăĽÉĽŚĽŐĽĄĽ¤Ľë¤ňťČ¤Ś"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "MD5 ĽŃĽšĽďĄźĽÉ¤ňťČ¤Ś"
-
-#~ msgid "Search"
-#~ msgstr "¸Ąş÷"
-
-#~ msgid "Package"
-#~ msgstr "ĽŃĽĂĽąĄźĽ¸"
-
-#~ msgid "Tree"
-#~ msgstr "ĽÄĽęĄź"
-
-#~ msgid "Sort by"
-#~ msgstr "°Ę˛ź¤ÎĽ­Ąź¤ÇĽ˝ĄźĽČĄ§"
-
-#~ msgid "Category"
-#~ msgstr "źďÎŕ"
-
-#~ msgid "Installed packages"
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽëşŃ¤ß¤ÎĽŃĽĂĽąĄźĽ¸"
-
-#~ msgid "Available packages"
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤¤¤Ę¤¤ĽŃĽĂĽąĄźĽ¸"
-
-#~ msgid "Show only leaves"
-#~ msgstr "žÜşŮÉôĘŹ¤Ŕ¤ąÉ˝ź¨"
-
-#~ msgid "Expand all"
-#~ msgstr "ĽÄĽęĄź¤ň´°Á´¤Ë¤Î¤Đ¤ˇ¤­¤ë"
-
-#~ msgid "Collapse all"
-#~ msgstr "ĽÄĽęĄź¤ň´°Á´¤Ë˝Ě¤á¤ë"
-
-#~ msgid "Add location of packages"
-#~ msgstr "ĽŃĽĂĽąĄźĽ¸¤Î°ĚĂÖ¤ňÄɲĂÉ˝ź¨"
-
-#~ msgid "Update location"
-#~ msgstr "Ľ˘ĽĂĽ×ĽÇĄźĽČ¤š¤ë°ĚĂÖ"
-
-#~ msgid "Find Package"
-#~ msgstr "ĽŃĽĂĽąĄźĽ¸¤Î¸Ąş÷"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "°Ę˛ź¤ÎĽŐĽĄĽ¤Ľë¤ň´Ţ¤ŕĽŃĽĂĽąĄźĽ¸¤Î¸Ąş÷Ą§"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽëşŃ¤ß¤Č̤Ľ¤ĽóĽšĽČĄźĽë¤ňŔÚ¤ęÂؤ¨"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "ĽŃĽĂĽąĄźĽ¸¤Î°Í¸´Řˇ¸¤ňÄ´¤Ů¤Ć¤¤¤Ţ¤š"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "°Ę˛ź¤ÎĽŃĽĂĽąĄźĽ¸¤ĎĽ˘ĽóĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤ó"
-
-#~ msgid "Regexp"
-#~ msgstr "ŔľľŹÉ˝¸˝"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "¤É¤ÎĽŃĽĂĽąĄźĽ¸¤ň¤ľ¤Ź¤ˇ¤Ć¤¤¤Ţ¤š¤Ť"
-
-#~ msgid "No match"
-#~ msgstr "°ěĂפš¤ë¤â¤Î¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-
-#~ msgid "No more match"
-#~ msgstr "¤ł¤ě°Ęžĺ¤Ď¤ß¤Ä¤Ť¤ę¤Ţ¤ť¤ó"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake ¤Ď¸˝şßĄ˘ĽáĽâĽęÉÔ­¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁ\n"
-#~ "°ě˛órpmdrake¤ň¤ż¤Á¤˘¤˛¤Ę¤Ş¤ˇ¤ĆĄ˘ĽŐĽĄĽ¤Ľë¤Î¸Ąş÷¤ňÂł¤ą¤Ţ¤š¤Í"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "¤É¤ÎĽŐĽĄĽ¤Ľë¤ň¤ľ¤Ź¤ˇ¤Ć¤¤¤Ţ¤š¤Ť"
-
-#~ msgid "What are looking for?"
-#~ msgstr "¤Ę¤Ë¤ň¤ľ¤Ź¤ˇ¤Ć¤¤¤Ţ¤š¤Ť"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "ĚžÁ°¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄĘÎ㥧ĄÖĽ¨Ľ­ĽšĽČĽéĄ×ĄÖžŚÍѥץË"
-
-#~ msgid "Directory"
-#~ msgstr "ĽÇĽŁĽěĽŻĽČĽę"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "CDROM¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄĘ/mnt/cdrom¤Ë¤Ę¤Ë¤â¤˘¤ę¤Ţ¤ť¤óĄË"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "RPMĽŃĽĂĽąĄźĽ¸¤Î¤˘¤ëĽÇĽŁĽěĽŻĽČĽę¤ÎURL"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "FTP ¤Č HTTP¤Ë¤Ä¤¤¤Ć¤ĎĄ˘hdlist¤Î°ĚĂÖ¤ňťŘÄꤡ¤Ę¤Ż¤Ć¤Ď¤Ę¤ę¤Ţ¤ť¤óĄŁ\n"
-#~ "žĺ¤ÎURL¤Č¤ÎÁęÂĐ°ĚĂ֤ǝŘÄꤡ¤Ţ¤š"
-
-#~ msgid "Please submit the following information"
-#~ msgstr "°Ę˛ź¤ÎžđĘó¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s ¤Ď¤š¤Ç¤ËťČ¤ď¤ě¤Ć¤¤¤Ţ¤š"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "RPM¤ÎĽŮĄźĽš¤ňššżˇĂć"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Ľ¨ĽóĽČĽę %s ¤ňžĂ¤ˇ¤Ţ¤š"
-
-#~ msgid "Finding leaves"
-#~ msgstr "ĽÄĽęĄź¤ÎžÜşŮ¤ň¸Ąş÷Ăć"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "ĽÄĽęĄź¤ÎžÜşŮ¤ň¸Ť¤Ä¤ą¤ë¤Î¤Ďťţ´Ö¤Ź¤Ť¤Ť¤ę¤Ţ¤š"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "ISDNĽŤĄźĽÉ¤ň¤ß¤Ä¤ą¤Ţ¤ˇ¤ż:\n"
-
-#~ msgid "Other countries"
-#~ msgstr "ž¤Îšń"
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "¤˘¤Ę¤ż¤Ź¤¤¤ë¤Î¤Ď¤É¤Îšń¤Ç¤š¤ŤĄŠ"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "AlcatelĽâĽÇĽŕ"
-
-#~ msgid "ECI modem"
-#~ msgstr "ECI ĽâĽÇĽŕ"
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ "¤â¤ˇadslĽâĽÇĽŕ¤ŹalcatelŔ˝¤Ę¤éĄ˘alcatel¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤˝¤Ś¤Ç¤Ę¤ą¤ě¤Đ\n"
-#~ "ECI ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-
-#~ msgid "don't use pppoe"
-#~ msgstr "pppoe¤ňťČ¤ď¤Ę¤¤"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (˝ĹÍ×)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (¤Č¤Ć¤âÁą¤¤)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (Áą¤¤)"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "ĽŢĽŚĽš¤Ď¤É¤ÎĽˇĽęĽ˘ĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Czech"
-#~ msgstr "ĽÁĽ§Ľł"
-
-#~ msgid "Slovakian"
-#~ msgstr "ĽšĽíĽĐĽ­Ľ˘"
-
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "ipchains RPM ¤ň urpmi ¤ÇĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "dhcp RPM ¤ň urpmi ¤ÇĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "linuxconf RPM ¤ň urpmi ¤ÇĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "bind RPM ¤ň urpmi ¤ÇĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr "caching-nameserver RPM ¤ň urpmi ¤ÇĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#~ msgid ""
-#~ "The system is now connected to Internet! Congratulation.\n"
-#~ "Feel free to launch draknet at any time to setup your connection.\n"
-#~ msgstr ""
-#~ "ĽŢĽˇĽó¤ĎĚľťöĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤ľ¤ě¤Ţ¤ˇ¤żĄŁ¤Ş¤á¤Ç¤Č¤ŚĄŞ\n"
-#~ "ŔÜÂłŔßÄę¤Ë¤ĎĄ˘¤¤¤Ä¤Ç¤â draknet ¤ňľŻĆ°¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\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)
-#
-#~ msgid ""
-#~ "Welcome to %s the operating system chooser!\n"
-#~ "\n"
-#~ msgstr ""
-#~ "%s operating system chooser-he youkosou!\n"
-#~ "\n"
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "LAN ¤ňşĆŔßÄꤚ¤ë"
-
-#~ msgid ""
-#~ " Introduction\n"
-#~ "\n"
-#~ "The operating system and the different components available in the "
-#~ "Mandrake Linux distribution \n"
-#~ "shall be called the \"Software Products\" hereafter. The Software "
-#~ "Products include, but are not \n"
-#~ "restricted to, the set of programs, methods, rules and documentation "
-#~ "related to the operating \n"
-#~ "system and the different components of the Mandrake Linux distribution.\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., 43, rue d'Aboukir, 75002 Paris - France, 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. 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"
-#~ "Some versions of the Software Products may contain components which are "
-#~ "not governed by the GPL \n"
-#~ "License or similar agreements. Each such component is then governed by "
-#~ "the terms and conditions \n"
-#~ "of its own specific license. Please read carefully and comply with such "
-#~ "specific licenses before \n"
-#~ "you install, use or redistribute the said components. Such licenses will "
-#~ "in general prevent the \n"
-#~ "transfer, duplication (except for backup purposes), redistribution, "
-#~ "reverse engineering, \n"
-#~ "de-assembly, \n"
-#~ "de-compilation or modification of the component. Any breach of agreement "
-#~ "will immediately terminate \n"
-#~ "your rights under the specific license. Unless the specific license terms "
-#~ "grant you such rights, \n"
-#~ "you usually cannot install the programs on more than one system, or adapt "
-#~ "it to be used on a \n"
-#~ "network. \n"
-#~ "In doubt, please contact directly the distributor or editor of the "
-#~ "component. Transfer to third \n"
-#~ "parties or copying of such components including the documentation is "
-#~ "usually forbidden.\n"
-#~ "\n"
-#~ "\n"
-#~ "3. 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,\n"
-#~ "by all means and for all purposes.\n"
-#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
-#~ "MandrakeSoft S.A. All rights \n"
-#~ "are \n"
-#~ "reserved. The duplication is forbidden without prior written consent by "
-#~ "MandrakeSoft S.A.\n"
-#~ "\n"
-#~ "\n"
-#~ "4. Limited Warranty\n"
-#~ "\n"
-#~ "The Software Products and attached documentation are provided \"as is\", "
-#~ "with no warranty, to the \n"
-#~ "extent permitted by law. Should the Software Products be defective, "
-#~ "MandrakeSoft S.A. will at its \n"
-#~ "own will either replace the Software Products, or reimburse the paid "
-#~ "fee.\n"
-#~ "This limited warranty is void if you fail to comply to the "
-#~ "recommendations, instructions and \n"
-#~ "conditions \n"
-#~ "of use listed in the documentation or license agreements of the Software "
-#~ "Products.\n"
-#~ "To the extent permitted by law, MandrakeSoft S.A. will in no "
-#~ "circumstances be liable for any \n"
-#~ "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"
-#~ "judgement, or any other consequential loss) arising out of the use or "
-#~ "inability to use the \n"
-#~ "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 \n"
-#~ "damages for loss of business, interruption of business, financial loss, "
-#~ "legal fees and penalties \n"
-#~ "resulting from a court judgement, or any other consequential loss) "
-#~ "arising out of the possession \n"
-#~ "and \n"
-#~ "use of software components or arising out of downloading software "
-#~ "components from one of \n"
-#~ "Mandrake Linux \n"
-#~ "sites which are prohibited or restricted in some countries by local "
-#~ "laws. This limited liability \n"
-#~ "applies to, but is not restricted to, the strong cryptography components "
-#~ "included in the Software \n"
-#~ "Products.\n"
-#~ "\n"
-#~ "\n"
-#~ "5. Governing Laws \n"
-#~ "\n"
-#~ "If any portion of this agreement is held void, illegal or inapplicable by "
-#~ "a court judgement, 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, \n"
-#~ "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"
-#~ "43, rue d'Aboukir, 75002 Paris - France\n"
-#~ msgstr ""
-#~ " Introduction\n"
-#~ "\n"
-#~ "The operating system and the different components available in the "
-#~ "Mandrake Linux distribution \n"
-#~ "shall be called the \"Software Products\" hereafter. The Software "
-#~ "Products include, but are not \n"
-#~ "restricted to, the set of programs, methods, rules and documentation "
-#~ "related to the operating \n"
-#~ "system and the different components of the Mandrake Linux distribution.\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., 43, rue d'Aboukir, 75002 Paris - France, 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. 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"
-#~ "Some versions of the Software Products may contain components which are "
-#~ "not governed by the GPL \n"
-#~ "License or similar agreements. Each such component is then governed by "
-#~ "the terms and conditions \n"
-#~ "of its own specific license. Please read carefully and comply with such "
-#~ "specific licenses before \n"
-#~ "you install, use or redistribute the said components. Such licenses will "
-#~ "in general prevent the \n"
-#~ "transfer, duplication (except for backup purposes), redistribution, "
-#~ "reverse engineering, \n"
-#~ "de-assembly, \n"
-#~ "de-compilation or modification of the component. Any breach of agreement "
-#~ "will immediately terminate \n"
-#~ "your rights under the specific license. Unless the specific license terms "
-#~ "grant you such rights, \n"
-#~ "you usually cannot install the programs on more than one system, or adapt "
-#~ "it to be used on a \n"
-#~ "network. \n"
-#~ "In doubt, please contact directly the distributor or editor of the "
-#~ "component. Transfer to third \n"
-#~ "parties or copying of such components including the documentation is "
-#~ "usually forbidden.\n"
-#~ "\n"
-#~ "\n"
-#~ "3. 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,\n"
-#~ "by all means and for all purposes.\n"
-#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
-#~ "MandrakeSoft S.A. All rights \n"
-#~ "are \n"
-#~ "reserved. The duplication is forbidden without prior written consent by "
-#~ "MandrakeSoft S.A.\n"
-#~ "\n"
-#~ "\n"
-#~ "4. Limited Warranty\n"
-#~ "\n"
-#~ "The Software Products and attached documentation are provided \"as is\", "
-#~ "with no warranty, to the \n"
-#~ "extent permitted by law. Should the Software Products be defective, "
-#~ "MandrakeSoft S.A. will at its \n"
-#~ "own will either replace the Software Products, or reimburse the paid "
-#~ "fee.\n"
-#~ "This limited warranty is void if you fail to comply to the "
-#~ "recommendations, instructions and \n"
-#~ "conditions \n"
-#~ "of use listed in the documentation or license agreements of the Software "
-#~ "Products.\n"
-#~ "To the extent permitted by law, MandrakeSoft S.A. will in no "
-#~ "circumstances be liable for any \n"
-#~ "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"
-#~ "judgement, or any other consequential loss) arising out of the use or "
-#~ "inability to use the \n"
-#~ "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 \n"
-#~ "damages for loss of business, interruption of business, financial loss, "
-#~ "legal fees and penalties \n"
-#~ "resulting from a court judgement, or any other consequential loss) "
-#~ "arising out of the possession \n"
-#~ "and \n"
-#~ "use of software components or arising out of downloading software "
-#~ "components from one of \n"
-#~ "Mandrake Linux \n"
-#~ "sites which are prohibited or restricted in some countries by local "
-#~ "laws. This limited liability \n"
-#~ "applies to, but is not restricted to, the strong cryptography components "
-#~ "included in the Software \n"
-#~ "Products.\n"
-#~ "\n"
-#~ "\n"
-#~ "5. Governing Laws \n"
-#~ "\n"
-#~ "If any portion of this agreement is held void, illegal or inapplicable by "
-#~ "a court judgement, 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, \n"
-#~ "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"
-#~ "43, rue d'Aboukir, 75002 Paris - France\n"
-
-#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "ĽłĽóĽÔĽĺĄźĽż¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ňśŚÍ­¤š¤ë¤č¤Ś¤ËŔßÄę¤Ç¤­¤Ţ¤šĄŁ\n"
-#~ "\n"
-
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "ŔßÄꤏÁ´Éô˝Ş¤ď¤ę¤Ţ¤ˇ¤żĄŁ\n"
-
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "ÉáÄ̤μâĽÇĽŕ¤ÇĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł"
-
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "ISDN¤ňťČ¤Ă¤ĆĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł"
-
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "DSL(¤Ţ¤ż¤ĎADSL)¤ňťČ¤Ă¤ĆĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł"
-
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "ĽąĄźĽÖĽë¤ňťČ¤Ă¤ĆĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł"
-
-#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "°ěÄęťţ´ÖĄĘÉĂĄËłčĆ°¤Ź¤Ę¤¤¤ČĄ˘źŤĆ°ĹޤËĹĹĎäňŔÚ¤ę¤Ţ¤šĄŁ\n"
-#~ "ÉĂżô¤ňťŘÄꤡ¤Ţ¤ˇ¤ç¤Ś (źŤĆ°ŔÚĂǤˇ¤ż¤Ż¤Ę¤ą¤ě¤ĐśőÇň¤Î¤Ţ¤ŢĄË"
-
-#~ msgid "Germany (1TR6)"
-#~ msgstr "ĽÉĽ¤ĽÄ (1TR6)"
-
-#~ msgid "What do you wish to do?"
-#~ msgstr "¤É¤Ś¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽëĄżĽěĽšĽ­ĽĺĄź"
-
-#~ msgid "Rescue"
-#~ msgstr "ĽěĽšĽ­ĽĺĄź"
-
-#~ msgid "Which partition type do you want?"
-#~ 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 Mandrake Linux "
-#~ "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"
-#~ msgstr ""
-#~ "GNU/Linux¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ź˝é¤á¤Ć¤ŤĄ˘ĘŁżô¤ÎĽÇĽŁĽšĽČĽęĽÓĽĺĄźĽˇĽçĽó¤ä\n"
-#~ "ĽĐĄźĽ¸ĽçĽó¤ČśŚÂ¸¤ľ¤ť¤ż¤¤¤Č¤­¤Ë¤ĎĄ˘ĄÖĽ¤ĽóĽšĽČĄźĽëĄ×¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "¤š¤Ç¤ËĽ¤ĽóĽšĽČĄźĽë¤ş¤ß¤ÎMandrake Linux¤ňľßşŃ¤ˇ¤ż¤¤¤Ę¤éĄ˘ĄÖĽěĽšĽ­ĽĺĄźĄ×¤ň\n"
-#~ "ÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ÁŞÂň¤ÎĚÜ°Â:\n"
-#~ "\n"
-#~ " - Á´źŤĆ°(żäžŠ): GNU/Linux¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ź˝é¤á¤Ć¤Ę¤éĄ˘¤ł¤ě¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç"
-#~ "¤ŚĄŁ\n"
-#~ "\n"
-#~ " - ĽŤĽšĽżĽŢĽ¤Ľş: GNU/Linux ¤ËžÜ¤ˇ¤ą¤ě¤ĐĄ˘źŤĘŹ¤ÎĽŢĽˇĽó¤Îźç¤ĘťČ¤¤Ęý¤Ë\n"
-#~ " ¤˘¤ď¤ť¤ĆÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁžÜ¤ˇ¤Ż¤Ď°Ę˛ź¤ňť˛žČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ " - Ľ¨Ľ­ĽšĽŃĄźĽČ: ¤ł¤ě¤ĎËÜĹö¤ËGNU/Linux¤ËžÜ¤ˇ¤¤żÍ¤ŹĄ˘Čóžď¤ËĆĂźě¤Ę\n"
-#~ " Ľ¤ĽóĽšĽČĄźĽë¤ň¤ˇ¤ż¤¤žěšç¤ËÁŞ¤Ó¤Ţ¤šĄŁĄÖĽŤĽšĽżĽŢĽ¤ĽşĄ×\n"
-#~ " ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ČĆą¤¸¤ŻĄ˘źŤĘŹ¤ÎĽˇĽšĽĆĽŕ¤ÎťČ¤¤Ęý¤ňÁŞ¤Ů¤Ţ¤šĄŁ\n"
-#~ " ¤Ç¤âĄ˘´°Á´¤ËźŤżŽ¤Ź¤Ę¤¤¤Ę¤éĄ˘ĄÖŔäÂФ˥פł¤ě¤ĎťČ¤ď¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŞ\n"
-
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux 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 ""
-#~ "GNU/LinuxÍѤμѥźĽĆĽŁĽˇĽçĽó¤Î˝ŕČ÷¤Ź¤Ç¤­¤Ć¤¤¤ě¤ĐĄĘÁ°¤Ë GNU/Linux \n"
-#~ "¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤ęĄ˘\n"
-#~ "Ę̤μ楟ĽĆĽŁĽęĽĆĽŁ¤ÇĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşî¤Ă¤żžěšçĄËĄ˘¤É¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë\n"
-#~ "Mandrake LinuxĽˇĽšĽĆĽŕ¤ňĽ¤ĽóĽšĽČĄźĽë¤š¤ë¤Ť¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "¤â¤ˇĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşî¤Ă¤Ć¤¤¤Ę¤ą¤ě¤ĐĄ˘ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ň\n"
-#~ "¤ł¤ł¤Çşî¤ę¤Ţ¤šĄŁĽŃĄźĽĆĽŁĽˇĽçĽó¤Č¤¤¤Ś¤Î¤ĎĄ˘ĽłĽóĽÔĽĺĄźĽż¤ÎĽĎĄźĽÉĽÇĽŁĽšĽŻ\n"
-#~ "¤ňĚÜĹŞ¤Ë¤˘¤ď¤ť¤ĆĎŔÍýĹŞ¤ËśčŔڤ뤳¤Č¤Ç¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "żˇ¤ˇ¤ŻĽŃĄźĽĆĽŁĽˇĽçĽó¤ň¤Ä¤Ż¤ë¤Ę¤éĄ˘ĄÖźŤĆ°łä¤ęĹö¤ĆĄ×¤ňÁŞ¤Ů¤ĐĄ˘źŤĆ°ĹޤË\n"
-#~ "LinuxÍѤμѥźĽĆĽŁĽˇĽçĽó¤Ź¤Ç¤­¤˘¤Ź¤ę¤Ţ¤šĄŁĽŃĄźĽĆĽŁĽˇĽçĽó¤ň¤Ä¤Ż¤ëĽĎĄźĽÉ\n"
-#~ "ĽÇĽŁĽšĽŻ¤ňÁŞ¤Ö¤Č¤­¤ĎĄ˘şÇ˝é¤ÎIDEĽÉĽéĽ¤ĽÖ¤ŹĄÖhdaĄ×Ą˘2ČÖĚܤŹĄÖhdbĄ×Ą˘şÇ˝é\n"
-#~ "¤ÎSCSIĽÉĽéĽ¤ĽÖ¤ŹĄÖsdaĄ×Ą˘¤Č¤¤¤Śśńšç¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤č¤Ż¤˘¤ëĽŃĄźĽĆĽŁĽˇĽçĽó¤ÎŔÚ¤ęĘý¤Č¤ˇ¤Ć¤ĎĄ˘rootĽŃĄźĽĆĽŁĽˇĽçĽó(/) ¤Č\n"
-#~ "bootĽŃĄźĽĆĽŁĽˇĽçĽó(/boot) ¤ňşî¤ę¤Ţ¤šĄŁroot¤ĎĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤Î\n"
-#~ "ĽÇĽŁĽěĽŻĽČĽę¤Î¤Ć¤Ă¤Ú¤ó¤ÇĄ˘/boot¤Ë¤ĎĽłĽóĽÔĽĺĄźĽż¤ÎĽšĽ¤ĽĂĽÁ¤ňĆţ¤ě¤ż\n"
-#~ "¤Č¤­¤ËľŻĆ°¤ËÉŹÍפʼռĄĽ¤Ľë¤ŹĂÖ¤¤¤Ć¤˘¤ë¤Č¤ł¤í¤Ç¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňŔÚ¤ë¤ČĄ˘¤Ő¤Ä¤Ś¤Ď¤˝¤ł¤ÎĽÇĄźĽż¤ĎÁ´ÉôžĂ¤¨¤ĆĄ˘¤â¤Č¤Ë\n"
-#~ "Ěá¤ę¤Ţ¤ť¤óĄŁ¤Ŕ¤Ť¤éĽŃĄźĽĆĽŁĽˇĽçĽó¤ňŔÚ¤ë¤Î¤ĎĄ˘˝éż´źÔ¤Ë¤Ď¤Ş¤Ă¤Ť¤Ę¤¤\n"
-#~ "¤Ç¤š¤ˇĄ˘¤Č¤Ă¤Ć¤âľ¤Čč¤ě¤š¤ë¤â¤Î¤Ç¤šĄŁ¤˝¤Ś¤Ę¤é¤Ę¤¤¤č¤Ś¤ËĄ˘DiskDrake\n"
-#~ "¤Ď¤ł¤ÎĽ×ĽíĽťĽš¤ň¤Ę¤ë¤Ů¤Ż´ĘĂą¤Ë¤ˇ¤Ţ¤šĄŁ¤Ţ¤ş¤ĎĽÉĽ­ĽĺĽáĽóĽĆĄźĽˇĽçĽó¤ň\n"
-#~ "Ćɤó¤ÇĄ˘Ŕč¤ËżĘ¤ŕÁ°¤Ë¤¸¤Ă¤Ż¤ęľ¤¤ňÍî¤ÁĂ夹¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤É¤ÎĽŞĽ×ĽˇĽçĽó¤âĄ˘Ľ­ĄźĽÜĄźĽÉ¤ÇÁŞ¤Ů¤Ţ¤šĄŁĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁŞ¤Ö¤Ë¤ĎĄ˘\n"
-#~ "ĽżĽÖ¤Čžĺ˛ź¤ÎĽŤĄźĽ˝ĽëĽ­Ąź¤ňťČ¤¤¤Ţ¤ˇ¤ç¤ŚĄŁĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁޤó¤Ŕ¤éĄ˘\n"
-#~ "źĄ¤ÎĽ­Ąź¤ŹťČ¤¨¤Ţ¤šĄ§\n"
-#~ "\n"
-#~ "- Ctrl-c żˇ¤ˇ¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşî¤ëĄĘśő¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňÁޤó¤ŔžěšçĄË\n"
-#~ "\n"
-#~ "- Ctrl-d ¤˝¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşď˝ü\n"
-#~ "\n"
-#~ "- Ctrl-m ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤ÎŔßÄę\n"
-
-#~ 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¤Ę¤ÉĄË¤Ź¤˘¤ě¤ĐĄ˘ĽŐĽŠĄźĽŢĽĂĽČ\n"
-#~ "¤ˇ¤Ć¤Ď¤¤¤ą¤Ţ¤ť¤óĄŁ"
-
-#~ 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 ""
-#~ "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"
-#~ "\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"
-#~ "\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"
-#~ "DrakX ¤Î¤ä¤Ă¤żŔßÄę¤Ç¤č¤ą¤ě¤ĐĄ˘ĄÖOKĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "ŔßÄꤏ¤Á¤Ź¤Ă¤Ć¤¤¤ż¤éĄ˘źŤĘŹ¤ÎĽŢĽŚĽš¤Ë¤¤¤Á¤Đ¤ó\n"
-#~ "śá¤¤źďÎŕ¤ÎĽŢĽŚĽš¤ňĽáĽËĽĺĄź¤Ť¤éÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽˇĽęĽ˘ĽëĽŢĽŚĽš¤ňťČ¤Ă¤Ć¤¤¤ë¤Č¤­¤Ë¤ĎĄ˘¤˝¤ě¤Ź¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ëĽˇĽęĽ˘ĽëĽÝĄźĽČ\n"
-#~ "¤âťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ 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 Mandrake Linux 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 ""
-#~ "¤ł¤ł¤Ç¤ĎĄ˘ĽíĄźĽŤĽëĽ¨ĽęĽ˘ĽÍĽĂĽČĽďĄźĽŻĄĘLANĄË¤ŤĽâĽÇĽŕ¤ÎŔßÄę¤ň¤ˇ¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "ĄÖĽíĄźĽŤĽë LANĄ×¤ňÁŞ¤Ö¤ČĄ˘DrakX ¤ĎĽŢĽˇĽó¤ÎĽ¤ĄźĽľĽÍĽĂĽČĽ˘ĽŔĽ×Ľż¤ňĂľ¤ˇ\n"
-#~ "¤Ţ¤šĄŁPCI¤ÎĽ˘ĽŔĽ×Ľż¤ĎźŤĆ°Ĺޤ˸Ť¤Ä¤Ť¤Ă¤ĆŔßÄꤾ¤ě¤ë¤Ď¤ş¤Ç¤šĄŁ\n"
-#~ "¤â¤ˇ¤ŞťČ¤¤¤ÎĽ˘ĽŔĽ×Ľż¤ŹISA ¤Ę¤éĄ˘źŤĆ°¤Ç¤Ď¸Ą˝Đ¤Ç¤­¤Ţ¤ť¤óĄŁ¤ł¤ÎžěšçĄ˘\n"
-#~ "¤˘¤Č¤Ť¤é°ěÍ÷É˝¤Ź˝Đ¤Ć¤Ż¤ë¤Î¤ÇĄ˘¤˝¤ł¤Ť¤éÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "SCSIĽ˘ĽŔĽ×Ľż¤ÎžěšçĄ˘¤Č¤ę¤˘¤¨¤şĽÉĽéĽ¤ĽĐ¤ËĽ˘ĽŔĽ×Ľż¤ňĂľ¤ľ¤ť¤Ć¤ß¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "ĽŔĽá¤Ę¤éĄ˘źŤĘŹ¤ÇĽÉĽéĽ¤ĽĐ¤ÎĽŞĽ×ĽˇĽçĽó¤ňťŘÄꤡ¤Ţ¤šĄŁťŘÄ꼪Ľ×ĽˇĽçĽó¤ĎĄ˘\n"
-#~ "źŤĘŹ¤ÎĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎÉŐ°ʸ˝ń¤ÇÄ´¤Ů¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤ł¤ÎĽŢĽˇĽó¤Ź¤š¤Ç¤Ë´ű¸¤ÎĽÍĽĂĽČĽďĄźĽŻ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ë¤Ę¤éĄ˘ĽÍĽĂĽČĽďĄźĽŻ\n"
-#~ "´ÉÍýźÔ¤ËÉŹÍפʞđĘó¤ňśľ¤ď¤Ă¤Ć¤¤¤ë¤Ď¤ş¤Ç¤š(IP Ľ˘ĽÉĽěĽšĄ˘ĽÍĽĂĽČĽďĄźĽŻ¤Î\n"
-#~ "ĽľĽÖĽŢĽšĽŻĄĘÄ̞μͼüȼ޼šĽŻĄËĄ˘ĽŰĽšĽČĚž)ĄŁźŤÂđ¤Ę¤É¤ÇźŤĘŹ¤Ŕ¤ą¤ÎĽÍĽĂĽČ\n"
-#~ "ĽďĄźĽŻ¤ňşî¤í¤Ś¤Č¤ˇ¤Ć¤¤¤ë¤Ę¤éĄ˘Ľ˘ĽÉĽěĽš¤Ę¤É¤ĎźŤĘŹ¤ÇÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĄÖĽâĽÇĽŕ¤Ë¤č¤ëĽŔĽ¤Ľ˘ĽëĽ˘ĽĂĽ×Ą×¤ňÁŞ¤Ö¤ČĄ˘ĽâĽÇĽŕ¤Ë¤č¤ëĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł\n"
-#~ "¤ŹŔßÄꤾ¤ě¤Ţ¤šĄŁDrakX ¤ĎĽâĽÇĽŕ¤ňĂľ¤ˇ¤Ţ¤š¤ŹĄ˘¤ł¤ě¤ŹźşÇÔ¤ˇ¤ż¤éĄ˘ĽâĽÇĽŕ¤Î\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"
-#~ "\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"
-#~ "\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."
-#~ msgstr ""
-#~ "GNU/Linux ¤Ç¤Ď¤¤¤í¤ó¤ĘĽ×ĽęĽóĽż¤ŹťČ¤¨¤Ţ¤šĄŁ¤ŹĄ˘¤˝¤ě¤ž¤ěŔßÄꤏ¤Á¤Ź¤¤¤Ţ¤šĄŁ\n"
-#~ "¤ż¤Ŕ¤ˇĄ˘°őşţĽšĽ×ĄźĽé¤ĎĽÇĽŐĽŠĽëĽČ¤ÎĽ×ĽęĽóĽżĚž¤Č¤ˇ¤ĆĄÖlpĄ×¤ňťČ¤¤¤Ţ¤šĄŁ\n"
-#~ "¤Ŕ¤Ť¤éĄ˘lp¤Č¤¤¤ŚĚžÁ°¤ÎĽ×ĽęĽóĽż¤Ź°ě¤Ä¤ĎÉŹÍפǤšĄŁ¤Ç¤âĄ˘°ě¤Ä¤ÎĽ×ĽęĽóĽż\n"
-#~ "¤ËĘŁżô¤ÎĚžÁ°¤ň¤Ä¤ą¤ë¤ł¤Č¤â¤Ç¤­¤Ţ¤šĄŁ¤ł¤Î¤Č¤­¤ĎĄÖ|Ą×¤ÇśčŔÚ¤ę¤Ţ¤šĄŁ\n"
-#~ "¤Ŕ¤Ť¤éĄ˘Ľ×ĽęĽóĽż¤Ë¤ď¤Ť¤ę¤ä¤š¤¤ĚžÁ°¤ň¤Ä¤ą¤ż¤ą¤ě¤ĐĄ˘¤˝¤ě¤ňŔč¤Ë˝ń¤¤¤Ć\n"
-#~ "¤Ş¤ą¤Đ¤š¤ß¤Ţ¤šĄŁ¤ż¤Č¤¨¤ĐĄÖMy Printer|lpĄ×¤Č¤¤¤Śśńšç¤ËĄŁ\n"
-#~ "ĚžÁ°¤ÎĂć¤ËĄÖlpĄ×¤Ź´Ţ¤Ţ¤ě¤ëĽ×ĽęĽóĽż¤ŹĽÇĽŐĽŠĽëĽČ¤Ë¤Ę¤ę¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "Ľ×ĽęĽóĽż¤ŹÄžŔÜĽłĽóĽÔĽĺĄźĽż¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ě¤ĐĄ˘ĄÖĽíĄźĽŤĽëĽ×ĽęĽóĽżĄ×¤ň\n"
-#~ "ÁŞ¤Ó¤Ţ¤šĄŁ¤ł¤ÎžěšçĄ˘Ľ×ĽęĽóĽż¤Î¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ëĽÝĄźĽČ¤ňťŘÄꤡ¤ĆĄ˘ĹŹŔÚ¤Ę\n"
-#~ "ĽŐĽŁĽëĽż¤ňÁŞ¤Ó¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽÍĽĂĽČĽďĄźĽŻžĺ¤Î¤Ű¤Ť¤ÎUnixĽŢĽˇĽó¤Ë¤Ä¤Ę¤Ź¤Ă¤żĽ×ĽęĽóĽż¤ňťČ¤Ś¤Ę¤éĄ˘\n"
-#~ "ĄÖĽęĽâĄźĽČ lpdĄ×¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ¤ł¤ě¤ňťČ¤Ś¤Ë¤ĎĄ˘ĽćĄźĽśĚž¤äĽŃĽšĽďĄźĽÉ¤Ď\n"
-#~ "¤¤¤ę¤Ţ¤ť¤ó¤ŹĄ˘¤˝¤ÎĽľĄźĽĐžĺ¤Î°őşţĽ­ĽĺĄź¤ÎĚžÁ°¤ŹÍפę¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "SMBĽ×ĽęĽóĽż¤ňťČ¤Ś¤Ę¤éĄĘ¤Ä¤Ţ¤ęĽÍĽĂĽČĽďĄźĽŻžĺ¤ÎĽŚĽŁĽóĽÉĽŚĽş9x/NTĽŢĽˇĽó\n"
-#~ "¤Ë¤Ä¤Ę¤Ź¤Ă¤żĽ×ĽęĽóĽż¤ňťČ¤Ś¤Č¤¤¤Ś°ŐĚŁ¤Ç¤šĄËĄ˘¤˝¤ÎĽŢĽˇĽó¤ÎSMB ĚžĄĘ¤ł¤ě\n"
-#~ "¤Ď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."
-#~ msgstr ""
-#~ "¤ł¤ł¤Ç¤ĎĄÖ¤Ď¤¤Ą×¤ČĹú¤¨¤ë¤Î¤ňśŻ¤ŻżäžŠ¤ˇ¤Ţ¤šĄŁ¸ĺ¤Ť¤éMSĽŚĽŁĽóĽÉĽŚĽş¤ň\n"
-#~ "Ľ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤éĄ˘ĽÖĄźĽČĽťĽŻĽż¤Ďžĺ˝ń¤­¤ľ¤ě¤Ţ¤šĄŁ¤˝¤Ś¤Ę¤Ă¤ż¤éĄ˘\n"
-#~ "ĽÖĄźĽČĽÇĽŁĽšĽŻ¤ňşî¤Ă¤Ć¤Ş¤Ť¤Ę¤¤¤ČĄ˘Linux¤ŹÎŠ¤Ážĺ¤˛¤é¤ě¤Ę¤Ż¤Ę¤ę¤Ţ¤š¤čĄŁ"
-
-#~ msgid "Move your wheel!"
-#~ msgstr "ĽŰĽ¤ĄźĽë¤ň¤Ţ¤ď¤ˇ¤Ć¤ß¤Ţ¤ˇ¤ç¤ŚĄŞ"
-
-#~ msgid "Forget the changes?"
-#~ msgstr "ĘŃšš¤ňÁ´ÉôÇË´ţ¤ˇ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "ĽŢĽŚĽš¤Îˇż¤Ď¤Ę¤ó¤Ç¤š¤ŤĄŠ"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "˛ňÁüĹ٤ΟŤĆ°ŔßÄę"
-
-#~ 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"
-#~ "ĽšĽŻĽęĄźĽó¤ŹĚŔĚǤˇ¤Ţ¤š...\n"
-#~ "¤¤¤ä¤Ę¤éĽâĽËĽż¤ÎĽšĽ¤ĽĂĽÁ¤ňŔڤäƤâ¤Ŕ¤¤¤¸¤ç¤Ś¤ÖĄŁ˝Ş¤ď¤Ă¤ż¤é beep ˛ť\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?"
-#~ 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 "pump"
-#~ msgstr "pump"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "dhcp-client"
-#~ msgstr "dhcp-client"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB ĽŢĽŚĽš"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB ĽŢĽŚĽšĄĘ2ĽÜĽżĽóĄË"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB ĽŢĽŚĽšĄĘ3ĽÜĽżĽó°ĘžĺĄË"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USBĽŢĽŚĽš"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USBĽŢĽŚĽšĄĘ2ĽÜĽżĽóĄË"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USBĽŢĽŚĽšĄĘ3ĽÜĽżĽó°ĘžĺĄË"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI ĽĐĽšĽŢĽŚĽš"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "ĽŢĽ¤ĽŻĽíĽ˝ĽŐĽČĄŚĽĐĽšĽŢĽŚĽš"
-
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "ĽíĽ¸ĽĆĽĂĽŻĄŚĽĐĽšĽŢĽŚĽš"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USBĽŢĽŚĽšĄĘ3ĽÜĽżĽó°ĘžĺĄË"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A °Ęžĺ(serial)"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (ĽˇĽęĽ˘Ľë)"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (ĽˇĽęĽ˘Ľë)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (ĽˇĽęĽ˘Ľë)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "ČĆÍŃĽŢĽŚĽš (ĽˇĽęĽ˘Ľë)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "ĽŢĽ¤ĽŻĽíĽ˝ĽŐĽČ¸ß´šĄĘĽˇĽęĽ˘ĽëĄË"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "ČĆÍѤÎ3ĽÜĽżĽóĽŢĽŚĽš (ĽˇĽęĽ˘Ľë)"
-
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse (ĽˇĽęĽ˘Ľë)"
-
-#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to "
-#~ "internet."
-#~ msgstr ""
-#~ "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤Ë¤ĎĄ˘ĽÍĽĂĽČĽďĄźĽŻĽ˘ĽŔĽ×Ľż¤ňŔßÄꤚ¤ëÉŹÍפŹ¤˘¤ę¤Ţ¤šĄŁ"
-
-#~ 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 "nfs mount failed"
-#~ msgstr "nfs ĽŢĽŚĽóĽČ¤ËźşÇÔ"
-
-#~ 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 ¤ĎĄ˘XFree 3.3¤ČXFree 4.0ΞĘý¤ÎŔßÄęĽŐĽĄĽ¤Ľë¤ň¤Ä¤Ż¤ę¤Ţ¤šĄŁ¤Ç¤â\n"
-#~ "ĽÇĽŐĽŠĽëĽČ¤Ç¤ĎÂĐąţĽÓĽÇĽŞĽŤĄźĽÉ¤ŹĚľ¤¤¸Â¤ęĄ˘4.0ĽľĄźĽĐ¤Î¤Ű¤Ś¤ňťČ¤¤¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "XFree 3.3 ¤Î¤Ţ¤Ţ¤Ë¤ˇ¤Ć¤Ş¤­¤Ţ¤š¤Ť?"
-
-#~ msgid "Cryptographic"
-#~ msgstr "°Ĺšć˛˝"
-
-#~ msgid "Configure LAN"
-#~ msgstr "LAN ¤ÎŔßÄę"
-
-#~ msgid "Do not set up networking"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻŔßÄę¤ň¤ˇ¤Ę¤¤"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "ĽˇĽšĽĆĽŕ¤ÎĽíĄźĽŤĽë LAN ĽÍĽĂĽČĽďĄźĽŻ¤ňŔßÄꤡ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Show less"
-#~ msgstr "łľÎŹ¤ÇÉ˝ź¨"
-
-#~ msgid "Show more"
-#~ msgstr "žÜşŮ¤ňÉ˝ź¨"
-
-#~ msgid "Take over the hard drive"
-#~ msgstr "ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤ň°ú¤­ˇŃ¤°"
-
-#~ msgid "URI for Local printer"
-#~ msgstr "ĽíĄźĽŤĽëĽ×ĽęĽóĽż¤ÎURI"
-
-#~ msgid "URI for Network printer"
-#~ msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ×ĽęĽóĽż¤ÎURI"
-
-#~ msgid "Local Printer Device (URI)"
-#~ msgstr "ĽíĄźĽŤĽëĽ×ĽęĽóĽżĽÇĽĐĽ¤Ľš (URI)"
-
-#~ msgid ""
-#~ "What URI device is your printer connected to\n"
-#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
-#~ msgstr ""
-#~ "Ľ×ĽęĽóĽż¤Ź¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤ëĽÇĽĐĽ¤Ľš¤Ď˛ż¤Ç¤š¤Ť\n"
-#~ "(Ăí°Ő ĽŃĽéĽěĽë¤Î/dev/lp0 ¤Ď LPT1: ¤Ë¤Ę¤ę¤Ţ¤š)ĄŠ\n"
-
-#~ msgid "Network Printer Options (URI)"
-#~ msgstr "Netware Ľ×ĽęĽóĽż¤ÎĽŞĽ×ĽˇĽçĽó (URI)"
-
-#~ msgid "tie"
-#~ msgstr "ĽÍĽŻĽżĽ¤"
-
-#~ msgid "brunette"
-#~ msgstr "ĽÖĽëĽÍĽĂĽČ"
-
-#~ msgid "girl"
-#~ msgstr "˝÷¤ÎťŇ"
-
-#~ msgid "woman-blond"
-#~ msgstr "ĽÖĽíĽóĽÉ˝÷Ŕ­"
-
-#~ 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 "Internet Connection Sharing - setup of %s"
-#~ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČśŚÍ­ŔÜÂł - %s ¤ÎŔßÄę"
-
-#~ msgid ""
-#~ "The following interface is about to be configured:\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ msgstr ""
-#~ "źĄ¤ÎĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤ňŔßÄꤡ¤č¤Ś¤Č¤ˇ¤Ć¤Ţ¤šĄ§\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-
-#~ msgid "Everything configured!"
-#~ msgstr "Á´¤Ć¤ňŔßÄꤡ¤Ţ¤ˇ¤żĄŞ"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Ľ­ĄźĽÜĄźĽÉĽěĽ¤Ľ˘ĽŚĽČ¤Ď˛ż¤Ç¤š¤ŤĄŠ"
-
-#~ msgid "pptp alcatel"
-#~ msgstr "pptp alcatel"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "PCMCIAĽŤĄźĽÉ¤ň¤ľ¤Ź¤ˇ¤Ć¤ß¤Ţ¤ˇ¤ç¤Ś¤ŤĄŠ"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "%sĽÇĽĐĽ¤Ľš¤ň¤ľ¤Ź¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Small(%dMB)"
-#~ msgstr "şÇžŽ(%dMB)"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr "ĽˇĽšĽĆĽŕ¤ÎĽâĽÇĽŕ¤Ë¤č¤ëĽŔĽ¤Ľ˘ĽëĽ˘ĽĂĽ×ĽÍĽĂĽČĽďĄźĽŻ¤ňŔßÄꤡ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Do you want to configure a ISDN connection for your system?"
-#~ msgstr "ĽˇĽšĽĆĽŕ¤ÎISDNŔÜÂł¤ňŔßÄꤡ¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "PCIĽÇĽĐĽ¤Ľš¤ň¤ľ¤Ź¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Searching root partition."
-#~ msgstr "ĽëĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó¤ň¸Ąş÷"
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr "%s: ¤ł¤ě¤ĎĽëĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó¤Ç¤Ď¤˘¤ę¤Ţ¤ť¤óĄ¤¤Ű¤Ť¤ňÁޤó¤Ç˛ź¤ľ¤¤ĄŁ"
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "¤É¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĽëĄźĽČĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë¤ˇ¤Ţ¤š¤Ť"
-
-#~ msgid "Autologin at startup"
-#~ msgstr "ľŻĆ°ťţ¤ÎźŤĆ°ĽíĽ°Ľ¤Ľó"
-
-#~ msgid "Autologin - Choose default user"
-#~ msgstr "źŤĆ°ĽíĽ°Ľ¤Ľó - ĽÇĽŐĽŠĽëĽČĽćĄźĽś¤ňÁŞÂň"
-
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "ĽŚĽŁĽóĽÉĽŚĽş¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "Linux4Win¤ŹĆţ¤ë¤Ŕ¤ą¤Îśő¤­¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# 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
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#~ 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 operating system chooser-he youkosou!\n"
-#~ "\n"
-#~ "<TAB>: Ichiran Hyouji\n"
-#~ "\n"
-#~ "Ichiran kara erande <ENTER> wo oshimasu. %d byou de Default ni narimasu.\n"
-#~ "\n"
-
-#~ msgid "SILO main options"
-#~ msgstr "SILO ĽáĽ¤ĽóĽŞĽ×ĽˇĽçĽó"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "SILO ¤Ë¤Ď°Ę˛ź¤ÎĽ¨ĽóĽČĽę¤Ź¤˘¤ę¤Ţ¤šĄŁ\n"
-#~ "¤Ű¤Ť¤ÎĽ¨ĽóĽČĽę¤ň˛Ă¤¨¤ë¤ŤĘŃšš¤š¤ë¤ł¤Č¤Ź¤Ç¤­¤Ţ¤šĄŁ"
-
-#~ msgid "This label is already in use"
-#~ msgstr "¤ł¤ÎĽéĽŮĽë¤Ď¤š¤Ç¤ËťČ¤ď¤ě¤Ć¤¤¤Ţ¤š"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "SILO ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤żĄŁ°Ę˛ź¤ÎĽ¨ĽéĄź¤ŹČŻŔ¸:"
-
-#~ 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"
-#~ "¤â¤ˇISAĽĐĽš¤ÎSCSIĽ˘ĽŔĽ×Ľż¤ňťČ¤Ă¤Ć¤¤¤ż¤ęĄ˘PCIĽĐĽš¤ÎSCSIĽ˘ĽŔĽ×Ľż¤Ç¤â\n"
-#~ "DrakX¤ËĽÉĽéĽ¤ĽĐ¤Ź¤ď¤Ť¤é¤Ę¤Ť¤Ă¤ż¤ę¤š¤ë¤Č¤­Ą˘¤Ţ¤ż¤ĎSCSIĽ˘ĽŔĽ×Ľż¤Ź¤Ę¤¤\n"
-#~ "¤Č¤­¤Ë¤ĎĄ˘Ľ×ĽíĽóĽ×ĽČ¤Ź˝Đ¤Ć¤­¤ĆĄ˘SCSIĽ˘ĽŔĽ×Ľż¤Ź¤˘¤ë¤Ť¤É¤Ś¤Ť¤­¤­¤Ţ¤šĄŁ\n"
-#~ "¤Ę¤ą¤ě¤ĐĄÖ¤¤¤¤¤¨Ą×¤ČĹú¤¨¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ¤˘¤ě¤ĐĄÖ¤Ď¤¤Ą×¤ČĹú¤¨¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "¤š¤ë¤ČĽÉĽéĽ¤ĽĐ¤Î°ěÍ÷É˝¤Ź˝Đ¤Ć¤Ż¤ë¤Î¤ÇĄ˘ĹŹŔڤʤâ¤Î¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "ĽÉĽéĽ¤ĽĐ¤ňÁޤó¤Ŕ¤éĄ˘¤˝¤ÎĽÉĽéĽ¤ĽĐ¤ÇĽŞĽ×ĽˇĽçĽó¤ňťŘÄꤡ¤ż¤¤¤Ť¤É¤Ś¤Ť¤ň\n"
-#~ "DrakX¤Ź¤­¤¤¤Ć¤­¤Ţ¤šĄŁşÇ˝é¤ĎĄ˘ĽÉĽéĽ¤ĽĐ¤ËĽĎĄźĽÉĽŚĽ§Ľ˘¤ňĽ×ĽíĄźĽÖ¤ľ¤ť¤Ć\n"
-#~ "¤ß¤Ţ¤ˇ¤ç¤ŚĄŁ¤ż¤¤¤Ź¤¤¤Ď¤ł¤ě¤Ç¤Ś¤Ţ¤Ż¤¤¤­¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤ł¤ě¤ŹĽŔĽá¤Ę¤éĄ˘¤˝¤ÎĽ˘ĽŔĽ×Ľż¤Ë¤Ä¤¤¤ĆĽÉĽ­ĽĺĽáĽóĽĆĄźĽˇĽçĽó¤Ë˝ń¤¤¤Ć¤˘¤Ă¤ż\n"
-#~ "¤ł¤Č¤äĄ˘ĽŚĽŁĽóĽÉĽŚĽş¤ÎĽ×ĽíĽŃĽĆĽŁ¤ÎžđĘó¤Ę¤É¤ňť×¤¤¤Ŕ¤ˇ¤Ć¤ß¤Ţ¤ˇ¤ç¤ŚĄŁĽ¤Ľó\n"
-#~ "ĽšĽČĄźĽëĽŹĽ¤ĽÉ¤Ç¤âĄ˘¤ł¤ě¤ňšľ¤¨¤Ć¤Ş¤Ż¤č¤Ś¤Ë¤ŞžŠ¤á¤ˇ¤Ţ¤ˇ¤ż¤č¤ÍĄŁ¤˝¤ÎžđĘó\n"
-#~ "¤ňĽÉĽéĽ¤ĽĐ¤Ë¤ď¤ż¤ˇ¤Ć¤ä¤ë¤ł¤Č¤Ë¤Ę¤ę¤Ţ¤šĄŁ"
-
-#~ msgid "Shutting down"
-#~ msgstr "ĽˇĽăĽĂĽČĽŔĽŚĽóĂć"
-
-#~ msgid "useless"
-#~ 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."
-#~ msgstr ""
-#~ "ĽłĽóĽÔĽĺĄźĽżžĺ¤ËĽŚĽŁĽóĽÉĽŚĽş¤Ť¤é¤Î True Type ĽŐĽŠĽóĽČ¤ň¸ŤÉŐ¤ą¤Ţ¤ˇ¤żĄŁ\n"
-#~ "¤ł¤ě¤é¤ňťČ¤¤¤Ţ¤š¤Ť? ¤˘¤Ę¤ż¤Ź Linux žĺ¤Ç¤ł¤ě¤é¤ňťČ¤Ś¸˘Íř¤Ź¤˘¤ë¤Ť¤ňłÎ¤Ť¤á¤Ć"
-#~ "˛ź¤ľ¤¤ĄŁ"
-
-#~ 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¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ź˝é¤á¤Ć¤ŤĄ˘¤Ű¤Ť¤ÎLinuxĽÇĽŁĽšĽČĽęĽÓĽĺĄźĽˇĽçĽó¤ä\n"
-#~ "ĽĐĄźĽ¸ĽçĽó¤ČśŚÂ¸¤ľ¤ť¤ż¤¤¤Č¤­¤Ë¤ĎĄ˘ĄÖĽ¤ĽóĽšĽČĄźĽëĄ×¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "Mandrake Linux: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus),\n"
-#~ "6.1 (Helios), Gold 2000, 7.0 (Air)¤Ę¤ÉĄ˘¸Ĺ¤¤Mandrake Linux¤ň\n"
-#~ "Ľ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤š¤ë¤Ę¤éĄÖĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉĄ×¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ"
-
-#~ msgid "Do you want to use LILO?"
-#~ msgstr "LILO ¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-
-#~ 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"
-#~ "°Í¸´Řˇ¸¤Ź´°Á´¤Ë˛ňˇč¤ľ¤ě¤Ę¤¤¤ČĄ˘ĽŃĽĂĽąĄźĽ¸¤ĎĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤óĄŁ"
-
-#~ 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¤ä¤˝¤Îž¤ÎOS¤ňĽÖĄźĽČ¤Ç¤­¤Ţ¤šĄŁ\n"
-#~ "ĽÇĽŁĽšĽŻžĺ¤ÎłĆźď¤ÎOS¤ĎĄ˘ÉáÄ̤ϼ¤ĽóĽšĽČĄźĽë¤ÎĂć¤Ç¤­¤Á¤ó¤Č¸Ą˝Đ¤ľ¤ě¤Ć¤¤¤Ţ"
-#~ "¤šĄŁ\n"
-#~ "¤Ç¤â¸Ą˝Đ¤ľ¤ě¤Ć¤¤¤Ę¤¤¤č¤Ś¤Ę¤éĄ˘¤ł¤ł¤ÇÄɲäǤ­¤Ţ¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ "¤ß¤ó¤Ę¤ËĽ˘ĽŻĽťĽš¤ˇ¤Ć¤Ű¤ˇ¤Ż¤Ę¤¤OS¤Ź¤˘¤Ă¤ż¤éĄ˘¤ł¤ł¤Ť¤é¤Ďşď˝ü¤ˇ¤Ć¤Ş¤­¤Ţ¤šĄŁ\n"
-#~ "ĄĘ¤˝¤ÎOS¤ňΊ¤Ážĺ¤˛¤ë¤Ë¤ĎĽÖĄźĽČĽÇĽŁĽšĽŻ¤ŹÉŹÍפˤʤę¤Ţ¤šĄË"
-
-#~ 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 "Choose other CD to install"
-#~ msgstr "Ľ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤¤Âž¤Î CD ¤ňÁŞÂň"
-
-#~ 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"
-#~ " - żäžŠ: Linux¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ź˝é¤á¤Ć¤Ę¤é¤ł¤ěĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - ĽŤĽšĽżĽŕÁŞÂň: Linux¤ËžÜ¤ˇ¤ą¤ě¤ĐĄ˘ĽˇĽšĽĆĽŕ¤ÎťČ¤¤Ęý¤Ëąţ¤¸¤ĆĄÖĽÎĄźĽŢ"
-#~ "ĽëĄ×\n"
-#~ "ĄÖłŤČŻÍѥץּľĄźĽĐĄ×¤ÎĂ植¤éÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ¤Ő¤Ä¤Ś¤ÎĽˇĽšĽĆĽŕ¤Ë¤ˇ¤ż¤ą¤ě¤ĐĄ˘\n"
-#~ "ĄÖĽÎĄźĽŢĽëĄ×¤Ź¤¤¤¤¤Ç¤ˇ¤ç¤ŚĄŁźç¤ËĽ˝ĽŐĽČłŤČŻ¤ň¤š¤ë¤Ä¤â¤ę¤Ę¤éĄ˘ĄÖłŤČŻÍѥפň\n"
-#~ "ÁŞ¤Ó¤Ţ¤šĄŁ¤˘¤ë¤¤¤ĎĄ˘ČĆÍŃĽľĄźĽĐĄĘĽáĄźĽëÍŃĄ˘°őşţÍѤʤɤʤɥˤȤˇ¤ĆťČ¤Ś¤Ę¤é\n"
-#~ "ĄÖĽľĄźĽĐĄ×¤Ź¤Ş¤š¤š¤á¤Ç¤šĄŁ\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ľ¨Ľ­ĽšĽŃĄźĽČĄ§Expert: GNU/Linux ĽĐĽęĽĐĽę¤ÇĄ˘şŮ¤Ť¤¤ĽŤĽšĽżĽŢĽ¤Ľş¤ň¤ˇ¤ż\n"
-#~ "¤ą¤ě¤ĐĄ˘¤ł¤ÎĽ¤ĽóĽšĽČĄźĽë¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ¤ł¤Î¤Č¤­Ą˘ĽˇĽšĽĆĽŕ¤ÎťČĹÓ¤Ď\n"
-#~ "ĄÖĽŤĽšĽżĽŢĽ¤ĽşĄ×¤Ë¤Ę¤ę¤Ţ¤šĄŁ"
-
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "°Ĺšć´ŘϢ¤ÎĽŃĽĂĽąĄźĽ¸¤ňĽŔĽŚĽóĽíĄźĽÉĂć"
-
-#~ msgid "Setup SCSI"
-#~ msgstr "SCSI ¤ÎŔßÄę"
-
-#~ msgid "Installation CD Nr %s"
-#~ msgstr "Ľ¤ĽóĽšĽČĽěĄźĽˇĽçĽó CD Nr %s"
-
-#~ msgid "Which language do you want?"
-#~ msgstr "¤É¤Î¸Ŕ¸ě¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "What usage do you want?"
-#~ msgstr "¤É¤ÎťČÍŃËĄ¤ňÁŞ¤Ó¤Ţ¤š¤ŤĄŠ"
-
-#~ msgid "Choose install or upgrade"
-#~ msgstr "ĆłĆţ/łČÄĽ¤ÎÁŞÂň"
-
-#~ msgid "A entry %s already exists"
-#~ msgstr "Ľ¨ĽóĽČĽę %s ¤Ď¤š¤Ç¤Ë¸şß¤ˇ¤Ţ¤š"
-
-#~ msgid ""
-#~ "Enter a floppy to create an HTP enabled boot\n"
-#~ "(all data on floppy will be lost)"
-#~ msgstr ""
-#~ "HTP ¤ÎťČ¤¨¤ëĽÖĄźĽČĽÇĽŁĽšĽŻÍѤμռíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ¤ËÁŢĆţ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
-#~ "ĽŐĽíĽĂĽÔĄźžĺ¤ÎÁ´¤Ć¤ÎĽÇĄźĽż¤Ďźş¤ď¤ě¤Ţ¤š"
-
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "ĽŐĽíĽĂĽÔĄź¤ÇľŻĆ°¤ˇ¤ĆĽ¤ĽóĽšĽČĄźĽë¤ň¤ä¤ę¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ 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"
-#~ "Ľ¤ĽóĽšĽČĄźĽë¤ň¤ä¤ę¤Ę¤Ş¤ˇ¤ĆĄ˘Ľ×ĽíĽóĽ×ĽČ¤ÇĄČ%sĄÉ¤ČĆţÎϤˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-
-#~ msgid "User name:"
-#~ msgstr "ĽćĄźĽśĚž:"
-
-#~ msgid "Password:"
-#~ msgstr "ĽŃĽšĽďĄźĽÉ:"
-
-#~ msgid "developer"
-#~ msgstr "łŤČŻźÔ"
-
-#~ msgid "beginner"
-#~ msgstr "˝éż´źÔ"
-
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "ĽęĽËĽ˘ (SCSI ĽÉĽéĽ¤ĽÖ¤Î°ěÉô¤ÇÉŹÍ×)"
-
-#~ msgid "linear"
-#~ msgstr "ĽęĽËĽ˘"
-
-#~ msgid "After %s partition %s,"
-#~ msgstr "%s ĽŃĄźĽĆĽŁĽˇĽçĽó¤Ť¤é %s,"
-
-#~ msgid "changing type of"
-#~ msgstr "ĽżĽ¤Ľ×¤ÎĘŃšš"
-
-#~ msgid "resizing"
-#~ msgstr "ĽęĽľĽ¤ĽşĂć"
-
-#~ msgid "Size: %s MB"
-#~ msgstr "ĽľĽ¤Ľş: %s MB"
-
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "ÉÔŔľ¤ĘĽ­ĽĂĽŻĽšĽżĄźĽČĽŐĽĄĽ¤Ľë %s (%s źşÇÔ)"
-
-#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
-#~ msgstr "Áޤó¤ŔĽŃĽĂĽąĄźĽ¸¤ŹÂż¤š¤Ž¤Ţ¤šĄŁ%dMB ¤˘¤ë¤Î¤Ç %dMB ¤Ë¤Ş¤ľ¤Ţ¤ę¤Ţ¤ť¤óĄŁ"
-
-#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr "%d MB ¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤šĄŁ¤Ű¤Ť¤ÎĽ×ĽíĽ°ĽéĽŕ¤ňĽ¤ĽóĽšĽČĄźĽë˝ĐÍč¤Ţ¤š"
-
-#~ msgid "Installation CD Nr 1"
-#~ msgstr "Ľ¤ĽóĽšĽČĽěĄźĽˇĽçĽó CD Nr 1"
-
-#~ msgid "Local LAN"
-#~ msgstr "ĽíĄźĽŤĽë LAN"
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
deleted file mode 100644
index 3c0726443..000000000
--- a/perl-install/share/po/ko.po
+++ /dev/null
@@ -1,11766 +0,0 @@
-# Korean translation of DrakeX.
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (c) 1999 MandrakeSoft
-# sangkim@dreamwiz.com, 1999.
-# Ricky Jang <ricky@iolinux.co.kr>, 2000
-# Jaegeum Choe <baedaron@hananet.net>, 2001
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX 1.1.5\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-09-24 01:16--500\n"
-"Last-Translator: Jaegeum Choe <baedaron@hananet.net>\n"
-"Language-Team: Korean <baedaron@hananet.net>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=euc-kr\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "¸đľç Çěľĺ¸Ś ľś¸łŔűŔ¸ˇÎ źłÁ¤"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Xinerama ČŽŔĺ ťçżë"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ą¸%sĄšÄŤľĺ¸¸ źłÁ¤ (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "´ŮÁß Çěľĺ źłÁ¤"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"´ÔŔÇ ˝Ă˝şĹŰŔş ´ŮÁß Çěľĺ źłÁ¤Ŕť ÁöżřÇŐ´Ď´Ů.\n"
-"žîśť°Ô ÇϽðڽŔ´Ďąî?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "ą×ˇĄÇČ ÄŤľĺ"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "ą×ˇĄÇČ ÄŤľĺ źąĹĂ"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "X ź­šö źąĹĂ"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X ź­šö"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "X ź­šö źąĹĂ"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X ź­šö"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "žî´Ŕ XFree źłÁ¤Ŕť źąĹĂÇϽðڽŔ´Ďąî?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"´ÔŔÇ ÄŤľĺ´Â XFree %sˇÎ¸¸ °Ą´ÉÇŃ 3D ÇĎľĺżţžî °ĄźÓąâ´ÉŔĚ ÁöżřľË´Ď´Ů.\n"
-"´ÔŔÇ ÄŤľĺ´Â žîÂź¸é ş¸´Ů ÇâťóľČ 2D źş´ÉŔť ş¸ŔĎ źö ŔÖ´Â XFree %sŔť ÁöżřÇŐ´Ď´Ů."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "´ÔŔÇ ÄŤľĺ´Â XFree %sˇÎ 3D ÇĎľĺżţžî °ĄźÓąâ´ÉŔť ÁöżřÇŐ´Ď´Ů."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s¸Ś ťçżëÇŃ 3D ÇĎľĺżţžî °ĄźÓ"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"´ÔŔÇ ÄŤľĺ´Â XFree %sˇÎ¸¸ °Ą´ÉÇŃ 3D ÇĎľĺżţžî °ĄźÓąâ´ÉŔĚ ÁöżřľË´Ď´Ů.\n"
-"ÁÖŔÇ: ŔĚ°ÍŔş ˝ÇÇčŔűŔÎ ÁöżřŔĚ¸ç ´ÔŔÇ ÄÄÇťĹ͸Ś ¸ŘĂß°Ô ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s¸Ś ťçżëÇŃ ˝ÇÇčŔű 3D ÇĎľĺżţžî °ĄźÓ"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"´ÔŔÇ ÄŤľĺ´Â XFree %sˇÎ¸¸ °Ą´ÉÇŃ 3D ÇĎľĺżţžî °ĄźÓąâ´ÉŔĚ ÁöżřľË´Ď´Ů.\n"
-"ÁÖŔÇ: ŔĚ°ÍŔş ˝ÇÇčŔűŔÎ ÁöżřŔĚ¸ç ´ÔŔÇ ÄÄÇťĹ͸Ś ¸ŘĂß°Ô ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"´ÔŔÇ ÄŤľĺ´Â žîÂź¸é ş¸´Ů ÇâťóľČ 2D źş´ÉŔť ş¸ŔĎ źö ŔÖ´Â XFree %sŔť ÁöżřÇŐ´Ď´Ů."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (źłÄĄ ÇĽ˝Ă ľĺśóŔĚšö)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree źłÁ¤"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "ą×ˇĄÇČ ÄŤľĺŔÇ ¸Ţ¸đ¸Ž żëˇŽŔť źąĹĂÇĎźźżä"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "ź­šö żÉźÇŔť źąĹĂÇĎźźżä"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "¸đ´ĎĹ͸Ś źąĹĂÇĎźźżä"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "¸đ´ĎĹÍ"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"źöÁ÷ ą×¸Ž°í ´őżí ÁßżäÇŃ źöĆň ÁÖĆÄźöśó´Â ľÎ °łŔÇ ÁßżäÇŃ ŔÎŔÚ°Ą ŔÖ˝Ŕ´Ď´Ů. źöÁ÷ "
-"ÁÖĆÄźö´Â \n"
-"Ŕüßȭ¸éŔĚ °ť˝ĹľÇ´Â ÁÖąâŔ̸ç, źöĆň ÁÖĆÄźö´Â ˝şÄľśóŔÎľéŔĚ °ť˝ĹľÇ´Â ÁÖąâŔÔ´Ď"
-"´Ů.\n"
-"\n"
-"¸Ĺżě Áßżä: ´ÔŔÇ ˝ÇÁŚ ¸đ´ĎĹÍŔÇ ´ÉˇÂÄĄ¸Ś łŃžîź­´Â ¸đľ¨Ŕť źąĹĂÇĎÁö ¸śźźżä: \n"
-"´ÔŔÇ ¸đ´ĎĹÍ°Ą ČŃźŐľÉ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"Ŕß ¸đ¸Ł°Ú´Ů¸é, žČŔüÇĎ°Ô łˇŔş źłÁ¤°ŞŔť źąĹĂÇĎźźżä"
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "źöĆň ÁÖĆÄźö"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "źöÁ÷ ÁÖĆÄźö"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "¸đ´ĎĹÍ°Ą źłÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "ą×ˇĄÇČ ÄŤľĺ°Ą žĆÁ÷ źłÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "ÇŘťóľľ°Ą źąĹĂľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "ŔĚ źłÁ¤Ŕť Ĺ×˝şĆŽÇŘ ş¸˝Ă°Ú˝Ŕ´Ďąî?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "ÁÖŔÇ : ŔĚ ą×ˇĄÇČ ÄŤľĺ¸Ś Ĺ×˝şĆŽÇϸé ÄÄÇťĹÍ°Ą ¸ŘĂâÁöľľ ¸đ¸¨´Ď´Ů."
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "źłÁ¤ Ĺ×˝şĆŽ"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"ŔϺΠŔÎŔÚ°ŞľéŔť şŻ°ćÇŘ ş¸źźżä."
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d ĂĘ ł˛žŇ˝Ŕ´Ď´Ů."
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "ŔĚ źłÁ¤ŔĚ ¸Â˝Ŕ´Ďąî?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů. ŔϺΠŔÎŔÚ°ŞŔť şŻ°ćÇŘ ş¸źźżä."
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "ÇŘťóľľ"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "ÇŘťóľľżÍ ťöťóŔť źąĹĂÇĎźźżä"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "ą×ˇĄÇČ ÄŤľĺ: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 ź­šö: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Ăß°Ą żÉźÇ"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "ČŽŔÎ"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "ŔüšŽ°Ą ¸đľĺ"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "¸đľÎ ÇĽ˝Ă"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "ÇŘťóľľ"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Ĺ°ş¸ľĺ ÇüĹÂ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "¸śżě˝ş Ážˇů: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "¸śżě˝ş ŔĺÄĄ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "¸đ´ĎĹÍ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "¸đ´ĎĹÍ źöĆňÁÖĆÄźö: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "¸đ´ĎĹÍ źöÁ÷ÁÖĆÄźö: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "ą×ˇĄÇČ ÄŤľĺ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "ą×ˇĄÇČ ÄŤľĺ ID: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "şńľđżŔ ¸Ţ¸đ¸Ž: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "ťöťó ˝Éľľ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "ÇŘťóľľ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 ź­šö: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 ľĺśóŔĚšö: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window źłÁ¤ ÁŘşńÁß"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "žîśť°Ô ÇϽðڽŔ´Ďąî?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "¸đ´ĎĹÍ şŻ°ć"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "ą×ˇĄÇČ ÄŤľĺ şŻ°ć"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "ź­šö żÉźÇ şŻ°ć"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "ÇŘťóľľ şŻ°ć"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Á¤ş¸ ş¸ąâ"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "´Ů˝Ă Ĺ×˝şĆŽ"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Ážˇá"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"şŻ°ćťçÇ×Ŕť ŔúŔĺÇŇąîżä?\n"
-"ÇöŔç źłÁ¤:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "˝ĂŔ۽à šŮˇÎ X ˝ÇÇŕ"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"şÎĆýÿĄ ŔÚľżŔ¸ˇÎ XŔŠľľżě°Ą ˝ĂŔ۾ǾľˇĎ ÇŇźö ŔÖ˝Ŕ´Ď´Ů.\n"
-"´Ů˝Ă şÎĆĂÇßŔťś§ ŔÚľżŔ¸ˇÎ XŔŠľľ°Ą ˝ĂŔŰľÇąć żřÇĎźźżä?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "şŻ°ćťçÇ×Ŕť ŔűżëÇϡÁ¸é %sˇÎ ŔçˇÎą×ŔÎ ÇĎźźżä."
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "ˇÎą×žĆżôÇĎ°í Crtl-Alt-BackSpaceĹ°¸Ś ´Š¸Łźźżä."
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 ťöťó (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "3¸¸2Ăľ ťöťó (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "6¸¸5Ăľ ťöťó (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "Ăľ6šé¸¸ ťöťó (24bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "40žď ťöťó (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "16 MB ŔĚťó"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "ÇĽÁŘ VGA, 640x480 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "˝´ĆŰ VGA, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 ČŁČŻ, 1024x768 @ 87 Hz interlaced (800x600 žČľĘ)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "˝´ĆŰ VGA, 1024x768 @ 87 Hz interlaced, 800x600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "ČŽŔĺ ˝´ĆŰ VGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "şńŔÎĹ͡šŔĚ˝ş SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "°íÁÖĆÄźö SVGA, 1024x768 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "1280x1024 @ 60 Hz Áöżř ´ŮÁßÁÖĆÄźö ¸đ´ĎĹÍ"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "1280x1024 @ 74 Hz Áöżř ´ŮÁßÁÖĆÄźö ¸đ´ĎĹÍ"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "1280x1024 @ 76 Hz Áöżř ´ŮÁßÁÖĆÄźö ¸đ´ĎĹÍ"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "1600x1200 @ 70 Hz ťçżë °Ą´É ¸đ´ĎĹÍ"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "1600x1200 @ 76 Hz ťçżë °Ą´É ¸đ´ĎĹÍ"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "şÎĆŽ ĆÄĆźźÇŔÇ Ăššř° ź˝ĹÍ"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "ľĺśóŔĚşęŔÇ Ăššř° ź˝ĹÍ(MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO źłÄĄ"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "şÎĆŽˇÎ´ő¸Ś žîľđżĄ źłÄĄÇĎ°í ˝ÍŔ¸źźżä?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/GRUB źłÄĄ"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "ĹŘ˝şĆŽ ¸Ţ´ş LILO"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "ą×ˇĄÇČ ¸Ţ´ş LILO"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "ľľ˝ş/ŔŠľľżěÁź­ şÎĆĂ(loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "şÎĆŽˇÎ´ő ÁÖ żÉźÇľé"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "ťçżëÇŇ şÎĆŽˇÎ´ő"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "şÎĆŽˇÎ´ő źłÄĄ"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "şÎĆŽ ŔĺÄĄ"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (żŔˇĄľČ BIOSľéżĄźą ŔŰľżÇĎÁö žĘŔťźöľľ ŔÖ˝Ŕ´Ď´Ů.)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "ÄŢĆŃľĺ ¸đľĺ"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "ÄŢĆŃĆŽ ¸đľĺ"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "şńľđżŔ ¸đľĺ"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "ąâşť ŔĚšĚÁöˇÎ şÎĆĂľÉ ś§ąîÁö ÁöżŹ˝Ă°Ł"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "žĎČŁ"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "žĎČŁ (ČŽŔÎ)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "¸íˇÉÇŕ żÉźÇŔť ÁŚÇŃÇŐ´Ď´Ů."
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "ÁŚÇŃ"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "şÎĆýà /tmp ľđˇşĹ与 ŔÚľż ĂťźŇ"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "żÉźÇ: Á¤ČŽÇŃ ¸Ţ¸đ¸Ž żëˇŽ (%d MB šß°ß)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "´ŮÁß profiles Çăżë"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "¸Ţ¸đ¸Ž żëˇŽ¸Ś MBˇÎ ŔÔˇÂÇĎźźżä"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "żÉźÇ: Ą¸¸íˇÉÇŕ żÉźÇÁŚÇŃĄšŔş žĎČŁžřŔĚ ťçżëľÉźö žř˝Ŕ´Ď´Ů."
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "´Ů˝Ă ˝ĂľľÇĎźźżä."
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "žĎČŁ°Ą ŔĎÄĄÇĎÁö žĘ˝Ŕ´Ď´Ů."
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "ĂĘąâČ­ ¸Ţ˝ĂÁö"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Ćßżţžî ż­ąâ ÁöżŹ"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "ÄżłÎ şÎĆŽ ÁŚÇѽðŁ"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "CD şÎĆĂ Çăżë?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "OF şÎĆĂ Çăżë?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "ąâşť OS?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"¸î °ĄÁö Ç׸ńŔĚ żŠąâżĄ ÇĽ˝ĂľÇ°í ŔÖ˝Ŕ´Ď´Ů.\n"
-"´ő Ăß°ĄÇĎ°ĹłŞ, ąâÁ¸ŔÇ °ÍľéŔť źöÁ¤ÇŇźö ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Ăß°Ą"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "żĎˇá"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "şŻ°ć"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "žîś˛ ÁžˇůŔÇ Ç׸ńŔť Ăß°ĄÇϽðڽŔ´Ďąî?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "¸Ž´Ş˝ş"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "ąâŸ OS (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "ąâŸ OS (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "ąâŸ OS (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "ŔĚšĚÁö"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "ˇçĆŽ"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Ăß°Ą"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "ĂĘąâČ­ ˇĽľđ˝şĹŠ"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "ŔĐąâ-ž˛ąâ"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Ĺ×ŔĚşí"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Ŕ§Çč"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Ç׸ń¸í"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "ąâşť°Ş"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "ˇĽľđ˝şĹŠ żëˇŽ"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "şńľđżŔ žřŔ˝"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Ç׸ń ÁŚ°Ĺ"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "şó Ç׸ń¸íŔş ÇăżëľÇÁö žĘ˝Ŕ´Ď´Ů."
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "˝şżŇ ĆÄĆźźÇŔş šÝľĺ˝Ă ÇĘżäÇŐ´Ď´Ů."
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "ŔĚ Ç׸ń¸íŔş ŔĚšĚ ťçżëľÇ°í ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s %s ŔÎĹÍĆäŔĚ˝ş°Ą °¨ÁöľÇžú˝Ŕ´Ď´Ů."
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "śÇ ´Ů¸Ľ°ÍŔĚ źłÄĄľÇžî ŔÖ˝Ŕ´Ďąî?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "śÇ ´Ů¸Ľ %s ŔÎĹÍĆäŔĚ˝ş°Ą źłÄĄľÇžî ŔÖ˝Ŕ´Ďąî?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "žĆ´ĎżŔ"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "żš"
-
-#: ../../any.pm_.c:661
-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:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "%sÄŤľĺ ľĺśóŔĚšö %s źłÄĄÁß"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(%s ¸đľâ ťçżë)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "žîś˛ %s ľĺśóŔĚšö¸Ś ˝ĂľľÇŘ şž´Ďąî?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"ŔĎšÝŔűŔ¸ˇÎ %s ľĺśóŔĚšö´Â Ăß°Ą Á¤ş¸ žřŔĚľľ Ŕß ŔŰľżÇĎÁö¸¸, žîś˛ °ćżěżĄ´Â \n"
-"Ăß°Ą Á¤ş¸¸Ś ÇĘżäˇÎ ÇĎąâľľ ÇŐ´Ď´Ů. Ăß°Ą żÉźÇŔť ÁöÁ¤ÇϽðڽŔ´Ďąî, žĆ´Ď¸é \n"
-"ÇĘżäÇŃ Á¤ş¸¸Ś ŔÚľż°ËťöÇĎ°Ô ÇĎ°Ú˝Ŕ´Ďąî?\n"
-"ŔÚľż°ËťöŔş žîÂź´Ů°Ą ÄÄÇťĹ͸Ś ¸ŘĂß°Ô ÇŇ źöľľ ŔÖ˝Ŕ´Ď´Ů.ÇĎÁö¸¸,\n"
-"ŔĺÄĄ¸Ś ČŃźŐÇĎÁö´Â žĘ˝Ŕ´Ď´Ů."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "ŔÚľż°Ëťö"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "żÉźÇ ÁöÁ¤"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"ŔĚÁŚ %s ľĺśóŔĚšöżĄ żÉźÇŔť ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"żÉźÇŔş ``Ŕ̸§=°Ş Ŕ̸§2=°Ş2 ...''Çü˝ÄŔ¸ˇÎ ÁöÁ¤ÇŐ´Ď´Ů..\n"
-"°ĄˇÉ, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "¸đľâ żÉźÇľé:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"%s ¸đľâŔť ŔĐžîľéŔĚ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů.\n"
-"´Ů¸Ľ °ŞŔ¸ˇÎ ´Ů˝Ă ˝ĂľľÇŘ ş¸˝Ă°Ú˝Ŕ´Ďąî?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(ŔĚšĚ %s´Â(Ŕş) Ăß°ĄľÇžú˝Ŕ´Ď´Ů.)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "ŔĚ žĎČŁ´Â łĘšŤ ´ÜźřÇŐ´Ď´Ů."
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "ťçżëŔÚ¸íŔť ŔÔˇÂÇŘ ÁÖźźżä"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "ťçżëŔÚ¸íŔş żľšŽ źŇšŽŔÚłŞ źýŔÚ, '-' ą×¸Ž°í '_' ¸¸ Ć÷ÇԾɟö ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "ŔĚ ťçżëŔÚ¸íŔş ŔĚšĚ Ăß°ĄľÇžî ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "ťçżëŔÚ Ăß°Ą"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"ťçżëŔÚ ŔÔˇÂ\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "ťçżëŔÚ Çă°Ą"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "˝ÇÁŚ Ŕ̸§"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "ťçżëŔÚ¸í"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "¸íˇÉ ÇŘźŽąâ"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "žĆŔĚÄÜ"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "ŔÚľżˇÎą×ŔÎ"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"ŔÚľżŔ¸ˇÎ ĆŻÁ¤ ťçżëŔڡΟ­ ˇÎą×ŔξǾľˇĎ ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"Ŕ̡ą ĆŻźşŔť żřÇĎźźżä?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "ąâşť ťçżëŔÚ¸Ś źąĹĂÇĎźźżä:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "ťçżëÇŇ ŔŠľľżě ¸Ĺ´ĎŔú¸Ś źąĹĂÇĎźźżä:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "ťçżëÇŇ žđžî¸Ś źąĹĂÇŘ ÁÖźźżä."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "źłÄĄČÄ ´Ů¸Ľ ´Ů¸Ľ žđžî¸Ś źąĹĂÇŇźö ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "¸đľÎ"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "ťçżëŔÚ Ăß°Ą"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "ťçżëŔÚ Á¤ŔÇ"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "ĆÄŔĎ °řŔŻ"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"ŔĚ ĆŃĹ°Áö´Â šÝľĺ˝Ă ž÷ą×ˇšŔĚľĺľÇžîžß ÇŐ´Ď´Ů.\n"
-"Á¤¸ťˇÎ źąĹĂŔť ÇŘÁŚÇϽðڽŔ´Ďąî?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "ĂëźŇ"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "ş¸žČżĄ ˝Ĺ°ćžČž¸"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "ĂÖŔú"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "ÇĽÁŘ"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "łôŔ˝"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "łôŔ˝"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "ĂÖ°í"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"ŔĚ ľîąŢŔť ťçżëÇҡÁ¸é ¸Ĺżě ÁÖŔÇÇĎżŠžß ÇŐ´Ď´Ů. ˝Ă˝şĹŰŔť ťçżëÇϹ⿥´Â \n"
-"żëŔĚÇĎ°ÚÁö¸¸ ¸Ĺżě šÎ°¨ÇĎ°Ô ŔŰľżÇŐ´Ď´Ů: ŔÎĹÍłÝŔĚłŞ ł×ĆŽż÷żĄ żŹ°áľČ ˝Ă˝şĹŰżë\n"
-"Ŕ¸ˇÎ´Â ťçżëÇĎÁö ¸śźźżä. žĎČŁąâ´ÉŔĚ žř˝Ŕ´Ď´Ů."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"žĎČŁąâ´ÉŔĚ ŔűżëľÇÁö¸¸, ł×ĆŽż÷żĄ żŹ°áľČ ÄÄÇťĹ͡ΠťçżëÇϹ⿥´Â žĆÁ÷ ŔűŔýÇĎÁö žĘ"
-"˝Ŕ´Ď´Ů."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"ŔĚ ľîąŢŔş ĹŹśóŔĚžđĆŽˇÎź­ ŔÎĹͳݿĄ Á˘źÓÇĎ´ÂľĽ Ŕű´çÇŃ ÇĽÁŘ ş¸žČľîąŢŔÔ´Ď´Ů.\n"
-"ŔĚ ľîąŢşÎĹÍ ŔűÁ¤ÇŃ ˝Ă˝şĹŰ ş¸žČ ÁĄ°Ëąâ´ÉŔĚ ŔÖ˝Ŕ´Ď´Ů. "
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"ŔĚ ş¸žČľîąŢŔ¸ˇÎ ŔĚ ˝Ă˝şĹŰŔť ź­šöˇÎ żîżëÇŇ źö ŔÖ°Ô ľË´Ď´Ů.\n"
-"ŔĚ ş¸žČľîąŢŔş żÜşÎŔÇ ĹŹśóŔĚžđĆŽľéŔÇ Á˘źÓŔť šŢžĆľéŔĚ´ÂľĽ ŔÖžîź­ \n"
-"ĂćşĐČ÷ łôŔş ş¸žČľîąŢŔÔ´Ď´Ů. "
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"ş¸žČ 4 ľîąŢŔĚ ŔűżëľË´Ď´Ů. ˝Ă˝şĹŰŔĚ żĎŔüČ÷ żÜşÎÁ˘ąŮżĄź­ °Ý¸ŽľË´Ď´Ů.\n"
-"ĂÖ°í ş¸žČ źöÁŘŔÔ´Ď´Ů."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "ş¸žČ ´Ü°č¸Ś źąĹĂÇŘ ÁÖźźżä"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "ş¸žČ źöÁŘ"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "ź­šöżĄ ´ëÇŘ libsafe ťçżë"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr "šöĆŰ łŃħŔĚłŞ Çü˝ÄČ­ šŽŔÚż­ °ř°ÝŔť ¸ˇ´Â śóŔ̺ꡯ¸Ž."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"%s żîżľĂźÁŚ źąĹù⿥ żŔ˝Ĺ °ÍŔť ČŻżľÇŐ´Ď´Ů!\n"
-"\n"
-"Ŕ§ ¸Ž˝şĆŽżĄź­ żîżľĂźÁŚ¸Ś źąĹĂÇĎźźżä.\n"
-"ą×ˇ¸Áö žĘŔ¸¸é %dĂĘ ČÄżĄ ąâşť°ŞŔ¸ˇÎ şÎĆĂÇŐ´Ď´Ů.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "żîżľĂźÁŚ źąĹĂŔÚ GRUBżĄ żŔ˝Ĺ°É ČŻżľÇŐ´Ď´Ů."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "%cĹ°żÍ %c¸Ś ťçżëÇĎżŠ šÝŔüľČ Ç׸ńŔť źąĹĂÇĎźźżä."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "źąĹĂľČ żîżľĂźÁŚˇÎ şÎĆĂÇҡÁ¸é żŁĹ͸Ś, źöÁ¤ÇҡÁ¸é 'e'¸Ś ´­ˇŻÁÖźźżä."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "şÎĆĂŔü ¸íˇÉľé śÇ´Â, ¸íˇÉÇŕŔť Ŕ§ÇŘź­´Â 'c'´­ˇŻÁÖźźżä."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "šÝŔüľČ Ç׸ńŔ¸ˇÎ %dĂĘČÄ ŔÚľżŔ¸ˇÎ şÎĆþ˴ϴŮ."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "/bootżĄ °ř°ŁŔĚ şÎÁˇÇŐ´Ď´Ů."
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "ľĽ˝şĹŠĹž"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "˝ĂŔŰ ¸Ţ´ş"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Ą¸%sĄšĆÄĆźźÇżĄ şÎĆŽˇÎ´ő¸Ś źłÄĄÇŇ źö žř˝Ŕ´Ď´Ů.\n"
-
-#: ../../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 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/ĆÄŔĎ(_F)"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/ĆÄŔĎ(F)/Ážˇá(_Q)"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "ťő ˝şĹ¸ŔĎ šüÁÖČ­ ¸đ´ĎĹÍ"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "ťő ˝şĹ¸ŔĎ ¸đ´ĎĹÍ"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "ŔüĹëŔű ¸đ´ĎĹÍ"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "ŔüĹëŔű GTK+ ¸đ´ĎĹÍ"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "şÎĆýà żŔˇÎśó ˝ÇÇŕ"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "LILO/Grub ¸đľĺ"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot ¸đľĺ"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"ÇöŔç şÎĆŽ °ü¸ŽŔڡΠ%s¸Ś ťçżëÇĎ°í ŔÖ˝Ŕ´Ď´Ů.\n"
-"źłÁ¤ ¸śšýťç¸Ś ˝ÇÇŕÇϡÁ¸é Ą¸źłÁ¤ĄšŔť ´Š¸Łźźżä."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "źłÁ¤"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "˝Ă˝şĹŰ ¸đľĺ"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "˝ĂŔŰÇŇ ś§ X-Window ˝ÇÇŕ"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "žĆ´ĎżŔ, ŔÚľżˇÎą×ŔÎŔť ťçżëÇĎÁö žĘ˝Ŕ´Ď´Ů."
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "żš, ŔÚľżˇÎą×ŔÎŔť ťçżëÇŐ´Ď´Ů."
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "ČŽŔÎ"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "Ą¸/etc/inittabĄšĆÄŔĎŔť ŔĐŔť źö žř˝Ŕ´Ď´Ů: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d şĐ"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 şĐ"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d ĂĘ"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "´őŔĚťó ĆÄĆźźÇŔť Ăß°ĄÇŇ źö žř˝Ŕ´Ď´Ů."
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "źłÄĄČÄ ´Ů¸Ľ ´Ů¸Ľ žđžî¸Ś źąĹĂÇŇźö ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "France"
-msgstr "ÇÁśű˝ş"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "ş§ąâżĄ"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-#, fuzzy
-msgid "Germany"
-msgstr "ľśŔĎ"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "ą×¸Ž˝ş"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "łë¸ŁżţŔĚ"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "˝şżţľ§"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "ŔĚĹť¸ŽžĆ"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "˝Ă¸Žžó ¸śżě˝ş"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "¸ŐŔú ľĽŔĚĹ͸Ś šéž÷ÇĎźźżä."
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "ÁÖŔÇąí°Ô ŔĐŔ¸źźżä!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"¸¸žŕ aboot¸Ś ťçżëÇŇ °čČšŔĚśó¸é, ľđ˝şĹŠŔÇ ˝ĂŔۺκпĄ ĂćşĐÇŃ °ř°Ł (2048 ź˝ĹÍ "
-"¸é ĂćşĐÇÔ)\n"
-"Ŕť ł˛ąâľľˇĎ ÁÖŔÇÇĎźźżä."
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "żŔˇů"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "¸śšýťç"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "ÇŕľżŔť źąĹĂÇĎźźżä"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"ÇĎłŞŔÇ ĹŤ ľľ˝ş ĆÄĆźźÇŔť °ĄÁö°í ŔÖ˝Ŕ´Ď´Ů.\n"
-"(ŔĎšÝŔűŔ¸ˇÎ ¸śŔĚĹŠˇÎźŇÇÁĆŽŔÇ ľľ˝ş/ŔŠľľżěÁź­ ťçżë).\n"
-"¸ŐŔú ą× ĆÄĆźźÇŔÇ ĹŠąâ¸Ś ÁśÁ¤ÇŇ °ÍŔť ąÇŔĺÇŐ´Ď´Ů.\n"
-"(ą×°ÍŔť ĹŹ¸ŻÇŃČÄ, \"ĹŠąâÁśÁ¤\"Ŕť ĹŹ¸ŻÇĎźźżä.)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "ĆÄĆźźÇŔť ĹŹ¸ŻÇĎźźżä"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "ťóźźźł¸í"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "ŔúłÎČ­ FS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "˝şżŇ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "şó°ř°Ł"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "ąâŸ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "ĆÄŔϽýşĹŰ ŔŻÇü:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "ťýźş"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "ŔŻÇü"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "´ë˝ĹżĄ Ą¸%sĄš¸Ś ťçżëÇŐ´Ď´Ů"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "ťčÁŚ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Ą¸žđ¸śżîĆŽĄš¸Ś ¸ŐŔú ťçżëÇĎźźżä"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "%sŔÇ ĆÄĆźźÇ ŔŻÇüŔť şŻ°ćČÄ ŔĚ ĆÄĆźźÇłťŔÇ ¸đľç ŔڡḌ ŔŇ°Ô ľË´Ď´Ů."
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "ĆÄĆźźÇ źąĹĂ"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Ăß°Ą ĆÄĆźźÇ źąĹĂ"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Ážˇá"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "ŔüšŽ°Ą ¸đľĺˇÎ ŔüČŻ"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "ŔĎšÝ ¸đľĺˇÎ ŔüČŻ"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "ľÇľš¸Žąâ"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "°čźÓÇϽðڽŔ´Ďąî?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "ŔúŔĺÇĎÁö žĘ°í ÁžˇáÇϽðڽŔ´Ďąî?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "ĆÄĆźźÇŔť ąâˇĎÇĎÁö žĘ°í ÁžˇáÇϽðڽŔ´Ďąî?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Ą¸/etc/fstabĄšŔÇ şŻ°ćťçÇ×Ŕť ŔúŔĺÇϽðڽŔ´Ďąî?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "ŔÚľż ÇŇ´ç"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "¸đľÎ ťčÁŚ"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "ÇĎľĺ ľđ˝şĹŠ Á¤ş¸"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "¸đľç ÁÖĆÄĆźźÇŔĚ ťçżëÁßŔÔ´Ď´Ů."
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "´őŔĚťó ĆÄĆźźÇŔť Ăß°ĄÇŇ źö žř˝Ŕ´Ď´Ů."
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"´ő ¸šŔş ĆÄĆźźÇŔť ¸¸ľĺ˝ÇˇÁ¸é, ČŽŔĺ ĆÄĆźźÇŔť ¸¸ľéźö ŔÖľľˇĎ ÁÖĆÄĆźźÇ ÇĎłŞ¸Ś Áöżě"
-"źźżä."
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí ŔúŔĺ"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí şšą¸"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí ŔŔąŢóĥ"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí ´Ů˝Ă ŔĐąâ"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "ĹťÂř˝Ä šĚľđžî ŔÚľż ¸śżîĆŽ"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "ĆÄŔĎŔť źąĹĂÇĎźźżä."
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"šéž÷ ĆÄĆźźÇ Ĺ×ŔĚşí ĹŠąâ°Ą °°Áö žĘ˝Ŕ´Ď´Ů.\n"
-"°čźÓ ÇϽðڽŔ´Ďąî?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "°ć°í"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"ÇáÎÇÇ ľđ˝şĹŠ¸Ś ľĺśóŔ̺꿥 łÖŔ¸źźżä\n"
-"ÇáÎÇÇ ľđ˝şĹŠŔÇ ¸đľç ŔڡḌ ŔŇ°Ô ľË´Ď´Ů."
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí şšą¸ ˝Ăľľ Áß..."
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "ŔÚźźÇŃ Á¤ş¸"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "¸śżîĆŽ Ŕ§ÄĄ"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "żÉźÇľé"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "ĹŠąâÁśÁ¤"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "ŔĚľż"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Ć÷¸Ë"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "¸śżîĆŽ"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "RAIDżĄ Ăß°Ą"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "LVMżĄ Ăß°Ą"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "žđ¸śżîĆŽ"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "RAIDˇÎşÎĹÍ ÁŚ°Ĺ"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "LVMŔ¸ˇÎşÎĹÍ ÁŚ°Ĺ"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "RAID źöÁ¤"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "ˇçÇÁšéŔ¸ˇÎ ťçżë"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "ťő ĆÄĆźźÇ ¸¸ľéąâ"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "˝ĂŔŰ ź˝ĹÍ: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "ĹŠąâ(MB) :"
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "ĆÄŔϽýşĹŰ ŔŻÇü: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "¸śżîĆŽ Ŕ§ÄĄ: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "ťçżëŔÚ Á¤ŔÇ"
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "ˇçÇÁšé ĆÄŔĎŔť ÁŚ°ĹÇŐ´Ďąî?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "ĆÄĆźźÇ ŔŻÇü şŻ°ć"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "žîś˛ ĆÄŔĎ ˝Ă˝şĹŰŔť żřÇĎźźżä?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "EXT2żĄź­ EXT3ˇÎ şŻ°ć"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "%sĆÄŔĎŔť žîľđżĄ ˇçÇÁšéŔ¸ˇÎ ¸śżîĆŽ ÇϽðڽŔ´Ďąî?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "ŔĺÄĄ %s¸Ś žîľđżĄ ¸śżîĆŽ ÇϽðڽŔ´Ďąî?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"ŔĚ ĆÄĆźźÇŔş loopbackŔ¸ˇÎ źłÁ¤ľÇžî ŔÖŔ¸šÇˇÎ ¸śżîĆŽ Ć÷ŔÎĆŽ¸Ś şŻ°ćÇŇźö žř˝Ŕ´Ď"
-"´Ů.\n"
-"loopbackŔť ¸ŐŔú ÁŚ°ĹÇĎźźżä."
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "ľľ˝ş ĆÄŔϽýşĹŰŔÇ šüŔ§ °čťęÁß"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "ĹŠąâşŻ°ć"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "ŔĚ ĆÄĆźźÇŔş ĹŠąâşŻ°ćŔĚ ÇăżëľÇÁö žĘ˝Ŕ´Ď´Ů."
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "ŔĚ ĆÄĆźźÇŔÇ ¸đľç ľĽŔĚŸ¸Ś šéž÷ÇĎżŠžß ÇŐ´Ď´Ů."
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "%s ĆÄĆźźÇŔÇ ĹŠąâ¸Ś şŻ°ćÇϸé, ¸đľç ľĽŔĚŸ¸Ś ŔҰԾ˴ϴŮ."
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "ťőˇÎżî ĹŠąâ¸Ś źąĹĂÇŘ ÁÖźźżä"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "ťőˇÎżî żëˇŽ(MB):"
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "žîś˛ ľđ˝şĹŠ¸Ś ŔĚľżÇĎ°í ˝ÍŔ¸˝Ę´Ďąî?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "ź˝ĹÍ"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "žîś˛ ź˝Ĺ͸Ś ŔĚľżÇĎ°í ˝ÍŔ¸˝Ę´Ďąî?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "ŔĚľż Áß"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "ĆÄĆźźÇ ŔĚľż Áß..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Ăß°ĄÇŇ ąâÁ¸ RAID¸Ś źąĹĂÇĎźźżä."
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "ťőˇÎ ¸¸ľéąâ"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Ăß°ĄÇŇ LVM¸Ś źąĹĂÇĎźźżä"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "LVM Ŕ̸§?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "ŔĚ ĆÄĆźźÇŔş loopbackŔ¸ˇÎ ťçżëľÉ źö žř˝Ŕ´Ď´Ů."
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "ˇçÇÁšé"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "ˇçÇÁšé ĆÄŔĎ Ŕ̸§: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "ĆÄŔĎ Ŕ̸§Ŕť ŔÔˇÂÇĎźźżä."
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "´Ů¸Ľ ˇçÇÁšéŔĚ ŔĚ ĆÄŔĎŔť ťçżëÇĎ°í ŔÖ˝Ŕ´Ď´Ů, ´Ů¸Ľ °ÍŔť źąĹĂÇŘ ÁÖźźżä."
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "ĆÄŔĎŔĚ ŔĚšĚ Á¸ŔçÇŐ´Ď´Ů. ą×°ÍŔť ťçżëÇŐ´Ďąî?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "¸śżîĆŽ żÉźÇľé:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "´ŮžçÇŃ"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "ŔĺÄĄ"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "ˇšş§"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "ĹŠąâ"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "ÁÖŔÇ : ŔĚ ÁśŔŰŔş Ŕ§ÇčÇŐ´Ď´Ů."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "žîś˛ ŔŻÇüŔÇ ĆÄĆźźÇŔÔ´Ďąî?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ľđˇşĹ与°Ą ľĺśóŔĚşęťóżĄź­ ÇăżëšüŔ§¸Ś łŃžîź­ ŔÖžî ťýźşÇŇźö "
-"žř˝Ŕ´Ď´Ů. ( 1024 ˝Ç¸°´ő ŔĚÇĎżĄź­¸¸ °Ą´ÉÇŐ´Ď´Ů.\n"
-"LILO¸Ś ťçżëÇŃ´Ů°í ÇĎ´őśóľľ ľżŔŰÇĎÁö žĘ°í, LILO ŔÚĂź¸Ś ťçżëÇŇźöľľ žř˝Ŕ´Ď´Ů."
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"źąĹĂÇŃ root(/)°Ą š°¸ŽŔűŔ¸ˇÎ 1024˝Ç¸°´ő ľÚżĄ ŔÖ˝Ŕ´Ď´Ů.\n"
-"ľűśóź­ /boot ĆÄĆźźÇŔť °ĄÁúźö žř˝Ŕ´Ď´Ů.\n"
-"LILO şÎĆŽ ¸Ĺ´ĎŔú¸Ś ťçżëÇϡÁ ÇѴٸé, ÁÖŔÇÇŘź­ /boot ĆÄĆźźÇŔť Ăß°ĄÇĎźźżä."
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"źŇÇÁĆŽżţžî RAID ĆÄĆźźÇŔť ˇçĆŽ(/)ˇÎ ÁöÁ¤Çß˝Ŕ´Ď´Ů.\n"
-"žîś°ÇŃ şÎĆŽˇÎ´őľľ /boot ĆÄĆźźÇ žřŔĚ´Â ŔĚ°ÍŔť Ăł¸ŽÇĎÁö ¸řÇŐ´Ď´Ů.\n"
-"ą×ˇŻšÇˇÎ /boot ĆÄĆźźÇŔť Ăß°ĄÇĎ´Â °ÍŔť ŔŘÁö ¸śźźżä."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "%s ľĺśóŔĚşęŔÇ ĆÄĆźźÇ Ĺ×ŔĚşíŔť ŔúŔĺÇŐ´Ď´Ů."
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "şŻ°ćľČ°ÍŔť ŔűżëÇĎąâ Ŕ§ÇŘźą ¸ŽşÎĆĂŔĚ ÇĘżäÇŐ´Ď´Ů."
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "%s ĆÄĆźźÇŔť Ć÷¸ËÇϸé, ¸đľç ľĽŔĚŸ¸Ś ŔŇ°Ô ľË´Ď´Ů."
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Ć÷¸Ë Áß"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "loopback ĆÄŔĎ %s Ć÷¸ĹÁß"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "%s ĆÄĆźźÇ Ć÷¸ËÁß"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "ĆÄŔĎ źűąâąâ"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "ťő ĆÄĆźźÇŔ¸ˇÎ ĆÄŔĎ żČąâąâ"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"ľđˇşĹ与 %sżĄ´Â ŔĚšĚ ľĽŔĚĹÍ°Ą ŔÖ˝Ŕ´Ď´Ů.\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "ťő ĆÄĆźźÇŔ¸ˇÎ ĆÄŔĎ żČąâ´Â Áß"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "%s şšťç Áß"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "%s ÁŚ°Ĺ Áß"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "ŔĺÄĄ: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS ľĺśóŔĚşę šŽŔÚ: %s (´ÜÁö ĂßĂřŔĎ ťÓŔÓ)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "ŔŻÇü: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Ŕ̸§:"
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "˝ĂŔŰ: ź˝ĹÍ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "ĹŠąâ: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s ź˝ĹÍ"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "%d ˝Ç¸°´őşÎĹÍ %d ˝Ç¸°´őąîÁö\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Ć÷¸ËľÇžúŔ˝\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Ć÷¸Ë žČľÇžúŔ˝\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "¸śżîĆŽ ľÇžúŔ˝\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "ˇšŔĚľĺ ŔĺÄĄ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"ˇçÇÁšé ĆÄŔĎ(ľé):\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"ąâşťŔűŔ¸ˇÎ şÎĆþǴ ĆÄĆźźÇ\n"
-" (lilo¸Ś Ŕ§ÇŃ°ÍŔĚ žĆ´Ďśó MS-DOS boot¸Ś Ŕ§ÇŃ°ÍŔÓ)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "%s ľîąŢ\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "ĹŠąâ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "ˇšŔĚľĺ-ľđ˝şĹŠ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "ˇçÇÁšé ĆÄŔĎ Ŕ̸§: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"ŔĚ ĆÄĆźźÇŔş ľĺśóŔĚšö ĆÄĆźźÇŔÔ´Ď´Ů.\n"
-"ą×łÉ ľÎ´Â °ÍŔĚ ÁÁ˝Ŕ´Ď´Ů.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"ŔĚ ĆŻş°ÇŃ şÎĆŽ˝şĆŽˇŚ\n"
-"ĆÄĆźźÇŔş ˝Ă˝şĹŰŔť \n"
-"ľŕžó şÎĆĂÇĎąâ Ŕ§ÇŃ °ÍŔÔ´Ď´Ů.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "ĹŠąâ : %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Ŕ§ÄĄ: %s ˝Ç¸°ĹÍ, %s Çěľĺ, %s ź˝ĹÍ\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Á¤ş¸: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-ľđ˝şĹŠ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí ŔŻÇü: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "%d šö˝şťóżĄź­ ID %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "żÉźÇľé: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "ĆÄŔϽýşĹŰ ŔŻÇü: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "ŔĚ žĎČŁ´Â łĘšŤ ´ÜźřÇŐ´Ď´Ů.( Ŕűžîľľ %d ąŰŔÚ´Â łŃžîžß ÇŐ´Ď´Ů)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "žĎČŁ°Ą ŔĎÄĄÇĎÁö žĘ˝Ŕ´Ď´Ů."
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "ŔŻÇü şŻ°ć"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "¸ĹĂź¸Ś ĹŹ¸ŻÇĎźźżä."
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "DNS ź­šö"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s Ć÷¸Ë ˝ÇĆĐ(ľĺśóŔĚşę %s)"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "%s´Â %s ŔŻÇüŔ̚ǡΠĆ÷¸ËÇŇźö žř˝Ŕ´Ď´Ů."
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "ĆÄŔϽýşĹŰ ÁĄ°ËŔĚ ÁžˇáÄÚľĺ %d śÇ´Â ˝Ăą×łÎ %dˇÎ ˝ÇĆĐÇĎż´˝Ŕ´Ď´Ů."
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "%s¸Ś žđ¸śżîĆŽÁß żŔˇůšßťý: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "´ÜźřČ­"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "ź­šö"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "16MB šĚ¸¸ŔÇ ĆÄĆźźÇżĄ´Â JFS ĆÄŔĎ ˝Ă˝şĹŰŔť ťçżëÇŇ źö žř˝Ŕ´Ď´Ů."
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "32MB šĚ¸¸ŔÇ ĆÄĆźźÇżĄ´Â ReiserFS ĆÄŔĎ ˝Ă˝şĹŰŔť ťçżëÇŇ źö žř˝Ŕ´Ď´Ů."
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "¸śżîĆŽ Ŕ§ÄĄ´Â šÝľĺ˝Ă Ą¸/ĄšˇÎ ˝ĂŔŰÇĎżŠžß ÇŐ´Ď´Ů."
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "¸śżîĆŽ Ŕ§ÄĄ %s°Ą ŔĚšĚ Á¸ŔçÇŐ´Ď´Ů.\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr " %s ¸śżîĆŽ Ć÷ŔÎĆŽˇÎ LVM łí¸ŽşźˇýŔť ťçżëÇŇ źö´Â žř˝Ŕ´Ď´Ů. "
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "ŔĚ ľđˇşĹ与´Â ˇçĆŽ ĆÄŔϽýşĹŰ žČżĄ ŔÖžîžß ÇŐ´Ď´Ů."
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"ŔĚ ¸śżîĆŽ Ŕ§ÄĄżĄ´Â ĆŽˇç ĆÄŔϽýşĹŰ (ext2, reiserfs)ŔĚ ¸śżîĆŽ ľÇžîžß ÇŐ´Ď´Ů.\n"
-
-#: ../../fsedit.pm_.c:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr " %s ¸śżîĆŽ Ć÷ŔÎĆŽˇÎ LVM łí¸ŽşźˇýŔť ťçżëÇŇ źö´Â žř˝Ŕ´Ď´Ů. "
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "ŔÚľżÇŇ´çŔť ťçżëÇϹ⿥´Â °ř°ŁŔĚ şÎÁˇÇŐ´Ď´Ů."
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "%s¸Ś ž˛ąâŔ§ÇŘ żŠ´ÂÁß żŔˇůšßťý: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"żŔˇů šßťý - ťőˇÎżî ĆÄŔĎ ˝Ă˝şĹŰŔť ¸¸ľé žîś˛ żĂšŮ¸Ľ ŔĺÄĄľľ ĂŁŔť źö žř˝Ŕ´Ď´Ů.ŔĚ "
-"šŽÁŚ¸Ś ÇŘ°áÇϽáÁ¸é, ÇĎľĺżţžî¸Ś ÁĄ°ËÇŘ ş¸˝Ăąâ šŮśř´Ď´Ů."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "žîś˛ ĆÄĆźźÇľľ Á¸ŔçÇĎÁö žĘ˝Ŕ´Ď´Ů."
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"źąĹĂľČ ÇĎľĺľđ˝şĹŠťóŔÇ ąâÁ¸ ¸Ž´Ş˝ş ĆÄĆźźÇŔĚ Ŕ§żĄ ż­°ĹľÇžî ŔÖ˝Ŕ´Ď´Ů.\n"
-"¸śšýťçżĄ ŔÇÇŘ ŔĚšĚ źłÁ¤ľČ ťçÇ×Ŕť ş¸Á¸ÇŇ źöľľ ŔÖŔ¸¸ç, ŔĚ´Â ´ëşÎşĐŔÇ ŔĎšÝ\n"
-"źłÄĄżĄ ŔűŔýÇŃ źłÁ¤ŔÔ´Ď´Ů. ¸¸žŕ Á÷Á˘ şŻ°ćÇϽðڴٸé, ĂÖźŇÇŃ ˇçĆŽ ĆÄĆźźÇ"
-"(Ą¸/Ąš)\n"
-"Ŕş šÝľĺ˝Ă ÁöÁ¤ÇŘžß ÇŐ´Ď´Ů. łĘšŤ ŔŰŔş ĆÄĆźźÇŔť źąĹĂÇĎÁö´Â ¸śźźżä. ĂćşĐÇŃ źŇÇÁ"
-"ĆŽżţžî\n"
-"¸Ś źłÄĄÇĎÁö ¸řÇĎ´Â źö°Ą ŔÖ˝Ŕ´Ď´Ů. ¸¸žŕ °łŔÎ ľĽŔĚĹÍ°Ą ş°ľľŔÇ ĆÄĆźźÇżĄ ŔúŔĺľÇľľ"
-"ˇĎ\n"
-"ÇĎ°í ˝Í´Ů¸é, Ą¸/homeĄšĆÄĆźźÇŔť ş°ľľˇÎ ¸¸ľĺźźżä.(żŔÁ÷ ¸Ž´Ş˝ş ĆÄĆźźÇŔĚ ľŃ ŔĚťó"
-"ŔĎ\n"
-"°ćżěżĄ¸¸ °Ą´ÉÇŐ´Ď´Ů.)\n"
-"\n"
-"°˘ ĆÄĆźźÇŔş ´ŮŔ˝°ú °°ŔĚ ż­°ĹľË´Ď´Ů: Ą¸Ŕ̸§Ąš,Ą¸żëˇŽĄš.\n"
-"\n"
-"Ą¸Ŕ̸§ĄšżľżŞŔÇ ą¸Áś: Ą¸ÇĎľĺľđ˝şĹŠ ŔŻÇüĄš,Ą¸ÇĎľĺľđ˝şĹŠ šřČŁĄš,\n"
-"Ą¸ĆÄĆźźÇ šřČŁĄš(°ĄˇÉ, Ą¸hda1Ąš).\n"
-"\n"
-"Ą¸ÇĎľĺľđ˝şĹŠ ŔŻÇüĄšŔş, IDE ľđ˝şĹŠŔĎ °ćżěżĄ´Â Ą¸hdĄšŔ̸ç,\n"
-"SCSI ľđ˝şĹŠŔĎ °ćżěżĄ´Â Ą¸sdĄšŔÔ´Ď´Ů.\n"
-"\n"
-"Ą¸ÇĎľĺľđ˝şĹŠ šřČŁĄš´Â Ç×ťó Ą¸hdĄšśÇ´Â Ą¸sdĄšľÚżĄ żŔ´Â šŽŔÚŔÔ´Ď´Ů.\n"
-"IDE ÇĎľĺľđ˝şĹŠŔÇ °ćżě:\n"
-"\n"
-" ĄŰ Ą¸aĄš´Â Ą¸ÁÖ IDE ÁŚžîąâťóŔÇ ÁÖ ľđ˝şĹŠĄš¸Ś ŔÇšĚÇŐ´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸bĄš´Â Ą¸ÁÖ IDE ÁŚžîąâťóŔÇ ş¸Áś ľđ˝şĹŠĄš¸Ś ŔÇšĚÇŐ´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸cĄš´Â Ą¸ş¸Áś IDE ÁŚžîąâťóŔÇ ÁÖ ľđ˝şĹŠĄš¸Ś ŔÇšĚÇŐ´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸dĄš´Â Ą¸ş¸Áś IDE ÁŚžîąâťóŔÇ ş¸Áś ľđ˝şĹŠĄš¸Ś ŔÇšĚÇŐ´Ď´Ů.\n"
-"\n"
-"SCSI ÇĎľĺľđ˝şĹŠŔÇ °ćżě, Ą¸aĄš´Â Ą¸ĂÖźŇ SCSI IDĄš, Ą¸bĄš´Â Ą¸´ŮŔ˝ ĂÖźŇ SCSI "
-"IDĄš\n"
-"żÍ °°Ŕş ˝ÄŔ¸ˇÎ Ŕǚ̸Ś °ĄÁý´Ď´Ů."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝ş źłÄĄ ˝Ă˝şĹŰŔş żŠˇŻ ŔĺŔÇ CDˇÎ ą¸źşľÇžî ŔÖ˝Ŕ´Ď´Ů.\n"
-"ľĺˇšŔĚĹŠX´Â źąĹĂľČ °˘°˘ŔÇ ĆŃĹ°Áö°Ą žî´Ŕ CDżĄ ľéžî ŔÖ´ÂÁö ŔĚšĚ žË°í ŔÖ˝Ŕ´Ď"
-"´Ů.\n"
-"ÇĘżä˝Ă ÇöŔç CD¸Ś ŔÚľżŔ¸ˇÎ ˛¨łť°í ´Ů¸Ľ CDŔÇ ťđŔÔŔť żäĂťÇŇ °ÍŔÔ´Ď´Ů."
-
-#: ../../help.pm_.c:77
-#, fuzzy
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"ŔĚÁŚ ˝Ă˝şĹŰťóżĄ źłÄĄÇŇ ÇÁˇÎą×ˇĽľéŔť ÁöÁ¤ÇŇ Â÷ˇĘŔÔ´Ď´Ů.\n"
-"¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝şżĄ´Â źłÄĄÇŇ źö ŔÖ´Â źöĂľ °łŔÇ ÇÁˇÎą×ˇĽľéŔĚ ŔÖąâ ś§šŽżĄ\n"
-"ťçżëŔÚ°Ą ą×°ÍľéŔť ¸đľÎ ´Ů žËÁö´Â ¸řÇŇ °ÍŔÔ´Ď´Ů.\n"
-"\n"
-"¸¸žŕ ÇĽÁŘ CD źłÄĄ¸Ś źöÇŕÇĎ°í ŔÖ´Â ÁßŔĚśó¸é, ÇöŔç °ĄÁö°í ŔÖ´Â CDľéżĄ ´ëÇŘ\n"
-"ÁúšŽÇŇ °ÍŔÔ´Ď´Ů. °ĄÁö°í ŔÖ´Â CDľéŔÇ śóş§Ŕť ČŽŔÎÇĎ°í ÇöŔç ´ÔŔÇ ťóȲżĄ ¸Â´Â\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"
-"ąâÁ¸ ˝Ă˝şĹŰŔť ž÷ľĽŔĚĆŽÇĎ°ĹłŞ °íÄĄąâ Ŕ§ÇŃ ÁÁŔş šćšýŔÔ´Ď´Ů."
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-#, fuzzy
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"ŔĚ ÄÄÇťĹ͸Ś ŔÎĹÍłÝŔĚłŞ ÁöżŞ ł×ĆŽżöżĄ żŹ°áÇĎ°í ˝Í´Ů¸é, żĂšŮ¸Ľ żÉźÇŔť\n"
-"źąĹĂÇĎźźżä. żÉźÇŔť źąĹĂÇĎąâ ŔüżĄ ł×ĆŽż÷ ŔĺÄĄŔÇ ŔüżřŔĚ ľéžîżÍŔÖ´ÂÁö\n"
-"ČŽŔÎÇŘź­ ľĺˇšŔĚĹŠX°Ą ŔÚľż°¨ÁöÇŇ źö ŔÖľľˇĎ ÇĎźźżä.\n"
-"\n"
-"¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝şżĄź­´Â źłÄĄ˝ĂżĄ ŔÎĹÍłÝ źłÁ¤Ŕť ÇĎ´Â °ÍŔĚ żŠˇŻ ¸đˇÎ ÁÁ˝Ŕ´Ď"
-"´Ů.\n"
-"ŔŻČżÇŃ żŹ°á ŔŻÇü: ŔüĹëŔű ¸đľŠ, ISDN ¸đľŠ, ADSL żŹ°á, ÄÉŔĚşí ¸đľŠ, LAN żŹ°á(ŔĚ"
-"´őłÝ)\n"
-"\n"
-"ŔÚźźÇŃ źłÁ¤ ťçÇ×Ŕş żŠąâź­ źł¸íľÇÁö žĘŔť °ÍŔÔ´Ď´Ů. ¸đľç ŔÎŔھ鿥 ´ëÇŃ Á¤ş¸´Â\n"
-"ŔÎĹÍłÝ ź­şń˝ş °řąŢŔÚłŞ ł×ĆŽż÷ °ü¸ŽŔÚżĄ°Ô šŽŔÇÇŘź­ žËžĆ ş¸źźżä.\n"
-"\n"
-"ťçżëŔÚ źł¸íź­¸Ś ş¸¸é, ŔÎĹÍłÝ żŹ°áżĄ ´ëÇŃ ŔÚźźÇŃ Á¤ş¸¸Ś žňŔť źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"śÇ´Â ˝Ă˝şĹŰŔĚ ´Ů źłÄĄľÉ ś§ąîÁö ąâ´Ů¸° ČÄżĄ, źł¸íź­żĄ łŞżÍ ŔÖ´Â ÇÁˇÎą×ˇĽŔť ťç"
-"żëÇĎżŠ\n"
-"żŹ°áŔť źłÁ¤ÇŇ źöľľ ŔÖ˝Ŕ´Ď´Ů.\n"
-"\n"
-"ł×ĆŽż÷ źłÁ¤Ŕť źłÄĄ°Ą łĄł­ČÄżĄ ÇĎ°í ˝Í°ĹłŞ, ł×ĆŽż÷ źłÁ¤Ŕť łĄ¸śÄŁ ťóĹÂśó¸é,\n"
-"Ą¸ĂëźŇĄš¸Ś ´­ˇŻź­ °čźÓ ÁřÇŕÇĎźźżä."
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"ŔĚÁŚ şÎĆýÿĄ žîś˛ ź­şń˝ş¸Ś ŔÚľżŔ¸ˇÎ ˝ĂŔŰÇĎ°Ô ÇŇÁö¸Ś źąĹĂÇŘžß ÇŐ´Ď´Ů.\n"
-"\n"
-"ÇöŔç źłÄĄľČ ¸đľç ź­şń˝şľéŔĚ żŠąâżĄź­ ş¸żŠÁö°í ŔÖ˝Ŕ´Ď´Ů.\n"
-"˝ĹÁßÇĎ°Ô °ËĹäÇŘź­ şÎĆýÿĄ Çםó ÇĘżäˇÎÇĎ´Â °ÍŔĚ žĆ´Ďśó¸é źąĹĂŔť ÇŘÁŚÇĎźźżä.\n"
-"\n"
-"¸śżě˝ş¸Ś ź­şń˝ş Ŕ̸§ľé Ŕ§ˇÎ żĂ¸Ž¸é, °˘ ź­şń˝şżĄ ´ëÇŃ °Ł´ÜÇŃ źł¸íŔť ş¸żŠ ÁŮ °Í"
-"ŔÔ´Ď´Ů.\n"
-"¸¸žŕ žîś˛ ź­şń˝ş°Ą ÇĘżäÇŃ °ÍŔÎÁö žĆ´ŃÁö¸Ś Ŕß ¸đ¸Ł°Ú´Ů¸é,\n"
-"ąâşť°ŞŔ¸ˇÎ ą×łÉ ľÎ´Â °ÍŔĚ žČŔüÇŃ źąĹĂŔÔ´Ď´Ů.\n"
-"\n"
-"ŔĚ ÄÄÇťĹ͸Ś ź­šöżëŔ¸ˇÎ ťçżëÇϡÁ ÇѴٸé, ŔĚ ´Ü°čżĄź­ ¸Ĺżě ÁÖŔÇÇŘžß ÇŐ´Ď´Ů.\n"
-"ÇĘżäÇĎÁö žĘŔş ź­şń˝ş°Ą ˝ĂŔ۾Ǵ °ÍŔş šŮś÷Á÷ÇĎÁö žĘ˝Ŕ´Ď´Ů. ŔϺΠź­şń˝ş´Â \n"
-"ź­šöťóżĄź­ ˝ÇÇھȴٸé Ŕ§ÇčÇŇ źöľľ ŔÖ´Ů´Â °ÍŔť ¸í˝ÉÇĎźźżä. żřĢŔűŔ¸ˇÎ \n"
-"˛Ŕ ÇĘżäÇŃ ź­şń˝şľé¸¸ źąĹĂÇĎźźżä."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-#, fuzzy
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X(X ŔŠľľżě ˝Ă˝şĹŰ)Ŕş GNU/¸Ž´Ş˝ş ą×ˇĄÇČ ŔÎĹÍĆäŔĚ˝şŔÇ ÇŮ˝ÉŔÔ´Ď´Ů.\n"
-"Ŕ̸Ś ąâšÝŔ¸ˇÎ ¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝şżĄ Ć÷ÇÔľČ ¸đľç ą×ˇĄÇČČŻ°ć(KDE, ą×łđ,\n"
-"żĄÇÁĹÍ˝şĹÜ, ŔŠľľżě¸ŢŔĚÄż...)ŔĚ ŔŰľżÇŐ´Ď´Ů. ŔĚšř ´Ü°čżĄź­ ľĺˇšŔĚĹŠX´Â\n"
-"XŔÇ Áöľż źłÁ¤Ŕť ˝ĂľľÇŇ °ÍŔÔ´Ď´Ů.\n"
-"\n"
-"žĆÁÖ żŔˇĄľČ(śÇ´Â žĆÁÖ ĂÖ˝ĹŔÇ) ÇĎľĺżţžî°Ą žĆ´Ďśó¸é, źłÁ¤żĄ ˝ÇĆĐÇŇ ŔĎŔş\n"
-"°ĹŔÇ žřŔť °ÍŔÔ´Ď´Ů. źłÁ¤żĄ źş°řÇϸé, ÇŘ´ç ¸đ´ĎĹÍŔÇ ĹŠąâżĄź­ °Ą´ÉÇŃ\n"
-"ĂÖ°í Ç؝󾾡ΠŔÚľż Ĺ×˝şĆŽ¸Ś ˝ĂŔŰÇŇ °ÍŔÔ´Ď´Ů.\n"
-"Ĺ×˝şĆŽżĄź­ âŔť ÇĎłŞ śçżě°í ´ÔżĄ°Ô ş¸ŔĚ´ÂÁö ÁúšŽÇŇ °ÍŔÔ´Ď´Ů.\n"
-"\n"
-"¸¸žŕ Ą¸ŔüšŽ°ĄĄš¸đľĺˇÎ źłÄĄ ÁßŔĚśó¸é, ´ÔŔş XźłÁ¤ ¸śšýťçˇÎ\n"
-"žČłťľÉ °ÍŔÔ´Ď´Ů. ŔĚ ¸śšýťçżĄ ´ëÇŃ ´ő ŔÚźźÇŃ Á¤ş¸¸Ś ş¸ˇÁ¸é,\n"
-"ťçżëŔÚ źł¸íź­ŔÇ ÇŘ´ç şÎşĐŔť ÂüÁśÇĎźźżä.\n"
-"\n"
-"¸¸žŕ Ĺ×˝şĆŽ âŔÇ ąŰžž¸Ś şź źö ŔÖ°í Ą¸żšĄš¸Ś ´Š¸Ł¸é, ľĺˇšŔĚĹŠX´Â ´ŮŔ˝ ´Ü°čˇÎ\n"
-"ÁřÇŕÇŇ °ÍŔÔ´Ď´Ů. ¸¸žŕ ąŰžž¸Ś žËžĆşź źö žř´Ů¸é, źłÁ¤ŔĚ Ŕß ¸řľÇžú´Ů´Â °ÍŔť\n"
-"ŔÇšĚÇŐ´Ď´Ů. Ĺ×˝şĆŽ´Â 10ĂĘČÄżĄ Č­¸éŔť şšą¸Çϸ韭 ŔÚľżŔ¸ˇÎ\n"
-"ÁžˇáÇŐ´Ď´Ů."
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"ĂłŔ˝ X źłÁ¤Ŕť ˝ĂľľÇŇ ś§, Č­¸éŔĚ ŔĚťóÇĎ°Ô ş¸ŔĎ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"(Č­¸éŔĚ łĘšŤ ŔŰ°ĹłŞ, żŔ¸ĽÂĘ Č¤Ŕş żŢÂĘŔ¸ˇÎ ÄĄżěĂÄ ŔÖŔť źö ŔÖ˝Ŕ´Ď´Ů.)\n"
-"ą×ˇ¸ąâ ś§šŽżĄ, şńˇĎ X°Ą Á¤ťó ˝ÇÇŕľÇ´őśóľľ ľĺˇšŔĚĹŠX´Â ´Ô˛˛ ŔűŔýÇŃ\n"
-"źłÁ¤ŔÎÁö¸Ś ÁúšŽÇŇ °ÍŔÔ´Ď´Ů. śÇÇŃ ´ÔŔĚ źąĹĂÇŇ źö ŔÖ´Â ŔŻČżÇŃ Č­¸é¸đľĺľéŔÇ\n"
-"¸ńˇĎŔť ÇĽ˝ĂÇŘź­ Á÷Á˘ şŻ°ćÇŇ źö ŔÖ°Ô ÇŇ °ÍŔÔ´Ď´Ů.\n"
-"\n"
-"žĆšŤ¸Ž ÇŘľľ X°Ą Á¤ťóŔűŔ¸ˇÎ ŔŰľżľÇ°Ô ÇŇ źö žř´Ů¸é, Ą¸ą×ˇĄÇČ ÄŤľĺ şŻ°ćĄšŔť źąĹĂ"
-"ÇĎ°í\n"
-"Ą¸¸ńˇĎżĄ žř´Â ÄŤľĺĄš¸Ś źąĹĂÇĎźźżä. ą×¸Ž°í ź­šö Ážˇů¸Ś ÁúšŽÇŇ ś§, Ą¸FBDevĄš"
-"¸Ś\n"
-"źąĹĂÇĎźźżä. ŔĚ°ÍŔş žČŔü¸đľĺ żÉźÇŔ̸ç ÇöŔçŔÇ ¸đľç ą×ˇĄÇČ ÄŤľĺżÍ ČŁČŻľË´Ď´Ů.\n"
-"ą×¸Ž°í łŞź­, Ą¸´Ů˝Ă Ĺ×˝şĆŽĄš¸Ś źąĹĂÇĎżŠ ČŽŔÎÇĎźźżä."
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"¸śÁö¸ˇŔ¸ˇÎ, şÎĆýÿĄ ŔÚľżŔ¸ˇÎ ą×ˇĄÇČ ČŻ°ćŔť ťçżëÇŇ °ÍŔÎÁö¸Ś ÁúšŽÇŇ °ÍŔÔ´Ď"
-"´Ů.\n"
-"ÁÖŔÇ: ŔĚ ÁúšŽŔş źłÁ¤Ŕť Ĺ×˝şĆŽÇĎÁö žĘžŇŔťÁöśóľľ łŞĹ¸łŞ°Ô ľÉ °ÍŔÔ´Ď´Ů.\n"
-"˝Ă˝şĹŰŔť ČŽ˝ÇČ÷ ź­šöżëŔ¸ˇÎ ťçżëÇŇ °ÍŔĚ°ĹłŞ, Č­¸é źłÁ¤żĄ źş°řÇĎÁö ¸řÇŃ °ćżěśó"
-"¸é\n"
-"Ą¸žĆ´ĎżŔĄš¸Ś ´Š¸Łźźżä."
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-#, fuzzy
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"ŔĚÁŚ ÇĎľĺľđ˝şĹŠŔÇ žîľđżĄ ¸Ž´Ş˝ş ¸ÇľĺˇšŔĚĹŠ¸Ś źłÄĄÇŇÁö¸Ś\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"
-"ąâÁ¸ŔÇ ĆÄĆźźÇżĄ´Ů°Ą ¸Ž´Ş˝ş¸Ś źłÄĄÇҡÁ¸é, ŔĚ°ÍŔť źąĹĂÇĎźźżä.\n"
-"\n"
-" ĄŰ ŔŠľľżěÁî ĆÄĆźźÇŔÇ şó °ř°Ł ťçżë: ¸¸žŕ MS ŔŠľľżěÁî°Ą źłÄĄľÇžî ŔÖ°í ¸đľç ľđ˝ş"
-"ĹŠ °ř°ŁŔť ťçżëÇĎ°í Ŕִٸé,\n"
-"¸Ž´Ş˝şżë °ř°ŁŔť ťőˇÎ ¸¸ľéžîžß ÇŐ´Ď´Ů. Ŕ̡¸°Ô ÇĎąâŔ§ÇŘź­´Â, ŔŠľľżěÁî ĆÄĆźźÇŔť "
-"Áöżě°ĹłŞ(Ą¸ŔüĂź ľđ˝şĹŠ ťčÁŚĄš\n"
-"żÍ Ą¸ŔüšŽ°Ą ¸đľĺĄšşÎşĐŔť ÂüÁśÇĎźźżä.), ŔŠľľżěÁî ĆÄĆźźÇŔÇ ĹŠąâ¸Ś ŔçÁśÁ¤ÇĎżŠ °ř"
-"°ŁŔť ČŽş¸ÇŇ źö ŔÖ˝Ŕ´Ď´Ů. ŔŠľľżěÁî\n"
-"ĆÄĆźźÇŔÇ ŔçÁśÁ¤Ŕş ąâÁ¸ŔÇ ľĽŔĚĹ͸Ś ĆÄąŤÇĎÁö žĘąâ ś§šŽżĄ, ŔŠľľżěÁîżÍ ¸Ž´Ş˝ş ¸Ç"
-"ľĺˇšŔĚĹŠ¸Ś ÇŃ ÄÄÇťĹÍżĄź­ ÇÔ˛˛\n"
-"ťçżëÇĎ°íŔÚ ÇѴٸé ŔĚ°ÍŔĚ ąÇŔĺľÇ´Â šćšýŔÔ´Ď´Ů.\n"
-"\n"
-"ŔĚ šćšýŔť źąĹĂÇѴٸé, ŔŠľľżěÁî ĆÄĆźźÇŔÇ ĹŠąâ°Ą ÇöŔ纸´Ů ÁŮžîľéąâ ś§šŽżĄ ŔŠľľ"
-"żěÁ\n"
-"ťçżëÇŇ ś§żĄ´Â źŇÇÁĆŽżţžî¸Ś źłÄĄÇĎ°ĹłŞ ľĽŔĚĹ͸Ś ŔúŔĺÇŇ şó °ř°ŁŔĚ ą×¸¸Ĺ­ ŔűžîÁř"
-"´Ů´Â\n"
-"°ÍŔť ŔŻłäÇĎźźżä.\n"
-"\n"
-" ĄŰ ŔüĂź ľđ˝şĹŠ ťčÁŚ: ¸¸žŕ ľđ˝şĹŠťóŔÇ ¸đľç ąâÁ¸ ĆÄĆźźÇ°ú ľĽŔĚĹ͸Ś ťčÁŚÇĎ°í\n"
-"¸Ž´Ş˝ş ¸ÇľĺˇšŔĚĹŠ¸Ś Ŕ§ÇŃ ĆÄĆźźÇŔ¸ˇÎ šŮ˛Ů°í ˝Í´Ů¸é, ŔĚ°ÍŔť źąĹĂÇĎźźżä.\n"
-"ÁÖŔÇÇĎźźżä: ŔĎ´Ü Ŕ̡¸°Ô ÇĎ°íłŞ¸é ´Ů˝Ă ľÇľš¸ą źö žř˝Ŕ´Ď´Ů.\n"
-"\n"
-" !! ŔĚ żÉźÇŔť źąĹĂÇĎ°Ô ľÇ¸é, ľđ˝şĹŠťóŔÇ ¸đľç ľĽŔĚĹÍ°Ą źŐ˝ÇľË´Ď´Ů. !!\n"
-"\n"
-" ĄŰ ŔŠľľżěÁî ÁŚ°Ĺ: ľđ˝şĹŠťóŔÇ ¸đľç ĆÄĆźźÇŔť ťčÁŚÇĎ°í, ĂĘąâČ­ľČ ľđ˝şĹŠ ťóĹÂżĄ"
-"ź­\n"
-"ĆÄĆźźÇ ŔŰž÷Ŕť ´Ů˝Ă ÇŐ´Ď´Ů. ľđ˝şĹŠťóŔÇ ¸đľç ľĽŔĚĹÍ´Â źŐ˝ÇľË´Ď´Ů.\n"
-"\n"
-" !! ŔĚ żÉźÇŔť źąĹĂÇĎ°Ô ľÇ¸é, ľđ˝şĹŠťóŔÇ ¸đľç ľĽŔĚĹÍ°Ą źŐ˝ÇľË´Ď´Ů. !!\n"
-"\n"
-" ĄŰ ŔüšŽ°Ą ¸đľĺ: ¸¸žŕ źöľżŔ¸ˇÎ ĆÄĆźźÇ ŔŰž÷Ŕť ÇĎ°íŔÚ ÇѴٸé, ŔĚ°ÍŔť źąĹĂÇĎźź"
-"żä.\n"
-"ŔĚ šćšýŔş ´ë´ÜČ÷ °­ˇÂÇĎÁö¸¸ śÇÇŃ Ŕ§ÇčÇŇ źö ŔÖ´Ů´Â °ÍŔť ¸í˝ÉÇĎźźżä. ˝ą°Ô ľĽŔĚ"
-"Ĺ͸Ś\n"
-"ŔŇžî šö¸ą źö ŔÖ˝Ŕ´Ď´Ů. ŔüšŽŔűŔÎ Áö˝ÄŔĚ žř´Ů¸é, ŔĚ šćšýŔş Ŕý´ë źąĹĂÇĎÁö ¸śźź"
-"żä."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"źłÄĄ¸Ś żĎˇáÇĎż´˝Ŕ´Ď´Ů. ´ÔŔÇ GNU/¸Ž´Ş˝ş ˝Ă˝şĹŰŔş ŔĚÁŚ ťçżëÇŇ ÁŘşń°Ą\n"
-"ľÇžú˝Ŕ´Ď´Ů. ˝Ă˝şĹŰŔť ´Ů˝Ă şÎĆĂÇϡÁ¸é Ą¸ČŽŔÎĄšŔť ´Š¸Łźźżä.\n"
-"ÄÄÇťĹÍ°Ą ´Ů˝Ă şÎĆþǸé, (´ŮÁß şÎĆĂŔĚ źłÁ¤ľÇžúŔť °ćżěżĄ) ´ÔŔĚ źąČŁÇĎ´Â\n"
-"żîżľĂźÁŚ¸Ś ˝ĂŔŰÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"\n"
-"Ą¸°íąŢĄššöĆ°(ÁĄšŽ°Ą ¸đľĺżĄ¸¸ ŔÖŔ˝)Ŕť ´Š¸Ł¸é ľÎ °łŔÇ Ăß°Ą šöĆ°ŔĚ łŞĹ¸łŇ´Ď´Ů:\n"
-"\n"
-" ĄŰ Ą¸ŔÚľż źłÄĄ ÇáÎÇÇ ťýźşĄš: ´ÔŔĚ ÁöąÝąîÁö źłÄĄÇŃ łťżëŔť °ü¸ŽŔÚŔÇ ş°´Ů¸Ľ\n"
-"ľľżňžřŔĚ ŔÚľżŔ¸ˇÎ ŔüĂź źłÄĄ¸Ś źöÇŕÇĎ°Ô ÇĎ´Â\n"
-"ŔÚľż źłÄĄ ÇáÎÇÇ ľđ˝şĹŠ¸Ś ¸¸ľě´Ď´Ů.\n"
-"\n"
-" ÁÖŔÇ: šöĆ°Ŕť ´Š¸Ł¸é ľÎ °łŔÇ °łş°ŔűŔÎ żÉźÇŔĚ łŞĹ¸łł´Ď´Ů:\n"
-"\n"
-" ĄŰ Ą¸ŔçťýĄš: ĆÄĆźźÇ łŞ´Šąâ ŔŰž÷¸¸ ÁŚżÜÇĎ°í, łŞ¸ÓÁö °úÁ¤Ŕş ŔÚľżźłÄĄˇÎ\n"
-"źöÇŕÇĎ´Â ŔÚľżźłÄĄ ÇáÎÇǸŚ ¸¸ľě´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸ŔÚľżČ­Ąš: ľđ˝şĹŠťóŔÇ ¸đľç ľĽŔĚĹ͸Ś ťčÁŚÇĎ°í ¸đľç ĆÄĆźźÇŔĚ ´Ů˝Ă\n"
-"¸¸ľéžîÁö´Â żĎşŽÇŃ ŔÚľż źłÄĄ¸Ś źöÇŕÇĎ´Â ÇáÎÇǸŚ ¸¸ľě´Ď´Ů.\n"
-"\n"
-" ŔĚ ąâ´ÉŔť ťçżëÇϸé, ¸šŔş źöŔÇ şń˝ÁÇŃ ÄÄÇťĹÍżĄ źłÄĄŔŰž÷Ŕť ÇŇ ś§ Ćí¸ŽÇŐ´Ď"
-"´Ů.\n"
-" ŔÚźźÇŃ Á¤ş¸´Â ŔúČń ŔŹťçŔĚĆŽŔÇ ŔÚľżźłÄĄ°üˇĂ şÎşĐŔť ÂüÁśÇĎźźżä.\n"
-"\n"
-" ĄŰ Ą¸ĆŃĹ°Áö źąĹĂťçÇ× ŔúŔ奚(*): žŐ ´Ü°čżĄź­ źąĹĂÇŃ ĆŃĹ°Áö ¸ńˇĎŔť ŔúŔĺÇŐ´Ď"
-"´Ů.\n"
-"śÇ ´Ů¸Ľ źłÄĄ¸Ś źöÇŕÇŇ ś§, ÇáÎÇǸŚ ľĺśóŔ̺꿥 łÖ°í, [F1]Ĺ°¸Ś ´­ˇŻź­\n"
-"źłÄĄ Č­¸éŔĚ ľľżň¸ť Č­¸éŔ¸ˇÎ ľéžî°Ą°Ô ÇŃČÄ, Ą¸linux defcfg=\"floppy\"Ąšśó°í\n"
-"ŔÔˇÂÇĎźźżä.\n"
-"\n"
-"(*) ´ÔŔş FATŔ¸ˇÎ Ć÷¸ËľČ ÇáÎÇÇ ÇĎłŞ¸Ś °ĄÁö°í ŔÖžîžß ÇŐ´Ď´Ů.\n"
-" (¸Ž´Ş˝şżĄź­ Ć÷¸ËÇϡÁ¸é, Ą¸mformat a:Ąš¸íˇÉŔť ťçżëÇĎźźżä.)"
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"ťőˇÎ ¸¸ľéžîÁř ĆÄĆźźÇľéŔş Ć÷¸ËľÇžîÁŽžß ÇŐ´Ď´Ů.\n"
-"(Ć÷¸ËŔĚśó ÇÔŔş ĆÄŔĎ ˝Ă˝şĹŰŔť ¸¸ľç´Ů´Â ŔÇšĚŔÔ´Ď´Ů.)\n"
-"\n"
-"ÁöąÝ ąâÁ¸ŔÇ ľĽŔĚĹ͸Ś ťčÁŚÇĎąâ Ŕ§ÇŘź­ ąâÁ¸ ĆÄĆźźÇľéŔť\n"
-"´Ů˝Ă Ć÷¸ËÇŇ źöľľ ŔÖ˝Ŕ´Ď´Ů. ą×ˇ¸°Ô ÇĎ°í ˝Í´Ů¸é, ÇŘ´ç ĆÄĆźźÇľéľľ\n"
-"źąĹĂÇĎźźżä.\n"
-"\n"
-"ÁÖŔÇ: ¸đľç ąâÁ¸ ĆÄĆźźÇľéŔť ´Ů˝Ă Ć÷¸ËÇŇ ÇĘżä´Â žř˝Ŕ´Ď´Ů.\n"
-"(Ą¸/Ąš,Ą¸/usrĄš,Ą¸/varĄšżÍ °°Ŕş) żîżľĂźÁŚ¸Ś ´ă°í ŔÖ´Â ĆÄĆźźÇľéŔş\n"
-"´Ů˝Ă Ć÷¸ËÇĎ´őśóľľ, (Ą¸/homeĄš°ú °°Ŕş) ľĽŔĚĹ͸Ś ´Ü°í ŔÖ´Â ĆÄĆźźÇľéŔş\n"
-", ąâÁ¸ ľĽŔĚĹ͸Ś ş¸Á¸ÇĎ°í ˝ÍŔť °ćżě, ´Ů˝Ă Ć÷¸ËÇŇ ÇĘżä°Ą žř˝Ŕ´Ď´Ů.\n"
-"\n"
-"ĆÄĆźźÇľéŔť źąĹĂÇŇ ś§ ÁÖŔÇÇĎźźżä. ŔĎ´Ü Ć÷ĆŃŔĚ ľÇ°íłŞ¸é,\n"
-"źąĹþƴř ĆÄĆźźÇťóżĄ Á¸ŔçÇß´ř ¸đľç ľĽŔĚĹÍ´Â ťčÁŚľÇ¸ç,\n"
-"şšą¸°Ą şŇ°Ą´ÉÇŘ Áý´Ď´Ů.\n"
-"\n"
-"Ć÷¸ËÇŇ ÁŘşń°Ą ľÇžúŔ¸¸é, Ą¸ČŽŔÎĄšŔť ´Š¸Łźźżä.\n"
-"\n"
-"¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝ş źłÄĄżë ĆÄĆźźÇŔť ´Ů˝Ă źąĹĂÇĎ°í ˝Í´Ů¸é,\n"
-"Ą¸ĂëźŇĄš¸Ś ´Š¸Łźźżä.\n"
-"\n"
-"ľđ˝şĹŠťóŔÇ źŐťóľČ şíˇ°Ŕť ßŊÇϸç Ć÷¸ËÇĎ°í ˝Í´Ů¸é,\n"
-"Ą¸°íąŢĄšŔť ´Š¸Łźźżä."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"ÁöąÝ ťő ¸Ž´Ş˝ş ¸ÇľĺˇšŔĚĹŠ żîżľĂźÁŚ¸Ś źłÄĄÇĎ°í ŔÖ˝Ŕ´Ď´Ů.\n"
-"ŔĚ ŔŰž÷Ŕť łĄłťąâ Ŕ§ÇŘź­´Â ˝Ă°ŁŔĚ Áť °É¸ł´Ď´Ů.\n"
-"ĂŃźŇżä ˝Ă°ŁŔş źąĹĂÇŃ ĆŃĹ°ÁöŔÇ žç°ú ÄÄÇťĹÍ źş´ÉżĄ ľűśó ĹŠ°Ô ´ŢśóÁú źö ŔÖ˝Ŕ´Ď"
-"´Ů.\n"
-"\n"
-"ŔÎłť˝ÉŔť °ĄÁöźźżä."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"´ő ÁřÇŕÇĎąâ ŔüżĄ ťçżëŔÚ °čžŕź­¸Ś ŔÚźźÇĎ°Ô ŔĐžî ş¸źźżä.\n"
-"ťçżëŔÚ °čžŕź­´Â ŔüĂź ¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝ş ščĆ÷şťŔť Ć÷°ýÇĎ´Â łťżëŔ̸ç,\n"
-"¸¸žŕ ľżŔÇÇĎÁö žĘŔ¸˝Ĺ´Ů¸é Ą¸°ĹşÎĄššöĆ°Ŕť ´Š¸Łźźżä. °ĹşÎ šöĆ°Ŕş ÇöŔç źłÄĄ¸Ś\n"
-"Áď°˘ ÁžˇáÇĎ°Ô ÇŐ´Ď´Ů. źłÄĄ¸Ś °čźÓÇĎ°í ˝Í´Ů¸é Ą¸ľżŔÇĄššöĆ°Ŕť ´Š¸Łźźżä."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"ŔĚÁŚ ÄÄÇťĹÍŔÇ ş¸žČ źöÁŘŔť źąĹĂÇŇ ´Ü°čŔÔ´Ď´Ů.\n"
-"ŔÚŔŻˇÎżî ťçżëŔť Ŕ§ÇŘź­´Â ÄÄÇťĹÍ°Ą ş¸´Ů ´ő ¸šŔĚ °łšćľÇžîÁŽžß Çϸç,\n"
-"ŔúŔĺľČ ľĽŔĚĹÍŔÇ ÁßżäźşŔĚ ĹŠ¸é ĹŹźöˇĎ, ´ő łôŔş ş¸žČ źöÁŘŔĚ ŔŻÁöľÇžîžß ÇŐ´Ď"
-"´Ů.\n"
-"ą×ˇŻłŞ ŔĎšÝŔűŔ¸ˇÎ ş¸´Ů łôŔş ş¸žČ źöÁŘŔş ş¸´Ů ¸šŔş ťçżëťóŔÇ şŇĆíÇÔŔť °¨źöÇŘžß"
-"¸¸\n"
-"Ŕ̡çžîÁú źö ŔÖŔ˝Ŕť ŔŻłäÇĎźźżä. °˘ ş¸žČ źöÁŘŔĚ ŔÇšĚÇĎ´Â šŮżĄ ´ëÇŃ ŔÚźźÇŃ Á¤ş¸"
-"¸Ś\n"
-"žË°í ˝Í´Ů¸é Ą¸ťçżëŔÚ Áöħź­ĄšŔÇ MSEC ŔĺŔť ÂüÁśÇĎźźżä.\n"
-"\n"
-"žî´Ŕ °ÍŔť źąĹĂÇŘžß ÇŇÁö Ŕß ¸đ¸Ł°Ú´Ů¸é, ąâşť°ŞŔť ŔŻÁöÇĎźźżä."
-
-#: ../../help.pm_.c:442
-#, fuzzy
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"ŔĚÁŚ žî´Ŕ ĆÄĆźźÇŔĚ ¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝şŔÇ źłÄĄżëŔ¸ˇÎ ťçżëľÇžîžß ÇŇÁö¸Ś\n"
-"źąĹĂÇŘžß ÇŐ´Ď´Ů. ŔĚŔüżĄ ´Ů¸Ľ GNU/¸Ž´Ş˝ş¸Ś źłÄĄÇŃ ŔűŔĚ ŔÖ°ĹłŞ, ´Ů¸Ľ ĆÄĆźźÇ\n"
-"ľľą¸¸Ś ťçżëÇĎżŠ ŔĚšĚ ĆÄĆźźÇľéŔĚ Á¤ŔǾǞî Ŕִٸé, ąâÁ¸ ĆÄĆźźÇŔť ą×´ëˇÎ ťçżë\n"
-"ÇŇ źö ŔÖ˝Ŕ´Ď´Ů. ą×ˇ¸Áö žĘ´Ů¸é ÇĎľĺľđ˝şĹŠŔÇ ĆÄĆźźÇľéŔť ÁöąÝ ¸¸ľéžîžß ÇŐ´Ď´Ů.\n"
-"\n"
-"ĆÄĆźźÇŔť ¸¸ľéˇÁ¸é, ¸ŐŔú ÇĎľĺľđ˝şĹŠ¸Ś źąĹĂÇĎźźżä. ĆÄĆźźÇŔť ¸¸ľéżŠ´Â ÇĎľĺľđ˝şĹŠ"
-"°Ą\n"
-"Ăš šř° IDE ľđ˝şĹŠśó¸é Ą¸hdaĄš, ľÎ šř° IDE ľđ˝şĹŠśó¸é Ą¸hdbĄšżÍ °°Ŕş ˝ÄŔĚ"
-"¸ç,\n"
-"Ăš šř° SCSI ľđ˝şĹŠśó¸é Ą¸sdaĄšżÍ °°Ŕş ˝ÄŔÔ´Ď´Ů.\n"
-"\n"
-"ĆÄĆźźÇŔť łŞ´­ ś§, ´ŮŔ˝ żÉźÇŔť ťçżëÇŇ źö ŔÖ˝Ŕ´Ď´Ů:\n"
-"\n"
-" ĄŰ Ą¸¸đľÎ ťčÁŚĄš: źąĹĂľČ ľđ˝şĹŠŔÇ ¸đľç ąâÁ¸ ĆÄĆźźÇŔť ťčÁŚÇŐ´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸ŔÚľż ÇҴ祚: źąĹĂľČ ľđ˝şĹŠŔÇ şó °ř°ŁżĄ ŔÚľżŔ¸ˇÎ EXT2żÍ ˝şżŇ ĆÄĆźźÇŔť\n"
-"ÇŇ´çÇŐ´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸ĆÄĆźźÇ Ĺ×ŔĚşí şšą¸Ąš: ĆÄĆźźÇ Ĺ×ŔĚşíŔĚ źŐťóľÇžî ŔÖŔť °ćżě, ŔĚ żÉźÇŔ¸ˇÎ\n"
-"źŐťęľČ Ĺ×ŔĚşíŔť şšą¸ÇŐ´Ď´Ů. !!ÁÖŔÇ!! şšą¸˝Ăľľ°Ą ˝ÇĆĐÇŇ źöľľ ŔÖ´Ů´Â °ÍŔť\n"
-"¸í˝ÉÇĎźźżä.\n"
-"\n"
-" ĄŰ Ą¸ľÇľš¸ŽąâĄš: şŻ°ć ťçÇ×Ŕť ĂëźŇÇŐ´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸´Ů˝Ă Ŕй⥚: ¸đľç şŻ°ć ťçÇ×Ŕť ĂëźŇÇĎ°í, ĂĘąâ ĆÄĆźźÇ Ĺ×ŔĚşíŔť ´Ů˝Ă ŔĐ˝Ŕ"
-"´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸¸śšýťçĄš: ¸śšýťç¸Ś ˝ÇÇŕÇĎżŠ ĆÄĆźźÇŔť łŞ´Ż´Ď´Ů. ĆÄĆźźÇ łŞ´ŠąâżĄ ´ëÇŃ Áö"
-"˝ÄŔĚ\n"
-"şÎÁˇÇϴٸé, ŔĚ żÉźÇŔť ťçżëÇĎźźżä.\n"
-"\n"
-" ĄŰ Ą¸ÇáÎÇǡκÎĹÍ şšą¸Ąš: ŔĚŔüżĄ ÇáÎÇÇżĄ ŔúŔĺÇؾРĆÄĆźźÇ Á¤ş¸Ŕť ťçżëÇĎżŠ\n"
-"ĆÄĆźźÇ Ĺ×ŔĚşíŔť şšą¸ÇŐ´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸ÇáÎÇÇżĄ ŔúŔ奚: ĆÄĆźźÇ Á¤ş¸¸Ś ÇáÎÇÇżĄ ŔúŔĺÇŐ´Ď´Ů. ´ŮŔ˝żĄ ĆÄĆźźÇ Ĺ×ŔĚ"
-"şíŔť şšą¸ÇŇ\n"
-"ŔĎŔĚ ťýąć ś§ ťçżëľË´Ď´Ů. ŔĚ °úÁ¤Ŕť źöÇŕÇŇ °ÍŔť ąÇŔĺÇĎ´Â šŮŔÔ´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸żĎˇáĄš: ĆÄĆźźÇ łŞ´Šąâ ŔŰž÷Ŕť łĄ¸śÄĄ¸é, ŔĚ żÉźÇŔ¸ˇÎ şŻ°ć ťçÇ×Ŕť ŔúŔĺÇŐ´Ď"
-"´Ů.\n"
-"\n"
-"Á¤ş¸: Ĺ°ş¸ľĺˇÎ żÉźÇŔť źąĹĂÇŇ źöľľ ŔÖ˝Ŕ´Ď´Ů. ĆÄĆźźÇľé°ŁŔÇ ŔĚľżŔş [Tab]Ĺ°żÍ\n"
-"[Up/Down]Ĺ°¸Ś ťçżëÇĎźźżä.\n"
-"\n"
-"ĆÄĆźźÇŔť źąĹĂÇĎ°í ł­ ČÄżĄ´Â ´ŮŔ˝ Ĺ°¸Ś ťçżëÇŇ źö ŔÖ˝Ŕ´Ď´Ů:\n"
-"\n"
-" ĄŰ Ą¸Ctrl + cĄš: (şó ĆÄĆźźÇŔĚ źąĹĂľČ °ćżě,) ťő ĆÄĆźźÇ ¸¸ľéąâ.\n"
-"\n"
-" ĄŰ Ą¸Ctrl + dĄš: ĆÄĆźźÇ ťčÁŚÇĎąâ.\n"
-"\n"
-" ĄŰ Ą¸Ctrl + mĄš: ¸śżîĆŽ Ŕ§ÄĄ ÁöÁ¤ÇĎąâ.\n"
-"\n"
-"¸¸žŕ PPC ÄÄÇťĹÍżĄź­ źłÄĄÇĎ°í ŔÖ´Â ÁßŔĚśó¸é, YABOOT şÎĆŽˇÎ´ő°Ą ťçżëÇŇ ĂÖźŇ "
-"1MB\n"
-"ŔÇ HFS Ą¸şÎĆŽ˝şĆŽˇŚĄšĆÄĆźźÇŔť ¸¸ľé ÇĘżä°Ą ŔÖ˝Ŕ´Ď´Ů. ¸¸žŕ ą× ĆÄĆźźÇŔť ş¸´Ů ĹŠ"
-"°Ô\n"
-"(°ĄˇÉ, 50MB) ¸¸ľé¸é, ŔŔąŢ ťóȲ˝ĂżĄ ťçżëÇŇ żŠşĐŔÇ ÄżłÎ°ú ˇĽľđ˝şĹŠ ŔĚšĚÁö¸Ś\n"
-"ŔúŔĺÇŇ źö ŔÖ´Â ŔŻżëÇŃ ŔĺźŇ°Ą ľÉ °ÍŔÔ´Ď´Ů."
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"ľŃ ŔĚťóŔÇ MS ŔŠľľżěÁî ĆÄĆźźÇŔĚ ľđ˝şĹŠťóżĄź­ šß°ßľÇžú˝Ŕ´Ď´Ů.\n"
-"¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝ş żîżľĂźÁŚ¸Ś źłÄĄÇĎąâ Ŕ§ÇŘ ĹŠąâ¸Ś ÁśÁ¤ÇŇ\n"
-"ĆÄĆźźÇŔť źąĹĂÇĎźźżä.\n"
-"\n"
-"°˘ ĆÄĆźźÇŔş ´ŮŔ˝°ú °°ŔĚ ż­°ĹľË´Ď´Ů: Ą¸¸Ž´Ş˝ş Ŕ̸§Ąš,Ą¸ŔŠľľżěÁî Ŕ̸§Ąš,\n"
-"Ą¸żëˇŽĄš.\n"
-"\n"
-"Ą¸¸Ž´Ş˝ş Ŕ̸§ĄšżľżŞŔÇ ą¸Áś: Ą¸ÇĎľĺľđ˝şĹŠ ŔŻÇüĄš,Ą¸ÇĎľĺľđ˝şĹŠ šřČŁĄš,\n"
-"Ą¸ĆÄĆźźÇ šřČŁĄš(°ĄˇÉ, Ą¸hda1Ąš).\n"
-"\n"
-"Ą¸ÇĎľĺľđ˝şĹŠ ŔŻÇüĄšŔş, IDE ľđ˝şĹŠŔĎ °ćżěżĄ´Â Ą¸hdĄšŔ̸ç,\n"
-"SCSI ľđ˝şĹŠŔĎ °ćżěżĄ´Â Ą¸sdĄšŔÔ´Ď´Ů.\n"
-"\n"
-"Ą¸ÇĎľĺľđ˝şĹŠ šřČŁĄš´Â Ç×ťó Ą¸hdĄšśÇ´Â Ą¸sdĄšľÚżĄ żŔ´Â šŽŔÚŔÔ´Ď´Ů.\n"
-"IDE ÇĎľĺľđ˝şĹŠŔÇ °ćżě:\n"
-"\n"
-" ĄŰ Ą¸aĄš´Â Ą¸ÁÖ IDE ÁŚžîąâťóŔÇ ÁÖ ľđ˝şĹŠĄš¸Ś ŔÇšĚÇŐ´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸bĄš´Â Ą¸ÁÖ IDE ÁŚžîąâťóŔÇ ş¸Áś ľđ˝şĹŠĄš¸Ś ŔÇšĚÇŐ´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸cĄš´Â Ą¸ş¸Áś IDE ÁŚžîąâťóŔÇ ÁÖ ľđ˝şĹŠĄš¸Ś ŔÇšĚÇŐ´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸dĄš´Â Ą¸ş¸Áś IDE ÁŚžîąâťóŔÇ ş¸Áś ľđ˝şĹŠĄš¸Ś ŔÇšĚÇŐ´Ď´Ů.\n"
-"\n"
-"SCSI ÇĎľĺľđ˝şĹŠŔÇ °ćżě, Ą¸aĄš´Â Ą¸ĂÖźŇ SCSI IDĄš, Ą¸bĄš´Â Ą¸´ŮŔ˝ ĂÖźŇ SCSI "
-"IDĄš\n"
-"żÍ °°Ŕş ˝ÄŔ¸ˇÎ Ŕǚ̸Ś °ĄÁý´Ď´Ů.\n"
-"Ą¸ŔŠľľżěÁî Ŕ̸§ĄšŔş MS ŔŠľľżěÁîÇĎżĄź­ŔÇ Ŕ̸§ŔÔ´Ď´Ů.\n"
-"(°ĄˇÉ, Ăš šř° ľđ˝şĹŠ śÇ´Â ĆÄĆźźÇŔş Ą¸C:ĄšŔÔ´Ď´Ů.)"
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "ąâ´ŮˇÁ ÁÖźźżä. ŔĚ ŔŰž÷Ŕş ¸î şĐŔÇ ˝Ă°ŁŔĚ °É¸ł´Ď´Ů."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"ŔĚÁŚ ´ÔŔş ąâşťźłÄĄ(Ą¸ąÇŔ奚) šćšý°ú ş¸´Ů ˝ÉľľŔÖ´Â źąĹĂŔť ÇŇ źö ŔÖ´Â\n"
-"Ą¸ŔüšŽ°ĄĄšźłÄĄ šćšý Áß ÇĎłŞ¸Ś źąĹĂÇŇÁö °áÁ¤ÇŘžßžß ÇŐ´Ď´Ů. śÇÇŃ ťőˇÎżî źłÄĄ"
-"żÍ\n"
-"ąâÁ¸ŔÇ ¸Ž´Ş˝ş ¸ÇľĺˇšŔĚĹŠ ˝Ă˝şĹŰŔÇ ž÷ą×ˇšŔĚľĺ Áß ÇĎłŞ¸Ś źąĹĂÇŇ źöľľ ŔÖ˝Ŕ´Ď"
-"´Ů.\n"
-"ÇöŔç ´ÔŔÇ ťóȲżĄ ŔűŔýÇŃ °ÍŔť źąĹĂÇĎźźżä.Ą¸źłÄĄĄš¸Ś źąĹĂÇĎ°Ô ľÇ¸é\n"
-"ąâÁ¸ŔÇ ˝Ă˝şĹŰŔť żĎŔüČ÷ ťčÁŚÇĎ°í ´Ů˝Ă źłÄĄÇĎ°Ô ľË´Ď´Ů. Ą¸ž÷ą×ˇšŔ̾奚¸Ś\n"
-"źąĹĂÇĎ°Ô ľÇ¸é ąâÁ¸ŔÇ ˝Ă˝şĹŰŔť ĂֽŠ˝Ă˝şĹŰŔ¸ˇÎ ž÷ą×ˇšŔĚľĺ ÇŐ´Ď´Ů.\n"
-"\n"
-"¸¸žŕ ŔĚŔü šöŔüŔÇ ¸Ž´Ş˝ş ¸ÇľĺˇšŔĚĹŠ°Ą źłÄĄľÇžî ŔÖÁö žĘ°ĹłŞ, \n"
-"żŠˇŻ żîżľĂźÁŚ¸Ś ÇÔ˛˛ ťçżëÇĎ°í ˝Í´Ů¸é, Ą¸źłÄĄĄš¸Ś ´Š¸Łźźżä.\n"
-"\n"
-"¸¸žŕ ŔĚšĚ źłÄĄľČ ŔĚŔü šöŔüŔÇ ¸Ž´Ş˝ş ¸ÇľĺˇšŔĚĹŠ¸Ś ž÷ľĽŔĚĆŽÇϡÁ¸é,\n"
-" Ą¸ž÷ľĽŔĚĆŽĄš¸Ś ´Š¸Łźźżä.\n"
-"\n"
-"´ÔŔÇ GNU/LinuxżĄ ´ëÇŃ Áö˝Ä źöÁŘżĄ ľűśó, ´ÔŔÇ ¸Ž´Ş˝ş ¸ÇľĺˇšŔĚĹŠ¸Ś\n"
-"źłÄĄ śÇ´Â ž÷ľĽŔĚĆŽÇĎ´Â ´ŮŔ˝°ú °°Ŕş šćšýŔť źąĹĂÇŇ źö ŔÖ˝Ŕ´Ď´Ů:\n"
-"\n"
-" ĄŰ ąÇŔĺ: ¸¸žŕ ´ÔŔĚ GNU/Linux¸Ś ťçżëÇŘ şť °ćÇčŔĚ žř´Ů¸é, ŔĚ°ÍŔť źąĹĂÇĎźźżä.\n"
-"źłÄĄ°úÁ¤Ŕş žĆÁÖ ˝ą°í ´ÔŔş ¸î °łŔÇ ÁúšŽżĄ¸¸ ´äÇĎ¸é ľË´Ď´Ů.\n"
-"\n"
-" ĄŰ ŔüšŽ°Ą: ¸¸žŕ ´ÔŔĚ GNU/LinuxżĄ ´ëÇŃ ´ë´ÜÇŃ Áö˝ÄŔť °ĄÁö°í Ŕִٸé, ŔĚ°ÍŔť źą"
-"ĹĂÇĎźźżä.\n"
-"Ą¸ťçżëŔÚ Á¤ŔÇĄš źłÄĄĂłˇł ÁÖżëľľ(żöĹŠ˝şĹ×ŔĚźÇ, ź­šö, °łšß)Ŕť źąĹĂÇŇ źö ŔÖ˝Ŕ´Ď"
-"´Ů. \n"
-"ŔĚ°ÍŔť źąĹĂÇϹ⿥ žŐź­ ¸Ĺżě ÁÖŔÇÇĎźźżä. ´ÔŔş °íľľŔÇ ťçżëŔÚ Á¤ŔÇ źłÄĄ¸Ś źöÇŕÇĎ"
-"°Ô ľË´Ď´Ů.\n"
-"GNU/LinuxżĄ ´ëÇŘź­ Ŕß ¸đ¸Ľ´Ů¸é, ÁúšŽżĄ ´äÇĎąâ°Ą ¸Ĺżě žîˇÁżď źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"ľűśóź­ ČŽ˝ĹŔĚ ź­Áö žĘ´Â´Ů¸é ŔĚ źłÄĄšćšýŔť źąĹĂÇĎÁö ¸śźźżä."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"ŔĎšÝŔűŔ¸ˇÎ, ľĺˇšŔĚĹŠX´Â (´ÔŔĚ źąĹĂÇŃ žđžîżĄ ąâšÝÇĎżŠ) żĂšŮ¸Ľ Ĺ°ş¸ľĺ¸Ś\n"
-"ŔÚľżŔ¸ˇÎ źąĹĂÇŐ´Ď´Ů. ą×ˇŻłŞ ´ÔŔĚ ťçżëÇĎ´Â žđžîżĄ Á¤ČŽČ÷ ŔĎÄĄÇĎ´Â Ĺ°ş¸ľĺ¸Ś\n"
-"°ĄÁö°í ŔÖÁö žĘ´Â °ćżěľľ ŔÖŔť źö ŔÖ˝Ŕ´Ď´Ů: °ĄˇÉ, żľžî¸Ś ťçżëÇĎ´Â ˝şŔ§˝şŔÎŔş\n"
-"żŠŔüČ÷ ˝şŔ§˝ş Ĺ°ş¸ľĺ¸Ś żřÇŇ źöľľ ŔÖ˝Ŕ´Ď´Ů. śÇÇŃ żľžî¸Ś ťçżëÇĎÁö¸¸, ÄłłŞ´Ů Äů"
-"ş¤ÁÖżĄ\n"
-"ťě°í ŔÖ´Ů¸é śÇÇŃ Ŕ̡ŻÇŃ °ćżě°Ą ľÉ °ÍŔÔ´Ď´Ů. Ŕ̡ąˇůŔÇ °ćżěśó¸é, ŔĚ ´Ü°čżĄź­\n"
-"Ŕű´çÇŃ Ĺ°ş¸ľĺ¸Ś ¸ńˇĎżĄź­ źąĹĂÇŘžß ÇŐ´Ď´Ů.\n"
-"\n"
-"ÁöżřľÇ´Â ¸đľç Ĺ°ş¸ľĺ ¸ńˇĎŔť ş¸ˇÁ¸é, Ą¸Ăß°ĄÁ¤ş¸Ąš¸Ś\n"
-"´Š¸Łźźżä."
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"źłÄĄ˝Ă ą×¸Ž°í ˝Ă˝şĹŰżëŔ¸ˇÎ ťçżëÇŇ žđžî¸Ś źąĹĂÇĎźźżä.\n"
-"\n"
-"Ą¸°íąŢĄšŔť ´Š¸Ł¸é, ´Ů¸Ľ žđžîľľ Ăß°ĄˇÎ źąĹĂÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"´Ů¸Ľ žđžîľľ źąĹĂÇĎ°Ô ľÇ¸é, ą× žđžîżÍ °üˇĂľČ ˝Ă˝şĹŰ šŽź­ š× ÇÁˇÎą×ˇĽ ĆÄŔĎľé"
-"ľľ\n"
-"źłÄĄÇĎ°Ô ľË´Ď´Ů. °ĄˇÉ, ´ÔŔÇ ˝Ă˝şĹŰŔť ŔĎşťŔÎľľ ťçżëÇŇ źö ŔÖľľˇĎ ÇĎ°í ˝Í´Ů¸é,\n"
-"¸ńˇĎżĄź­ ÁÖ žđžîˇÎ Ą¸ÇŃąšžîĄš¸Ś źąĹĂÇĎ°í, Ą¸°íąŢĄšżĄź­ Ą¸ŔĎşťžîĄšżĄ ÇŘ´çÇĎ"
-"´Â\n"
-"ȸťö ş°ÇĽ¸Ś źąĹĂÇĎźźżä.\n"
-"\n"
-"żŠˇŻ°łŔÇ Ăß°Ą žđžî¸Ś źąĹĂÇŇ źöľľ ŔÖ˝Ŕ´Ď´Ů. žđžî źąĹĂŔť łĄ¸śĂĆŔ¸¸é,\n"
-"Ą¸ČŽŔÎĄšŔť ´­ˇŻź­ °čźÓ ÁřÇŕÇĎźźżä."
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"ąâşťŔűŔ¸ˇÎ ľĺˇšŔĚĹŠX´Â ´ÔŔĚ 2šöĆ° ¸śżě˝ş¸Ś ťçżëÇŃ´Ů°í °ĄÁ¤ÇŇ °ÍŔ̸ç,\n"
-"źź šř° šöĆ°Ŕş żĄšÄˇšŔĚźÇÇŇ °ÍŔÔ´Ď´Ů. ¸śżě˝ş°Ą PS/2, ˝Ă¸Žžó, ȤŔş USBżëŔÎÁö"
-"´Â\n"
-"ľĺˇšŔĚĹŠX°Ą ŔÚľżŔ¸ˇÎ žËžĆłž źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"\n"
-"¸¸žŕ ´Ů¸Ľ ¸śżě˝ş ŔŻÇüŔť ÁöÁ¤ÇĎ°í ˝Í´Ů¸é, ÁŚ°řľÇ´Â ¸ńˇĎżĄź­ Ŕű´çÇŃ °ÍŔť\n"
-"źąĹĂÇĎźźżä.\n"
-"\n"
-"¸¸žŕ ´Ů¸Ľ ¸śżě˝ş¸Ś źąĹĂÇĎ°Ô ľÇ¸é, ¸śżě˝ş Ĺ×˝şĆŽ Č­¸éŔť ş¸°ÔľÉ °ÍŔÔ´Ď´Ů.\n"
-"ą×ˇŻ¸é, ¸śżě˝ş šöĆ°°ú ČŮŔť ÁśŔŰÇĎżŠ źłÁ¤ŔĚ Á¤ČŽÇĎ°Ô ľÇžú´ÂÁö ČŽŔÎÇĎźźżä.\n"
-"¸¸žŕ ÁŚ´ëˇÎ ŔŰľżÇĎąâ žĘŔ¸¸é,Ą¸ĂëźŇĄššöĆ° Ŕ§żĄź­ ˝şĆäŔĚ˝ş Ĺ°łŞ żŁĹÍ Ĺ°¸Ś\n"
-"´Š¸Ł°í ´Ů˝Ă źąĹĂÇϽù⠚ٜř´Ď´Ů."
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Á¤ČŽÇŃ Ć÷ĆŽ¸Ś źąĹĂÇĎźźżä. żš¸Ś ľéžî, MS ŔŠľľżěÁź­ COM1Ŕş\n"
-"¸Ž´Ş˝şżĄź­´Â ttyS0ˇÎ ¸í¸íľË´Ď´Ů."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO(¸Ž´Ş˝ş ˇÎ´ő)żÍ GRUBŔş şÎĆŽ ˇÎ´őŔÔ´Ď´Ů: ŔĚ°ÍľéŔş ˝Ă˝şĹŰťóŔÇ\n"
-"GBU/¸Ž´Ş˝ş śÇ´Â ´Ů¸Ľ żîżľĂźÁŚ¸Ś şÎĆĂ˝ĂĹ°´ÂľĽ ťçżëľË´Ď´Ů.\n"
-"ŔĎšÝŔűŔ¸ˇÎ, ¸Ž´Ş˝ş°Ą žĆ´Ń ´Ů¸Ľ żîżľĂźÁŚľľ ŔÚľżŔ¸ˇÎ °¨ÁöľÇžî\n"
-"źłÁ¤ľË´Ď´Ů. ą×ˇŻłŞ ¸¸žŕ ą×ˇ¸Áö ¸řÇŃ °ćżě, żŠąâź­ Á÷Á˘ Ç׸ńŔť\n"
-"Ăß°ĄÇŇ źö ŔÖ˝Ŕ´Ď´Ů. Á¤ČŽÇŃ ŔÎŔÚ°ŞŔť źąĹĂÇĎľľˇĎ ÁÖŔÇÇĎźźżä.\n"
-"\n"
-"śÇÇŃ ´Ů¸Ľ ťçś÷ŔĚ ĆŻÁ¤ żîżľĂźÁŚ¸Ś şÎĆĂÇĎ´Â °ÍŔť ¸ˇ°í ˝ÍŔť źöľľ\n"
-"ŔÖŔť °ÍŔÔ´Ď´Ů. ą×ˇą °ćżě, ÇŘ´ç Ç׸ńŔť Áöżěźźżä. ą×ˇŻłŞ ą×ˇ¸°ÔÇϸé,\n"
-"ą× żîżľĂźÁŚ¸Ś şÎĆĂÇĎąâ Ŕ§ÇŘź­´Â şÎĆĂ ľđ˝şĹŠ°Ą ŔÖžîžß ÇŐ´Ď´Ů!"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"GNU/¸Ž´Ş˝ş¸Ś şÎĆĂÇĎ´ÂľĽ ÇĘżäÇŃ Á¤ş¸¸Ś žîľđżĄ Ŕ§ÄĄ˝ĂĹł °ÍŔÎÁö\n"
-"ÁöÁ¤ÇŘ ÁÖźźżä.\n"
-"\n"
-"ÁöąÝ šŤžůŔť šŻ°í ŔÖ´ÂÁö ÁśÂ÷ ¸đ¸Ł°Ú´Ů¸é,\n"
-"Ą¸ľđ˝şĹŠŔÇ Ăš ź˝ĹÍ(MBR)Ąš¸Ś źąĹĂÇĎźźżä."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"ľĺˇšŔĚĹŠX°Ą ˝Ă˝şĹŰťóżĄ ŔÖ´Â ¸đľç ÇĎľĺ ľđ˝şĹŠ¸Ś °ËťöÇĎ°í\n"
-"śÇÇŃ PCI SCSI žî´đĹÍ Ĺ˝Áö¸Ś ˝ĂľľÇŇ °ÍŔÔ´Ď´Ů.\n"
-"¸¸žŕ ľĺˇšŔĚĹŠX°Ą ŔĺÄĄ¸Ś šß°ßÇĎ°Ô ľÇ¸é ŔÚľżŔ¸ˇÎ\n"
-"żĂšŮ¸Ľ ľĺśóŔĚšö¸Ś źłÄĄÇŇ °ÍŔÔ´Ď´Ů.\n"
-"\n"
-"ľĺˇšŔĚĹŠXŔÇ ŔĺÄĄ °ËťöŔĚ ˝ÇĆĐÇĎ´őśóľľ, ´Ô˛˛ SCSI ŔĺÄĄŔÇ ŔŻšŤ¸Ś ÁúšŽÇĎ°Ô ľË´Ď"
-"´Ů.\n"
-"¸ńˇĎżĄź­ ŔĺÄĄ¸Ś Á÷Á˘ źąĹĂÇϡÁ¸é Ą¸żšĄš¸Ś, SCSI ŔĺÄĄ°Ą žř´Ů¸é Ą¸žĆ´ĎżŔĄš¸Ś źą"
-"ĹĂÇĎźźżä.\n"
-"Ŕß ¸đ¸Ł°Ú´Ů¸é, Ą¸ÇĎľĺżţžî Á¤ş¸ ş¸ąâĄš¸Ś źąĹĂÇŃ ČÄ Ą¸ČŽŔÎĄšŔť ´­ˇŻź­\n"
-"˝Ă˝şĹŰťóżĄ Á¸ŔçÇĎ´Â ÇĎľĺżţžîľéŔť ťěĆěşź źöľľ ŔÖ˝Ŕ´Ď´Ů.\n"
-"ÇĎľĺżţžîżĄ ´ëÇŃ °ËĹä°Ą łĄłŞ¸é ´Ů˝Ă Ą¸ČŽŔÎĄššöĆ°Ŕť ´­ˇŻź­ SCSI ŔÎĹÍĆäŔĚ˝ş Áú"
-"šŽ Č­¸é\n"
-"Ŕ¸ˇÎ ľšžĆ żĂ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"\n"
-"Á÷Á˘ žî´đĹ͸Ś ÁöÁ¤ÇŘžß ÇŇ ś§żĄ´Â, ľĺˇšŔĚĹŠX°Ą żÉźÇŔť ÁöÁ¤ÇŇ °ÍŔÎÁö¸Ś š°žî\n"
-"şź °ÍŔÔ´Ď´Ů. ŔĚ ś§´Â ľĺˇšŔĚĹŠX°Ą ÇĘżäÇŃ żÉźÇŔť Ĺ˝ÁöÇĎľľˇĎ ÇĎ´Â °ÍŔĚ ÁÁ˝Ŕ´Ď"
-"´Ů.\n"
-"ŔĎšÝŔűŔ¸ˇÎ ŔĚ šćšýŔş Ŕß ŔŰľżÇŐ´Ď´Ů.\n"
-"\n"
-"\n"
-"¸¸žŕ ą×ˇ¸Áö žĘ´Ů¸é, Á÷Á˘ ľĺśóŔĚšö żÉźÇŔť ÁöÁ¤ÇŘžß ÇŐ´Ď´Ů. ťçżëŔÚ źł¸íź­(3"
-"Ŕĺ, \n"
-"Ą¸ÇĎľĺżţžîżĄ ´ëÇŃ ÁžÇŐÁ¤ş¸ĄšťöźÇ)¸Ś ÂüÁśÇĎżŠ, ÇĎľĺżţžî źł¸íź­, \n"
-"(ŔÎĹͳݿĄ żŹ°áÇŇ źö Ŕִٸé) ÁŚÁśž÷Ăź ŔĽ ťçŔĚĆŽ, \n"
-"śÇ´Â (ŔŠľľżěÁî°Ą źłÄĄľÇžî Ŕִٸé) MS ŔŠľľżěÁź­ žîśť°Ô żŠąâżĄ ÇĘżäÇŃ \n"
-"Á¤ş¸¸Ś žËžĆ łž źö ŔÖ´ÂÁö ĂŁžĆ ş¸źźżä."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-#, fuzzy
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"´ÔŔÇ ˝Ă˝şĹŰżĄ °üÇŃ ´ŮžçÇŃ ŔÎŔÚľéŔť ş¸ŔĚ°í ŔÖ˝Ŕ´Ď´Ů. źłÄĄľČ ÇĎľĺżţżĄ ľűśó\n"
-"žĆˇĄżĄ źł¸íľÇ´Â Ç׸ńľé Áß ŔϺδ ş¸ŔĚÁö žĘŔť źö ŔÖ˝Ŕ´Ď´Ů:\n"
-"\n"
-" ĄŰ Ą¸¸śżě˝şĄš: ÇöŔç ¸śżě˝ş źłÁ¤Ŕť ČŽŔÎÇĎ°í, ÇĘżäÇϴٸé ĹŹ¸ŻÇĎżŠ\n"
-"¸śżě˝ş¸Ś şŻ°ćÇĎźźżä.\n"
-"\n"
-" ĄŰ Ą¸Ĺ°ş¸ľĺĄš: ÇöŔç Ĺ°ş¸ľĺ ¸ĘŔť ČŽŔÎÇĎ°í, ÇĘżäÇϴٸé ĹŹ¸ŻÇĎżŠ\n"
-"Ĺ°ş¸ľĺ¸Ś şŻ°ćÇĎźźżä.\n"
-"\n"
-" ĄŰ Ą¸ÁöżŞ˝Ă°Ł´ëĄš: ľĺˇšŔĚĹŠX´Â ´ÔŔĚ źąĹĂÇŃ žđžîżĄ ľűśó ŔÚľżŔ¸ˇÎ\n"
-"ÁöżŞ˝Ă°Ł´ë¸Ś źąĹĂÇŐ´Ď´Ů. ą×ˇŻłŞ, Ĺ°ş¸ľĺľľ ą×ˇŻÇĎÁö¸¸, ´ÔŔş ÇöŔç źąĹĂľČ\n"
-"žđžîżÍ ŔĎÄĄÇĎ´Â ąš°ĄżĄ °ĹÁÖÇĎ°í ŔÖÁö žĘŔť źöľľ ŔÖ˝Ŕ´Ď´Ů.\n"
-"ą×ˇŻÇϴٸé, Ą¸ÁöżŞ˝Ă°Ł´ëĄš¸Ś ĹŹ¸ŻÇĎżŠ, ´ÔŔĚ ÇöŔç °ĹÁÖÇĎ°í ŔÖ´Â\n"
-"ÁöżŞŔÇ ˝Ă°Ł´ëżĄ ¸Â°Ô ˝Ă°ŁŔť źłÁ¤ÇĎźźżä.\n"
-"\n"
-" ĄŰ Ą¸ÇÁ¸°ĹÍĄš: Ą¸ÇÁ¸°ĹÍ žřŔ˝ĄšŔť ´Š¸Ł¸é, ÇÁ¸°ĹÍ źłÁ¤ ¸śšýťç°Ą\n"
-"˝ĂŔŰľÉ °ÍŔÔ´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸ťçżîľĺ ÄŤľĺĄš: ¸¸žŕ ťçżîľĺ ÄŤľĺ°Ą °¨ÁöľÇžú´Ů¸é, żŠąâżĄ łŞĹ¸łŻ\n"
-"°ÍŔÔ´Ď´Ů. źłÄĄ ÁßżĄ şŻ°ćÇĎ´Â °ÍŔş şŇ°Ą´ÉÇŐ´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸TV ÄŤľĺĄš: ¸¸žŕ TV ÄŤľĺ°Ą °¨ÁöľÇžú´Ů¸é, żŠąâżĄ łŞĹ¸łŻ °ÍŔÔ´Ď´Ů.\n"
-"źłÄĄ ÁßżĄ şŻ°ćÇĎ´Â °ÍŔş şŇ°Ą´ÉÇŐ´Ď´Ů.\n"
-"\n"
-" ĄŰ Ą¸ISDN ÄŤľĺĄš: ¸¸žŕ ISDN ÄŤľĺ°Ą °¨ÁöľÇžú´Ů¸é, żŠąâżĄ łŞĹ¸łŻ\n"
-"°ÍŔÔ´Ď´Ů. šöĆ°Ŕť ĹŹ¸ŻÇĎżŠ °üˇĂ ŔÎŔÚŔť şŻ°ćÇŇ źöľľ\n"
-"ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝ş ĆÄĆźźÇŔť ¸¸ľéąâ Ŕ§ÇŘź­ ťčÁŚÇŇ ÇĎľĺľđ˝şĹŹ¸Ł źąĹĂÇĎźźżä.\n"
-"ÁÖŔÇ:\n"
-"ľđ˝şĹŠťóŔÇ ¸đľç ľĽŔĚĹÍ´Â źŐ˝ÇľÇ¸ç, żľżřČ÷ şšą¸°Ą şŇ°Ą´ÉÇŘ Áý´Ď´Ů!"
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"ŔĚ ÇĎľĺľđ˝şĹŠťóŔÇ ¸đľç ľĽŔĚĹÍżÍ ĆÄĆźźÇŔť ťčÁŚÇϡÁ¸é, Ą¸ČŽŔÎĄšŔť ´Š¸Łźźżä.\n"
-"!!ÁÖŔÇÇĎźźżä!!ŔĎ´Ü Ą¸ČŽŔÎĄšŔť ´Š¸Ł°Ô ľÇ¸é, MS ŔŠľľżěÁî ľĽŔĚĹиŁ Ć÷ÇÔÇĎżŠ ŔĚ "
-"ľđ˝şĆŽťóŔÇ ¸đľç\n"
-"ľĽŔĚĹÍżÍ ĆÄĆźźÇŔş şšą¸°Ą şŇ°Ą´ÉÇŘ Áý´Ď´Ů.\n"
-"\n"
-"ŔĚ ŔŰž÷Ŕť ĂëźŇÇϡÁ¸é, ÁöąÝ Ą¸ĂëźŇĄš¸Ś ´Š¸Łźźżä. žîś°ÇŃ ľĽŔĚĹÍżÍ ĆÄĆźźÇľľ\n"
-"źŐťóľÇÁö žĘŔť °ÍŔÔ´Ď´Ů."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"´ŮŔ˝°ú °°Ŕş ź­šöľéŔĚ źąĹþǞú˝Ŕ´Ď´Ů: %s\n"
-"\n"
-"\n"
-"ŔĚ ź­šöľéŔş ąâşťŔűŔ¸ˇÎ Č°źşČ­ľË´Ď´Ů. şńˇĎ žĆÁ÷ąîÁö žËˇÁÁř ş¸žČ šŽÁŚ´Â žřÁö"
-"¸¸,\n"
-"ťőˇÎżî šŽÁŚÁĄŔĚ šß°ßľÉ źöľľ ŔÖ˝Ŕ´Ď´Ů. ą×ˇ˛ °ćżěżĄ´Â °Ą´ÉÇŃ ÇŃ ˝ĹźÓÇĎ°Ô\n"
-"ž÷ą×ˇšŔĚľĺÇŘžß ÇŐ´Ď´Ů.\n"
-"\n"
-"\n"
-"Á¤¸ťˇÎ ŔĚ ź­šöľéŔť źłÄĄÇŐ´Ďąî?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "NIS ľľ¸ŢŔÎ žřŔĚ´Â şęˇÎľĺÄÉ˝şĆŽ¸Ś ťçżëÇŇ źö žř˝Ŕ´Ď´Ů."
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "ÇáÎÇÇ ľđ˝şĹŠ¸Ś %s ľĺśóŔ̺꿥 łÖŔ¸źźżä"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "ŔĚ ÇáÎÇÇ ľđ˝şĹŠ´Â FAT Ć÷¸ËŔĚ žĆ´Ő´Ď´Ů."
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"ŔĚ ŔúŔĺľČ ĆŃĹ°Áö źąĹøńˇĎŔť ťçżëÇҡÁ¸é, ``linux defcfg=floppy''śó°í ŔÔˇÂÇĎżŠ "
-"źłÄĄŔť ˝ĂŔŰÇĎźźżä."
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "%s ĆÄŔĎŔť ŔĐ´ÂÁß żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů."
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Ą¸ťóž÷żëĄšľĺśóŔĚšö¸Ś ÇĘżäˇÎÇĎ´Â ŔϺΠÇĎľĺżţžî°Ą ˝Ă˝şĹŰťóżĄ ŔÖ˝Ŕ´Ď´Ů.\n"
-"ŔÚźźÇŃ Á¤ş¸´Â ´ŮŔ˝Ŕť ÂüÁśÇĎźźżä: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"ˇçĆŽ ĆÄĆźźÇŔĚ šÝľĺ˝Ă ÇĘżäÇŐ´Ď´Ů.\n"
-"Ŕ̸Ś Ŕ§ÇŘź­, ĆÄĆźźÇŔť ťýźşÇĎźźżä. (ŔĚšĚ ŔÖ´Â ĆÄĆźźÇŔť ĹŹ¸ŻÇĎ°ĹłŞ).\n"
-"ą×¸Ž°í łŞź­, ``¸śżîĆŽ Ŕ§ÄĄ''¸Ś ĹŹ¸ŻÇŃČÄ '/'Ŕ¸ˇÎ źłÁ¤ÇĎźźżä."
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "˝şżŇ ĆÄĆźźÇŔş šÝľĺ˝Ă ÇĘżäÇŐ´Ď´Ů."
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"˝şżŇ ĆÄĆźźÇŔĚ žř˝Ŕ´Ď´Ů.\n"
-"\n"
-"°čźÓ ÁřÇŕÇŐ´Ďąî?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Ą¸/boot/efiĄšżĄ ¸śżîĆŽľČ FAT ĆÄĆźźÇŔĚ ŔÖžîžß¸¸ ÇŐ´Ď´Ů."
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "şó °ř°Ł ťçżë"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "ťőˇÎżî ĆÄĆźźÇŔť ¸¸ľé źö ŔÖ´Â °ř°ŁŔĚ şÎÁˇÇŐ´Ď´Ů."
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "ąâÁ¸ŔÇ ĆÄĆźźÇ ťçżë"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "ťçżëÇŇ ąâÁ¸ŔÇ ĆÄĆźźÇŔĚ žř˝Ŕ´Ď´Ů."
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "ŔŠľľżěÁî ĆÄĆźźÇŔť ˇçÇÁšéŔ¸ˇÎ ťçżë"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "žî´Ŕ ĆÄĆźźÇŔť Linux4WinżëŔ¸ˇÎ ťçżëÇĎ°Ú˝Ŕ´Ďąî?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "ĹŠąâ źąĹĂ"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "ˇçĆŽ ĆÄĆźźÇ ĹŠąâ(MB): "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "˝şżŇ ĆÄĆźźÇ ĹŠąâ(MB): "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "ŔŠľľżěÁî ĆÄĆźźÇŔÇ şó °ř°Ł ťçżëÇĎźźżä."
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "žîś˛ ĆÄĆźźÇŔÇ ĹŠąâ¸Ś ÁśÁ¤ÇϽðڽŔ´Ďąî?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "ŔŠľľżěÁî ĆÄŔĎ ˝Ă˝şĹŰŔÇ šüŔ§ °čťęÁß"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"FAT ĹŠąâ ÁśÁ¤ąâ°Ą ´ÔŔÇ ĆÄĆźźÇŔť Ăł¸ŽÇŇ źö žř˝Ŕ´Ď´Ů.\n"
-"´ŮŔ˝ŔÇ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"ŔŠľľżěÁî ĆÄĆźźÇŔĚ ˝ÉÇĎ°Ô Áś°˘łŞ ŔÖ˝Ŕ´Ď´Ů. ¸ŐŔú ``ľđ˝şĹŠ Áś°˘ ¸đŔ˝''Ŕť ÇĎźźżä."
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"°ć°í!\n"
-"\n"
-"ľĺˇšŔĚĹŠX°Ą ŔĚÁŚ ŔŠľľżěÁî ĆÄĆźźÇŔÇ ĹŠąâ¸Ś ÁśÁ¤ÇŇ °ÍŔÔ´Ď´Ů. ŔĚ ŔŰľżŔş \n"
-"Ŕ§ÇčÇŐ´Ď´Ů. žĆÁ÷ ˝ĂŔŰÇĎÁö žĘžŇ´Ů¸é, źłÄĄ¸Ś Áß´ÜÇĎ°í ŔŠľľżěÁź­\n"
-"ľđ˝şĹŠ°ËťçĄš(°Ą´ÉÇĎ´Ů¸é śÇÇŃ Ą¸ľđ˝şĹŠ Áś°˘¸đŔ˝Ąš)¸Ś ˝ÇÇŕÇŃ ČÄżĄ,\n"
-"źłÄĄ¸Ś ´Ů˝Ă ˝ĂŔŰÇĎźźżä. śÇÇŃ ľĽŔĚĹÍľľ šéž÷ÇŘ ľÎźźżä.\n"
-"ÁŘşńľĆŔ¸¸é, Ą¸ČŽŔÎĄšŔť ´Š¸Łźźżä."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "ŔŠľľżěÁîżëŔ¸ˇÎ žî´Ŕ żëˇŽŔť ŔŻÁöÇϽðڽŔ´Ďąî?"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "ĆÄĆźźÇ %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FATĹŠąâÁśÁ¤ ˝ÇĆĐ: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"loopbackˇÎ ťçżëÇĎ°ĹłŞ ĹŠąâ¸Ś ÁśÁ¤ÇŇ FAT ĆÄĆźźÇŔĚ žř˝Ŕ´Ď´Ů. (śÇ´Â ľđ˝şĹŠ °ř°Ł"
-"ŔĚ şÎÁˇÇŐ´Ď´Ů.)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "ŔüĂź ľđ˝şĹŠ ťčÁŚ"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "ŔŠľľżěÁî(TM) ÁŚ°Ĺ"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"ÇĎľĺ ľĺśóŔĚşę°Ą ÇĎłŞ ŔĚťó ŔÖ˝Ŕ´Ď´Ů. žî´Ŕ °ÍżĄ ¸Ž´Ş˝ş¸Ś źłÄĄÇϽðڽŔ´Ďąî?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "%s ľĺśóŔĚşę ťóŔÇ ¸đľç ąâÁ¸ ĆÄĆźźÇ°ú ľĽŔĚĹÍ°Ą źŐ˝ÇľÉ °ÍŔÔ´Ď´Ů."
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "ťçżëŔÚ Á¤ŔÇ ĆÄĆźźÇ łŞ´Šąâ"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "fdisk ťçżë"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"ŔĚÁŚ %sŔÇ ĆÄĆźźÇ ŔŰž÷Ŕť ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"¸śÄŁ ČÄ, 'w'¸Ś ´­ˇŻ ŔúŔĺÇϴ°ÍŔť ŔŘÁö¸śźźżä."
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "ŔŠľľżěÁî ĆÄĆźźÇżĄ ĂćşĐÇŃ °ř°ŁŔĚ žř˝Ŕ´Ď´Ů."
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "źłÄĄżĄ ÇĘżäÇŃ °ř°ŁŔť ĂŁŔť źö žř˝Ŕ´Ď´Ů."
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "ľĺˇšŔĚĹŠX ĆÄĆźźÇ ¸śšýťç°Ą ´ŮŔ˝ŔÇ źÖˇçźÇŔť šß°ßÇß˝Ŕ´Ď´Ů:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "ĆÄĆźźÇ łŞ´Šąâ ˝ÇĆĐ: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "ł×ĆŽż÷ Č°źşČ­ Áß..."
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "ł×ĆŽż÷ ÇŘÁŚ Áß..."
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů. ą×ˇŻłŞ ŔűŔýČ÷ Ăł¸ŽÇŇ źö žř˝Ŕ´Ď´Ů.\n"
-"Ŕ§ÇëŔť °¨źöÇҡÁ¸é °čźÓÇĎźźżä."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "¸śżîĆŽ Ć÷ŔÎĆŽ Áßşš %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"ŔϺΠÁßżäÇŃ ĆŃĹ°ÁöľéŔĚ żĂšŮ¸Ł°Ô źłÄĄľÇÁö žĘžŇ˝Ŕ´Ď´Ů.\n"
-"CDROM ľĺśóŔĚşę śÇ´Â šĚľđžî°Ą źŐťóľÇžú˝Ŕ´Ď´Ů.\n"
-"ŔĚšĚ źłÄĄ°Ą żĎˇáľČ ÄÄÇťĹÍżĄź­ Ą¸rpm -qpl Mandrake/RPMS/*.rpmĄš¸íˇÉŔ¸ˇÎ ÁĄ°Ë"
-"ÇŘ ş¸źźżä.\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "%sżĄ żŔ˝Ĺ°ÍŔť ČŻżľÇŐ´Ď´Ů."
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "ÇáÎÇÇ ľĺśóŔ̺긌 ťçżëÇŇ źö žř˝Ŕ´Ď´Ů."
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "%s ´Ü°čˇÎ łŃžî°Š´Ď´Ů.\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"˝Ă˝şĹŰŔÇ ŔÚżřŔĚ şÎÁˇÇŐ´Ď´Ů. ¸Ž´Ş˝ş ¸ÇľĺˇšŔĚĹŠ¸Ś źłÄĄÇĎ´ÂľĽ ŔϺΠšŽÁŚ°Ą šßťý"
-"ÇŇ\n"
-"źöľľ ŔÖ˝Ŕ´Ď´Ů. ¸¸žŕ šŽÁŚ°Ą šßťýÇϸé, ĹĂ˝şĆŽ ¸đľĺˇÎ źłÄĄ¸Ś ˝ĂľľÇŘ ş¸źźżä.\n"
-"ĹŘ˝şĆŽ ¸đľĺˇÎ źłÄĄÇϡÁ¸é, CDROMŔ¸ˇÎ şÎĆĂČÄ Ą¸F1ĄšŔť ´Š¸Ł°í Ą¸textĄšśó°í ŔÔˇÂ"
-"ÇĎźźżä."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "źłÄĄ ŔŻÇü"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "´ŮŔ˝ źłÄĄ ŔŻÇüÁß ÇĎłŞ¸Ś źąĹĂÇŘ ÁÖźźżä."
-
-#: ../../install_steps_gtk.pm_.c:228
-#, 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:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"ŔĚ żëˇŽş¸´Ů Ŕű°Ô źłÄĄÇĎ°í ˝Í´Ů¸é,\n"
-"źłÄĄÇĎ°íŔÚ ÇĎ´Â ĆŃĹ°ÁöľéŔÇ šéşĐŔ˛Ŕť źąĹĂÇĎźźżä.\n"
-"\n"
-"šéşĐŔ˛ŔĚ łˇŔ¸¸é, °ĄŔĺ ÁßżäÇŃ ĆŃĹ°Áöľé¸¸ źłÄĄľË´Ď´Ů;\n"
-"šéşĐŔ˛ 100%%´Â źąĹĂľČ ¸đľç ĆŃĹ°ÁöľéŔť źłÄĄÇŐ´Ď´Ů."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"źąĹĂľČ ĆŃĹ°ÁöľéŔÇ %d%%żĄ ÇŘ´çÇĎ´Â ľđ˝şĹŠ °ř°Ł¸¸ ł˛žĆ ŔÖ˝Ŕ´Ď´Ů.\n"
-"\n"
-"ŔĚ żëˇŽş¸´Ů Ŕű°Ô źłÄĄÇĎ°í ˝Í´Ů¸é,\n"
-"źłÄĄÇĎ°íŔÚ ÇĎ´Â ĆŃĹ°ÁöľéŔÇ šéşĐŔ˛Ŕť źąĹĂÇĎźźżä.\n"
-"šéşĐŔ˛ŔĚ łˇŔ¸¸é, °ĄŔĺ ÁßżäÇŃ ĆŃĹ°Áöľé¸¸ źłÄĄľË´Ď´Ů;\n"
-"šéşĐŔ˛ %d%%´Â °Ą´ÉÇŃ ¸đľç ĆŃĹ°ÁöľéŔť źłÄĄÇŐ´Ď´Ů."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "´ŮŔ˝ ´Ü°čżĄź­ Ăß°ĄˇÎ ŔÚźźČ÷ źąĹĂÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "źłÄĄÇŇ ĆŃĹ°ÁöŔÇ šéşĐŔ˛"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "ĆŃĹ°Áö ą×ˇě źąĹĂ"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "°łş° ĆŃĹ°Áö źąĹĂ"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "ŔüĂź ĹŠąâ: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Ŕ߸řľČ ĆŃĹ°Áö"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Ŕ̸§: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "šöÁŻ: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "ĹŠąâ: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Áßżäźş: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "ľđ˝şĹŠ °ř°ŁŔĚ şÎÁˇÇĎąâ ś§šŽżĄ ŔĚ ĆŃĹ°Áö¸Ś źąĹĂÇŇ źö žř˝Ŕ´Ď´Ů."
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "´ŮŔ˝ ĆŃĹ°ÁöľéŔĚ źłÄĄľÉ °ÍŔÔ´Ď´Ů."
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "´ŮŔ˝ ĆŃĹ°ÁöľéŔĚ ÁŚ°ĹľÉ °ÍŔÔ´Ď´Ů."
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "ŔĚ ĆŃĹ°Áö¸Ś źąĹĂ/šö¸˛ ÇŇźö žř˝Ŕ´Ď´Ů."
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "ŔĚ°ÍŔş ÇĘźöŔűŔÎ ĆŃĹ°ÁöŔÔ´Ď´Ů. šÝľĺ˝Ă źąĹþǞîžß ÇŐ´Ď´Ů."
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "ŔĚ ĆŃĹ°Áö¸Ś źąĹĂÇŘÁŚÇŇ źö žř˝Ŕ´Ď´Ů. ŔĚšĚ źłÄĄ ľÇžú˝Ŕ´Ď´Ů."
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"ŔĚ ĆŃĹ°Áö´Â šÝľĺ˝Ă ž÷ą×ˇšŔĚľĺľÇžîžß ÇŐ´Ď´Ů.\n"
-"Á¤¸ťˇÎ źąĹĂŔť ÇŘÁŚÇϽðڽŔ´Ďąî?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "ŔĚ ĆŃĹ°Áö¸Ś źąĹĂÇŘÁŚÇŇźö žř˝Ŕ´Ď´Ů. šÝľĺ˝Ă ž÷ą×ˇšŔĚľĺľÇžîžß ÇŐ´Ď´Ů."
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "ŔÚľżŔ¸ˇÎ źąĹĂľČ ĆŃĹ°Áöľé ş¸ŔĚąâ"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "źłÄĄ"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "ÇáÎÇÇżĄ ŔúŔĺ/ŔűŔç"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "źąĹĂľČ ĆŃĹ°Áö ¸ńˇĎ ž÷ľĽŔĚĆŽ Áß"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "ĂÖźŇ źłÄĄ"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "źłÄĄÇĎ°íŔÚ ÇĎ´Â ĆŃĹ°Áö¸Ś źąĹĂÇĎźźżä."
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "źłÄĄÁß"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "°čťę Áß"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "ł˛Ŕş ˝Ă°Ł "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "źłÄĄ ÁŘşńÁßŔÔ´Ď´Ů. Ŕá˝Ă ąâ´Ů¸Žźźżä."
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d ĆŃĹ°Áö"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "%s ĆŃĹ°Áö źłÄĄÁß"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "ľżŔÇ"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "°ĹşÎ"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"CDROMŔť šŮ˛ă ÁÖźźżä!\n"
-"\n"
-"Ą¸%sĄšśó°í ž˛żŠÁř CDROMŔť ľĺśóŔ̺꿥 łÖŔş ČÄ, Ą¸ČŽŔÎĄšŔť ´­ˇŻ ÁÖźźżä.\n"
-"¸¸žŕ CDROMŔť °ĄÁö°í ŔÖÁö žĘ´Ů¸é, Ą¸ĂëźŇĄš¸Ś ´­ˇŻ Ăß°Ą źłÄĄ¸Ś ĂëźŇÇĎźźżä."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "°čźÓ ÁřÇŕÇŐ´Ďąî?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "ĆŃĹ°Áö¸Ś Á¤ˇÄÇĎ´Â Áß żŔˇůšßťý:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "´ŮŔ˝ ĆŃĹ°Áö¸Ś źłÄĄÁß żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů: "
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "żŔˇů šßťý"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Á¤¸ťˇÎ Ą¸%sĄšÇÁ¸°Ĺ͸Ś ÁŚ°ĹÇŐ´Ďąî?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "ťçżë ľżŔÇź­"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Ĺ°ş¸ľĺ"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Ĺ°ş¸ľĺ ˇšŔ̞ƿô źąĹĂ"
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "ÁöżřľÇ´Â Ĺ°ş¸ľĺ ¸ńˇĎŔĚ żŠąâżĄ ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "źłÄĄ ŔŻÇüŔť źąĹĂÇŘ ÁÖźźżä."
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "źłÄĄ/ž÷ľĽŔĚĆŽ"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "źłÄĄÇŐ´Ďąî žĆ´Ď¸é ž÷ľĽŔĚĆŽ ÇŐ´Ďąî?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "ąÇŔĺ"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "ŔüšŽ°Ą"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "ž÷ľĽŔĚĆŽ"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "źąĹĂľČ ĆŃĹ°Áö ¸ńˇĎ ž÷ľĽŔĚĆŽ Áß"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "žîś˛ ÁžˇůŔÇ ¸śżě˝ş¸Ś ťçżëÇϽʴϹî?"
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "¸śżě˝ş Ć÷ĆŽ"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "žîś˛ ˝Ă¸Žžó Ć÷ĆŽżĄ ¸śżě˝ş°Ą żŹ°áľÇžî ŔÖłŞżä?"
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "šöĆ° żĄšÄˇšŔĚźÇ"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "šöĆ° 2 żĄšÄˇšŔĚźÇ"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "šöĆ° 3 żĄšÄˇšŔĚźÇ"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIS ÄŤľĺ ČŻ°ćźłÁ¤Áß..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "IDE źłÁ¤Áß"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "ťçżë°Ą´ÉÇŃ ĆÄĆźźÇŔĚ žř˝Ŕ´Ď´Ů."
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "¸śżîĆŽ Ŕ§ÄĄ¸Ś ĂŁąâŔ§ÇŘ ĆÄĆźźÇľéŔť °Ëťö Áß"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "¸śżîĆŽ Ŕ§ÄĄ¸Ś źąĹĂÇŘ ÁÖźźżä."
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"ÇĎľĺ ľđ˝şĹŠŔÇ ĆÄĆźźÇ Ĺ×ŔĚşíŔť ŔĐŔťźö žř˝Ŕ´Ď´Ů. łĘšŤ źŐťóľÇžî ŔÖ˝Ŕ´Ď´Ů:(\n"
-"šŽÁŚŔÖ´Â ĆÄĆźźÇŔť şńżěąâŔ§ÇŃ ˝Ăľľ¸Ś ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.(¸đľç ľĽŔĚĹÍ°Ą źŐ˝ÇľË´Ď"
-"´Ů!)\n"
-"´Ů¸Ľ ÇŘ°áĂĽŔş DrakX°Ą ĆÄĆźźÇ Ĺ×ŔĚşíŔť şŻ°ćÇĎÁö ¸řÇĎ°Ô ÇĎ´Â °ÍŔÔ´Ď´Ů.\n"
-"(żŔˇů´Â %s ŔÔ´Ď´Ů.)\n"
-"\n"
-"ĆÄĆźźÇľéŔť ŔŇžîľľ ÁÁ˝Ŕ´Ďąî?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"ľđ˝şĹŠľĺˇšĹŠ°Ą ĆÄĆźźÇ Ĺ×ŔĚşíŔť Á¤ČŽČ÷ ŔĐžîżŔ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů.\n"
-"Ŕ§ÇčŔť °¨źöÇŇ ÁŘşń°Ą ľČ °ćżěżĄ¸¸ °čźÓÇĎźźżä!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"1MB şÎĆŽ˝şĆŽˇŚ °ř°Ł şÎÁˇ! źłÄĄ´Â °čźÓÇŇ źö ŔÖÁö¸¸, ˝Ă˝şĹŰŔť şÎĆĂÇĎąâ Ŕ§ÇŘź­"
-"´Â ľđ˝şĹŠľĺˇšŔĚĹŠżĄź­ şÎĆŽ˝şĆŽˇŚ ĆÄĆźźÇŔť ¸¸ľéžîžß ÇŐ´Ď´Ů."
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "ž÷ą×ˇšŔĚľĺÇŇ ˇçĆŽ ĆÄĆźźÇŔť ĂŁŔť źö žř˝Ŕ´Ď´Ů."
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "ˇçĆŽ ĆÄĆźźÇ"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "˝Ă˝şĹŰżĄź­ ˇçĆŽ ĆÄĆźźÇ(/)Ŕş žîś˛°ÍŔÔ´Ďąî?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí şŻ°ćťçÇ×Ŕť ŔűżëÇϡÁ¸é ¸ŽşÎĆĂŔť ÇŘžß ÇŐ´Ď´Ů."
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Ć÷¸ËÇŇ ĆÄĆźźÇŔť źąĹĂÇĎźźżä"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "ščľĺ şíˇ° °Ëťç¸Ś ÇŐ´Ďąî?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "ĆÄĆźźÇ Ć÷¸Ë"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "%s ĆÄŔϸŚ ťýźşÇĎ°í Ć÷¸Ë"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "˝şżŇ ¸Ţ¸đ¸Ž°Ą şÎÁˇÇŐ´Ď´Ů. Áť ´ő Ăß°ĄÇĎźźżä."
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "ŔŻČżÇŃ ĆŃĹ°Áö¸Ś ĂŁ°í ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "ž÷ą×ˇšŔĚľĺÇŇ ĆŃĹ°Áö¸Ś °ËťöÁßŔÔ´Ď´Ů."
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr "źłÄĄ śÇ´Â ž÷ą×ˇšŔ̾希 Ŕ§ÇŃ ľđ˝şĹŠ °ř°ŁŔĚ şÎÁˇÇŐ´Ď´Ů. (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "ŔüĂź (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "ĂÖźŇ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "ąÇŔĺ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"ÇáÎÇÇżĄ ĆŃĹ°Áö źąĹøńˇĎŔť ŔűŔç śÇ´Â ŔúŔĺÇŇÁö¸Ś źąĹĂÇĎźźżä.\n"
-"Çü˝Ä(Ć÷¸Ë)Ŕş ŔÚľżźłÄĄ ťýźş ÇáÎÇÇżÍ ľżŔĎÇŐ´Ď´Ů."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "ÇáÎÇÇżĄź­ ŔĐąâ"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "ÇáÎÇÇżĄź­ ŔĐ´Â Áß"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "ĆŃĹ°Áö źąĹĂ"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "ĆŃĹ°Áö źąĹøńˇĎ ÇáÎÇÇ ľđ˝şĹŠ¸Ś łÖŔ¸źźżä."
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "ÇáÎÇÇżĄ ŔúŔĺ"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "źąĹĂľČ żëˇŽŔĚ ťçżëÇŇ źö ŔÖ´Â °ř°Łş¸´Ů ĹŽ´Ď´Ů."
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"¸¸žŕ žĆˇĄżĄ ż­°ĹľČ ¸đľç CD¸Ś °ĄÁö°í Ŕִٸé, Ą¸ČŽŔÎĄšŔť, \n"
-"ŔüÇô °ĄÁö°í ŔÖÁö žĘ´Ů¸é, Ą¸ĂëźŇĄš¸Ś, \n"
-"ŔϺθ¸ °ĄÁö°í Ŕִٸé, žř´Â CD¸Ś źąĹĂÇŘÁŚÇŃ ČÄżĄ Ą¸ČŽŔÎĄšŔť ´Š¸Łźźżä."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Ą¸%sĄšśó°í ÇĽ˝ĂľČ CDROM"
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "źłÄĄ ÁŘşńÁßŔÔ´Ď´Ů"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-" %s ĆŃĹ°Áö źłÄĄ Áß... \n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "źłÄĄŔü ČŻ°ćźłÁ¤"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "şÎĆĂ ÇáÎÇǸŚ %s ľĺśóŔ̺꿥 łÖŔ¸źźżä"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "ž÷ľĽŔĚĆŽ ¸đľâ ÇáÎÇǸŚ %s ľĺśóŔ̺꿥 łÖŔ¸źźżä"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "ťçżë°Ą´ÉÇŃ ĆŃĹ°ÁöŔÇ ¸Ž˝şĆŽ¸Ś šĚˇŻ ťçŔĚĆŽżĄ Á˘źÓÇŘź­ šŢ˝Ŕ´Ď´Ů."
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "ĆŃĹ°Áö¸Ś šŢŔť šĚˇŻ ťçŔĚĆŽ¸Ś źąĹĂÇŘ ÁÖźźżä."
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "ťçżë°Ą´ÉÇŃ ĆŃĹ°ÁöŔÇ ¸Ž˝şĆŽ¸Ś šĚˇŻ ťçŔĚĆŽżĄ Á˘źÓÇŘź­ šŢ˝Ŕ´Ď´Ů."
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "´ÔŔÇ ˝Ă°Ł´ë´Â žîľđŔÔ´Ďąî?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "ÇĎľĺżţžî ˝Ă°č GMT źłÁ¤"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "ŔÚľż ˝Ă°Ł ľżąâČ­ (NTP ťçżë)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP ź­šö"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "żř°Ý CUPS ź­šö"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "ÇÁ¸°ĹÍ žřŔ˝"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "śÇ ´Ů¸Ľ°ÍŔĚ źłÄĄľÇžî ŔÖ˝Ŕ´Ďąî?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "żäžŕźł¸í"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "¸śżě˝ş"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "˝Ă°Ł´ë"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "ÇÁ¸°ĹÍ"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDN ÄŤľĺ"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "ťçżîľĺ ÄŤľĺ"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV ÄŤľĺ"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "ÁöżŞ ĆÄŔĎľé"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "root žĎČŁ źłÁ¤"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "žĎČŁ žřŔ˝"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "ŔĚ žĎČŁ´Â łĘšŤ ´ÜźřÇŐ´Ď´Ů.( Ŕűžîľľ %d ąŰŔÚ´Â łŃžîžß ÇŐ´Ď´Ů)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "ťçżëŔÚ ŔÎÁő"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "ŔÎÁő LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP ąâšÝ DN"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAP ź­šö"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "ŔÎÁő NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS ľľ¸ŢŔÎ"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS ź­šö"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Ăššř° ÇáÎÇÇ ľĺśóŔĚşę"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "ľÎšř° ÇáÎÇÇ ľĺśóŔĚşę"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "°ÇłĘśŮąâ"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"şÎĆŽ ľđ˝şĹŠ´Â ŔĎšÝŔűŔÎ şÎĆŽˇÎ´ő¸Ś ťçżëÇĎÁö žĘ°í, ¸Ž´Ş˝ş ˝Ă˝şĹŰŔ¸ˇÎ şÎĆĂÇĎ´Â\n"
-"šćšýŔť ÁŚ°řÇŐ´Ď´Ů. ¸¸žŕ LILO(śÇ´Â Grub)¸Ś ťçżëÇĎÁö žĘ°ĹłŞ, ´Ů¸Ľ żîżľĂźÁŚ°Ą\n"
-"LILO¸Ś ÁŚ°ĹÇĎ°ĹłŞ śÇ´Â LILO°Ą ÇĎľĺżţžî źłÁ¤°ú ¸ÂÁö žĘŔť ś§, ŔŻżëÇŐ´Ď´Ů.\n"
-"şÎĆŽ ľđ˝şĹŠ´Â śÇÇŃ ¸ÇľĺˇšŔĚĹŠ şšą¸ ŔĚšĚÁöżÍ ÇÔ˛˛ ťçżëľÇžî ˝É°˘ÇŃ\n"
-"˝Ă˝şĹŰ šŽÁŚ¸Ś ˝ą°Ô şšą¸ÇŇ źö ŔÖ˝Ŕ´Ď´Ů. ´ÔŔÇ ˝Ă˝şĹŰŔť Ŕ§ÇŃ şÎĆŽ ľđ˝şĹŠ¸Ś\n"
-"¸¸ľĺ˝Ă°Ú˝Ŕ´Ďąî?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "ÁËźŰÇŐ´Ď´Ů. ťçżë°Ą´ÉÇŃ ÇáÎÇÇ ľĺśóŔĚşę°Ą žř˝Ŕ´Ď´Ů."
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "şÎĆŽ ľđ˝şĹŠ¸Ś ¸¸ľéś§ ťçżëÇŇ ÇáÎÇÇ ľĺśóŔ̺긌 źąĹĂÇŘ ÁÖźźżä"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "ÇáÎÇÇ ľđ˝şĹŠ¸Ś %s ľĺśóŔ̺꿥 łÖŔ¸źźżä"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "şÎĆŽ ľđ˝şĹŠ ťýźşÁß"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "şÎĆŽ ˇÎ´ő ÁŘşńÁß"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "aboot¸Ś ťçżëÇϽðڽŔ´Ďąî?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"aboot źłÄĄ ˝ÇĆĐ. \n"
-"Ăššř° ĆÄĆźźÇŔť ČŃźŐÇŇÁöśóľľ °­ÁŚ źłÄĄÇŇąîżä?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "şÎĆŽˇÎ´ő źłÄĄ Áß"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "şÎĆŽˇÎ´ő źłÄĄ°Ą ˝ÇĆĐÇß˝Ŕ´Ď´Ů. ´ŮŔ˝°ú °°Ŕş żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"şÎĆŽˇÎ´ő°Ą ÁŚ´ëˇÎ ŔŰľżÇĎąâ Ŕ§ÇŘź­´Â °ř°ł Ćßżţžî şÎĆŽ ŔĺÄĄ¸Ś şŻ°ćÇŇ ÇĘżäźşŔĚ\n"
-"ŔÖŔť źöľľ ŔÖ˝Ŕ´Ď´Ů. ¸¸žŕ ŔçşÎĆĂČÄżĄ şÎĆŽˇÎ´ő ÇÁˇŇÇÁĆŽ°Ą łŞĹ¸łŞÁö žĘ´Â´Ů¸é,\n"
-"ŔçşÎĆýÿĄ ¸íˇÉ-żÉźÇ-O-F¸Ś °čźÓ ´Š¸Ł°í ŔÖ´Ů°Ą ´ŮŔ˝°ú °°ŔĚ ŔÔˇÂÇĎźźżä:\n"
-"setenv boot-device %s,\\\\:tbxi\n"
-"shut-down\n"
-"ą×ˇŻ°íłŞ¸é ´ŮŔ˝şÎĹÍ´Â şÎĆŽˇÎ´ő ÇÁˇŇÇÁĆŽ¸Ś şź źö ŔÖŔť °ÍŔÔ´Ď´Ů."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "%s ľĺśóŔ̺꿥 şó ÇáÎÇÇ ľđ˝şĹŠ¸Ś łÖŔ¸źźżä"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "ŔÚľż źłÄĄ ÇáÎÇÇ ľđ˝şĹŠ ťýźş Áß"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"¸î¸î ´Ü°č°Ą żĎŔüČ÷ łĄłŞÁö žĘžŇ˝Ŕ´Ď´Ů.\n"
-"\n"
-"Á¤¸ť ÁöąÝ Ážˇá ÇϽðڽŔ´Ďąî?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"ĂŕÇĎÇŐ´Ď´Ů. źłÄĄ°Ą źş°řŔűŔ¸ˇÎ łĄłľ˝Ŕ´Ď´Ů.\n"
-"şÎĆŽ šĚľđžî¸Ś ÁŚ°ĹÇĎ°í ¸ŽĹĎŔť ´­ˇŻź­ ¸ŽşÎĆĂ ÇĎźźżä.\n"
-"\n"
-"\n"
-"ŔĚ šöŔüŔÇ ¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝şŔÇ šöą×źöÁ¤ Á¤ş¸´Â http://www.linux-mandrake.com/"
-"en/82errata.php3\n"
-"żĄź­ žňŔ¸˝Ç źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"\n"
-"\n"
-"źłÄĄČÄ ˝Ă˝şĹŰ źłÁ¤żĄ ´ëÇŃ Á¤ş¸´Â °ř˝Ä ¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝ş ŔŻŔú °ĄŔ̾希\n"
-"Âü°íÇϽù⠚ٜř´Ď´Ů."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "ŔÚľż źłÄĄ ÇáÎÇÇ ľđ˝şĹŠ ťýźş"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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:1361
-msgid "Automated"
-msgstr "ŔÚľż"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Ŕç˝Ăľľ"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "źąĹĂľČ ĆŃĹ°Áö ¸ńˇĎ ŔúŔĺ"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "¸Ž´Ş˝ş-¸ÇľĺˇšŔĚĹŠ źłÄĄ %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> Ç׸ń°Ł ŔĚľż | <Space> źąĹĂ | <F12> ´ŮŔ˝ Č­¸é"
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu°Ą žřŔ˝"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "ĆÄŔĎ źąĹĂ"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "°íąŢ"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "ąâ´ŮˇÁ ÁÖźźżä"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Á¤ş¸"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "ĆŽ¸Ž ČŽŔĺ"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "ĆŽ¸Ž Á˘ąâ"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "ą×ˇěş°/ĆŃĹ°Áöş° Á¤ˇÄ ŔüČŻ"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Ŕ߸řľČ źąĹĂŔÔ´Ď´Ů, ´Ů˝Ă ÇĎźźżä\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "´ÔŔÇ źąĹĂŔş? (ąâşť°Ş %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "´ÔŔÇ źąĹĂŔş? (ąâşť°Ş %s) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "żÉźÇľé: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "aboot¸Ś ťçżëÇϽðڽŔ´Ďąî?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "´ÔŔÇ źąĹĂŔş? (ąâşť°Ş %s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "ĂźÄÚ (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "ľśŔĎ"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "ľĺş¸śô"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "˝şĆäŔÎ"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "ÇÉśőľĺ"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "ÇÁśű˝ş"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "łë¸ŁżţŔĚ"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Ćúśőľĺ"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "ˇŻ˝ĂžĆ"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "˝şżţľ§"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "żľąš"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "šĚąš"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "žËšŮ´ĎžĆ"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "šĚąš (ą¸šöŔü)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "šĚąš (ŸŔÚąâ)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "šĚąš (Ŕ˝źşÇĐ)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjani (śóĆž)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "ş§ąâżĄ"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "šĚąš (Ŕ˝źşÇĐ)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "şŇ°Ą¸ŽžĆ"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "şęśóÁú (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "ş§śóˇç˝ĂžĆ"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "˝şŔ§˝ş (ľśžî)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "˝şŔ§˝ş (şŇžî)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "ĂźÄÚ (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "ľśŔĎ (dead Ĺ° žřŔ˝)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "ľ§¸śĹŠ"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "ľĺş¸śô(US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "ľĺş¸śô(łë¸ŁżţŔĚ)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "ľĺş¸śô(US)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "żĄ˝şĹä´ĎžĆ"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "ą×ˇçÁöžĆ(ˇŻ˝ĂžĆžî)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "ą×ˇçÁöžĆ (śóĆž)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "ą×¸Ž˝ş"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Çë°Ą¸Ž"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "ĹŠˇÎžĆĆźžĆ"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "ŔĚ˝şśóż¤"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "ŔĚ˝şśóż¤ (Ŕ˝źşÇĐ)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "ŔĚśő"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "žĆŔĚ˝˝ˇŁľĺ"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "ŔĚĹť¸ŽžĆ"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "ŔĎşť 106Ĺ°"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "ÇŃąŰ Ĺ°ş¸ľĺ"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "śóĆž žĆ¸Ţ¸ŽÄŤ"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "¸ŽĹőžĆ´ĎžĆ AZERTY (ą¸Çü)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "¸ŽĹőžĆ´ĎžĆ AZERTY (˝ĹÇü)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "¸ŽĹőžĆ´ĎžĆ (źýŔÚż­ QWERTY)"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "¸ŽĹőžĆ´ĎžĆ (Ŕ˝źşÇĐ QWERTY)"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "śóĆŽšŮžĆ"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "¸śÄÉľľ´ĎžĆ"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "ł×ľ¨śőľĺ"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Ćúśőľĺ (QwertY)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Ćúśőľĺ (QwertZ)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Ć÷ˇçĹőÄŽ"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "ÄłłŞ´Ů (Äůş¤)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "ˇÎ¸¸ (QWERTZ)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "ˇÎ¸¸ (QWERTY)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "ˇŻ˝ĂžĆ (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "˝˝ˇÎşŁ´ĎžĆ"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "˝˝ˇÎšŮĹ°žĆ (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "˝˝ˇÎšŮĹ°žĆ (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "źź¸ŁşńžĆ (˝Ă¸ą)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Ĺ×ŔĚşí"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "ĹÂąš"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "ŸÁöĹŠ Ĺ°ş¸ľĺ"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "ĹÍąâ (ŔüĹë Ą¸FĄš¸đľ¨"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "ĹÍĹ° (Çö´ë Ą¸QĄš¸đľ¨"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "żěĹŠśóŔĚłŞ"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "US Ĺ°ş¸ľĺ (ąšÁŚ)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "şŁĆŽł˛ (źýŔÚż­ QWERTY)"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "ŔŻ°í˝˝śóşńžĆ (śóĆž)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "źřČŻ ¸śżîĆŽ %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "łí¸Ž şźˇýŔť ¸ŐŔú ÁŚ°ĹÇŘ ÁÖźźżä.\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - ¸śżě˝ş"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "ˇÎÁöĹŘ ¸śżě˝ş¸Ç/ĆŰ˝şĆŽ¸śżě˝ş (˝Ă¸Žžó)"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "ŔĎšÝŔűŔÎ PS2 ČŮ ¸śżě˝ş"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "ALPS ąŰśóŔĚľĺĆ÷ŔÎĆŽ"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "ÄË˝ĚĹĎ žĹš ¸śżě˝ş"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Áö´Ďžî˝ş łÝ¸śżě˝ş"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Áö´Ďžî˝ş łÝ˝şĹŠˇŃ"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 šöĆ°"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "ŔĎšÝŔűŔÎ 2šöĆ° ¸śżě˝ş"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "ŔĎšÝ ¸śżě˝ş"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "ČŮ ¸śżě˝ş"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "˝Ă¸Žžó ¸śżě˝ş"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "ŔĎšÝŔűŔÎ 3šöĆ° ¸śżě˝ş"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "¸śŔĚĹŠˇÎźŇÇÁĆŽ ŔÎĹÚ¸Ž¸śżě˝ş"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "ˇÎÁöĹŘ ¸śżě˝ş¸Ç"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "¸śżě˝ş ˝Ă˝şĹŰ"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "ˇÎÁöĹŘ CC ˝Ă¸ŽÁî"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "ˇÎÁöĹŘ ¸śżě˝ş¸Ç+/ĆŰ˝şĆŽ¸śżě˝ş+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM ˝Ă¸ŽÁî"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM Č÷ƎŸşíˇż"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "ˇÎÁöĹŘ ¸śżě˝ş (˝Ă¸Žžó, żŔˇĄľČ C7 ÇüĹÂ)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "šö˝ş¸śżě˝ş"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 šöĆ°"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 šöĆ°"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "žřŔ˝"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "¸śżě˝ş žřŔ˝"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "¸śżě˝ş¸Ś Ĺ×˝şĆŽÇĎźźżä."
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "¸śżě˝ş¸Ś Č°źşČ­ÇϡÁ¸é"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "¸śżě˝şČŮŔť żňÁ÷żŠ ş¸źźżä."
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-"-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,-*-gulim-bold-r-"
-"normal--16-*-*-*-c-*-ksc5601.1987-0,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Ážˇá"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "´ŮŔ˝ ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- ŔĚŔü"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "ŔĚ°ÍŔĚ ¸Â˝Ŕ´Ďąî?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "ŔÎĹͳݿĄ żŹ°á"
-
-#: ../../network/adsl.pm_.c:20
-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łŞ, ąŘČ÷ ľĺš°°Ô´Â DHCPľľ ťçżëľË´Ď´Ů.\n"
-"Ŕß ¸đ¸Ł°Ú´Ů¸é, Ą¸PPPOE ťçżëĄšŔť źąĹĂÇĎźźżä."
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "žËÄŤĹÚ ˝şÇÇľĺĹÍÄĄ USB"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "DHCP ťçżë"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "PPPOE ťçżë"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "PPTP ťçżë"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"žîś˛ dhcp ĹŹśóŔĚžđĆŽ¸Ś ťçżëÇĎ°Ú˝Ŕ´Ďąî?\n"
-"dhcpcd°Ą ąâşť°ŞŔÔ´Ď´Ů."
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"žîś°ÇŃ ł×ĆŽż÷ žî´đĹÍľľ °¨ÁöľÇÁö žĘžŇ˝Ŕ´Ď´Ů.\n"
-"żŹ°á źłÁ¤Ŕť ÇŇ źö žř˝Ŕ´Ď´Ů."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "ł×ĆŽż÷ ŔÎĹÍĆäŔĚ˝ş¸Ś źąĹĂÇĎźźżä."
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "žîś˛ žî´đĹ͡ΠŔÎĹͳݿĄ żŹ°áÇŇ °ÍŔÎÁö źąĹĂÇĎźźżä."
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "ł×ĆŽż÷ ÄŤľĺ¸Ś ĂŁŔťźö žř˝Ŕ´Ď´Ů"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "ł×ĆŽż÷ źłÁ¤"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"ČŁ˝şĆŽ¸íŔť žË°í Ŕִٸé ŔÔˇÂÇĎźźżä.\n"
-"ŔϺΠDHCP ź­šö´Â ČŁ˝şĆŽ¸íŔť żäą¸ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"ČŁ˝şĆŽ¸íŔş żĎşŽÇŃ Á¤ąÔÇüŔĚžîžß ÇŐ´Ď´Ů.\n"
-"żš)Ą¸mybox.mylab.myco.comĄš"
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "ČŁ˝şĆŽ¸í:"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "ł×ĆŽż÷ źłÁ¤ ¸śšýťç"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "żÜŔĺ ISDN ¸đľŠ"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "łťŔĺ ISDN ÄŤľĺ"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "žîś˛ ÁžˇůŔÇ ISDN żŹ°áŔť ťçżëÇŐ´Ďąî?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"žîś˛ ISDN źłÁ¤ šć˝ÄŔť źąČŁÇϽʴϹî?\n"
-"\n"
-"* ąâÁ¸ŔÇ źłÁ¤Ŕş ISDN4NETŔť ťçżëÇŐ´Ď´Ů. °­ˇÂÇĎÁö¸¸ ĂĘş¸ŔÚżĄ°Ő\n"
-" žîˇĆ°í śÇÇŃ ÇĽÁŘŔĚ žĆ´Ő´Ď´Ů.\n"
-"\n"
-"* ťőˇÎżî źłÁ¤Ŕş ˝ą°í ş¸´Ů ÇĽÁŘŔűŔĚÁö¸¸, °­ˇÂÇŃ ľľą¸´Â ľđźŇ\n"
-" şÎÁˇÇŐ´Ď´Ů.\n"
-"\n"
-"Ą¸ISDN-LIGHTĄš¸Ś ĂßĂľÇŐ´Ď´Ů.\n"
-"\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "ťőˇÎżî źłÁ¤ (ISDN-LIGHT)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "ąâÁ¸ŔÇ źłÁ¤ (ISDN4NET)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN źłÁ¤"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"°řąŢŔÚ¸Ś źąĹĂÇĎźźżä.\n"
-"¸ńˇĎżĄ žřŔ¸¸é, Ą¸¸ńˇĎżĄ žřŔ˝ĄšŔť źąĹĂÇĎźźżä."
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "ŔŻˇ´ ÇÁˇÎĹäÄÝ"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "ŔŻˇ´ ÇÁˇÎĹäÄÝ (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "´Ů¸Ľ ÁöżŞŔť Ŕ§ÇŃ ÇÁˇÎĹäÄÝ"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"´Ů¸Ľ ÁöżŞŔť Ŕ§ÇŃ ÇÁˇÎĹäÄÝ\n"
-" DäłÎ (leased lines) žĆ´Ô"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "žîś˛ ÇÁˇÎĹäÄÝŔť ťçżëÇϽðڽŔ´Ďąî?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "žîś˛ ÁžŔŻŔÇ ÄŤľĺ¸Ś °ĄÁö°í ŔÖ˝Ŕ´Ďąî?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "¸đ¸Ł°ÚŔ˝"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"¸¸žŕ ISA ÄŤľĺ¸Ś °ĄÁö°í Ŕִٸé, ´ŮŔ˝ Č­¸éżĄź­ źłÁ¤°ŞŔĚ Á¤ČŽÇŘžß ÇŐ´Ď´Ů.\n"
-"\n"
-"¸¸žŕ PCMCIA ÄŤľĺ¸Ś °ĄÁö°í Ŕִٸé, IRQżÍ IO °ŞŔť žË°í ŔÖžîžß ÇŐ´Ď´Ů.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "ÁßÁö"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "°čźÓ"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "žî´Ŕ °ÍŔĚ ´ÔŔÇ ISDN ÄŤľĺŔÔ´Ďąî?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"ISDN PCI ÄŤľĺ°Ą °¨ÁöľÇžúÁö¸¸, ą× ŔŻÇüŔť žË źö žř˝Ŕ´Ď´Ů. ´ŮŔ˝ Č­¸éżĄź­ PCI ÄŤ"
-"ľĺ¸Ś źąĹĂÇŘ ÁÖźźżä."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "ISDN PCI ÄŤľĺ °Ëťö ˝ÇĆĐ. ´ŮŔ˝ Č­¸éżĄź­ Á÷Á˘ źąĹĂÇŘ ÁÖźźżä."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "žîś˛ ˝Ă¸Žžó Ć÷ĆŽżĄ ¸śżě˝ş°Ą żŹ°áľÇžî ŔÖłŞżä?"
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "´ŮŔĚžóž÷ żÉźÇ"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "żŹ°á Ŕ̸§"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "ŔüČ­ šřČŁ"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "ˇÎą×ŔÎ ID"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "˝şĹŠ¸łĆŽ ąâšÝ"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Ĺ͚̳Ż ąâšÝ"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "ľľ¸ŢŔÎ Ŕ̸§"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Ăššř° DNS ź­šö (żÉźÇ)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "ľÎšř° DNS ź­šö (żÉźÇ)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"żŹ°áŔť ÇŘÁŚÇĎ°ĹłŞ ´Ů˝Ă źłÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"żŹ°áŔť ´Ů˝Ă źłÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "ÇöŔç ŔÎĹͳݿĄ żŹ°áľÇžî ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"ŔÎĹͳݿĄ żŹ°áÇĎ°ĹłŞ żŹ°áŔť ŔçźłÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "ÇöŔç ŔÎĹͳݿĄ żŹ°áľÇžî ŔÖÁö žĘ˝Ŕ´Ď´Ů."
-
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
-msgid "Connect"
-msgstr "żŹ°áľĘ"
-
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
-msgid "Disconnect"
-msgstr "żŹ°á ˛÷ąâ..."
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "ÁöąÝ ł×ĆŽż÷ źłÁ¤"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "ŔÎĹÍłÝ żŹ°á & źłÁ¤"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "ŔĚÁŚ Ą¸%sĄšżŹ°áŔť źłÁ¤ÇŇ °ÍŔÔ´Ď´Ů."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"ŔĚÁŚ Ą¸%sĄšżŹ°áŔť źłÁ¤ÇŇ °ÍŔÔ´Ď´Ů.\n"
-"\n"
-"\n"
-"˝ĂŔŰÇϡÁ¸é Ą¸ČŽŔÎĄšŔť ´Š¸Łźźżä."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "ł×ĆŽż÷ ČŻ°ć źłÁ¤"
-
-#: ../../network/netconnect.pm_.c:139
-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"
-"Ą¸ČŽŔÎĄšŔť ´­ˇŻ ÇöŔç źłÁ¤Ŕť ŔŻÁöÇĎ°ĹłŞ, Ą¸ĂëźŇĄš¸Ś ´­ˇŻ ŔÎĹÍłÝ/ł×ĆŽż÷ żŹ°áŔť "
-"´Ů˝Ă źłÁ¤ÇĎźźżä.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "źłÁ¤ÇŇ ÇÁˇÎĆÄŔĎŔť źąĹĂÇĎźźżä."
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "ŔÚľż°Ëťö ťçżë"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "ŔĺÄĄ¸Ś °ËťöÇĎ°í ŔÖ˝Ŕ´Ď´Ů..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "ŔĎšÝ ¸đľŠ żŹ°á"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "%s Ć÷ĆŽżĄź­ šß°ß"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN żŹ°á"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "%s šß°ß"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ADSL żŹ°á"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "ŔÎĹÍĆäŔĚ˝ş %sťóżĄź­ šß°ß"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "ÄłŔĚşí żŹ°á"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "ÄłŔĚşí żŹ°á šß°ß"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "LAN żŹ°á"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "ŔĚ´őłÝ ÄŤľĺ šß°ß"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "źłÁ¤ÇŇ żŹ°áŔť źąĹĂÇĎźźżä."
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"ŔÎĹÍłÝ Á˘źÓšć˝ÄŔť żŠˇŻ°ł źłÁ¤Çß˝Ŕ´Ď´Ů.\n"
-"żŹ°áżĄ ťçżëÇŇ šć˝ÄŔť źąĹĂÇĎźźżä.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "ŔÎĹÍłÝ żŹ°á"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "şÎĆýÿĄ żŹ°áÇĎľľˇĎ ÇĎ°Ú˝Ŕ´Ďąî?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "ł×ĆŽż÷ źłÁ¤"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "ł×ĆŽż÷Ŕť ´Ů˝Ă ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů."
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"ł×ĆŽż÷Ŕť ´Ů˝Ă ˝ĂŔŰÇĎ´Â ľľÁßżĄ šŽÁŚ°Ą šßťýÇß˝Ŕ´Ď´Ů:\n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"ĂŕÇĎÇŐ´Ď´Ů. ł×ĆŽż÷/ŔÎĹÍłÝ źłÁ¤ŔĚ żĎˇáľÇžú˝Ŕ´Ď´Ů.\n"
-"\n"
-"ŔĚÁŚ źłÁ¤ŔĚ ˝Ă˝şĹŰżĄ ŔűżëľÉ °ÍŔÔ´Ď´Ů.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"żĎˇáľČ ČÄżĄ, X¸Ś ´Ů˝Ă ˝ĂŔŰÇĎżŠ ČŁ˝şĆŽ¸í şŻ°ćżĄ ľű¸Ľ\n"
-"šŽÁŚ šßťýŔť ÇÇÇϽù⠚ٜř´Ď´Ů."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"°ć°í: ŔĚ ŔĺÄĄ´Â ŔĚšĚ ŔÎĹÍłÝ żŹ°áżëŔ¸ˇÎ źłÁ¤ľÇžî ŔÖ˝Ŕ´Ď´Ů.\n"
-"ą×łÉ ÇöŔç źłÁ¤Ŕť ŔŻÁöÇĎźźżä.\n"
-"žĆˇĄ ŔԡœőŔť şŻ°ćÇϸé ÇöŔç źłÁ¤Ŕť ľ¤žîž˛°Ô ľË´Ď´Ů."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"ŔĚ ˝Ă˝şĹŰŔť Ŕ§ÇŃ IP źłÁ¤Ŕť ŔÔˇÂÇŘ ÁÖźźżä.\n"
-"°˘°˘ŔÇ Ç׸ńŔşĄ¸.ĄšŔ¸ˇÎ ą¸şĐľČ ˝ĘÁřźö IP Á֟ҡΠŔÔˇÂÇŘžß ÇŐ´Ď´Ů.\n"
-"(żš, 1.2.3.4)"
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "%s ł×ĆŽż÷ ÄŤľĺ źłÁ¤Áß"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (%s ľĺśóŔĚšö)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP ÁÖźŇ"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "łÝ¸ś˝şĹŠ"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(BOOTP/DHCP)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "IP ŔÚľżÇŇ´ç"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP Á֟Ҵ 1.2.3.4°ú °°Ŕş Çü˝ÄŔĚžîžß ÇŐ´Ď´Ů."
-
-#: ../../network/network.pm_.c:361
-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 ""
-"ČŁ˝şĆŽ Ŕ̸§Ŕť ŔÔˇÂÇŘ ÁÖźźżä.\n"
-"ČŁ˝şĆŽ Ŕ̸§Ŕş ``mybox.mylab.myco.com''°ú °°ŔĚ żĎŔüÇŃ ČŁ˝şĆŽ \n"
-"Ŕ̸§ŔĚžîžß ÇŐ´Ď´Ů. \n"
-"°ÔŔĚĆŽ żţŔĚ°Ą ŔÖ´Ů¸é ą× IP Á֟Ҿľ ŔÔˇÂÇŘžß ÇŐ´Ď´Ů."
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS ź­šö"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "°ÔŔĚĆŽżţŔĚ ŔĺÄĄ"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "ÇÁśô˝Ă źłÁ¤"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "ŔĽ ÇÁśô˝Ă"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP ÇÁśô˝Ă"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "ł×ĆŽż÷ÄŤľĺ ID ĂßŔű (ˇŚĹžżĄ ŔŻżëÇÔ)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "ÇÁśô˝Ă Ŕ̸§Ŕş httP://... ŔĚžîžß ÇŐ´Ď´Ů."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "ÇÁśô˝Ă Ŕ̸§Ŕş ftp://... ŔĚžîžß ÇŐ´Ď´Ů."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "ŔÎĹÍłÝ źłÁ¤"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "ÁöąÝ ŔÎĹÍłÝ żŹ°áŔť ˝ĂľľÇŘ ş¸˝Ă°Ú˝Ŕ´Ďąî?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "żŹ°á Ĺ×˝şĆŽ Áß..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "ÁöąÝ ˝Ă˝şĹŰŔĚ ŔÎĹͳݿĄ żŹ°áľÇžú˝Ŕ´Ď´Ů."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "ş¸žČťóŔÇ ŔĚŔŻˇÎ ŔĚÁŚ żŹ°áŔť ˛÷Ŕť °ÍŔÔ´Ď´Ů."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"˝Ă˝şĹŰŔĚ ŔÎĹͳݿĄ żŹ°áľÇÁö žĘŔş ľíÇŐ´Ď´Ů.\n"
-"żŹ°á źłÁ¤Ŕť ´Ů˝ĂÇŘ ş¸źźżä."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "żŹ°á źłÁ¤"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "žĆˇĄ žç˝ÄŔť äżö ÁÖźźżä."
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "ÄŤľĺ IRQ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "ÄŤľĺ ¸Ţ¸đ¸Ž (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "ÄŤľĺ IO"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "ÄŤľĺ IO_0"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "ÄŤľĺ IO_1"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "´ÔŔÇ °łŔÎ ŔüČ­ šřČŁ"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "°řąŢŔÚ Ŕ̸§ (żš provider.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "°řąŢŔÚ ŔüČ­šřČŁ"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "°řąŢŔÚ DNS 1 (żÉźÇ)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "°řąŢŔÚ DNS 2 (żÉźÇ)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "ąš°Ą źąĹĂ"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "´ŮŔĚžó¸ľ ¸đľĺ"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "żŹ°á źÓľľ"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "żŹ°á ˝Ă°ŁĂĘ°ú (ĂĘ)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "ˇÎą×ŔÎ °čÁ¤(ťçżëŔÚ¸í)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "°čÁ¤ žĎČŁ"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "¸śżîĆŽ ˝ÇĆĐ: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "ŔĚ ˝Ă˝şĹŰżĄź­´Â ČŽŔĺĆÄĆźźÇŔĚ ÁöżřľÇÁö žĘ˝Ŕ´Ď´Ů."
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"ĆÄĆźźÇ Ĺ×ŔĚşíżĄź­ şó °ř°ŁŔĚ ŔÖÁö¸¸ ťçżëÇŇ źö žř˝Ŕ´Ď´Ů.\n"
-"ŔŻŔĎÇŃ ÇŘ°áĂĽŔş ÁÖ ĆÄĆźźÇľéŔĚ ČŽŔĺ ĆÄĆźźÇľéŔÇ ľÚżĄ ŔÖ´Â şó °ř°ŁŔť Â÷ÁöÇĎľľˇĎ "
-"żČąâ´Â °ÍŔÔ´Ď´Ů."
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "%s ĆÄŔϡκÎĹÍŔÇ şšą¸ ˝ÇĆĐ: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "%s ĆÄŔĎżĄ ž˛ąâ żŔˇů"
-
-#: ../../partition_table_raw.pm_.c:186
-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"
-"ŔĚ°ÍŔş ľđ˝şĹŠżĄ ąâˇĎľÇ´Â ľĽŔĚĹ͸Ś ŔŇžî šö¸°´Ů´Â °ÍŔť ŔÇšĚÇŐ´Ď´Ů."
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "ÇĘźö ĆŃĹ°Áö"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "ÁßżäÇŃ ĆŃĹ°Áö"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "ČǸ˘ÇŃ ĆŃĹ°Áö"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "ÁÁŔş ĆŃĹ°Áö"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "ąŚÂúŔş ĆŃĹ°Áö"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "ˇÎÄĂ ÇÁ¸°ĹÍ"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "żř°Ý ÇÁ¸°ĹÍ"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "żř°Ý CUPS ź­šöŔÇ ÇÁ¸°ĹÍ"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "żř°Ý LPD ź­šöŔÇ ÇÁ¸°ĹÍ"
-
-#: ../../printer.pm_.c:51
-#, fuzzy
-msgid "Network printer (TCP/Socket)"
-msgstr "ł×ĆŽż÷ ÇÁ¸°ĹÍ (źŇÄĎ)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "ťďšŮ/ŔŠľľżěÁî 95/98/NTťóŔÇ ÇÁ¸°ĹÍ"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "ł×ĆŽżţžî ź­šöťóŔÇ ÇÁ¸°ĹÍ"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "ÇÁ¸°ĹÍ ŔĺÄĄ URIŔť ŔÔˇÂÇĎźźżä."
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "ŔŰž÷Ŕť ¸íˇÉŔ¸ˇÎ ĆÄŔĚÇÁ żŹ°á"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "žË źöžř´Â ¸đľ¨"
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "ˇÎÄĂ ÇÁ¸°ĹÍ"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "żř°Ý ÇÁ¸°ĹÍ"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "%s ĆÄŔĎżĄ ž˛ąâ żŔˇů"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "łŻ(RAW) ÇÁ¸°ĹÍ (ľĺśóŔĚšö ťçżëžČÇÔ)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(%sżĄ)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(ŔĚ ź­šöťóŔÇ)"
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "CUPS ź­šö IP"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (ąâşť°Ş)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "ÇÁ¸°ĹÍ żŹ°ášćšýŔť źąĹĂÇĎźźżä."
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "ÇÁ¸°ĹÍ°Ą žîśť°Ô żŹ°áľÇžî ŔÖ˝Ŕ´Ďąî?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"żř°Ý CUPS ź­šöŔÇ ÇÁ¸°ĹÍ´Â żŠąâź­ źłÁ¤ÇŇ ÇĘżä°Ą \n"
-"žř˝Ŕ´Ď´Ů; Ŕ̡ą ÇÁ¸°ĹÍ´Â ŔÚľżŔ¸ˇÎ °¨ÁöľÇžî Áý´Ď´Ů. ŔĚżÍ °°Ŕş °ćżě\n"
-"Ą¸żř°Ý CUPS ź­šöŔÇ ÇÁ¸°ĹÍĄš¸Ś źąĹĂÇĎźźżä."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "źłÁ¤"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "żř°Ý CUPS ź­šö"
-
-#: ../../printerdrake.pm_.c:71
-#, fuzzy
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"żř°Ý CUPS ź­šöżĄ ´ëÇŘź­´Â żŠąâź­ ÇÁ¸°Ĺ͸Ś źłÁ¤ÇŇ ÇĘżä°Ą\n"
-"žř˝Ŕ´Ď´Ů; CUPS ź­šö´Â ŔÚľżŔ¸ˇÎ ÇÁ¸°ĹÍ Á¤ş¸¸Ś žËˇÁÁÝ´Ď´Ů.\n"
-"ÇöŔç žËˇÁÁř ¸đľç ÇÁ¸°ĹÍ´Â Ą¸ąâşť ÇÁ¸°ĹÍĄšżľżŞżĄ łŞż­ľË´Ď´Ů.\n"
-"ąâşť ÇÁ¸°Ĺ͡ΠťçżëÇŇ ÇÁ¸°Ĺ͸Ś źąĹĂÇĎ°í Ą¸Ŕűżë/ÇÁ¸°ĹÍ ´Ů˝Ă Ŕй⥚\n"
-"šöĆ°Ŕť ´Š¸Łźźżä. ÇÁ¸°ĹÍ ¸ńˇĎŔť °ť˝ĹÇϡÁ ÇŇś§ľľ ľżŔĎÇŃ šöĆ°Ŕť\n"
-"´Š¸Łźźżä. (CUPS°Ą ˝ĂŔŰľČ ČÄ, ¸đľç żř°Ý ÇÁ¸°ĹÍ°Ą ş¸żŠÁöąâąîÁö´Â\n"
-"30ĂĘ °ĄˇŽŔÇ ˝Ă°ŁŔĚ °É¸ł´Ď´Ů.)\n"
-"CUPS ź­šö°Ą ´Ů¸Ľ ł×ĆŽż÷żĄ Ŕִٸé, CUPS ź­šöŔÇ IP Á֟ҿÍ\n"
-"Ć÷ĆŽ šřČŁ(żÉźÇ)¸Ś ÁöÁ¤Ç؞߸¸ ź­šöˇÎşÎĹÍ ÇÁ¸°ĹÍ Á¤ş¸¸Ś šŢžĆżĂ źö\n"
-"ŔÖ˝Ŕ´Ď´Ů. Ŕ̡ą °ćżě°Ą žĆ´Ďśó¸é ŔĚ żľżŞľéŔş ą×łÉ şńżöľÎźźżä."
-
-#: ../../printerdrake.pm_.c:72
-#, fuzzy
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"ŔĎšÝŔűŔ¸ˇÎ CUPS´Â ł×ĆŽż÷ČŻ°ćżĄ ľűśó ŔÚľżŔ¸ˇÎ źłÁ¤ľÇąâ\n"
-"ś§šŽżĄ, ÁöżŞ ł×ĆŽż÷żĄ ŔÖ´Â CUPS ź­šöŔÇ ÇÁ¸°Ĺ͸Ś ťçżëÇŇ\n"
-"źö ŔÖ˝Ŕ´Ď´Ů. ą×ˇŻłŞ ¸¸žŕżĄ ŔĚ°ÍŔĚ żĂšŮ¸Ł°Ô ŔŰľżÇĎÁö žĘŔ¸¸é,\n"
-"Ą¸ŔÚľż CUPS źłÁ¤ĄšŔť ÇŘÁŚÇϽðí, Ą¸/etc/cups/cupsd.confĄš\n"
-"¸Ś Á÷Á˘ źöÁ¤ÇŘ ÁÖźźżä. łŞÁßżĄ CUPS¸Ś ´Ů˝Ă ˝ÇÇŕÇĎ´Â °ÍŔť\n"
-"ŔŘÁö¸śźźżä. (¸íˇÉžî: Ą¸service cups restartĄš )"
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP Á֟Ҵ Ą¸192.168.1.20Ąš°ú °°Ŕş Çü˝ÄŔĚžîžß ÇŐ´Ď´Ů."
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Ć÷ĆŽ šřČŁ´Â Á¤źöŔĚžîžß ÇŐ´Ď´Ů!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "CUPS ź­šö IP"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Ć÷ĆŽ"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "ŔÚľż CUPS źłÁ¤"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "ŔĺÄĄ °Ëťö Áß ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ć÷ĆŽ °Ëťç"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "ÇÁ¸°ĹÍ Ăß°Ą"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "ˇÎÄĂ ÇÁ¸°ĹÍ"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "żř°Ý ÇÁ¸°ĹÍ"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "ŔÚľż°Ëťö ťçżë"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "żř°Ý ÇÁ¸°Ĺ͸í"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "%s šß°ß"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "ÇÁ¸°ĹÍ ŔĺÄĄ URIŔť ŔÔˇÂÇĎźźżä."
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "ˇÎÄĂ ÇÁ¸°ĹÍ"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "žîś˛ ˝Ă¸Žžó Ć÷ĆŽżĄ ¸śżě˝ş°Ą żŹ°áľÇžî ŔÖłŞżä?"
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "ÇÁ¸°ĹÍ ŔĺÄĄ URIŔť ŔÔˇÂÇĎźźżä."
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "ŔÎĹÍłÝ źłÁ¤"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "ĆŃĹ°Áö źłÄĄ Áß..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "ĆŃĹ°Áö źłÄĄ Áß..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "ÇÁ¸°ĹÍ ľĽŔĚĹÍşŁŔĚ˝ş ŔĐ´Â Áß ..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "ÇÁ¸°ĹÍ ľĽŔĚĹÍşŁŔĚ˝ş ŔĐ´Â Áß ..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "żř°Ý LPD ÇÁ¸°ĹÍ żÉźÇ"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"żř°Ý LPD ÇÁ¸°Ĺ͸Ś ťçżëÇĎąâ Ŕ§ÇŘź­´Â\n"
-"ą× ÇÁ¸°ĹÍ ź­šöŔÇ ČŁ˝şĆŽ¸í°ú ą× ź­šöťóŔÇ ÇÁ¸°ĹÍ Ŕ̸§Ŕť\n"
-"ŔÔˇÂÇŘžß ÇŐ´Ď´Ů."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "żř°Ý ČŁ˝şĆŽ¸í"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "żř°Ý ÇÁ¸°Ĺ͸í"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "żř°Ý ČŁ˝şĆŽ¸íŔť ĂŁŔť źö žřŔ˝!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "żř°Ý ÇÁ¸°Ĺ͸íŔĚ şüÁł˝Ŕ´Ď´Ů!!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) ÇÁ¸°ĹÍ żÉźÇ"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"ťďšŮ ÇÁ¸°Ĺ͡ΠŔÎźâÇϡÁ¸é, ťďšŮ ź­šöŔÇ ČŁ˝şĆŽ¸í \n"
-"(ÁÖŔÇ! ą× ź­šöŔÇ TCP/IP ČŁ˝şĆŽ¸í°ú´Â Ŕ̸§ŔĚ ´Ů¸Ś źö ŔÖ˝Ŕ´Ď´Ů.)°ú, \n"
-"°Ą´ÉÇϴٸé, ą× ź­šöŔÇ IP ÁÖźŇ ą×¸Ž°í ž×źź˝şÇϡÁ´Â ÇÁ¸°ĹÍŔÇ \n"
-"°řŔŻ Ŕ̸§, Á¤˝Ä ťçżëŔÚ¸í, žĎČŁ, ŔŰž÷ą×ˇě¸íŔť \n"
-"ŔÔˇÂÇŘžß ÇŐ´Ď´Ů."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "SMB ź­šö ČŁ˝şĆŽ"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "SMB ź­šö IP"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "°řŔŻ Ŕ̸§"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "ŔŰž÷ ą×ˇě"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "ź­šö Ŕ̸§ śÇ´Â ź­šö IP¸Ś ŔÔˇÂÇŘžß ÇŐ´Ď´Ů!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "ťďšŮ °řŔŻ Ŕ̸§Ŕť ĂŁŔť źö žřŔ˝!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "łÝżţžî ÇÁ¸°ĹÍ żÉźÇ"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"łÝżţžî ÇÁ¸°Ĺ͡ΠŔÎźâÇϡÁ¸é, łÝżţžî ź­šöŔÇ ČŁ˝şĆŽ¸í \n"
-"(ÁÖŔÇ! ą× ź­šöŔÇ TCP/IP ČŁ˝şĆŽ¸í°ú´Â Ŕ̸§ŔĚ ´Ů¸Ś źö ŔÖ˝Ŕ´Ď´Ů.)°ú \n"
-"ž×źź˝şÇϡÁ´Â ÇÁ¸°ĹÍŔÇ ĹĽ Ŕ̸§, Á¤˝Ä ťçżëŔÚ¸í, žĎČŁ¸Ś \n"
-"ŔÔˇÂÇŘžß ÇŐ´Ď´Ů."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "ÇÁ¸°ĹÍ ź­šö"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "ÇÁ¸°ĆŽ ĹĽ Ŕ̸§"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "NCP ź­šö Ŕ̸§Ŕť ĂŁŔť źö žřŔ˝!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "NCP ĹĽ Ŕ̸§Ŕť ĂŁŔť źö žřŔ˝!"
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "źŇÄĎ ÇÁ¸°ĹÍ żÉźÇ"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"źŇÄĎ ÇÁ¸°Ĺ͡ΠŔÎźâÇĎąâ Ŕ§ÇŘź­´Â, ÇÁ¸°ĹÍŔÇ ČŁ˝şĆŽ¸í°ú \n"
-"Ć÷ĆŽ šřČŁ(żÉźÇ)¸Ś ÁöÁ¤ÇŘžß ÇŐ´Ď´Ů. HP JetDirect ź­šöťóżĄź­´Â\n"
-"ŔĎšÝŔűŔ¸ˇÎ 9100 Ć÷ĆŽ¸Ś ťçżëÇĎÁö¸¸, ´Ů¸Ľ ź­šöťóżĄź­´Â °˘ąâ\n"
-"´Ů¸Ś źö ŔÖ˝Ŕ´Ď´Ů. ÇĎľĺżţžî źł¸íź­¸Ś ÂüÁśÇĎźźżä."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "ÇÁ¸°ĹÍ ČŁ˝şĆŽ¸í"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "ÇÁ¸°ĹÍ ČŁ˝şĆŽ¸íŔť ĂŁŔť źö žřŔ˝!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "ÇÁ¸°ĹÍ ŔĺÄĄ URI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"ÇÁ¸°ĹÍ ž×źź˝ş Á֟ҸŚ Á÷Á˘ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů. Á֟Ҵ CUPS śÇ´Â Foomatic ąÔÁ¤"
-"Ŕť ÁŘźöÇŘžß ÇŐ´Ď´Ů. ą×ˇ¸Áö žĘŔş Á֟Ҵ ¸đľç ˝şÇŽˇŻ°Ą ÁöżřÇĎÁö žĘ˝Ŕ´Ď´Ů."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "ŔŻČżÇŃ Á֟ҸŚ ŔÔˇÂÇĎźźżä!"
-
-#: ../../printerdrake.pm_.c:1004
-#, fuzzy
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"¸đľç ÇÁ¸°ĹÍ´Â Ŕ̸§ŔĚ ŔÖžîžß ÇŐ´Ď´Ů.(żš, lp)\n"
-"źł¸í°ú Ŕ§ÄĄ şÎşĐŔť ŔÔˇÂÇŇ ÇĘżä´Â žř˝Ŕ´Ď´Ů.\n"
-"ą×°ÍľéŔş ´ÜÁö ťçżëŔÚľéŔť Ŕ§ÇŃ şÎżŹźł¸íŔĎ ťÓŔÔ´Ď´Ů."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "ÇÁ¸°ĹÍ Ŕ̸§"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "źł¸í"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Ŕ§ÄĄ"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "ÇÁ¸°ĹÍ ľĽŔĚĹÍşŁŔĚ˝ş ÁŘşń Áß ..."
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "żř°Ý ÇÁ¸°Ĺ͸í"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "ŔĚ°ÍŔĚ ¸Â˝Ŕ´Ďąî?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "żř°Ý ÇÁ¸°Ĺ͸í"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "ÇÁ¸°ĹÍ ¸đľ¨ źąĹĂ"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "žîś˛ ÇÁ¸°Ĺ͸Ś °ĄÁö°í ŔÖ˝Ŕ´Ďąî?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "OKI ŔŠÇÁ¸°ĹÍ źłÁ¤"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "ˇş˝ş¸śĹŠ Ŕ×ĹŠÁŹ źłÁ¤"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-#, fuzzy
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"ÇÁ¸°ĹÍ ąâşť°Ş źłÁ¤\n"
-"ĆäŔĚÁö ĹŠąâżÍ (¸¸žŕ ŔŻČżÇϴٸé) Ŕ×ĹŠ ŔŻÇüŔĚ żĂšŮ¸ĽÁö\n"
-"Ŕß ČŽŔÎÇĎźźżä. °íÇ°Áú ŔÎźâš°Ŕť žňąâŔ§ÇŘź­´Â ŔÎźâ źÓľľ°Ą\n"
-"ą× ¸¸Ĺ­ ´ŔˇÁÁř´Ů´Â °ÍŔť žË°í °čźźżä."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "%s żÉźÇŔş Á¤źö šřČŁŔĚžîžß ÇŐ´Ď´Ů!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "%s żÉźÇŔş źýŔÚŔĚžîžß ÇŐ´Ď´Ů!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "%s żÉźÇ šüŔ§ ĂĘ°ú!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"ŔĚ ÇÁ¸°ĹÍ(%s)¸Ś\n"
-"ąâşť ÇÁ¸°Ĺ͡ΠÇϽðڽŔ´Ďąî?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "˝ĂÇč ĆäŔĚÁö"
-
-#: ../../printerdrake.pm_.c:1583
-#, fuzzy
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"ŔÎźâÇŇ ˝ĂÇč ĆäŔĚÁö¸Ś źąĹĂÇĎźźżä.\n"
-"ÁÖŔÇ: ťçÁř ˝ĂÇč ĆäŔĚÁö¸Ś ŔÎźâÇĎąâ Ŕ§ÇŘź­´Â ´ŮźŇ ˝Ă°ŁŔĚ °É¸ą źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"ą×¸Ž°í ŔúżëˇŽŔÇ ¸Ţ¸đ¸Ž¸Ś °ĄÁř ˇšŔĚŔú ÇÁ¸°ĹÍżĄź­´Â\n"
-"ĆäŔĚÁö°Ą łŞżŔÁö žĘŔť źöľľ ŔÖ˝Ŕ´Ď´Ů.\n"
-"ÇĽÁŘ ˝ĂÇč ĆäŔĚÁö´Â ´ë°ł Ŕß ŔÎźâľË´Ď´Ů."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "˝ĂÇč ĆäŔĚÁö žřŔ˝"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "ŔÎźâ"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "ÇĽÁŘ ˝ĂÇč ĆäŔĚÁö"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "´Ů¸Ľ ˝ĂÇč ĆäŔĚÁö (Letter)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "˝ĂÇč ĆäŔĚÁö Č°źşČ­ (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "ťçÁř ˝ĂÇč ĆäŔĚÁö"
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "˝ĂÇč ĆäŔĚÁö ŔÎźâ"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "˝ĂÇč ĆäŔĚÁö ŔÎźâ Áß..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"˝ĂÇč ŔÎźâ ĆäŔĚÁö¸Ś ÇÁ¸°Ĺ͡Πş¸łÂ˝Ŕ´Ď´Ů.\n"
-"ŔÎźâľÇąâąîÁö žŕ°ŁŔÇ ˝Ă°ŁŔĚ °É¸ą źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"ŔÎźâ ťóȲ: \n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"˝ĂÇč ŔÎźâ ĆäŔĚÁö¸Ś ÇÁ¸°Ĺ͡Πş¸łÂ˝Ŕ´Ď´Ů.\n"
-"ŔÎźâľÇąâąîÁö žŕ°ŁŔÇ ˝Ă°ŁŔĚ °É¸ą źö ŔÖ˝Ŕ´Ď´Ů.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "żĂšŮ¸Ł°Ô ŔŰľżÇß˝Ŕ´Ďąî?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "łŻ(RAW) ÇÁ¸°ĹÍ"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, fuzzy, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"ÇöŔç ÇÁ¸°ĹÍżĄ ťçżëÇŇ źö ŔÖ´Â żÉźÇ ¸ńˇĎŔť ş¸ˇÁ¸é, Ą¸ŔÎźâ żÉźÇ ¸ńˇĎĄšŔť ´Š¸Łźź"
-"żä.\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"¸íˇÉÇŕ(Ĺ͚̳ΠŔŠľľżě)żĄź­ ĆÄŔĎŔť ŔÎźâÇϡÁ¸é, Ą¸%s <ĆÄŔĎ>Ąš¸íˇÉŔť ťçżëÇĎźź"
-"żä.\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-#, fuzzy
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"ÇöŔç ÇÁ¸°ĹÍżĄ ťçżëÇŇ źö ŔÖ´Â żÉźÇ ¸ńˇĎŔť ş¸ˇÁ¸é, Ą¸ŔÎźâ żÉźÇ ¸ńˇĎĄšŔť ´Š¸Łźź"
-"żä.\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"¸íˇÉÇŕ(Ĺ͚̳ΠŔŠľľżě)żĄź­ ĆÄŔĎŔť ŔÎźâÇϡÁ¸é, Ą¸%s <ĆÄŔĎ>Ąš śÇ´Â Ą¸%s <ĆÄŔĎ>Ąš"
-"¸íˇÉŔť ťçżëÇĎźźżä.\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Ą¸%sĄšżÍĄ¸%sĄš¸íˇÉŔş śÇÇŃ ĆŻÁ¤ ŔÎźâ ŔŰž÷Ŕť Ŕ§ÇŃ żÉźÇ źłÁ¤Ŕť źöÁ¤ÇŇ źö ŔÖ°Ô ÇŐ"
-"´Ď´Ů. ¸íˇÉÇ࿥ żřÇĎ´Â źłÁ¤°ŞŔť Ăß°ĄÇĎźźżä, żš: Ą¸%s <ĆÄŔĎ>Ąš.\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "´Ýąâ"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "ÇÁ¸°ĹÍĄ¸%sĄšťóżĄź­ ŔÎźâ Áß"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "ÇÁ¸°ĹÍĄ¸%sĄšťóżĄź­ ŔÎźâ Áß"
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "ÇÁ¸°ĹÍ żÉźÇ ¸ńˇĎ"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "ÇÁ¸°ĹÍ ľĽŔĚĹÍ ŔĐ´Â Áß ..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "ÇÁ¸°ĹÍ źłÁ¤ ŔüźŰ"
-
-#: ../../printerdrake.pm_.c:1815
-#, fuzzy, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"˝şÇŽˇŻ %s¸Ś Ŕ§ÇŘ ťçżëÇŃ ÇÁ¸°ĹÍ źłÁ¤Ŕť ÇöŔç ˝şÇŽˇŻŔÎ %sˇÎ\n"
-"şšťçÇŇ źö ŔÖ˝Ŕ´Ď´Ů. ¸đľç źłÁ¤ ľĽŔĚĹÍ(ÇÁ¸°Ĺ͸í, źł¸í, Ŕ§ÄĄ,\n"
-"żŹ°á ŔŻÇü, ą×¸Ž°í ąâşť żÉźÇ°Şľé)°Ą łŃ°ÜÁú °ÍŔÔ´Ď´Ů.\n"
-"ą×ˇŻłŞ ŔŰž÷ľéŔş ŔüźŰľÇÁö žĘ˝Ŕ´Ď´Ů.\n"
-"´ŮŔ˝°ú °°Ŕş ŔĚŔŻˇÎŔÎÇĎżŠ ¸đľç ĹĽ°Ą ŔüźŰľÉ źö´Â žř˝Ŕ´Ď´Ů:\n"
-
-#: ../../printerdrake.pm_.c:1818
-#, fuzzy
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS´Â łëş§ ź­šöťóŔÇ ÇÁ¸°ĹÍłŞ ŔÚŔŻÇü˝Ä ¸íˇÉžîˇÎ ľĽŔĚĹ͸Ś ş¸łť´Â\n"
-"ÇÁ¸°ĹÍ´Â ÁöżřÇĎÁö žĘ˝Ŕ´Ď´Ů.\n"
-
-#: ../../printerdrake.pm_.c:1820
-#, fuzzy
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"LPQ´Â ´ÜÁö ÁöżŞ ÇÁ¸°ĹÍ, żř°Ý LPD ÇÁ¸°ĹÍ ą×¸Ž°í źŇÄĎ/TCP\n"
-"ÇÁ¸°Ĺ͸¸Ŕť ÁöżřÇŐ´Ď´Ů.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPDżÍ LPRng´Â IPP ÇÁ¸°Ĺ͸Ś ÁöżřÇĎÁö žĘ˝Ŕ´Ď´Ů.\n"
-
-#: ../../printerdrake.pm_.c:1824
-#, fuzzy
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"ą×¸Ž°í śÇÇŃ, ŔĚ ÇÁˇÎą×ˇĽŔĚłŞ Ą¸Foomatic źłÁ¤ĄšŔ¸ˇÎ\n"
-"ťýźşľÇÁö žĘŔş ĹĽ´Â ŔüźŰľÉ źö žř˝Ŕ´Ď´Ů."
-
-#: ../../printerdrake.pm_.c:1825
-#, fuzzy
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"śÇÇŃ ÁŚÁśž÷Ăź°Ą ÁŚ°řÇŃ PPD ĆÄŔĎŔĚłŞ CUPS Ć÷ÇÔ ľĺśóŔĚšöˇÎ\n"
-"źłÁ¤ľČ ÇÁ¸°ĹÍľľ ŔüźŰľÉ źö žř˝Ŕ´Ď´Ů."
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"ŔüźŰÇϡÁ´Â ÇÁ¸°ĹÍľéŔť źąĹĂÇŃ ČÄżĄ Ą¸ŔüźŰĄšŔť ´Š¸Łźźżä."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "ÇÁ¸°ĹÍ ŔüźŰ ÇĎÁöžĘŔ˝"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "ŔüźŰ"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"ÇÁ¸°ĹÍ Ą¸%sĄš°Ą ŔĚšĚ %sÇĎżĄ Á¸ŔçÇÔ´Ď´Ů.\n"
-"ľ¤žî žľˇÁ¸é Ą¸ŔüźŰĄšŔť ´Š¸Łźźżä.\n"
-"ťő Ŕ̸§Ŕť ŔÔˇÂÇĎ°ĹłŞ ŔĚ ÇÁ¸°Ĺ͸Ś ÁöłŞÄĽ źöľľ ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "ÇÁ¸°ĹÍ Ŕ̸§żĄ´Â šŽŔÚ, źýŔÚ ą×¸Ž°í šŘÁŮ(Underscore)¸¸ ŔÖžîžß ÇŐ´Ď´Ů."
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"ÇÁ¸°ĹÍ Ą¸%sĄš°Ą ŔĚšĚ Á¸ŔçÇŐ´Ď´Ů.\n"
-"Á¤¸ťˇÎ ąâÁ¸ źłÁ¤Ŕť ľ¤žî žľąîżä?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "ťő ÇÁ¸°ĹÍ Ŕ̸§"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "%s ŔüźŰ Áß ..."
-
-#: ../../printerdrake.pm_.c:1878
-#, fuzzy, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"ŔĚŔü ąâşť ÇÁ¸°ĹÍ(Ą¸%sĄš)¸Ś ŔüźŰÇĎż´˝Ŕ´Ď´Ů.\n"
-"ťő ÇÁ¸°ĆĂ ˝Ă˝şĹŰ %sÇĎżĄź­ ą×°ÍŔĚ śÇÇŃ ąâşť ÇÁ¸°ĹÍ°Ą\n"
-"ľÇľľˇĎ ÇϽðڽŔ´Ďąî?"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "ÇÁ¸°ĹÍ ľĽŔĚĹÍ °ť˝Ĺ Áß ..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "żř°Ý ÇÁ¸°ĹÍ źłÁ¤"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "ł×ĆŽż÷ żŹ°á Áß..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "ÁöąÝ ł×ĆŽż÷ źłÁ¤"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "ł×ĆŽż÷ ąâ´ÉŔĚ źłÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
-
-#: ../../printerdrake.pm_.c:1932
-#, fuzzy
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"żř°Ý ÇÁ¸°Ĺ͸Ś źłÁ¤ÇϡÁ ÇŐ´Ď´Ů. ą×ˇŻąâ Ŕ§ÇŘź­´Â ł×ĆŽż÷ŔĚ\n"
-"ľżŔŰÇĎ°í ŔÖžîžß ÇĎ´ÂľĽ, žĆÁ÷ ł×ĆŽż÷ źłÁ¤ŔĚ ľÇžî ŔÖÁö žĘ˝Ŕ´Ď´Ů.\n"
-"ł×ĆŽż÷ źłÁ¤žřŔĚ °čźÓ ÁřÇŕÇϸé, ÁöąÝ źłÁ¤ÇĎ°í ŔÖ´Â ÇÁ¸°Ĺ͸Ś\n"
-"ťçżëÇŇ źö žř˝Ŕ´Ď´Ů.\n"
-"žîśť°Ô ÇϽðڽŔ´Ďąî?"
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "ł×ĆŽż÷ źłÁ¤ žřŔĚ °čźÓ"
-
-#: ../../printerdrake.pm_.c:1968
-#, fuzzy
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-"źłÄĄ°úÁ¤żĄź­ źłÁ¤ÇŃ ł×ĆŽż÷Ŕť ˝ĂŔŰÇŇ źö žř˝Ŕ´Ď´Ů.\n"
-"˝Ă˝şĹŰŔĚ şÎĆĂľÉ ś§, ł×ĆŽż÷ŔĚ ŔÚľż ˝ÇÇŕľÇľľˇĎ ľÇžî ŔÖ´ÂÁö\n"
-"ČŽŔÎÇĎ°í, ¸ÇľĺˇšŔĚĹŠ ÁŚžî źžĹÍ(Ą¸ł×ĆŽż÷°ú ŔÎĹͳݥš->Ą¸żŹ°áĄš)\n"
-"¸Ś ŔĚżëÇĎżŠ żĂšŮ¸Ł°Ô źłÁ¤ÇĎźźżä.ą×¸Ž°íłŞź­ ´Ů˝Ă ¸ÇľĺˇšŔĚĹŠ ÁŚžî źžĹÍ(Ą¸ÇĎľĺżţ"
-"žîĄš->Ą¸ÇÁ¸°ĹÍĄš)\n"
-"¸Ś ŔĚżëÇĎżŠ, ÇÁ¸°ĹÍ źłÁ¤Ŕť\n"
-"´Ů˝Ă ÇŘ ş¸źźżä."
-
-#: ../../printerdrake.pm_.c:1969
-#, fuzzy
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"ł×ĆŽż÷ Á˘ąŮŔĚ şŇ°Ą´ÉÇßŔ¸¸ç, ˝ĂŔŰÇŇ źöľľ žřžú˝Ŕ´Ď´Ů.\n"
-"ł×ĆŽż÷ źłÁ¤°ú ÇĎľĺżţžî¸Ś ÁĄ°ËÇŘ ÁÖźźżä.\n"
-"ą×¸Ž°íłŞź­ żř°Ý ÇÁ¸°ĹÍ źłÁ¤Ŕť ´Ů˝Ă ˝ĂľľÇŘ\n"
-"ş¸źźżä."
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "ŔΟ⠽ýşĹŰ Ŕç˝ÇÇŕ Áß ..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "łôŔ˝"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "ĂÖ°í"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "ş¸žČ źöÁŘ %sˇÎ ŔΟ⠽ýşĹŰ źłÄĄ Áß"
-
-# #msgid ""
-# #"You are about to install the printing system %s on a system running in the %"
-# #"s security level.\n"
-# #"\n"
-# #"This printing system runs a daemon (background process) which waits for "
-# #"print jobs and handles them. This daemon is also accessable by remote "
-# #"machines through the network and so it is a possible point for attacks. "
-# #"Therefore only a few selected daemons are started by default in this "
-# #"security level.\n"
-# #"\n"
-# #"Do you really want to configure printing on this machine?"
-# #msgstr ""
-# #"ÁöąÝ ´ÔŔş ş¸žČźöÁŘ %2%sˇÎ żîżëľÇ´Â ˝Ă˝şĹŰżĄ\n"
-# #"ŔΟ⠽ýşĹŰ %1$sŔť źłÄĄÇϡÁ°í ÇŐ´Ď´Ů.\n"
-# #"\n"
-# #"ŔΟ⠽ýşĹŰŔş ŔÎźâŔŰž÷Ŕť ąâ´ŮˇČ´Ů°Ą Ăł¸ŽÇĎ´Â\n"
-# #"´ë¸ó(šéą×śóżîľĺ ÇÁˇÎźź˝ş)¸Ś ˝ÇÇŕ˝ĂĹľ´Ď´Ů.\n"
-# #"żř°Ý ˝Ă˝şĹŰżĄź­ ł×ĆŽż÷Ŕ¸ˇÎ ŔĚ ´ë¸óżĄ Á˘ąŮÇŇ źöľľ\n"
-# #"ŔÖąâ ś§šŽżĄ, ĹŠˇĄÄżľéŔÇ ťçłÉ°¨ŔĚ ľÇąâľľ ÇŐ´Ď´Ů.\n"
-# #"ľűśóź­ ÇöŔç ş¸žČ źöÁŘżĄź­´Â ´ÜÁö ¸î¸îŔÇ ¸Ĺ¸óľé¸¸\n"
-# #"˝ÇÇŕľÇľľˇĎ źąĹþǴ °ÍŔĚ ąâşťŔÔ´Ď´Ů.\n"
-# #"\n"
-# #"Á¤¸ťˇÎ ŔĚ ÄÄÇťĹÍťóŔÇ ŔÎźâ źłÁ¤Ŕť\n"
-# #"żřÇϽʴϹî? "
-#: ../../printerdrake.pm_.c:2019
-#, fuzzy, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"ÁöąÝ ´ÔŔş ş¸žČźöÁŘ %2%sˇÎ żîżëľÇ´Â ˝Ă˝şĹŰżĄ\n"
-"ŔΟ⠽ýşĹŰ %1$sŔť źłÄĄÇϡÁ°í ÇŐ´Ď´Ů.\n"
-"\n"
-"ŔΟ⠽ýşĹŰŔş ŔÎźâŔŰž÷Ŕť ąâ´ŮˇČ´Ů°Ą Ăł¸ŽÇĎ´Â\n"
-"´ë¸ó(šéą×śóżîľĺ ÇÁˇÎźź˝ş)¸Ś ˝ÇÇŕ˝ĂĹľ´Ď´Ů.\n"
-"żř°Ý ˝Ă˝şĹŰżĄź­ ł×ĆŽż÷Ŕ¸ˇÎ ŔĚ ´ë¸óżĄ Á˘ąŮÇŇ źöľľ\n"
-"ŔÖąâ ś§šŽżĄ, ĹŠˇĄÄżľéŔÇ ťçłÉ°¨ŔĚ ľÇąâľľ ÇŐ´Ď´Ů.\n"
-"ľűśóź­ ÇöŔç ş¸žČ źöÁŘżĄź­´Â ´ÜÁö ¸î¸îŔÇ ¸Ĺ¸óľé¸¸\n"
-"˝ÇÇŕľÇľľˇĎ źąĹþǴ °ÍŔĚ ąâşťŔÔ´Ď´Ů.\n"
-"\n"
-"Á¤¸ťˇÎ ŔĚ ÄÄÇťĹÍťóŔÇ ŔÎźâ źłÁ¤Ŕť\n"
-"żřÇϽʴϹî? "
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "şÎĆýà ŔΟ⠽ýşĹŰ ŔÚľż˝ÇÇŕ"
-
-#: ../../printerdrake.pm_.c:2052
-#, fuzzy, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"ŔΟ⠽ýşĹŰ(%s)´Â ÄÄÇťĹÍ°Ą şÎĆĂÇŇ ś§ ŔÚľżŔ¸ˇÎ ˝ÇÇŕľÇÁö\n"
-"žĘŔť °ÍŔÔ´Ď´Ů.\n"
-"\n"
-"ŔΟ⠽ýşĹŰŔş ĹŠˇĄÄżľéŔÇ ŔáŔçŔűŔÎ °ř°Ý¸ńÇĽŔĚąâ ś§šŽżĄ,\n"
-"ş¸žČ źöÁŘŔť łô°Ô ÇĎż´Ŕť ˝ĂżĄ´Â ŔÚľż˝ÇÇŕ ąâ´ÉŔĚ ÇŘÁŚľÉ\n"
-"źöľľ ŔÖľľˇĎ ľÇžî ŔÖ˝Ŕ´Ď´Ů.\n"
-"\n"
-"´Ů˝Ă ŔΟ⠽ýşĹŰŔÇ ŔÚľż˝ÇÇŕ ąâ´ÉŔĚ Č°źşČ­ľÇľľˇĎ\n"
-"ÇϽðڽŔ´Ďąî?"
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "źłÄĄľČ źŇÇÁĆŽżţžî ČŽŔÎ Áß ..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "LPRng ÁŚ°Ĺ Áß ..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "LPD ÁŚ°Ĺ Áß ..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "ÇÁ¸°ĹÍ ˝şÇŽˇŻŔť źąĹĂÇĎźźżä."
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "žîś˛ ŔΟ⠽ýşĹŰ(˝şÇŽˇŻ)Ŕť ťçżëÇϽðڽŔ´Ďąî?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "ÇÁ¸°ĹÍ Ą¸%sĄš źłÁ¤ Áß ..."
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "ĆŃĹ°Áö źłÄĄ Áß..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "ÇÁ¸°ĹÍ żÉźÇ"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "ÇÁ¸°Ĺ;塚ŔĚĹŠ ÁŘşń Áß ..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "ÇÁ¸°ĹÍ Ą¸%sĄš źłÁ¤ Áß ..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "ŔÎźâ źłÁ¤Ŕť ÇϽðڽŔ´Ďąî?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "ŔΟ⠽ýşĹŰ:"
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "ÇÁ¸°ĹÍ"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"´ŮŔ˝ ÇÁ¸°ĹÍľéŔĚ źłÁ¤ľÇžú˝Ŕ´Ď´Ů.\n"
-"źöÁ¤ÇĎ°í ˝Í°ĹłŞ,\n"
-"Á¤ş¸¸Ś ş¸°í ˝Í´Ů¸é ÇÁ¸°Ĺ͸Ś ĹŹ¸ŻÇĎźźżä.\n"
-"ťő ÇÁ¸°Ĺ͸Ś Ăß°ĄÇĎ°í ˝Í´Ů¸é Ą¸ÇÁ¸°ĹÍ Ăß°ĄĄš¸Ś ´Š¸Łźźżä."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"´ŮŔ˝ ÇÁ¸°ĹÍľéŔĚ źłÁ¤ľÇžú˝Ŕ´Ď´Ů.\n"
-"źöÁ¤ÇĎ°í ˝Í°ĹłŞ,\n"
-"Á¤ş¸¸Ś ş¸°í ˝Í´Ů¸é ÇÁ¸°Ĺ͸Ś ĹŹ¸ŻÇĎźźżä.\n"
-"ťő ÇÁ¸°Ĺ͸Ś Ăß°ĄÇĎ°í ˝Í´Ů¸é Ą¸ÇÁ¸°ĹÍ Ăß°ĄĄš¸Ś ´Š¸Łźźżä."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "ł×ĆŽż÷ źłÁ¤"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "ŔĎšÝ ¸đľĺ"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "śÇ´Ů¸Ľ ÇÁ¸°Ĺ͸Ś źłÁ¤ÇϽðڽŔ´Ďąî?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "ŔÎĹÍłÝ źłÁ¤ şŻ°ć"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"ÇÁ¸°ĹÍ %s: %s: %s\n"
-"ŔĚ ÇÁ¸°ĹÍżĄ ´ëÇŘź­ šŤžůŔť źöÁ¤ÇϽðڽŔ´Ďąî?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "˝ÇÇŕ"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "ŔÎĹÍłÝ żŹ°á ŔŻÇü"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "ÇÁ¸°ĹÍ Ŕ̸§, źł¸í, Ŕ§ÄĄ"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "ÇÁ¸°ĹÍ ÁŚÁśž÷Ăź, ¸đľ¨, ľĺśóŔĚšö"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "ÇÁ¸°ĹÍ ÁŚÁśž÷Ăź, ¸đľ¨"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "ŔĚ ÇÁ¸°Ĺ͸Ś ąâşťŔ¸ˇÎ źłÁ¤"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "˝ĂÇč ĆäŔĚÁö ŔÎźâ"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "ŔĚ ÇÁ¸°ĹÍŔÇ ŔÎźâšý žËąâ"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "ÇÁ¸°ĹÍ ÁŚ°Ĺ"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "ąâÁ¸ ÇÁ¸°ĹÍ Ą¸%sĄš ÁŚ°Ĺ Áß ..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "ąâşť ÇÁ¸°ĹÍ"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Ą¸%sĄšÇÁ¸°ĹÍ°Ą ąâşť ÇÁ¸°Ĺ͡ΠźłÁ¤ľÇžú˝Ŕ´Ď´Ů."
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Á¤¸ťˇÎ Ą¸%sĄšÇÁ¸°Ĺ͸Ś ÁŚ°ĹÇŐ´Ďąî?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "ÇÁ¸°ĹÍ Ą¸%sĄš ÁŚ°Ĺ Áß ..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "ÇÁśô˝Ă źłÁ¤"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"ÇÁśô˝Ă źłÁ¤ ľľą¸żĄ Ŕß żŔźĚ˝Ŕ´Ď´Ů.\n"
-"\n"
-"żŠąâź­ ˇÎą×Ŕΰú şńšĐšřČŁ¸Ś ÇĘżä śÇ´Â ÇĘżäˇÎÇĎÁö žĘ´Â\n"
-"HTTPżÍ FTP ÇÁśô˝Ă¸Ś źłÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"HTTP ÇÁśô˝Ă Á¤ş¸¸Ś ŔÔˇÂÇĎźźżä.\n"
-"HTTP ÇÁśô˝Ă°Ą ÇĘżä žř´Ů¸é, °řśőŔ¸ˇÎ ľÎźźżä."
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "ÁÖźŇ"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "Ć÷ĆŽ"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "Á֟Ҵ Ą¸http:ĄšˇÎ ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů."
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Ć÷ĆŽ şÎşĐŔş źýŔÚŔĚžîžß ÇŐ´Ď´Ů."
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"FTP ÇÁśô˝Ă Á¤ş¸¸Ś ŔÔˇÂÇĎźźżä.\n"
-"FTP ÇÁśô˝Ă°Ą ÇĘżäžř´Ů¸é, °řśőŔ¸ˇÎ ľÎźźżä."
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Á֟Ҵ Ą¸ftp:ĄšˇÎ ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů."
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"ÇÁśô˝Ă ˇÎą×Ŕΰú şńšĐšřČŁ¸Ś ŔÔˇÂÇĎźźżä.\n"
-"ˇÎą×Ŕΰú şńšĐšřČŁ°Ą ÇĘżäÄĄ žĘ´Ů¸é, °řśőŔ¸ˇÎ ľÎźźżä."
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "ˇÎą×ŔÎ"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "şńšĐšřČŁ"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "şńšĐšřČŁ ČŽŔÎ"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "şńšĐšřČŁ°Ą ŔĎÄĄÇĎÁö žĘ˝Ŕ´Ď´Ů. ´Ů˝Ă ŔÔˇÂÇĎźźżä!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Ć÷¸ËľČ RAID md%dżĄ ĆÄĆźźÇŔť Ăß°ĄÇŇ źö žř˝Ŕ´Ď´Ů."
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "%s ĆÄŔĎżĄ žľ źö žř˝Ŕ´Ď´Ů."
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid ˝ÇĆĐ"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid ˝ÇĆĐ (raidtoolŔĚ źłÄĄľÇžî ŔÖÁö žĘŔť źö ŔÖ˝Ŕ´Ď´Ů.)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "RAID ˇšş§ %d¸Ś Ŕ§ÇŃ ĆÄĆźźÇľéŔĚ ĂćşĐÇĎÁö žĘ˝Ŕ´Ď´Ů.\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "ALSA (Ářş¸ľČ ¸Ž´Ş˝ş ťçżîľĺ žĆĹ°ĹŘĂł) ťçżîľĺ ˝Ă˝şĹŰ ˝ÇÇŕ"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "AnancronŔş ÁÖąâŔűŔÎ ¸íˇÉ ˝şÄÉÁ졯 ŔÔ´Ď´Ů."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd´Â ščĹ͸Ž ťóĹÂżÍ syslog¸Ś °ĹĂÄź­ ˇÎą× ąâˇĎŔť °¨˝ĂÇĎ´ÂľĽ ťçżëľË´Ď´Ů.\n"
-"śÇÇŃ ščĹ͸ŽˇŽŔĚ šĚžŕÇŇś§ ŔÚľżŔ¸ˇÎ ˝Ă˝şĹŰŔť źË´Ůżî ˝ĂÄŃÁÖ´Â ąâ´Éľľ ÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:18
-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 ""
-"Á¤ÇŘÁŘ ˝Ă°ŁżĄ ÇŃšřżĄ ÇĎłŞžż ˝ÇÇŕ˝ĂĹľ´Ď´Ů. at´Â batch ¸íˇÉľéŔť ˝Ă˝şĹŰ\n"
-"ˇÎľĺŔ˛ŔĚ łˇŔťś§ źöÇŕ˝ĂĹľ´Ď´Ů."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cronŔş ťçżëŔÚ°Ą ÁöÁ¤ÇŃ ÇÁˇÎą×ˇĽŔť ÁÖąâŔűŔ¸ˇÎ ĆŻÁ¤ ˝Ă°ŁżĄ ˝ÇÇŕ˝ĂĹ°´Â \n"
-"ÇĽÁŘ UNIX ÇÁˇÎą×ˇĽŔÔ´Ď´Ů. vixie cronŔş ŔĚ ąâşť UNIX CronżĄ ÇâťóľČ ş¸žČ°ú \n"
-"´ő °­ˇÂÇŃ źłÁ¤żÉźÇ ľîŔÇ ¸šŔş ĆŻÂĄŔť Ăß°ĄÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:23
-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Ŕş ĹŘ˝şĆŽ ąâšÝ ÇÁˇÎą×ˇĽľéżĄ°Ô ¸śżě˝ş ąâ´ÉŔť ÁöżřÇŐ´Ď´Ů.\n"
-"śÇÇŃ ÄÜźÖ Č­¸éżĄź­ Ŕßśóź­ şŮŔĚąâżÍ ĆËž÷ ¸Ţ´ş ąâ´ÉŔť \n"
-"ÁöżřÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"ÇĎľĺľĺˇšŔĚĹŠ´Â ÇĎľĺżţžî °ËťöŔť źöÇŕÇϸç, ÇĘżäÇϴٸé\n"
-"ťő/şŻ°ćľČ ÇĎľĺżţžî¸Ś źłÁ¤ÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"žĆĆÄÄĄ(Apache)´Â ŔĽ ź­šöŔÔ´Ď´Ů. ŔĚ°ÍŔş HTMLŔĚłŞ CGI ĆÄŔĎ ź­şń˝ş¸Ś\n"
-"ÇĎ´ÂľĽ ťçżëľË´Ď´Ů."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"(ĹëťóŔűŔ¸ˇÎ inetdśó°í ÇĎ´Â) ŔÎĹÍłÝ źöĆŰ ´ë¸óŔş ´ŮžçÇŃ ŔÎĹÍłÝ ź­šö¸Ś\n"
-"ÇĘżäÇŃ ś§ ˝ÇÇŕ ˝ĂĹľ´Ď´Ů. ĹÚłÝ, FTP, RSH, RLOGIN ľî°ú °°Ŕş ¸šŔş \n"
-"ź­şń˝ş¸Ś °ü¸ŽÇŐ´Ď´Ů. ŔĚ°ÍŔĚ ˝ÇÇŕľÇžî ŔÖÁö žĘŔ¸¸é, śÇÇŃ ŔĚ°ÍŔĚ °ü¸ŽÇĎ´Â\n"
-"żŠˇŻ ź­şń˝şľľ śÇÇŃ şŇ°Ą´ÉÇĎ°Ô ľË´Ď´Ů."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"2.2 ÄżłÎ ˝Ă¸ŽÁîżë ĆĐĹś ÇĘĹ͸Ś ˝ÇÇŕ, ł×ĆŽż÷ °ř°ÝŔ¸ˇÎşÎĹÍ\n"
-"ÄÄÇťĹ͸Ś ş¸ČŁÇĎ´Â šćČ­şŽŔť ą¸ĂŕÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"ŔĚ ĆŃĹ°Áö´Â Ą¸/etc/sysconfig/keyboardĄšżĄ źłÁ¤ľÇžî ŔÖ´Â \n"
-"Ĺ°ş¸ľĺ ¸ĘŔť ŔűŔçÇŐ´Ď´Ů. Ĺ°ş¸ľĺ´Â Ą¸kbdconfigĄš¸íˇÉŔ¸ˇÎ źąĹĂÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-"´ëşÎşĐŔÇ ˝Ă˝şĹŰżĄź­ ÇĘżäÇŃ °ÍŔÔ´Ď´Ů."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Ą¸/usr/include/linux/{autoconf,version}.hĄšżĄ ´ëÇŘ\n"
-"Ą¸/bootĄšżĄ ÄżłÎ Çě´ő¸Ś ŔÚľż ťýźş."
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "şÎĆýÿĄ ŔÚľż ÇĎľĺżţžî °Ëťö š× źłÁ¤."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"¸Ž´Ş˝ş źłÁ¤(Linuxconf)Ŕş ˝Ă˝şĹŰ źłÁ¤Ŕť ŔŻÁöÇĎąâ Ŕ§ÇĎżŠ\n"
-"şÎĆýÿĄ ´ŮžçÇŃ ŔŰž÷ źöÇŕŔť ÁŘşńÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:43
-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 ¸íˇÉŔĚ żĂšŮ¸Ł°Ô ŔŰľżÇĎąâ Ŕ§ÇŘ ÇĘżäÇŃ ŔÎźâ ´ë¸óŔÔ´Ď´Ů.\n"
-"ąŮşťŔűŔ¸ˇÎ ŔÎźâ ŔŰž÷ľéŔť ÇÁ¸°Ĺ͡ΠÁßŔçÇŘ ÁÖ´Â ź­šöŔÔ´Ď´Ů."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"¸Ž´Ş˝ş °Ąťó ź­šö, °íźş´É ź­šö ą¸Ă࿥\n"
-"ťçżëľË´Ď´Ů."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"NAMED(BIND)´Â ČŁ˝şĆŽ Ŕ̸§Ŕ¸ˇÎ IP Á֟ҸŚ ĂŁžĆłť´ÂľĽ ťçżëľÇ´Â\n"
-"ľľ¸ŢŔÎ ł×ŔÓ ź­šöŔÔ´Ď´Ů."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"ł×ĆŽż÷ ĆÄŔĎ ˝Ă˝şĹŰ(NFS), ťďšŮ(SMB/ˇŁ °ü¸ŽŔÚ/ŔŠľľżěÁî), ą×¸Ž°í\n"
-"NCP(łÝżţžî)¸Ś ¸śżîĆŽÇĎ°í žđ¸śżîĆŽÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"şÎĆýÿĄ ˝ĂŔŰÇĎľľˇĎ źłÁ¤ľČ ¸đľç ł×ĆŽż÷ ŔÎĹ×ĆäŔĚ˝ş¸Ś \n"
-"Č°źşČ­/şńČ°źşČ­ ÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:52
-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 ł×ĆŽż÷Ŕ¸ˇÎ ĆÄŔĎŔť °řŔŻÇĎ´Â ŔÎąâŔÖ´Â ÇÁˇÎĹäÄÝŔÔ´Ď´Ů.\n"
-"ŔĚ ź­şń˝ş´Â /etc/export ĆÄŔĎŔť źłÁ¤ÇÔŔ¸ˇÎ˝á NFS ź­šöŔÇ ąâ´ÉŔť °Ą´ÉÇĎ°Ô\n"
-"ÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:55
-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 ĆÄŔĎ ŔáąÝ ąâ´ÉŔť ÁŚ°řÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"şÎĆýÿĄ ŔÚľżŔ¸ˇÎ ÄÜźÖ°ú X ČŻ°ćżĄź­\n"
-"źýŔÚĹ° ŔáąÝ ¸đľĺ ťçżë."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "OKI 4w š× ČŁČŻ ÇÁ¸°ĹÍ Áöżř."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA´Â ş¸Ĺë ˇŚĹž(łëĆŽşĎ)żĄ ŔÖ´Â ŔĚ´őłÝ ÄŤľĺżÍ ¸đľŠ°°Ŕş ŔĺÄĄ\n"
-"ľéŔť ÁöżřÇĎąâ Ŕ§ÇŃ °ÍŔÔ´Ď´Ů. Ăß°Ą źłÁ¤ŔĚ žřŔ¸¸é ˝ĂŔŰľÇÁö žĘąâ ś§šŽżĄ,\n"
-"Ŕ̡ŻÇŃ ŔĺÄĄ°Ą žř´Â ÄÄÇťĹÍżĄ źłÄĄľÇžî ŔÖžîľľ žČŔüÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Ć÷ĆŽ¸ĘĆŰ(portmapper)´Â NFSżÍ NIS °°Ŕş ÇÁˇÎĹäÄÝżĄ ŔÇÇŘ ťçżëľÇ´Â\n"
-"RPC żŹ°áŔť °ü¸ŽÇŐ´Ď´Ů. Ć÷ĆŽ¸Ę ź­šö´Â RPC ¸ŢÄż´ĎÁňŔť ŔĚżëÇĎ´Â ÇÁˇÎĹäÄÝżë ź­šö"
-"ˇÎ\n"
-"ťçżëľÇ°í ŔÖ´Â ÄÄÇťĹÍżĄ´Â šÝľĺ˝Ă ˝ÇÇŕľÇ°í ŔÖžîžß ÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Ć÷˝şĆŽÇČ˝ş(Postfix)´Â ÄÄÇťĹäľé°ŁżĄ ¸ŢŔĎŔť ÁÖ°íšŢ´Â \n"
-"¸ŢŔĎ ŔüźŰ żĄŔĚŔüĆŽŔÔ´Ď´Ů."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"°íÇ°ÁúŔÇ ł­źö ťýźşŔť Ŕ§ÇŘ ˝Ă˝şĹŰ żŁĆŽˇÎÇÇ ÇŽŔť ŔúŔĺÇĎ°í \n"
-"şšą¸ÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"żŔśóĹŹ °°Ŕş ÇÁˇÎą×ˇĽŔť ťçżëÇĎąâ Ŕ§ÇŘ łŻ(RAW) ŔĺÄĄ¸Ś\n"
-"(ÇĎľĺľđ˝şĹŠ ĆÄĆźźÇ °°Ŕş) şíˇĎ ŔĺÄĄˇÎ ÇŇ´ç."
-
-#: ../../services.pm_.c:71
-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 ľĽ¸óŔş RIP ÇÁˇÎĹäÄÝŔť ĹëÇŘ ŔÚľżŔ¸ˇÎ IP śóżěĹÍ Ĺ×ŔĚşíŔĚ °ť˝ĹľÇľľˇĎ ÇŐ´Ď"
-"´Ů.\n"
-"RIP´Â źŇąÔ¸đ ł×ĆŽż÷Ŕť Ŕ§ÇŃ °ÍŔĚąâ ś§šŽżĄ, ´ëąÔ¸đ ł×ĆŽż÷Ŕť Ŕ§ÇŘź­´Â ş¸´Ů şšŔâ"
-"ÇŃ\n"
-"śóżěĆĂ ÇÁˇÎĹäÄÝŔĚ ÇĘżäÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat ÇÁˇÎĹäÄÝŔş ł×ĆŽż÷ťóŔÇ ťçżëŔÚ°Ą ą¸ ł×ĆŽżöťóżĄ ŔÖ´Â \n"
-"¸đľç ÄÄÇťĹÍżĄ ´ëÇĎżŠ źöÇŕ´ÉˇÂ ¸ŢĆŽ¸Ż˝ş¸Ś žËžĆ şź źö ŔÖ°Ô ÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"rusers ÇÁˇÎĹäÄÝŔş ł×ĆŽż÷ťóŔÇ ťçżëŔÚľéŔĚ ´Ů¸Ľ ÄÄÇťĹÍťóżĄ ˇÎą×ŔÎÇŃ \n"
-"ťçżëŔÚľéŔÇ ˝ĹżřŔť žË źö ŔÖ°Ô ÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:78
-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 ÇÁˇÎĹäÄÝŔş (fingerżÍ şń˝ÁÇĎ°Ô) rwho ´ë¸óŔĚ ˝ÇÇŕľÇ°í\n"
-"ŔÖ´Â ÄÄÇťĹÍżĄ ˇÎą×ŔÎÇŃ ťçżëŔÚ ¸ńˇĎŔť żř°Ý ťçżëŔÚ°Ą şź źö ŔÖ°Ô ÇŐ´Ď´Ů."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "ŔĚ ÄÄÇťĹÍżĄź­ ťçżîľĺ ˝Ă˝şĹŰ ˝ÇÇŕ"
-
-#: ../../services.pm_.c:81
-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´Â żŠˇŻ ľĽ¸óľéŔÇ ˇÎą× ¸ŢźźÁö¸Ś żŠˇŻ ÁžˇůŔÇ ˝Ă˝şĹŰ ˇÎą× ĆÄŔϡÎ\n"
-"ł˛ąâ´ÂľĽ ŔŻżëÇŐ´Ď´Ů. Çםó Syslog¸Ś ˝ÇÇŕ˝ĂĹ°´Â°ÍŔĚ ÁÁ˝Ŕ´Ď´Ů."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "USB ŔĺÄĄżë ľĺśóŔĚšö ŔűŔç."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "X ĆůĆŽ ź­šö ˝ĂŔŰ (X ŔŠľľżě¸Ś żîżľÇĎąâ Ŕ§ÇŘź­´Â ÇĘźöŔÔ´Ď´Ů)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "žîś˛ ź­şń˝ş°Ą şÎĆýÿĄ ŔÚľż ˝ÇÇŕľÇžîžß ÇŇÁö źąĹĂÇĎźźżä."
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "ŔÎźâ"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "ŔÎĹÍłÝ"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "ĆÄŔĎ °řŔŻ"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "˝Ă˝şĹŰ"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "żř°Ý °ü¸Ž"
-
-# ../../share/compssUsers
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "ľĽŔĚĹÍşŁŔĚ˝ş ź­šö"
-
-# #msgid "Services: %d activated for %d registered"
-# #msgstr "ź­şń˝ş: ľîˇĎľČ %2$d Áß %1$d Č°źşČ­ľĘ"
-#: ../../services.pm_.c:170
-#, fuzzy, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "ź­şń˝ş: ľîˇĎľČ %2$d Áß %1$d Č°źşČ­ľĘ"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "ź­şń˝ş"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "˝ÇÇŕÁß"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "Á¤ÁöľĘ"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "ź­şń˝şżÍ ´ë¸ó"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"ÁËźŰÇŐ´Ď´Ů.\n"
-"ŔĚ ź­şń˝şżĄ ´ëÇŃ Ăß°ĄÁ¤ş¸°Ą žř˝Ŕ´Ď´Ů."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "ŔÚľż˝ÇÇŕ"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "ťóĹÂ:"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "ź˝ĹÍ"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "´Ů¸Ľ ÁöżŞŔť Ŕ§ÇŃ ÇÁˇÎĹäÄÝ"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "ŔÎĹÍłÝ ž×źź˝ş"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "¸ÖĆźšĚľđžî - ą×ˇĄÇČ"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "°łšß"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "ÄÁĆŽˇŃ źžĹÍ"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "ł×ĆŽż÷ ŔÎĹÍĆäŔĚ˝ş"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "SMB ź­šö ČŁ˝şĆŽ"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-# ../../share/compssUsers
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "°ÔŔÓ"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "ŔüšŽ°Ą"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "ĆŃĹ°Áö źłÄĄ Áß..."
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"ÇĎľĺ ľđ˝şĹŠŔÇ ĆÄĆźźÇ Ĺ×ŔĚşíŔť ŔĐŔťźö žř˝Ŕ´Ď´Ů. łĘšŤ şŻÇüľČ °Í °°˝Ŕ´Ď´Ů. :(\n"
-"Ŕ߸řľČ ĆÄĆźźÇ şńżěąâ¸Ś ˝ĂľľÇŇ °ÍŔÔ´Ď´Ů."
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "żŔˇů!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "ÇĘżäÇŃ ŔĚšĚÁö ĆÄŔĎ %s¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "ŔÚľż źłÄĄ źłÁ¤ąâ"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"ŔĚÁŚ ŔÚľż źłÄĄ ÇáÎÇǸŚ ¸¸ľé °ÍŔÔ´Ď´Ů. ŔĚ°ÍŔş ´ŮźŇ Ŕ§ÇčÇŃ ŔŰž÷ŔĚ ľÉ źö ŔÖŔ¸"
-"¸ç, ˝ĹÁßÇĎ°Ô ťçżëľÇžîÁŽžß ÇŐ´Ď´Ů.\n"
-"\n"
-"ŔĚ°ÍŔÇ ĆŻÂĄŔş, ŔϺΠ°ŞŔť şŻ°ćÇĎąâ Ŕ§ÇĎżŠ ŔϺΠ°úÁ¤żĄź­ ´ëČ­¸đľĺ°Ą łŞĹ¸łŞąâ´Â "
-"ÇĎÁö¸¸, ąâşťŔűŔ¸ˇÎ ŔĚ ÄÄÇťĹÍżĄź­ źöÇŕÇŃ źłÄĄŔŰž÷Ŕť ŔÚľżšÝşšÇĎ°Ô ÇŐ´Ď´Ů.\n"
-"\n"
-"žČŔüťóŔÇ ŔĚŔŻˇÎ, ŔĚ ÄÄÇťĹ͝󿥟­ŔÇ źłÄĄ°úÁ¤°ú´Â ťó°üžřŔĚ, ĆÄĆźźÇ łŞ´ŠąâżÍ Ć÷"
-"¸ËÇĎąâ´Â ŔÚľżŔ¸ˇÎ Ŕ̡çžîÁöÁö žĘ˝Ŕ´Ď´Ů.\n"
-"\n"
-"°čźÓ ÁřÇŕÇŐ´Ďąî?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "ŔÚľż °úÁ¤ źłÁ¤ąâ"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr "°˘ °úÁ¤żĄ ´ëÇĎżŠ źöľżźłÄĄżÍ ŔÚľżšÝşšźłÄĄ¸Ś źąĹĂÇĎźźżä."
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "ĂŕÇĎÇŐ´Ď´Ů!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"ÇáÎÇÇ°Ą źş°řŔűŔ¸ˇÎ ťýźşľÇžú˝Ŕ´Ď´Ů.\n"
-"ŔĚÁ¨ źłÄĄ°úÁ¤¸Ś šÝşšÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "źłÄĄ"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "ťçżëŔÚ Ăß°Ą"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "ˇçÇÁšé ĆÄŔĎŔť ÁŚ°ĹÇŐ´Ďąî?"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "ĆŃĹ°Áö źąĹĂ"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Ç׸ń ÁŚ°Ĺ"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "ŔŠľľżěÁî(TM) ÁŚ°Ĺ"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "ťçżëŔÚ¸í"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "¸śżě˝ş¸Ś Ĺ×˝şĆŽÇĎźźżä."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "´Ů˝Ă ˝ĂľľÇĎźźżä."
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "´Ů˝Ă ˝ĂľľÇĎźźżä."
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "şńšĐšřČŁ ČŽŔÎ"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN żŹ°á"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "ÇÁ¸°ĹÍ żŹ°ášćšýŔť źąĹĂÇĎźźżä."
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Ĺ°ş¸ľĺ ˇšŔ̞ƿô źąĹĂ"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "¸ĹĂź¸Ś ĹŹ¸ŻÇĎźźżä."
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "¸śżě˝ş¸Ś Ĺ×˝şĆŽÇĎźźżä."
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "ł×ĆŽż÷ ŔÎĹÍĆäŔĚ˝ş"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "ťçżëŔÚ¸í"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "ťçżëÇŇ žđžî¸Ś źąĹĂÇŘ ÁÖźźżä."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "ÇĎľĺ ľđ˝şĹŠ źąĹĂ"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "ťçżëŔÚ¸í"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "ČŮ ¸śżě˝ş"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "ČŮ ¸śżě˝ş"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "¸đľâ żÉźÇľé:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "ł×ĆŽż÷ ČŻ°ć źłÁ¤"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "ĆÄŔϽýşĹŰ ÁŘşń"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "żÉźÇľé"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "žîś˛ ˝Ă¸Žžó Ć÷ĆŽżĄ ¸śżě˝ş°Ą żŹ°áľÇžî ŔÖłŞżä?"
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "ł×ĆŽż÷ ČŻ°ć źłÁ¤"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "žîś˛ ÁžˇůŔÇ ¸śżě˝ş¸Ś ťçżëÇϽʴϹî?"
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "žîś˛ ÁžˇůŔÇ ¸śżě˝ş¸Ś ťçżëÇϽʴϹî?"
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "ąâŸ"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "˝Ă˝şĹŰ źłÄĄ"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "ťçżëŔÚ Á¤ŔÇ"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- ŔĚŔü"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "ťóĹÂ:"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "ťçżëŔÚ Á¤ŔÇ"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "´ŮŔ˝ ->"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "źłÄĄ ĆŃĹ°Áö źąĹĂ"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "ťçżëÇŇ žđžî¸Ś źąĹĂÇŘ ÁÖźźżä."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "ťçżëÇŇ žđžî¸Ś źąĹĂÇŘ ÁÖźźżä."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "ťçżëÇŇ žđžî¸Ś źąĹĂÇŘ ÁÖźźżä."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "ŔĺÄĄ¸Ś °ËťöÇĎ°í ŔÖ˝Ŕ´Ď´Ů..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "¸śżě˝ş¸Ś Ĺ×˝şĆŽÇĎźźżä."
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "ł×ĆŽż÷ ČŻ°ć źłÁ¤"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "ł×ĆŽż÷ ČŻ°ć źłÁ¤"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "źłÁ¤"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "LAN źłÁ¤"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "ĆÄŔϽýşĹŰ ÁŘşń"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s źłÄĄ ˝ÇĆĐ. ´ŮŔ˝°ú °°Ŕş żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "ł×ĆŽż÷ ÄŤľĺ¸Ś ĂŁŔťźö žř˝Ŕ´Ď´Ů"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "żĎˇá"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "źłÄĄ ÁŘşńÁßŔÔ´Ď´Ů"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "ÁŚÇŃ"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "ĆÄĆźźÇ Ć÷¸Ë"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN źłÁ¤"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "¸śżîĆŽ Ŕ§ÄĄ"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Ć÷¸ËÇŇ ĆÄĆźźÇŔť źąĹĂÇĎźźżä"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "żŔÇÇ˝ş"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "ÁßÁö"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "ÇÁ¸°ĹÍ"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "˝Ă˝şĹŰ źłÄĄ"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "ĆÄŔĎŔť źąĹĂÇĎźźżä."
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "ÇÁ¸°ĹÍ ÁŚ°Ĺ"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
-msgid "Initials tests"
-msgstr "ĂĘąâČ­ ¸Ţ˝ĂÁö"
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "ł×ĆŽż÷ žî´đĹ͸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "źłÄĄ"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "ł×ĆŽż÷ žî´đĹ͸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "źłÄĄ Ážˇá"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "ŔÎĹÍłÝ żŹ°á °řŔŻ"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "ÇöŔç ŔÎĹÍłÝ żŹ°á °řŔŻ°Ą °Ą´ÉÇŃ ťóĹÂŔÔ´Ď´Ů."
-
-#: ../../standalone/drakgw_.c:139
-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"
-"ÇöŔç °Ą´ÉÇŃ ťóĹÂŔÔ´Ď´Ů.\n"
-"\n"
-"šŤ˝ź ŔŰž÷Ŕť ÇϽðڽŔ´Ďąî?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "ÇŘÁŚ"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "ĂëźŇ"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "ŔçźłÁ¤"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "ź­šö ÁßÁö Áß..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "ŔĚÁŚ ŔÎĹÍłÝ żŹ°á °řŔŻ°Ą ąÝÁöľÇžú˝Ŕ´Ď´Ů."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "ÇöŔç ŔÎĹÍłÝ żŹ°á °řŔŻ°Ą şŇ°Ą´ÉÇŃ ťóĹÂŔÔ´Ď´Ů."
-
-#: ../../standalone/drakgw_.c:164
-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"
-"ÇöŔç şŇ°Ą´ÉÇŃ ťóĹÂŔÔ´Ď´Ů.\n"
-"\n"
-"šŤ˝ź ŔŰž÷Ŕť ÇϽðڽŔ´Ďąî?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "Çăżë"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "ź­šö Çăżë Áß"
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "ŔĚÁŚ ŔÎĹÍłÝ żŹ°á °řŔŻ°Ą ÇăżëľÇžú˝Ŕ´Ď´Ů."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"ŔĚÁŚ ŔÎĹÍłÝ żŹ°á °řŔŻ¸Ś Ŕ§ÇŘź­ ´ÔŔÇ ÄÄÇťĹ͸Ś źłÁ¤ÇϡÁ°í ÇŐ´Ď´Ů.\n"
-"Ŕ̡ÎŔÎÇŘ, ÁöżŞ ł×ĆŽż÷ŔÇ ´Ů¸Ľ ÄÄÇťĹÍľéľľ ŔĚ ÄÄÇťĹÍŔÇ ŔÎĹÍłÝ żŹ°áŔť ťçżëÇŇ źö "
-"ŔÖ°Ô ľË´Ď´Ů.\n"
-"\n"
-"ÁÖŔÇ: ÁöżŞ ł×ĆŽż÷(ˇŁ)Ŕť ¸ńŔűŔ¸ˇÎ źłÄĄľČ ł×ĆŽż÷ žî´đĹÍ°Ą ŔÖžîžß ÇŐ´Ď´Ů."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "ŔÎĹÍĆäŔĚ˝ş %s (%s ¸đľâ ťçżë)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "ŔÎĹÍĆäŔĚ˝ş %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "ł×ĆŽż÷ žî´đĹ͸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"žîś°ÇŃ ł×ĆŽż÷ žî´đĹÍľľ šß°ßľÇÁö žĘ˝Ŕ´Ď´Ů. ÇĎľĺżţžî źłÁ¤ ľľą¸¸Ś ˝ÇÇŕÇŘ ş¸źźżä."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "ł×ĆŽż÷ ŔÎĹÍĆäŔĚ˝ş"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"˝Ă˝şĹŰżĄ żŔÁ÷ ÇĎłŞŔÇ źłÁ¤ľČ ł×ĆŽż÷ žî´đĹÍ°Ą ŔÖ˝Ŕ´Ď´Ů:\n"
-"\n"
-"%s\n"
-"\n"
-"ą× žî´đĹ͡ΠÁöżŞ ł×ĆŽż÷Ŕť źłÁ¤ÇŇ °ÍŔÔ´Ď´Ů."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "žî´Ŕ ł×ĆŽż÷ žî´đĹÍ°Ą ÁöżŞ ł×ĆŽż÷Ŕ¸ˇÎ żŹ°áľÉ °ÍŔÎÁö źąĹĂÇĎźźżä."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "ł×ĆŽż÷ ąâ´ÉŔĚ źłÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "ŔÚľż CUPS źłÁ¤"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "ŔÎĹÍłÝ źłÁ¤ şŻ°ć"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "CUPS ź­šö IP"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "ÇöŔç źłÁ¤ %sżĄź­ ŔáŔçŔűŔÎ ˇŁ ÁÖźŇ ĂćľšŔĚ šß°ßľË´Ď´Ů!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "šćČ­şŽ źłÁ¤ŔĚ °¨ÁöľÇžú˝Ŕ´Ď´Ů!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"°ć°í! ąâÁ¸ŔÇ šćČ­şŽ źłÁ¤ŔĚ °¨ÁöľÇžú˝Ŕ´Ď´Ů. źłÄĄ°Ą łĄł­ ČÄżĄ Á÷Á˘ źöÁ¤ÇŇ ÇĘżä"
-"°Ą ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "źłÁ¤ Áß..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "˝şĹŠ¸łĆŽ źłÁ¤ Áß, źŇÇÁĆŽżţžî źłÄĄ Áß, ź­šö ˝ĂŔŰ Áß..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "ĆŃĹ°Áö źłÄĄÁß šŽÁŚ šßťý %s"
-
-#: ../../standalone/drakgw_.c:672
-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:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "źłÁ¤Ŕş ŔĚšĚ żĎˇáľÇžúÁö¸¸, ÇöŔç ÇŘÁŚľČ ťóĹÂŔÔ´Ď´Ů."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "źłÁ¤ŔĚ ŔĚšĚ żĎˇáľÇžúŔ¸¸ç, ÇöŔç ÇăżëľČ ťóĹÂŔÔ´Ď´Ů."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "žîś°ÇŃ ŔÎĹÍłÝ żŹ°á °řŔŻľľ źłÁ¤ľČ ŔűŔĚ žř˝Ŕ´Ď´Ů."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "ŔÎĹÍłÝ żŹ°á°řŔŻ źłÁ¤"
-
-#: ../../standalone/drakgw_.c:703
-#, 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:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ł×ĆŽż÷ źłÁ¤ (%d žîľŞĹÍ)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "ÇÁˇÎĆÄŔĎ: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "ÇÁˇÎĆÄŔĎ Áöżěąâ"
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Áöżď ÇÁˇÎĆÄŔĎ"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "ťő ÇÁˇÎĆÄŔĎ..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"¸¸ľé ÇÁˇÎĆÄŔĎ Ŕ̸§ (ťő ÇÁˇÎĆÄŔĎŔş ÇöŔç ÇÁˇÎĆÄŔĎŔÇ ťçşťŔ¸ˇÎź­ ¸¸ľéžî Áý´Ď´Ů.):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "ČŁ˝şĆŽ¸í:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "ŔÎĹÍłÝ ž×źź˝ş"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "ŔŻÇü: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "°ÔŔĚĆŽżţŔĚ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "ŔÎĹÍĆäŔĚ˝ş:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "ťóĹÂ:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "ŔÎĹÍłÝ Á˘ąŮ źłÁ¤..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN źłÁ¤"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "ľĺśóŔĚšö"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "ŔÎĹÍĆäŔĚ˝ş"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "ÇÁˇÎĹäÄÝ"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "ťóĹÂ:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "ÁöżŞ ł×ĆŽż÷ źłÁ¤..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "¸śšýťç¸Ś ˝ÇÇŕÇϡÁ¸é żŠąâ¸Ś ´Š¸Łźźżä. ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "¸śšýťç..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Ŕűżë"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "ąâ´ŮˇÁ ÁÖźźżä... źłÁ¤Ŕť ŔűżëÇĎ°í ŔÖ˝Ŕ´Ď´Ů."
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "żŹ°áľĘ"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "żŹ°á žČľĘ"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "żŹ°á..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "żŹ°á ˛÷ąâ..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"źłÁ¤ľČ ŔÎĹÍĆäŔĚ˝ş°Ą žř˝Ŕ´Ď´Ů.\n"
-"Ą¸źłÁ¤ĄšŔť ´­ˇŻ ŔÎĹÍĆäŔĚ˝ş¸Ś ¸ŐŔú źłÁ¤ÇĎźźżä."
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN źłÁ¤"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "žî´đĹÍ %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "şÎĆŽ ÇÁˇÎĹäÄÝ"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "şÎĆýà ˝ĂŔŰľĘ"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP ĹŹśóŔĚžđĆŽ"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "ÁöąÝ Č°źşČ­"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "ÁöąÝ şńČ°źşČ­"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"ŔÎĹÍłÝ żŹ°áŔĚ žř˝Ŕ´Ď´Ů.\n"
-"Ą¸źłÁ¤ĄšŔť ´­ˇŻ ¸ŐŔú żŹ°áŔť źłÁ¤ÇĎźźżä."
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "ŔÎĹÍłÝ żŹ°á źłÁ¤"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "ŔÎĹÍłÝ żŹ°á źłÁ¤"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "żŹ°á ŔŻÇü: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "ŔÎŔÚ"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "°ÔŔĚĆŽżţŔĚ"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "ŔĚ´őłÝ ÄŤľĺ"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP ĹŹśóŔĚžđĆŽ"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "ş¸žČ źöÁŘ źłÁ¤"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "ÄÁĆŽˇŃ źžĹÍ"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "ťçżëÇŇ ľľą¸¸Ś źąĹĂÇĎźźżä."
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "ÄłłŞ´Ů (Äůş¤)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "žĆŔĚ˝˝ˇŁľĺ"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "˝Ă¸Žžó ¸śżě˝ş"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "ťçżëšý: keyboarddrake [--expert] [Ĺ°ş¸ľĺ]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Ĺ°ş¸ľĺ ˇšŔ̞ƿô źąĹĂ"
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "ÄÜźÖżĄź­ šé˝şĆäŔĚ˝ş Ĺ°°Ą Áöżěąâ¸Ś ÇĎľľˇĎ ÇϽðڽŔ´Ďąî?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "CDROM šŮ˛Ůąâ"
-
-#: ../../standalone/livedrake_.c:25
-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"
-"CD-ROMŔĚ žř´Ů¸é, Ą¸ĂëźŇĄš¸Ś śóŔĚşę ž÷ą×ˇšŔ̾希 ĂëźŇÇĎźźżä."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "śóŔĚşę ž÷ą×ˇšŔ̾希 ˝ĂŔŰÇŇ źö žř˝Ŕ´Ď´Ů!!! \n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "ˇÎą×ľĺˇšŔĚĹŠ"
-
-#: ../../standalone/logdrake_.c:95
-#, fuzzy
-msgid "Show only for the selected day"
-msgstr "żŔ´Ă łŻÂĽżĄ ´ëÇظ¸ ş¸ŔĚąâ"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/ĆÄŔĎ(F)/ťőˇÎ ¸¸ľéąâ(_N)"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/ĆÄŔĎ(F)/ż­ąâ(_O)"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/ĆÄŔĎ(F)/ŔúŔĺ(_S)"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/ĆÄŔĎ(F)/ťő Ŕ̸§Ŕ¸ˇÎ ŔúŔĺ(_A)"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/ĆÄŔĎ(F)/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/żÉźÇ(_O)"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/żÉźÇ(O)/Ĺ×˝şĆŽ"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/ľľżň¸ť(_H)"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/ľľżň¸ť(H)/ŔĚ ÇÁˇÎą×ˇĽŔş(_A)..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-"-misc-fixed-medium-r-*-*-*-120-75-75-*-*-iso8859-1,-*-gulim-medium-r-normal--"
-"*-120-75-75-c-*-ksc5601.1987-0,*-r-*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-"-misc-fixed-bold-r-*-*-*-120-75-75-*-*-iso8859-1,-*-gulim-bold-r-normal--*-"
-"120-75-75-c-*-ksc5601.1987-0,*-r-*"
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "ťçżëŔÚ¸í"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "¸Ţ˝ĂÁö"
-
-#: ../../standalone/logdrake_.c:175
-#, fuzzy
-msgid "Syslog"
-msgstr "˝Ă˝şĹŰ ˇÎą×"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "°Ëťö"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "ˇÎą× şĐźŽ ľľą¸"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "źłÁ¤°Ş"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "ĂŁŔť šŽŔÚż­"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "ÁŚżÜÇŇ šŽŔÚż­"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "ĆÄŔĎ źąĹĂ"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "´ŢˇÂ"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "ĆÄŔĎ łťżë"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "ąâ´ŮˇÁ ÁÖźźżä. ĆÄŔĎ şĐźŽ Áß: %s"
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "ŔÎĹÍłÝ źłÁ¤"
-
-#: ../../standalone/logdrake_.c:406
-#, fuzzy
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"ÇÁśô˝Ă źłÁ¤ ľľą¸żĄ Ŕß żŔźĚ˝Ŕ´Ď´Ů.\n"
-"\n"
-"żŠąâź­ ˇÎą×Ŕΰú şńšĐšřČŁ¸Ś ÇĘżä śÇ´Â ÇĘżäˇÎÇĎÁö žĘ´Â\n"
-"HTTPżÍ FTP ÇÁśô˝Ă¸Ś źłÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-
-# ../../share/compssUsers
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "žĆĆÄÄĄżÍ ÇÁˇÎFTPD"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Ážˇá"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "ź­şń˝ş"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "Ć÷¸Ë Áß"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "ŔÎĹÍłÝ źłÁ¤"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "ťő Ŕ̸§Ŕ¸ˇÎ ŔúŔĺ"
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "žîś˛ ÁžˇůŔÇ ¸śżě˝ş¸Ś ťçżëÇϽʴϹî?"
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "šß°ßľČ ˝Ă¸Žžó_USB°Ą žř˝Ŕ´Ď´Ů.\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "3šöĆ° żĄšÄˇšŔĚĆŽ?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "ą×ˇĄÇČ ÄŤľĺ źąĹĂ"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "şÎĆŽ ŔĺÄĄ"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "šćČ­şŽ źłÁ¤"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "šćČ­şŽ źłÁ¤"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"šćČ­şŽ\n"
-"\n"
-"šćČ­şŽŔş ŔĚšĚ źłÁ¤ľÇžî ŔÖ˝Ŕ´Ď´Ů.\n"
-"šćČ­şŽŔť şŻ°ć śÇ´Â ÁŚ°ĹÇϡÁ¸é, Ą¸źłÁ¤ĄšŔť ´Š¸Łźźżä."
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"šćČ­şŽ\n"
-"\n"
-"ÇĽÁŘ šćČ­şŽŔť źłÁ¤ÇϡÁ¸é, Ą¸źłÁ¤ĄšŔť ´Š¸Łźźżä."
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "žđžî źąĹĂ"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "źłÄĄ ĹŹˇĄ˝ş źąĹĂ"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "ÇĎľĺ ľđ˝şĹŠ źąĹĂ"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "¸śżě˝ş źłÁ¤"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Ĺ°ş¸ľĺ źąĹĂ"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "ş¸žČ"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "ĆÄŔϽýşĹŰ ÁŘşń"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "ĆÄĆźźÇ Ć÷¸Ë"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "źłÄĄ ĆŃĹ°Áö źąĹĂ"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "˝Ă˝şĹŰ źłÄĄ"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "ťçżëŔÚ Ăß°Ą"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "ł×ĆŽż÷ źłÁ¤"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "ź­şń˝ş źłÁ¤"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "şÎĆŽˇÎ´ő źłÄĄ"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "şÎĆŽľđ˝şĹŠ ÁŚŔŰ"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "X źłÁ¤"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "˝Ă˝şĹŰ źłÄĄ"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "źłÄĄ Ážˇá"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"TinyFirewall źłÁ¤\n"
-"\n"
-"ŔĚ°ÍŔş ¸Ž´Ş˝ş ¸ÇľĺˇšŔĚĹŠ ˝Ă˝şĹŰŔÇ °łŔÎ šćČ­şŽŔť źłÁ¤ÇŐ´Ď´Ů.\n"
-"°­ˇÂÇŃ ŔüšŽ šćČ­şŽŔť ťçżëÇĎ°í ˝Í´Ů¸é, ¸ÇľĺˇšŔĚĹŠ ş¸žČ šćČ­şŽ\n"
-"ščĆ÷ĆÇŔť ą¸ÇϽù⠚ٜř´Ď´Ů."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"ŔĚÁŚ ŔÎĹÍłÝŔ¸ˇÎşÎĹÍ Á˘źÓÇŇ źö ŔÖ´Â ź­şń˝şżĄ °üÇŃ ÁúšŽŔť ÇŇ °ÍŔÔ´Ď´Ů.\n"
-"ÄÄÇťĹÍŔÇ ş¸žČťó ÁßżäÇϚǡΠ°˘ ÁúšŽżĄ ÁÖŔÇÇŘź­ ŔŔÇϽù⠚ٜř´Ď´Ů.\n"
-"\n"
-"ź­şń˝ş ÁßżĄ ťçżëÇĎÁö žĘ´Â °ÍŔĚ Ŕִٸé, šćČ­şŽŔ¸ˇÎ ¸ˇ˝Ŕ´Ď´Ů.\n"
-"ŔĚ źłÁ¤Ŕş žđÁŚśóľľ ŔĚ ÇÁˇÎą×ˇĽŔť ´Ů˝Ă ˝ÇÇŕÇÔŔ¸ˇÎ˝á \n"
-"şŻ°ćÇŇ źö ŔÖ˝Ŕ´Ď´Ů!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"ŔÎĹ׳ÝŔÇ žîľđź­śóľľ Á˘źÓÇŇ źö ŔÖ´Â ŔĽź­šö¸Ś żîżëÇŐ´Ďąî?\n"
-"¸¸žŕ żŔÁ÷ ŔĚ ÄÄÇťĹÍżĄź­¸¸ Á˘źÓÇŇ źö ŔÖ´Â ŔĽź­šö¸Ś żîżëÇѴٸé,\n"
-"žČŔüÇĎ°Ô Ą¸žĆ´ĎżŔĄš¸Ś ´Š¸Łźźżä.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"ł×ŔÓ ź­šö¸Ś żîżëÇŐ´Ďąî?\n"
-"¸¸žŕ IPżÍ ÁöżŞ Á¤ş¸¸Ś ŔüĂź ŔÎĹÍłÝŔ¸ˇÎ ş¸łťľľˇĎ źłÁ¤ÇĎÁö žĘžŇ´Ů¸é,\n"
-"Ą¸žĆ´ĎżŔĄš¸Ś ´Š¸Łźźżä.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"ş¸žČ ˝Š(SSH) Á˘źÓŔť ÇăżëÇϽðڽŔ´Ďąî?\n"
-"ŔĚ°ÍŔş żÜşÎżĄź­ ˇÎą×ŔÎÇĎąâŔ§ÇŘ ťçżëľÇ´Â ĹÚłÝ ´ëżë ÇÁˇÎą×ˇĽ\n"
-"ŔÔ´Ď´Ů. žĆÁ÷ľľ ĹÚłÝŔť ťçżëÇĎ°í Ŕִٸé, SSHˇÎ šŮ˛Ůźźżä.\n"
-"ĹÚłÝŔş žĎČŁČ­°Ą ľÇžî ŔÖÁö žĘąâ ś§šŽżĄ, ´ÔŔĚ ĹÚłÝŔť ťçżëÇŇ ś§,\n"
-"żÜşÎ °ř°ÝŔÚ°Ą žĎČŁ¸Ś ČÉÄĽ źö ŔÖ˝Ŕ´Ď´Ů. SSH´Â žĎČŁČ­¸Ś ťçżëÇĎąâ\n"
-"ś§šŽżĄ Ŕ̡ą ľľĂťŔ¸ˇÎşÎĹÍ žČŔüÇŐ´Ď´Ů."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"żÜşÎ ĹÚłÝ Á˘źÓŔť ÇăżëÇϽðڽŔ´Ďąî?\n"
-"ŔĚŔü Č­¸éżĄź­ źł¸íÇßľíŔĚ, ŔĚ°ÍŔş Á¤¸ť Ŕ§ÇčÇŃ °ÍŔÔ´Ď´Ů.\n"
-"Ą¸žĆ´ĎżŔĄš¸Ś ´Š¸Ł°í SSH¸Ś ťçżëÇŇ °ÍŔť °­ˇÂČ÷\n"
-"ąÇŔĺÇŐ´Ď´Ů.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"ŔÎĹͳݿĄź­ Á˘źÓÇŇ źö ŔÖ´Â FTP ź­šö¸Ś żîżëÇŐ´Ďąî?\n"
-"¸¸žŕ ą×ˇŻÇϴٸé, Ŕ͸í Á˘źÓ¸¸Ŕť ÇăżëÇŇ °ÍŔť °­ˇÂČ÷\n"
-"ąÇŔĺÇŐ´Ď´Ů. FTPľľ śÇÇŃ žĎČŁČ­¸Ś ťçżëÇĎÁö žĘąâ ś§šŽżĄ\n"
-"FTPˇÎ ŔüźŰľÇ´Â žîś°ÇŃ žĎČŁľľ °ř°ÝŔÚżĄ°Ô łëĂâľÉ źö ŔÖ˝Ŕ´Ď´Ů.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"¸ŢŔĎ ź­šö¸Ś żîżëÇŐ´Ďąî?\n"
-"¸¸žŕ pine, mutt śÇ´Â ą× żÜŔÇ ĹŘ˝şĆŽ ąâšÝ ¸ŢŔĎ ÇÁˇÎą×ˇĽŔť ťçżëÇѴٸé, \n"
-"ÇĘżäÇŐ´Ď´Ů. ą×ˇ¸Áö žĘ´Ů¸é šćČ­şŽŔ¸ˇÎ ¸ˇŔ¸źźżä.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"POP śÇ´Â IMAP ź­šö¸Ś żîżëÇŐ´Ďąî?\n"
-"ŔĚ°ÍŔş ťçżëŔھ鿥°Ô ŔĽ ąâšÝŔĚ žĆ´Ń šćšýŔ¸ˇÎ ¸ŢŔĎ °čÁ¤Ŕť \n"
-"ź­şń˝şÇŇ ś§ ťçżëľË´Ď´Ů.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"2.2 ÄżłÎŔť ťçżëÇĎ°í ŔÖ´Â ľí ÇŐ´Ď´Ů. ł×ĆŽż÷ IP°Ą Áý śÇ´Â ťçšŤ˝Ç\n"
-"ľîŔÇ ´Ů¸Ľ ÄÄÇťłĘżĄ ŔÇÇŘ ŔÚľż ÇŇ´çľČ´Ů¸é(ŔŻľż IP),\n"
-"ŔĚ°ÍŔĚ ÇĘżäÇŐ´Ď´Ů.\n"
-"ŔĚżÍ °°Ŕş ČŻ°ćżĄ ŔÖ˝Ŕ´Ďąî?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"ŔĚ ÄÄÇťĹÍŔÇ ˝Ă°ŁŔĚ ´Ů¸Ľ ÄÄÇťĹÍżĄ ŔÇÇŘ ľżąâČ­ ľË´Ďąî?\n"
-"´ë°ł ŔĚ°ÍŔş ÁßąŢ ŔŻ´Đ˝ş/¸Ž´Ş˝ş Áý´ÜżĄź­ ˇÎą× ąâˇĎ śÇ´Â\n"
-"ą× żÜŔÇ żëľľˇÎ¸Ś Ŕ§ÇŘ ťçżëľË´Ď´Ů. ŔĚ ÄÄÇťĹÍ°Ą ´ëąÔ¸đ\n"
-"ťçšŤ˝Ç ł×ĆŽż÷żĄ ÂüżŠÇĎ°í ŔÖÁö žĘ°ĹłŞ, ŔĚ°ÍżĄ ´ëÇŘ ĂłŔ˝\n"
-" ľéžî şť´Ů¸é, žĆ¸ś ÇĘżäÇĎÁö žĘŔť °ÍŔÔ´Ď´Ů."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"źłÁ¤ żĎˇá. şŻ°ć ťçÇ×Ŕť ľđ˝şĹŠżĄ ŔúŔĺÇŇąîżä?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "%s¸Ś ż­ źö žř˝Ŕ´Ď´Ů: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "%s¸Ś ž˛ąâ ¸đľĺˇÎ ż­ źö žř˝Ŕ´Ď´Ů: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "šćČ­şŽ źłÁ¤"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "źłÄĄ ÁŘşńÁßŔÔ´Ď´Ů. Ŕá˝Ă ąâ´Ů¸Žźźżä."
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "ŔĽ/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "ł×ĆŽż÷ ÄÄÇťĹÍ (ĹŹśóŔĚžđĆŽ)"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS ź­šö, ťďšŮ ź­šö, ÇÁśô˝Ă ź­šö, SSH ź­šö"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "żŔÇÇ˝ş"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "GNOME żöĹŠ˝şĹ×ŔĚźÇ"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Palm pilot śÇ´Â Visorżë ľľą¸ľé"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "żöĹŠ˝şĹ×ŔĚźÇ"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "šćČ­şŽ/śóżěĹÍ"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "ľľ¸ŢŔÎ ł×ŔÓ š× ł×ĆŽż÷ Á¤ş¸ ź­šö"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"żŔÇÇ˝ş ÇÁˇÎą×ˇĽľé: żöľĺÇÁˇÎźźź­ (kword, abiword), ˝şÇÁˇšľĺ˝ŹĆŽ (kspread,"
-"gnumeric), pdf şäžî, ľîľî"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "żŔľđżŔ °üˇĂ ľľą¸; mp3/midi ÇášŔĚžî, šÍź­, ľîľî"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "¸Ž´Ş˝ş š× ŔÚŔŻ źŇÇÁĆŽżţžîżĄ ´ëÇŃ ź­Ŕű°ú HowtošŽź­"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE żöĹŠ˝şĹ×ŔĚźÇ"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, ŔŠľľżě ¸ŢŔĚÄż, ŔÎśóŔĚĆ°¸ŐĆŽ, Fvwm, ľîľî"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "¸ÖĆźšĚľđžî - şńľđżŔ"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "¸ŢŔĎ, ´ş˝ş, ŔĽ, ĆÄŔĎŔüźŰ, äĆĂżë ľľą¸¸đŔ˝"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "ľĽŔĚĹÍşŁŔĚ˝ş"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL śÇ´Â MySQL ľĽŔĚĹÍşŁŔĚ˝ş ź­šö"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "˝Źżî ÄÄÇťĹÍ źłÁ¤Ŕť Ŕ§ÇŃ ľľą¸"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "¸ÖĆźšĚľđžî - ťçżîľĺ"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "ŔŻĆżˇŻĆź"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "šŽź­"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "ÄÜźÖ ľľą¸"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "postfix ¸ŢŔĎ ź­šö, Inn ´ş˝ş ź­šö"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "ŔÎĹÍłÝ ˝şĹ×ŔĚźÇ"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "¸ÖĆźšĚľđžî ˝şĹ×ŔĚźÇ"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "źłÁ¤"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Ăß°Ą ą×ˇĄÇČ ľĽ˝şĹŠĹž (Gnome, IceWM)"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr "K Desktop ČŻ°ć, żŠˇŻ°ĄÁö ľľą¸¸Ś źöšÝÇŃ ąâşť ą×ˇĄÇČ ČŻ°ć"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "ą×ˇĄÇČ ČŻ°ć"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "žĆĆÄÄĄżÍ ÇÁˇÎFTPD"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "CD ÁŚŔŰ š× ąÁąâ ľľą¸"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "żŔÇÇ˝ş żöĹŠ˝şĹ×ŔĚźÇ"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "ź­šö"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "ą×łđ, Icewm, ŔŠľľżě ¸ŢŔĚÄż, ŔÎśóŔĚĆ°¸ŐĆŽ, Fvwm, ľîľî"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "GIMP °°Ŕş ą×ˇĄÇČ ÇÁˇÎą×ˇĽ"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C/C++ °łšß śóŔ̺ꡯ¸Ž, ÇÁˇÎą×ˇĽ š× Çě´őĆÄŔĎ"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "ł×ĆŽż÷ ÄÄÇťĹÍ ź­šö"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "¸ŢŔĎ/ą×ˇěżţžî/´ş˝ş"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "°ÔŔÓ ˝şĹ×ŔĚźÇ"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "şńľđżŔ ÇášŔĚžî š× żĄľđĹÍ"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "¸ÖĆźšĚľđžî - ą×ˇĄÇČ"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Ŕĺł­°¨ ÇÁˇÎą×ˇĽ: arcade, boards, strategy, ľîľî"
-
-# ../../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 "Archiving, emulators, monitoring"
-msgstr "žĆÄŤŔĚşů, żĄšÄˇšŔĚĹÍ, ¸đ´ĎĹ͸ľ"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "°łŔÎ ąÝŔś"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr "ťçżëŔÚ ÄŁČ­Ŕű ÇÁˇÎą×ˇĽ°ú ľĽ˝şĹŠĹž ľľą¸¸Ś °ĄÁř ą×ˇĄÇČ ČŻ°ć"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "SSH š× ´Ů¸Ľ ÇÁˇÎĹäÄÝŔÇ ĹŹśóŔĚžđĆŽ"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "ŔÎĹÍłÝ °ÔŔĚĆŽżţŔĚ"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "ťçżîľĺ š× şńľđżŔ żŹÁÖ/ĆíÁý ÇÁˇÎą×ˇĽ"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "ąâŸ ą×ˇĄÇČ ľĽ˝şĹŠĹž"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "żĄľđĹÍ, ˝Š, ĆÄŔĎľľą¸, Ĺ͚̳Î"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "gnucash °°Ŕş Ŕڹݰü¸Ž ÇÁˇÎą×ˇĽ"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "°łŔÎ Á¤ş¸°ü¸Ž"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "¸ÖĆźšĚľđžî - CD ąÁąâ"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "°úÇĐ żöĹŠ˝şĹ×ŔĚźÇ"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "ÁßÁö"
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr ""
-#~ "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,-*-gulim-bold-r-"
-#~ "normal--16-*-*-*-c-*-ksc5601.1987-0,*-r-*"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr "ÄżłÎ°ú ŔĎÄĄÇĎ´Â ¸đľâżĄ Á˘ąŮÇŇ źö žř˝Ŕ´Ď´Ů.(ĆÄŔĎ %s°Ą žř˝ż)"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "žř˝ż"
-
-#~ msgid "Choose a default printer!"
-#~ msgstr "ąâşť ÇÁ¸°Ĺ͸Ś źąĹĂÇĎźźżä!"
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Ŕűżë/ÇÁ¸°ĹÍ ´Ů˝ĂŔĐąâ"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "ŔĚÁŚ %s ľĺśóŔĚšöżĄ żÉźÇŔť ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-
-#~ msgid "Low"
-#~ msgstr "łˇŔ˝"
-
-#~ msgid "Medium"
-#~ msgstr "ş¸Ĺë"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "ŔĚ ľîąŢŔş ş¸žČťóŔÇ °łźąťçÇ×ŔĚ ş°ˇÎ žř˝Ŕ´Ď´Ů. ¸šŔş ş¸žČ °ć°íżÍ ÁĄ°ËŔĚ\n"
-#~ "łŞĹ¸łł´Ď´Ů."
-
-#~ msgid "mount failed"
-#~ msgstr "¸śżîĆŽ ˝ÇĆĐ"
-
-#~ msgid "Boot mode"
-#~ msgstr "şÎĆŽ ¸đľĺ"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "ŔüšŽ°Ą"
-
-#, fuzzy
-#~ msgid ""
-#~ "To know about the options available for the current printer read either "
-#~ "the list shown below or click on the \"Print option list\" button. %s\n"
-#~ "\n"
-#~ msgstr ""
-#~ "ÇöŔç ÇÁ¸°ĹÍżĄ ťçżëÇŇ źö ŔÖ´Â żÉźÇ ¸ńˇĎŔť ş¸ˇÁ¸é, Ą¸ŔÎźâ żÉźÇ ¸ńˇĎĄšŔť ´Š¸Ł"
-#~ "źźżä.\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/¸Ž´Ş˝ş´Â ˝Ă°ŁŔť GMT(ą×¸Ž´ĎÄĄ °ü¸Ž ˝Ă°Ł)ˇÎ °ü¸ŽÇϸ韭, źąĹĂľČ ˝Ă°Ł´ë"
-#~ "żĄ\n"
-#~ "ľűśó šřżŞÇĎżŠ ÇĽÇöÇŐ´Ď´Ů."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "ŔÎĹͳݿĄ żŹ°á"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "ŔÎĹÍłÝ żŹ°á ˛÷ąâ"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "ł×ĆŽż÷ żŹ°á źłÁ¤ (LAN śÇ´Â ŔÎĹÍłÝ)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "žîś˛ ľđ˝şĹŠ¸Ś ŔĚľżÇĎ°í ˝ÍŔ¸˝Ę´Ďąî?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "źłÄĄÇŇ ĆŃĹ°Áö źąĹĂ"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Á¤ş¸"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "GNOME żöĹŠ˝şĹ×ŔĚźÇ"
-
-#~ msgid "authentification"
-#~ msgstr "ŔÎÁő"
-
-#~ msgid "user"
-#~ msgstr "ťçżëŔÚ"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "žîś˛ ÁžˇůŔÇ ¸śżě˝ş¸Ś ťçżëÇϽʴϹî?"
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "ŔŻČżÇŃ NFS °řŔŻŔÚżř °Ëťö Áß"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "ź­šö %sťóŔÇ ŔŻČżÇŃ NFS °řŔŻŔÚżř °Ëťö Áß"
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "ŔŻČżÇŃ ťďšŮ °řŔŻŔÚżř °Ëťö Áß"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "ź­šö %sťóŔÇ ŔŻČżÇŃ ťďšŮ °řŔŻŔÚżř °Ëťö Áß"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Ážˇá"
-
-#~ msgid "Removable media"
-#~ msgstr "ĹťÂř˝Ä šĚľđžî"
-
-#~ msgid "Active"
-#~ msgstr "Č°źşČ­"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "žĆ´ĎżŔ"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "ÇÁ¸°ĹÍ, ¸đľ¨ \"%s\", šß°ß"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "ÁöżŞ ÇÁ¸°ĹÍ ŔĺÄĄ"
-
-#~ msgid "Printer Device"
-#~ msgstr "ÇÁ¸°ĹÍ ŔĺÄĄ"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "ŔĺÄĄ/ĆÄŔĎ Ŕ̸§Ŕť ĂŁŔť źö žřŔ˝!"
-
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "żř°Ý CUPS ź­šöŔÇ ÇÁ¸°ĹÍ"
-
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "żř°Ý ź­šöŔÇ ÇÁ¸°ĹÍ"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "¸Ž´Ş˝ş"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "˝Ă˝şĹŰ"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "ąâŸ"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Ĺ°ş¸ľĺ ˇšŔ̞ƿô źąĹĂ"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "¸ĹĂź¸Ś ĹŹ¸ŻÇĎźźżä."
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "ŔŻÇü: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Ŕ߸řľČ šéž÷ ĆÄŔĎ"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "X źłÁ¤"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "ÇÁ¸°ĹÍ ŔĺÄĄ"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "ĂëźŇ"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "ČŽŔÎ"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "´Ýąâ"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "żŹ°á Áß..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "żŹ°á ˛÷´Â Áß..."
-
-#~ 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"
-#~ "Ŕť ˝ÇÇŕÇĎźźżä."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "ŔĚÁŚ ˝Ă˝şĹŰŔÇ żŹ°áŔĚ ˛÷žîÁř ťóĹÂŔÔ´Ď´Ů."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "źłÄĄÇŇ ĆŃĹ°ÁöľéŔÇ ĂŃ żëˇŽ źąĹĂ"
-
-#~ msgid "Total size: "
-#~ msgstr "ŔüĂź ĹŠąâ: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Ŕá˝Ă¸¸ ąâ´Ů¸Žźźżä, "
-
-#~ msgid "Total time "
-#~ msgstr "ŔüĂź ˝Ă°Ł "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "ŔĚšĚ ŔÖ´Â X11 źłÁ¤Ŕť ťçżëÇϽðڽŔ´Ďąî?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "žî´Ŕ ŔĺÄĄżĄ ÇÁ¸°ĹÍ°Ą żŹ°áľÇžî ŔÖ˝Ŕ´Ďąî? \n"
-#~ "(ÁÖŔÇ: Ą¸/dev/lp0Ąš´Â Ą¸LPT1ĄšżĄ ÇŘ´çÇŐ´Ď´Ů.)\n"
-
-#~ msgid "%s"
-#~ msgstr "%s"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr "°ć°í: ŔĚšĚ źłÁ¤ľČ ł×ĆŽż÷ Á֟ҰĄ ŔÖ˝Ŕ´Ď´Ů. ´Ů˝Ă źłÁ¤ÇŇ °ÍŔÔ´Ď´Ů."
-
-#~ msgid "New"
-#~ msgstr "ťőˇÎ ¸¸ľéąâ"
-
-#~ msgid "Remote"
-#~ msgstr "żř°Ý"
-
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr ""
-#~ "Ŕ§ŔÇ šöĆ° Áß ÇĎłŞ¸Ś ´Š¸Ł°ĹłŞ,\n"
-#~ "\n"
-#~ "Ą¸ťőˇÎ ¸¸ľéąâĄš¸Ś ŔĚżëÇĎźźżä."
-
-#~ msgid "Use \"New\""
-#~ msgstr "Ą¸ťőˇÎ ¸¸ľéąâĄšťçżë"
-
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr "¸¸žŕ Ŕ§żĄź­ żřÇĎ´Â Ç׸ńŔť ĂŁŔť źö žř´Ů¸é, żŠąâżĄ ŔÔˇÂÇĎźźżä:"
-
-#~ msgid "Shared resource"
-#~ msgstr "°řŔŻľČ ŔÚżř"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "žÖ¸ĹÇŃ ÇĽÇö(%s), ş¸´Ů ŔÚźźČ÷ ąâŔÔÇŘ ÁÖźźżä.\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (ąâşť°Ş %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "´ÔŔÇ źąĹĂŔş? (ąâşť°ŞŔş %s, žř´Ů¸éĄ¸noneĄšŔÔˇÂ) "
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
deleted file mode 100644
index f68be5356..000000000
--- a/perl-install/share/po/lt.po
+++ /dev/null
@@ -1,13994 +0,0 @@
-# Lithuanian transaltion of DrakX
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Kćstutis Kruţikas <DrKestas@takas.lt>, 1999
-# Mykolas Norvaiđas <Myka@centras.lt>, 1999-2001
-# Gediminas Paulauskas <menesis@delfi.lt>, 2000
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX \n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-03-04 23:55+0200\n"
-"Last-Translator: Mykolas Norvaiđas <Myka@centras.lt>\n"
-"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-13\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:243
-#, fuzzy
-msgid "Use Xinerama extension"
-msgstr "Naudokite automatiná aptikimŕ"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:249
-#, fuzzy
-msgid "Multi-head configuration"
-msgstr "skaitomi nustatymai"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Vaizdo plokđtë"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Pasirink vaizdo plokđtć"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Pasirink X serverá"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X serveris"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Pasirink X serverá"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X serveris"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Kuriŕ XFree konfigűracijŕ tu nori turëti?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Tavo plokđtë palaiko 3D árenginio akseleracijŕ, bet tik su XFree %s.\n"
-"Tavo plokđtë dirba su XFree %s, kuris galbűt geriau palaiko 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Tavo plokđtë palaiko 3D akseleracijŕ su XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s su 3D árenginio akseleracija"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Jűsř korta palaiko 3D akseleracija su XFree %s.ATMINKITE, KAD TAI YRA "
-"EKSPERIMENTINIS PALIKYMAS IR GALI PAKABINTI KOMPIUTERÁ."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s su EKSPERIMENTINE 3D árenginio akseleracija"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Jűsř korta palaiko 3D árenginio akseleracija tik su XFree %s,\n"
-"ATMINKITE, KAD TAI YRA EKSPERIMENTINIS PALIKYMAS IR GALI PAKABINTI "
-"KOMPIUTERÁ.\n"
-"Jűsř korta dirba su XFree %s kuris galbűt geriau palaiko 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfigűravimas"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Pasirink savo vaizdo plokđtës atminties dydá"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Pasirink serverio nuostatas"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Pasirink monitoriř"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitorius"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Du svarbiausi dydţiai yra vertikalaus atnaujinimo daţnis, kuris rodo,\n"
-"kaip daţnai perpieđiamas visas ekranas, ir horizontaliosios skleistinës "
-"daţnis, kuris parodo, kaip greit perpieđiamos eilutës.\n"
-"\n"
-"Tai LABAI SVARBU, kad nenurodytum skleistinës daţnio, didesnio\n"
-"uţ palaikomŕ monitoriaus, nes gali já sugadinti. Jeigu abejoji,\n"
-"pasirink konservatyviŕ nuostatŕ."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Horizontalaus atnaujinimo daţnis"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Vertikalaus atnaujinimo daţnis"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitorius nenurodytas"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Vaizdo plokđtë dar nenurodyta"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Dar nepasirinkta skiriamoji geba"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Ar tu nori iđbandyti nustatymus?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Perspëjimas: đios plokđtës bandymas gali pakabinti kompiuterá"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Nustatymř tikrinimas"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"pabandyk pakeisti kai kuriuos parametrus"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ávyko klaida:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Baigiu per %d sekundţiř (-es)"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ar toks nustatymas tave tenkina?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ávyko klaida, bandyk pakeisti kai kuriuos parametrus"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Skiriamoji geba"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Pasirink skiriamŕjŕ gebŕ ir spalvř gylá"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Vaizdo plokđtë: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 serveris: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Dar"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Gerai"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Eksperto Reţimas"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Rodyti viskŕ"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Skiriamosios gebos"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Klaviatűros iđdëstymas: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Pelës tipas: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Pelës árenginys: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitorius: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitoriaus horiz. skleistinë: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitoriaus vert. skleistinë: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Vaizdo plokđtë: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Vaizdo plokđtë: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Vaizdo atmintis: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Spalvř gylis: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Skiriamoji geba: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 serveris: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 tvarkyklë: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Ruođiami X-Window nustatymai"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Kŕ tu nori daryti?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Pakeisti monitoriř"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Pakeisti vaizdo plokđtć"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Pakeisti serverio nustatymus"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Pakeisti skiriamŕjŕ gebŕ"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Rodyti informacijŕ"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Patikrinti vël"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Iđeiti"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Iđlaikyti pakeitimus?\n"
-"Esama konfigűracija yra:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X paleidţiant"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Tu gali nustatyti, kad X startuotř automatiđkai.\n"
-"Ar tu nori, kad X startuotř po kompiuterio perkrovimo?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Prađom iđ naujo paleisti %s, kad pakeitimai bűtř aktyvuoti"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Prađom atsisveikinti ir paskui paspausti Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 spalvos (8 bitai)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tűkst. spalvř (15 bitř)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tűkst. spalvř (16 bitř)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milijonai spalvř (24 bitai)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milijardai spalvř (32 bitai)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB ar daugiau"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standartinis VGA 640x480 prie 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA 800x600 prie 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Suderinamas su 8514, 1024x768 prie 87 Hz interlaced (nëra 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 prie 87 Hz interlaced, 800x600 prie 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Iđplëstas Super VGA, 800x600 prie 60 Hz, 640x480 prie 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 prie 60 Hz, 800x600 prie 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Aukđto daţnio SVGA, 1024x768 prie 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Daugiadaţnis, galintis 1280x1024 prie 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Daugiadaţnis, galintis 1280x1024 prie 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Daugiadaţnis, galintis 1280 prie 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitorius, galintis 1600x1200 prie 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitorius, galintis 1600x1200 prie 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Pirmasis ákrovos skirsnio sektorius"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Pirmasis kaupiklio sektorius (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO Ádiegimas"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Kur nori ádiegti ákrovos tvarkyklć?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/GRUB ádiegimas"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO su tekstiniu meniu"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO su grafiniu meniu"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Ákrova su DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Ákrovos tvarkyklës pagrindinës parinktys"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Naudojama ákrovos tvarkyklë"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Ákrovos tvarkyklës ádiegimas"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Ákrovos árenginys"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (nedirba su senais BIOS'ais)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Kompaktiđkas"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "kompaktiđkas"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Vaizdo reţimas"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Palaukti prieđ ákraunant áprastŕ atvaizdŕ"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Slaptaţodis"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Slaptaţodis (vël)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Grieţtos komandinës eilutës parinktys"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "grieţta"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Iđvalyti /tmp kiekvienŕ kartŕ ákrovus"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Tikslus RAM atminties dydis (rasta %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Leisti keletŕ profiliř"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Nurodyk RAM atminties dydá (MB)"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Parinktis ĽGrieţtos komandinës eilutës parinktys´ yra nenaudingŕ be "
-"slaptaţodţio"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Prađom bandyti vël"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Slaptaţodţiai nesutampa"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr ""
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr ""
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr ""
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:206
-#, fuzzy
-msgid "Default OS?"
-msgstr "Áprastas"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Čia yra skirtingi árađai.\n"
-"Tu gali pakeisti esamus arba prijungti naujus."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Pridëti"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Atlikta"
-
-#: ../../any.pm_.c:265
-#, fuzzy
-msgid "Modify"
-msgstr "Taisyti RAID"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Kokio tipo árađŕ tu nori pridëti?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Kitos OS (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Kitos OS (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Kitos OS (Windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Atvaizdas"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Đakninis"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Pridurti"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Skaitymui-rađymui"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Lentelë"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Nesaugus"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Ţymë"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Áprastas"
-
-#: ../../any.pm_.c:326
-#, fuzzy
-msgid "Initrd-size"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr ""
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Iđmesti árađŕ"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Tuđčia ţymë neleidţiama"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Tu privalai turëti swap skirsná"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Đi ţymë jau naudojama"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Rasti %s %s interfeisai"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Ar turi dar vienŕ?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Ar tu turi koká nors %s interfeisŕ?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Ne"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Taip"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Paţiűrëk árangos informacijŕ"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Ádiegiama tvarkyklë %s plokđtei %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modulis %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Kokiŕ %s tvarkyklć turëčiau iđbandyti?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Kartais %s tvarkyklei reikia papildomos informacijos, kad dirbtř gerai,\n"
-"nors normaliai turi veikti ir be jos. Ar tu nori jai nurodyti papildomas\n"
-"parinktis, ar leisi pabandyti nusistatyti pačiai. Bandymas gali\n"
-"pakabinti kompiuterá, bet tai neturëtř padaryti ţalos."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Automatinis bandymas"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Nurodyti parinktis"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Dabar tu gali nustatyti %s modulio nustatymus.\n"
-"Opcijř formatas yra toks : ''vardas=reikđmë vardas2=reikđmë2 ...''.\n"
-"Pvz, ''io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modulio parinktys:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Modulio %s iđkvietimas nepavyko.\n"
-"Ar nori bandyti su kitais nustatymais?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s jau pridëtas)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Đis slaptaţodis pernelyg paprastas"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Prađom suteikti vartotojo vardŕ"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Vartotojo vardas turi susidaryti tik iđ maţřjř raidţiř, skaičiř ir simboliř "
-"`-' bei `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Đis vartotojo vardas jau pridëtas"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Pridëti vartotojŕ"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Ávesk vartotojŕ\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Priimti vartotojŕ"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Tikras vardas"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Vartotojo vardas"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikona"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Automatinis pasisveikinimas"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Ađ galiu nustatyti taip, kad vienas vartotojas pasisveikintř automatiđkai.\n"
-"Jei nenori to naudoti, spausk mygtukŕ Nutraukti."
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Pasirink áprastŕ vartotojŕ:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Pasirink, kuriŕ langř tvarkyklć naudosi:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Tu gali pasirinkti kitas kalbas, kurios bus prieinamos po ádiegimo"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Visos"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Pridëti vartotojŕ"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Prisitaikyti"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "CUPS paleidţiamas"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Kokius jűs norite ádiegti paketus"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Nutraukti"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Sveiki atvykć á cracker'iř đalá"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Menkas"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standartinë"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Aukđtas"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Aukđtas"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranojiđkas"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Điame lygyje reikia elgtis atsargiai. Tai leidţia lengviau naudoti sistemŕ,\n"
-"bet labai jautriai: ji turëtř nebűti naudojama kompiuteriuose,\n"
-"sujungtais su kitais arba prie Interneto. Čia nëra slaptaţodţiř."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Dabar slaptaţodţiai yra ájungti bet naudoti kaip tinkliná kompiuterá dar "
-"nerekomenduojama."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Đis saugumo lygis yra standartinis, rekomenduojamas kompiuteriui, kuris\n"
-"naudojamas prisijungti prie interneto kaip klientas. Nëra jokiř saugumo "
-"tikrinimř."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Su điuo saugumo lygiu sistemŕ jau galima naudoti kaip serverá. Saugumas\n"
-"yra pakankamai aukđtas, kad sistemŕ bűtř galima naudoti serveriui, kuris "
-"priima\n"
-"prisijungimus iđ daugybës klientř."
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Dabar naudojami 4 lygio privalumai,bet sistema yra visiđkai uţdaryta.\n"
-"Saugumo savybës yra maksimalios."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Pasirink saugumo lygá"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Nustatomas saugumo lygis"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Pasirink serverio nuostatas"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Sveiki, besinaudojantys %s, operaciju sistemu parinkikliu!\n"
-"\n"
-"Pasirink operaciju sistema is zemiau esancio saraso,\n"
-"arba palauk %d sekundziu, kad butu ikrauta pagal nutylejima\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Sveiki, besinaudojantys GRUB, operaciniu sistemu parinkikliu!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Naudok %c ir %c klavisus, kad pasirinktum, kuris irasas pazymetas"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Spausk enter, noredami ikrauti pasirinkta OS, 'e', noredami keisti"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "komandas pries ikrova, arba 'c', komandinei eilutei iskviesti "
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Pasirinktas irasas bus ikrautas automatiskai po %d sekundziu."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "nepakanka vietos /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Darbastalis"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Paleidimo meniu"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Kur nori ádiegti ákrovos tvarkyklć?"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "pagalba dar nesukurta.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Ádiegimo Tipo Konfiguracija"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/Bylos"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Byla/Iđeiti"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:92
-#, fuzzy
-msgid "NewStyle Monitor"
-msgstr "Monitorius"
-
-#: ../../bootlook.pm_.c:93
-#, fuzzy
-msgid "Traditional Monitor"
-msgstr "Pakeisti monitoriř"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Ákrovos metu paleisti Aurora"
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Lilo/grub mode"
-msgstr "Skambinimo reţimas"
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Yaboot mode"
-msgstr "Ákrovos reţimas"
-
-#: ../../bootlook.pm_.c:104
-#, fuzzy, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr "Interneto jungties dalinimas"
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-#, fuzzy
-msgid "Configure"
-msgstr "Nustatyti X"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Sistemos reţimas"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Startuojant paleisti X_Windows"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Ne, ađ nenoriu automatinio pasisveikinimo"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Taip, ađ noriu automatinio pasisveikinimo (vrtotojas, darbastalis)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "Gerai"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "negaliu atidaryti /etc/inittab skaitymui: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutës"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minutë"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekundës"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Ađ daugiau negaliu pridëti në vieno skirsnio"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Tu gali pasirinkti kitas kalbas, kurios bus prieinamos po ádiegimo"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Prancűzija"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Belgř"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Vokiečiř"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Graikř"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Norvegř"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Pasiţiűrëti"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Italř"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "nuoseklioji"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Pradţiai padaryk atsarginć savo duomenř kopijŕ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Perskaityk ádëmiai!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Jeigu tu planuoji naudoti aboot, nepamirđk palikti tuđčios vietos (2048 "
-"sektoriř pakanka)\n"
-"kaupiklio pradţioje"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Klaida"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Meistras"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Pasirink veiksmŕ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Tu turi vienŕ didelá FAT skirsná\n"
-"(daţniausiai naudojamas Microsoft DOS/Windows).\n"
-"Patariu tau pakeisti to skirsnio dydá\n"
-"(spragtelëk ant jo, tada ant ĽPakeisti dydá´)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Prađom spragtelëti ant skirsnio"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detalës"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "primontuoti nepavyko"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Tuđčias"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Kitas"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Bylř sistemos tipai:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Sukurti"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Rűđis"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Naudok Ľ%s´ vietoj to"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Iđtrinti"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Pirmiau naudok ĽNumontuoti´"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "Pakeitus skirsnio %s tipŕ, visi duomenys jame bus prarasti"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Pasirink veiksmŕ"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Sukurti naujŕ skirsná"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Pakeisti á eksperto reţimŕ"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Pakeisti á normalř reţimŕ"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Sugráţti"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Ar vis tiek tćsti?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Iđeiti neiđsaugojus"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Iđeiti neiđsaugojus skirsniř lentelës?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Ar tu nori iđbandyti nustatymus?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Automatinis suskirstymas"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Iđvalyti viskŕ"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Pađto informacijŕ"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Visi pirminiai skirsniai yra naudojami"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Ađ daugiau negaliu pridëti në vieno skirsnio"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Jei nori turëti daugiau skirsniř, prađom iđtrinti vienŕ, kad vietoj jo "
-"galëtum sukurti iđplëstiná"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Árađyti skirsniř lentelć"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Iđgelbëti skirsniř lentelć"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Iđgelbëti skirsniř lentelć"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Iđgelbëti skirsniř lentelć"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Iđimamř laikmenř automatinis montavimas"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Pasirink bylŕ"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Atsarginë skirsniř lentelë nëra tokio paties dydţio\n"
-"Vis tiek tćsti?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Dëmesio"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Ádëk diskelá á kaupiklá\n"
-"Visi duomenys diskelyje bus prarasti"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Bandau iđgelbëti skirsniř lentelć"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "Pađto informacijŕ"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Prijungimo vieta"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Pasirinktys"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Pakeisti dydá"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Perkelti"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatuoti"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Primontuoti"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Pridëti á RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Pridëti á LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Atjungti"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Pađalinti iđ RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Pađalinti iđ LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Taisyti RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Naudoti loopback'ui"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Sukurti naujŕ skirsná"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Pradţios sektorius: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Dydis (MB): "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Bylř sistemos tipas: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Montavimo tađkas: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Pirmenybë: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Suţymima loopback byla %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Pakeisti skirsnio tipŕ"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Kokios bylř sistemos tu nori?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Kur nori primontuoti loopback bylŕ %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Kur nori primontuoti árenginá %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Negaliu nuimti montavimo tađko, nes đis skirsnis naudojamas loopback'ui.\n"
-"Pirma pađalink loopback'us"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Skaičiuojami FAT bylř sistemos rëţiai"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Keičiamas dydis"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Đio skirsnio dydţio neina pakeisti"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Pasidaryk atsarginć duomenř điame skirsnyje kopijŕ"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Pakeitus skirsnio %s dydá, visi duomenys jame bus prarasti"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Pasirink naujŕ dydá"
-
-#: ../../diskdrake/interactive.pm_.c:622
-#, fuzzy
-msgid "New size in MB: "
-msgstr "Dydis (MB): "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Á kurá diskŕ tu nori já perkelti?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektorius"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Á kurá sektoriř tu nori já perkelti?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Perkeliama"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Perkeliamas skirsnis..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Pasirink jau esantá RAID, prie kurio pridëti"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "naujas"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Pasirink jau esantá LVM, prie kurio pridëti"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "LVM vardas?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Đis skirsnis negali bűti naudojamas loopback'ui"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Loopback bylos vardas: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Tikras vardas"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Byla jau naudojama kitam loopback'ui, pasirink kitŕ"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Đi byla jau yra. Naudoti jŕ?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-#, fuzzy
-msgid "Mount options"
-msgstr "Modulio parinktys:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "árenginys"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "lygis"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "gabalo dydis"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Bűk atsargus: đi operacija yra pavojinga."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Kokio tipo skirsniř skaidymas?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Deja, neámanoma sukurti /boot taip toli kaupiklyje (cilindre >1024).\n"
-"Arba naudok LILO ir tai neveiks, arba nenaudok LILO ir tau nereikës /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Skirsnis, kurá tu pasirinkai kaip đakniná (/), fiziđkai yra uţ 1024-to\n"
-"disko kaupiklio cilindro, bet tu neturi /boot skirsnio. Jeigu planuoji\n"
-"naudoti LILO ákrovos programŕ, neuţmirđk pridëti /boot skirsnio"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Tu pasirinkai programiná RAID skirsná kaip đakniná (/).\n"
-"Jokia ákrovos tvarkyklë negali su ja dirbti be /boot skirsnio.\n"
-"Taigi, nepamirđk sukurti /boot skirsnio"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Árenginio %s skirsniř lentelë bus árađyta á diskŕ!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Tau reikia perkrauti, kad pakeitimai bűtř veiksmingi"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Suţymëjus skirsná %s, visi duomenys jame bus prarasti"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Suţymima"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Suţymima loopback byla %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Suţymimas skirsnis %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid nepavyko"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Skiriamoji geba: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Árenginys: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS kaupiklio raidë: %s (spëjama)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tipas: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Pavadinimas: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Pradţia: sektorius %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Dydis: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektoriai(-iř)"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Nuo cilindro %d iki cilindro %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Suţymëtas\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Nesuţymëtas\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Primontuotas\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Loopback byla(os): %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Skirsnis, ákraunamas pagal nutylëjimŕ\n"
-" (MS-DOS uţkrovimui, ne LILO)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Lygis %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Gabalo dydis %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID kaupikliai %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Loopback bylos vardas: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Galimybës tokios, đis skirsnis\n"
-"yra Tvarkyklës skirsnis\n"
-"gariau palikite já ramybëje.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Đis specialus Bootstrap\n"
-"skirsnis yra skirtas jűsř\n"
-"sistemos dvigubai ákrovai.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Dydis: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometrija: %s cilindrř(-ai), %s galvučiř(-os), %s sektoriř(-iai)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM kaupikliai %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Skirsniř lentelës tipas: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "ant magistralës %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Pasirinktys: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Bylř sistemos tipas: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Đis slaptaţodis yra pernelyg paprastas (turi bűti bent %d simboliř ilgio)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Slaptaţodţiai nesutampa"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "Pakeisti skirsnio tipŕ"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Prađom spragtelëti ant skirsnio"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "DNS serveris"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s %s suţymëjimas nepavyko"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Neţinau, kaip suţymëti %s tipu %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "klaida numontuojant %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "paprasta"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "serveris"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Tu negali naudoti JFS skirsniams, maţesniems nei 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Tu negali naudoti ReiserFS skirsniams, maţesniems nei 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Montavimo tađkai turi prasidëti /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Jau yra skirsnis su montavimo tađku %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Đis katalogas turi pasilikti đakninëje bylř sistemoje"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Tau reikia tikros bylř sistemos (ext2, reiserfs) điam montavimo tađkui\n"
-
-#: ../../fsedit.pm_.c:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-"Tau reikia tikros bylř sistemos (ext2, reiserfs) điam montavimo tađkui\n"
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Klaida atidarant %s árađymui: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Ávyko klaida -- nerasta tinkamř árenginiř, kur bűtř galima sukurti naujus "
-"skirsnius. Prađom pasitikrinti savo árangŕ dël galimo gedimo"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Tu neturi jokiř skirsniř!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-#, fuzzy
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Aukđčiau yra sŕrađas Linux skirsniř, kuriuos pavyko rasti tavo\n"
-"kietajame diske. Tu gali pasilikti sprendimus, padarytus meistro, jie tinka\n"
-"daugumai atvejř. Jei nori pakeisti điuos sprendimus, tu turi nurodyti bent\n"
-"đakniná skirsná (\"/\"). Nepasirink per maţo skirsnio, nes tuomet tu "
-"negalësi\n"
-"ádiegti pakankamai programinës árangos. Jei tu nori laikyti savo duomenis\n"
-"atskirame skirsnyje, pasirink, kurá naudosi \"/home\" (ámanoma tik jei turi "
-"daugiau\n"
-"nei vienŕ Linux skirsná).\n"
-"\n"
-"Tavo ţiniai, skirsniai rađomi tokiu pavidalu: \"Pavadinimas\", \"Talpa\".\n"
-"\n"
-"\n"
-"\"Pavadinimas\" sudaromas taip: \"kaupiklio tipas\", \"kaupiklio numeris\",\n"
-"\"skirsnio numeris\" (pavyzdţiui \"hda1\").\n"
-"\n"
-"\n"
-"\"Kieto disko tipas\" yra \"hd\", jei tavo kietasis kaupiklis yra IDE tipo, "
-"ir \"sd\", jeigu\n"
-"tai SCSI kaupiklis.\n"
-"\n"
-"\n"
-"\"kaupiklio numeris\" visada yra raidë po \"sd\" arba \"hd\". IDE "
-"kaupikliams:\n"
-"\n"
-" * \"a\" reiđkia \"pagrindinis (master) diskas, prijungtas prie pirmojo "
-"(primary) IDE valdiklio\",\n"
-"\n"
-" * \"b\" reiđkia \"đalutinis (slave) diskas, prijungtas prie pirmojo IDE "
-"valdiklio\",\n"
-"\n"
-" * \"c\" reiđkia \"pagrindinis diskas, prijungtas prie antrojo (secondary) "
-"IDE valdiklio\",\n"
-"\n"
-" * \"d\" reiđkia \"đalutinis diskas, prijungtas prie antrojo IDE valdiklio"
-"\",\n"
-"\n"
-"\n"
-"Su SCSI kaupikliais, \"a\" reiđkia \"pirmasis diskas\", \"b\" reiđkia "
-"\"antrasis diskas\" ir t.t."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-#, fuzzy
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Dabar tu gali pasirinkti tarnybas, kurias nori paleisti ákrovos metu.\n"
-"\n"
-"\n"
-"Uţvedus ţymeklá ant tarnybos, pasirodys pagalbos uţrađas, kuris aprađo "
-"tarnybos\n"
-"vaidmená tavo sistemoje.\n"
-"\n"
-"\n"
-"Bűk ypač atidus điame ţingsnyje, jeigu ţadi naudotis savo kompiuteriu kaip\n"
-"serveriu: tu tikriausiai norësi nepaleisti jokiř nereikalingř tarnybř.\n"
-"Prisimink, kad kai kurios tarnybos gali bűti pavojingos, jei naudojamos "
-"serveryje.\n"
-"Apskritai, paţymëk tik tas tarnybas, kuriř tau tikrai reikia."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-#, fuzzy
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Dabar tu turi nusprćsti, kurioje savo kietojo disko vietoje nori ádiegti\n"
-"Mandrake Linux operacijř sistemŕ. Jei jis yra tuđčias arba jau esanti\n"
-"operacijř sistema naudoja visŕ vietŕ jame, tau reikës sudalinti já. Kietojo\n"
-"disko sudalinimas á skirsnius tiesiog yra jo logiđkas padalinimas taip, kad\n"
-"atsirastř laisvos vietos ádiegti tavo naujajai Mandrake Linux sistemai.\n"
-"\n"
-"\n"
-"Kadangi sudalinimo skirsniais padariniai daţniausiai yra negráţtami,\n"
-"dalinimas gali bűti gŕsdinantis ir sunkus, jei tu esi nepatyrćs vartotojas.\n"
-"Đis meistras supaprastina tŕ procesŕ. Prieđ pradëdamas, prađau, nepagailëk\n"
-"laiko ir paskaityk ţinynŕ.\n"
-"\n"
-"\n"
-"Tau reikia maţiausiai dviejř skirsniř. Vienas yra pačiai operacijř "
-"sistemai,\n"
-"o kitas -- virtualiai atminčiai (vadinamai swap).\n"
-"\n"
-"\n"
-"Jei skirsniai jau buvo apibrëţti (iđ praeito ádiegimo arba kitu dalinimo "
-"árankiu),\n"
-"tau tereikia pasirinkti juos, kad ádiegtum savo Linux'ŕ.\n"
-"\n"
-"\n"
-"Jei skirsniai dar nebuvo apibrëţti, tu turi juos sukurti. Kad tai "
-"padarytum,\n"
-"naudokis aukđčiau esančiu meistru. Priklausomai nuo tavo kietojo disko\n"
-"situacijos, yra keli skirtingi sprendimai:\n"
-"\n"
-"* Naudoti esamŕ skirsná: meistras rado vienŕ ar daugiau Linux skirsniř tavo "
-"sistemoje. Jei tu nori juos\n"
-" naudoti, pasirink tai.\n"
-"\n"
-"\n"
-"* Iđvalyti visŕ diskŕ: jei tu nori sunaikinti visus duomenis ir skirsnius, "
-"esančius kietajame diske, ir pakeisti juos\n"
-" nauja Mandrake Linux sistema, gali pasirinkti đá variantŕ. Bűk atsargus su "
-"điuo sprendimu, nes jei sutiksi,\n"
-" nebegalësi apsigalvoti ir sugráţti.\n"
-"\n"
-"\n"
-"* Naudoti tuđčiŕ vietŕ Windows skirsnyje: jei Microsoft Windows yra ádiegti "
-"á kietŕjá diskŕ ir uţima visŕ vietŕ,\n"
-" esančiŕ jame, tau teks atlaisvinti vietos Linux duomenims. Kad tai "
-"padarytum, tu gali iđtrinti Windows skirsná\n"
-" ir duomenis (ţiűrëk \"Iđvalyti visŕ diskŕ\" bei \"Eksperto reţimas\" "
-"sprendimus) arba pakeisti Windows skirsnio\n"
-" dydá. Dydţio pakeitimas gali bűti atliktas be duomenř praradimo. Đis "
-"sprendimas yra rekomenduojamas, jei\n"
-" tu nori naudoti tiek Mandrake Linux, tiek Microsoft Windows tame pačiame "
-"kompiuteryje.\n"
-"\n"
-"\n"
-" Prieđ pasirinkdamas đá sprendimŕ, suprask, kad Microsoft Windows skirsnio "
-"dydis bus maţesnis, nei yra\n"
-" dabar. Tai reiđkia, kad tu turësi maţiau laisvos vietos Windows'uose "
-"árađyti duomenims bei ádiegti naujas\n"
-" programas.\n"
-"\n"
-"\n"
-"* Eksperto reţimas: jei tu nori rankomis sudalinti skirsniais savo kietŕjá "
-"diskŕ, gali rinktis đá variantŕ. Ádëmiai\n"
-" pagalvok, prieđ pasirinkdamas đá sprendimŕ. Jis yra galingas, tačiau labai "
-"pavojingas. Tu gali prarasti \n"
-" visus savo duomenis labai lengvai. Taigi, nesirink đio sprendimo, nebent "
-"tikrai ţinai, kŕ darai."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-#, fuzzy
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Bet kokie naujai sukurti skirsniai turi bűti suţymëti, kad juos\n"
-"bűtř galima naudoti (suţymëjimas reiđkia bylř sistemos sukűrimŕ).\n"
-"\n"
-"\n"
-"Dabar tu gali norëti iđ naujo suţymëti kai kuriuos esamus skirsnius, kad\n"
-"iđtrintum duomenis iđ jř. Jei nori tai padaryti, paţymëk ir tuos skirsnius,\n"
-"kuriuos nori suţymëti.\n"
-"\n"
-"\n"
-"Pastaba: nebűtina iđ naujo suţymëti visř anksčiau sukurtř skirsniř.\n"
-"Tu privalai suţymëti iđ naujo skirsnius, kuriuose bus operacijř sistema\n"
-"(tokius kaip \"/\", \"/usr\" ar \"/var\"), tačiau skirsniř su duomenimis, "
-"kuriuos\n"
-"nori iđlaikyti, suţymëti nereikia (daţniausiai \"/home\").\n"
-"\n"
-"\n"
-"Bűk atsargus, pasirinkdamas skirsnius, kadangi suţymint visi duomenys\n"
-"bus iđtrinti, ir nebebus ámanoma jř atstatyti.\n"
-"\n"
-"\n"
-"Spausk \"Gerai\", kai bűsi pasiruođćs skirsniř suţymëjimui.\n"
-"\n"
-"\n"
-"Spausk \"Atđaukti\", jei nori pasirinkti kitus skirsnius, á kuriuos ádiegti\n"
-"Mandrake Linux sistemŕ."
-
-#: ../../help.pm_.c:404
-#, fuzzy
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Tavo naujoji Mandrake Linux operacijř sistema điuo metu yra\n"
-"ádiegiama. Đis veiksmas turëtř keletŕ minučiř uţtrukti (tai priklauso nuo\n"
-"ádiegiamř paketř bendro dydţio bei kompiuterio spartos).\n"
-"\n"
-"\n"
-"Prađom turëti kantrybës."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-#, fuzzy
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Dabar tu turi pasirinkti, kuriuos skirsnius naudoti tavo naujai Mandrake "
-"Linux \n"
-"sistemai ádiegti. Jei skirsniai jau buvo apibrëţti (iđ praeito ádiegimo arba "
-"kitu dalinimo árankiu),\n"
-"tu gali naudoti esančius skirsnius. Kitu atveju, skirsniai turi bűti "
-"apibrëţti.\n"
-"\n"
-"\n"
-"Kad sukurtum skirsnius, tu pirmiausia turi pasirinkti kietŕjá diskŕ. Diskŕ "
-"dalinimui\n"
-"gali pasirinkti, paspaudćs ant \"hda\" jei nori pirmo IDE kaupiklio, \"hdb\" "
-"-- antro,\n"
-"arba \"sda\", jei renkiesi pirmŕjá SCSI kaupiklá ir t.t.\n"
-"\n"
-"\n"
-"Kad sudalintum skirsniais pasirinktŕ kietŕjá diskŕ, gali naudotis vienu iđ "
-"điř variantř:\n"
-"\n"
-" * Iđvalyti viskŕ: đis variantas iđtrina visus skirsnius, esančius "
-"pasirinktame kietajame diske.\n"
-"\n"
-"\n"
-"   * Automatiđkai paskirti: đis variantas leidţia automatiđkai sukurti Ext2 "
-"bei swap skirsnius laisvoje tavo\n"
-" disko vietoje.\n"
-"\n"
-"\n"
-" * Iđgelbëti skirsniř lentelć: jei disko skirsniř lentelë yra sugadinta, "
-"tu gali bandyti atstatyti jŕ su điuo variantu.\n"
-" Bűk atsargus ir prisimink, kad tai gali nepavykti.\n"
-"\n"
-"\n"
-" * Atđaukti: tu gali naudoti đá variantŕ, kad atđauktum visus tavo "
-"pakeitimus.\n"
-"\n"
-"\n"
-" * Iđ naujo: tu gali rinktis đá variantŕ, kad atsisakytum visř savo "
-"pakeitimř ir ákeltum pradinć skirsniř lentelć.\n"
-"\n"
-"\n"
-" * Meistras: jei tu nori, kad meistras tau padëtř sudalinti kietŕjá diskŕ, "
-"rinkis đá variantŕ. Tai rekomenduojama, jeigu\n"
-" tu nelabai iđmanai apie skirsniř dalinimŕ.\n"
-"\n"
-"\n"
-" * Atkurti iđ diskelio: jei tu iđsaugojai savo skirsniř lentelć á diskelá "
-"ádiegdamas praeitŕ kartŕ, tu gali atkurti jŕ\n"
-" naudodamasis điuo variantu.\n"
-"\n"
-"\n"
-" * Iđsaugoti á diskelá: jei tu nori iđsaugoti savo skirsniř lentelć á "
-"diskelá, kad galëtum paskui atkurti jŕ, rinkis đá\n"
-" variantŕ. labai rekomenduojama, kad tu tai padarytum.\n"
-"\n"
-"\n"
-" * Atlikta: jei tu baigei dalinti savo kietŕjá diskŕ, rinkis đá variantŕ, "
-"kad iđsaugotum visus pakeitimus.\n"
-"\n"
-"\n"
-"Tavo ţiniai, tu gali pasiekti bet kurá variantŕ naudodamasis klaviatűra: "
-"vaikđčiok tarp skirsniř su Tab bei\n"
-"Aukđtyn/Ţemyn rodyklëmis.\n"
-"\n"
-"\n"
-"Kai skirsnis yra parinktas, gali naudoti:\n"
-"\n"
-"* Ctrl-c kad sukurtum naujŕ skirsná (jei parinktas tuđčias skirsnis)\n"
-"\n"
-"* Ctrl-d kad iđtrintum skirsná.\n"
-"\n"
-"* Ctrl-m kad nurodytum prijungimŕ tađkŕ."
-
-#: ../../help.pm_.c:513
-#, fuzzy
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Tavo kietajame diske buvo aptiktas vienas ar daugiau Microsoft Windows\n"
-"skirsnis. Prađom pasirinkti, kurio iđ jř dydá nori pakeisti, kad ádiegtum "
-"savo\n"
-"naujŕjŕ Mandrake Linux operacijř sistemŕ.\n"
-"\n"
-"\n"
-"Tavo ţiniai, kiekvienas skirsnis sŕrađe uţrađomas pavidalu \"Linux "
-"pavadinimas\",\n"
-"\"Windows pavadinimas\" \"Talpa\".\n"
-"\n"
-"\"Linux pavadinimas\" sudaromas taip: \"kaupiklio tipas\", \"kaupiklio "
-"numeris\",\n"
-"\"skirsnio numeris\" (pavyzdţiui \"hda1\").\n"
-"\n"
-"\"Kieto disko tipas\" yra \"hd\", jei tavo kietasis kaupiklis yra IDE tipo, "
-"ir \"sd\", jeigu\n"
-"tai SCSI kaupiklis.\n"
-"\n"
-"\n"
-"\"Kaupiklio numeris\" visada yra raidë po \"sd\" arba \"hd\". IDE "
-"kaupikliams:\n"
-"\n"
-" * \"a\" reiđkia \"pagrindinis (master) diskas, prijungtas prie pirmojo "
-"(primary) IDE valdiklio\",\n"
-"\n"
-" * \"b\" reiđkia \"đalutinis (slave) diskas, prijungtas prie pirmojo IDE "
-"valdiklio\",\n"
-"\n"
-" * \"c\" reiđkia \"pagrindinis diskas, prijungtas prie antrojo (secondary) "
-"IDE valdiklio\",\n"
-"\n"
-" * \"d\" reiđkia \"đalutinis diskas, prijungtas prie antrojo IDE valdiklio"
-"\",\n"
-"\n"
-"\n"
-"Su SCSI kaupikliais, \"a\" reiđkia \"pirmasis diskas\", \"b\" reiđkia "
-"\"antrasis diskas\" ir t.t.\n"
-"\n"
-"\n"
-"\"Windows pavadinimas\" yra raidë, kuria tas skirsnis buvo vadinamas "
-"Windows'uose\n"
-"(pirmasis disko skirsnis vadinamas \"C:\")"
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Prađom turëti kantrybës. Đis veiksmas gali keletŕ minučiř uţtrukti."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Prađom pasirinkti ĽÁdiegti´, jei á sistemŕ nëra ádiegta ankstesniř Mandrake "
-"Linux versijř,\n"
-"arba jei nori naudoti kelias operacijř sistemas.\n"
-"\n"
-"Prađom pasirinkti ĽAtnaujinti´, jei nori atnaujinti jau ádiegtŕ Mandrake "
-"Linux versijŕ.\n"
-"\n"
-"\n"
-"Priklausomai nuo tavo ţiniř apie GNU/Linux, tu gali pasirinkti đias klases "
-"ádiegti ar atnaujinti \n"
-"Mandrake Linux operacijř sistemŕ:\n"
-"\n"
-"* Rekomenduojama: jei niekad nesi ádiegćs GNU/Linux operacijř sistemos, "
-"pasirink điŕ. Ádiegimas bus labai\n"
-" lengvas, tavćs bus paklausta tik keletas klausimř.\n"
-"\n"
-"\n"
-"* Prisitaikyta: jei esi pakankamai susipaţinćs su GNU/Linux, tu gali "
-"pasirinkti pagrindinć sistemos paskirtá\n"
-"(darbo stotis, serveris, kűrimo). Tu turësi atsakyti á daugiau klausimř, nei "
-"ĽRekomenduojamoje´ ádiegimo\n"
-"klasëje, taigi turi ţinoti, kaip veikia GNU/Linux, kad pasirinktum điŕ "
-"klasć.\n"
-"\n"
-"\n"
-"* Eksperto: jei gerai iđmanai GNU/Linux, gali pasirinkti điŕ ádiegimo klasć. "
-"kaip ir ĽPrisitaikytoje´ klasëje,\n"
-" tu galësi pasirinkti pagrindinć sistemos paskirtá\t(darbo stotis, "
-"serveris, kűrimo). Bűk labai atsargus, prieđ \n"
-" pasirinkdamas điŕ ádiegimo klasć. Tu galësi atlikti smarkiai prisitaikytŕ "
-"ádiegimŕ.\n"
-" Atsakyti á kai kuriuos klausimus gali bűti itin sudëtinga, jei gerai "
-"neiđmanai GNU/Linux. Taigi, nesirink đios\n"
-" ádiegimo klasës, nebent tikrai ţinai, kŕ darai."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-#, fuzzy
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Prađom pasirinkti teisingŕ prievadŕ. Pavyzdţiui COM1\n"
-"MS Windows'uose vadinamas ttyS0 GNU/Linux'e."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (the LInux LOader) ir GRUB yra ákrovos tvarkyklës: jos gali ákrauti\n"
-"tiek GNU/Linux, tiek bet kokiŕ kitŕ operacijř sistemŕ, esančiŕ\n"
-"kompiuteryje. Paprastai tos kitos operacijř sistemos yra teisingai\n"
-"atpaţástamos ir ádiegiamos. Jeigu ne, tu gali pridëti árađus pats điame\n"
-"lange. Bűk atidus ir pasirink teisingus parametrus.\n"
-"\n"
-"\n"
-"Tu taip pat gali uţdrausti priëjimŕ prie tř kitř operacijř sistemř\n"
-"bet kam, jei iđtrinsi atitinkamus árađus. Bet tuo atveju, tau prireiks\n"
-"ákrovos diskelio, kad jas ákrautum!"
-
-#: ../../help.pm_.c:722
-#, fuzzy
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Tu turi nurodyti, kur árađyti GNU/Linux paleidimui reikalingŕ informacijŕ\n"
-"\n"
-"\n"
-"Jeigu tu tiksliai neţinai, kŕ darai, pasirink \"Pirmasis kaupiklio sektorius "
-"(MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX bandys surasti PCI SCSI adapterá(-ius). Jei DrakX\n"
-"ras SCSI adapterá ir ţinos, kokiŕ tvarkyklć naudoti, ji bus automatiđkai\n"
-"ádiegta.\n"
-"\n"
-"\n"
-"Jei tu neturi SCSI adapterio, turi ISA SCSI adapterá ar PCI SCSI adapterá,\n"
-"kurio DrakX nepaţásta, tavćs bus paklausta, ar sistemoje yra SCSI\n"
-"adapteris. Jei nëra në vieno, gali spausti ĽNe´. Jei paspausi ĽTaip´, bus\n"
-"parodytas tvarkykliř sŕrađas, iđ kurio galësi pasirinkti tinkamŕ savo\n"
-"adapteriui.\n"
-"\n"
-"\n"
-"Jei tau teks rankomis nurodyti savo adapterá, DrakX paprađys tavćs\n"
-"nurodyti jo nuostatas. Tu turëtum leisti DrakX bandyti atpaţinti árangos\n"
-"nuostatas. Daţniausiai tai suveikia.\n"
-"\n"
-"\n"
-"Jei ne, tau teks nurodyti tvarkyklës nuostatas. Prađom perţiűrëti User "
-"Guide\n"
-"(chapter 3, section \"Collective informations on your hardware\") dël "
-"patarimř,\n"
-"kaip suţinoti informacijŕ apie árangos dokumentacijŕ, iđ gamintojo "
-"svetainës\n"
-"tinkle (jei turi priëjimŕ prie interneto) arba iđ Microsoft Windows (jei "
-"turi juos\n"
-"savo sistemoje)."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-#, fuzzy
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot yra NewWorld MacIntosh geleţies ákrovos programa. Ji gali\n"
-"ákrauti GNU/Linux, MacOS, arba MacOSX (jeigu egzistuoja jűsř kompiuteryje).\n"
-"Paprastai đios operacinës sistemos aptinkamos ir ádiegiamos\n"
-"normaliai. Jeigu taip neávyko galite điame ekrane sukurti árađŕ rankiniu "
-"bűdu.\n"
-"Bűkite atsargűs pasirinkdami parametrus.\n"
-"\n"
-"\n"
-"Pagrindiniai Yaboot nustatymai yra:\n"
-"\n"
-"\n"
-" - Init Message: Praneđimas parodomas prieđ ákrovŕ.\n"
-"\n"
-"\n"
-"\n"
-" - Boot Device: Nurodykite kur padëti informacija kurios reikësto \n"
-"ákrauti GNU/Linux. Bendrai tariant jűs jau turëjote sukurti bootstrap "
-"skirsná \n"
-"kuri laikys điŕ informacijŕ.\n"
-"\n"
-"\n"
-" - Open Firmware Delay: Skirtingai nuo LILO yaboot turi dvi pauzes\n"
-"Pirmoji pauzë matuojamas sekundëmis. Čia galite pasirinkti\n"
-"tarp CD, OF ákrova, MacOS, arba Linux.\n"
-"\n"
-"\n"
-" - Kernel Boot Timeout: Đis uţlaikymas panađus á LILO ákrovos pauzć. "
-"Pasirinkë \n"
-"Linux jus turësite điŕ pauzć 0.1 sekundës dalimis prieđ pasirenkantkernelio\n"
-"aprađymŕ.\n"
-"\n"
-"\n"
-" - Enable CD Boot?: Pasirinkdami đá nustatymŕ jums leis pasirinkti 'C' "
-"iđCD \n"
-"pirmoje ákrovos uţklausoje.\n"
-"\n"
-"\n"
-" - Enable OF Boot?: Pasirinkus đá nustatymŕ jums leis pasirinkti 'N' Open\n"
-"Firmware pirmoje ákrovos uţklausoje.\n"
-"\n"
-"\n"
-" - Default OS: Galite pasirinkti kuri OS ásikraus pagal nutylëjimŕ kai "
-"baigsis Open Firmware \n"
-"uţlaikymas."
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-#, fuzzy
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Pasirink kietŕjá diskŕ, kurá nori iđtuđtinti, kad ádiegtum naujŕ\n"
-"Mandrake Linux sistemŕ. Bűk atsargus, visi duomenys, esantys jame, bus\n"
-"prarasti, ir jř nebebus ámanoma atkurti."
-
-#: ../../help.pm_.c:896
-#, fuzzy
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Spausk \"Gerai\", jei nori iđtrinti visus duomenis ir skirsnius, esančius\n"
-"điame kietajame diske. Bűk atsargus, kai paspausi \"Gerai\", tu nebegalësi\n"
-"atkurti jokiř duomenř nei skirsniř, kurie buvo điame diske, áskaitant bet\n"
-"kokius Windows duomenis.\n"
-"\n"
-"\n"
-"Spausk \"Atđaukti\", kad nutrauktum operacijŕ ir neprarastum jokiř duomenř\n"
-"nei skirsniř, esančiř điame kietajame diske."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Negalima naudoti transliavimo be NIS domeno"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Ádëk FAT formatuotŕ diskelá á kaupiklá %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr ""
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Kad iđsaugoti điř paketř pasirinkimŕ ákraukite sistemŕ su ``linux "
-"defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Klaida skaitant bylŕ %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Kad kai kurie tavo kompiuterio árenginiai veiktř, jiems reikia\n"
-"taip vadinamř \"proprietary\" tvarkykliř. daugiau informacijos apie jas "
-"gali\n"
-"rasti čia: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Tu turi turëti root skirsná. Tam sukurk skirsná\n"
-"(arba spragtelëk ant jau esamo). Tada pasirink\n"
-"veiksmŕ ĽMontavimo tađkas´ ir nurodyk jam Ľ/´"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Tu privalai turëti swap skirsná"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Tu neturi swap skirsnio\n"
-"\n"
-"Vis tiek tćsti?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Tu privalai turëti swap skirsná"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Naudoti laisvŕ vietŕ"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Naudoti esamŕ skirsná"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Nëra jokio skirsnio, tinkamo naudojimui"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Naudoti Windows skirsná loopback'ui"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Kuri skirsná tu nori naudoti Linux4Win ádiegimui?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Pasirink dydţius"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Đakninio skirsnio dydis, MB: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Swap skirsnio dydis, MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Naudoti laisvŕ vietŕ Windows skirsnyje"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Kurio skirsnio dydá tu nori pakeisti?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Skaičiuojami Windows bylř sistemos rëţiai"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"FAT dydţio keitimo programa nesusitvarko su tavo\n"
-"skirsniu, ávyko tokia klaida: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Tavo Windows skirsnis yra pernelyg fragmentuotas, pirma paleisk Ľdefrag´"
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"PERSPËJIMAS!\n"
-"\n"
-"DrakX dabar pakeis tavo Windows skirsnio dydá. Bűk atsargus: đis veiksmas\n"
-"yra pavojingas. Jeigu to dar nepadarei, dabar pats laikas iđeiti iđ "
-"ádiegimo,\n"
-"paleisti scandisk iđ Windows (nepakenktř ir defrag paleisti), o tada iđ "
-"naujo\n"
-"pradëti ádiegimŕ. Taip pat turëtum pasidaryti atsarginć duomenř kopijŕ.\n"
-"Kai viskas sutvarkyta, spausk Gerai."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Koká dydá norëtum palikti Windows'ams"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "skirsnyje %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Nepavyko pakeisti FAT dydţio: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Nëra jokiř FAT skirsniř, kuriř dydá bűtř galima pakeisti arba naudoti juos "
-"loopback'ui\n"
-"(arba nëra pakankamai laisvos vietos)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Iđtrinti visŕ diskŕ"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Iđmesti Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Tu turi daugiau negu vienŕ kietŕ diskŕ, á kurá nori ádiegti Linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "VISI kaupiklyje %s esantys skirsniai ir duomenys bus prarasti"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Rankinis diskř skirstymas"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Naudoti fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Tu dabar gali sudalinti %s.\n"
-"Kai baigsi, nepamirđk iđsaugoti su 'w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Windows skirsnyje nëra pakankamai laisvos vietos"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Ađ niekur negaliu rasti vietos ádiegimui"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX Skirsniř dalinimo meistras rado tokius sprendimus:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Dalinimas á skirsnius nepavyko: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Paleidţiamas tinklas"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Iđjungiamas tinklas"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Ávyko klaida, bet ađ neţinau, kaip su ja graţiai susitvarkyti.\n"
-"Tćsk darbŕ savo paties rizika."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Pasikartojantis montavimo tađkas %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Kai kurie svarbűs paketai nebuvo tvarkingai ádiegti.\n"
-"Arba tavo CD-ROM kaupiklis, arba CD yra su trűkumais.\n"
-"Patikrink CD ádiegtame kompiuteryje, naudodamas \"rpm -qpl Mandrake/RPMS/*."
-"rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Sveiki atvykć á %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Neprieinamas në vienas diskeliř kaupiklis"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Áeinama á ţingsná Ľ%s´\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Tavo sistemoje maţai resursř. Tu gali susidurti su bëdomis, ádiegdamas\n"
-"Mandrake Linux. Jei taip atsitiktř, gali pabandyti tekstiná diegimo bűdŕ:\n"
-"Kai uţsikrauna iđ CDROM'o, paspausk `F1', o tada ávesk \"text\"."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Ádiegimo klasë"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Prađom pasirinkti vienŕ iđ điř ádiegimo klasiř:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Grupiř, kurias tu pasirinkai, bendras dydis yra apie %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Jei tu nori ádiegti maţiau, nei čia nurodyta,\n"
-"pasirink, kiek procentř paketř tu norëtum ádiegti.\n"
-"\n"
-"Jei procentř maţai, bus ádiegti tik patys svarbiausi paketai;\n"
-"su 100% bus ádiegti visi paţymëti paketai."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Tu turi vietos diske tik %d%% điř paketř.\n"
-"\n"
-"Jei tu nori ádiegti maţiau, nei čia nurodyta,\n"
-"pasirink, kiek procentř paketř tu norëtum ádiegti.\n"
-"Jei procentř maţai, bus ádiegti tik patys svarbiausi paketai;\n"
-"su %d%% bus ádiegtŕ tiek paketř, kiek tik ámanoma."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Sekančiame ţingsnyje tu juos galësi pasirinkti tiksliau."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Kiek procentř paketř ádiegti"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Paketř grupiř pasirinkimas"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Atskirř paketř pasirinkimas"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Bendras dydis: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Blogas paketas"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Pavadinimas: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versija: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Dydis: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Svarba: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Tu negali pasirinkti đio paketo, kadangi nebëra pakankamai vietos jam ádiegti"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Ruođiamasi ádiegti điuos paketus"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Ruođiamasi pađalinti điuos paketus"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Tu negali paţymëti/atţymëti đio paketo"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Tai yra privalomas paketas, jis negali bűti atţymëtas"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Tu negali atţymëti đio paketo. Jis jau yra ádiegtas"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Đis paketas privalo bűti atnaujintas\n"
-"Ar tu tikrai nori já atţymëti?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Tu negali atţymëti đio paketo. Jis privalo bűti atnaujintas"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Ádiegti"
-
-#: ../../install_steps_gtk.pm_.c:466
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "Iđsaugoti á diskelá"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Iđsaugoti paketř pasirinkimŕ"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "Iđmesti"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Pasirink paketus, kuriuos tu nori ádiegti"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Ádiegiama"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Skaičiuojama"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Liko laiko "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Prađome palaukti. Ruođiamas ádiegimas"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d paketř"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Ádiegiamas paketas %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Sutinku"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Atmetu"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Pakeisk CD!\n"
-"\n"
-"Prađom ákiđti CD su uţrađu Ľ%s´ á kaupiklá, tada paspausk Gerai.\n"
-"Jei tu jo neturi, spausk Nutraukti, kad iđvengtum ádiegimo iđ đio CD."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Vis tiek tćsti?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Ávyko klaida, bandant sutvarkyti paketus:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Ávyko klaida, ádiegiant paketus:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Perspëjimas\n"
-"\n"
-"Prađau ádëmiai perskaityti đá susitarimŕ. Jeigu jűs nesutinkate nors\n"
-"su vienu kunktu jums neleidţiama naudoti đios laikmenos. Paspauskite "
-"'Atmetu', \n"
-"kad tćsti ádiegimŕ be đios laikmenos.\n"
-"\n"
-"\n"
-"Kaikurie CD esantys komponentai nëra paţymëti \n"
-"GPL Licenzija ar kaţkuo panađiu. Tokiu atveju kiekvienas\n"
-"komponentas turi savo licenzijŕ. \n"
-"Prađau pirmiau perskaityti ir sutikti su tomis licenzijomis prieđ \n"
-"naudojant arba perduodant tuos komponentus. \n"
-"Tokios licenzijos bandrai sulaiko komponentř perdavimŕ, kopijavimŕ \n"
-"(iđskyrus rezervinć kopijŕ), atvirkđtinć inţinerijŕ, \n"
-"de-assembly, de-compilation arba modifikavimŕ. \n"
-"Bet koks susitarimo lauţymas atima iđ jűsř visas đios licenzijos suteiktas\n"
-"teises. Jeigu jums speciali licenzija nesuteikia ápatinkř ágaliojimř\n"
-"jűs negalite ádiegti điř programř á daugiau negu vienŕ kompiuterá\n"
-"arba pritaikyti naudoti tinkle. Jei abejojate\n"
-"susisiekite tiesiai su gamintoju. \n"
-"Điř komponentř arba dokumentacijos perdavimas trečioms đalims\n"
-"yra uţdraustas.\n"
-"\n"
-"\n"
-"Visos CD diske esančiř komponentř teisës priklauso gerbiamiems\n"
-"jř autoriams ir saugomos intelektualios nuosavybës teises\n"
-"saugančiř ástatymř.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Ávyko klaida"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Ar tu nori iđ naujo paleisti tinklŕ"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Licenzijos patvirtinimas"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Klaviatűra"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Prađom pasirinkti klaviatűros iđdëstymŕ."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Čia yra galimř klaviatűrř sŕrađas"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Kurios Ádiegimo klasës tu nori?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Ádiegti/Atnaujinti"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Ar tai ádiegimas, ar atnaujinimas?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Rekomenduojama"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Eksperto"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Atnaujinimas"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Iđsaugoti paketř pasirinkimŕ"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Prađom pasirinkti savo pelës rűđá."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Pelës prievadas"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr ""
-"Prađom pasirinkti, prie kurios nuosekliosios jungties prijungta tavo pelë."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Nustatomos PCMCIA plokđtes..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Nustatome IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "nëra prieinamř skirsniř"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Perţiűrimi skirsniai, ieđkant montavimo tađkř"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Pasirink montavimo tađkus"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ađ negaliu perskaityti skirsniř lentelës, ji pernelyg sugadinta :(\n"
-"Galiu pabandyti iđvalyti blogus skirsnius (VISI DUOMENYS bus prarasti!)\n"
-"Kitas sprendimas -- neleisti DrakX taisyti skirsniř lentelć.\n"
-"(klaida %s)\n"
-"\n"
-"Ar sutinki prarasti visus skirsnius?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake nesugebëjo teisingai perskaityti skirsniř lentelës.\n"
-"Tćsk savo paties rizika!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "Nerastas pagrindinis skirsnis"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Đakninis skirsnis"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Kur yra tavo sistemos đakninis skirsnis (/)?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Tau reikia perkrauti kompiuterá, kad skirsniř lentelës pakeitimai bűtř "
-"naudojami"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Pasirink skirsnius, kuriuos nori suţymëti"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Ieđkoti blogř blokř?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Suţymimi skirsniai"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Sukuriama ir suţymima byla %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Nepakanka swap atminties ádiegimo vykdymui, prađom praplësti"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Ieđkomi galimi paketai"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Ieđkoma atnaujintinř paketř"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr "Tavo sistemoje neuţtenka vietos ádiegimui arba atnaujinimui (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Pilnai (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimaliai (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Rekomenduojama (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-#, fuzzy
-msgid "Load from floppy"
-msgstr "Atstatyti iđ diskelio"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Loading from floppy"
-msgstr "Atstatyti iđ diskelio"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Package selection"
-msgstr "Paketř grupiř pasirinkimas"
-
-#: ../../install_steps_interactive.pm_.c:578
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "Ádëk diskelá á kaupiklá %s"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Iđsaugoti á diskelá"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:671
-#, fuzzy
-msgid "Type of install"
-msgstr "Pasirink paketŕ ádiegimui"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-#, fuzzy
-msgid "With X"
-msgstr "Palauk"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Jei turi visus CD ţemiau esančiame sŕrađe, spausk Gerai.\n"
-"Jei neturi në vieno iđ điř CD, spausk Nutraukti.\n"
-"Jei trűksta tik kai kuriř CD, atţymëk juos, o tada spausk Gerai."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM su uţrađu \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Ruođiamas ádiegimas"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Ádiegiamas paketas %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Konfigűracija po ádiegimo"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Ádëk diskelá á kaupiklá %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Ádëk tuđčiŕ diskelá á kaupiklá %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Dabar jűs turite galimybć parsisiřsti điravimo programŕ.\n"
-"\"nPERSPËJIMAS:\n"
-"Dël áviariř programiniř juridiniř, teisiniř ir kitř prieţađčiř jums\n"
-"reikia ásitikinti kad jűs galite parsisiřsti ir naudoti đitŕ programinć\n"
-"árangŕ\n"
-"\n"
-"Prieđ vartotojus kurie nesilaikys atitinkamř ástatymř bus gali bűti\n"
-"imtasi sankcijř\n"
-"Mandrakesoft neatsako uţ netiesioginć arba atsitiktinis arba koks nors\n"
-"kitokiŕ ţalŕ.\n"
-"\n"
-"D4l i6kilusi7 klausim7 susisiekite su: \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Jungiamasi prie atvaizdţio (mirror), kad gautume prieinamř paketř sŕrađŕ"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Pasirink atvaizdá (mirror), iđ kurio imti paketus"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr ""
-"Jungiamasi prie atvaizdţio (mirror), kad gautume prieinamř paketř sŕrađŕ"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Kokia tavo laiko juosta?"
-
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "Ar tavo árangos laikrodis nustatytas GMT?"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-#, fuzzy
-msgid "NTP Server"
-msgstr "NIS serveris"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Nutolćs CUPS serveris"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Spausdintuvo nëra"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Ar turi dar vienŕ?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Apibendrinimas"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Pelë"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Laiko juosta"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Spausdintuvas"
-
-#: ../../install_steps_interactive.pm_.c:1049
-#, fuzzy
-msgid "ISDN card"
-msgstr "Vidinë ISDN plokđtë"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-#, fuzzy
-msgid "Sound card"
-msgstr "Standartinë"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-#, fuzzy
-msgid "NIS"
-msgstr "Naudoti NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-#, fuzzy
-msgid "Local files"
-msgstr "Vietinis spausdintuvas"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Nurodyti root slaptaţodá"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Jokio slaptaţodţio"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr ""
-"Đis slaptaţodis yra pernelyg paprastas (turi bűti bent %d simboliř ilgio)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autentikacija"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "Autentikacija"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-#, fuzzy
-msgid "LDAP Server"
-msgstr "serveris"
-
-#: ../../install_steps_interactive.pm_.c:1134
-#, fuzzy
-msgid "Authentication NIS"
-msgstr "Autentikacijos NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS domenas"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS serveris"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Ákrovos diskelis leidţia pakrauti Linux sistemŕ be normalaus sistemos "
-"ákroviklio.\n"
-"Tai gali bűti naudinga, jei tu nenori ádiegti SILO á savo sistemŕ, arba "
-"kita\n"
-"operacijř sistema iđmeta SILO, arba jei SILO nedirba su tokia árangos "
-"konfigűracija.\n"
-"Ákrovos diskelis taip pat gali bűti naudojamas su Mandrake rescue diskeliu, "
-"tokiu\n"
-"bűdu pasidaro daug lengviau atkurti sistemŕ po smarkiř gedimř.\n"
-"\n"
-"Jei nori sukurti ákrovos diskelá savo sistemai, ákiđk diskelá á pirmŕjá\n"
-"árenginá ir spausk \"Gerai\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Pirmasis diskeliř árenginys"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Antrasis diskeliř árenginys"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Praleisti"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Ákrovos diskelis leidţia pakrauti Linux sistemŕ be normalaus sistemos "
-"ákroviklio.\n"
-"Tai gali bűti naudinga, jeigu tu nenori ádiegti LILO (arba GRUB) á savo "
-"sistemŕ,\n"
-"arba jei kita operacijř sistema iđmeta LILO, arba jei LILO nedirba su esama "
-"árangos\n"
-"konfigűracija. Ákrovos diskelis taip pat gali bűti naudojamas su Mandrake "
-"rescue\n"
-"diskeliu, tokiu bűdu pasidaro daug lengviau atkurti sistemŕ po smarkiř "
-"gedimř.\n"
-"\n"
-"Ar tu nori sukurti ákrovos diskelá?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Atleisk, bet neradau jokio diskeliř kaupiklio"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Pasirink kaupiklá, kurá nori naudoti ákrovos diskeliui sukurti"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Ádëk diskelá á kaupiklá %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Kuriamas ákrovos diskelis"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Ruođiama ákrovos tvarkyklë"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Ar nori naudoti aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Klaida ádiegiant aboot,\n"
-"bandyti ádiegti priverstinai, net jei tai sunaikintř pirmŕjá skirsná?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Ádiegti ákrovos tvarkyklć"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Nepavyko ádiegti ákrovos tvarkyklës. Ávyko tokia klaida:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Ádëk tuđčiŕ diskelá á kaupiklá %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Kuriamas automatinio ádiegimo diskelis"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Kai ţingsniai buvo nebaigti.\n"
-"\n"
-"Ar tu nori iđeiti dabar?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Sveikiname. Ádiegimas baigtas.\n"
-"Iđtrauk ádiegimo laikmenas ir spausk Enter, kad perkrautum.\n"
-"\n"
-"\n"
-"Kad suţinotum apie pataisymus, kurie prieinami điai Mandrake Linux laidai,\n"
-"pasiţiűrëk á Errata, kuris yra \n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Informacija apie tavo sistemos konfigűravimŕ yra oficialioje\n"
-"Mandrake Linux User's Guide knygoje."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Sukurti automatinio ádiegimo diskelá"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"Automatinis ádiegimas reikalui esant gali bűti pilnai\n"
-"automatizuotas. Tokiu atveju jis uţims visŕ diskŕ!!\n"
-"(turint omenyje ádiegimŕ á kitŕ dëţć).\n"
-"\n"
-"Jűs galbűt norësite pakartoti ádiegimŕ.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automatinis"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Parodyti vël"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Iđsaugoti paketř pasirinkimŕ"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux ádiegimas %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> tarp elementř | <Tarpas> parenka | <F12> kitas langas "
-
-#: ../../interactive.pm_.c:87
-#, fuzzy
-msgid "kdesu missing"
-msgstr "nieko"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Pasirink veiksmŕ"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Iđplëstinis"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Prađom palaukti"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Iđskleisti medá"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Suskleisti medá"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Perjungti tarp rikiavimo pagal grupes ar abëcëlć"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Blogas pasirinkimas, bandyk vël\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Tavo pasirinkimas? (pagal nutylëjimŕ %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Tavo pasirinkimas? (pagal nutylëjimŕ %s) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Pasirinktys: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "Ar nori naudoti aboot?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Tavo pasirinkimas? (pagal nutylëjimŕ %s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Čekř (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Vokiečiř"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorako"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Ispanř"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Suomiř"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Prancűzř"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norvegř"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Lenkř"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Rusř"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Đvedř"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Jungtinës karalystës klaviatűra"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "JAV klaviatűra"
-
-#: ../../keyboard.pm_.c:188
-#, fuzzy
-msgid "Albanian"
-msgstr "Iraniečiř"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armënř (senoji)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armënř (spausd. mađinëlës)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armënř (fonetinë)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidţaniečiř (lotyniđka)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgř"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Armënř (fonetinë)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Bulgarř"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazilř (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Baltarusiř"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Đveicarř (Vokiđkas iđdëstymas)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Đveicarř. (Prancűziđkas iđdëstymas)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Čekř (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Vokiečiř (be mirusiř klaviđř)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Danř"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorako (JAV)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorako (Norvegř)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorako (JAV)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estř"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Gruzinř (\"Rusiđkas\" iđdëstymas)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Gruzinř (\"Latin\" iđdëstymas)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Graikř"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Vengrř"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Kroatř"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Izraelio"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Ţydř (Fonetinë)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iraniečiř"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandř"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italř"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japoniđka 106 klaviđř"
-
-#: ../../keyboard.pm_.c:231
-#, fuzzy
-msgid "Korean keyboard"
-msgstr "Jungtinës karalystës klaviatűra"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Lotynř Amerikos"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lietuviř ŔŢERTY (sena)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lietuviř ŔŢERTY (nauja)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lietuviř \"skaičiř eilë\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lietuviř \"fonetinë\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Vieta"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Makedoniečiř"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Olandř"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Lenkř (QWERTY iđdëstymas)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Lenkř (QWERTZ iđdëstymas)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugalř"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Kanadiečiř (Kvebeko)"
-
-#: ../../keyboard.pm_.c:247
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "Rusiđka (Yawerty)"
-
-#: ../../keyboard.pm_.c:248
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "Rusiđka (Yawerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Rusiđka (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slovënř"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovakř (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovakř (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "Azerbaidţaniečiř (kirilica)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Lentelë"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Thai klaviatűra"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Thai klaviatűra"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turkř (tradicinis \"F\" modelis)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turkř (điuolaikinis \"Q\" modelis)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukrainiečiř"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "JAV klaviatűra (tarptautinë)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamiečiř \"skaičiř eilë\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslavř (lotyniđkas/kirilikos)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Loopback montavimai %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Pirmiausia iđmeskite loginius tomus\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - pelë"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Paprasta PS2 pelë su ratuku"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-#, fuzzy
-msgid "1 button"
-msgstr "2 klaviđř"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Paprasta 2 klaviđř pelë"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Paprasta"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Su ratuku"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "nuoseklioji"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Paprasta 3 klaviđř pelë"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (nuoseklioji, seno C7 tipo)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 klaviđř"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 klaviđř"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "jokios"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Pelës nëra"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Prađom iđbandyti pelć"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Kad suţadintum pelć,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "PASUK RATUKŔ!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Suomiř"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Toliau ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Ankstesnis"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Ar taip teisinga?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Prisijungti prie interneto"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Labiausiai paplitćs bűdas prisijungti su ADSL yra pppoe.\n"
-"Vis dëlto, kai kurios jungtys gali naudoti PPTP arba DHCP.\n"
-"Jei neţinai, pasirink 'naudoti pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "naudoti dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "naudoti pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "naudoti pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Kurá DHCP klientŕ norëtum naudoti?\n"
-"Áprasta yra dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Neradau jokio ethernet tinklo adapterio tavo sistemoje.\n"
-"Ađ negaliu sutvarkyti đio jungties tipo."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Pasirink tinklo interfeisŕ"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Prađom pasirinkti, kuriŕ tinklo plokđtć tu nori naudoti prisijungimui prie "
-"interneto"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "nerasta jokia tinklo plokđtë"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Konfigűruojamas tinklas"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Prađom ávesti savo hosto vardŕ, jei já ţinai.\n"
-"Kai kuriems DHCP reikia, kad hosto vardas galiotř.\n"
-"tai turëtř bűti pilnai aprađytas hosto vardas, panađus\n"
-"á \"mano.filialas.istaiga.lt\"."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Hosto vardas"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Tinklo Konfigűravimo Meistras"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Iđorinë ISDN plokđtë"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Vidinë ISDN plokđtë"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Kokios rűđies tavo ISDN jungtis?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "Aptikta ugniasienës konfigűracija!"
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "Aptikta ugniasienës konfigűracija!"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN konfigűravimas"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Pasirink savo tiekëjŕ.\n"
-" Jei jo nëra sŕrađe, pasirink Unlisted"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol"
-msgstr "Ákrovos Protokolas"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Europa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "Likćs pasaulis"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Likćs pasaulis \n"
-" be D-Channel (nuomojamos linijos)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Kurá protokolŕ nori naudoti?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Kokios rűđies plokđtć tu turi?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Neţinau"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Jei tu turi ISA plokđtć, reikđmës sekančiame ekrane turëtř bűti teisingos.\n"
-"\n"
-"Jei turi PCMCIA plokđtć, tu turi ţinoti jos IRQ bei IO.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Nutraukti"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Tćsti"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Kuri yra tavo ISDN plokđtë?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Ađ aptikau ISDN PCI plokđtć, tačiau neţinau jos tipo. Pasirink vienŕ PCI "
-"plokđtć sekančiame ekrane."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Jokia ISDN PCI plokđtë nerasta. prađom pasirinkti vienŕ kitame ekrane."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr ""
-"Prađom pasirinkti, prie kurios nuosekliosios jungties yra prijungtas tavo "
-"modemas."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Prisiskambinimo nustatymai"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Jungties pavadinimas"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Telefono numeris"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Pasisveikinimo ID"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Paremtas skriptu"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Paremtas terminalu"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Domeno vardas"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-#, fuzzy
-msgid "First DNS Server (optional)"
-msgstr "Pirmasis DNS serveris"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-#, fuzzy
-msgid "Second DNS Server (optional)"
-msgstr "Antrasis DNS serveris"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Tu gali atsijungti arba iđ naujo nustatyti jungtá."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Tu gali iđ naujo nustatyti jungtá."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Tu dabar esi prisijungćs prie interneto."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Tu gali prisijungti prie interneto arba iđ naujo nustatyti jungtá."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Tu dabar nesi prisijungćs prie interneto."
-
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
-msgid "Connect"
-msgstr "Sujungimas..."
-
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
-msgid "Disconnect"
-msgstr "Sujungimas..."
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Nustatyti tinklŕ"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Interneto jungtis ir nustatymas"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr ""
-"\n"
-"Tu gali atsijungti arba iđ naujo nustatyti jungtá."
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"Tu gali atsijungti arba iđ naujo nustatyti jungtá."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Tinklo konfigűravimas"
-
-#: ../../network/netconnect.pm_.c:139
-#, fuzzy
-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 ""
-"Kadangi jűs diegiate per tinklŕ jűsř tinklo nustatymai yra padaryti.\n"
-"Spragtelëkite ant Gerai kad perkonfiguruoti Network/Internet pasijungimŕ "
-"arbaatđaukti, kad praleisti đá punktŕ.\n"
-
-#: ../../network/netconnect.pm_.c:165
-#, fuzzy
-msgid ""
-"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 ""
-"Internet Pasijungimas\n"
-"\n"
-"Mes ruođiamës konfiguruoti jűsř internet/tinkliná pasijungimŕ.\n"
-"Jeigu nenorite naudoti automatinio aptikimo nuimkite điŕ atţymŕ.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Konfiguravimui pasirinkite prifailŕ"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Naudokite automatiná aptikimŕ"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Ieđkoma áranga..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Nustatyti normaliŕ jungtá per modemŕ"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "aptiktas prievade %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN jungtis"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "aptiktas %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy
-msgid "ADSL connection"
-msgstr "LAN jungtis"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "aptiktas interfeise %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Kabelinë jungtis"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Kabelinë jungtis"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "LAN jungtis"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "aptiktos ethernet kortos(a)"
-
-#: ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "Pasirink kurá áranká norëtum naudoti"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-#, fuzzy
-msgid "Internet connection"
-msgstr "Interneto jungties dalinimas"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Ar tu nori prisijungti tik ájungus?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Tinklo konfigűravimas"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, fuzzy, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr "Ar tu nori iđ naujo paleisti tinklŕ"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Sveikiname, jűsř tinklo ir Internet konfiguracija baigta.\n"
-"\n"
-"Dabar konfiguracijŕ pritaikysime sistemai.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Po to rekomenduojame jums perleisti X aplinkŕ,\n"
-"kad iđvengti problemř su kompiuterio vardu."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"PERSPËJIMAS: Gis árenginys jau anksčiau buvo sutvarkytas prisijungimui prie\n"
-"interneto. \n"
-"Paprasčiausiai spausk Gerai, jei nori palikti já toká.\n"
-"Jei pakeisi kŕ nors ţemiau esančiuose laukuose, tai ásigalios vietoj senřjř "
-"nuostatř."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Prađom árađyti đio kompiuterio IP konfigűracijŕ.\n"
-"Kiekvienas laukas turi bűti árađytas kaip IP adresas\n"
-"deđimtainiais skaičiais su tađkais (pvz. 192.168.2.36)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigűruojamas tinklo árenginys %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (tvarkyklë %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP adresas"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Netmask"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Automatinis IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresas turëtř bűti 1.2.3.4 formato"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Prađom ávesti savo hosto vardŕ, jei já ţinai.\n"
-"tai turëtř bűti pilnai aprađytas hosto vardas, panađus\n"
-"á \"mano.filialas.istaiga.lt\".\n"
-"Taip pat gali ávesti đliuzo (gateway) IP adresŕ, jeigu toká turi"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS serveris"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Đliuzo (gateway) árenginys"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Proxy konfigűracija"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy turëtř bűti http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy turëtř bűti ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Interneto konfigűravimas"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Ar nori pabandyti prisijungti prie interneto dabar?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Iđbandoma jungtis..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Sistema dabar prijungta prie interneto."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr ""
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Neatrodo, kad sistema dabar prijungta prie interneto.\n"
-"Bandyk iđ naujo konfigűruoti jungtá."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Jungties konfigűravimas"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Prađom uţpildyti arba patikrinti đá laukelá"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "Plokđtës IRQ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Plokđtës mem (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "Plokđtës IO"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "Plokđtës IO_0"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "Plokđtës IO_1"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Tavo asmeninis tel. numeris"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Tiekëjo pavadinimas (pvz. tiekejas.lt)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Tiekëjo telefono numeris"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Tiekëjo DNS 1 (pasirinktinai)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Tiekëjo DNS 2 (pasirinktinai)"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "Pasirink klaviatűrŕ"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Skambinimo reţimas"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "Jungties tipas: "
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Jungties tipas: "
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Pasisveikinimas (vartotojo vardas)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Slaptaţodis"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "primontuoti nepavyko: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Iđplëstiniai skirsniai đioje platformoje nepalaikomi"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Skirsniř lentelëje yra tuđčios vietos, bet ji negali bűti panaudota.\n"
-"Vienintelis sprendimas yra perkelti pirminius skirsnius taip, kad tuđčia "
-"vieta bűtř đalia iđplëstiniř skirsniř"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Nepavyko atstatyti iđ bylos %s: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Bloga atsarginë byla"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Klaida árađant á bylŕ %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Kaţkas blogo nutiko jűsř kaupikliui. \n"
-"Bandymas pabandyti jo vientisumŕ nepavyko. \n"
-"Tai sako, kad rađymas á já bus visiđkas mëđlas. "
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "turi turëti"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "svarbus"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "labai gerai"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "nuostabu"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "galbűt"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Vietinis spausdintuvas"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Nutolćs spausdintuvas"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Nutolćs CUPS serveris"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "Nutolćs lpd serveris"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Tinklo spausdintuvas (TCP/lizdas)"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Spausdinimo serveris"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "Spausdintuvo árenginio URI"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Vietinis spausdintuvas"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Nutolćs spausdintuvas"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Klaida árađant á bylŕ %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(modulis %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "CUPS serverio IP"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Áprastas)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Pasirink spausdintuvo jungtá"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Kaip yra prijungtas spausdintuvas?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"Su nutolusiu CUPS serveriu, tau đioje vietoje nereikia nustatinëti\n"
-"jokiř spausdintuvř; jie bus automatiđkai atpaţástami.\n"
-"Jeigu abejoji, pasirink \"Nutolćs CUPS serveris\"."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "LAN Konfiguravimas"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Nutolćs CUPS serveris"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP adresas turëtř bűti 1.2.3.4 formato"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-#, fuzzy
-msgid "The port number should be an integer!"
-msgstr "Prievado numeris turi bűti skaičius"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "CUPS serverio IP"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Prievadas"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Ádiegimo Tipo Konfiguracija"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Ieđkoma áranga..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Patikrinti prievadus"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Spausdintuvo nëra"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Vietinis spausdintuvas"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Nutolćs spausdintuvas"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Naudokite automatiná aptikimŕ"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Nutolćs spausdintuvas"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "aptiktas %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Spausdintuvo árenginio URI"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Vietinis spausdintuvas"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr ""
-"Prađom pasirinkti, prie kurios nuosekliosios jungties yra prijungtas tavo "
-"modemas."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Spausdintuvo árenginio URI"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Nustatymai"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Ádiegiamas paketas %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Ádiegiamas paketas %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-#, fuzzy
-msgid "Reading printer database ..."
-msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Nutolusio lpd spausdintuvo nuostatos"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Norëdamas naudotis nutolusia lpd spausdinimo eile, tu turi\n"
-"nurodyti to serverio hosto vardŕ ir pavadinimŕ eilës, kurioje\n"
-"bus talpinami darbai."
-
-#: ../../printerdrake.pm_.c:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "Nutolusio hosto vardas"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Nutolćs spausdintuvas"
-
-#: ../../printerdrake.pm_.c:630
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "Nutolusio hosto vardas"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Nutolusio hosto vardas"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) spausdintuvo nuostatos"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Norëdamas spausdinti á SMB spausdintuvŕ, tu turi\n"
-"nurodyti SMB hosto vardŕ, (Atkreipk dëmesá, kad jis gali skirtis nuo\n"
-"jo TCP/IP hosto vardo!) ir galbűt spausdinimo serverio IP adresŕ,\n"
-"spausdintuvo share'o vardŕ, vartotojo vardŕ, slaptaţodá ir darbo grupës vardŕ"
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "SMB serverio hostas"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "SMB serverio IP"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Share'o vardas"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Darbo grupë"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "NetWare spausdintuvo nuostatos"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Norëdamas spausdinti á NetWare spausdintuvŕ, tu turi\n"
-"nurodyti spausdinimo serverio vardŕ, (Atkreipk dëmesá, kad jis gali\n"
-"skirtis nuo jo TCP/IP hosto vardo!), spausdintuvo eilës vardŕ "
-"spausdintuvui,\n"
-"prie kurio nori prieiti, bei reikalingus vartotojo vardŕ ir slaptaţodá."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Spausdinimo serveris"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Spausdinimo eilës pavadinimas"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Lizdinio spausdintuvo nuostatos"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Kad galëtum spausdinti á lizdiná spausdintuvŕ, turi pateikti\n"
-"spausdintuvo hosto vardŕ ir, galbűt, prievado numerá."
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "Spausdintuvo hosto vardas"
-
-#: ../../printerdrake.pm_.c:858
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "Spausdintuvo hosto vardas"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Spausdintuvo árenginio URI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Spausdintuvo vardas"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Aprađymas"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Vieta"
-
-#: ../../printerdrake.pm_.c:1021
-#, fuzzy
-msgid "Preparing printer database ..."
-msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Nutolćs spausdintuvas"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Ar taip teisinga?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Nutolćs spausdintuvas"
-
-#: ../../printerdrake.pm_.c:1139
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Spausdintuvo jungtis"
-
-#: ../../printerdrake.pm_.c:1140
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "Kokio tipo yra tavo spausdintuvas?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Modemo Nustatymai"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Interneto konfigűravimas"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Ar tu nori iđbandyti spausdinimŕ?"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "Patikrinti prievadus"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-#, fuzzy
-msgid "No test pages"
-msgstr "Taip, spausdinti abu bandomuosius puslapius"
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "Spausdintuvas"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Standartinë"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "Spausdinamas bandomasis puslapis..."
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "Spausdinamas bandomasis puslapis..."
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Spausdinamas bandomasis puslapis..."
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Spausdinamas bandomasis puslapis..."
-
-#: ../../printerdrake.pm_.c:1635
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Bandomasis puslapis buvo nusiřstas spausdinimo demonui.\n"
-"Kol bus pradëta spausdinti, gali tekti palaukti.\n"
-"Spausdinimo bűsena:\n"
-"%s\n"
-"\n"
-"Ar jis veikia teisingai?"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Bandomasis puslapis buvo nusiřstas spausdinimo demonui.\n"
-"Kol bus pradëta spausdinti, gali tekti palaukti.\n"
-"Ar jis veikia teisingai?"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Spausdintuvo nëra"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Pelë"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Iđjungiamas tinklas"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Iđjungiamas tinklas"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Spausdintuvo nuostatos"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Interneto konfigűravimas"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "Spausdintuvo nëra"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "Nustatyti spausdintuvŕ"
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Iđbandoma jungtis..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Nustatyti tinklŕ"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Monitorius nenurodytas"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Konfigűruojamas tinklas"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Kuriŕ spausdinimo sistemŕ nori naudoti?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Aukđtas"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Paranojiđkas"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Kuriŕ spausdinimo sistemŕ nori naudoti?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Pasirink spausdintuvo jungtá"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Kuriŕ spausdinimo sistemŕ nori naudoti?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Nustatyti spausdintuvŕ"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Ádiegiamas paketas %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Spausdintuvo nuostatos"
-
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Nustatyti spausdintuvŕ"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Ar nori nustatyti spausdintuvŕ?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Čia yra đios spausdinimo eilës.\n"
-"Tu gali čia pridëti daugiau arba pakeisti esamas."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Čia yra đios spausdinimo eilës.\n"
-"Tu gali čia pridëti daugiau arba pakeisti esamas."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Nustatyti tinklŕ"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Normal Mode"
-msgstr "Normali"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Ar tu nori iđbandyti nustatymus?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Modemo Nustatymai"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Ar tu nori iđbandyti nustatymus?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Interneto jungties dalinimas"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Spausdintuvo jungtis"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "Spausdinamas bandomasis puslapis..."
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Ar tu nori iđbandyti nustatymus?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Nutolćs spausdintuvas"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Vietinis spausdintuvas"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Ar tu nori iđ naujo paleisti tinklŕ"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-#, fuzzy
-msgid "Proxy configuration"
-msgstr "Proxy konfigűracija"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr ""
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-#, fuzzy
-msgid "port"
-msgstr "Prievadas"
-
-#: ../../proxy.pm_.c:44
-#, fuzzy
-msgid "Url should begin with 'http:'"
-msgstr "Proxy turëtř bűti http://..."
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-#, fuzzy
-msgid "The port part should be numeric"
-msgstr "Prievado numeris turi bűti skaičius"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Proxy turëtř bűti ftp://..."
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-#, fuzzy
-msgid "login"
-msgstr "Automatinis pasisveikinimas"
-
-#: ../../proxy.pm_.c:82
-#, fuzzy
-msgid "password"
-msgstr "Slaptaţodis"
-
-#: ../../proxy.pm_.c:84
-#, fuzzy
-msgid "re-type password"
-msgstr "Jokio slaptaţodţio"
-
-#: ../../proxy.pm_.c:88
-#, fuzzy
-msgid "The passwords don't match. Try again!"
-msgstr "Slaptaţodţiai nesutampa"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Negaliu pridëti skirsnio prie _formatuoto_ RAID md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Negaliu árađyti bylos %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid nepavyko"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid nepavyko (gal bűt trűksta raidtools?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Nëra pakankamai sričiř %d lygio RAID\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron yra periodinë komandř tvarkyklë."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd naudojamas akumuliatoriaus bűsenai stebëti ir uţrađyti per\n"
-"syslog. Jis taip pat gali bűti naudojamas kompiuterio iđjungti,\n"
-"kai trűksta energijos akumuliatoriuje."
-
-#: ../../services.pm_.c:18
-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 ""
-"Paleidţia komandas laiku, nurodytu su at komanda, bei paleidţia\n"
-"susikaupusias komandas tuomet, kai sistema maţai apkrauta."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron yra standartinë UNIX programa, paleidţianti vartotojo nurodytas "
-"programas\n"
-"periodiđkai, nustatytu laiku. vixie cron prideda nemaţai galimybiř prie "
-"paprasto\n"
-"UNIX cron'o, áskaitant didesná saugumŕ ir galingesnes parinktis."
-
-#: ../../services.pm_.c:23
-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 prideda pelës palaikymŕ tekstinëse Linux programose, pvz.\n"
-"Midnight Commander. Ji suteikia galimybć konsolëje kopijuoti ir ádëti su\n"
-"pele, bei iđkviesti kontekstiná meniu."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache yra World Wide Web serveris. Jis naudojamas pateikti HTML\n"
-"byloms ir CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Interneto superserverio demonas (bendrai vadinamas inetd) paleidţia\n"
-"ávairias interneto paslaugas, kai reikia. Jis atsakingas uţ daugelio\n"
-"paslaugř paleidimŕ, áskaitant telnet, ftp, rsh ir rlogin. Inetd iđjungimas\n"
-"kartu iđjungia visas paslaugas, uţ kurias jis yra atsakingas."
-
-#: ../../services.pm_.c:33
-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:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Đis paketas uţkrauna pasirinktŕ klaviatűros iđdëstymŕ, kuris\n"
-"nurodytas /etc/sysconfig/keyboard byloje. Jis gali bűti pasirinktas su\n"
-"kbdconfig priemone. Daugumoje kompiuteriř jis turi bűti ájungtas."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: ../../services.pm_.c:43
-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 yra spausdinimo demonas, bűtinas, kad lpr veiktř tvarkingai.\n"
-"Tai yra tiesiog serveris, paskirstantis spausdinimo darbus spausdintuvui"
-"(ams)."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) yra Domenř vardř serveris (DNS), naudojamas\n"
-"iđsiaiđkinti IP adresus pagal hosto vardus."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Primontuoja ir numontuoja visas Network File System (NFS), SMB\n"
-"(Lan Manager/Windows), ir NCP (NetWare) montavimo tađkus."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Ájungia/Iđjungia visas tinklo jungtis, nustatytas paleisti\n"
-"ákrovos metu."
-
-#: ../../services.pm_.c:52
-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 yra populiarus protokolas dalintis byloms TCP/IP tinkluose.\n"
-"Đi tarnyba teikia NFS serverio funkcionalumŕ, kuris tvarkomas\n"
-"/etc/exports byloje."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS yra populiarus protokolas dalintis byloms TCP/IP tinkluose.\n"
-"Đi tarnyba teikia NFS bylř uţrakinimo funkcionalumŕ."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA skirtas palaikyti tokiems neđiojamř kompiuteriř árenginiams,\n"
-"kaip modemai ir tinklo plokđtës. Jis nebus paleidţiamas, jei nëra "
-"sutvarkytas,\n"
-"tad saugu palikti já net kompiuteriuose, kuriems jo nereikia."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"portmapper tvarko RPC jungtis, kurios naudojamos protokoluose,\n"
-"tokiuose kaip NFS bei NIS. portmap serveris turi bűti paleistas "
-"kompiuteriuose,\n"
-"kurie veikia kaip serveriai protokolř, naudojančiř PS jungtis."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix yra pađto siuntimo agentas (MTA), tai yra programa,\n"
-"siunčianti pađtŕ iđ vieno kompiuterio á kitŕ."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Iđsaugo ir atkuria sistemos entropijos tvenkiná aukđtesnës kokybës\n"
-"atsitiktiniř skaičiř generavimui."
-
-#: ../../services.pm_.c:69
-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:71
-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 demonas leidţia automatiđkai atnaujinti IP marđrutizavimo lenteles,\n"
-"naudojant RIP protokolŕ. RIP plačiai naudojamas maţuose tinkluose, tačiau\n"
-"sudëtinguose tinkluose gali prireikti sudëtingesniř protokolř."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat protokolas leidţia tinklo vartotojams iđmatuoti\n"
-"vykdymo metrikas bet kuriam kompiuteriui iđ tinklo."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"rusers protokolas leidţia tinklo vartotojams suţinoti, kas yra\n"
-"prisijungćs prie kitř atsakinëjančiř kompiuteriř."
-
-#: ../../services.pm_.c:78
-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 protokolas leidţia nutolusiems vartotojams gauti sŕrađŕ\n"
-"vartotojř, prisijungusiř prie kompiuterio, kuriame veikia rwho demonas\n"
-"(panađiai kaip finger)."
-
-#: ../../services.pm_.c:80
-#, fuzzy
-msgid "Launch the sound system on your machine"
-msgstr "Startuojant paleisti X_Windows"
-
-#: ../../services.pm_.c:81
-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 yra priemonë, kuriŕ daugelis demonř naudoja uţrađyti\n"
-"log árađams á ávairias sistemos log bylas. Visada pravartu leisti syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: ../../services.pm_.c:84
-#, fuzzy
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Paleidţia ir sustabdo X đriftř serverá pakrovimo metu ir iđjungiant."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Pasirink kokias tarnybas ájungus paleisti automatiđkai"
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Spausdintuvas"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internetas"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Sistemos reţimas"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Nutolusio lpd spausdintuvo nuostatos"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Serveris, Duomenř baziř"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "árenginys"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "running"
-msgstr "Dëmesio"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "stopped"
-msgstr "Pridurti"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr ""
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-
-#: ../../services.pm_.c:224
-#, fuzzy
-msgid "On boot"
-msgstr "Yaboot"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Bűsena:"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Sektorius"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Likćs pasaulis"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Priëjimas prie Interneto"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedija - grafika"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-#, fuzzy
-msgid "Development"
-msgstr "Kűrimo, Tinklapiř"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Prisijungti prie interneto"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Tinklo interfeisas"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "SMB serverio hostas"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Ţaidimai"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "ţiniukas"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-#, fuzzy
-msgid "MandrakeStore"
-msgstr "privalomas"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Ádiegiamas paketas %s"
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Ađ negaliu perskaityti tavo skirsniř lentelës, ji man pernelyg sugadinta :(\n"
-"Pabandysiu iđvalyti blogus skirsnius"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Klaida"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Konfigűracija po ádiegimo"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Ádiegimo Tipo Konfiguracija"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Sveikiname!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Ádiegti"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Pridëti vartotojŕ"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Suţymima loopback byla %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Bloga atsarginë byla"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Bloga atsarginë byla"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Bloga atsarginë byla"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Paketř grupiř pasirinkimas"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Pađalinti eilć"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Iđmesti Windows(TM)"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Vartotojo vardas"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Prađom iđbandyti pelć"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Prađom bandyti vël"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Prađom bandyti vël"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "Jokio slaptaţodţio"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN jungtis"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Pasirink spausdintuvo jungtá"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Prađom pasirinkti klaviatűros iđdëstymŕ."
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Prađom spragtelëti ant skirsnio"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Bloga atsarginë byla"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Prađom iđbandyti pelć"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Bloga atsarginë byla"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Tinklo interfeisas"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Vartotojo vardas"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Ar naudoti kieto disko optimizavimŕ?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Ar naudoti kieto disko optimizavimŕ?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-#, fuzzy
-msgid "What"
-msgstr "Palauk"
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "Su ratuku"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "Su ratuku"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Modulio parinktys:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Tinklo konfigűravimas"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Nustatyti bylř sistemas"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Pasirinktys"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr ""
-"Prađom pasirinkti, prie kurios nuosekliosios jungties yra prijungtas tavo "
-"modemas."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Tinklo konfigűravimas"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Bloga atsarginë byla"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Prađom pasirinkti savo pelës rűđá."
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Bloga atsarginë byla"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Atstatyti iđ diskelio"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Prađom pasirinkti savo pelës rűđá."
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Kitas"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Ádiegti sistemŕ"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Atstatyti iđ bylos"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Atstatyti iđ bylos"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Prisitaikyti"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/Pagalba"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- Ankstesnis"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Bűsena:"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Bloga atsarginë byla"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Atstatyti iđ bylos"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Tekstas"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Pasirinkti paketus"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Bloga atsarginë byla"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Bloga atsarginë byla"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Bloga atsarginë byla"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Iđsaugoti á bylŕ"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Prađom iđbandyti pelć"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Tinklo konfigűravimas"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Tinklo konfigűravimas"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "LAN Konfiguravimas"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "LAN Konfiguravimas"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Nustatyti bylř sistemas"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s ádiegimas nepavyko. Ávyko tokia klaida:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "%s nerastas"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Atlikta"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Suţymëti diskelá"
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Ruođiamas ádiegimas"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-#, fuzzy
-msgid "Restart XFS"
-msgstr "grieţta"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "grieţta"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Suţymëti skirsnius"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-#, fuzzy
-msgid "Uninstall Fonts"
-msgstr "Iđmetami RPM'ai"
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN Konfiguravimas"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Prijungimo vieta"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Pasirink skirsnius, kuriuos nori suţymëti"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Biuras"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Nutraukti"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Spausdintuvas"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Ádiegti sistemŕ"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Pasirink bylŕ"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Nutolćs spausdintuvas"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Tavo sistemoje nerasta jokia tinklo plokđtë!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Ádiegti"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Tavo sistemoje nerasta jokia tinklo plokđtë!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Iđeiti iđ ádiegimo"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Interneto jungties dalinimas"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Interneto jungties dalinimas điuo metu ájungtas"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Interneto jungties dalinimas jau buvo sutvarkytas.\n"
-"Jis điuo metu ájungtas.\n"
-"\n"
-"Tai kŕ norëtum daryti?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "iđjungti"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "nieko"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "iđ naujo nustatyti"
-
-#: ../../standalone/drakgw_.c:146
-#, fuzzy
-msgid "Disabling servers..."
-msgstr "Ieđkoma áranga..."
-
-#: ../../standalone/drakgw_.c:154
-#, fuzzy
-msgid "Internet connection sharing is now disabled."
-msgstr "Interneto jungties dalinimas điuo metu iđjungtas"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Interneto jungties dalinimas điuo metu iđjungtas"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Interneto jungties dalinimas jau buvo sutvarkytas.\n"
-"Jis điuo metu iđjungtas.\n"
-"\n"
-"Tai kŕ norëtum daryti?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "ájungti"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:180
-#, fuzzy
-msgid "Internet connection sharing is now enabled."
-msgstr "Interneto jungties dalinimas điuo metu ájungtas"
-
-#: ../../standalone/drakgw_.c:201
-#, fuzzy
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Tavo kompiuteris gali bűti sutvarkytas taip, kad dalintřsi interneto "
-"jungtimi.\n"
-"\n"
-"Pastaba: tau reikia atskiros tinklo plokđtës, nustatytos vietiniam tinklui "
-"(LAN).\n"
-"\n"
-"Ar norëtum sutvarkyti interneto jungties dalinimŕ?"
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:228
-#, fuzzy, c-format
-msgid "Interface %s"
-msgstr "Interfeisas"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Tavo sistemoje nerasta jokia tinklo plokđtë!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Tavo sistemoje nerasta jokia tinklo plokđtë. prađom paleisti árangos "
-"nustatymo áranká."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Tinklo interfeisas"
-
-#: ../../standalone/drakgw_.c:244
-#, fuzzy, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Tavo sistemoje yra tik viena sutvarkyta tinklo plokđtë:\n"
-"\n"
-"%s\n"
-"\n"
-"Ar norëtum sutvarkyti savo vietiná tinklŕ điai plokđtei?"
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Prađom pasirinkti, kuri tinklo plokđtë bus prijungta prie vietinio tinklo."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Monitorius nenurodytas"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Ádiegimo Tipo Konfiguracija"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Modemo Nustatymai"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "CUPS serverio IP"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Rastas galimas LAN adreso konfliktas esamose %s nuostatose!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Aptikta ugniasienës konfigűracija!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Áspëjimas! Aptikta ugniasienës konfigűracija! Tau gali tekti kai kŕ "
-"iđtaisyti rankomis po ádiegimo."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Konfigűruojama..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Konfigűruojami skriptai, ádiegiamos programos, paleidţiami serveriai..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Yra problemř ádiegiant paketŕ %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Viskas buvo sukonfigűruota.\n"
-"Tu gali dabar dalintis interneto jungtimi su kitais kompiuteriais vietiniame "
-"tinkle, naudojant automatinć tinklo konfigűracijŕ (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-#, fuzzy
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-"Interneto jungties dalinimas jau buvo sutvarkytas.\n"
-"Jis điuo metu iđjungtas.\n"
-"\n"
-"Tai kŕ norëtum daryti?"
-
-#: ../../standalone/drakgw_.c:690
-#, fuzzy
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-"Interneto jungties dalinimas jau buvo sutvarkytas.\n"
-"Jis điuo metu ájungtas.\n"
-"\n"
-"Tai kŕ norëtum daryti?"
-
-#: ../../standalone/drakgw_.c:691
-#, fuzzy
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Interneto jungties dalinimas điuo metu ájungtas"
-
-#: ../../standalone/drakgw_.c:696
-#, fuzzy
-msgid "Internet connection sharing configuration"
-msgstr "Interneto jungtis ir nustatymas"
-
-#: ../../standalone/drakgw_.c:703
-#, 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 "Interneto jungties dalinimas"
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Tinklo konfigűravimas (%d adapteris)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profailas: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Iđtrinti profailŕ..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profailas iđtrynimui:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Naujas profailas..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Kompiuterio vardas:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Priëjimas prie Interneto"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipas: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Đliuzas (Gateway):"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfeisas:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Bűsena:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Nustatyti Priëjimŕ prie Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN konfiguravimas"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Tvarkyklë"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfeisas"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Protocol"
-msgstr "Protokolas"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Bűsena:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Nustatyti Vietiná Tinklŕ..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Meistras..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Nustatymř tikrinimas"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Sujungimas..."
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nepajungtas"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Sujungimas..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-#, fuzzy
-msgid "Disconnect..."
-msgstr "Sujungimas..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN Konfiguravimas"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapteris %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Ákrovos Protokolas"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Startavo ákrovos metu"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klientas"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktyvus"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktyvus"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Interneto jungties konfiguravimas"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Interneto Jungties Konfiguravimas"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Jungties tipas: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametrai"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Đliuzas (Gateway)"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet Korta"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klientas"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Nustatomas saugumo lygis"
-
-#: ../../standalone/drakxconf_.c:47
-#, fuzzy
-msgid "Control Center"
-msgstr "Prisijungti prie interneto"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Pasirink kurá áranká norëtum naudoti"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Kanadiečiř (Kvebeko)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "Europa"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Islandř"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "Europa"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "nuoseklioji"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "vartosena: keyboarddrake [--expert] [klaviatűra]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Prađom pasirinkti klaviatűros iđdëstymŕ."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Ar tu nori, kad BackSpace rađytř Delete konsolëje?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Pakeisk CD-ROM"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Prađom ákiđti Installation CD-ROM á kaupiklá ir paspausti Gerai, kai "
-"baigta.\n"
-"Jei tu jo neturi, paspausk mygtukŕ nutraukti, kad iđvengtum atnaujinimo."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "nepavyko paleisti gyvo atnaujinimo!!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-#, fuzzy
-msgid "logdrake"
-msgstr "draknet"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Byla/_Nauja"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Byla/Atidaryti"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Byla/Uţrađyti"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Byla/Uţrađyti Kaip"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Byla/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/Pasirinktys"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Pasirinkys/Bandymas"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Pagalba"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Pagalba/_Apie..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Vartotojo vardas"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "Patikrinti prievadus"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:191
-#, fuzzy
-msgid "matching"
-msgstr "Kompiuteris: "
-
-#: ../../standalone/logdrake_.c:192
-#, fuzzy
-msgid "but not matching"
-msgstr "Kompiuteris: "
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "LAN konfiguravimas"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "đeđëlinis"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "ádomu"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "suţymimas"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Nustatymai"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Uţrađyti Kaip..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Prađom pasirinkti savo pelës rűđá."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "serial_usb nerasta\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Ar emuliuoti trečiŕ klaviđŕ?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Pasirink vaizdo plokđtć"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Ákrovos árenginys"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "Aptikta ugniasienës konfigűracija!"
-
-#: ../../standalone/tinyfirewall_.c:44
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "Aptikta ugniasienës konfigűracija!"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Pasirink savo kalbŕ"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Parink ádiegimo klasć"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Kieto disko nustatymas"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Pelës nustatymas"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Pasirink klaviatűrŕ"
-
-#: ../../steps.pm_.c:19
-#, fuzzy
-msgid "Security"
-msgstr "curly"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Nustatyti bylř sistemas"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Suţymëti skirsnius"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Pasirinkti paketus"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Ádiegti sistemŕ"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Pridëti vartotojŕ"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Nustatyti tinklŕ"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Nustatyti servisus"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Ádiegti ákrovos tvarkyklć"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Sukurti ákrovos diskelá"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Nustatyti X"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Ádiegti sistemŕ"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Iđeiti iđ ádiegimo"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, fuzzy, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Adapteris %s: %s"
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Klaida atidarant %s árađymui: %s"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Tinklo Konfigűravimo Meistras"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Prađome palaukti. Ruođiamas ádiegimas"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Serveris, Tinklapiř/FTP"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer (client)"
-msgstr "Tinklo Kompiuteris, X klientas"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Biuras"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome darbo stotis"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Árankiai tavo Palm Pilot arba Visor"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Workstation"
-msgstr "KDE darbo stotis"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Serveris, Firewall/Routeris"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Biuro programos: tekstř redaktoriai (kword, abiword), skaičiuoklës (kspread, "
-"gnumeric), pdf perţiűros programos ir pan."
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Su garsu susijć árankiai: mp3 ir midi grotuvai, mikđeriai ir pan."
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Knygos ir HOWTO apie Linux ir Free Software"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE darbo stotis"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "IceWM, Window Maker, Enlightenment, Fvwm ir pan."
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedija - Vaizdas"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-"Árankiř rinkinys pađtui, naujienoms, ţiniatinkliui, bylř siuntimui ir "
-"pokalbiams"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Serveris, Duomenř baziř"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Tools to ease the configuration of your computer"
-msgstr "Ar tu nori iđbandyti nustatymus?"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedija - Garsas"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Priemonës"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentacija"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Konsolës árankiai"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Interneto stotis"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimedija stotis"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "LAN Konfiguravimas"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Daugiau grafiniř darbalaukiř (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"The K Desktop Environment, pagrindinë grafinë aplinka su dideliu rinkiniu "
-"pritaikytř programř"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Árankiai kurti ir kepti CD"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Biuro darbo stotis"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Server"
-msgstr "serveris"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm ir Pan."
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Grafikos programos, tokios kaip The GIMP"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C bei C++ kűrimo bibliotekos, programos ir include bylos"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer server"
-msgstr "Serveris, Tinklo Kompiuterio serveris"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Serveris, Pađto/Grupinio darbo/Naujienř"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Ţaidimř stotis"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Vaizdo grotuvai ir redaktoriai"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedija - grafika"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-"Programos pasilinksminimui: lentos, strateginiai, kortř ţaidimai ir pan."
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Rinkinys árankiř skaityti ir siřsti pađtŕ bei naujienas (pine, mutt, tin) ir "
-"narđyti ţiniatinklá (WWW)"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archyvavimas, emuliatoriai, stebëjimas"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Asmeniniai finansai"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Grafinë aplinka su vartotojui draugiđkř programř ir darbalaukio árankiř "
-"rinkiniu"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet gateway"
-msgstr "Priëjimas prie Interneto"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Garso ir vaizdo grojimo/redagavimo programos"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Kiti grafiniai darbalaukiai"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Redaktoriai, shell'ai, bylř árankiai, terminalai"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programos, skirtos tvarkyti tavo finansus, pvz. gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Asmeninës informacijos tvarkyklë (PIM)"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedija - CD kepimas"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Mokslinës darbo stotis"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Nutraukti"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Jokia"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Pasirink áprastŕ vartotojŕ:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Nutolćs spausdintuvas"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Dabar tu gali nurodyti parinktis moduliui %s."
-
-#~ msgid "Low"
-#~ msgstr "Ţemas"
-
-#~ msgid "Medium"
-#~ msgstr "Vidutinis"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr "Điame saugumo lygyje yra daugiau perspëjimř ir saugumo patikrinimř."
-
-#~ msgid "mount failed"
-#~ msgstr "primontuoti nepavyko"
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimedija"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Eksperto"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux tvarko laikŕ pagal GMT (Greenwich Mean Time),\n"
-#~ "ir paverčia já á vietiná laikŕ pagal tavo pasirinktŕ laiko juostŕ."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Prisijungti prie interneto"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Atsijungti nuo interneto"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Nustatyti tinklo jungtá (LAN arba interneto)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Á kurá diskŕ tu nori já perkelti?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome darbo stotis"
-
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "Vartotojas: "
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Prađom pasirinkti savo pelës rűđá."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Iđeiti"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Iđimamř laikmenř automatinis montavimas"
-
-#~ msgid "Active"
-#~ msgstr "Aktyvus"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Ne"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "\"%s\" modelio spausdintuvas buvo aptiktas prie "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Vietinio spausdintuvo jungtis"
-
-#~ msgid "Printer Device"
-#~ msgstr "Spausdintuvo árenginys"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Nutolćs CUPS serveris"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Nutolćs CUPS serveris"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Sistemos reţimas"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Kitas"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Prađom pasirinkti klaviatűros iđdëstymŕ."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Prađom spragtelëti ant skirsnio"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tipas: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Bloga atsarginë byla"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Nustatyti X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Spausdintuvo árenginys"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Nutraukti"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Gerai"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Pelë"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "toot"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "Iđbandoma jungtis..."
-
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "Iđbandoma jungtis..."
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "Sistema dabar prijungta prie interneto."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Pasirink dydá, kiek nori visko ádiegti"
-
-#~ msgid "Total size: "
-#~ msgstr "Bendras dydis: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Prađom palaukti, "
-
-#~ msgid "Total time "
-#~ msgstr "Bendra trukmë "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Naudoti esamus X11 nustatymus?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Prie kurio árenginio yra prijungtas tavo spausdintuvas\n"
-#~ "(atmink, kad /dev/lp0 yra LPT1 ekvivalentas)?\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#, fuzzy
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Áspëju, đi tinklo plokđtë jau buvo sutvarkyta.\n"
-#~ "Ar norëtum nustatyti jŕ iđ naujo?"
-
-#~ msgid "New"
-#~ msgstr "Naujas"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Iđmesti"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Prađom spragtelëti ant skirsnio"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Dviprasmiđkumas (%s), bűk tikslesnis\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (pagal nutylëjimŕ %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr ""
-#~ "Tavo pasirinkimas? (pagal nutylëjimŕ %s, ávesk `none' jei nieko nenori) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "negaliu atidaryti /etc/sysconfig/autologin skaitymui: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Ar tu nori iđ naujo paleisti tinklŕ"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Ar tu sutinki?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ruođiamasi iđ naujo paleisti tinklo árenginá:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Ruođiamasi iđ naujo ájungti tinklo árenginá %s. Ar tu sutinki?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Nebent tu tiksliai ţinai kitŕ variantŕ, áprastas pasirinkimas bűna \"/dev/"
-#~ "hda\"\n"
-#~ "(tai yra pirminis pagrindinis IDE kaupiklis) arba \"/dev/sda\" (pirmas "
-#~ "SCSI diskas)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Jungties tipas: "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Pasirink áprastŕ vartotojŕ:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Prađom iđbandyti pelć"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Pasirink norimŕ kalbŕ ádiegimui ir sistemos vartojimui"
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Tu turi sutikti su aukđčiau esančios licenzijos sŕlygomis, kad tćstum "
-#~ "ádiegimŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Prađom spausti ĽSutinku´, jei sutinki su jos sŕlygomis.\n"
-#~ "\n"
-#~ "\n"
-#~ "Prađom spausti ĽAtmetu´, jei nesutinki su jos sŕlygomis.\n"
-#~ "Ádiegimas bus nutrauktas, nekeičiant esamos konfigűracijos."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Pasirink norimŕ klaviatűros iđdëstymŕ iđ sŕrađo aukđčiau"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Jei nori, kad kitos kalbos (be tos, kuriŕ nurodei ádiegimo pradţioje)\n"
-#~ "bűtř prieinamos ádiegus sistemŕ, pasirink jas iđ aukđčiau esančio\n"
-#~ "sŕrađo. Jei nori visř, tiesiog spausk ĽVisos´."
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Pasirink:\n"
-#~ "\n"
-#~ " - Prisitaikyta: Jeigu esi pakankamai paţástamas su GNU/Linux, galësi "
-#~ "pasirinkti pagrindinć sistemos paskirtá. Ţiűrëk ţemiau dël smulkmenř.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Eksperto: Jeigu tau puikiai sekasi su GNU/Linux, ir nori smarkiai "
-#~ "prisitaikyti \n"
-#~ " ádiegimŕ. Kaip ir ĽPrisitaikytoje´ klasëje, tu galësi pasirinkti "
-#~ "pagrindinć \n"
-#~ " sistemos paskirtá. Bet, labai prađau, NESIRINK ĐITO, NEBENT TIKRAI "
-#~ "ŢINAI, KŔ DARAI!"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Tu turi apibrëţti, kam mađina bus naudojama. Pasirinkimai yra:\n"
-#~ "\n"
-#~ "* Darbo stotis: tai geriausias pasirinkimas, jei ruođiesi mađinŕ naudoti "
-#~ "daugiausiai kasdieniams darbams,\n"
-#~ " ástaigoje ar namie.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Kűrimo: jei ruođiesi điŕ mađinŕ naudoti daugiausiai programinës árangos "
-#~ "kűrimui, tai geras pasirinkimas. Tu\n"
-#~ " tada turësi ádiegtŕ pilnŕ rinkiná programř, skirtř kompiliuoti, derinti "
-#~ "ir formatuoti iđeities tekstus, bei kurti\n"
-#~ " programř paketus.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Serveris: jei ruođiesi naudoti điŕ mađinŕ naudoti kaip serverá, tai "
-#~ "geras pasirinkimas. Tiek bylř serverá\n"
-#~ " (NFS arba SMB), tiek spausdinimo serverá (Unix ar Microsoft Windows "
-#~ "stiliaus), autentikacijos (NIS),\n"
-#~ " duomenř bazës serverá ir pan. Jei taip, nesitikëk, kad bus ádiegti "
-#~ "visokie graţumai (KDE, GNOME. etc.)"
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Tu dabar gali pasirinkti grupć paketř, kuriuos nori ádiegti\n"
-#~ "ar atnaujinti.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX tada patikrins, ar yra pakankamai vietos ádiegti juos visus. Jei "
-#~ "ne,\n"
-#~ "perspës tave apie tai. Jei vis tiek norësi tćsti, pasirinktř grupiř "
-#~ "ádiegimas\n"
-#~ "bus pratćstas, tačiau kai kurie maţiau naudingi paketai bus iđmesti. "
-#~ "Sŕrađo\n"
-#~ "pabaigoje tu gali pasirinkti variantŕ \"Atskirř paketř pasirinkimas\", "
-#~ "tuo atveju\n"
-#~ "tu galësi narđyti po daugiau nei 1000 paketř ir pasirinkti juos po "
-#~ "vienŕ..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Dabar tu gali pasirinkti po vienŕ paketus, kuriuos\n"
-#~ "nori ádiegti\n"
-#~ "\n"
-#~ "\n"
-#~ "Tu gali iđskleisti ir suskleisti medá, spragtelëdamas mygtukus "
-#~ "kairiajame\n"
-#~ "apatiniame paketř lango kampe.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei labiau norëtum matyti paketus surikiuotus pagal abëcëlć, spragtelëk "
-#~ "ant\n"
-#~ "ikonos \"Perjungti tarp rikiavimo pagal grupes ar abëcëlć\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei nenori, kad tave áspëtř apie priklausomybes, spragtelëk ant\n"
-#~ "\"Tyliai patenkinti priklausomybes\". Jei taip padarysi, nepamirđk, kad "
-#~ "atţymëjus\n"
-#~ "vienŕ paketŕ, gali bűti atţymëti keletas kitř, kurie nuo jo priklauso."
-
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Jei turi visus CD iđ aukđčiau esančio sŕrađo, spausk Gerai.\n"
-#~ "Jei neturi në vieno iđ điř CD, spausk Nutraukti.\n"
-#~ "Jei trűksta tik kai kuriř CD, atţymëk juos ir tada spausk Gerai."
-
-#~ 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 "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Jei tu nori prijungti savo kompiuterá prie interneto arba\n"
-#~ "vietinio tinklo, pasirink teisingŕ variantŕ. Prađom ájungti árenginá "
-#~ "prieđ\n"
-#~ "pasirenkant teisingŕ variantŕ -- tai leis DrakX automatiđkai já "
-#~ "atpaţinti.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei tu neturi galimybës prisijungti nei prie interneto, nei prie vietinio "
-#~ "tinklo,\n"
-#~ "rinkis \"Iđjungti tinklŕ\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei nori sutvarkyti tinklŕ vëliau, baigus ádiegimŕ, arba jei jau baigei\n"
-#~ "konfigűruoti savo tinklo jungtis, rinkis \"Atlikta\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Nebuvo aptiktas joks modemas. Prađom pasirinkti nuoseklřjá prievadŕ,\n"
-#~ "prie kurio jis yra prijungtas.\n"
-#~ "\n"
-#~ "Ţinok, kad pirmasis nuoseklusis prievadas (COM1 MS Windows'uose)\n"
-#~ "vadinamas ttyS0 Linux'e."
-
-#~ 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 "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Tu dabar gali ávesti prisiskambinimo nuostatas. Jei tu\n"
-#~ "neţinai arba nesi tikras, kŕ ávesti, teisingŕ informacijŕ gali gauti iđ "
-#~ "savo\n"
-#~ "Interneto paslaugř tiekëjo (IPT). Jei tu neávesi DNS (vardř serverio)\n"
-#~ "informacijos čia, ji bus gauta iđ Interneto paslaugř tiekëjo jungimosi "
-#~ "metu."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Jei tavo modemas yra iđorinis, prađom ájungti já dabar, kad DrakX galëtř "
-#~ "atpaţinti já automatiđkai."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Prađau, ájunk savo modemŕ ir pasirink teisingŕ."
-
-#~ 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"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Jei tu nesi tikras, ar aukđčiau pateikta informacija yra teisinga,\n"
-#~ "arba tiksliai neţinai, kŕ ávesti, teisingŕ informacijŕ gali gauti iđ "
-#~ "savo\n"
-#~ "Interneto paslaugř tiekëjo (IPT). Jei tu neávesi DNS (vardř serverio)\n"
-#~ "informacijos čia, ji bus gauta iđ Interneto paslaugř tiekëjo jungimosi "
-#~ "metu."
-
-#~ 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 ""
-#~ "Tu dabar gali ávesti savo hosto vardŕ, jei to reikia. Jei tu\n"
-#~ "neţinai arba nesi tikras, kŕ ávesti, teisingŕ informacijŕ gali gauti iđ "
-#~ "savo\n"
-#~ "Interneto paslaugř tiekëjo (IPT)."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Tu dabar gali sutvarkyti savo tinklo árenginá:\n"
-#~ "\n"
-#~ " * IP adresas: jeigu jo neţinai, arba nesi tikras kŕ ávesti, pasiklausk "
-#~ "savo tinklo administratoriaus.\n"
-#~ " Tu turëtum neávesti IP adreso, jei pasirenki \"Automatinis IP\" "
-#~ "ţemiau.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" daţniausiai yra neblogas pasirinkimas. "
-#~ "Jeigu neţinai, arba nesi tikras\n"
-#~ " kŕ ávesti, pasiklausk savo tinklo administratoriaus.\n"
-#~ "\n"
-#~ " * Automatinis IP: Jeigu tavo tinkle naudojamas BOOTP ar DHCP "
-#~ "protokolas, pasirink đá variantŕ.\n"
-#~ " Jeigu pasirinksi já, nereikës nieko árađyti prie \"IP adreso\". "
-#~ "Jeigu tu neţinai, arba nesi tikras, ar reikia\n"
-#~ " pasirinkti đá variantŕ, pasiklausk tinklo administratoriaus."
-
-#~ 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 ""
-#~ "Tu dabar gali ávesti savo hosto vardŕ. Jeigu jo neţinai,\n"
-#~ "arba nesi tikras kŕ ávesti, pasiklausk savo tinklo administratoriaus."
-
-#~ 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 ""
-#~ "Tu dabar gali ávesti savo hosto vardŕ, jei to reikia. Jei tu neţinai\n"
-#~ "arba nesi tikras, kŕ ávesti, palik tuđčia."
-
-#~ 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 ""
-#~ "Dabar tu gali ávesti prisiskambinimo nuostatas. Jeigu tu gerai neţinai,\n"
-#~ "kŕ árađyti, teisingŕ informacijŕ gali gauti iđ savo ISP."
-
-#~ 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 ""
-#~ "Jeigu tu naudosi proxy, prađom dabar juos nustatyti. Jeigu tu dar "
-#~ "neţinai,\n"
-#~ "ar turëtum naudoti proxy, pasiklausk tinklo administratoriaus arba ISP."
-
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Dabar tu gali ádiegti kriptografijos paketŕ, jeigu tavo interneto juntis "
-#~ "buvo\n"
-#~ "gerai sutvarkyta. Pradţiai pasirink atvaizdá (mirror), iđ kurio parsiřsti "
-#~ "paketus,\n"
-#~ "o po to paţymëk, kuriuos paketus ádiegti.\n"
-#~ "\n"
-#~ "Atmink, kad tu turi pasirinkti atvaizdá ir kriptografijos paketus, "
-#~ "atitinkančius\n"
-#~ "ástatymř reikalavimus."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr ""
-#~ "Tu dabar gali pasirinkti laiko juostŕ, priklausomai nuo to, kur gyveni."
-
-#~ 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 ""
-#~ "Tu gali sukonfigűruoti vietiná spausdintuvŕ (prijungtŕ prie tavo "
-#~ "kompiuterio) arba\n"
-#~ "nutolusá spausdintuvŕ (prieinamŕ per Unix, Netware arba Microsoft Windows "
-#~ "tinklŕ)"
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "jei tu nori spausdinimo galimybës, prađom dabar pasirinkti vienŕ "
-#~ "spausdinimo\n"
-#~ "sistemŕ iđ CUPS ir LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS yra nauja, galinga ir lanksti spausdinimo sistema Unix sistemoms "
-#~ "(CUPS\n"
-#~ "reiđkia \"Common Unix Printing System\"). Tai yra spausdinimo sistema,\n"
-#~ "Mandrake Linux parenkama pagal nutylëjimŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR yra sena spausdinimo sistema, naudota ankstesnëse Mandrake Linux\n"
-#~ "versijose.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei tu neturi spausdintuvo, pasirink \"Jokia\"."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linux gali susitvarkyti su dauguma spausdintuvř tipř. Kiekvienas iđ\n"
-#~ "điř tipř reikalauja skirtingo nustatymo.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei tavo spausdintuvas yra fiziđkai prijungtas prie tavo kompiuterio,\n"
-#~ "pasirink \"Vietinis spausdintuvas\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei nori prieiti prie spausdintuvo, kuris yra nutolusioje Unix "
-#~ "sistemoje,\n"
-#~ "pasirink \"Nutolćs spausdintuvas\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Jei nori prieiti prie spausdintuvo, kuris yra nutolusiame Microsoft "
-#~ "Windows\n"
-#~ "kompiuteryje (arba Unix kompiuteryje, naudojančiame SMB protokolŕ), "
-#~ "pasirink\n"
-#~ "\"SMB/Windows 95/98/NT\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Prađau, ájunk savo spausdintuvŕ prieđ leisdamas DrakX já atpaţinti.\n"
-#~ "\n"
-#~ "Tu dabar turi ávesti điek tiek informacijos.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Spausdintuvo vardas: spausdinimo kaupykla (spooler) naudoja \"lp\" "
-#~ "kaip áprastŕ spausdintuvo vardŕ. Taigi,\n"
-#~ " tu turi turëti spausdintuvŕ, pavadintŕ \"lp\". Jei turi tik vienŕ "
-#~ "spausdintuvŕ, gali jam parinkti keletŕ vardř. Tu \n"
-#~ " tiesiog turi atskirti juos stačiu brűkđniu (\"|\"). Taigi, jei "
-#~ "patiktř prasmingesnis vardas, tu turi já árađyti pirmŕ,\n"
-#~ " pvz. \"Mano spausdintuvas|lp\". Spausdintuvas, kurio varde yra \"lp"
-#~ "\", bus parenkamas pagal nutylëjimŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "   * Aprađymas: jis nebűtinas, bet gali bűti naudingas, jei prie "
-#~ "kompiuterio yra prijungti keli spausdintuvai arba\n"
-#~ " leidţiama kitiems kompiuteriams prieiti prie đio spausdintuvo.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Vieta: jei nori árađyti điek tiek informacijos apie tai, kur tas "
-#~ "spausdintuvas yra, árađyk já čia (gali rađyt\n"
-#~ " kŕ tik nori, pavyzdţiui \"ant boso stalo\").\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Tu dabar turi ávesti điek tiek informacijos.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Spausdintuvo vardas: spausdinimo kaupykla (spooler) naudoja \"lp\" "
-#~ "kaip áprastŕ spausdintuvo vardŕ.\n"
-#~ " Taigi, tu turi turëti spausdintuvŕ, pavadintŕ \"lp\". Jei turi tik "
-#~ "vienŕ spausdintuvŕ, gali jam parinkti keletŕ\n"
-#~ " vardř. Tu tiesiog turi atskirti juos stačiu brűkđniu (\"|\"). Taigi, "
-#~ "jei patiktř prasmingesnis vardas, tu turi já\n"
-#~ " árađyti pirmŕ, pvz. \"Mano spausdintuvas|lp\". Spausdintuvas, kurio "
-#~ "varde yra \"lp\", bus parenkamas\n"
-#~ " pagal nutylëjimŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Kaupimo (spool) katalogas: tai katalogas, á kurá árađomi spausdinimo "
-#~ "darbai. Palik áprastŕ parinktá,\n"
-#~ " jeigu neţinai kŕ naudoti.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Spausdintuvo jungtis: jei tavo spausdintuvas yra fiziđkai prijungtas "
-#~ "prie tavo kompiuterio, rinkis\n"
-#~ " \"Vietinis spausdintuvas\". Jie nori prieiti prie spausdintuvo, "
-#~ "prijungto prie nutolusio Unix kompiuterio,\n"
-#~ " pasirink \"Nutolćs lpd spausdintuvas\".\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ " Jei nori prieiti prie spausdintuvo, kuris yra nutolusiame Microsoft "
-#~ "Windows kompiuteryje (arba\n"
-#~ " Unix kompiuteryje, naudojančiame SMB protokolŕ), pasirink \"SMB/"
-#~ "Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Jie nori prieiti prie spausdintuvo, esančio Netware tinkle, pasirink "
-#~ "\"Netware\".\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Tavo spausdintuvas nebuvo atpaţintas. Prađom ávesti pavadinimŕ "
-#~ "árenginio,\n"
-#~ "prie kurio jis yra prijungtas.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tavo ţiniai, dauguma spausdintuvř bűna prijungti prie pirmos "
-#~ "lygiagrečiosios jungties.\n"
-#~ "Tai vadinama \"/dev/lp0\" GNU/Linux sistemose, ir \"LPT1\" Microsoft "
-#~ "Windows."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Tu dabar turi pasirinkti savo spausdintuvŕ iđ sŕrađo aukđčiau."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "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 ""
-#~ "Prađom pasirinkti teisingas nuostatas, priklausomai nuo spausdintuvo.\n"
-#~ "Pasiţiűrëk á dokumentacijŕ, jeigu neţinai, kŕ čia ávesti.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tu galësi iđbandyti nustatymus sekančiame ţingsnyje, ir sugráţćs vël juos "
-#~ "pakeisti,\n"
-#~ "jeigu neveikia taip, kaip tu norëtum."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Dabar tu gali ávesti savo Mandrake Linux sistemos root slaptaţodá.\n"
-#~ "Slaptaţodis turi bűti ávestas du kartus patikrinimui, kad abu árađai "
-#~ "sutampa.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root yra sistemos administratorius ir vienintelis vartotojas, kuriam "
-#~ "leidţiama\n"
-#~ "konfigűruoti sistemŕ. Taigi, slaptaţodá pasirink atsargiai. Neteisëtas "
-#~ "root\n"
-#~ "vartojimas gali bűti ypatingai pavojingas điai sistemai, duomenims joje "
-#~ "ir kitoms,\n"
-#~ " su ja susijusioms sistemoms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Slaptaţodis turi bűti raidţiř ir skaičiř miđinys, maţiausiai 8 simboliř\n"
-#~ "ilgio. Jis turëtř niekada nebűti uţrađytas ant popieriaus.\n"
-#~ "\n"
-#~ "\n"
-#~ "Nepasidaryk slaptaţodţio pernelyg ilgo ir sudëtingo: tu turëtum já "
-#~ "prisiminti\n"
-#~ "be ypatingř pastangř."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Dabar tu gali sukurti vienŕ arba daugiau \"paprastř\" vartotojř.\n"
-#~ "Kiekvienam ţmogui, kuriam tu nori leisti naudotis điuo kompiuteriu,\n"
-#~ "tu gali sukurti vienŕ ar daugiau sŕskaitř (account). Atmink, kad\n"
-#~ "kiekvienas vartotojas turës savus nustatymus (grafinës aplinkos,\n"
-#~ "programř nuostatas, ir t.t. ), bei savo \"namř katalogŕ\", kuriame\n"
-#~ "tie nustatymai bus laikomi.\n"
-#~ "\n"
-#~ "\n"
-#~ "Pirmiausia, sukurk vartotojŕ sau pačiam! Net jeigu tu bűsi vienintelis "
-#~ "đio\n"
-#~ "kompiuterio vartotojas, tu NEGALI prisijungti kaip root vartotojas "
-#~ "sistemos\n"
-#~ "kasdieniam naudojimui: taip iđkiltř didelë saugumo grësmë. Kad padarytum\n"
-#~ "sistemŕ nebeámanomŕ naudoti, uţtenka padaryti porŕ klaidř.\n"
-#~ "\n"
-#~ "\n"
-#~ "Todël, tu turëtum prisijungti prie sistemos, naudodamasis vartotojo "
-#~ "sŕskaita,\n"
-#~ "kuriŕ bűsi čia sukűrćs, o pasisveikinti kaip root tik administravimo ar\n"
-#~ "prieţiűros darbams."
-
-#~ 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 ""
-#~ "Sukurti ákrovos diskelá labai rekomenduojama. Jei tau nepavyktř\n"
-#~ "ákrauti kompiuterio, tai vienintelis bűdas iđgelbëti sistemŕ jos\n"
-#~ "nediegiant iđ naujo."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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 ""
-#~ "Pagrindinës LILO bei GRUB nuostatos yra đios:\n"
-#~ " - Ákrovos árenginys: Nurodo árenginá (pvz. disko skirsná), kuriame\n"
-#~ "yra ákrovos sektorius. Pasirink \"/dev/hda\", nebent ţinai tiksliai "
-#~ "kitaip.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Pauzë prieđ ákeliant áprastŕ atvaizdá (image): Nurodo deđimtřjř\n"
-#~ "sekundës daliř kieká, kiek reikia palaukti, prieđ paleidţiant pirmŕ "
-#~ "atvaizdá.\n"
-#~ "Tai naudinga sistemoms, kurios kraunasi iđkart po klaviatűros ájungimo.\n"
-#~ "Ákrovos tvarkyklë nelaukia, jeigu \"pauzë\" yra nenurodyta arba lygi "
-#~ "nuliui.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Vaizdo reţimas: Tai nurodo VGA reţimŕ, pasirenkamŕ paleidţiant.\n"
-#~ "Yra galimos đios reikđmës:\n"
-#~ "\n"
-#~ " * normal: pasirinkti standartiná 80x25 tekstiná reţimŕ.\n"
-#~ "\n"
-#~ " * <skaičius>: naudoti atitinkamŕ tekstiná reţimŕ."
-
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 yra ákrovos tvarkyklë SPARC'ams: ji gali ákrauti\n"
-#~ "tiek GNU/Linux, tiek bet kokiŕ kitŕ operacijř sistemŕ, esančiŕ\n"
-#~ "kompiuteryje. Paprastai tos kitos operacijř sistemos yra teisingai\n"
-#~ "atpaţástamos ir ádiegiamos. Jeigu ne, tu gali pridëti árađus pats điame\n"
-#~ "lange. Bűk atidus ir pasirink teisingus parametrus.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tu taip pat gali uţdrausti priëjimŕ prie tř kitř operacijř sistemř\n"
-#~ "bet kam, jei iđtrinsi atitinkamus árađus. Bet tuo atveju, tau prireiks\n"
-#~ "ákrovos diskelio, kad jas ákrautum!"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Pagrindinës SILO nuostatos yra đios:\n"
-#~ " - Ákrovos tvarkyklës ádiegimas: Parodo, kur tu nori padëti "
-#~ "informacijŕ,\n"
-#~ "reikalingŕ ákrauti GNU/Linux. Pasirink \"Pirmasis kaupiklio sektorius "
-#~ "(MBR)\",\n"
-#~ "nebent ţinai tiksliai kitaip.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Pauzë prieđ ákeliant áprastŕ atvaizdá (image): Nurodo deđimtřjř\n"
-#~ "sekundës daliř kieká, kiek reikia palaukti, prieđ paleidţiant pirmŕ "
-#~ "atvaizdá.\n"
-#~ "Tai naudinga sistemoms, kurios kraunasi iđkart po klaviatűros ájungimo.\n"
-#~ "Ákrovos tvarkyklë nelaukia, jeigu \"pauzë\" yra nenurodyta arba lygi "
-#~ "nuliui."
-
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Atëjo laikas sukonfigűruoti X Window sistemŕ, kuri yra GNU/Linux GUI\n"
-#~ "(Grafinës vartotojo sŕsajos) pagrindas. Kad tai padarytum, tau\n"
-#~ "reikia sukonfigűruoti vaizdo plokđtć bei monitoriř. Dauguma ţingsniř\n"
-#~ "yra automatizuoti, ir tavo darbas gal bűt bus tik patikrinti, kas buvo\n"
-#~ "atlikta, ir pritarti nuostatoms :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Kai konfigűravimas bus baigtas, bus paleisti X'ai (nebent paprađysi\n"
-#~ "DrakX, kad to nedarytř) tam, kad galëtum patikrinti ir pamatytum,\n"
-#~ "ar nuostatos tau tinka. Jeigu ne, tu gali sugráţti ir pakeisti jas,\n"
-#~ "tiek kartř, kiek reikës."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Jeigu kas nors su X konfigűracija yra netvarkoje, naudok đias parinktis\n"
-#~ "teisingai nustatyti X Window sistemai."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Jeigu tu nori pasisveikinti grafiniam reţime, pasirink \"Taip\".\n"
-#~ "Kitu atveju rinkis \"Ne\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Tavo sistemŕ ruođiamasi perkrauti.\n"
-#~ "\n"
-#~ "Po perkrovimo tavo naujoji Mandrake Linux sistema bus ákrauta\n"
-#~ "automatiđkai. Jeigu nori pakrauti kitŕ operacijř sistemŕ, prađom\n"
-#~ "perskaityti papildomas instrukcijas."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Čekř (Programuotojo)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovakř (Programuotojo)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Kuriamo profailo vardas:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Árađyti /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Suţymëti visus skirsnius"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Suţymëjus visus skirsnius,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "visi duomenys, esantys điuose skirsniuose, bus prarasti"
-
-#~ msgid "Reload"
-#~ msgstr "Vël ákelti"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "Ar tu nori sukurti automatinio ádiegimo diskelá Linux dauginimui?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL nustatymas"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Su nutolusiu CUPS serveriu, tau đioje vietoje nereikia nustatinëti\n"
-#~ "jokiř spausdintuvř; jie bus automatiđkai atpaţástami,\n"
-#~ "nebent tu turi serverá, kuris yra kitame tinkle; tuomet turi árađyti\n"
-#~ "CUPS serverio IP adresŕ ir galbűt prievado numerá."
-
-#~ msgid "Remote queue"
-#~ msgstr "Nutolusi eilë"
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Nutolusi eilë"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Domeno vardas"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Spausdintuvo nëra"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Tinklo konfigűravimas"
-
-#~ msgid "Profile "
-#~ msgstr "Profailas "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Jungties tipas: "
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Prisijungti prie interneto"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Atsijungti nuo interneto"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Atsijungti nuo interneto"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Atsijungti nuo interneto"
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Jungties pavadinimas"
-
-#, fuzzy
-#~ msgid "average"
-#~ msgstr "iđkraipymai"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Áprastas"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Nuostatř bylos turinio nepavyko suprasti."
-
-#~ msgid "Adapter"
-#~ msgstr "Adapteris"
-
-#~ msgid "Disable network"
-#~ msgstr "Uţdrausti tinklŕ"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Uţdrausti tinklŕ"
-
-#~ 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 ""
-#~ "Tu dabar gali iđbandyti savo pelć. Naudok klaviđus ir ratukŕ,\n"
-#~ "kad patikrintum ar nuostatos geros. Jei ne, spausk ĽNutraukti´\n"
-#~ "ir pasirink kitŕ tvarkyklć."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (arba ADSL) jungtis"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Pelë"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "Tu gali tiesiog árađyti URI, kad prieitum prie spausdintuvo su CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Taip, spausdinti ASCII bandomŕjá puslapá"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Taip, spausdinti PostScript bandomŕjá puslapá"
-
-#~ msgid "Paper Size"
-#~ msgstr "Lapo dydis"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Ar iđstumti lapŕ po darbo?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint tvarkyklës nuostatos"
-
-#~ msgid "Color depth options"
-#~ msgstr "Spalvř gylio nuostatos"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Spausdinti tekstŕ kaip PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Taisyti stair-stepping tekstŕ?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Puslapiř skaičius vienam iđvesties puslapiui"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Kairysis/Deđinysis krađtai tađkais (1/72 colio)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Virđutinis/Apatinis krađtas tađkais (1/72 colio)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Papildomos GhostScript nuostatos"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Papildomos teksto nuostatos"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Atbulinë puslapiř seka"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Pasirink nutolusio spausdintuvo jungtá"
-
-#~ 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 ""
-#~ "Kiekviena spausdinimo eilë turi turëti pavadinimŕ (pavyzdţiui, lp).\n"
-#~ "Gali bűti nurodyti kiti parametrai, tokie kaip spausdintuvo aprađymas\n"
-#~ "ar jo vieta. Koks đio spausdintuvo vardas ir kaip jis yra prijungtas?"
-
-#~ 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 ""
-#~ "Kiekviena spausdinimo eilë (á kuriŕ nukreipiami spaudiniai) turi turëti\n"
-#~ "pavadinimŕ (daţniausiai lp) ir kaupimo katalogŕ, susietŕ su ja. Koks "
-#~ "pavadinimas\n"
-#~ "bei katalogas turëtř bűti naudojami điai eilei, ir kaip yra prijungtas "
-#~ "spausdintuvas?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Eilës pavadinimas"
-
-#~ msgid "Spool directory"
-#~ msgstr "Kaupimo katalogas"
-
-#~ msgid "Disable"
-#~ msgstr "Iđjungti"
-
-#~ msgid "Enable"
-#~ msgstr "Ájungti"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Norëdamas padaryti sistemŕ saugesne, pasirink \"Naudoti đeđëlinć bylŕ\" "
-#~ "ir\n"
-#~ "\"Naudoti MD5 slaptaţodţius\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Jeigu tavo tinklas naudoja NIS, pasirink \"Naudoti NIS\". Jeigu\n"
-#~ "neţinai, paklausk tinklo administratoriaus."
-
-#~ msgid "yellow pages"
-#~ msgstr "geltonieji puslapiai"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "LAN konfiguravimas"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Tiekëjo DNS 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Tiekëjo DNS 2"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Kaip tu nori prisijungti prie interneto?"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Pasirink bylŕ"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Iđbandoma jungtis..."
-
-#~ msgid "Configure..."
-#~ msgstr "Konfigűruojama..."
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Nustatymai: Pridëti suradimo vietŕ"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Đis paleidimo skriptas bando ákelti tavo USB pelës modulius."
-
-#~ msgid "Boot style configuration"
-#~ msgstr "Ákrovos stiliaus konfigűracija"
-
-#~ 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 ""
-#~ "Dabar, kai prisijungimas prie interneto yra sukonfigűruotas,\n"
-#~ "tavo kompiuteris gali bűti sutvarkytas dalintis đia interneto jungtimi.\n"
-#~ "Pastaba: reikia turëti atskirŕ tinklo plokđtć, per kuriŕ bűtř prijungtas\n"
-#~ "vietinis tinklas (LAN).\n"
-#~ "\n"
-#~ "Ar norëtum sutvarkyti interneto jungties dalinimŕsi?\n"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Tyliai patenkinti priklausomybes"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Nustatyti LILO/GRUB"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Sukurti ákrovos diskelá"
-
-#~ msgid "Choice"
-#~ msgstr "Pasirinkimas"
-
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr "horizontali graţiai atrodanti aurora"
-
-#~ msgid "vertical traditional aurora"
-#~ msgstr "vertikali tradicinë aurora"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitorius"
-
-#~ 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 ""
-#~ "Dabar tu gali pasirinkti ávairias savo sistemos nuostatas.\n"
-#~ "\n"
-#~ "* Naudoti diskinio kaupiklio optimizacijas: đi nuostata gali padidinti "
-#~ "kietojo disko spartŕ, bet\n"
-#~ "skirta naudoti tik\n"
-#~ " patyrusiems vartotojams. kai kurie lustai su klaidomis gali sugadinti "
-#~ "tavo duomenis, taigi bűk atsargus.\n"
-#~ " Branduolys turi sŕrađŕ blogř árenginiř, tačiau jei nori iđvengti "
-#~ "nemaloniř siurprizř, palik điŕ nuostatŕ iđjungtŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Pasirinkti saugumo lygá: tu gali pasirinkti sistemos saugumo lygá.\n"
-#~ " Plačiau apie tai skaityk pateiktuose aprađymuose. Paprasčiausiai, jei "
-#~ "neţinai kŕ pasirinkti, palik\n"
-#~ " áprastŕ variantŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Tikslus RAM atminties kiekis: deja, nëra standartinio bűdo, kaip "
-#~ "uţklausti BIOS, kiek kompiuteryje yra RAM atminties.\n"
-#~ " Dël đios prieţasties, Linux'ui gali nepavykti atpaţinti tikslaus RAM "
-#~ "kiekio. Tokiu atveju tau reikia\n"
-#~ " nurodyti teisingŕ jos kieká. Atmink, kad 2 ar 4 MB skirtumas tarp "
-#~ "atpaţintos ir esamos atminties yra normalus.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Iđimamř laikmenř automatinis montavimas: jeigu tu nenori montuoti "
-#~ "iđimamř laikmenř (CD, diskeliř, Zip ir pan.)\n"
-#~ " rankiniu bűdu, rađydamas \"mount\" ir \"umount\" paţymëk điŕ parinktá.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Iđvalyti \"/tmp\", kiekvienŕ kartŕ ákrovus: jei nori iđtrinti visas "
-#~ "bylas ir katalogus, esančius \"/tmp\", ákrovos metu,\n"
-#~ " paţymëk điŕ parinktá.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Ákrovos metu ájungti Num Lock: jei nori, kad NumLock bűtř ájungtas "
-#~ "ásikrovus sistemai, paţymëk điŕ parinktá.\n"
-#~ " Atkreipk dëmesá á tai, kad neturëtum to ájungti neđiojamuose "
-#~ "kompiuteriuose, ir kad X'uose NumLock gali veikti arba neveikti."
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr "Atleiskite, bet pađto konfiguracija dar nepadaryta. Bűkite kantrűs."
-
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "Sveiki atvykć pas Tinklo Konfiguravimo Meistrŕ.\n"
-#~ "Kokius komponentus norite konfiguruoti?\n"
-
-#~ msgid "Internet/Network access"
-#~ msgstr "Internet/Tinklo priëjimas"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Ávairűs"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Ávairűs klausimai"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Negalima naudoti supermount su aukđtu saugumo lygiu"
-
-#~ 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 ""
-#~ "dëmesio: ĐIAME SAUGUMO LYGYJE, ROOT'ui NELEIDŢIAMA PASISVEIKINTI "
-#~ "KONSOLËJE!\n"
-#~ "jei nori tapti root, turi pasisveikinti kaip vartotojas, o tada naudoti "
-#~ "Ľsu´.\n"
-#~ "Bendriau paëmus, nemanyk savo kompiuterio naudoti kam nors kitam, nebent "
-#~ "serveriui.\n"
-#~ "Tu buvai áspëtas."
-
-#~ 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 ""
-#~ "Bűk atsargus, jei numlock bus ájungtas, daugybë klaviđř gali veikti\n"
-#~ "kaip skaičiai vietoj normaliř raidţiř (pvz., paspaudus `p' bus `6')"
-
-#~ msgid "not connected"
-#~ msgstr "nepajungtas"
-
-#, fuzzy
-#~ msgid "Actions"
-#~ msgstr "Vieta"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Mokslinës programos"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Serveris, Bylř/Spausdinimo/Samba"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "Serveris, DNS/DHCP "
-
-#~ msgid "First DNS Server"
-#~ msgstr "Pirmasis DNS serveris"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Antrasis DNS serveris"
-
-#~ msgid "using module"
-#~ msgstr "naudojamas modulis"
-
-#~ msgid "Development, Database"
-#~ msgstr "Kűrimas, Duomenř bazës"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr "Kűrimo, Integruotos Aplinkos"
-
-#~ msgid "Development, Standard tools"
-#~ msgstr "Kűrimo, Standartinës priemonës"
-
-#~ msgid ""
-#~ "\n"
-#~ "Warning:\n"
-#~ "Applying the changes while running may crash your X environnement."
-#~ msgstr ""
-#~ "\n"
-#~ "Perspëjimas:\n"
-#~ "Pakeitimř pritaikymas veikiant X gali baigtis avarija."
-
-#~ msgid ""
-#~ "\n"
-#~ "If you continue, I will shut down your %s environnement"
-#~ msgstr ""
-#~ "\n"
-#~ "Jeigu tćsite ađ iđjungsiu jűsř %s aplinkŕ"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s jau naudojama"
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr "%s: Tai ne pagrindinis skirsnis, prađom pasirinkti kitŕ"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(gali sugadinti duomenis)"
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (serijinë)"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI pelë"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Pridëti paketř suradimo vietŕ"
-
-#~ msgid "After %s partition %s,"
-#~ msgstr "Kada %s skirsnis %s, "
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Alcatel modemas"
-
-#~ 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 ""
-#~ "Visos naujai nustatytos sritys norint jas naudoti turi bűti "
-#~ "suformatuotos\n"
-#~ "(formatavimas reiđia falinës sistemos sukűrimŕ). Dabar jűs gal bűt "
-#~ "norite\n"
-#~ "iđnaujo suformatuoti jau formatuotas sritis, kad iđtrinti jose esančius\n"
-#~ "duomenis. Atminkite kad iđnaujo formatuoti jau formatuotas sitis nëra\n"
-#~ "bűtina, nes jose gali bűti reikalinga informacija."
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB pelë"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB pelë (2 klaviđai)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB pelë (3+ klaviđai)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB pelë"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB pelë (2 klaviđai)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB pelë (3+ klaviđai)"
-
-#~ 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 ""
-#~ "Ar tu tikri, kad esi ekspertas? \n"
-#~ "tau bus leidţiama daryti galingus, bet ir pavojingus dalykus čia.\n"
-#~ "\n"
-#~ "Tavćs bus klausiama, pvz: ĽNaudoti đeđëlinć bylŕ slaptaţodţiams?´,\n"
-#~ "ar esi pasiruođć atsakyti á tokius klausimus?"
-
-#~ msgid ""
-#~ "At this point, you need to choose what\n"
-#~ "partition(s) to use to install your new Mandrake Linux system. If "
-#~ "partitions\n"
-#~ "have been already defined (from a previous installation of GNU/Linux or "
-#~ "from\n"
-#~ "another partitioning tool), you can use existing partitions. In other "
-#~ "cases,\n"
-#~ "hard drive partitions must be defined.\n"
-#~ "\n"
-#~ "\n"
-#~ "To create partitions, you must first select a hard drive. You can select "
-#~ "the\n"
-#~ "disk for partitioning by clicking on \"hda\" for the first IDE drive, "
-#~ "\"hdb\" for\n"
-#~ "the second or \"sda\" for the first SCSI drive and so on.\n"
-#~ "\n"
-#~ "\n"
-#~ "To partition the selected hard drive, you can use these options:\n"
-#~ "\n"
-#~ " * Clear all: this option deletes all partitions available on the "
-#~ "selected hard drive.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Auto allocate:: this option allows you to automatically create Ext2 "
-#~ "and swap partitions in free space of your\n"
-#~ " hard drive.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Rescue partition table: if your partition table is damaged, you can "
-#~ "try to recover it using this option. Please\n"
-#~ " be careful and remember that it can fail.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Undo: you can use this option to cancel your changes.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Reload: you can use this option if you wish to undo all changes and "
-#~ "load your initial partitions table\n"
-#~ "\n"
-#~ "\n"
-#~ " * Wizard: If you wish to use a wizard to partition your hard drive, "
-#~ "you can use this option. It is recommended if\n"
-#~ " you do not have a good knowledge in partitioning.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Restore from floppy: if you have saved your partition table on a "
-#~ "floppy during a previous installation, you can\n"
-#~ " recover it using this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Save on floppy: if you wish to save your partition table on a floppy "
-#~ "to be able to recover it, you can use this\n"
-#~ " option. It is strongly recommended to use this option\n"
-#~ "\n"
-#~ "\n"
-#~ " * Done: when you have finished partitioning your hard drive, use this "
-#~ "option to save your changes.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, you can reach any option using the keyboard: navigate "
-#~ "trough the partitions using Tab and Up/Down arrows.\n"
-#~ "\n"
-#~ "\n"
-#~ "When a partition is selected, you can use:\n"
-#~ "\n"
-#~ " * Ctrl-c to create a new partition (when a empty partition is "
-#~ "selected)\n"
-#~ "\n"
-#~ " * Ctrl-d to delete a partition\n"
-#~ "\n"
-#~ " * 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 emgergency boot situations."
-#~ msgstr ""
-#~ "Dabar tu turi pasirinkti, kuriuos skirsnius naudoti tavo naujai Mandrake "
-#~ "Linux \n"
-#~ "sistemai ádiegti. Jei skirsniai jau buvo apibrëţti (iđ praeito ádiegimo "
-#~ "arba kitu dalinimo árankiu),\n"
-#~ "tu gali naudoti esančius skirsnius. Kitu atveju, skirsniai turi bűti "
-#~ "apibrëţti.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kad sukurtum skirsnius, tu pirmiausia turi pasirinkti kietŕjá diskŕ. "
-#~ "Diskŕ dalinimui\n"
-#~ "gali pasirinkti, paspaudćs ant \"hda\" jei nori pirmo IDE kaupiklio, \"hdb"
-#~ "\" -- antro,\n"
-#~ "arba \"sda\", jei renkiesi pirmŕjá SCSI kaupiklá ir t.t.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kad sudalintum skirsniais pasirinktŕ kietŕjá diskŕ, gali naudotis vienu "
-#~ "iđ điř variantř:\n"
-#~ "\n"
-#~ " * Iđvalyti viskŕ: đis variantas iđtrina visus skirsnius, esančius "
-#~ "pasirinktame kietajame diske.\n"
-#~ "\n"
-#~ "\n"
-#~ "   * Automatiđkai paskirti: đis variantas leidţia automatiđkai sukurti "
-#~ "Ext2 bei swap skirsnius laisvoje tavo\n"
-#~ " disko vietoje.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Iđgelbëti skirsniř lentelć: jei disko skirsniř lentelë yra "
-#~ "sugadinta, tu gali bandyti atstatyti jŕ su điuo variantu.\n"
-#~ " Bűk atsargus ir prisimink, kad tai gali nepavykti.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Atđaukti: tu gali naudoti đá variantŕ, kad atđauktum visus tavo "
-#~ "pakeitimus.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Iđ naujo: tu gali rinktis đá variantŕ, kad atsisakytum visř savo "
-#~ "pakeitimř ir ákeltum pradinć skirsniř lentelć.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Meistras: jei tu nori, kad meistras tau padëtř sudalinti kietŕjá "
-#~ "diskŕ, rinkis đá variantŕ. Tai rekomenduojama, jeigu\n"
-#~ " tu nelabai iđmanai apie skirsniř dalinimŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Atkurti iđ diskelio: jei tu iđsaugojai savo skirsniř lentelć á "
-#~ "diskelá ádiegdamas praeitŕ kartŕ, tu gali atkurti jŕ\n"
-#~ " naudodamasis điuo variantu.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Iđsaugoti á diskelá: jei tu nori iđsaugoti savo skirsniř lentelć á "
-#~ "diskelá, kad galëtum paskui atkurti jŕ, rinkis đá\n"
-#~ " variantŕ. labai rekomenduojama, kad tu tai padarytum.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Atlikta: jei tu baigei dalinti savo kietŕjá diskŕ, rinkis đá "
-#~ "variantŕ, kad iđsaugotum visus pakeitimus.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tavo ţiniai, tu gali pasiekti bet kurá variantŕ naudodamasis klaviatűra: "
-#~ "vaikđčiok tarp skirsniř su Tab bei\n"
-#~ "Aukđtyn/Ţemyn rodyklëmis.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kai skirsnis yra parinktas, gali naudoti:\n"
-#~ "\n"
-#~ "* Ctrl-c kad sukurtum naujŕ skirsná (jei parinktas tuđčias skirsnis)\n"
-#~ "\n"
-#~ "* Ctrl-d kad iđtrintum skirsná.\n"
-#~ "\n"
-#~ "* Ctrl-m kad nurodytum prijungimŕ tađkŕ."
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Auto ádiegimo diskelis"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "Automatinë skiriamoji geba"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Automatinë skiriamosios gebos paieđka"
-
-#~ msgid "Available packages"
-#~ msgstr "Prieinami paketai"
-
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "Bloga kickstart byla %s (nepavyko %s)"
-
-#~ msgid "Cable connecion"
-#~ msgstr "Kabelinë jungtis"
-
-#~ msgid "Category"
-#~ msgstr "Kategorijŕ"
-
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ "Pokalbiř (IRC arba instant messaging) programos, kaip xchat, licq, gaim, "
-#~ "ir bylř siuntimo programos"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Tikrinamos priklausomybës"
-
-#~ 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 Mandrake Linux "
-#~ "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"
-#~ msgstr ""
-#~ "Pasirinkite \"Ádiegti\" jeigu nebuvo ádiegta ankstesniř GNU/Linux "
-#~ "versijř\n"
-#~ "arba jűs norite turëti jř keletŕ.\n"
-#~ "\n"
-#~ "Pasirinkite \"Iđgelbëti\" jeigu norite iđgelbëti jau ádiegtŕ Mandrake "
-#~ "Linux \n"
-#~ "\n"
-#~ "\n"
-#~ "Pasirinkite:\n"
-#~ "\n"
-#~ " - Rekomenduojama: Jeigu jums ansčiau nëra tekć ádiegti GNU/Linux.\n"
-#~ "\n"
-#~ " - Vartotojiđka: Jeigu jau turëjote reikalř su GNU/Linux. Galësite "
-#~ "pasirinkti\n"
-#~ "pirminć kompiuterio funkcijŕ\n"
-#~ "\n"
-#~ " - Eksperto: Jeigu jűs puikiai sekasi su GNU/Linux iđsprćsti rimtas "
-#~ "uţduotis.\n"
-#~ "Kaip ir konfiguracijoje \"Vartotojiđka\" jűs galësite pasirinkti koks "
-#~ "bus\n"
-#~ "đios sistemos panaudojimas.\n"
-#~ " Bet Prađome, Prađome NESIRINKITE TAI, APIE KŔ JŰS NIEKO NEŢINOTE!\n"
-
-#~ 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 ""
-#~ "Pasirinkite \"Ádiegti\" jeigu nebuvo ádiegta ankstesniř Linux versijř "
-#~ "arba\n"
-#~ "jűs norite turëti jř keletŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Pasirinkite \"Atnaujinti\" jeigu norite atnaujinti ankstesnes Mandrake\n"
-#~ "Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen) or 6.0 (Venus),\n"
-#~ "6.1 (Helios), Gold 2000 arba 7.0 (Air)."
-
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Ádiegti ar atnaujinti"
-
-#~ msgid "Choose other CD to install"
-#~ msgstr "Pasirinkite kitŕ CD ádiegimui"
-
-#~ msgid "Collapse all"
-#~ msgstr "Iđskleisti visus"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Bendravimo priemonës"
-
-#~ msgid "Configure local network"
-#~ msgstr "Nustatyti vietiná tinklŕ"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Nustatyti interneto jungtá / Nustatyti vietiná tinklŕ"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Nurodyti laiko juostŕ"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Patvirtink slaptaţodá"
-
-#~ msgid "Cryptographic"
-#~ msgstr "Kriptografija"
-
-#~ msgid "Customized"
-#~ msgstr "Prisitaikyta"
-
-#~ msgid "Czech"
-#~ msgstr "Čekř"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Duomenř baziř klientai ir serveriai (mysql bei postgresql)"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Kűrimas C/C++"
-
-#~ msgid "Directory"
-#~ msgstr "Katalogas"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Uţdrausti interneto jungtá"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr "Ar Jűs norite nustatyti savo modemo dialup prisijungimŕ?"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Ar Jűs norite nustatyti savo sistemos vietiná tinklŕ?"
-
-#~ msgid "Do you want to use LILO?"
-#~ msgstr "Ar norite naudoti LILO?"
-
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "Parsiunčiami đifruoti paketai"
-
-#~ 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 ""
-#~ "Pirmiausia DrakX pabandys paieđkoti PCI ir SCSI árenginiř. Jeigu jis "
-#~ "suras\n"
-#~ "ir ţinos kokias tvarkykles jam (jiems) naudoti jis automatiđkai jas "
-#~ "ádës.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeigu jűsř SCSI árenginys yra ISA plokđtë arba DrakX neţinos kaip já "
-#~ "valdyti\n"
-#~ "arba jűs iđvis jo neturite jums bus praneđta. Jeigu jűs neturite, "
-#~ "atsakykite\n"
-#~ "\"Ne\". Jeigu turite vienq arba daugiau atsakykite \"Taip\" ir tvarkykliř "
-#~ "sŕrađas\n"
-#~ "bus jums parodytas\n"
-#~ "\n"
-#~ "\n"
-#~ "Kai jűs pasirinksite tvarkyklć, DrakX paprađys nurodyti jos nustatymus.\n"
-#~ "Pirmiausia leiskite árangai pačiai nusistatyti. Daţnai tai puikiai "
-#~ "suveikia\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeigu jums nepavyks, nepamirđkite, kad informacijos apie jűsř árangŕ "
-#~ "gali\n"
-#~ "suteikti dokumentacija arba Windows (jeigu jűs turite điŕ sistemŕ).\n"
-#~ "Tai tuos nustatymus jűs turite perduoti tvarkyklei."
-
-#~ msgid "ECI modem"
-#~ msgstr "ECI modemas"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Startuojant ájungti Num Lock"
-
-#~ msgid ""
-#~ "Enter a floppy to create an HTP enabled boot\n"
-#~ "(all data on floppy will be lost)"
-#~ msgstr ""
-#~ "Ádëkite diskelá á kaupiklá, kad sukurti HTP diskelá\n"
-#~ "(Visi duomenys esantys dikelyje bus prarasti)"
-
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "Viskas sukonfiguruota.\n"
-
-#~ msgid "Expand all"
-#~ msgstr "Iđskleisti visus"
-
-#~ msgid "Find Package"
-#~ msgstr "Rasti paketŕ"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Rasti bylŕ su atitinkamu paketu"
-
-#~ msgid "Finding leaves"
-#~ msgstr "Ieđkoma lapř"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Lapř ieđkojimas điek tiek uţtruks"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "FTP ir HTTP metodams tu turi nurodyti vietŕ, kur yra hdlist\n"
-#~ "Ji turi bűti nurodyta santykinai aukđčiau esančiam URL"
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Ar pamirđti pakeitimus?"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Paprasta 3 klaviđř pelë (serijinë)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Paprasta pelë (serijinë)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (serijinë)"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Nurodyk vardŕ (pvz: `extra', `commercial')"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr "Ruođiamasi ádiegti %d MB. Jűs galite pasirinkti daugiau programř"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Ruođiamasi iđmesti árađŕ %s"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Grafinë sŕsaja"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "SILO turi sekančius árađus.\n"
-#~ "Jűs galite pakeisti esamus arba pridëti naujř."
-
-#~ 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?"
-#~ msgstr ""
-#~ "Ađ galiu pabandyti surasti prieinamŕ skiriamŕjŕ gebŕ (pvz.: 800x600).\n"
-#~ "Bet kompiuteris gali \"pakibti\"\n"
-#~ "Ar Jűs norite pabandyti?"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Ađ radau ISDN plokđtć:\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"
-#~ "\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"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Jeigu DrakX nepavyko surasti jűsř pelës arba jűs pats norite jŕ\n"
-#~ "nurodyti; jums bus parodytas sŕrađas\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeigu jűs sutinkate su DrakX nustatymais tiesiog paspauskite OK.\n"
-#~ "Kitokiu atveju pasirinkite pelć kuri jums labiausiai tinka.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeigu pas jus yra pelë su serijine jungtimi jums taip pat reikës "
-#~ "nurodyti\n"
-#~ "prie kokios jungties ji yra prijungta."
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ "Jei tavo ADSL modemas yra Alcatel, pasirink Alcatel, kitu atveju -- ECI."
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "Kurioje valstybëje tu dabar esi?"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Ádiegti/Iđgelbëti"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "SILO ádiegimas nepavyko. Ávyko sekanti klaida:"
-
-#~ msgid "Installed packages"
-#~ msgstr "Ádiegti paketai"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Interneto árankiai"
-
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "Ádiegimŕ reikia perstartuoti iđ diskelio"
-
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "Ádiegimŕ reikia perstartuoti su naujais parametrais"
-
-#~ 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 ""
-#~ "Labai rekomenduojama čia pasirinkti \"Taip\". Jeigu jűs vëliau \n"
-#~ "ádieginësite Microsoft Windows ji naujai uţrađys startavimo sektoriř.\n"
-#~ "Tada nepadarć startavimo diskelio kaip mes patarëje nebegalësite\n"
-#~ "startuoti GNU/Linux."
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ 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) gali startuoti ir kitas Operacines sistemas.\n"
-#~ "Normaliai jos yra tinkamai nustatomos per ádiegiant. Jeigu jűsř sistema\n"
-#~ "neaptikta jűs dabar galite pridëti vienŕ arba keletŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeigu jűs nenorite kuriř nors naudoti galite iđimti (tada startavimo\n"
-#~ "diskelis gai uţkrauti tŕ sistemŕ)."
-
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "Tiesus (reikalingas keletui SCSI kaupikliř)"
-
-#~ msgid "Local LAN"
-#~ msgstr "Lokalus LAN"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ "Vietinis tinklas jau buvo sukonfigűruotas.\n"
-#~ "Ar tu nori:"
-
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech pelë"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (serijinë)"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft pelë"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft 2.1A arba vëlesnës Rev (serijinë)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Suderinama su Microsoft (serijinë)"
-
-#~ msgid "Move your wheel!"
-#~ msgstr "Pajudinkite ratukŕ!"
-
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Tinklo adapteris 1 (eth0):"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Cdrom neprieinamas (nieko nëra /mnt/cdrom)"
-
-#~ msgid "No match"
-#~ msgstr "Nieko nerasta"
-
-#~ msgid "No more match"
-#~ msgstr "Daugiau nieko nerasta"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "Nerasta galimř variantř\n"
-#~ "Pabandykite kitŕ video plokđtć arba monitoriř"
-
-#~ msgid "Other countries"
-#~ msgstr "Kitos valstybës"
-
-#~ msgid "Package"
-#~ msgstr "Paketas"
-
-#~ msgid "Password:"
-#~ msgstr "Slaptaţodis:"
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Prađome pasirinkti skirsná, kurá Jűs naudosite kaip pagrindiná."
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Prađom patvirtinti sekančiŕ informacijŕ"
-
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, bibliotekos, árankiai"
-
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Konfigűruojama..."
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Rescue"
-#~ msgstr "Iđgelbëti"
-
-#~ msgid "SILO main options"
-#~ msgstr "Bendri SILO nustatymai"
-
-#~ msgid "Sciences"
-#~ msgstr "Mokslai"
-
-#~ msgid "Sciencific Workstation"
-#~ msgstr "Mokslinës darbo stotis"
-
-#~ msgid "Search"
-#~ msgstr "Paieđka"
-
-#~ msgid "Searching root partition."
-#~ msgstr "Ieđkomas pagrindinis skirsnis."
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Pasirink dydá, kiek nori ádiegti"
-
-#~ 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 ""
-#~ "Pasirinkite:\n"
-#~ "\n"
-#~ " - Rekomenduojama: Jeigu jums ansčiau nëra tekć ádiegti Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Vartotojiđka: Jeigu jau turëjote reikalř su Linux. Galësite "
-#~ "pasirinkti\n"
-#~ "\"Normali\" bendros reikđmës sistemos ádiegimui, \"Kűrimo\" jeigu "
-#~ "naudojate\n"
-#~ "savo kompiuterá kurti programoms ir \"Serverinë\" jeigu norite turëti "
-#~ "bendros paskirties (pvz. pađto, spausdintuvo...) serverá.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Eksperto: Jeigu jűs puikiai sekasi su GNU/Linux iđsprćsti rimtas "
-#~ "uţduotis.\n"
-#~ "Kaip ir konfiguracijoje \"Vartotojiđka\" jűs galësite pasirinkti koks "
-#~ "bus\n"
-#~ "đios sistemos panaudojimas."
-
-#~ msgid "Setup SCSI"
-#~ msgstr "Nustatyti SCSI"
-
-#~ msgid "Show less"
-#~ msgstr "Rodyti maţiau"
-
-#~ msgid "Show more"
-#~ msgstr "Rodyti daugiau"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Rodyti tik lapus"
-
-#~ msgid "Shutting down"
-#~ msgstr "Bandoma iđjungti"
-
-#~ msgid "Size: %s MB"
-#~ msgstr "Dydis: %s MB"
-
-#~ msgid "Slovakian"
-#~ msgstr "Slovakř"
-
-#~ msgid "Sort by"
-#~ msgstr "Rűđiuoti pagal"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Sekančius paketus ruođiamasi iđmesti"
-
-#~ 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 ""
-#~ "Dabar yra ádiegiami paketai, kuriuos jűs pasirinkote. Tai turëtř\n"
-#~ "keletŕ minučiř uţtrukti, tačiau jeigu jűs pasirinkote atnaujinti\n"
-#~ "tai turëtř uţtrukti kiek ilgiau."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Đi ţymë jau naudojama"
-
-#~ 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 Mandrake Linux 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 sekcija yra skirta vietinio tinklo (LAN) nustatymui.\n"
-#~ "\n"
-#~ "Jeigu jűs pasakyrite \"Taip\" DrakX pabandys pats surasti tinklo kortŕ.\n"
-#~ "PCI árenginys turëtř bűti surastas ir prijungtas automatiđkai. Tačiau\n"
-#~ "jeigu jűsř turite ISA árenginá automatinis aptikimas nesuveiks ir jűs\n"
-#~ "turësite nurodyti tvarkyklć iđ sŕrađo, kuris tada pasirodys.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dël SCSI árenginiř, leiskite tvarkyklei pirmiau pačiai pabandyti "
-#~ "árenginá,\n"
-#~ "nes kitokio atveju jums teks nurodyti nustatymus iđ Windows Control "
-#~ "Panel\n"
-#~ "konfiguracijos\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeigu jűs ádiegiate Mandrake Linux á kompiuterá, kuris jau yra tinkle\n"
-#~ "tinklo administratorius jums turi nurodyti informacijŕ apie IP adresŕ,\n"
-#~ "tinklo subkaukć ir tinklo kaukć. Ádiegiant privačiam tinkle namuose, jums "
-#~ "tai\n"
-#~ "reikës pasirinkti pačiam."
-
-#~ 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 ""
-#~ "Ađ pabandysiu ávairias galimas skiriamasias gebas.\n"
-#~ "Jűsř ekranas mirgës...\n"
-#~ "Jeigu norite, galite já iđjungti, Jűs iđgirsite pyptelëjimŕ, kai bus "
-#~ "baigta"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Perjungti tarp ádiegtř ir prieinamř"
-
-#~ msgid "Tree"
-#~ msgstr "Medis"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Ar bandyti surasti %s árenginius"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Ar bandyti surasti PCI árenginius"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Ar pabandyti surasti PCMCIA kortas?"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Ar bandyti surasti modemŕ?"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL katalogo, kuriame yra RPM'ai"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB pelë (su 3 arba daugiau klaviđř)"
-
-#~ msgid "Update location"
-#~ msgstr "Atnaujinti suradimo vietŕ"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Atnaujinama RPM bazë"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Naudoti MD5 slaptaţodţius"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Naudoti DiskDrake"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Naudoti đeđëlinć bylŕ"
-
-#~ msgid "User name:"
-#~ msgstr "Vartotojo vardas:"
-
-#~ 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 ""
-#~ "Sveiki, besinaudojantys LILO, operaciniu sistemu ikrovos tvarkykle!\n"
-#~ "\n"
-#~ "Noredami suzinoti pasirinkimu sarasa, spauskite <TAB>.\n"
-#~ "\n"
-#~ "Noredami ijungti viena is ju, irasykite jo pavadinima ir spauskite "
-#~ "<ENTER>\n"
-#~ "arba laukite %d sekundziu ijungimo pagal nutylejima.\n"
-#~ "\n"
-
-#~ 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 ""
-#~ "Sveiki, besinaudojantys SILO, operaciniu sistemu ikrovos tvarkykle!\n"
-#~ "\n"
-#~ "Noredami suzinoti pasirinkimu sarasa, spauskite <TAB>.\n"
-#~ "\n"
-#~ "Noredami ijungti viena is ju, irasykite jo pavadinima ir spauskite "
-#~ "<ENTER>\n"
-#~ "arba laukite %d sekundziu ijungimo pagal nutylejima.\n"
-#~ "\n"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Ko ieđkai?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Kokia Jűsř pelës rűđis?"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Koks Jűsř klaviatűros iđdëstymas"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "Kam bus naudojama tavo sistema?"
-
-#~ msgid "What usage do you want?"
-#~ msgstr "Koks Jűsř vartojimas?"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Kokiŕ ákrovos tvarkyklć(-es) tu norëtum naudoti?"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Kurios bylos ieđkai?"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Kurio paketo ieđkai"
-
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Kokio tipo skirsná norite turëti?"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "Prie kurios nuosekliosios jungties prijungta tavo pelë?"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "Jums neuţtenka vietos Lnx4win"
-
-#~ 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 ""
-#~ "Dabar jűs galite pasirinkti kokius norite ádiegti paketus.\n"
-#~ "\n"
-#~ "\n"
-#~ "Pirmiausia jűs galite pasirinkti, kokiŕ paketř grupć jűs norite ádiegti\n"
-#~ "arba atnaujinti. Po to jűs galite pasirinkti paketus, kurius jűs norite\n"
-#~ "ádiegti priklausomai nuo vietos kiek tam skiriate.\n"
-#~ "\n"
-#~ "\n"
-#~ "Informacija apie konkrečius paketus galite pamatyti lauke, pavadintame\n"
-#~ " \"Info\" kuris yra deđinëje paketř sŕrađo pusëje."
-
-#~ msgid "automagic"
-#~ msgstr "Automagic"
-
-#~ msgid "beginner"
-#~ msgstr "pradedantysis"
-
-#~ msgid "brunette"
-#~ msgstr "brunetë"
-
-#~ msgid "changing type of"
-#~ msgstr "keičiamas "
-
-#~ msgid "default"
-#~ msgstr "Pagrindinis"
-
-#~ msgid "developer"
-#~ msgstr "programuotojas"
-
-#~ msgid "don't use pppoe"
-#~ msgstr "nenaudoti pppoe"
-
-#~ msgid "girl"
-#~ msgstr "mergina"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (svarbu)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (nuostabu)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (labai gerai)"
-
-#~ msgid "linear"
-#~ msgstr "Tiesus"
-
-#~ msgid "loopback"
-#~ msgstr "loopback"
-
-#~ msgid "nfs mount failed"
-#~ msgstr "nfs prijungimas nepavyko"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake dabar yra Ľatminties taupymo´ reţime.\n"
-#~ "Ađ paleisiu rpmdrake iđ naujo, kad galëtum ieđkoti bylř"
-
-#~ msgid "tie"
-#~ msgstr "tie"
-
-#~ msgid "useless"
-#~ msgstr "nenaudinga"
-
-#~ msgid "vertical traditionnal aurora"
-#~ msgstr "vertikali tradicinë aurora"
-
-#~ msgid "woman-blond"
-#~ msgstr "blondinë"
diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po
deleted file mode 100644
index 206302fd7..000000000
--- a/perl-install/share/po/lv.po
+++ /dev/null
@@ -1,12830 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2000 Free Software Foundation, Inc.
-# Copyright (c) 2000 MandrakeSoft
-# Vitauts Stochka <vit@dpu.lv>, 2000.
-# Juris Kudiňđ <cooker@inbox.lv>, 2001.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-08-22 00:12+0200\n"
-"Last-Translator: Juris Kudiňđ <cooker@inbox.lv>\n"
-"Language-Team: Latvian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-13\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigurât visus ekrânus neatkarîgi"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Lietot Xinerama piebűvi"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurât tikai karti \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "N-ekrânu konfigurâcija"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Jűsu sistçma atbalsta n-ekrânu konfigurâciju.\n"
-"Ko nu darîsim?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafiskâ karte"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Izvçlieties grafisko karti"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Izvçlieties X serveri"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X serveris"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Izvçlieties X serveri"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X serveris"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Kuru XFree konfigurâciju izvçlaties?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Jűsu karte spçj nodrođinât 3D akselerâciju, bet tikai ar XFree %s.\n"
-"Jűsu karti uztur XFree %s, kam var bűt labâks 2D atbalsts."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Jűsu karte spçj nodrođinât 3D akselerâciju ar XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s ar aparatűras 3D akselerâciju"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Jűsu karte spçj nodrođinât 3D akselerâciju ar XFree %s.\n"
-"ŇEMIET VÇRÂ, KA TAS IR EKSPERIMENTÂLS ATBALSTS, KAS VAR UZKÂRT DATORU."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s ar EKSPERIMENTÂLU aparatűras 3D akselerâciju"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Jűsu karte spçj nodrođinât 3D akselerâciju, bet tikai ar XFree %s,\n"
-"ŇEMIET VÇRÂ, KA TAS IR EKSPERIMENTÂLS ATBALSTS, KAS VAR UZKÂRT DATORU.\n"
-"Jűsu karti uztur XFree %s, kam var bűt labâks 2D atbalsts."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfigurâcija"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Izvçlieties grafiskâs kartes atmiňas apjomu"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Norâdiet servera opcijas"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Norâdiet monitoru"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitors"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Divi svarîgâkie parametri ir vertikâlâ pârzîmçđanas frekvence, kas nosaka\n"
-"visa ekrâna pârzîmçđanas bieţumu, un horizontâlâs sinhronizâcijas\n"
-"frekvence, kas nosaka skançđanas lîniju parâdîđanas bieţumu.\n"
-"\n"
-"Ir ĎOTI SVARÎGI, lai jűs nenorâdîtu monitora tipu, kura sinhronizâcijas\n"
-"frekvence pârsniedz jűsu monitora iespçjas: jűs varat sabojât savu "
-"monitoru.\n"
-" Ja neesat pârliecinâts, izvçlieties konservatîvâko variantu."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Horizontâlâ frekvence"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Vertikâlâ frekvence"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitors nav konfigurçts"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafiskâ karte vçl nav konfigurçta"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Izđíirtspçjas vçl nav izvçlçtas"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Vai vçlaties izmçěinât đo konfigurâciju?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Brîdinâjums: đîs grafiskâs kartes izmçěinâđana var uzkârt datoru"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Konfigurâcijas izmçěinâđana"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"mçěiniet izmainît daţus parametrus"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Atklâta kďűda:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Atliek %d sekundes"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Vai viss ir pareizi?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Atklâta kďűda, mçěiniet izmainît daţus parametrus"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Izđíirtspçja"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Norâdiet izđíirtspçju un krâsu dziďumu"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Grafiskâ karte: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 serveris: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Vairâk"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Labi"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Eksperta reţîms"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Parâdît visu"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Izđíirtspçjas"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Tastatűras izkârtojums: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Peles tips: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Peles ierîce: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitors: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitora horiz. frekv.: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitora vert. frekv.: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Grafiskâ karte: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Grafiskâ karte: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Grafiskâ atmiňa: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Krâsu dziďums: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Izđíirtspçja: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 serveris: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 draiveris: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Gatavoju X-Window konfigurâciju"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Ko jűs vçlaties darît?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Monitora maiňa"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Grafiskâs kartes maiňa"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Servera opciju maiňa"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Izđíirtspçjas maiňa"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Parâdît informâciju"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Mçěinât vçlreiz"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Iziet"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Saglabât izmaiňas?\n"
-"Pađreizçjâ konfigurâcija ir:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X pçc startçđanas"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Datoru var konfigurçt, lai pçc sistçmas ielâdes automâtiski startçtu X.\n"
-"Vai vçlaties, lai pçc pârstartçđanas tiktu palaists X?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Lai aktivizçtu izmaiňas, lűdzu aizveriet un atveriet %s sesiju"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Lűdzu aizveriet sesiju un nospiediet Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 krâsas (8 biti)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tűkstođi krâsu (15 biti)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tűkstođi krâsu (16 biti)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljoni krâsu (24 biti)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljardi krâsu (32 biti)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB vai vairâk"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Parasts VGA, 640x480 pie 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 pie 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 savietojams, 1024x768 pie 87 Hz ar joslâm (nav 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 pie 87 Hz ar joslâm, 800x600 pie 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Uzlabots Super VGA, 800x600 pie 60 Hz, 640x480 pie 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Ne-joslots SVGA, 1024x768 pie 60 Hz, 800x600 pie 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Augstas frekvences SVGA, 1024x768 pie 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekvenču, kas uztur 1280x1024 pie 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekcenču, kas uztur 1280x1024 pie 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekvenču, kas uztur 1280x1024 pie 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitors, kas uztur 1600x1200 pie 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitors, kas uztur 1600x1200 pie 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Sâknçjamâs partîcijas pirmais sektors"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Diska pirmais sektors (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO instalçđana"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Kur jűs vçlaties instalçt sâknçtâju?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/grub instalçđana"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr ""
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr ""
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr ""
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Sâknçtâja galvenâs opcijas"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Kuru OS ielâdçtâju lietot"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Sâknçtâja instalçđana"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Sâknçjamâ ierîce"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (nedarbojas ar veciem BIOSiem)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Kompakts"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "kompakts"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Video reţîms"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Pauze pirms noklusçtâs sistçmas ielâdes"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Parole"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Parole (atkârtoti)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Ierobeţot komandrindas opcijas"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "ierobeţot"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Iztîrît /tmp katras sâknçđanas laikâ"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Ja nepiecieđams, precizçjiet RAM apjomu (atrasti %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Atďaut multi profilus"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Norâdiet atmiňas apjomu Mb"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Opcijai ``Ierobeţot komandrindas opcijas'' nav jçgas bez paroles"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Lűdzu mçěiniet vçlreiz"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Paroles nesakrît"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr ""
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr ""
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr ""
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Noklusçtâ OS?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Đeit ir daţâdi sâknçđanas ieraksti.\n"
-"Jűs varat pievienot jaunus vai izmainît esođos."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Pievienot"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Izdarîts"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Mainît"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Kâda veida ierakstu gribat pievienot"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Cita OS (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Cita OS (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Cita OS (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Attçls"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Sakne"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Papildinât"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Lasît-rakstît"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabula"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Nedrođs"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Nosaukums"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Noklusçts"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd-izmçrs"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "BezVideo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Izdzçst ierakstu"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Tukđs nosaukums nav atďauts"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Jums ir nepiecieđama swap partîcija"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Đis nosaukums jau ir izmantots"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Atrasti %s %s interfeisi"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Vai ir vçl kâds?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Vai datorâ ir kâds %s interfeiss?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Nç"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Jâ"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Apskatît dzelţu informâciju"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instalçju draiveri %s kartei %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modulis %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Kuru %s draiveri pamçěinât?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Daţos gadîjumos %s draiverim ir jânorâda papildus informâcija, lai tas\n"
-"darbotos pareizi, tomçr parasti tâ nav vajadzîga. Vai vçlaties norâdît\n"
-"papildus parametrus, vai arî ďausit draiverim aptaujât datoru un savâkt\n"
-"nepiecieđamo informâciju? Retos gadîjumos aptaujâđana var uzkârt datoru,\n"
-"taču tas neradîs nekâdus bojâjumus."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Aptaujât"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Norâdît opcijas"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Tagad jűs varat norâdît moduďa %s opcijas.\n"
-"Opciju formâts ir ``nosaukums=vçrtîba nosaukums2=vçrtîba2 ...''.\n"
-"Piemçram, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Moduďa opcijas:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Moduďa %s ielâde bija neveiksmîga.\n"
-"Vai vçlaties pamçěinât ar citiem parametriem?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(jau pievienots %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Đî parole ir pârâk vienkârđa"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Lűdzu ievadiet lietotâja vârdu"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Lietotâja vârdâ var bűt tikai mazie angďu burti, cipari, `-' un `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Đâds lietotâja vârds jau ir pievienots"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Pievienot lietotâju"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Ievadiet lietotâju\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Apstiprinât lietotâju"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Vârds un uzvârds"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Lietotâja vârds"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Čaula"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikona"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Autoreěistrçđanâs"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Sistçmu var konfigurçt tâ, lai pçc startçđanas automâtiski tiktu\n"
-"atvçrta viena noteikta lietotâja sesija. \n"
-"Ja nevçlaties izmantot đo iespçju, nospiediet atcelđanas pogu."
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Norâdiet noklusçto lietotâju:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Norâdiet izmantojamo logu menedţeri:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Lűdzu izvçlieties izmantojamo valodu."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Jűs varat izvçlçties citas valodas, kas bűs pieejamas pçc instalçđanas"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Viss"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Lietotâju pievienođana"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Pielâgota"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "CUPS startçđana"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"Đo pakotni ir nepiecieđams uzlabot\n"
-"Vai tieđâm vçlaties atteikties no tâs?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Atcelt"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Sveiciens hakeriem"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Vâjđ"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standarta"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Augsts"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Augsts"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoisks"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Đo lîmeni ir jâizmanto uzmanîgi. Tas padara jűsu sistçmu vieglâk\n"
-"izmantojamu, taču ďoti nedrođu: to nedrîkst izmantot datoram, kas ir\n"
-"pieslçgts citiem datoriem vai Internetam. Netiek prasîtas paroles."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Tagad tiek izmantota parole, taču izmantot datoru tîklâ vçl aizvien\n"
-"nav ieteicams."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Đis ir parasts drođîbas lîmenis, kas ir ieteicams datoram, kas tiks\n"
-"izmantots kâ klients Interneta pieslçgumam. Tagad tiek pârbaudîta drođîba. "
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Ar đo drođîbas lîmeni sistçmu var sâkt izmantot kâ serveri.\n"
-"Drođîba tagad ir pietiekođi augsta, lai izmantotu sistçmu kâ serveri, kas\n"
-"apkalpo pieslçgumus no daudziem klientiem. "
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Mçs izmantojam 4. lîmeňa iespçjas, taču tagad sistçma ir pilnîbâ\n"
-"aizslçgta. Drođîba tagad ir maksimâlajâ lîmenî."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Izvçlieties drođîbas lîmeni?"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Uzstâdu drođîbas lîmeni"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Norâdiet servera opcijas"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Juus sveic %s, opereetaajsisteemu paarsleedzeejs!\n"
-"\n"
-"Sarakstaa izveelieties vajadziigo sisteemu vai gaidiet %d sekundes, liidz "
-"tiks ielaadeeta nokluseetaa sisteema.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Juus sveic GRUB, opereetaajsisteemu izveeles programma!"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Izmantojiet taustinus %c un %c, lai izveeleetos vajadziigo ierakstu."
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Nospiediet ievadu, lai saakneetu izveeleeto OS, 'e', lai redigeetu"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "komandas pirms saakneesanas, vai 'c', lai izsauktu komandrindu."
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Izdaliitais ieraksts tiks saakneets peec %d sekundeem."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "nepietiek vietas partîcijâ /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Darbavirsma"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Starta izvçlne"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Kur jűs vçlaties instalçt sâknçtâju?"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "palîdzîba pagaidâm nav realizçta.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Sâknçđanas stila konfigurçđana"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Fails"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Fails/_Beigt"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "NewStyle Kategorizçjođs Monitors"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "NewStyle Monitors"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Tradicionâlais Monitors"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Tradicionâlais Gtk+ Monitors"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Palaist Aurora sâknçđanas laikâ"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub reţîms"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot reţîms"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Jűs pađlaik lietojat OS ielâdçtâju %s.\n"
-"Spiediet Konfigurçt, lai palaistu uzstâdîđanas meistaru."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Konfigurçt"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Sistçmas reţîms"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Palaist X-Window sistçmu sâknçđanas laikâ"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Nç, negribu lietot autologin"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Jâ, gribu lietot autologin đim lietotâjam un darba virsmai"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "Labi"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "lasîđanai nevar atvçrt /etc/inittab: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minűtes"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minűte"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekundes"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Vairâk partîciju nevar pievienot"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Jűs varat izvçlçties citas valodas, kas bűs pieejamas pçc instalçđanas"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "France"
-msgstr "Francijas"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Beďěijas"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-#, fuzzy
-msgid "Germany"
-msgstr "Vâcijas"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Grieíijas"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Norvçěijas"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Zviedrijas"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Itâlijas"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "seriâla"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Vispirms izveidojiet datu rezerves kopiju"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Lasiet uzmanîgi!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Ja gatavojaties izmantot aboot, neaizmirstiet atstât brîvu vietu diska\n"
-"sâkumâ (pietiek ar 2048 sektoriem)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Kďűda"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Meistars"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Izvçlieties darbîbu"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Jums ir viena liela FAT partîcija\n"
-"(parasti to izmanto MicroSoft Dos/Windows).\n"
-"Iesaku vispirms izmainît đîs partîcijas izmçru\n"
-"(uzklikđíiniet uz tâs, tad uz \"Mainît izmçru\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Lűdzu uzklikđíiniet uz partîcijas"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detaďas"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "montçđana neizdevâs"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Tukđs"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Cits"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Failu sistçmu tipi:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Izveidot"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tips"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Tâ vietâ izmantojiet ``%s''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Izdzçst"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Vispirms izmantojiet ``Nomontçt''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Pçc partîcijas %s tipa nomaiňas visi đajâ partîcijâ esođie dati tiks "
-"pazaudçti"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Izvçlieties partîciju"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Izvçlieties citu partîciju"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Iziet"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Pârslçgt eksperta reţîmâ"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Pârslçgt normâlajâ reţîmâ"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Atsaukt"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Tad turpinât?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Iziet nesaglabâjot"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Iziet neierakstot partîciju tabulau?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Vai vçlaties izmçěinât đo konfigurâciju?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Izvietot automâtiski"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Visu dzçst"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Cietâ diska informâcija"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Visas primârâs partîcijas izmantotas"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Vairâk partîciju nevar pievienot"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Ja gribat vairâk partîcijas, izdzçsiet kâdu partîciju, lai varçtu izveidot "
-"paplađinâto partîciju"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Ierakstît partîciju tabulu"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Salabot partîciju tabulu"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Salabot partîciju tabulu"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Salabot partîciju tabulu"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Izňemams datu nesçjs"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Izvçlieties failu"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Partîciju tabulas rezerves kopijai ir atđíirîgs izmçrs\n"
-"Tomçr turpinât, ja?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Uzmanîbu"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Ielieciet disketi\n"
-"Visi uz disketes esođie dati tiks dzçsti"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Mçěinu saglâbt partîciju tabulu"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Detalizçta informâcija"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Montçđanas punkts"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Opcijas"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Mainît izmçru"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Pârvietot"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatçt"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Montçta"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Pievienot pie RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Pievienot LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Nomontçt"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Izslçgt no RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Izňemt no LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Mainît RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Izmantot priekđ loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Izveidot jaunu partîciju"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Sâkuma sektors: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Izmçrs MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Failu sistçmas tips: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Montçđanas punkts: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Priekđroka: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Formatçju loopback failu %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Nomainît partîcijas tipu"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Kuru failu sistçmu vçlaties?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Kur jűs vçlaties montçt loopback failu %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Kur jűs vçlaties montçt %s ierîci?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Nevaru noňemt montçđanas punktu, jo đî partîcija tiek izmantota priekđ "
-"loopback.\n"
-"Vispirms noňemiet loopback"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Izskaitďoju FAT failsistçmas robeţas"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Mainu izmçru"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Đîs partîcijas izmçru nevar izmainît"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Visiem đîs partîcijas datiem jâizveido rezerves kopijas"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Pçc partîcijas %s izmçra maiňas visi đajâ partîcijâ esođie dati tiks "
-"pazaudçti"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Norâdiet jauno izmçru"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Jauns izmçrs MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Uz kuru disku vçlaties to pârvietot?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektors"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Uz kuru sektoru vçlaties to pârvietot?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Pârvietoju"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Pârvietoju partîciju..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Norâdiet eksistçjođu RAID, kam pievienot"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "jauns"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Norâdiet jau esođu LVM kam pievienot"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "LVM vârds?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Đo Partîciju nevar izmantot priekđ loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Loopback faila vârds: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Vârds un uzvârds"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Fails jau tiek izmantots citam loopback, norâdiet citu failu"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Fails jau eksistç. Vai to izmantot?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Montçđanas iespçjas:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Viss kas"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "ierîce"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "lîmenis"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "gabala izmçrs"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Esiet uzmanîgi: đî operâcija ir bîstama."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Kâds ir sadalîjuma tips?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Diemţçl es neďauđu izveidot /boot tik tâlu uz diska (uz cilindra > 1024).\n"
-"Vai nu jűs izmantojat LILO, un tas nestrâdâs, vai arî jűs neizmantojat LILO, "
-"un /boot jums nav vajadzîgs"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"partîcija, ko jűs izvçlçjâties pievienot kâ sakni (/), fiziski atrodas aiz\n"
-"đî cietâ diska 1024. cilindra, un jums nav /boot partîcijas.\n"
-"Ja jűs plânojat izmantot LILO, neaizmirstiet pievienot /boot partîciju"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Jűs izvçlçjies programmatűras uzturçtu RAID partîciju kâ saknes partîciju "
-"(/).\n"
-"Neviens sâknçtâjs nespçj to izmantot bez /boot partîcijas.\n"
-"Tâpçc neaizmirstiet izveidot /boot partîciju."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Iekârtas %s partîciju tabula tiks ierakstîta uz diska!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Lai izmaiňas stâtos spçkâ, jums ir jâpârstartç dators"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Pçc partîcijas %s formatçđanas visi đajâ partîcijâ esođie dati tiks pazaudçti"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formatçju"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formatçju loopback failu %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formatçju partîciju %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid neizdevâs"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Nepietiek brîvas vietas, lai izvietotu jaunas partîcijas"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Nepietiek brîvas vietas, lai izvietotu jaunas partîcijas"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Izđíirtspçja: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Ierîce: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS iekârtas burts: %s (tikai minçjums)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tips: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Vârds: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Sâkums: sektors %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Izmçrs: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektori"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "No cilindra %d lîdz cilindram %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formatçta\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Neformatçta\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Montçta\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Loopback fails(i): %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Noklusçti sâknçjamâ partîcija\n"
-" (lai sâknçtu MS-DOS, nevis lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Lîmenis %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Gabala izmçrs %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID diski %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Loopback faila nosaukums: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Izmçrs: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Ěeometrija: %s cilindri, %s galvas, %s sektori\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-diski %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "partîciju tabulas tips: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "uz đinas %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Opcijas: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Failu sistçmas tips: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Đî parole ir pârâk vienkârđa (jâbűt vismaz %d simbolus garai)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Paroles nesakrît"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Mainît tipu"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Lűdzu uzklikđíiniet uz partîcijas"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "DNS serveris"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatçđana %s neizdevâs"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Nezinu, kâ formatçt %s, izmantojot tipu %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "kďűda nomontçjot %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "vienkârđs"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "serveris"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Nevarat izmantot JFS partîcijâm, kas mazâkas par 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Nevarat izmantot ReiserFS pârtîcijâm, kas mazâkas par 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Montçđanas punktiem jâsâkas ar /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Jau eksistç partîcija ar montçđanas punktu %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Đim katalogam ir jâpaliek saknes failsistçmâ"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Đim montçđanas punktam ir nepiecieđama reâla failu sistçma (ext2, reiserfs)\n"
-
-#: ../../fsedit.pm_.c:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-"Đim montçđanas punktam ir nepiecieđama reâla failu sistçma (ext2, reiserfs)\n"
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Nepietiek brîvas vietas, lai izvietotu automâtiski"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Kďűda, atverot %s ierakstîđanai: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Atklâta kďűda - nav atrasta neviena ierîce, kas derçtu jaunu failsistçmu "
-"veidođanai. Lűdzu pârbaudiet dzelţus, lai noskaidrotu problçmas iemeslu"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Jums nav nevienas partîcijas!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-#, fuzzy
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Augstâk ir uzskaitîtas eksistçjođâs Linux partîcijas, kas ir atrastas uz "
-"jűsu\n"
-"cietâ diska. Jűs varat atstât meistara izdarîto izvçli, jo tâ ir laba\n"
-"parastâm vajadzîbâm. Ja jűs izmainât đo izvçli, jums ir jâdefinç vismaz\n"
-"saknes partîcijâ(\"/\"). Neizvçlieties pârâk mazu partîciju, citâdi jűs "
-"nevarçsit\n"
-"instalçt visas vajadzîgâs programmas. Ja vçlaties datus glabât atseviđíâ\n"
-"partîcijâ, jums ir jânorâda arî \"/home\" (to var izdarît tikai tad, ja jums "
-"ir\n"
-"vairâkas Linux partîcijas).\n"
-"\n"
-"\n"
-"Jűsu zinâđanai, katra partîcija ir uzskaitîta đâdâ veidâ: \"Nosaukums\", "
-"\"Izmçrs\".\n"
-"\n"
-"\n"
-"\"Nosaukums\" ir kodçts đâdi: \"cietâ diska tips\", \"cietâ diska numurs\",\n"
-"\"partîcijas numurs\" (piemçram, \"hda1\").\n"
-"\n"
-"\n"
-"\"Cietâ diska tips\" ir \"hd\", ja jűsu cietais disks ir IDE disks, \"sd\",\n"
-"ja tas ir SCSI cietais disks.\n"
-"\n"
-"\n"
-"\"Cietâ diska numurs\" vienmçr ir burts pçc \"hd\" vai \"sd\". IDE diskiem:\n"
-"\n"
-" * \"a\" nozîmç \"primârâ IDE kontroliera galvenais disks\",\n"
-"\n"
-" * \"b\" nozîmç \"primârâ IDE konytroliera pakârtotais disks\",\n"
-"\n"
-" * \"c\" nozîmç \"sekundârâ IDE kontroliera galvenais disks\",\n"
-"\n"
-" * \"d\" nozîmç \"sekundârâ IDE kontroliera pakârtotais disks\".\n"
-"\n"
-"\n"
-"SCSI diskiem \"a\" nozîmç \"primârais cietais disks\", \"b\" nozîmç\n"
-" \"sekundârais cietais disks\", utt..."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-#, fuzzy
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Tagad varat norâdît servisus, kurus jűs vçlaties startçt sistçmas\n"
-"palaiđanas laikâ.\n"
-"\n"
-"\n"
-"Kad pele pârvietojas pâr saraksta elementu, parâdâs\n"
-"neliels palîdzîbas balons, kas paskaidro servisa lomu.\n"
-"\n"
-"\n"
-"Esiet îpađi uzmanîgs đajâ solî, ja vçlaties sistçmu izmantot ka serveri:\n"
-"iespçjams, ka nevçlaties startçt nevienu nevajadzîgu servisu. Atcerieties.\n"
-"ka daţi servisi var bűt bîstami, ja darbojas serverî.\n"
-"Parasti izvçlieties tikai tos servisus, kas jums tieđâm nepiecieđami."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-#, fuzzy
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Pađlaik jums ir jâizvçlas, kur uz cietâ diska instalçt Mandrake Linux\n"
-"operçtâjsistçmu. Ja disks ir tukđs vai cita operçtâjsistçma aizňem visu\n"
-"vietu uz diska, jums bűs jâveic diska sadalîđana. Îsumâ, cietâ diska\n"
-"sadalîđana nozîmç to sadalît loěiskâs daďâs, lai izveidotu vietu\n"
-"Mandrake Linux sistçmas instalçđanai.\n"
-"\n"
-"\n"
-"Sakarâ ar to, ka diska sadalîđanas process parasti ir neatgriezenisks,\n"
-"nepieredzçjuđam lietotâjam tas var bűt nepatîkams un stresa pilns.\n"
-"Đis meistars vienkârđo procesu. Pirms uzsâkat dalîđanu, izlasiet\n"
-"rokasgrâmatu un visu labi pârdomâjiet.\n"
-"\n"
-"\n"
-"Jums ir nepiecieđamas vismaz divas partîcijas. Viena vajadzîga pađai "
-"sistçmai,\n"
-"otra - virtuâlajai atmiňai (Swap).\n"
-"\n"
-"\n"
-"Ja partîcijas jau izveidotas (agrâkas instalçđanas laikâ vai ar citu diska\n"
-"sadalîđanas rîku), jums tikai jânorâda tâs partîcijas, kurâs vçlaties\n"
-"instalçt Linux sistçmu.\n"
-"\n"
-"\n"
-"Ja partîcijas vçl nav izveidotas, jums tâs ir jâizveido. Lai to izdarîtu,\n"
-"izmantojiet augstâk pieejamo meistaru. Atkarîbâ no jűsu cietâ diska \n"
-"konfigurâcijas ir iespçjami vairâki risinâjumi:\n"
-"\n"
-"* Izmantot esođu partîciju: meistars uz cietâ diska ir atklâjis vienu vai "
-"vairâkas Linux partîcijas. Ja vçlaties\n"
-" tâs saglabât, izvçlieties đo opciju. \n"
-"\n"
-"\n"
-"* Izdzçst visu disku: ja vçlaties izdzçst visus uz diska esođos datus un "
-"partîcijas un aizstât tâs ar jaunu\n"
-" Mandrake Linux sistçmu, varat izvçlçties đo opciju. Esiet uzmanîgi, "
-"izvçloties đo risinâjumu, jo pçc\n"
-" apstiprinâđanas jűs vairs nevarçsit atteikties no đîs izvçles.\n"
-"\n"
-"\n"
-"* Izmanto brîvo vietu Windows partîcijâ: ja uz cietâ diska ir instalçts "
-"Microsoft Windows, kas aizňem visu\n"
-" vietu, jums ir jâatbrîvo vieta Linux datiem. Lai to izdarîtu, jűs varat "
-"nodzçst Microsoft Windows partîciju un\n"
-" datus (skatît risinâjumus \"Izdzçst visu disku\" vai \"Eksperta reţîms\") "
-"vai izmainît Microsoft\n"
-" Windows partîcijas izmçru. partîcijas izmçru var izmainît bez datu "
-"zaudçđanas. Đis risinâjums ir ieteicams, ja\n"
-" jűs savâ datorâ vçlaties izmantot gan Mandrake Linux, gan Microsoft "
-"Windows.\n"
-"\n"
-"\n"
-" Pirms izvçlaties đo risinâjumu, ňemiet vçrâ, ka Microsoft Windows "
-"partîcijas izmçrs bűs mazâks, nekâ tas ir\n"
-" pađlaik. Tas nozîmç, ka jums Microsoft Windows sistçmâ bűs mazâk vietas "
-"datiem vai programmu instalçđanai.\n"
-"\n"
-"\n"
-"* Eksperta reţîms: ja jűs vçlaties patstâvîgi veidot diska partîcijas, varat "
-"izvçlçties đo variantu. Esiet\n"
-" uzmanîgi, izveloties đo risinâjumu. Tas ir ar plađâm iespçjâm, bet ďoti "
-"bîstams. Jűs varat pazaudçt\n"
-" visus datus, tâpçc izvçlieties tikai tad, ja zinat, ko darât."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-#, fuzzy
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Visas jaunizveidotâs partîcijas ir jâformatç, pirms tâs var izmantot\n"
-"(formatçđana nozîmç failsistçmas izveidođanu).\n"
-"\n"
-"\n"
-"Tagad jűs arî varat izvçlçties pârformatçt daţas jau esođas partîcijas, lai\n"
-"izdzçstu tajâs esođo informâciju. Ja jűs vçlaties to darît, norâdiet\n"
-"partîcijas, kuras vçlaties formatçt.\n"
-"\n"
-"\n"
-"Ňemiet vçrâ, ka nav nepiecieđams pârformatçt visas jau eksistçjođas "
-"partîcijas.\n"
-"Jums ir jâformatç partîcijas, kurâs atrodas operçtâjsistçma (piemçram, \"/"
-"\",\n"
-"\"/usr\" vai \"/var\"), bet nav jâformatç partîcijas, kurâs atrodas dati, "
-"ko\n"
-"jűs vçlaties saglabât (parasti /home).\n"
-"\n"
-"\n"
-"Esiet uzmanîgi, izvçloties partîcijas, jo pçc formatçđanas visi dati bűs\n"
-"iznîcinâti un jűs vairs nevarçsit tos atjaunot.\n"
-"\n"
-"\n"
-"Noklikđíiniet \"Labi\", kad esat gatavi formatçt partîcijas.\n"
-"\n"
-"\n"
-"Noklikđíiniet \"Atcelt\", ja jűs gribat izvçlçties citas partîcijas, kur\n"
-"instalçt jauno Mandrake Linux operçtâjsistçmu."
-
-#: ../../help.pm_.c:404
-#, fuzzy
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Jűsu jaunâ Mandrake Linux operçtâjsistçma pađlaik tiek\n"
-"instalçta. Đî darbîba aizňems daţas minűtes (tas ir atkarîgs no apjoma,\n"
-"ko jűs izvçlçjâties instalçt, un no jűsu datota âtruma.)\n"
-"\n"
-"\n"
-"Lűdzu esiet pacietîgs."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-#, fuzzy
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Pađlaik jums ir jâizvçlas, kurâ(s) diska partîcijâ(s) instalçt Mandrake "
-"Linux\n"
-"operçtâjsistçmu. Ja partîcijas jau ir izveidotas (agrâkas GNU/Linux "
-"instalçđanas\n"
-"laikâ vai ar citu diska sadalîđanas rîku), jűs varat izmantot esođâs "
-"dadaďas.\n"
-"Citos gadîjumos ir jâveido jaunas diska partîcijas.\n"
-"\n"
-"\n"
-"Lai veidotu partîcijas, jums vispirms ir jâizvçlas cietais disks. Jűs varat\n"
-"norâdît sadalâmo disku, noklikđíinot uz \"hda\" pirmajam IDE diskam,\n"
-"\"hdb\" - otrajam diskam, \"sda\" - pirmajam SCSI diskam, utt.\n"
-"\n"
-"\n"
-"Lai sadalîtu izvçlçto cieto disku, varat izmantot sekojođas opcijas:\n"
-"\n"
-" * Izdzçst visu: đî opcija izdzçđ visas partîcijas, kas atrodas uz "
-"izvçlçtâ cietâ diska.\n"
-"\n"
-"\n"
-" * Izvietot automâtiski: đî opcija ďauj jums automâtiski izveidot Ext2 un "
-"swap partîcijas jűsu cietâ diska\n"
-" brîvajâ vietâ.\n"
-"\n"
-"\n"
-" * Salabot partîciju tabulu: ja partîciju tabula ir bojâta, jűs varat "
-"mçěinât to autjaunot, izmantojot đo opciju.\n"
-" Esiet uzmanîgi un atcerieties, ka tas var neizdoties.\n"
-"\n"
-"\n"
-" * Atsaukt: jűs varat izmantot đo opciju, lai atceltu izmaiňas.\n"
-"\n"
-"\n"
-" * Pârlâdçt: jűs varat izmantot đo opciju, ja vçlaties atsaukt visas "
-"izmaiňas un ielâdçt sâkotnçjot partîciju tabulu.\n"
-"\n"
-"\n"
-" * Meistart: Ja cietâ diska sadalîđanai vçlaties izmantot meistaru, varat "
-"lietot đo opciju. Tâ ir ieteicama,\n"
-" ja jums nav labu zinâđanu par diska sadalîđanu.\n"
-"\n"
-"\n"
-" * Atjaunot no disketes: ja iepriekđçjâs instalçđanas laikâ saglabâjât "
-"partîciju tabulu disketç, jűs varat\n"
-" to atjaunot, izmantojot đo opciju.\n"
-"\n"
-"\n"
-" * Saglabât disketç: ja vçlaties partîciju tabulu saglabât disketç, lai "
-"varçtu to atjaunot, izmantojiet đo\n"
-" opciju. Ir ďoti ieteicams izmantot đo opciju.\n"
-"\n"
-"\n"
-" * Izdarîts: kad esat pabeiguđi cietâ diska dalîđanu, izmantojiet đo "
-"opciju, lai saglabâtu izmaiňas.\n"
-"\n"
-"\n"
-"Jűsu zinâđanai, jebkuru opciju var izsaukt ar tastatűru: pârvietojieties "
-"starp partîcijâm, izmantojot Tab un Auđup/Lejup bultiňas.\n"
-"\n"
-"\n"
-"Kad ir izvçlçta partîcija, jűs varat izmantot:\n"
-"\n"
-" * Ctrl-c, lai izveidotu jaunu partîciju (kad ir izvçlçta tukđa "
-"partîcija)\n"
-"\n"
-" * Ctrl-d, lai izdzçstu partîciju\n"
-"\n"
-" * Ctrl-m, lai uzstâdîtu montçđanas punktu"
-
-#: ../../help.pm_.c:513
-#, fuzzy
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Uz jűsu cietâ diska ir atrasta vairâk nekâ viena Microsoft Windows "
-"partîcija.\n"
-"Lűdzu izvçlieties to partîciju, kuras izmçru jűs vçlaties izmainît, lai\n"
-"instalçtu jauno Mandrake Linux operçtâjsistçmu.\n"
-"\n"
-"\n"
-"Jűsu zinâđanai, katra partîcija ir uzskaitîta đâdâ veidâ: \"Linux nosaukums"
-"\",\n"
-"\"Windows nosaukums\" \"Izmçrs\".\n"
-"\n"
-"\"Linux nosaukums\" ir kodçts đâdi: \"cietâ diska tips\", \"cietâ diska\n"
-"numurs\", \"partîcijas numurs\" (piemçram, \"hda1\").\n"
-"\n"
-"\n"
-"\"Cietâ diska tips\" ir \"hd\", ja jűsu cietais disks ir IDE disks, \"sd\",\n"
-"ja tas ir SCSI cietais disks.\n"
-"\n"
-"\n"
-"\"Cietâ diska numurs\" vienmçr ir burts pçc \"hd\" vai \"sd\". IDE diskiem:\n"
-"\n"
-" * \"a\" nozîmç \"primârâ IDE kontroliera galvenais disks\",\n"
-"\n"
-" * \"b\" nozîmç \"primârâ IDE konytroliera pakârtotais disks\",\n"
-"\n"
-" * \"c\" nozîmç \"sekundârâ IDE kontroliera galvenais disks\",\n"
-"\n"
-" * \"d\" nozîmç \"sekundârâ IDE kontroliera pakârtotais disks\".\n"
-"\n"
-"\n"
-"SCSI diskiem \"a\" nozîmç \"primârais cietais disks\", \"b\" nozîmç\n"
-" \"sekundârais cietais disks\", utt...\n"
-"\n"
-"\"Windows nosaukums\" ir jűsu cietâ diska burts Windows vidç (pirmais disks\n"
-"vai partîcija saucas \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Lűdzu esat pacietîgs. Đî darbîba var ilgt vairâkas minűtes."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Lűdzu izvçlieties \"Instalçt\", ja nav instalçta vecâka Linux-Mandrak "
-"versija\n"
-"vai jűs vçlaties izmantot vairâkas operçtâjsistçmas.\n"
-"\n"
-"\n"
-"Lűdzu izvçlieties \"Atjauninât\", ja jűs vçlaties atjauninât jau instalçtu\n"
-"Mandrake Linux versiju.\n"
-"\n"
-"\n"
-"Atkarîbâ no jűsu GNU/Linux zinâđanâm, varat izvçlçties vienu no "
-"sekojođajiem\n"
-"Mandrake Linux instalçđanas vai atjauninâđanas lîmeňiem:\n"
-"\n"
-"* Ieteicama: ja neesat ne reizi instalçjis GNU/Linux operçtâjsistçmu, "
-"izvçlieties đo lîmeni. Instalçđana bűs\n"
-" ďoti vienkârđa, un jums tiks uzdoti tikai daţi jautâjumi.\n"
-"\n"
-"\n"
-"* Pielâgota: ja pietiekami labi pârzinat GNU/Linux, varat norâdît sistçmas "
-"pamatpielietojumu (darbastacija, serveris,\n"
-" izstrâdei). Jums bűs jâatbild uz vairâk jautâjumiem nekâ \"Ieteicamas\" "
-"instalçđanas klases gadîjumâ, tâpçc\n"
-" jums jâzina, kâ darbojas GNU/Linux, ja gribat izvçlçties đo klasi.\n"
-"\n"
-"\n"
-"* Eksperta: ja jűs labi zinat GNU/Linux, varat izvçlçties đo instalçđanas "
-"klasi. Tâpat kâ \"Pielâgotas\" klases\n"
-" gadîjumâ, jűs varçsit norâdît sistçmas pamatpielietojumu (darbastacija, "
-"serveris, izstrâdei). Esiet ďoti\n"
-" uzmanîgi, pirms izvçlaties đo klasi. Jűs varçsit veikt ďoti precîzi "
-"pielâgotu instalçđanu.\n"
-" Uz daţiem jautâjumiem bűs grűti atbildçt, ja jűsu GNU/Linux zinâđanas nav "
-"pietiekođi labas. Tâpçc neizvçlieties\n"
-" đo instalçđanas klasi, ja neesat pârliecinâts."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-#, fuzzy
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Lűdzu izvçlieties pareizu portu. Piemçram, MS Windows\n"
-"ports COM1 GNU/Linux vidç saucas ttyS0."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (the LInux LOader) un Grub ir sâknçtâji: tie spçj sâknçt GNU/Linux\n"
-"vai jebkuru citu operçtâjsistçmu, kas ir uzstâdîta jűsu datorâ.\n"
-"Parasti citas operçtâjsistçmas tiek korekti noteiktas un instalçtas.\n"
-"Ja tâ nenotiek, jűs đajâ ekrânâ varat patstâvîgi pievienot ierakstu. Esiet\n"
-"uzmanîgs, izvçloties pareizus parametrus.\n"
-"\n"
-"\n"
-"Jűs varbűt arî vçlaties neďaut nevienam piekďűt pârçjâm operçtâjsistçmâm,\n"
-"un đajâ gadîjumâ jűs varat izdzçst attiecîgos ierakstus. Bet đajâ\n"
-"gadîjumâ jums bűs nepiecieđama sâknçđanas diskete, lai tâs sâknçtu!"
-
-#: ../../help.pm_.c:722
-#, fuzzy
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Jums ir jânorâda, kur jűs vçlaties novietot\n"
-"GNU/Linux sâknçđanai nepiecieđamo informâciju.\n"
-"\n"
-"\n"
-"Ja vien jűs neesat absolűti pârliecinâts par savu rîcîbu,\n"
-"izvçlieties \"Diska pirmais sektors (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX mçěinâs sameklçt PCI SCSI adapteri(us).\n"
-"Ja DrakX atradîs kâdu SCSI adapteri un zinâs, kuru draiveri izmantot,\n"
-"tas tiks instalçts automâtiski.\n"
-"\n"
-"Ja jums nav SCSI adapteru, ir ISA SCSI adapteris vai PCI SCSI adapteris,\n"
-"ko DrakX neatpazîst, jums tiks pajautâts, vai jűsu sistçmâ ir SCSI\n"
-"adapteris. Ja nav SCSI adapteru, jűs varat vienkârđi izvçlçties 'Nç'.\n"
-"Ja jűs izvçlaties 'Jâ', jums tiks parâdîts draiveru saraksts, kurâ\n"
-"varat izvçlçties vajadzîgo adapteri.\n"
-"\n"
-"\n"
-"Ja jums nepiecieđams patstâvîgi norâdît adapteri, DrakX pajautâs, vai\n"
-"vçlaties norâdît adaptera opcijas. Jums bűtu jâďauj DrakX aptaujât\n"
-"dzelţus un noskaidrot opcijas. Parasti tas izdodas bez problçmâm.\n"
-"\n"
-"Ja neizdodas, jums patstâvîgi jânorâda draivera opcijas.\n"
-"Izlasiet Instalçđanas rokasgrâmatu (3. nodaďu, apakđnodaďu \"Informâcijas "
-"savâkđana par jűsu dzelţiem\"), lai uzzinâtu, kâ iegűt đo\n"
-"informâciju no dzelţu dokumentâcijas, raţotâja tîkla lapas\n"
-"(ja jums ir pieejams Internets) vai Windows (ja tas ir uzstâdîts jűsu "
-"datorâ)."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-#, fuzzy
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Norâdiet cieto disku, ko vçlaties izdzçst, lai izveidotu jaunu\n"
-"Mandrake Linux partîciju. Esiet uzmanîgi, jo visi diskâ esođie dati\n"
-"pazudîs un nebűs atjaunojami."
-
-#: ../../help.pm_.c:896
-#, fuzzy
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Nospiediet \"Labi\", ja vçlaties izdzçst visus datus un\n"
-"partîcijas, kas atrodas uz đî cietâ diska. Esiet uzmanîgi, pçc \"Labi\" "
-"nospieđanas jűs nevarçsit atjaunot nekâdus datus vai partîcijas, kas "
-"atradâs\n"
-"uz diska, tajâ skaitâ arî Windows datus.\n"
-"\n"
-"\n"
-"Nospiediet \"Atcelt\", lai atceltu đo operâciju bez jebkâdu uz đî diska "
-"esođu datu vai partîciju pazaudçđanas."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr ""
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Ielieciet FAT formatçtu disketi iekârtâ %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr ""
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Lai izmantotu đo saglabâto pakotňu izvçli, palaidiet instalâciju ar ``linux "
-"defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Kďűda, nolasot failu %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Daţu jűsu datora dzelţu darbîbai nepiecieđami ``firmas'' draiveri.\n"
-"Papildus informâciju varat atrast đeit: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Jums ir nepiecieđama saknes partîcija.\n"
-"Đim nolűkam izveidojiet partîciju (vai uzklikđíiniet uz jau esođas).\n"
-"Tad izvçlieties darbîbu ``Montçđanas punkts'' un norâdiet, ka tas ir `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Jums ir nepiecieđama swap partîcija"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Jums nav swap partîcijas\n"
-"\n"
-"Vai tomçr turpinât?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Jums ir nepiecieđama swap partîcija"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Izmantot brîvo vietu"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nepietiek brîvas vietas, lai izvietotu jaunas partîcijas"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Izmantot jau esođu partîciju"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Nav nevienas partîcijas, ko varçtu izmantot"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Izmantot Windows partîciju priekđ loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Kuru partîciju vçlaties izmantot priekđ Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Izvçlieties izmçrus"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Saknes partîcijas izmçrs (MB): "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Swap partîcijas izmçrs (MB): "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Izmantot Windows partîcijas brîvo vietu"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Kuras partîcijas izmçru vçlaties izmainît?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Izskaitďoju Windows failu sistçmas robeţas"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"FAT izmçra mainîtâjs nespçj izmainît jűsu partîciju,\n"
-"atklâta sekojođa kďűda: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr "Windows partîcija ir pârâk fragmentçta, vispirms palaidiet ``defrag''"
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"BRÎDINÂJUMS!\n"
-"\n"
-"Tagad DrakX izmainîs Windows partîcijas izmçru. Esiet uzmanîgs: đî darbîba\n"
-"ir bîstama. Ja jűs to vçl neesat izdarîjis, jums vispirms ir jâpârtrauc\n"
-"instalçđana, no Windows jâpalaiţ scandisk (ieteicams palaist arî defrag),\n"
-"tad atkârtoti jâsâk instalçđana. Vajadzçtu izveidot arî datu rezerves\n"
-"kopiju. Kad esat pârliecinâts, nospiediet Labi."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Kâdu apjomu vçlaties atstât priekđ windows uz"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "partîcija %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT izmçra maiňa neizdevâs: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Nav FAT partîciju, lai izmainîto to izmçru vai izmantotu kâ loopback (vai "
-"nepietiek brîvas vietas)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Izdzçst visu disku"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Noňemt Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Jums ir vairâk nekâ viens cietais disks, uz kura jűs instalçjat linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "VISAS diska %s partîcijas un tajâs esođie dati tiks pazaudçti"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Pielâgots disku sadalîjums"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Izmantot fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Tagad jűs varat sadalît diska iekârtu %s.\n"
-"Kad esat pabeiguđi, neaizmirstiet saglabât, izmantojot `w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Jűsu Windows partîcijâ nav pietiekođi daudz brîvas vietas"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Nevaru atrast vietu instalçđanai"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX partîciju veidođanas meistars atrada sekojođus risinâjumus:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Diska sadalîđana neizdevâs: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Iedarbinu tîklu"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Atslçdzu tîklu"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Atklâta kďűda, bet es nezinu, kâ ar to pareizi apieties.\n"
-"Turpiniet, ja vçlaties riskçt."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Dublçts montçđanas punkts %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Daţas svarîgas pakotnes neizdevâs pareizi instalçt.\n"
-"Ir bojâta jűsu kompaktdisku iekârta vai instalâcijas disks.\n"
-"Parbaudiet disku uz instalçta datora, izmantojot komandu \"rpm -qpl Mandrake/"
-"RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Jűs sveic %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Nav nevienas diskeđu iekârtas"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Uzsâku soli `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Jűsu sistçmai trűkst resursu. Mandrake Linux instalçđanas laikâ var\n"
-"rasties problçmas. Ja tâ notiek, varat pamçěinât teksta instalçđanu.\n"
-"Lai to izdarîtu, nospiediet`F1', ka notiek ielâde no CDROM, tad ievadiet\n"
-"`text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Instalçđanas klase"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Lűdzu izvçlieties vienu no sekojođâm instalçđanas klasçm:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Kopçjais jűsu izvçlçto grupu izmçrs ir aptuveni %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ja jűs vçlaties instalçt mazâk nekâ đo izmçru,\n"
-"procentuâli izvçlieties instalçjamo pakotňu daudzumu.\n"
-"\n"
-"Zems procentu lîmenis instalçs tikai vissvarîgâkâs pakotnes;\n"
-"100% lîmenî tiks instalçtas visas izvçlçtâs pakotnes."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Jums uz diska ir vieta tikai %d%% no đîm pakotnçm.\n"
-"\n"
-"Ja vçlaties instalçt mazâk, procentuâli izvçlieties instalçjamo pakotňu\n"
-"daudzumu. Zems procentu lîmenis instalçs tikai vissvarîgâkâs pakotnes;\n"
-"%d%% lîmenis instalçs tik daudz pakotňu, cik ir iespçjams."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Nâkamajâ solî jűs varçsit izvçlçties daudz precîzâk."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Instalçjamo pakotňu procentuâlais daudzums"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Pakotňu grupu izvçle"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Atseviđíu pakotňu izvçle"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Kopçjais izmçrs: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Slikta pakotne"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Nosaukums: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versija: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Apjoms: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Svarîgums: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Jűs nevarat izvçlçties đo pakotni, jo nepietiek vietas tâs instalçđanai"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Tiks instalçtas sekojođas pakotnes"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Tiks noňemtas sekojođas pakotnes"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Jűs varat izvçlçties/atteikties no đîs pakotnes"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Đî ir obligâta pakotne, no tâs nevar atteikties"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Jűs nevarat atteikties no đîs pakotnes. Tâ jau ir instalçta"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Đo pakotni ir nepiecieđams uzlabot\n"
-"Vai tieđâm vçlaties atteikties no tâs?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Jűs nevarat atteikties no đîs pakotnes. To ir nepiecieđams uzlabot"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Instalçt"
-
-#: ../../install_steps_gtk.pm_.c:466
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "Saglabât disketç"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Saglabât pakotňu izvçli"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "Instalçđanas beigas"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Izvçlieties pakotnes, ko vçlaties instalçt"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Instalçju"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Aprçíinu"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Atlikuđais laiks"
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Lűdzu gaidiet, gatavoju instalâciju"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pakotnes"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Instalçju pakotni %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Pieňemt"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Noraidît"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Nomainiet Cd-Rom!\n"
-"\n"
-"Lűdzu ielieciet iekârtâ Cd-Rom \"%s\", kad tas ir izdarîts, nospiediet Labi\n"
-"Ja jums nav đî diska, nospiediet Atcelt, lai neinstalçtu no đî Cd-Rom."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Tomçr turpinât?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Pakotňu kârtođanas laikâ atklâta kďűda:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Pakotňu instalçđanas laikâ atklâta kďűda:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Brîdinâjums\n"
-"\n"
-"Lűdzu rűpîgi izlasiet zemâk esođos nosacîjumus. Ja jűs nepiekrîtat kâdai\n"
-"to daďai, jűs nedrîkstat instalçt no đî CD. Nospiediet 'Noraidît', lai\n"
-"turpinâtu instalçđanu, neizmantojot đo datu nesçju.\n"
-"\n"
-"\n"
-"Daţi đajâ CD datu nesçjâ esođie komponenti nav pakďauti GPL licencei vai\n"
-"lîdzîgiem lîgumiem. Katra đâda komponenta izmantođanu nosaka atseviđías\n"
-"licences noteikumi un nosacîjumi. Lűdzu rűpîgi to izlasiet un ievçrojiet\n"
-"tâs nosacîjumus, pirms izmantot vai izplatît uzskaitîtos komponentus.\n"
-"Đîs licences pârsvarâ aizliegs jums pârsűtît, dublçt (izňemot rezerves\n"
-"kopçđanas nolűkus), izplatît tâlâk, reversi uzbűvçt, de-asamblçt,\n"
-"de-kompilçt vai modificçt đo kompomentu. Jebkurđ đîs vienođanâs pârkâpums\n"
-"jums automâtiski atňems tiesîbas, ko pieđíîrusi attiecîgâ licence. Izňemot\n"
-"gadîjumus, kad konkrçtas lcences nosacîjumi jums dod đâdas tiesîbas, jűs\n"
-"parasti nedrîkstat instalçt đâdu programmu uz vairâk nekâ vienas sistçmas\n"
-"vai pielâgot to izmantođanai tîklâ. Ja đaubâties, lűdzu sazinieties ar\n"
-"komponenta izplatîtâju vai redaktoru.\n"
-"Đâdu komponentu, tajâ skaitâ arî iekďautâs dokumentâcijas, nodođana\n"
-"tređajâm personâm vai kopçđana parasti ir aizliegta.\n"
-"\n"
-"\n"
-"Visas nâkamajâ CD datu nesçjâ iekďauto komponentu tiesîbas pieder to\n"
-"attiecîgajiem autoriem, un tâs aizsargâ intelektuâlâ îpađuma un\n"
-"autortiesîbu likumi, kas attiecas uz programnodrođinâjumu.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Atklâta kďűda"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Vai vçlaties pârstartçt tîklu"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Licences lîgums"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Tastatűra"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Lűdzu izvçlieties jűsu tastatűras izkârtojumu."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Đeit ir pilns pieejamo tastatűru saraksts"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Kuru instalçđanas klasi vçlaties?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Instalçt/Atjauninât"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Đî ir instalçđana vai atjauninâđana?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Ieteicama"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Eksperta"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Atjauninât"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Saglabât pakotňu izvçli"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Lűdzu izvçlieties jűsu peles tipu."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Peles ports"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Lűdzu izvçlieties, kuram seriâlajam portam ir pieslçgta pele."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfigurçju PCMCIA kartes..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Konfigurçju IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "nav pieejamu partîciju"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Pârmeklçju partîcijas, lai atrastu montçđanas punktus"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Izvçlieties montçđanas punktus"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Neizdevâs nolasît diska partîciju tabulu, jo tâ bija pârâk stipri bojâta :(\n"
-"Sistçma var mçěinât atslçgts sliktâs partîcijas (VISI DATI pazudîs!).\n"
-"Otrs risinâjums ir aizliegt DrakX izmainît partîciju tabulu.\n"
-"(kďűda ir %s)\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake neizdevâs pareizi nolasît partîciju tabulu.\n"
-"Turpiniet, ja vçlaties riskçt!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "Izvçlieties partîcijas, ko vçlaties formatçt"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Saknes partîcija"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Kura ir jűsu sistçmas saknes partîcija (/)?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Lai partîciju tabulas izmaiňas stâtos spçkâ, jums jâpârstartç dators"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Izvçlieties partîcijas, ko vçlaties formatçt"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Pârbaudît sliktos blokus?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formatçju partîcijas"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Veidoju un formatçju failu %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Instalçđanas pabeigđanai nepietiek swap, palieliniet swap"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Meklçju pieejamâs pakotnes"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Meklçju uzlabojamâs pakotnes"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Jűsu sistçmâ vairs nav brîvas vietas instalçđanai vai uzlabođanai (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Pilna (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimâla (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Ieteicama (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-#, fuzzy
-msgid "Load from floppy"
-msgstr "Atjanot no disketes"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Loading from floppy"
-msgstr "Atjanot no disketes"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Package selection"
-msgstr "Pakotňu grupu izvçle"
-
-#: ../../install_steps_interactive.pm_.c:578
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "Ielieciet disketi iekârtâ %s"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Saglabât disketç"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Ja jums ir visi đajâ sarakstâ norâdîtie CD, nospiediet Labi.\n"
-"Ja jums nav neviena no norâdîtajiem CD, nospiediet Atcelt.\n"
-"Ja trűkst tikai daţu CD, sarakstâ atslçdziet tos un nospiediet Labi."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom ar nosaukumu \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Sagatavoju instalçđanu"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Instalçju pakotni %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Pçcinstalçđanas konfigurçđana"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Ielieciet disketi iekârtâ %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Ielieciet tukđu disketi iekârtâ %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Tagad jums ir iespçja ielâdçt đifrçđanai nepiecieđamâs programmas.\n"
-"\n"
-"BRÎDINÂJUMS:\n"
-"\n"
-"Sakarâ ar to, ka uz đo programmu izmantođanu attiecas daţâdas vispârçjas\n"
-"prasîbas un daţâda likumdođana, đo programmu saňçmçjam un/vai gala\n"
-"lietotâjam ir jâpârliecinâs, ka viňa likumdođana ďauj viňam ielâdçt,\n"
-"glabât un/vai izmantot đîs programmas.\n"
-"\n"
-"Bez tam saňçmçjam un/vai gala lietotâjam ir jâbűt îpađi uzmanîgam, lai\n"
-"nepârkâptu đo likumdođanu. Ja saňçmçjs un/vai gala lietotâjs neievçros\n"
-"atbilstođos likumus, pret viňu tiks pielietotas nopietnas sankcijas.\n"
-"\n"
-"Mandrakesoft vai tâ raţotâji un/vai piegâdâtâji nekâdâ gadîjumâ nebűs\n"
-"atbildîgi par tieđiem, netieđiem vai nejauđiem bojâjumiem (ieskaitot, bet\n"
-"neaprobeţojoties ar ienâkumu zaudçđanu, komercdarbîbas apturçđanu,\n"
-"komerciâlu datu zaudçđanu un citiem finansiâliem zaudçjumiem, un iespçjamu\n"
-"atbildîbu un atlîdzinâjumu, kas bűtu jâmaksâ saskaňâ ar tiesas spriedumu),\n"
-"kas varçtu rasties sakarâ ar programmu lietođanu, glabâđanu vai vienkârđu\n"
-"ielâdçđanu, kurâm saňçmçjs un/vai gala lietotâjs bűs spçjîgs piekďűt\n"
-"pçc đîs vienođanâs apstiprinâđanas.\n"
-"\n"
-"\n"
-"Ja jums ir jebkâdi jautâjumi sakarâ ar đo vienođanos, lűdzu sazinieties ar\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Pieslçdzos spoguďserverim, lai saňemtu pieejamo pakotňu sarakstu"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Izvçlieties spoguďserveri, no kura ňemt pakotnes"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Pieslçdzos spoguďserverim, lai saňemtu pieejamo pakotňu sarakstu"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Kâda ir jűsu laika josla?"
-
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "Vai datora pulkstenis râda GMT laiku?"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-#, fuzzy
-msgid "NTP Server"
-msgstr "NIS serveris"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Attâls CUPS serveris"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Nav printera"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Vai ir vçl kâds?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Kopsavilkums"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Pele"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Laika josla"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Printeris"
-
-#: ../../install_steps_interactive.pm_.c:1049
-#, fuzzy
-msgid "ISDN card"
-msgstr "Iekđçja ISDN karte"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-#, fuzzy
-msgid "Sound card"
-msgstr "Standarta"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-#, fuzzy
-msgid "NIS"
-msgstr "Izmantot NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-#, fuzzy
-msgid "Local files"
-msgstr "Lokâls printeris"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "root paroles izvçle"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Bez paroles"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Đî parole ir pârâk vienkârđa (jâbűt vismaz %d simbolus garai)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autentifikâcija"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "Autentifikâcija"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-#, fuzzy
-msgid "LDAP Server"
-msgstr "serveris"
-
-#: ../../install_steps_interactive.pm_.c:1134
-#, fuzzy
-msgid "Authentication NIS"
-msgstr "Autentifikâcijas NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS domçns"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS serveris"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Pielâgotâ sâknçđanas diskete piedâvâ veidu, kâ sâknçt jűsu Linux sistçmu\n"
-"neatkarîgi no parastâ sâknçtâja. Tas ir noderîgi, ja jűs nevçlaties savâ\n"
-"sistçmâ uzstâdît SILO, vai kâda cita operçtâjsistçma izdzçđ SILO,\n"
-"vai arî SILO nedarbojas ar jűsu dzelţu konfigurâciju. Pielâgoto\n"
-"sâknçđanas disketi var izmantot arî kopâ ar Mandrake glâbđanas attçlu,\n"
-"atvieglojot atjaunođanu pçc smagiem sistçmas bojâjumiem.\n"
-"\n"
-"Ja vçlaties izveidot jűsu sistçmai pielâgotu sâknçđanas disketi,\n"
-"ielieciet sisketi pirmajâ iekârtâ un nospiediet \"Labi\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Pirmâ diskeđu iekârta"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Otrâ diskeđu iekârta"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Izlaist"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Pielâgotâ sâknçđanas diskete piedâvâ veidu, kâ sâknçt jűsu Linux sistçmu\n"
-"neatkarîgi no parastâ sâknçtâja. Tas ir noderîgi, ja jűs nevçlaties savâ\n"
-"sistçmâ uzstâdît LILO (vai grub), vai kâda cita operçtâjsistçma izdzçđ\n"
-"LILO, vai arî LILO nedarbojas ar jűsu dzelţu konfigurâciju. Pielâgoto\n"
-"sâknçđanas disketi var izmantot arî kopâ ar Mandrake glabđanas attçlu,\n"
-"atvieglojot atjaunođanu pçc smagiem sistçmas bojâjumiem. Vai vçlaties\n"
-"izveidot jűsu sistçmai pielâgotu sâknçđanas disketi?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Diemţçl nav pieejama neviena diskeđu iekârta"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Norâdiet diskeđu iekârtu, ko izmanto distetes veidođanai"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Ielieciet disketi iekârtâ %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Gatavoju sâknçđanas disketi"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Sagatavoju sâknçtâju"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Vai vçlaties izmantot aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Kďűda, instalçjot aboot, \n"
-"vai instalçt piespiedu kârtâ pat tad, ja tiks iznîcinâta pirmâ partîcija?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Sâknçtâja instalçđana"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Sâknçtâja instalçđana neizdevâs. Atklâta đâda kďűda:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Ielieciet tukđu disketi iekârtâ %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Sagatavoju auto instalçđanas disketi"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Daţi soďi nav izpildîti.\n"
-"\n"
-"Vai tieđâm vçlaties iziet tűlît?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Apsveicam, instalçđana ir pabeigta.\n"
-"Izňemiet sâknçđanas datu nesçju un nospiediet ievadu, lai pârstartçtu "
-"datoru.\n"
-"\n"
-"\n"
-"Lai saňemtu informâciju par labojumiem, kas ir pieejami đim Mandrake Linux\n"
-"izdevumam, skatiet Errata failu, kas atrodams\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Informâcija par jűsu sistçmas konfigurçđanu ir pieejama Oficiâlâs\n"
-"Mandrake Linux rokasgrâmatas pçcinstalçđanas nodaďâ."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Sagatavot auto instalçđanas disketi"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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:1361
-msgid "Automated"
-msgstr "Automâtisks"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Atkârtot"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Saglabât pakotňu izvçli"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux instalçđana %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> pâriet | <Space> izvçlçties | <F12> uz nâkamo ekrânu"
-
-#: ../../interactive.pm_.c:87
-#, fuzzy
-msgid "kdesu missing"
-msgstr "atmest"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Izvçlieties darbîbu"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Izvçrsta"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Lűdzu uzgaidiet"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Izvçrst koku"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sakďaut koku"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Sakârtots vienâ sarakstâ vai pa grupâm"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Slikta izvçle, pamçěiniet vçlreiz\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Jűsu izvçle? (noklusçti %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Jűsu izvçle? (noklusçti %s) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Opcijas: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "Vai vçlaties izmantot aboot?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Jűsu izvçle? (noklusçti %s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Čehijas (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Vâcijas"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvoraka"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Spânijas"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Somijas"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Francijas"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norvçěijas"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polijas"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Krievijas"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Zviedrijas"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Apvienotâs Karalistes"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "ASV tastatűra"
-
-#: ../../keyboard.pm_.c:188
-#, fuzzy
-msgid "Albanian"
-msgstr "Irânas"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armçnijas (vecâ)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armçnijas (rakstâmmađîna)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armçnijas (fonçtiskâ)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidţânas (latîňu)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Beďěijas"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Armçnijas (fonçtiskâ)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Bulgârijas"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazîlijas (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Baltkrievijas"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Đveices (vâcu izvietojums)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Đveices (franču izvietojums)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Čehijas (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Vâcijas (bez mçmajiem taustiňiem)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Dânijas"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvoraka (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvoraka (Norvçěijas)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvoraka (US)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Igaunijas"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Gruzijas (\"krievu\" izvietojums)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Gruzijas (\"latîňu\" izvietojums)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Grieíijas"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Ungârijas"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Horvâtijas"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Izraçlas"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Izraçlas (fonçtiskâ)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Irânas"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandes"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Itâlijas"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japânas 106 taistiňi"
-
-#: ../../keyboard.pm_.c:231
-#, fuzzy
-msgid "Korean keyboard"
-msgstr "Apvienotâs Karalistes"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latîňamerikas"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lietuvas AZERTY (vecâ)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lietuvas AZERTY (jaunâ)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lietuvas \"numuru rinda\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lietuvas \"fonçtiskâ\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Atrađanâs vieta"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Maíedonijas"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Dânijas"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Polijas (qwerty izvietojums)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Polijas (qwertz izvietojums)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugâles"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Kanâdas (Kvebeka)"
-
-#: ../../keyboard.pm_.c:247
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "Krievijas (Yawerty)"
-
-#: ../../keyboard.pm_.c:248
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "Krievijas (Yawerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Krievijas (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slovçnijas"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovâkijas (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovâkijas (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "Azerbaidţânas (kirilica)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Tabula"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Tai tastatűra"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Tai tastatűra"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turcijas (tradicionâlais \"F\" modelis)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turcijas (modernais \"Q\" modelis)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukrainas"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "ASV tastatűra (starptautiskâ)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vjetnamas \"numuru rinda\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Dienvidslâvijas (latîňu/kirilicas)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Cikliski montçđanas punkti %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr ""
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - pele"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Parasta PS2 Wheel pele"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-#, fuzzy
-msgid "1 button"
-msgstr "2 pogas"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Parasta 2 pogu pele"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Vispârçja"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Ritenis"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "seriâla"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Parasta 3 pogu pele"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (seriâla, vecs C7 tips)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 pogas"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 pogas"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "neviens"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Nav peles"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Lűdzu notestçjiet peli"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Lai aktivizçtu peli,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "PAKUSTINIET RITENI!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-#, fuzzy
-msgid "Finish"
-msgstr "Somijas"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Tâlâk ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Atpakaď"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Vai tas ir pareizi?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Pieslçgties Internetam"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Parastâkais veids, kâ pieslçgties ar adsl, ir pppoe.\n"
-"Daţi pieslçgumi izmanto pptp, pavisam nedaudzi dhcp.\n"
-"Ja jűs nezinat, izvçlieties 'izmantot pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "izmantot dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "izmantot pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "izmantot pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Kuru dhcp klientu vçlaties izmantot?\n"
-"Noklusçti ir dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Jűsu sistçmâ nav atrasts neviens ethernet tîkla adapteris.\n"
-"Nevaru uzstâdît đo pieslçguma veidu."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Izvçlieties tîkla interfeisu"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Lűdzu norâdiet, kuru tîkla adapteri vçlaties izmantot Interneta pieslçgumam."
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "tîkla karte nav atrasta"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Konfigurçju tîklu"
-
-#: ../../network/ethernet.pm_.c:203
-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űdzu ievadiet jűsu resursa vârdu, ja to zinat.\n"
-"Daţu DHCP serveru darbîbai ir nepiecieđams resursa vârds.\n"
-"Resursa vârdam ir jâbűt pilnam kvalificçtam resursa vârdam,\n"
-"piemçram, ``mybox.mylab.myco.com''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Resursa vârds:"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Tîkla konfigurçđanas meistars"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Ârçjs ISDN modçms"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Iekđçja ISDN karte"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Kâds ir jűsu ISDN pieslçguma veids?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "Tika atklâta ugunsműra konfigurâcija!"
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "Tika atklâta ugunsműra konfigurâcija!"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN konfigurâcija"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Izvçlieties pakalpojumu sniedzçju.\n"
-" Ja tas nav đajâ sarakstâ, izvçlietis Nav sarakstâ"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol"
-msgstr "Protokols"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Eiropa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "Citur pasaulç"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Citur pasaulç \n"
-" nav D-Channel (izdalîtas lînijas)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Kâdu protokolu vçlaties izmantot?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Kâds ir jűsu kartes tips?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Nezinu"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Ja jums ir ISA karte, vçrtîbâm nâkamajâ ekrânâ jâbűt pareizâm.\n"
-"\n"
-"Ja jums ir PCMCIA karte, jums ir jâzina kartes irq un io.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Pârtraukt"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Turpinât"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Kura ir jűsu ISDN karte ?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Ir atklâta ISDN PCI karte, bet nav zinâms kartes tips. Lűdzu izvçlieties "
-"kâdu no nâkamajâ ekrânâ uzskaitîtajâm PCI kartçm."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Nav atrasta neviena ISDN PCI karte. Lűdzu izvçlieties kâdu no saraksta."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Lűdzu norâdiet, kuram seriâlajam portam ir pieslçgts modçms."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Iezvanpieejas opcijas"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Savienojuma nosaukums"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Telefona numurs"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Lietotâja ID"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Ar skriptu"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Izmantojot terminâli"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Domçna nosaukums"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-#, fuzzy
-msgid "First DNS Server (optional)"
-msgstr "Pirmais DNS serveris"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-#, fuzzy
-msgid "Second DNS Server (optional)"
-msgstr "Otrais DNS serveris"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Varat atslçgties vai pârkonfigurçt pieslçgumu."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Varat pârkonfigurçt pieslçgumu."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Pađlaik jűs esat pieslçdzies Internetam."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Varat pieslçgties Internetam vai pârkonfigurçts pieslçgumu."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Pađlaik jűs neesat pieslçdzies Internetam."
-
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
-msgid "Connect"
-msgstr "Nav pieslçgts"
-
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
-msgid "Disconnect"
-msgstr "ISDN pieslçgums"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Tîkla konfigurçđana"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Interneta pieslçgums un konfigurâcija"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr ""
-"\n"
-"Varat atslçgties vai pârkonfigurçt pieslçgumu."
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"Varat atslçgties vai pârkonfigurçt pieslçgumu."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Tîkla konfigurâcija"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Izvçlieties konfigurçjamo profilu"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Noskaidroju ierîces..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Parasts modçma pieslçgums"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "atklâts uz porta %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN pieslçgums"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "atklâts %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy
-msgid "ADSL connection"
-msgstr "LAN pieslçgums"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "atklâts uz interfeisa %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Kabeďa pieslçgums"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Kabeďa pieslçgums"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "LAN pieslçgums"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "ethernet karte(s) atrasta"
-
-#: ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "Izvçlieties izmantojamo rîku"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-#, fuzzy
-msgid "Internet connection"
-msgstr "Interneta pieslçguma koplietođana"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Vai vçlaties startçt pieslçgumu palaiđanas laikâ?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Tîkla konfigurâcija"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, fuzzy, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr "Vai vçlaties pârstartçt tîklu"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"BRÎDINÂJUMS: Đî ierîce jau agrâk ir konfigurçta, lai pieslçgtos Internetam.\n"
-"Vienkârđi apstipriniet, ka vçlaties saglabât đo konfigurâciju.\n"
-"Tâlâko lauku izmainîđana pârrakstîs đo konfigurâciju."
-
-#: ../../network/network.pm_.c:297
-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űdzu ievadiet đî datora IP konfigurâciju.\n"
-"Visi dati jâievada kâ IP adreses ar punktiem atdalîtu decimâlu\n"
-"skaitďu veidâ (piemçram, 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigurçju tîkla iekârtu %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (draiveris %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP adrese"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Tîkla maska"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Automâtisks IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adreses formâtam jâbűt 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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űdzu ievadiet resursa vârdu.\n"
-"Resursa vârdam ir jâbűt pilnam kvalificçtam resursa vârdam,\n"
-"piemçram, ``mybox.mylab.myco.com''.\n"
-"Jűs varat ievadît arî vârtejas IP adresi, ja tâda ir"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS serveris"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Vârtejas ierîce"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Proxy serveru konfigurâcija"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy bűtu jâbűt http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy bűtu jâbűt ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Interneta konfigurâcija"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Vai vçlaties mçěinât pieslçgties internetam tűlît?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Izmçěinu pieslçgumu..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Sistçma pađlaik ir pieslçgta Internetam."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr ""
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Đíiet, ja jűsu sistçmu nav pieslçgta Internetam.\n"
-"Mçěiniet pârkonfigurçt pieslçgumu."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Savienojuma konfigurçđana"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Lűdzu aizpieldiet vai izvçlietis lauku"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "Kartes IRQ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Kartes mem (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "Kartes IO"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "Kartes IO_0"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "Kartes IO_1"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Jűsu privâtais telefona numurs"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Pakalpojumu sniedzçja nosaukums (piem., provider.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Pakalpojumu sniedzçja telefona numurs"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Provaidera dns 1 (nav obligâti)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Provaidera dns 2 (nav obligâti)"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "Tastatűras izvçle"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Zvanîđanas reţîms"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "Savienojuma tips: "
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Savienojuma tips: "
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Konta nosaukums (lietotâja vârds)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Konta parole"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "montçđana neizdevâs: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Đai platformai paplađinâtâ partîcija nav pieejama"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Jűsu diska partîciju tabulâ ir caurums, bet es to nevaru izmantot.\n"
-"Vienîgais risinâjums ir pârvietot primâras partîcijas tâ, lai caurums "
-"atrastos blakus paplađinâtajâm partîcijâm"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Atjaunođana no faila %s neizdevâs: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Slikts rezerves kopijas fails"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Kďűda, ierakstot failâ %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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:24
-msgid "must have"
-msgstr "nepiecieđama"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "svarîga"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "ďoti derîga"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "derîga"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "varbűt"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Lokâls printeris"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Attâls printeris"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Attâls CUPS serveris"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "Attâls lpd serveris"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Tîkla printeris (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Printera serveris"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "Printera ierîces URI"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Lokâls printeris"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Attâls printeris"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Kďűda, ierakstot failâ %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(modulis %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "CUPS servera IP"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Noklusçts)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Izvçlieties printera pieslçgumu"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Kâ đis printeris ir pieslçgts?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"Izmantojot attâlu CUPS serveri, đeit jums nav nepiecieđams\n"
-"konfigurçt printeri; printeri tiks atrasti automâtiski.\n"
-"Ja jűs đaubaties, izvçlieties \"Attâls CUPS serveris\"."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "LAN konfigurâcija"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Attâls CUPS serveris"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP adreses formâtam jâbűt 1.2.3.4"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-#, fuzzy
-msgid "The port number should be an integer!"
-msgstr "Porta numuram ir jâbűt skaitlim"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "CUPS servera IP"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Ports"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Sâknçđanas stila konfigurçđana"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Noskaidroju ierîces..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Pârbaudît portus"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Nav printera"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Lokâls printeris"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Attâls printeris"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Attâls printeris"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Attâls printeris"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "atklâts %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Printera ierîces URI"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Lokâls printeris"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Lűdzu norâdiet, kuram seriâlajam portam ir pieslçgts modçms."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Printera ierîces URI"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Konfigurâcija"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Instalçju pakotni %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Instalçju pakotni %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "Nolasu CUPS draiveru datubâzi..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-#, fuzzy
-msgid "Reading printer database ..."
-msgstr "Nolasu CUPS draiveru datubâzi..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Attâla lpd printera opcijas"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Lai izmantotu attâlu lpd drukas rindu, jums jânorâda\n"
-"printera servera resursa vârds un tâs servera rindas\n"
-"nosaukums, kurai jâadresç drukas uzdevumi."
-
-#: ../../printerdrake.pm_.c:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "Attâlâ resursa vârds"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Attâls printeris"
-
-#: ../../printerdrake.pm_.c:630
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "Attâlâ resursa vârds"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Attâlâ resursa vârds"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) printera opcijas"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Lai drukâtu ar SMB printeri, jums jânorâda SMB resursa vârds\n"
-"(Piezîme! Tas var atđíirties no datora TCP/IP vârda!)\n"
-"un, iespçjams, đî servera IP adrese, kâ arî jűs interesçjođâ printera\n"
-"koplietojuma vârds un atbilstođs lietotâja vârds, parole un\n"
-"darba grupas informâcija."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "SMB servera resurss"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "SMB servera IP"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Koplietojuma vârds"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Darba grupa"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "NetWare printera opcijas"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Lai drukâtu ar NetWare printeri, jums jânorâda NetWare\n"
-"printera servera vârds (Piezîme! tas var atđíirties no servera\n"
-"TCP/IP resursa vârda!), kâ arî jűsu izvçlçtâ printera rindas\n"
-"nosaukums un jebkurđ atbilstođs lietotâja vârds un parole."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Printera serveris"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Printera rindas nosaukums"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Socket printera opcijas"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Lai drukâtu ar socket printeri, jums ir jânorâda printera\n"
-"resursa vârds tîklâ un papildus arî porta numurs."
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "Printera resursa vârds"
-
-#: ../../printerdrake.pm_.c:858
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "Printera resursa vârds"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Printera ierîces URI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Printera nosaukums"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Apraksts"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Atrađanâs vieta"
-
-#: ../../printerdrake.pm_.c:1021
-#, fuzzy
-msgid "Preparing printer database ..."
-msgstr "Nolasu CUPS draiveru datubâzi..."
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Attâls printeris"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Vai tas ir pareizi?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Attâls printeris"
-
-#: ../../printerdrake.pm_.c:1139
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Printera pieslçgums"
-
-#: ../../printerdrake.pm_.c:1140
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "Kâds ir jűsu printera tips?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Interneta konfigurâcija"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Interneta konfigurâcija"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Vai vçlaties izmçěinât printeri?"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "Pârbaudît portus"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-#, fuzzy
-msgid "No test pages"
-msgstr "Jâ, izdrukât abas izmçěinâjuma lapas"
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "Printeris"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Standarta"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "Tiek drukâta(s) izmçěinâjuma lapa(s)..."
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "Tiek drukâta(s) izmçěinâjuma lapa(s)..."
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Tiek drukâta(s) izmçěinâjuma lapa(s)..."
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Tiek drukâta(s) izmçěinâjuma lapa(s)..."
-
-#: ../../printerdrake.pm_.c:1635
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Izmçěinâjuma lapa(s) ir nosűtîta(s) printera demonam.\n"
-"It may take some time before the printer starts.\n"
-"Var paiet zinâms laiks, pirms printeris sâk drukât.\n"
-"Izdrukas stâvoklis:\n"
-"%s\n"
-"\n"
-"Vai tas darbojas pareizi?"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Izmçěinâjuma lapa(s) ir nosűtîta(s) printera demonam.\n"
-"Var paiet zinâms laiks, pirms printeris sâk drukât.\n"
-"Vai tas darbojas pareizi?"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Nav printera"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Pele"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Atslçdzu tîklu"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Atslçdzu tîklu"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Printera opcijas"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "Nolasu CUPS draiveru datubâzi..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Interneta konfigurâcija"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "Nav printera"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "Nolasu CUPS draiveru datubâzi..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "Konfigurâcija"
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Izmçěinu pieslçgumu..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Tîkla konfigurçđana"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Monitors nav konfigurçts"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Konfigurçju tîklu"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Kuru drukâđanas sistçmu vçlaties izmantot?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Augsts"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Paranoisks"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Kuru drukâđanas sistçmu vçlaties izmantot?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Izvçlieties printera pieslçgumu"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Kuru drukâđanas sistçmu vçlaties izmantot?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Konfigurçt printeri"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Instalçju pakotni %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Printera opcijas"
-
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "Nolasu CUPS draiveru datubâzi..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Konfigurçt printeri"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Vai vçlaties konfigurçt printeri?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Printeris"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Eksistç sekojođas drukas rindas.\n"
-"Jűs varat pievienot jaunass vai izmainît esođâs."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Eksistç sekojođas drukas rindas.\n"
-"Jűs varat pievienot jaunass vai izmainît esođâs."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Tîkla konfigurçđana"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Vai vçlaties izmçěinât đo konfigurâciju?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Interneta konfigurâcija"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Vai vçlaties izmçěinât đo konfigurâciju?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Interneta pieslçguma koplietođana"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Printera pieslçgums"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "Tiek drukâta(s) izmçěinâjuma lapa(s)..."
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Vai vçlaties izmçěinât đo konfigurâciju?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Attâls printeris"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Nolasu CUPS draiveru datubâzi..."
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Lokâls printeris"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Vai vçlaties pârstartçt tîklu"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Nolasu CUPS draiveru datubâzi..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-#, fuzzy
-msgid "Proxy configuration"
-msgstr "Proxy serveru konfigurâcija"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr ""
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-#, fuzzy
-msgid "port"
-msgstr "Ports"
-
-#: ../../proxy.pm_.c:44
-#, fuzzy
-msgid "Url should begin with 'http:'"
-msgstr "Proxy bűtu jâbűt http://..."
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-#, fuzzy
-msgid "The port part should be numeric"
-msgstr "Porta numuram ir jâbűt skaitlim"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Proxy bűtu jâbűt ftp://..."
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-#, fuzzy
-msgid "login"
-msgstr "Autoreěistrçđanâs"
-
-#: ../../proxy.pm_.c:82
-#, fuzzy
-msgid "password"
-msgstr "Parole"
-
-#: ../../proxy.pm_.c:84
-#, fuzzy
-msgid "re-type password"
-msgstr "Bez paroles"
-
-#: ../../proxy.pm_.c:88
-#, fuzzy
-msgid "The passwords don't match. Try again!"
-msgstr "Paroles nesakrît"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Nevar pievienot partîciju _formatçtam_ RAID md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Neizdodas ierakstît failu %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid neizdevâs"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid neizdevâs (varbűt nav uzstâdîti raidtools?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Nepietiek diska partîciju RAID lîmenim %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron ir periodisku komandu plânotâjs."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd paredzçts baterijas stâvokďa novçrođanai un grâmatođanai ar syslog.\n"
-"To var izmantot arî datora izslçgđanai, kad baterija ir izlâdçta."
-
-#: ../../services.pm_.c:18
-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 ""
-"Palaiţ komandas, kas ir ieplânotas noteiktâ laikâ, izmantojot at komandu,\n"
-"kâ arî palaiţ komadu paketes, kad vidçjâ sistçmas noslodze ir pietiekođi\n"
-"zema."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron ir parasta UNIX programma, kas palaiţ lietotâju norâdîtâs programmas\n"
-"periodiski ieplânotos laikos. vixie cron piedâvâ virkni papildus\n"
-"iespçju salîdzinot ar UNIX cron, tajâ skaitâ arî labâku drođîbu un daudz\n"
-"izvçrtstâkas konfigurçđanas iespçjas."
-
-#: ../../services.pm_.c:23
-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 nodrođina peles atbalstu daţâdâm teksta reţîma Linux programmâm,\n"
-"piemçram, Midnight Commander. Tas arî ďauj no konsoles ar peli veikt\n"
-"izgriezt-un-iespraust operâcijas, kâ arî piedâvâ izlecođo izvçlňu\n"
-"atbalstu konsolei."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache ir Vispasaules tîmekďa (WWW) serveris. Tas tiek izmantots HTML\n"
-"failu un CGI izplatîđanai."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Interneta superservera demons (parasti saukts par inetd) pçc vajadzîbas\n"
-"startç daţâdus interneta servisus. Tas it atbildîgs par daudzu servisu\n"
-"startçđanu, tajâ skaitâ telnet, ftp, rsh un rlogin. inetd atslçgđana\n"
-"atslçdz arî visus servisus, par kuriem tas atbild."
-
-#: ../../services.pm_.c:33
-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:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Đî pakotne ielâdç izvçlçto tastatűras karti, kas norâdîta failâ\n"
-"/etc/sysconfig/keyboard. To var izvçlçties, izmantojot programmu kbdconfig.\n"
-"Vairumâ gadîjumu đo pakotni ir jâatstâj izvçlçtu."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: ../../services.pm_.c:43
-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 ir drukas demons, kas ir nepiecieđams lpr pareizai darbîbai. Tas ir\n"
-"serveris, kas nosűta drukas uzdevumus printeri(e)m."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) ir domçnu vârdu serveris (DNS), kas tiek izmantots resursu\n"
-"vârdiem atbilstođo IP adređu noskaidrođanai."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Mounts un unmounts ir Tîkla Failu sistçmas (NFS), SMB (Lan\n"
-"Manager/Windows) un NCP (NetWare) montçđanas punkti."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktivizç/Deaktivizç visus tîkla interfeisus, kas ir konfigurçti\n"
-"startçđanai sistçmas sâknçđanas laikâ."
-
-#: ../../services.pm_.c:52
-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 ir populârs protokols failu koplietođanai TCP/IP tîklos.\n"
-"Đis serviss nodrođina NFS servera funkcionalitâti, un to var konfigurçt\n"
-"ar faila /etc/exports palîdzîbu."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS ir populârs protokols failu koplietođanai TCP/IP tîklos.\n"
-"Đis serviss nodrođina NFS failu aizslçgđanas funkcionalitâti."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA atbalsts parasti ir paredzçts, piemçram, tîkla karđu un modçmu\n"
-"uzturçđanai pârnçsâjamos datoros. Tas netiks startçts, ja nav konfigurçts,\n"
-"tâpçc ir drođi to instalçt datoros, kam tas nav nepiecieđams."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"portmapper apkalpo RPC pieslçgumus, ko izmanto citi protokoli,\n"
-"piemçram, NFS un NIS. portmap serveri ir jâizmanto datoros, kas\n"
-"darbojas kâ RPC protokolus izmantojođu protokolu serveri."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix ir Pasta Transporta Aěents, un tâ ir programma, kas pârvieto\n"
-"pastu no viena datora uz citu."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Saglabâ un atjauno sistçmas entropijas krâtuvi, lai ěenerçtu\n"
-"kvalitatîvâkus gadîjumskaitďus."
-
-#: ../../services.pm_.c:69
-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:71
-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 demons ďauj automâtiski atjauninât IP marđrutizatora tabulu,\n"
-"izmantojot RIP protokolu. Kaut gan RIP tiek plađi izmantots nelielos\n"
-"tîklos, sareţěîtâkiem tîkliem ir nepiecieđami sareţěîtâki marđrutizçđanas\n"
-"protokoli."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat protokols ďauj tîkla lietotâjiem saňemt veiktspçjas\n"
-"informâciju par jebkuru đî tîkla datoru."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Protokols rusers tîkla lietotâjiem ďauj noskaidrot, kuru lietotâju\n"
-"sesijas ir atvçrtas citos atbildođajos datoros."
-
-#: ../../services.pm_.c:78
-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 ""
-"Protokols rwho attâliem lietotâjiem ďauj saňemt visu atvçrto lietotâju\n"
-"sesiju sarakstu no datora, kurâ darbojas rwho demons (lîdzîgi finger)."
-
-#: ../../services.pm_.c:80
-#, fuzzy
-msgid "Launch the sound system on your machine"
-msgstr "Palaist X-Window sistçmu startçđanas laikâ"
-
-#: ../../services.pm_.c:81
-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 ir mehânisms, ko daudzi demoni izmanto ziňojumu grâmatođanai\n"
-"daudzos sistçmas ţurnâlu failos. Ir gudra doma vienmçr darbinât syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: ../../services.pm_.c:84
-#, fuzzy
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Startç un aptura X Fontu Serveri sâknçđanas un aizvçrđanas laikâ."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Izvçlçties, kurus servisus vajag automâtiski startçt ielâdes laikâ"
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Printeris"
-
-#
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internets"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Sistçmas reţîms"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Attâla lpd printera opcijas"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Serveris, Datubâzes"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "ierîce"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "running"
-msgstr "Uzmanîbu"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "stopped"
-msgstr "Papildinât"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr ""
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-
-#: ../../services.pm_.c:224
-#, fuzzy
-msgid "On boot"
-msgstr "Yaboot"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Stâvoklis:"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Sektors"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Citur pasaulç"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Interneta pieeja"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimçdiji - Grafika"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#
-#: ../../share/advertising/04-develop.pl_.c:9
-#, fuzzy
-msgid "Development"
-msgstr "Izstrâde, Tîmeklis"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Pieslçgties Internetam"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Tîkla interfeiss"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "SMB servera resurss"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Spçles"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Eksperta"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Instalçju pakotni %s"
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Man neizdodas nolasît partîciju tabulu, priekđ manis tâ ir pârâk bojâta :(\n"
-"Es mçěinâđu turpinât, atslçdzot sliktâs partîcijas"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Kďűda"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Pçcinstalçđanas konfigurçđana"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Sâknçđanas stila konfigurçđana"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Apsveicam!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Instalçt"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Lietotâju pievienođana"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Formatçju loopback failu %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Slikts rezerves kopijas fails"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Slikts rezerves kopijas fails"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Slikts rezerves kopijas fails"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Pakotňu grupu izvçle"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Noňemt rindu"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Noňemt Windows(TM)"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Lietotâja vârds"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Lűdzu notestçjiet peli"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Lűdzu mçěiniet vçlreiz"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Lűdzu mçěiniet vçlreiz"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "Bez paroles"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN pieslçgums"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Izvçlieties printera pieslçgumu"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Lűdzu izvçlieties jűsu tastatűras izkârtojumu."
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Lűdzu uzklikđíiniet uz partîcijas"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Slikts rezerves kopijas fails"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Lűdzu notestçjiet peli"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Slikts rezerves kopijas fails"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Tîkla interfeiss"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Lietotâja vârds"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Lűdzu izvçlieties izmantojamo valodu."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Cietâ diska noteikđana"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Lietotâja vârds"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "Ritenis"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "Ritenis"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Moduďa opcijas:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Tîkla konfigurâcija"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Failu sistçmu uzstâdîđana"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Opcijas"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Lűdzu norâdiet, kuram seriâlajam portam ir pieslçgts modçms."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Tîkla konfigurâcija"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Slikts rezerves kopijas fails"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Lűdzu izvçlieties jűsu peles tipu."
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Slikts rezerves kopijas fails"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Atjanot no disketes"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Lűdzu izvçlieties jűsu peles tipu."
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Cits"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Sistçmas instalçđana"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Atjaunot no faila"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Atjaunot no faila"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Pielâgota"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Palîdzîba"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- Atpakaď"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Stâvoklis:"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Slikts rezerves kopijas fails"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Atjaunot no faila"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Tâlâk ->"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Instalçjamo pakotňu izvçle"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Lűdzu izvçlieties izmantojamo valodu."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Lűdzu izvçlieties izmantojamo valodu."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Lűdzu izvçlieties izmantojamo valodu."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Slikts rezerves kopijas fails"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Slikts rezerves kopijas fails"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Slikts rezerves kopijas fails"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Saglabât failâ"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Lűdzu notestçjiet peli"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Tîkla konfigurâcija"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Tîkla konfigurâcija"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "LAN konfigurâcija"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "LAN konfigurâcija"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Failu sistçmu uzstâdîđana"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s uzstâdîđana neizdevâs. Uzradâs đâda kďűda:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "tîkla karte nav atrasta"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Izdarîts"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Disketes formatçđana"
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Sagatavoju instalçđanu"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-#, fuzzy
-msgid "Restart XFS"
-msgstr "ierobeţot"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "ierobeţot"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Diska formatçđana"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN konfigurâcija"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Montçđanas punkts"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Izvçlieties partîcijas, ko vçlaties formatçt"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Birojs"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Pârtraukt"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Printeris"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Sistçmas instalçđana"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Izvçlieties failu"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Attâls printeris"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Jűsu sistçmâ nav tîkla adaptera!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Instalçt"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Jűsu sistçmâ nav tîkla adaptera!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Instalçđanas beigas"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Interneta pieslçguma koplietođana"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Interneta pieslçguma koplietođana pađlaik ir ieslçgta"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Interneta pieslçguma koplietođana jau ir uzstâdîta.\n"
-"Pađlaik tâ ir ieslçgta.\n"
-"\n"
-"Ko jűs vçlaties darît?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "atslçgt"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "atmest"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "pârkonfigurçt"
-
-#: ../../standalone/drakgw_.c:146
-#, fuzzy
-msgid "Disabling servers..."
-msgstr "Noskaidroju ierîces..."
-
-#: ../../standalone/drakgw_.c:154
-#, fuzzy
-msgid "Internet connection sharing is now disabled."
-msgstr "Interneta pieslçguma koplietođana pađlaik ir atslçgta"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Interneta pieslçguma koplietođana pađlaik ir atslçgta"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Interneta pieslçguma koplietođana jau ir uzstâdîta.\n"
-"Pađlaik tâ ir atslçgta.\n"
-"\n"
-"Ko jűs vçlaties darît?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "ieslçgt"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:180
-#, fuzzy
-msgid "Internet connection sharing is now enabled."
-msgstr "Interneta pieslçguma koplietođana pađlaik ir ieslçgta"
-
-#: ../../standalone/drakgw_.c:201
-#, fuzzy
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Datoru var konfigurçt tâ, lai kopîgi izmantotu Interneta pieslçgumu.\n"
-"\n"
-"Piezîme: jums ir nepiecieđams atseviđís tîkla adapteris, lai uzstâdîtu "
-"lokâlo datortîklu (LAN).\n"
-"\n"
-"Vai vçlaties uzstâdît Interneta pieslçguma koplietođanu?"
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr ""
-
-#
-#: ../../standalone/drakgw_.c:228
-#, fuzzy, c-format
-msgid "Interface %s"
-msgstr "Interfeiss"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Jűsu sistçmâ nav tîkla adaptera!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Jűsu sistçmâ nav atrasts neviens ethernet tîkla adapteris. Lűdzu izmantojiet "
-"dzelţu konfigurçđanas rîku."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Tîkla interfeiss"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Jűsu sistçmâ ir tikai viens konfigurçts tîkla adapteris:\n"
-"\n"
-"%s\n"
-"\n"
-"Vai vçlaties uzstâdît jűsu lokâlo datortîklu ar đo adapteri?"
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Lűdzu izvçlieties, kurđ tîkla adapteris bűs pieslçgts jűsu lokâlajam "
-"datortîklam."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Monitors nav konfigurçts"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Sâknçđanas stila konfigurçđana"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Interneta konfigurâcija"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "CUPS servera IP"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Potenciâls LAN adređu konflikts atklâts đajâ %s! konfigurâcijâ!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Tika atklâta ugunsműra konfigurâcija!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Brîdinâjums! Ir atklâta eksistçjođa ugunsműra konfigurâcija. Pçc "
-"instalçđanas jums varbűt vajadzçs patstâvîgi pielabot konfigurâciju."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Konfigurçju..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Tiek konfigurçti skripti, instalçtas programmas, startçti serveri..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problçmas, instalçjot pakotni %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Viss ir konfigurçts.\n"
-"Tagad jűs varat dalîties Interneta pieslçgumâ ar citiem jűsu lokâlajam\n"
-"datortîklam pieslçgtiem datoriem, izmantojot automâtisku tîkla "
-"konfigurçđanu\n"
-"(DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-#, fuzzy
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-"Interneta pieslçguma koplietođana jau ir uzstâdîta.\n"
-"Pađlaik tâ ir atslçgta.\n"
-"\n"
-"Ko jűs vçlaties darît?"
-
-#: ../../standalone/drakgw_.c:690
-#, fuzzy
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-"Interneta pieslçguma koplietođana jau ir uzstâdîta.\n"
-"Pađlaik tâ ir ieslçgta.\n"
-"\n"
-"Ko jűs vçlaties darît?"
-
-#: ../../standalone/drakgw_.c:691
-#, fuzzy
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Interneta pieslçguma koplietođana pađlaik ir ieslçgta"
-
-#: ../../standalone/drakgw_.c:696
-#, fuzzy
-msgid "Internet connection sharing configuration"
-msgstr "Interneta pieslçgums un konfigurâcija"
-
-#: ../../standalone/drakgw_.c:703
-#, 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 "Interneta pieslçguma koplietođana"
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Tîkla konfigurâcija (%d adapteri)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profils: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Dzçst profilu..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Dzçđamais profils:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Jauns profils..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Resursa vârds: "
-
-#
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Interneta pieeja"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tips:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Vârteja:"
-
-#
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "interfeiss:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Stâvoklis:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigurçt Interneta pieeju..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN konfigurâcija"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Draiveris"
-
-#
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfeiss"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Protocol"
-msgstr "Protokols"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Stâvoklis:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Konfigurçt lokâlo datortîklu..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Meistars..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Konfigurâcijas izmçěinâđana"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Nav pieslçgts"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nav pieslçgts"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN konfigurâcija"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapteris %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klients"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Aktîva"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Aktîva"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Interneta pieslçguma konfigurâcija"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Interneta pieslçguma konfigurâcija"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Savienojuma tips: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Vârteja"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet karte"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klients"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Uzstâdu drođîbas lîmeni"
-
-#: ../../standalone/drakxconf_.c:47
-#, fuzzy
-msgid "Control Center"
-msgstr "Pieslçgties Internetam"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Izvçlieties izmantojamo rîku"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Kanâdas (Kvebeka)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "Eiropa"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Islandes"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "Eiropa"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "seriâla"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "pielietojums: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Lűdzu izvçlieties jűsu tastatűras izkârtojumu."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Vai vçlaties, lai BackSpace konsolç darbotos kâ Delete?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Nomainiet Cd-Rom"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Lűdzu ielieciet instalâcijas Cd-Rom un nospiediet Labi, kad tas izdarîts.\n"
-"Ja jums nav đî diska, nospiediet Atcelt, lai neuzsâktu uzlabođanu no tîkla."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Neizdodas uzsâkt uzlabođanu no tîkla !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-#, fuzzy
-msgid "Show only for the selected day"
-msgstr "Râdît tikai par đodienu"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Fails/_Jauns"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Fails/_Atvçrt"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Fails/_Saglabât"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Fails/Saglabât _kâ"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Fails/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Opcijas"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Opcijas/Tests"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Palîdzîba"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Palîdzîba/_Par..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Lietotâja vârds"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "ziňojumi"
-
-#: ../../standalone/logdrake_.c:175
-#, fuzzy
-msgid "Syslog"
-msgstr "syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "meklçt"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Rîks ţurnâlu pârlűkođanai"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Uzstâdîjumi"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "sakrît"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "bet nesakrît"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Izvçlitesis failu"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Kalendârs"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Faila saturs"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "lűdzu gaidiet, analizçju failu: %s"
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "LAN konfigurâcija"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Iziet"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "ierîce"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "Formatçju"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Konfigurâcija"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Saglabât kâ..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Lűdzu izvçlieties jűsu peles tipu."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "nav atrasta seriâla_usb\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Vai emulçt tređo pogu?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Izvçlieties grafisko karti"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Sâknçjamâ ierîce"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "Tika atklâta ugunsműra konfigurâcija!"
-
-#: ../../standalone/tinyfirewall_.c:44
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "Tika atklâta ugunsműra konfigurâcija!"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Valodas izvçle"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Instalçđanas klases izvçle"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Cietâ diska noteikđana"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Peles konfigurçđana"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Tastatűras izvçle"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr ""
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Failu sistçmu uzstâdîđana"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Diska formatçđana"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Instalçjamo pakotňu izvçle"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Sistçmas instalçđana"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Lietotâju pievienođana"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Tîkla konfigurçđana"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Servisu konfigurçđana"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Sâknçtâja instalçđana"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Sistçmdisketes radîđana"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "X konfigurçđana"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Sistçmas instalçđana"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Instalçđanas beigas"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, fuzzy, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Adapteris %s: %s"
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Kďűda, atverot %s ierakstîđanai: %s"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Tîkla konfigurçđanas meistars"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Lűdzu gaidiet, gatavoju instalâciju"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Serveris, Tîmeklis/FTP"
-
-#
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer (client)"
-msgstr "Tîkla dators, X klients"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Birojs"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome darbastacija"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Rîki darbam ar Palm Pilot vai Visor"
-
-#
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Workstation"
-msgstr "KDE darbastacija"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Serveris, Ugunsműris/Marđrutizators"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Biroja programmas: teksta procesori (kword, abiword), izklâjlapas (lspread, "
-"gnumeric), pdf skatîtâji, u.c."
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Audio rîki: mp3 un midi atskaňotâji, mikđeri u.c."
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Grâmatas un Howto faili par Linux un Brîvo programmatűru"
-
-#
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE darbastacija"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm u.c."
-
-#
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimçdiji - Video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Rîki pastam, jaunumiem, tîmeklim, failu saňemđanai un čatam"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Serveris, Datubâzes"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Tools to ease the configuration of your computer"
-msgstr "Vai vçlaties izmçěinât đo konfigurâciju?"
-
-#
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimçdiji - Skaňa"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilîti"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentâcija"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Konsoles rîki"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-
-#
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Interneta dators"
-
-#
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimçdiju dators"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "LAN konfigurâcija"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Citas grafiskas darbavirsmas (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"K Desktop Environment, galvenâ grafiskâ vide kopa ar papildus rîku kolekciju"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Rîki CD disku radîđanai un ierakstîđanai"
-
-#
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Biroja dators"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Server"
-msgstr "serveris"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm u.c."
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Grafiskâs programmas, piemçram, The Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C un C++ izstrâdes bibliotçkas, programmas un include faili"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer server"
-msgstr "Serveris, Tîkla datora serveris"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Serveris, Pasts/Grupu rîki/Jaunumi"
-
-#
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Spçďu dators"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Video atskaňotâji un redaktori"
-
-#
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimçdiji - Grafika"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Izklaides programmas: arkâde, galdiňspçles, stratçěija u.c."
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Rîku komplekts, lai lasîtu un sűtîtu pastu vai jaunumus (pine, mutt, tin..) "
-"un pârlűkotu Tîmekli"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhivçđana, emulatori, novçrođana"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Personîgâs finanses"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Grafiskâ vide ar lietotajiem draudzîgu programmu komplektu un darbavirsmas "
-"rîkiem"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr ""
-
-#
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet gateway"
-msgstr "Interneta pieeja"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Skaňas un video atskaňođanas/rediěçđanas programmas"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Citas grafiskâs darbavirsmas"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Redaktori, čaulas, failu rîki, terminâďi"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programmas jűsu finanđu pârvaldîđanai, piemçram, gnucach"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Personîgâs informâcijas menedţments"
-
-#
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimçdiji - CD ierakstîđana"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Scientific Workstation"
-msgstr "Zinâtniskâ darbastacija"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Pârtraukt"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Nevienu"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Norâdiet noklusçto lietotâju:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Attâls printeris"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Tagad jűs varat norâdît parametrus modulim %s."
-
-#~ msgid "Low"
-#~ msgstr "Zems"
-
-#~ msgid "Medium"
-#~ msgstr "Vidçjs"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Daţi uzlabojumi đim drođîbas lîmenis, un galvenais ir tas, ka tagad ir\n"
-#~ "vairâk drođîbas brîdinâjumu un pârbauţu."
-
-#~ msgid "mount failed"
-#~ msgstr "montçđana neizdevâs"
-
-#~ msgid "Boot mode"
-#~ msgstr "Sâknçđanas reţîms"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Eksperta"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux laiku rçíina pçc GMT jeb \"Grîničas Meridiâna Laika\" un "
-#~ "pârvçrđ\n"
-#~ "to par vietçjo laiku atbilstođi jűsu izvçlçtajai laika joslai."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Pieslçgties Internetam"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Atslçgties no Interneta"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfigurçt tîkla pieslçgumu (LAN vai Interneta)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Uz kuru disku vçlaties to pârvietot?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome darbastacija"
-
-#~ msgid "authentification"
-#~ msgstr "autentifikâcija"
-
-#~ msgid "user"
-#~ msgstr "lietotâjs"
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "Skançju piejamos nfs kopîgos resursus"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "Skançju piejamos nfs kopîgos resursus uz servera %s"
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "Skançju piejamos samba kopîgos resursus"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "Skançju piejamos samba kopîgos resursus uz servera %s"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Lűdzu izvçlieties jűsu peles tipu."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Iziet"
-
-#~ msgid "Removable media"
-#~ msgstr "Izňemams datu nesçjs"
-
-#~ msgid "Active"
-#~ msgstr "Aktîva"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Nç"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Printeris, modelis \"%s\", atrasts pie "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Lokâlâ printera ierîce"
-
-#~ msgid "Printer Device"
-#~ msgstr "Printera ierîce"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Attâls CUPS serveris"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Attâls CUPS serveris"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Sistçmas reţîms"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Cits"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Lűdzu izvçlieties jűsu tastatűras izkârtojumu."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Lűdzu uzklikđíiniet uz partîcijas"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tips: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Slikts rezerves kopijas fails"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "X konfigurçđana"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Printera ierîce"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Atcelt"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Labi"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Pele"
-
-#
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "toot"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "Izmçěinu pieslçgumu..."
-
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "Izmçěinu pieslçgumu..."
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "Sistçma pađlaik ir pieslçgta Internetam."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Norâdiet apjomu, ko vçlaties instalçt"
-
-#~ msgid "Total size: "
-#~ msgstr "Kopçjais izmçrs: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Lűdzu uzgaidiet, "
-
-#~ msgid "Total time "
-#~ msgstr "Kopçjais laiks"
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Vai izmantot jau esođo X11 konfigurâciju?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Kurai ierîcei ir pieslçgts printeris\n"
-#~ "(atcerieties, ka /dev/lp0 atbilst LPT1:)?\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#, fuzzy
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Brîdinâjums, tîkla adapteris jau ir konfigurçts.\n"
-#~ "Vai vçlaties to konfigurçt atkârtoti?"
-
-#~ msgid "New"
-#~ msgstr "Jauns"
-
-#~ msgid "Remote"
-#~ msgstr "Attâla"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Lűdzu uzklikđíiniet uz partîcijas"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Nenoteiktîba (%s), esiet precîzâks\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (noklusçti %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Jűsu izvçle? (noklusçti %s ievadiet `none', ja nav) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "lasîđanai nevar atvçrt /etc/sysconfig/autologin: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Vai vçlaties pârstartçt tîklu"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Vai jűs piekrîtat?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Gatavojos pârstartçt tîkla ierîci:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Gatavojos pârstartçt tîkla ierîci %s. Vai piekrîtat?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Ja vien jűs neesat pârliecinâts par citu izvçli, parasti ir jâizvçlas\n"
-#~ "\"/dev/hda\" (primârais galvenais IDE disks) vai \"/dev/sda\" (pirmais\n"
-#~ "SCSI disks)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Savienojuma tips: "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Norâdiet noklusçto lietotâju:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Lűdzu notestçjiet peli"
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Lűdzu norâdiet vçlamo instalçđanas un sistçmas izmantođanas valodu."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Lai turpinâtu instalçđanu, jums ir jâpieňem đîs licences nosacîjumi.\n"
-#~ "\n"
-#~ "\n"
-#~ "Nospiediet \"Pieňemt\", ja piekrîtat nosacîjumiem.\n"
-#~ "\n"
-#~ "\n"
-#~ "Nospiediet \"Noraidît\", ja nepiekrîtat nosacîjumiem. Instalçđana tiks "
-#~ "pârtraukta bez pađreizçjâs\n"
-#~ "konfigurâcijas izmaiňâm."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Sarakstâ norâdiet jűsu tastatűrai atbilstođu izkârtojumu"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Ja vçlaties, lai citas valodas (izňemot to, ko norâdîjât instalçđanas\n"
-#~ "sâkumâ) bűtu pieejamas pçc instalçđanas, lűdzu norâdiet tâs augstâk\n"
-#~ "esođajâ sarakstâ. Ja vçlaties izmantot visas, nospiediet \"Viss\"."
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Izvçlieties:\n"
-#~ "\n"
-#~ " - Pielâgota: Ja pietiekami labi pârzinat GNU/Linux, jums tiks dota\n"
-#~ " iespçja norâdît sistçmu pielietojumu. Sîkâka informâcija bűs\n"
-#~ " pieejam vçlâk.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Eksperta: Noderçs, ja jűs labi pârzinat GNU/Linux un vçlaties veikt\n"
-#~ " precîzi pielâgotu instalâciju. Tâpat kâ pielâgotas instalâcijas\n"
-#~ " gadîjumâ, jums tiks dota iespçja norâdît sistçmas pielietojumu.\n"
-#~ " Tomçr lűdzu, NEIZVÇLIETIES ĐO, JA JŰS NEESAT PÂRLIECINÂTS PAR\n"
-#~ " SAVU RÎCÎBU!"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Tagad jums ir jânorâda mađînas pielietojums. Varat izvçlçties:\n"
-#~ "\n"
-#~ "* Darbastacija: đî ir ideâla izvçle, ja plânojat sistçmu galvenokârt "
-#~ "izmantot ikdienas vajadzîbâm birojâ vai mâjâs.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Izstrâdei: ja plânojat sistçmu izmantot galvenokârt programmatűras "
-#~ "izstrâdei, đî ir laba izvçle. Đajâ\n"
-#~ " gadîjumâ tiks instalçts pilns programmu komplekts, lai jűs varçtu "
-#~ "kompilçt, atkďűdot un formatçt sâkumkodu vai\n"
-#~ " veidot programmatűras pakotnes.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Serveris: ja plânojat sistçmu izmantot kâ serveri, đî ir laba izvçle. "
-#~ "Tas var bűt failu serveris (NFS vai\n"
-#~ " SMB), drukas serveris (Unix stila vai Microsoft Windows stila), "
-#~ "autentificçđanas serveris (NIS),\n"
-#~ " datubâzu serveris utt. Đajâ gadîjumâ neceriet, ka tiks instalçti kâdi "
-#~ "izskaistinâjumi (KDE, GNOME, un tml.)."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Tagad varat izvçlçties instalçjamo vai uzlabojamo pakotňu grupu.\n"
-#~ "\n"
-#~ "\n"
-#~ "Pçc tam DrakX pârbaudîs, vai pietiek vietas to visu instalçđanai.\n"
-#~ "Ja nav vietas, jűs brîdinâs par to. Ja vçlaties turpinât, neskatoties\n"
-#~ "uz to, izvçlçto grupu instalçđana turpinâsies, taču tiks izlaistas\n"
-#~ "daţas mazâk noderîgas pakotnes. Saraksta apakđâ varat izvçlçties\n"
-#~ "opciju \"Atseviđíu pakotňu izvçle\"; đajâ gadîjumâ jums vajadzçs\n"
-#~ "caurskatît vairâk nekâ 1000 pakotňu sarakstu..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Tagad jűs varat atseviđíi izvçlçties visas pakotnes, ko gribat "
-#~ "insrtalçt.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jűs varat izvçstr vai sakďaut koku, noklikđíinot uz opcijâm pakotňu loga\n"
-#~ "kreisajâ stűrî.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ja jűs vçlaties redzçt visas sakotnes sakârtotas alfabçta secîbâ,\n"
-#~ "noklikđíiniet uz ikonas \"Sakârtots vienâ sarakstâ vai pa grupâm\"\n"
-#~ "\n"
-#~ "\n"
-#~ "Ja jűs nevçlaties, lai jűs brîdina par atkarîbâm, noklikđíiniet uz\n"
-#~ "\"Automâtiskas atkarîbas\". Ja jűs tâ izdarât, ňemiet vçrâ, ka "
-#~ "atteikđanâs\n"
-#~ "no vienas pakotnes var izsaukt atteikđanos no vairâkâm citâm pakotnçm,\n"
-#~ "kas ir no tâs atkarîgas."
-
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Ja jums ir visi đajâ sarakstâ norâdîtie CD, nospiediet Labi.\n"
-#~ "Ja jums nav neviena no norâdîtajiem CD, nospiediet Atcelt.\n"
-#~ "Ja trűkst tikai daţu CD, sarakstâ atslçdziet tos un nospiediet Labi."
-
-#~ 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 "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Ja vçlaties savu datoru pieslçgt Internetam vai lokâlam datortîklam,\n"
-#~ "lűdzu izvçlieties pareizu opciju. Lűdzu vispirms ieslçdziet attiecîgu\n"
-#~ "ierîci, pirms izvçlaties opciju, lai DrakX noteiktu to automâtiski.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ja jums nav nekâda pieslçguma Internetam vai lokâlam datortîklam,\n"
-#~ "izvçlieties \"Atslçgt tîklu\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ja jűs vçlaties konfigurçt tîklu vçlâk pçc instalçđanas, vai arî esat\n"
-#~ "jau pabeiguđi konfigurçt jűsu tîkla pieslçgumu, izvçlieties \"Izdarîts\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Modçms nav atrasts. Lűdzu norâdiet, kuram seriâlajam portam tas "
-#~ "pieslçgts.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jűsu zinâđanai, pirmais seriâlais ports (ko Microsoft Windows sauc par\n"
-#~ "\"COM1\") Linux vidç tiek saukts par \"ttyS0\"."
-
-#~ 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 "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Tagad jűs varat ievadît iezvanpieejas opcijas. Ja jűs nezinat vai neesat\n"
-#~ "pârliecinâts, ko ievadît, pareizu informâciju var saňemt no jűsu "
-#~ "Interneta\n"
-#~ "pakalpojumu sniedzçja. Ja jűs đeit neievadât DNS (vârdu servera) "
-#~ "informâciju,\n"
-#~ "đî informâcija tiks iegűta no jűsu Interneta pakalpojumu sniedzçja\n"
-#~ "pieslçgđanâs laikâ."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Ja jums ir ârçjs modçms, lűdzu ieslçdziet to un ďaujiet DrakX to noteikt "
-#~ "automâtiski."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Lűdzu ieslçdziet jűsu modçmu un norâdiet pareizo modeli."
-
-#~ 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"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Ja jűs neesat pârliecinâts, vai augstâk esođâ informâcija ir pareiza, "
-#~ "vai\n"
-#~ "arî jűs nezinat vai neesat pârliecinâts, ko ievadît, pareizu informâciju\n"
-#~ "var saňemt no jűsu Interneta pakalpojumu sniedzçja. Ja jűs đeit "
-#~ "neievadât\n"
-#~ "DNS (vârdu servera) informâciju, đî informâcija tiks iegűta no jűsu\n"
-#~ "Interneta pakalpojumu sniedzçja pieslçgđanâs laikâ."
-
-#~ 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 ""
-#~ "Tagad varat ievadît jűsu datora vârdu, ja tas nepiecieđamas.\n"
-#~ "Ja jűs to nezinat vai neesat pârliecinâts, ko ievadît, pareizu "
-#~ "informâciju\n"
-#~ "var saňemt no jűsu Interneta pakalpojumu sniedzçja."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Tagad varat konfigurçt tîkla ierîci.\n"
-#~ "\n"
-#~ " * IP adrese: ja to nezinat vai neesat pârliecinâts, pajautâjiet tîkla "
-#~ "administratoram.\n"
-#~ " Jums nav jâievada IP adrese, ja zemâk izvçlaties \"Automâtisks IP"
-#~ "\".\n"
-#~ "\n"
-#~ " - Tîklamaska: \"255.255.255.0\" parasti ir laba izvçle. Ja nezinat vai "
-#~ "neesat pârliecinâts, pajautâjiet\n"
-#~ "tîkla administratoram.\n"
-#~ "\n"
-#~ " - Automâtisks IP: ja jűsu datortîkls izmanto BOOTP vai DHCP protokolu, "
-#~ "izvçlieties đo opciju. Kad tâ izvçlçta,nnav jânorâda \"IP addrese\". Ja "
-#~ "nezinat vai neesat pârliecinâts, pajautâjiet tîkla administratoram."
-
-#~ 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 ""
-#~ "Tagad varat ievadît jűsu datora vârdu, ja tas nepiecieđamas.\n"
-#~ "Ja jűs to nezinat vai neesat pârliecinâts, pajautâjiet tîkla "
-#~ "administratoram."
-
-#~ 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 ""
-#~ "Tagad varat ievadît jűsu datora vârdu, ja tas nepiecieđams.\n"
-#~ "Ja nezinat vai neesat pârliecinâts, atstâjiet tukđu."
-
-#~ 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 ""
-#~ "Tagad jűs varat ievadît iezvanîđanâs opcijas. Ja jűs nezinat, ko "
-#~ "ievadît,\n"
-#~ "vajadzîgo informâciju var saňemt no jűsu ISP."
-
-#~ 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 ""
-#~ "Ja jűs izmantosit proxy serverus, lűdzu konfigurçjiet tos. Ja jűs\n"
-#~ "nezinat, vai izmantosit proxy, pajautâjiet tîkla administratoram vai\n"
-#~ "savam ISP."
-
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Ja jűsu Interneta pieslçgums ir konfigurçts pareizi, jűs varat instalçt\n"
-#~ "kriptogrâfijas pakotnes. Vispirms norâdiet spoguďserveri, no kura\n"
-#~ "ielâdçt pakotnes, tad izvçlieties instalçjamâs pakotnes.\n"
-#~ "\n"
-#~ "\n"
-#~ "Atcerieties, ka spoguďserveris un kriptogrâfijas pakotnes ir jâizvçlas\n"
-#~ "atbilstođi jűsu valsts likumdođanai."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Tagad varat norâdît laika joslu, kurâ jűs dzîvojat."
-
-#~ 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 ""
-#~ "Jűs varat konfigurçt lokâlu printeri (kas pieslçgts jűsu datoram) vai\n"
-#~ "attâlu printeri (pieejami Unix, Netware vai Microsoft Windows tîklâ)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Ja jűs vçlaties izmantot printeri, izvçlieties vienu no drukas sistçmâm "
-#~ "- \n"
-#~ "CUPS vai LRP.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS ir jauna, jaudîga un elastîga drukas sistçma Unix sistçmâm (CUPS\n"
-#~ "nozîmç \"Common Unix Printing System\"). Đî ir noklusçtâ Mandrake Linux\n"
-#~ "drukas sistçma.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR ir vecâ drukas sistçma, kas tika izmantota iepriekđçjâs Mandrake "
-#~ "Linux\n"
-#~ "versijâs.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ja jums nav printera, izvçlieties \"Neviens\"."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linux var strâdât ar daţâdiem printeru tipiem. Katram no điem tipiem\n"
-#~ "ir nepiecieđama atđíirîgi uzstâdîjumi.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ja jűsu printeris ir fiziski pieslçgts jűsu datoram, izvçlieties "
-#~ "\"Lokâls\n"
-#~ "printeris\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ja jűs vçlaties piekďűt printerim, kas ir pieslçgts attâlam Microsoft\n"
-#~ "Windows datoram (vai Unix datoram, kas izmanto SMB protokolu), "
-#~ "izvçlieties\n"
-#~ "\"SMB/Windows 95/98/NT\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Lűdzu ieslçdziet jűsu printeri, pirms turpinât un ďaut DrakX to noteikt.\n"
-#~ "\n"
-#~ "Đeit jums ir jâievada noteikta informâcija.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printera nosaukums: drukas spolçtâjs izmanto \"lp\" kâ noklusçto "
-#~ "printera nosaukumu, tâpçc jums ir jâbűt\n"
-#~ " printerim, kas saucas \"lp\". Ja jums ir tikai viens printeris, jűs "
-#~ "varat tam pieđíirt vairâkus nosaukumus.\n"
-#~ " Nosaukumi ir jâatdala ar vertikâlas svîtras simbolu (\"|\"). "
-#~ "Tâdçjâdi, ja jűs gribat izmantot saprotamâku\n"
-#~ " nosaukumu, jűs to varat norâdît pirmo, piemçram, \"Mans printeris|lp"
-#~ "\". Printeris, kura nosaukumâ ir \"lp\",\n"
-#~ " bűs noklusçtais printeris.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Apraksts: nav obligâts, bet var noderçt, ja jűsu datoram ir "
-#~ "pieslçgti vairâki printeri, vai arî jűs gribat\n"
-#~ " atďaut citiem datoriem pieslçgties jűsu printerim.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Atrađanâs vieta: ja gribat, varat sniegt informâciju par jűsu "
-#~ "printera\n"
-#~ " atrađanâs vietu (đeit jűs varat rakstît visu, ko vçlaties, "
-#~ "piemçram,\n"
-#~ " \"otrajâ stâvâ\").\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Đeit jums ir jâievada noteikta informâcija.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Rindas nosaukums: drukas spolçtâjs izmanto \"lp\" kâ noklusçtâ "
-#~ "printera nosaukumu, tâpçc jums ir jâbűt\n"
-#~ " printerim, kas saucas \"lp\". Ja jums ir tikai viens printeris, jűs "
-#~ "varat tam pieđíirt vairâkus nosaukumus.\n"
-#~ " Nosaukumi ir jâatdala ar vertikâlas svîtras simbolu (\"|\"). "
-#~ "Tâdçjâdi, ja jűs gribat izmantot saprotamâku\n"
-#~ " nosaukumu, jűs to varat norâdît pirmo, piemçram, \"Mans printeris|lp"
-#~ "\". Printeris, kura nosaukumâ ir \"lp\",\n"
-#~ " bűs noklusçtais printeris.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Spolçđanas katalogs: tieđi đajâ katalogâ tiek glabâti drukas "
-#~ "uzdevumi. Ja nezinat, ko ievadît,\n"
-#~ " atstâjiet noklusçto vçrtîbu\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printera pieslçgums: Ja jűsu printeris fiziski ir pieslçgts jűsu "
-#~ "datoram, izvçlieties \"Lokâls printeris\".\n"
-#~ " Ja jűs vçlaties piekďűt printerim, kas pieslçgts attâlam Unix "
-#~ "datoram, izvçlieties \"Attâls lpd printeris\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ja jűs vçlaties izmantot printeri, kas pieslçgts attâlam Microsoft "
-#~ "Windows datoram (vai Unix datoram, kas\n"
-#~ " izmanto SMB protokolu), izvçlieties \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Ja jűs vçlaties izmantot printeri, kas atrodas NetWare tîklâ, "
-#~ "izvçlieties \"NetWare\".\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Jűsu printeris nav atrasts. Lűdzu ievadiet ierîces nosaukumu, kurai tas "
-#~ "ir\n"
-#~ "pieslçgts.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jűsu zinâđanai, vairums printeru ir pieslçgti pirmajam paralçlajam "
-#~ "portam.\n"
-#~ "Đo portu GNU/Linux vidç sauc par \"/dev/lp0\" bet Microsoft Windows vidç\n"
-#~ "par \"LPT1\"."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Tagad jums ir jâizvçlâs printeri no augstâk esođâ saraksta."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "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 ""
-#~ "Lűdzu izvçlieties jűsu printerim atbilstođas opcijas.\n"
-#~ "Izlasiet dokumentâciju, ja nezinat, ko izvçlçties.\n"
-#~ "\n"
-#~ "\n"
-#~ "Nâkamajâ solî jűs varçsit pârbaudît izvçlçto konfigurâciju un izmainît "
-#~ "to,\n"
-#~ "ja printeris nedarbosies pareizi."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Tagad varat ievadît jűsu Mandrake Linux sistçmas root paroli.\n"
-#~ "Parole ir jâievada divas reizes, lai pârliecinâtos, ka abas kopijas\n"
-#~ "sakrît un jűs neesat kďűdîjies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root ir sistçmas administrators un vienîgais lietotâjs, kam ir atďauts\n"
-#~ "izmainît sistçmas konfigurâciju. Đî iemesla dçď rűpîgi izvçlieties đo\n"
-#~ "paroli! Neautorizçta root konta izmantođana var bűt ďoti bîstama\n"
-#~ "sistçmas integritâtei, tâs datiem un citâm tai pieslçgtajâm sistçmâm.\n"
-#~ "\n"
-#~ "\n"
-#~ "Parolei ir jâbűt vismaz 8 simbolus garai burtu un ciparu kombinâcijai.\n"
-#~ "To nekad nevajadzçtu pierakstît uz papîra.\n"
-#~ "\n"
-#~ "\n"
-#~ "Neizvçlieties pârâk garu vai sareţěîtu paroli: jums to ir\n"
-#~ "jâspçj atcerçties bez pârâk lielas piepűles."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Tagad jűs varat pievienot vienu vai vairâkus \"parastu\" lietotâju\n"
-#~ "kontus kâ pretstatu \"priviliěçta\" lietotâja kontam root. Varat "
-#~ "izveidot\n"
-#~ "vienu vai vairâkus kontus katrai personai, kam bűs atďauts izmantot\n"
-#~ "jűsu datoru. Atcerieties, ka katram lietotâja kontam ir sava\n"
-#~ "konfigurâcija (grafiskâ vide, programmu konfigurâcija un tml.) un savs\n"
-#~ "\"mâjas katalogs\", kurâ đî konfigurâcija tiek glabâta.\n"
-#~ "\n"
-#~ "\n"
-#~ "Vispirms izveidojiet kontu pats sev! Pat ja jűs bűsit vienîgais\n"
-#~ "datora lietotâjs, jűs NEDRÎKSTAT ikdienâ lietot root kontu: tas ir ďoti\n"
-#~ "liels drođîbas risks. Ďoti bieţi tikai daţi nepareizi nodrukâti burti\n"
-#~ "var padarît jűsu sistçmu nelietojamu.\n"
-#~ "\n"
-#~ "\n"
-#~ "Đî iemesla dçď jums jâiereěistrçjas sistçmâ, izmantojot lietotâja kontu,\n"
-#~ "ko jűs tűlît izveidosit, un jâiereěistrçjas kâ root tikai "
-#~ "administrçđanas\n"
-#~ "un uzturçđanas uzdevumu veikđanai."
-
-#~ 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 ""
-#~ "Ir ďoti ieteicams izveidot sâknçđanas disketi. Ja jums neizdosies "
-#~ "startçt\n"
-#~ "savu datoru, tâ bűs vienîgais veids, kâ to izglâbt bez pârinstalçđanas."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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 un grub galvenâs opcijas ir:\n"
-#~ " - Sâknçđanas ierîce: Norâda ierîces nosaukumu (t.i., cietâ diska\n"
-#~ "partîciju), uz kuras atrodas sâknçđanas sektors. Ja vien neesat\n"
-#~ "pârliecinâts par ko citu, izvçlieties \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Pauze pirms noklusçtâ attçla sâknçđanas: Norâda laiku sekundes\n"
-#~ "desmitdaďâs, ko sâknçtâjs gaida pirms pirmâ attçla ielâdes.\n"
-#~ "Tas ir ieteicams sistçmâm, kas sâknçjas tieđi no cietâ diska tűlît pçc\n"
-#~ "tastatűras aktivizçđanas. Sâknçđana sâkas bez pauzes, ja \"pauze\" nav\n"
-#~ "norâdîta vai ir nulle.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video reţîms: Tas norâda VGA teksta reţîmu, kas tiek izvçlçts\n"
-#~ "sâknçđanas laikâ. Ir pieejamas sekojođas vçrtîbas: \n"
-#~ " * normâls: izvçlas normâlu 80x25 teksta reţîmu.\n"
-#~ " * <skaitlis>: izmanto atbilstođu teksta reţîmu."
-
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 ir sâknçtâjs SPARC sistçmâm: tas spçj sâknçt GNU/Linux\n"
-#~ "vai jebkuru citu operçtâjsistçmu, kas ir uzstâdîta jűsu datorâ.\n"
-#~ "Parasti citas operçtâjsistçmas tiek korekti noteiktas un instalçtas.\n"
-#~ "Ja tâ nenotiek, jűs đajâ ekrânâ varat ar roku pievienot ierakstu. Esiet\n"
-#~ "uzmanîgs, izvçloties pareizus parametrus.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jűs varbűt arî vçlaties neďaut nevienam piekďűt pârçjâm "
-#~ "operçtâjsistçmâm,\n"
-#~ "un đajâ gadîjumâ jűs varat izdzçst attiecîgos ierakstus. Bet đajâ\n"
-#~ "gadîjumâ jums bűs nepiecieđama sâknçđanas diskete, lai tâs sâknçtu!"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "SILO galvenâs opcijas ir:\n"
-#~ " - Sâknçtâja instalçđana: Norâda, kur jűs vçlaties novietot "
-#~ "informâciju,\n"
-#~ "kas nepiecieđama GNU/Linux sâknçđanai. Ja vien neesat pârliecinâts\n"
-#~ "par ko citu, izvçlieties \"Diska pirmais sektors (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Pauze pirms noklusçtâ attçla sâknçđanas: Norâda laiku sekundes\n"
-#~ "desmitdaďâs, ko sâknçtâjs gaida pirms pirmâ attçla ielâdes.\n"
-#~ "Tas ir ieteicams sistçmâm, kas sâknçjas tieđi no cietâ diska tűlît pçc\n"
-#~ "tastatűras aktivizçđanas. Sâknçđana sâkas bez pauzes, ja \"pauze\" nav\n"
-#~ "norâdîta vai ir nulle."
-
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Ir pienâcis laiks konfigurçt X Window System, kas ir GNU/Linux GUI\n"
-#~ "(grafiskâ lietotâja interfeisa) pamats. Lai to izdarîtu, jums ir\n"
-#~ "jâkonfigurç video karte un monitors. Tomçr vairums no điem soďiem ir\n"
-#~ "automatizçti, tâpçc jűsu uzdevums var bűt tikai pârbaudît izdarîto\n"
-#~ "izvçli un apstiprinât parametrus :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Kad konfigurçđana ir pabeigta, tiks startçts X (ja vien jűs\n"
-#~ "nelűdzat DrakX to nedarît), lai jűs pârbaudîtu un apskatîtu, vai\n"
-#~ "parametri jűs apmierina. Ja tie neder, jűs varat atgriezties un tos\n"
-#~ "nomainît tik reizes, cik bűs nepiecieđams."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Ja ar X konfigurâciju kaut kas nav kârtîbâ, izmantojiet đîs opcijas,\n"
-#~ "lai pareizi konfigurçtu X Window System."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Ja dodat priekđroku darba uzsâkđanai grafiskâ reţîmâ, izvçlietis \"Jâ\",\n"
-#~ "citâdi izvçlieties \"Nç\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Jűsu sistçma tiks pârstartçta.\n"
-#~ "\n"
-#~ "Pçc pârstartçđanas jűsu jaunâ Mandrake Linux sistçma tiks ielâdçta\n"
-#~ "automâtiski. Ja vçlaties sâknçt kâdu citu jau uzstâdîtu operçtâjsistçmu,\n"
-#~ "lűdzu izlasiet papildus norâdîjumus."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Čehijas (programmçtâju)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovâkijas (programmçtâju)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Veidojamâ profila nosaukums:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Ierakstît /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formatçt visu"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Pçc visu partîciju formatçđanas"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "visi đâjâs partîcijâs esođie dati tiks pazaudçti"
-
-#~ msgid "Reload"
-#~ msgstr "Pârlâdçt"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "Vai vçlaties izveidot auto instalçđanas disketi linux replikâcijai?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL konfigurâcija"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Izmantojot attâlu CUPS serveri, đeit jums nav nepiecieđams\n"
-#~ "konfigurçt nevienu printeri. Printeri tiks atrasti automâtiski,\n"
-#~ "ja vien serveris nav pieslçgts citam tîklam; tâdâ gadîjumâ jums\n"
-#~ "ir jânorâda CUPS servera IP adrese un, iespçjams, porta numurs."
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Attâlâ rinda"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Domçna nosaukums"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Nav printera"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "Tîkla konfigurâcija"
-
-#~ msgid "Profile "
-#~ msgstr "Profils "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Savienojuma tips: "
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr "Pieslçgties Internetam"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Atslçgties no Interneta"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Atslçgties no Interneta"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Atslçgties no Interneta"
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "Savienojuma nosaukums"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Noklusçts"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Konfigurâcijas faila saturu neizdodas saprast."
-
-#~ msgid "Adapter"
-#~ msgstr "Adapteris"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Atslçgt"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Ieslçgt"
-
-#~ 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 ""
-#~ "Tagad varat izmçěinât peli. Izmantojiet pogas un riteni, lai\n"
-#~ "pârliecinâtos, ka konfigurâcija ir pareiza. Ja nav, varat nospiest\n"
-#~ "\"Atcelt\" un izvçlçties citu draiveri."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (vai ADSL) pieslçgums"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Pele"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "Jűs varat tieđi norâdît URI, lai piekďűtu printerim ar CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Jâ, izdrukât ASCII izmçěinâjuma lapu"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Jâ, izdrukât PostScript izmçěinâjuma lapu"
-
-#~ msgid "Paper Size"
-#~ msgstr "Papîra izmçrs"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Vai izmest lapu pçc izdrukas?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint draivera opcijas"
-
-#~ msgid "Color depth options"
-#~ msgstr "Krâsu dziďuma opcijas"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Drukât tekstu kâ PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Vai labot teksta kâpňveida izdruku?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Lappuđu skaits vienâ izdrukas lapâ"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Labâ/Kreisâ mala punktos (1/72 collas daďâs)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Augđçjâ/Apakđçjâ mala punktos (1/72 collas daďâs)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Papildus GhostScript opcijas"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Papildus teksta opcijas"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Ačgârna lappuđu secîba"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Izvçlieties attâla printera pieslçgumu"
-
-#~ 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 ""
-#~ "Katram printerim ir nepiecieđams nosaukums (piemçram, lp).\n"
-#~ "Var norâdît arî citus parametrus, piemçram, printera aprakstu vai tâ\n"
-#~ "atrađanâs vietu. Kâdu nosaukumu pieđíirt đim printerim, un kâdâ veidâ\n"
-#~ "printeris ir pieslçgts?"
-
-#~ 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 ""
-#~ "Katrai drukas rindai (uz kuru tiek adresçti drukas uzdevumi) ir "
-#~ "nepiecieđams\n"
-#~ "nosaukums (bieţi lp) un tai piesaistîts spolçđanas katalogs. Kâdu "
-#~ "nosaukumu\n"
-#~ "un katalogu izmantot đai rindai un kâ ir pieslçgts printeris?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Rindas nosaukums"
-
-#~ msgid "Spool directory"
-#~ msgstr "Spolçđanas katalogs"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Lai palielinâtu sistçmas drođîbu, izvçlieties \"Izmantot shadow failu\"\n"
-#~ "un \"Izmantot MD5 paroles\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Ja jűsu tîklâ lieto NIS, izvçlieties \"Izmantot NIS\". Ja jűs to nezinat\n"
-#~ "pajautâjiet savam tîkla administratoram."
-
-#~ msgid "yellow pages"
-#~ msgstr "dzeltenâs lapas"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "LAN konfigurâcija"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Pakalpojumu sniedzçja dns 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Pakalpojumu sniedzçja dns 2"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Kâ jűs vçlaties pieslçgties Internetam?"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Izvçlieties failu"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Izmçěinu pieslçgumu..."
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr "Konfigurçju..."
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Đis startçđanas skripts mçěina ielâdçt moduďus jűsu usb pelei."
-
-#~ msgid "Boot style configuration"
-#~ msgstr "Sâknçđanas stila konfigurçđana"
-
-#~ 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 ""
-#~ "Tagad, kad ir konfigurçts jűsu Interneta pieslçgums,\n"
-#~ "datoru var konfigurçt tâ, lai kopîgi izmantotu Interneta pieslçgumu.\n"
-#~ "Piezîme: jums ir nepiecieđams atseviđís tîkla adapteris, lai uzstâdîti "
-#~ "lokâlo datortîklu (LAN).\n"
-#~ "\n"
-#~ "Vai vçlaties uzstâdît Interneta pieslçguma koplietođanu?\n"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Automâtiskas atkarîbas"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "LILO/GRUB konfigurçđana"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Sâknçđanas disketes radîđana"
-
-#~ msgid "Choice"
-#~ msgstr "Izvçle"
-
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr "horizontâla jauka izskata aurora"
-
-#~ msgid "vertical traditional aurora"
-#~ msgstr "vertikâla tradicionâla aurora"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitors"
-
-#~ 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 ""
-#~ "Tagad varat izvçlçties daţâdas sistçmas opcijas.\n"
-#~ "\n"
-#~ "* Izmantot cietâ diska optimizâcijas: đî opcija var uzlabot cietâ diska "
-#~ "veiktspçju, taču tâ ir paredzçta tikai pieredzçjuđiem lietotâjiem:\n"
-#~ " daţas kďűdainas mikroshçmas var iznîcinât jűsu datus, tâpçc jűs esat "
-#~ "brîdinâts. Atcerieties, ka kodolâ ir iebűvçts disku un mikroshçmu\n"
-#~ " melnais saraksts, tomçr, ja vçlaties iztikt bez nepatîkamiem\n"
-#~ " pârsteigumiem, neizvçlieties đo opciju.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Izvçlieties drođîbas lîmeni: jűs varat izvçlçties sistçmas drođîbas\n"
-#~ " lîmeni. Pilnîgu informâciju meklçjiet rokasgrâmatâ. Parasti, ja\n"
-#~ " nezinat, atstâjiet noklusçto vçrtîbu.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precîzs RAM apjoms, ja nepiecieđams: diemţçl műsdienu datoru\n"
-#~ " pasaulç nav vienotas metodes, kâ pajautât BIOSam par jűsu datorâ\n"
-#~ " uzstâdîtâs atmiňas apjomu. Rezultâtâ Linux ne vienmçr pareizi\n"
-#~ " nosaka jűsu datora RAM apjomu. Ja tâ notiek, jűs đeit varat\n"
-#~ " norâdît pareizu RAM apjomu. Ňemiet vçrâ, ka 2 vai 4 MB atđíirîba\n"
-#~ " ir normâla.\n"
-#~ "\n"
-#~ "* Nomainâmu datu nesçju automontçđana: ja nevçlaties katru reizi montçt\n"
-#~ " nomainâmus datu nesçjus (CD-ROM, disketi, Zip u.c.), drukâjot \"mount"
-#~ "\" un \"umount\", izvçlieties đo opciju.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Iztîrît \"/tmp\" katras sâknçđanas laikâ: ja jűs vçlaties sistçmas "
-#~ "sâknçđanas laikâ izdzçst visus failus un\n"
-#~ " katalogus, kas atrodas \"/tmp\", izvçlieties đo opciju.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Ieslçgt NumLock palaiđanas laikâ: ja vçlaties, lai pçc sâknçđanas "
-#~ "bűtu ieslçgts NumLock, izvçlieties đo\n"
-#~ " opciju. Ňemiet vçrâ, ka to nevajadzçtu izvçlçties klçpjdatoriem, un "
-#~ "ka NumLock var strâdât vai nestrâdât X vidç."
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ "Atvainojiet, pasta konfigurçđana vçl nav realizçta. Esiet pacietîgi."
-
-#
-#~ msgid "Internet/Network access"
-#~ msgstr "Internets/Pieeja tîklam"
-
-#, fuzzy
-#~ msgid "Miscellaneous"
-#~ msgstr "Daţâdi jautâjumi"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Daţâdi jautâjumi"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Nevar izmantot supermount augstâ drođîbas lîmenî"
-
-#~ 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 ""
-#~ "ňemiet vçrâ: PIE ĐÎ DROĐÎBAS LÎMEŇA ROOT SESIJAS ATVÇRĐANA NO KONSOLES\n"
-#~ "NAV ATĎAUTA! Ja vçlaties bűt root, jums vispirms ir jâatver parasta\n"
-#~ "lietotâja sesija un tad jâizmanto \"su\". Vispârîgi runâjot, neceriet\n"
-#~ "izmantot savu datoru kam citam kâ vien servera uzdevumiem.\n"
-#~ "Jűs esat brîdinâts."
-
-#~ 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 ""
-#~ "Esiet uzmanîgs, numlock ieslçgđana liek daudziem taustiňiem parasto\n"
-#~ "burtu vietâ râdît ciparus (piemçram, `p' nospieđana dod `6')"
-
-#~ msgid "not connected"
-#~ msgstr "nav pieslçgts"
-
-#, fuzzy
-#~ msgid "Actions"
-#~ msgstr "Atrađanâs vieta"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Zinâtniskâs programmas"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Serveris, Failu/Drukas/Samba"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "Serveris, DNS/DHCP"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Pirmais DNS serveris"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Otrais DNS serveris"
-
-#~ msgid "using module"
-#~ msgstr "izmantojot moduli"
-
-#
-#~ msgid "Development, Database"
-#~ msgstr "Izstrâde, Datubâze"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr "Izstrâde, Integrçtâ vide"
-
-#
-#~ msgid "Development, Standard tools"
-#~ msgstr "Izstrâde, Standartrîki"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Kuru(s) sâknçtâju(s) vçlaties izmantot?"
-
-#~ msgid "loopback"
-#~ msgstr "loopback"
diff --git a/perl-install/share/po/mt.po b/perl-install/share/po/mt.po
deleted file mode 100644
index cdf4678f3..000000000
--- a/perl-install/share/po/mt.po
+++ /dev/null
@@ -1,12071 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# Ramon Casha <ramon.casha@linux.org.mt>, 2002
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-10 18:12CET\n"
-"Last-Translator: Ramon Casha <ramon.casha@linux.org.mt>\n"
-"Language-Team: Maltese <mt@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Ikkonfigura l-heads kollha independentement"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "UĹźa estensjoni Xinerama"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ikkonfigura l-kard \"%s\" (%s) biss"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Konfigurazzjoni multi-head"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Is-sistema tiegħek tissaporti konfigurazzjoni \"multi-head\".\n"
-"Xi trid tagħmel?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Kard grafika"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Agħşel kard grafika"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Agħşel server X"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Agħşel driver"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Driver X"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Liema konfigurazzjoni ta' XFree trid li jkollok?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Il-kard tiegħek tista' tagħmel użu minn aċċelerazzjoni 3D, imma b' XFree %s "
-"biss.\n"
-"Il-kard tiegħek hija magħrufa minn XFree %s, li jista' jkollu sapport aħjar "
-"2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Il-kard tiegħek tista' tagħmel użu minn aċċelerazzjoni 3D b' XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s b'aċċelerazzjoni 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Il-kard tiegħek tista' tagħmel użu minn aċċelerazzjoni 3D b' XFree %s.\n"
-"DIN HIJA FAĊILITÀ SPERIMENTALI U TISTA' TWAĦĦAL IL-KOMPJUTER."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s b'aċċelerazzjoni 3D ESPERIMENTALI"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Il-kard tiegħek tista' tagħmel użu minn aċċelerazzjoni 3D b' XFree %s.\n"
-"DIN HIJA FAĊILITÀ SPERIMENTALI U TISTA' TWAĦĦAL IL-KOMPJUTER.\n"
-"Il-card tiegħek hija magħrufa minn XFree %s, li jista' jkollu sapport aħjar "
-"2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (driver tal-iskrin għall-installazzjoni)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Konfigurazzjoni XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Agħşel id-daqs tal-memorja tal-kard tal-grafika"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Ikkonfigura għaşliet tas-server"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Agħşel skrin"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Skrin"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Iż-żewġ parametri kritiċi huma frekwenza vertikali (vertical refresh rate), "
-"li\n"
-"hija r-rata li biha l-iskrin sħiħ jiĥi aĥĥornat, u işjed importanti il-"
-"frekwenza\n"
-"orizzontali (horizontal refresh rate), li hija r-rata li biha jiÄĄu aÄĄÄĄornati "
-"l-linji.\n"
-"\n"
-"Huwa importanti ħafna li ma tistpeċifikax skrin b'rata iżjed mgħaġġla milli\n"
-"kapaċi juri l-iskrin tiegħek, għax tista' tagħmillu l-ħsara.\n"
-"Jekk għandek xi dubju, agħşel valur şgħir."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Frekwenza orizzontali"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Frekwenza vertikali"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Skrin mhux issettjat"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Kard grafika għad m'hix issettjata"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Reşoluzzjoni għadha ma ngħaşlitx"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Trid tittestja din il-konfigurazzjoni?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Twissija: it-test ta' din il-kard grafika jista' jwaħħal il-kompjuter"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test tal-konfigurazzjoni"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"ipprova ibdel xi parametri"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Instabet problema:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "ÄŚiereÄĄ f' %d sekondi"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Dan is-seting huwa tajjeb?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Instabet problema. Ipprova ibdel xi parametri"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "ReĹźoluzzjoni"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Agħşel reşoluzzjoni u finezza ta' kuluri"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Kard grafika: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Server XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "IĹźjed"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "ModalitĂ  esperti"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Uri kollox"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "ReĹźoluzzjonijiet"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Tqassim tat-tastiera: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Tip ta' maws: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Apparat maws: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Skrin: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Frek.Orizzontali Skrin: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Frek. Vertikali Skrin: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Kard grafika: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikazzjoni tal-kard grafika: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Memorja grafika: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Numru ta' kuluri: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "ReĹźoluzzjoni: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Server XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Driver XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Qed nipprepara l-konfigurazzjoni X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "X'tixtieq tagħmel?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Nibdel l-iskrin"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Nibdel il-kard grafika"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Nibdel l-għaşliet tas-server"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Nibdel ir-reĹźoluzzjoni"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Nara l-informazzjoni"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "NerÄĄa' nittestja"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Noħroĥ"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Trid işşomm il-bidliet?\n"
-"Il-konfigurazzjoni kurrenti hija:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X fil-bidu"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Nista' nissettja l-kompjuter biex awtomatikament jidħol f' X malli jitla'.\n"
-"Trid ittella' X Windows meta tixgħel?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Jekk jogħĥbok oħroĥ u erĥa' idħol fuq %s biex tara l-bidliet."
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Jekk jogħĥbok oħroĥ mid-desktop u agħfas Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 kuluri (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 elf kulur (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 elf kulur (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljun kulur (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 biljun kulur (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB jew iĹźjed"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA standard, 640x480 b' 60Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 b' 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514/kompatibbli, 1024x768 b' 87 Hz interlaced (ma jieħux 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 b' 87 Hz interlaced, 800x600 b' 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA estiĹź, 800x600 b' 60 Hz, 640x480 b' 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA mhux interlaced, 1024x768 b' 60 Hz, 800x600 b' 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA frekwenza għolja, 1024x768 b' 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekwenza li jiflaħ 1280x1024 b' 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekwenza li jiflaħ 1280x1024 b' 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekwenza li jiflaħ 1280x1024 b' 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Skrin li jiflaħ 1600x1200 b' 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Skrin li jiflaħ 1600x1200 b' 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "L-ewwel settur tal-partizzjoni \"boot\""
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "L-ewwel settur tal-ħard disk (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Installazzjoni SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Fejn tixtieq tinstalla l-\"bootloader\"?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Installazzjoni LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO b'menu testwali"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO b'menu grafiku"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Tella' minn DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Għażliet prinċipali tal-bootloader"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Liema bootloader tuĹźa"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Installazzjoni tal-bootloader"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Diska/apparat \"boot\""
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ma jaħdimx ma' kompjuters antiki)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "ŝgħir"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "compact"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Konfigurazzjoni video"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Stennija qabel ittella' l-għażla impliċita"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Password"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Password (erÄĄa')"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Irrestrinĥi l-għaşliet tal-linja tal-kmand"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "restrict"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Clean /tmp kull meta tixgħel"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Daqs eşatt ta' memorja jekk meħtieĥ (sibt %d RAM)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Ippermetti profili differenti"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Agħti d-daqs tar-RAM f'MB"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"L-għaşla \"irrestrinĥi l-għaşliet tal-linja tal-kmand\" m'għandha ebda "
-"effett minngħajr password"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "ErÄĄa' pprova"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Il-passwords ma jaqblux"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "MessaÄĄÄĄ tal-bidu"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Stennija Open Firmware"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Skadenza tal-ħin għall-kernel boot"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Ippermetti boot mis-CD?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Ippermetti Boot OF?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "OS Impliċitu?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Hawn huma l-elementi differenti>\n"
-"Tista' şşid işjed jew tibdel dawk li hemm."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Ĺťid"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Lest"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Biddel"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Liema tip ta' sistema operattiva trid işşid?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "OS ieħor (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "OS ieħor (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "OS ieħor (Windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Image"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "ŝid fl-aħħar"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Ikteb-aqra"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabella"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Mhux sikur"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Isem"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Impliċitu"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Daqs ta' initrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "EbdaVideo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Neħħi element"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Isem vojt mhux aċċettat"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Trid tispeċifika \"image\" tal-kernel"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Trid tispeċifika partizzjoni \"root\""
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Dan l-isem diÄĄĂ  qed jintuĹźa"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Sibt %s interfaċċji %s"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Għandek işjed?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Il-kompjuter għandu interfaċċji %s?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Le"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Iva"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Ara info. dwar ħardwer"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Qed ninstalla driver għal %s kard %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modulu %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Liema driver %s tridni nipprova?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"F'ċerti każi id-driver %s ikollu bżonn iżjed informazzjoni biex jaħdem\n"
-"sew, għalkemm is-soltu jaħdem sew mingħajrha. Trid tispeċifika xi\n"
-"informazzjoni lid-driver, jew tħallih ifittex l-apparat waħdu? Kulltant, "
-"it-\n"
-"tfittix iĥiegħel lill-kompjuter jeħel, imma dan m'għandux jagħmel ħsara."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Fittex"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Speċifika informazzjoni"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Tista' tipprovdi l-għaşliet lill-modulu %s.\n"
-"L-għaşliet għandhom il-format \"isem=valur isem=valur ...\".\n"
-"Per eĹźempju, \"io=0x300 irq=7\"."
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Għaşliet tal-modulu:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Il-modulu %s ma rnexxielux jitla'.\n"
-"Trid terĥa' tipprova b'parametri oħra?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "aċċess għall-programmi X"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "aċċess għall-għodda rpm"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "ippermetti \"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "aċċess għall-fajls amministrattivi"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s diÄĄĂ  miĹźjud)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Dan il-password sempliċi wisq"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Jekk jogħĥbok agħti isem ta' user"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"L-isem tal-user jista' jkun fih biss ittri şgħar, numri, \"-\" u \"_\"."
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Dan l-isem ta' user diÄĄĂ  jeĹźisti"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Ĺťid user"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Daħħal dettalji ta' user\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Aċċetta user"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Isem veru"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Isem tal-user"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Stampa"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Awto-login"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Nista' nissettja l-kompjuter biex awtomatikament jagħmel login fuq user "
-"wieħed.\n"
-"Trid tissettja din il-faċilità?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Agħżel il-user impliċitu:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Agħşel liema \"window manager\" trid tħaddem:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Agħşel liema lingwa trid tuşa."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Tista' tagħşel lingwi oħra li jkun u disponibbli wara li tinstalla"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Kollha"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Ippermetti l-users kollha"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalizzat"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Ebda offerti (sharing)"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Irid jiÄĄi nstallat il-pakkett %s. Tridni ninstallah?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Tista' toffri direttorji bl-NFS jew Samba. Liema trid?"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Pakkett meħtieĥ %s huwa nieqes"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Ikkanċella"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "ÄŚaddem userdrake"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"Id-direttorju offruti (file sharing) għall-users juşa l-\n"
-"grupp \"fileshare\". Tista' tuşa userdrake biex işşid\n"
-"users ma' dan il-grupp."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Bieb miftuħ beraħ!"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Ftit li xejn"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standard"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Tajjeb"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "Tajjeb ħafna"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoiku"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Oqgħod attent jekk tuşa dan il-livell. Il-kompjuter tiegħek jista' ikun işed "
-"faċli tużah, imma jkun vulnerabbli ħafna. Qatt m'għandu jintuża fuq "
-"kompjuter imqabbad ma' oħrajn permezz ta' network jew ma' l-internet. Ma "
-"hemm ebda password."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Il-passwords issa huma mixgħula, imma l-uşu fuq l-internet jew network xorta "
-"m'hux rakkomandat."
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Dan huwa s-seting rakkomandat jekk se tuĹźa dan il-kompjuter fuq l-internet "
-"bħala klijent."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Diġà hemm xi restrizzjonijiet, u iżjed testijiet awtomatiċi jitħaddmu kuljum "
-"bil-lejl."
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"B'dan il-livell ta' sigurtà jsir possibbli li tuşa dan il-kompjuter bħala "
-"server.\n"
-"Is-sigurtà hija għolja biżżejjed biex jintuża bħala server li jaċċetta "
-"konnessjonijiet\n"
-"minn ħafna kompjuters oħra. Jekk int se tuşa l-kompjuter bħala klijent biss, "
-"jew biex taċċessa l-internet, jaqbillek livell iżjed baxx."
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Ibbaşat fuq il-livell ta' qabel, imma issa s-sistema hija magħluqa għal "
-"kollox.\n"
-"Is-setinga tas-sigurtà qegħdin fil-massimu."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Agħşel livell ta' sigurtà"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Livell ta' sigurtĂ "
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Uşa libsafe għas-servers"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Din hija librerija li tipproteÄĄi kontra attakki \"buffer overflow\" u "
-"\"fomat string\"."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Merhba ghal %s - ghazla ta' sistema operattiva\n"
-"\n"
-"Aghzel sistema operattiva mil-lista ta' fuq, jew\n"
-"stenna %d sekondi ghall-ghazla implicita\n"
-"\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Merhba ghal GRUB - ghazla ta' sistema operattiva"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Uza l-buttuni %c u %c biex taghzel liema element huwa mmarkat."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr ""
-"Aghfas Enter biex tibda' s-sistema operattiva mmarkata, 'e' biex tbiddel"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "il-kmand qabel tibda', jew 'c' ghal linja ta' kmand."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "L-ghazla mmarkata se tinbeda' awtomatikament f' %d sekondi"
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "M'hemmx bişşejjed spazju fuq /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Desktop"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Start Menu"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Ma tistax tinstalla l-bootloader fil-partizzjoni %s\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "għad m'hemmx għajnuna implementata.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Konfigurazzjoni ta' l-istil ta' boot"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Fajl"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Fajl/O_ħroĥ"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Monitor NewStyle bil-kategoriji"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Monitor NewStyle"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Monitor tradizzjonali"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Monitor tradizzjonali Gtk+"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "ÄŚaddem Aurora mal-boot"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "ModalitĂ  lilo/grub"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "ModalitĂ  yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Bħalissa qed tuşa %s bħala BootManager.\n"
-"Klikkja \"ikkonfigura\"\" biex tħaddem il-konfiguratur."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Ikkonfigura"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "ModalitĂ  sistema"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "ÄŚaddem X-Windows malli titla'"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Le, ma rridx awto-login"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Iva, rrid awto-login b'dan il-user u desktop"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "Ma nistax niftaħ /etc/inittab għall-qari: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minuti"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "minuta"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekondi"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Ma nistax nieħu ritratti tal-iskrin qabel toħloq il-partizzjonijiet"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Ir-ritratti jkunu disponibbli wara l-installazzjoni f' %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Franza"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Kosta Rika"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "BelÄĄju"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Repubblika KĹźeka"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Ä ermanja"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Greċja"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "NorveÄĄja"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Svezja"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Netherlands"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Italja"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Awstrija"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Stati Uniti"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "ÄŚu \"backup\" tal-informazzjoni qabel tkompli"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Aqra sew!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Jekk bi ħsiebek tuża aboot, kun ċert li tħalli spazju fil-bidu tad-diska "
-"(2048 setturi bişşejjed)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Problema"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Saħħar"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Agħşel azzjoni"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Għandek partizzjoni waħda kbira FAT\n"
-"(ÄĄeneralment uĹźata minn Microsoft DOS/Windows).\n"
-"Nissuġġerixxi li l-ewwel iċċekken dik il-partizzjoni\n"
-"(klikkja fuqha, u agħfas \"ibdel daqs\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Jekk jogħĥbok klikkja fuq partizzjoni"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Dettalji"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Vojt"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Oħrajn"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Tipi ta' filesystem"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Oħloq"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tip"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "UĹźa \"%s\" minnflok"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "ÄŚassar"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "L-ewwel agħfas \"şmonta\""
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Jekk tibdel it-tip ta' partizzjoni %s, l-informazzjoni kollha li hemm fuqha "
-"tintilef"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Agħşel partizzjoni"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Agħşel partizzjoni oħra"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Oħroĥ"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Idħol f'modalità għal esperti"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Lura f'modalitĂ  normali"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Annulla"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Trid tkompli xorta?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Oħroĥ minngħajr ma tikteb"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Trid toħroĥ minngħajr ma tikteb it-tabella tal-partizzjonijiet?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Trid tikteb il-modifiki għal /etc/fstab"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Awto-allokazzjoni"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Neħħi kollox"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Informazzjoni dwar il-ħard disk"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Il-partizzjonijiet primarji kollha mimlijin"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Ma nistax inĹźid iĹźjed partizzjonijiet"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Biex işşid işjed partizzjonijiet, trid tħassar waħda milli hemm biex tkun "
-"tista' toħloq partizzjoni estişa"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Ikteb it-tabella ta' partizzjonijet"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "ErÄĄa tella' tabella ta' partizzjonijiet"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Salva tabella ta' partizzjonijiet"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "ErÄĄa' aqra t-tabella ta' partizzjonijiet"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Awto-muntar ta' diski li jinħarĥu"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Agħşel fajl"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Il-tabella tal-partizzjonijiet għall-backup m'għandiex l-istess daqs.\n"
-"Tkompli xorta?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Twissija"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Daħħal floppy fid-drive\n"
-"Kull ma hemm fuq il-floppy se jitħassar"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Qed nipprova nsalva t-tabella ta' partizzjonijiet"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Informazzjoni dettaljata"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Post għall-immontar"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Għaşliet"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Ibdel daqs"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Mexxi"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formattja"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Immonta"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Ĺťid ma' RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Ĺťid ma' LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Ĺťmonta"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Neħħi mir-RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Neħħi mill-LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Biddel RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Uşa bħala loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Oħloq partizzjoni ĥdida"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Settur tal-bidu: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Daqs f' MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Tip ta' filesystem: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Punt ta' mmuntar: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Preferenzi: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Trid tneħħi l-fajl ta' loopback?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Ibdel tip ta' partizzjoni"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Liema filesystem trid?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Qed nibdel minn ext2 għal ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Fejn trid timmonta l-fajl ta' loopback %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Fejn trid timmonta d-diska %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Ma nistax inneħħi l-punt ta' mmuntar għax din il-partizzjoni qed tintuşa "
-"għal loopback.\n"
-"L-ewwel neħħiha minn loopback"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Qed nikkalkula l-limiti tal-filesystem FAT"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Qed nibdel id-daqs"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Din il-partizzjoni ma tistax tinbidel id-daqs tagħha"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr ""
-"L-informazzjoni kollha fuq din il-partizzjoni għandha tiĥi kkupjata fuq "
-"backup"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Wara li tibdel id-daqs tal-partizzjoni %s, l-informazzjoni kollha fuqha "
-"tintilef"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Agħşel id-daqs il-ĥdid"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Daqs ÄĄdid f'MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Fuq liema diska trid tmexxiha?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Settur"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Fuq liema settur trid tmexxiha?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Qed titmexxa"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Qed jitmexxa l-partizzjoni..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Agħşel RAID eşistenti biex işşid miegħu"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "ÄĄdid"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Agħşel LVM eşistenti biex işşid miegħu"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "Isem tal-LVM?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Din il-partizzjoni ma tistax tintuşa għal loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Isem ta' fajl għal loopback: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Agħti isem ta' fajl"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Fajl diĥà qed jintuşa minn loopback ieħor, agħşel ieħor"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Fajl diÄĄĂ  jeĹźisti. TuĹźa lilu?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Għaşliet għall-immuntar"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Varji"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "apparat"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "livell"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "daqs ta' \"chunk\""
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Oqgħod attent: dan il-proċess huwa perikoluż."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "X'tip ta' partizzjoni?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Jiddispjaċini, ma nistax noħloq /boot daqshekk 'il quddiem fid-diska (fuq "
-"ċilindru > 1024).\n"
-"Jekk tuşa l-LILO din ma taħdimx, jekk ma tuşax il-LILO ma jkollokx bşonn "
-"partizzjoni /boot."
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Il-partizzjoni li għażilt bħala root (/) fiżikament qegħda fuq ċilindru wara "
-"l-1024 \n"
-"fuq id-diska, u m'għandekx partizzjoni /boot. Jekk se tuşa l-bootmanager "
-"LILO, \n"
-"kun ċert li toħloq partizzjoni /boot, li tkun qabel ċilindru 1024."
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Int għaşilt partizzjoni software-RAID bħala root (/).\n"
-"Ebda bootloader m'hu kapaċi jħaddem dan mingħajr partizzjoni /boot.\n"
-"Għalhekk aċċerta li jkollok partizzjoni /boot mhux fuq ir-RAID."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "It-tabella tal-partizzjonijiet tad-diska %s se tinkiteb fuq id-diska."
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Trid tirributja sabiex il-bidliet ikollhom effett."
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Wara li tifformattja l-partizzjoni %s, l-informazzjoni kollha fuqha tintilef."
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Qed nifformattja"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Qed nifformattja fajl ta' loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Qed nifformattja partizzjoni %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Aħbi fajls"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Mexxi fajls għal partizzjoni ĥdida"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"Id-direttorju %s diÄĄĂ  fih xi fajls\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Qed jitmexxew il-fajls għal partizzjoni ĥdida"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Qed nikkopja %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Qed inneħħi %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "partizzjoni %s issa magħrufa bħala %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Apparat: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Ittra tad-diska fid-DOS: %s (probabbli)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tip: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Isem: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Bidu: settur %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Daqs: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s setturi"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Ċilindri %d sa %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formattjat\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Mhux formattjat\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Immuntat\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Fajl/s ta' loopback:\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partizzjoni li tibda' impliċitament\n"
-" (għad-DOS/Windows, mhux għal-lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Livell %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Daqs ta' \"chunk\" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Diski RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Isem ta' fajl loopback: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Aktarx, din il-partizzjoni\n"
-"hija partizzjoni ta' Driver,\n"
-"jaqbillek tħalliha kif inhi.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Din il-partizzjoni speċjali\n"
-"\"bootstrap\" qegħda biex\n"
-"tagħşel os meta tixgħel.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Daqs: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Ġeometrija: %s ċilindri, %s heads, %s setturi\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Diski LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Tip ta' tabella tal-partizzjonijiet: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "fuq bus %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Għaşliet: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Ċavetta taċ-ċifrazzjoni tal-filesystem (password)"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Agħżel ċavetta għaċ-ċifrazzjoni tal-filesystem"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Din iċ-ċavetta taċ-ċifrazzjoni huwa sempliċi wisq (irid ikun twil tal-inqas %"
-"d ittri)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "Il-muftieħ taċ-ċifrar ma jaqbilx"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Ċavetta taċ-ċifrazzjoni"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Ċavetta taċ-ċifrazzjoni (darb' oħra)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Ibdel tip"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Jekk jogħĥbok klikkja fuq mezz"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Fittex servers"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formattjar ta' %s falla"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Ma nafx kif nifformattja %s b'tip %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck falla b'kodiċi %d jew sinjal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "problema fl-iĹźmuntar ta' %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "sempliċi"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "b' /usr"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "server"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Ma tistax tuşa JFS għal partizzjonijiet işgħar minn 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Ma tistax tuşa ReiserFS għal partizzjonijiet işgħar minn 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Punti ta' mmuntar iridu jibdew b' /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "DiÄĄĂ  hemm partizzjoni b'punt ta' mmuntar %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Ma tistax tuşa volum loĥiku LVM għall-punt ta' mmuntar %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Dan id-direttorju irid jibqa' fil-filesystem root."
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Għandek bşonn filesystem vera (ext2, reiserfs) għal dan il-punt ta' mmuntar\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Ma tistax tuża filesystem iċċifrat għall-punt ta' mmuntar %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "M'hemmx bişşejjed spazju għal awto-allokazzjoni"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "M'hemm xejn x'nagħmel"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Problema waqt il-ftuħ ta' %s għall-kitba: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Instabet problema - ebda apparat validu ma nstab fejn jinħolqu filesystems "
-"ġodda. Iċċekkja l-kompjuter għall-kawża ta' din il-problema."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "M'għandek ebda partizzjoni!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux hija sistema operattiva \"multi-user\", u dan ifisser li l-users \n"
-"kollha jista' jkollhom il-preferenzi tagħhom, fajls personali eċċ. Tista'\n"
-"taqra l-\"User Guide\" għal işjed tagħrif. Imma, kontra tal-user \"root\",\n"
-"li huwa l-amministratur, il-users li şşid hawn ma jkunu jistgħu jibdlu xejn\n"
-"ħlief il-fajls u konfigurazzjoni personali tagħhom. Inti trid toħloq ta' \n"
-"l-inqas user regolari wieħed għalik. Dan huwa l-user li bih għandek tagħmel\n"
-"ix-xogħol ta' kuljum. Filwaqt li jista' jkun iżed faċli tuża l-user \"root"
-"\" \n"
-"ta' kuljum, dan huwa perikoluż ħafna. L-iċken żball jista' jwaqqaf is-"
-"sistema\n"
-"milli taħdem. Jekk tagħmel anke şball serju b'user regolari, tista' titlef "
-"xi \n"
-"informazzjoni imma mhux is-sistema sħiħa.\n"
-"\n"
-"L-ewwel trid iddaħħal l-isem veru tiegħek. Dan mhux bilfors, ovvjament, u\n"
-"fil-fatt tista' ddaħħal li trid. DrakX imbgħad jieħu l-ewwel kelma u "
-"ipoÄĄÄĄiha\n"
-"fl-\"isem tal-user\". Dan huwa l-isem li jintuşa biex tidħol fis-sistema. \n"
-"Tista' tibdel dan l-isem, imbgħad daħħal password. Filwaqt li l-password "
-"ta'\n"
-"user regolari mhux kruċjali daqs tar-root, dejjem jaqbillek tagħżel "
-"password\n"
-"tajjeb - ftakar li hemm il-fajls tiegħek fin-nofs.\n"
-"\n"
-"Jekk tagħfas \"Aċċetta user\", tista' żżid users oħra kemm hemm bżonn. "
-"Tista' şşid users għal ħutek, it-tfal jew ĥenituri, jew lill-ħbieb, per "
-"eĹźempju. \n"
-"Meta tlesti milli şşid il-users kollha li trid, agħfas \"Lest@.\n"
-"\n"
-"Jekk tagħfas il-buttuna \"Avvanzat\", tkun tista' tbiddel ix-\"shell\" \n"
-"impliċita tal-user, li normalment tkun \"bash\"."
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Hawn fuq issib il-partizzjonijiet ta' Linux li nstabu fuq id-diska. Tista' \n"
-"şşomm l-għaşliet li għamel is-saħħar, huma tajbin għal ħafna kaşi.\n"
-"Jekk tagħmel tibdiliet, trid ta' l-inqas tiddefinixxi partizzjoni root (\"/"
-"\")\n"
-"Tagħşilx daqs şgħir wisq inkella ma tkunx tista' tinstalla l-programmi\n"
-"kollha li jkollok bşonn. Jekk tixtieq işşomm l-informazzjoni fuq "
-"partizzjoni\n"
-"separata, trid toħloq ukoll partizzjoni għal \"/home\" (għal dan irid "
-"ikollok\n"
-"işjed minn partizzjoni waħda Linux).\n"
-"\n"
-"Kull partizzjoni hija mnişşla b'dan il-mod: \"Isem\", \"Daqs\".\n"
-"\n"
-"L-isem huwa mqassam hekk: \"tip ta' diska\", \"numru ta' diska\", \"numru\n"
-"tal-partizzjoni\", per eĹźempju, \"hda1\". \n"
-"\n"
-"It-tip ta' diska huwa \"hd\" jekk id-diska hija tip IDE, u \"sd\" jekk "
-"hija \n"
-"tip SCSI.\n"
-"\n"
-"In-numru tad-diska huwa l-ittra ta' wara \"hd\" jew \"sd\". Għal diski IDE,\n"
-"\"a\" hija d-diska \"master\" fuq il-kontrollatur IDE primarju,\n"
-"\"b\" hija d-diska skjav fuq il-kontrollatur IDE primarju,\n"
-"\"c\" hija d-diska \"master\" fuq il-kontrollatur IDE sekondarju,\n"
-"\"d\" hija d-diska skjav fuq il-kontrollatur IDE sekondarju\n"
-"\n"
-"Fuq diski SCSI, \"a\" hija d-diska bl-iżjed ID baxx, \"b\" hija t-tieni, eċċ."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"L-installazzjoni ta' Mandrake Linux hija maqsuma fuq diversi CD-ROMs. DrakX\n"
-"jaf jekk pakkett partikulari hux qiegħed fuq CD-ROM oħra u jiftaħ is-CD u \n"
-"jindikalek biex iddaħħal li jmiss skond il-ħtieĥa."
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"Issa wasal il-mument fejn tagħşel liema programmi tixtieq tinstalla fuq\n"
-"is-sistema tiegħek. Hemm eluf ta' pakketti disponibbli għal Mandrake Linux,\n"
-"u m'għandekx għalfejn tkun tafhom kollha.\n"
-"\n"
-"Jekk se tagħmel installazzjoni standard mis-CD-ROM, l-ewwel tiĥi mistoqsi\n"
-"liema CDs għandek (modalità esperta biss). Iċċekkja t-tikketti tas-CDs u \n"
-"immarka l-kaxex li jikkorrispondu għas-CDs li għandek. Klikkja \"Ok\" meta\n"
-"tkun lest biex tkompli.\n"
-"\n"
-"Il-pakketti huma mqassma fi gruppi li jikkorrespondu għat-tip ta' uşu tal-\n"
-"kompjuter. Il-gruppi stess huma mqassma f'erba' sezzjonijiet:\n"
-"\n"
-" * \"Workstation\": jekk fi ħsiebek tuşa l-kompjuter bħala workstation, \n"
-"agħşel wieħed jew işjed mill-gruppi li tixtieq.\n"
-"\n"
-"\n"
-" * \"ŝviluppar\": jekk tixtieq tuşa l-kompjuter biex tipprogramma, agħşel\n"
-"il-gruppi li trid.\n"
-" * \"Server\": jekk il-kompjuter huwa intenzjonat bħala server. tista' "
-"tagħşel\n"
-"l-iĹźjed servizzi komuni li tixtieq tinstalla fuq il-magna.\n"
-"\n"
-" * \"Ambjent Grafiku\": finalment, dan huwa fejn tagħşel l-ambjent grafiku "
-"li\n"
-"tippreferi. Ta' l-inqas trid tagħşel wieħed minn dawn jekk trid li jkollok \n"
-"ambjent grafiku.\n"
-"\n"
-"Jekk tmexxi l-maws fuq wieħed mill-ismijiet tara deskrizzjoni qasira dwar "
-"dak\n"
-"il-grupp. Jekk tneħħi l-gruppi kollha meta qed tagħmel installazzjoni "
-"regolari\n"
-"(mhux aĥĥornament), titla' window fejn tista' tagħşel tip ta' "
-"installazzjoni \n"
-"minima:\n"
-"\n"
-"\" * \"Bl-XWindows\" tinstalla s-sistema baĹźika flimkien ma' l-minimu ta'\n"
-"pakketti għal sistema grafika;\n"
-"\n"
-" * \"B'dokumentazzjoni baĹźika\" tinstalla s-sistema baĹźika flimkiem ma' xi\n"
-"programmi sempliċi u d-dokumentazzjoni tagħhom. Dan huwa tajjeb għal "
-"server.\n"
-"\n"
-" * \"Installazzjoni vera minima\" tinstalla strettament l-inqas pakketti \n"
-"possibbli sabiex ikollok Linux b'linja ta' kmand. Din l-installazzjoni "
-"tieħu\n"
-"biss madwar 65MB.\n"
-"\n"
-"Tista' tittikkja \"Għaşla ta' pakketti individwali\", li huwa utli jekk int\n"
-"familjari mal-pakketti offruti jew jekk tixtieq kontroll assolut fuq liema \n"
-"pakketti jiÄĄu nstallati.\n"
-"\n"
-"Jekk bdejt l-installazzjoni fil-modalità \"Aĥĥorna\", tista' tneħħi l-"
-"pakketti\n"
-"kollha sabiex ma jiÄĄu installati ebda pakketti fuq li hemm. Dan huwa utli\n"
-"biex issewwi jew taÄĄÄĄorna sistema eĹźistenti."
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Finalment, skond jekk għaşiltx li tagħşel il-pakketti individwalment, tiĥi\n"
-"offruta lista tal-pakketti kollha klassifikati fi gruppi. Waqt li qed "
-"tifli \n"
-"din il-lista, tista' tagħşel gruppi sħaħ jew pakketti individwali.\n"
-"\n"
-"Meta tagħşel pakkett fil-lista, tidher deskrizzjoni maĥenbha fuq il-lemin.\n"
-"X'ħin tlesti mill-għaşla, klikkja l-buttuna \"Installa\" sabiex tibda' l-\n"
-"proċess ta' installazzjoni. Skond is-saħħa tal-kompjuter u n-numru ta'\n"
-"pakketti li għaşilt, jista' jieħu ftit tal-ħin sakemm jiĥu installati l-\n"
-"pakketti kollha. Il-ħin totali jiĥi stmat u jintwera fuq l-iskrin biex "
-"jgħinek\n"
-"tiddeċiedi għandekx ħin tagħmel kikkra kafè.\n"
-"\n"
-"!! Jekk pakkett ta' server jiĥi installat intenzjonalment jew għax jifforma\n"
-"parti minn grupp, int tintalab tikkonferma jekk verament tridx lill dawn\n"
-"is-servizzi jiÄĄu installati. Fil-Mandrake Linux, is-servizzi li tinstalla "
-"jiÄĄu\n"
-"mtella' awtomatikament meta tixgħel. Għalkemm dawn kienu sikuri u ma fihom\n"
-"ebda problemi meta din il-verşjoni ta' Linux inħarĥet, jista' jkun li "
-"jinstabu\n"
-"problemi simili wara li ÄĄiet finalizzata din il-verĹźjoni. Jekk ma tafx \n"
-"x'suppost jagħmel servizz partikulari jew għaliex qed jiĥi nstallat, agħşel\n"
-"\"Le\". Jekk tagħfas \"Iva\" dawn is-servizzi jiĥu nstallati u jiĥu "
-"mtella' \n"
-"awtomatikament fil-bidu.\n"
-"\n"
-"L-għażla \"Dipendenzi awtomatiċi\" sempliċiment titfi l-window li twissik\n"
-"kull meta l-installazzjoni tkun se şşid xi pakketti oħra meħtieĥa. Dan "
-"jiÄĄri\n"
-"għax il-programm ikun induna li jinħtieĥ pakkett ieħor biex il-programmi li\n"
-"tkun għaşilt jaħdmu sew.\n"
-"\n"
-"L-istampa ta' \"floppy disk\" şgħira fil-qiegħ tippermettilek li ttella' l-\n"
-"lista ta' pakketti li ġew magħżula waqt installazzjoni preċedenti. Jekk \n"
-"tikklikkja din l-ikona int tintalab iddaħħal floppy li tkun ħloqt waqt \n"
-"installazzjoni oħra. Ara t-tieni ħjiel fl-aħħar stadju biex tara kif toħloq\n"
-"diska simili."
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"Issa jmiss li tissettja l-konnessjoni mal-internet/network. Jekk trid "
-"tqabbad\n"
-"il-kompjuter mal-internet jew ma' network lokali, klikkja \"OK\" biex "
-"tħaddem\n"
-"programm li jsib u jikkonfigura l-apparat meħtieĥ. Jekk dan il-programm ma \n"
-"jsibx l-apparat meħtieĥ, neħħi l-marka minn \"awto-għarfien\" qabel terĥa'\n"
-"tipprova. Tista' wkoll tagħşel li ma nikkonfigurax in-network, jew li "
-"tissettjah\n"
-"iżjed tard; f'dan il-każ sempliċiment agħfas il-buttuna \"Ikkanċella\".\n"
-"\n"
-"It-tipi ta' konnessjoni disponibbli huma: modem tradizzjonali, modem ISDN,\n"
-"konnessjoni ADSL, modem cable, kif ukoll konnessjoni sempliċi LAN "
-"(Ethernet).\n"
-"\n"
-"Hawnhekk mhux se nidħlu fid-dettall ta' kull tip ta' konfigurazzjoni. \n"
-"Sempliċiment aċċerta li għandek il-parametri kollha minngħand l-ISP jew\n"
-"amministratur tas-sistema tiegħek.\n"
-"\n"
-"Tista' tikkonsulta l-kapitlu fil-manwal dwar il-konnessjonijiet tal-"
-"internet\n"
-"għal işjed tagħrif, jew inkella installa l-kumplament tas-sistema imbgħad\n"
-"uĹźa l-programm imsemmi f'dan il-manwal biex tissettja l-konnessjoni.\n"
-"\n"
-"Jekk tixtieq tikkonfigura n-network iĹźjed tard, jew jekk lest mill-\n"
-"konfigurazzjoni, klikkja \"Ikkanċella\"."
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Hawnhekk tista' tagħşel liema servizzi tixtieq ittella' mal-bidu,\n"
-"\n"
-"Dawn huma s-servizzi kollha disponibbli mal-konfigurazzjoni kurrenti.\n"
-"Iċċekkjahom sew u neħħi dawk li m'għandekx bżonn kull darba li titla'\n"
-"s-sistema.\n"
-"\n"
-"!! F'dan l-istadju, oqgħod attent jekk tixtieq tuşa l-kompjuter bħala "
-"server:\n"
-"aktarx ma jkollokx bĹźonn ittella' servizzi li m'intix se tuĹźa. Ftakar li xi\n"
-"servizzi jistgħu ikunu perikoluşi fuq server. Bħala regola ĥenerali, ħalli\n"
-"biss dawk is-servizzi li verament għandek bşpnn.\n"
-"!!"
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"GNU/Linux jimmaniĥĥja l-ħin bħala GMT (Greenwich Mean Time) u jaqiblu "
-"għall-\n"
-"ħin lokali skond iş-şona orarja li tagħşel. Huwa possibbli però li titfi "
-"din\n"
-"il-faċilità billi titfi l-għażla \"Arloġġ tas-sistema huwa GMT\" biex il-"
-"ħin\n"
-"tal-kompjuter jiĥi l-istess bħall-ħin tas-sistema. Dan huwa utli jekk il-\n"
-"kompjuter tintuşa għal sistemi operattivi bħall-Windows.\n"
-"\n"
-"L-għaşla \"Sinkronizzazzjoni tal-ħin awtomatika\" tħallik awtomatikament \n"
-"tirregola l-ħin billi taqbad ma' server speċjali fuq l-internet. Fil-lista\n"
-"li tiġi preżentata, agħżel server viċin tiegħek. Ovvjament irid ikollok\n"
-"konnessjoni mal-internet issettjata biex tuża din il-faċilità. Jekk tuża\n"
-"din l-għaşla jiĥi nstallat programm apposta fuq il-kompjuter li "
-"jippermettilu\n"
-"li jintuşa bħala server tal-ħin għal kompjuters oħra fuq in-network lokali."
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X (Sistema X Windows) huwa l-qalb tal-interfaċċja grafika GNU/Linux, u fuqu\n"
-"jaħdmu l-ambjenti jew desktops grafiċi kollha (KDE, Gnome, AfterStep,\n"
-"WindowMaker eċċ) li huma nklużi ma' Mandrake Linux. F'dan il-pass, DrakX\n"
-"jipprova jissettja l-X awtomatikament.\n"
-"\n"
-"Huwa rari li dan il-proċess ifalli, sakemm m'għandekx apparat antik ħafna\n"
-"(jew ĥdid ħafna). Jekk jirnexxi, huwa awtomatikament jibda' lill X bl-aħjar\n"
-"reĹźoluzzjoni possibbli skond id-daqs tal-iskrin, u tintwera window biex\n"
-"tikkonferma jekk tistax taraha sew.\n"
-"\n"
-"Jekk qed tuşa installazzjoni \"Espert\", int tidħol fis-saħħar ta' \n"
-"konfigurazzjoni X. Ara s-sezzjoni korrispondenti fil-manwal għal işjed\n"
-"tagħrif.\n"
-"\n"
-"Jekk tista' tara l-messaĥĥ tajjeb f'dan it-test u tagħşel \"Iva\", DrakX "
-"jimxi\n"
-"għall-pass li jmiss. Jekk ma tarax il-messaġġ, dan sempliċiment ifisser li \n"
-"l-konfigurazzjoni hija ħaşina, u t-test joħroĥ waħdu wara 10 sekondi u\n"
-"jirrestawra l-iskrin."
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"L-ewwel darba li tipprova l-konfigurazzjoni X, tista' ma tkunx sodisfatt\n"
-"bid-dehra (skrin şgħir wisq, mitfugħ wisq lejn ix-xellug/lemin...). "
-"Għalhekk,\n"
-"anke jekk X jaħdem sew, DrakX jistaqsik jekk il-konfigurazzjoni togħĥbokx.\n"
-"Huwa jistaqsik jekk tixtieq tibdel xi ħaĥa billi jurik lista ta' "
-"modalitajiet\n"
-"differenti li seta' jsib, u jitolbok tagħşel waħda.\n"
-"\n"
-"Bħala possibbiltà ta' aħħar, jekk ma rnexxielekx tħaddem X, agħşel \"Ibdel\n"
-"il-kard grafika\", agħşel \"Kard mhux imnişşla\" u meta tiĥi mistoqsi liema\n"
-"server trid, agħşel \"FBDev\". Din hija għaşla ĥenerika ħafna li għandha \n"
-"taħdem mal-kards grafiċi moderni kollha. Agħżel \"Erġa' pprova\" biex tkun \n"
-"Ĺźgur."
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Finalment, tiġi mistoqsi jekk tridx l-interfaċċja grafika mill-bidu.\n"
-"Innota li din il-mistoqsija tiÄĄi preĹźentata anke jekk ma ttestjajtx il-\n"
-"konfigurazzjoni. Ovvjament, jaqbillek tagħşel \"Le\" jekk il-kompjuter se\n"
-"jintuşa biss bħala server, jew jekk ma rnexxielekx tissettja l-X sew."
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"Is-CD tal-Mandrake Linux għandu modalità biex tirkupra sistema. Tista' \n"
-"taċċessaha billi tibda' l-kompjuter minn fuq l-ewwel CD, tagħfas \"F1\" "
-"x'ħin\n"
-"titla', u mbgħad tittajpja \"rescue\" fil-prompt. Imma, f'kaş li l-"
-"kompjuter\n"
-"ma jistax jitħaddem mis-CDROM, int jista' jkollok bşonn dan il-pass ta' \n"
-"l-inqas f'ĹźewÄĄ sitwazzjonijiet:\n"
-"\n"
-" * Meta tinstalla l-bootloader, DrakX jikteb is-settur \"boot\" (MBR) tad-\n"
-"diska prinċipali (sakemm m'intix qed tuża bootloader ieħor) sabiex tkun "
-"tista'\n"
-"tagħşel lil-Linux jew Windows x'ħin tixgħel (jekk għandek il-Windows \n"
-"installat). Jekk xi darba jkollok terĥa' tinstalla l-Windows, dan iħassar "
-"din\n"
-"l-informazzjoni, u ma tkunx tista' ttella' l-GNU/Linux.\n"
-"\n"
-" * Jekk tinħoloq xi problema li ma tħallix lill-GNU/Linux jitla' mid-diska.\n"
-"din il-floppy disk tista' tkun l-uniku mezz biex ittella' l-GNU/Linux. Fid-\n"
-"diska hemm numru raĥonevoli ta' programmi biex jgħinuk terĥa' tirrestawra\n"
-"sistema li kraxxjat minħabba li jmur id-dawl, şbalji li jsiru, jew "
-"raÄĄunijiet\n"
-"oħra.\n"
-"\n"
-"Meta tikklikkja dan il-pass, int tiĥi mitlub iddaħħal diska fid-drive. Il-\n"
-"floppy li ddaħħal trid tkun vojta, jew ikun fiha informazzjoni li tista' \n"
-"tħassar. M'għandekx bşonn tifformattjaha minn qabel għax DrakX se "
-"jħassarha \n"
-"kollha."
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"F'dan il-punt int trid tagħşel fejn, fuq il-ħard disk, trid tinstalla s-\n"
-"sistema operattiva Mandrake Linux. Jekk il-ħard disk huwa vojt, jew jekk\n"
-"hemm sistema operattiva qed tokkupaha kollha, l-ewwel trid toħloq \n"
-"partizzjonijiet. Başikament, il-partizzjonijiet tal-ħard disk jaqsmu d-"
-"diska\n"
-"f'partijiet biex ikun hemm sezzjonijiet fejn tiÄĄi nstallata s-sistema ÄĄdida\n"
-"Mandrake Linux.\n"
-"\n"
-"Peress li l-effett ta' partizzjonament tal-ħard disk m'humiex riversibbli,\n"
-"dan il-proċess jista' jidher intimidanti jekk m'għandekx esperjenza. \n"
-"Fortunatament, hemm \"saħħar\" li jissimplifika l-proċess kollu. Qabel "
-"tibda',\n"
-"ikkonsulta l-manwal u ħu l-ħin tiegħek.\n"
-"\n"
-"Jekk qed tħaddem l-installazzjoni fil-\"Modalità esperta\", int tidħol f'\n"
-"DiskDrake, programm tal-Mandrake għall-partizzjonament tal-ħard disk, li\n"
-"jħallik tirfina l-allokazzjoni tad-diska. Mill-interfaċċja tal-"
-"installazzjoni.,\n"
-"tista' tuşa s-saħħar kif deskritt hawn billi tagħfas il-buttuna \"Saħħar\".\n"
-"\n"
-"Jekk diÄĄĂ  huma definiti xi partizzjonijiet, jew minn installazzjoni "
-"preċedenti\n"
-"jew minn xi programm ieħor, tista' tagħşel dawn biex tinstalla fuqhom.\n"
-"\n"
-"Jekk m'hemm ebda partizzjonijiet definiti, trid toħloqhom permezz tas-"
-"saħħar.\n"
-"Skond il-konfigurazzjoni tal-ħard disk, diversi għaşliet huma disponibbli:\n"
-"\n"
-" * \"Uşa spazju vojt\": Din l-għaşla toħloq partizzjonijiet awtomatikament.\n"
-"M'għandek bşonn tagħmel xejn işjed..\n"
-"\n"
-" * \"Uşa partizzjoni eşistenti\": Is-saħħar sab partizzjoni waħda jew işjed\n"
-"tal-Linux fuq il-ħard disk. Jekk trid tuşa lilhom, agħşel din.\n"
-"\n"
-" * \"Uşa spazju vojt fuq partizzjoni Windows\": Jekk għandek Microsoft "
-"Windows\n"
-"installat fuq il-ħard disk u qed jokkupa l-ispazju kollu, trid toħloq ftit \n"
-"spasju għal-Linux. Biex tagħmel dan, trid jew tħassar il-partizzjoni "
-"Windows\n"
-"u kull m'hemm fiha (ara \"Čassar id-diska sħiħa\" jew \"Modalità esperta"
-"\"), \n"
-"jew iċċekken il-partizzjoni Windows. Tista' ċċekken il-partizzjoni Windows \n"
-"mingħajr ma titlef informazzjoni. Din is-soluzzjoni hija rakkomandata biex "
-"tuĹźa \n"
-"l-Windows u l-Linux flimkien fuq l-istess kompjuter.\n"
-"\n"
-" Qabel tagħżel din l-għażla, kun af li wara din il-proċedura, il-"
-"partizzjoni\n"
-"tal-Windows tkun işgħar milli hi bħalissa. Ikollok inqas spazju taħt il-\n"
-"Microsoft Windows fejn işşomm informazzjoni jew tinstalla programmi ĥodda.\n"
-"\n"
-" * \"Čassar id-diska sħiħa\": Jekk tixtieq tħassar l-informazzjoni kollha u\n"
-"l-partizzjonijiet kollha li għandek fuq il-ħard disk u tpoĥĥi l-Mandrake "
-"Linux\n"
-"minnflokhom, tista' tagħşel din. Oqgħod attent minn din l-għaşla għax ma "
-"tkunx\n"
-"tista' tibdel fehemtek wara li tikkonferma.\n"
-"\n"
-" !! Jekk tagħşel din l-għaşla, kull m'hemm fuq id-diska jintilef !!\n"
-"\n"
-" * \"Modalità esperta\": Agħşel dan jekk trid tippartizzjona l-ħard disk \n"
-"manwalment. Oqgħod attent - hija għaşla li tagħti kontroll imma hija "
-"perikoluĹźa.\n"
-"Tista' faċilment titlef l-informazzjoni kollha b'dan il-mod. Għalhekk, tużax "
-"din\n"
-"l-għaşla jekk ma tafx x'qed tagħmel."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"Dak kollox! L-installazzjoni issa hija lesta u s-sistema GNU/Linux issa\n"
-"lesta biex tintuşa. Agħfas \"OK\" biex tirristartja l-kompjuter. Tista'\n"
-"tagħşel GNU/Linux jew Windows, skond x'tippreferi (jekk għandek it-tnejn\n"
-"installati) malli jerĥa' jixgħel il-kompjuter.\n"
-"\n"
-"Il-buttuna \"Avvanzat\" (f'modalità esperta biss) turik şewĥ buttuni oħra:\n"
-"\n"
-" * \"oħloq floppy awto-installa\": toħloqlok floppy li tippermettilek \n"
-"tirrepeti l-istess installazzjoni fuq kompjuter ieħor identiku, mingħajr\n"
-"l-intervent tiegħek.\n"
-"\n"
-" Innota li meta tagħfas din il-buttuna jintwerew şewĥ għaşliet oħra:\n"
-"\n"
-" * \"Replay\". Din hija installazzjoni semi-awtomatika, għax il-pass ta'\n"
-"partizzjonament (u dak biss) jibqa' manwali.\n"
-"\n"
-" * \"Awtomatiku\". Installazzjoni totalment awtomatika - il-ħard disk\n"
-"titħassar u tinkiteb mill-ĥdid, u kull informazzjoni fuqha tintilef.\n"
-"\n"
-" Din il-faċilità hija utli meta qed tinstalla numru kbir ta' kompjuters\n"
-"identiċi. Ara s-sezzjoni \"Auto install\" fuq il-web site tagħna.\n"
-"\n"
-" * \"Ikteb l-għaşla ta' pakketti\"(*): jikteb l-għaşla ta' pekketti li\n"
-"nstallajt. Meta qed tagħmel installazzjoni oħra, daħħal il-floppy fid-drive\n"
-"u meta tibda l-installazzjoni, agħfas [F1] u ħaddem l-installazzjoni "
-"permezz\n"
-"tal-kmand >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) Għandek bşonn floppy formattjata FAT (DOS). Biex toħloq waħda mil-"
-"Linux,\n"
-"ittajpja \"mformat a:\"."
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Partizzjonijiet li ÄĄew definiti ÄĄodda jridu jiÄĄu formattjati biex\n"
-"jintuşaw (formattjati jfisser li tinħoloq \"filesystem\")\n"
-"\n"
-"F'dan il-punt tista' tagħşel li terĥa' tifformattja partizzjonijiet\n"
-"eşistenti biex tħassar li kien hemm fuqhom. Jekk tixtieq tagħmel hekk,\n"
-"agħşel dawk il-partizzjonijiet ukoll.\n"
-"\n"
-"Innota li mhux meħtieĥ li terĥa' tifformattja l-partizzjonijiet kollha\n"
-"eşistenti. Trid però tifformattja dawk il-partizzjonijiet li jkollhom is-\n"
-"sistema operattiva fuqhom (eĹź, \"/\", \"/usr\" jew \"/opt\"), imma "
-"m'għandekx\n"
-"bşonn tifformattja dawk li fihom l-informazzjoni tiegħek (tipikament \"/home"
-"\").\n"
-"\n"
-"Oqgħod attent meta tagħşel il-partizzjonijiet. Wara li jiĥu formattjati,\n"
-"l-informazzjoni kollha li kien hemm fuqhom tintilef u m'hemmx mod biex "
-"iÄĄÄĄibhom\n"
-"lura.\n"
-"\n"
-"Agħfas \"OK\" meta tkun lest biex tifformattja l-partizzjonijiet.\n"
-"\n"
-"Agħfas \"Ikkanċella\" jekk trid tagħżel partizzjoni oħra għas-sistema ġdida\n"
-"Mandrake Linux.\n"
-"\n"
-"Agħfas \"Avvanzat\" biex tagħżel partizzjonijiet biex jiġu ċċekkjati għal "
-"blokki\n"
-"ħşiena fuq id-diska."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Is-sistema operattiva Mandrake Linux issa qed tiÄĄi installata.\n"
-"Skond in-numru ta' pakketti li għaşilt, u s-saħħa tal-kompjuter, dan il-\n"
-"proċess jista' jdum bejn ftit minuti u ħin konsiderevoli.\n"
-"\n"
-"Jekk jogħĥbok stenna sakemm ilesti."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-"Fid-data meta tinstalla l-Mandrake Linux, aktarx ikunu ÄĄew aÄĄÄĄornati xi\n"
-"pakketti minn meta ĥiet pubblikata. Xi şbalji jistgħu ikunu ĥew irranĥati,\n"
-"u problemi ta' sigurtĂ  ÄĄew riĹźolti. Sabiex tibbenifika minn dawn l-\n"
-"aĥĥornamenti, jaqbillek tnişşilhom minn fuq l-internet. Agħşel \"Iva\" jekk\n"
-"għandek konnessjoni mal-internet issettjata, jew \"Le\" jekk tippreferi li\n"
-"tinstalla l-aÄĄÄĄornamenti iĹźjed tard.\n"
-"\n"
-"Jekk tagħşel iva, tintwera lista ta' postijiet minn fejn l-aĥĥornamenti \n"
-"jistgħu jitniżżlu (\"mirja\"). Agħżel l-iżjed wieħed viċin tiegħek. Imbgħad\n"
-"tintwera lista ta' pakketti. Dur dawn il-pakketti, agħşel liema trid u \n"
-"agħfas \"Installa\" biex tniżżilhom u tinstallahom jew \"Ikkanċella\" biex "
-"twaqqaf."
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Qabel tkompli int mitlub taqra sew it-termini ta' din il-liċenzja. Hija\n"
-"kopri d-distribuzzjoni sħiħa ta' Mandrake Linux. Jekk ma taqbilx ma' t-"
-"termini\n"
-"kollha tagħha, klikkja l-buttuna \"Ma naċċettax\", u l-installazzjoni "
-"tieqaf \n"
-"minnufih. Biex tkompli bl-installazzjoni, agħfas il-buttuna \"Naċċetta\"."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"F'dan il-punt, trid tagħşel livell ta' sigurtà għal dan il-kompjuter.\n"
-"Bħala regola ĥenerali, işjed m'hu espost il-kompjuter, u işjed m'hi "
-"kruċjali\n"
-"l-informazzjoni ta' fuqu, işjed irid ikun għoli l-livell ta' sigurtà. Innota "
-"li\n"
-"livell ta' sigurtà işjed għoli jfisser işjed diffikultà fl-uşu. Irreferi \n"
-"għall-kapitlu MSEC fil-Manwal ta' Referenza għat-tifsira ta' dawn il-"
-"livelli.\n"
-"\n"
-"Jekk ma tafx liema tagħżel, żomm l-għażla impliċita."
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"F'dan il-punt trid tagħşel liema partizzjoni/jiet se jintuşaw għall-\n"
-"installazzoni tas-sistema Mandrake Linux. Jekk diÄĄĂ  ÄĄew definiti xi\n"
-"partizzjonijiet, minn installazzjoni preċedenti ta' GNU/Linux jew minn\n"
-"għodda ta' partizzjonament oħra, tista' tuşa l-partizzjonijiet eşistenti.\n"
-"Altrimenti, l-partizzjonijiet tal-ħard disk iridu jiĥu definiti.\n"
-"\n"
-"Biex toħloq il-partizzjonijiet, l-ewwel trid tagħşel ħard disk.\n"
-"Tista' tagħşel diska għall-partizzjonament billi tagħşel \"hda\" għal l-\n"
-"ewwel diska IDE, \"hdb\" għat-tieni, eċċ, jew \"sda\" għal l-ewwel\n"
-"diska SCSI, eċċ.\n"
-"\n"
-"Biex tippartizzjona l-ħard disk magħşula għandek dawn l-għaşliet:\n"
-"\n"
-" * \"Čassar kollox\": din l-għaşla tħassar il-partizzjonijiet kollha\n"
-"mill-ħard disk magħşula.\n"
-"\n"
-" * \"Awto allokazzjoni\": din l-għaşla awtomatikament toħloqlok "
-"partizzjonijiet\n"
-"Ext2 u swap fl-ispazju vojt tad-diska.\n"
-"\n"
-" * \"Iżjed\" jagħtik aċċess għal iżjed faċilitajiet:\n"
-"\n"
-" * \"Ikteb tabella tal-partizzjonijiet\": jikteb it-tabella \n"
-"tal-partizzjonijiet fuq floppy. Utli biex tirkupra t-tabella iĹźjed tard "
-"jekk\n"
-"hemm bĹźonn. Dan il-pass huwa rakkomandat.\n"
-"\n"
-" * \"Irrestawra t-tabella tal-partizzjonijet\": tħallik tirrestawra t-\n"
-"tabella tal-partizzjonijiet minn floppy disk fejn ÄĄew miktuba.\n"
-"\n"
-" * \"Salva tabella tal-partizzjonijiet\": jekk it-tabella tal-"
-"partizzjonijiet\n"
-"ĥiet korrotta b'xi mod, din l-għaşla tħallik tipprova terĥa' tirkupraha. \n"
-"Oqgħod attent b'din l-għaşla u ftakar li tista' tfalli.\n"
-"\n"
-" * \"ErÄĄa' aqra' t-tabella\": jinsa l-bidliet kollha u jerÄĄa' jaqra t-"
-"tabella\n"
-"mill-ħard disk.\n"
-"\n"
-" * \"awto-muntar ta' media tinħareĥ\": jekk tneħħi din l-għaşla l-users\n"
-"ikollhom jimmuntaw u jişmuntaw manwalment diski li jinħarĥu bħal floppy u "
-"CDROM.\n"
-"\n"
-" * \"Saħħar\": uşa dan il-metodu jekk ma tafx sew kif tagħmel il-\n"
-"partizzjonijiet int.\n"
-"\n"
-" * \"Annulla\": uża din l-għażla biex tikkanċella l-għażliet li għamilt.\n"
-"\n"
-" * \"Aqleb modalità normali/esperta\": jagħtik işjed azzjonijiet fuq il-\n"
-"partizzjonijiet (tip, għaşliet, format) u jagħti işjed dettalji.\n"
-"\n"
-" * \"Lest\": meta tlesti mill-partizzjonament, dan jikteb il-bidliet li\n"
-"għamilt lid-diska.\n"
-"\n"
-"Nota: tista' tilħaq kull għaşla mit-tastiera. Dur il-partizzjonijiet bit-"
-"TAB\n"
-"u l-vleÄĄeÄĄ 'il fuq u 'l isfel.\n"
-"\n"
-"Meta tkun fuq il-partizzjoni li trid, tista tuĹźa:\n"
-"\n"
-" * Ctrl-C biex toħloq partizzjoni (meta l-partizzjoni vojta tkun magħşula)\n"
-"\n"
-" * Ctrl-D biex tħassar partizzjoni\n"
-"\n"
-" * Ctrl-M biex tissettja l-punt ta' mmuntar.\n"
-"\n"
-"Biex tikseb iĹźjed informazzjoni dwar il-filesystems differenti disponibbli,\n"
-"jekk jogħĥbok aqra l-kapitlu ext2fs fil-Manwal ta' Referenza.\n"
-"\n"
-"Jekk qed tinstalla fuq kompjuter PPC, tkun trid toħloq partizzjoni şgħira\n"
-"HFS \"bootstrap\", ta' l-inqas 1MB, li tintuĹźa mill-bootloader yaboot. Jekk\n"
-"tiddeċiedi li tagħmlu ftit ikbar, ngħidu aħna 50MB, tista' ssibu post utli\n"
-"fejn tqiegħed kernel u ramdisk \"spare\" għal emerĥenzi."
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Instabu işjed minn partizzjoni waħda tal-Windows fuq il-ħard disk. Jekk \n"
-"jogħġbok agħżel liema minnhom trid iċċekken biex tinstalla s-sistema \n"
-"operattiva Linux.\n"
-"\n"
-"Kull partizzjoni hija mmarkata hekk: \"Isem tal-Linux\", \"Isem fil-Windows"
-"\",\n"
-"\"Daqs\".\n"
-"\n"
-"L-isem tal-Linux huwa mqassam hekk: \"tip ta' diska\", \"numru ta' diska"
-"\", \n"
-"\"numru tal-partizzjoni\", per eĹźempju, \"hda1\". \n"
-"\n"
-"It-tip ta' diska huwa \"hd\" jekk id-diska hija tip IDE, u \"sd\" jekk "
-"hija \n"
-"tip SCSI.\n"
-"\n"
-"In-numru tad-diska huwa l-ittra ta' wara \"hd\" jew \"sd\". Għal diski IDE:\n"
-"\n"
-" * \"a\" hija d-diska \"master\" fuq il-kontrollatur IDE primarju,\n"
-"\n"
-" * \"b\" hija d-diska skjav fuq il-kontrollatur IDE primarju,\n"
-"\n"
-" * \"c\" hija d-diska \"master\" fuq il-kontrollatur IDE sekondarju,\n"
-"\n"
-" * \"d\" hija d-diska skjav fuq il-kontrollatur IDE sekondarju\n"
-"\n"
-"Fuq diski SCSI, \"a\" hija d-diska bl-iĹźjed ID baxx, \"b\" hija t-tieni, "
-"eċċ.\n"
-"\n"
-"\"Isem tal-Windows\" huwa l-ittra li jkollha din il-ħard disk taħt il-"
-"Windows\n"
-"(l-ewwel diska jew partizzjoni hija \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Jekk jogħġbok stenna ftit. Dan il-proċess jista' jieħu diversi minuti."
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"DrakX issa għandu bşonn ikun jaf jekk tridx tagħmel installazzjoni standard "
-"(\"Rakkomandata\") jew waħda li tagħtik işjed kontroll fuq x'jiĥri \n"
-"(\"Espert\"). Għandek ukoll l-għaşla jekk tridx installazzjoni ĥdida\n"
-"jew aÄĄÄĄornament ta' sistema eĹźistenti Mandrake Linux:\n"
-"\n"
-" * \"Installa\": Kompletament iħassar is-sistema l-antika. Fil-fatt, skond\n"
-"kif inhi mqassma s-sistema eşistenti, tista' şşomm xi partizzjonijiet\n"
-"mill-antiki kif inhuma.\n"
-"\n"
-" * \"AÄĄÄĄorna\" Din il-klassi ta' installazzjoni tippermettilek taÄĄÄĄorna\n"
-"l-pakketti li għandek installati fuq il-Mandrake Linux. Hija şşomm il-\n"
-"partizzjonijiet preşenti tal-ħard disk kif ukoll il-konfigurazzjoni tal-\n"
-"users. Il-passi l-oħrajn tal-konfigurazzjoni jibqgħu aċċessibbli bħal \n"
-"installazzjoni normali.\n"
-"\n"
-" * \"AÄĄÄĄorna pakketti biss\" Din il-klassi ÄĄdida tippermetti li taÄĄÄĄorna\n"
-"l-pakketti ta' sistema eşistenti filwaqt li şşomm il-konfigurazzjoni "
-"eĹźistenti\n"
-"mhux mimsusa. Tkun tista' wkoll işşid pakketti ĥodda mal-installazzjoni.\n"
-"\n"
-"L-aĥĥornamenti għandhom jaħdmu fuq sistemi Mandrake Linux minn v8.1 'il\n"
-"quddiem.\n"
-"\n"
-"Skond kemm inti familjari mal-Mandrake Linux, agħşel waħda minn dawn:\n"
-"\n"
-" * Rakkomandat: agħşel din jekk qatt ma nstallajt sistema Mandrake Linux \n"
-"qabel. L-installazzjoni tkun iżjed sempliċi u tiġi mistoqsi biss ftit \n"
-"mistoqsijiet.\n"
-"\n"
-" * Espert: jekk għandek esperjenza sew ta' GNU/Linux tista' tagħşel din\n"
-"il-klassi ta' installazzjoni. L-installazzjoni esperta tħallik tagħmel \n"
-"installazzjoni personalizzata ħafna. Xi wħud mill-mistoqsijiet jistgħu "
-"ikunu\n"
-"diffiċli tirrispondihom jekk ma tafx sew lill-GNU/Linux, għalhekk tagħżilx\n"
-"din il-klassi jekk ma tafx x'qed tagħmel."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Normalment, DrakX jagħşillek it-tastiera tajba (skond il-lingwa li\n"
-"għaşilt) u anqas tara dan il-pass. Però, jista' jkollok tastiera\n"
-"li ma taqbilx eĹźatt mal-lingwa: per eĹźempju, jekk int titkellem bil-\n"
-"Malti imma tgħix fi Franza, tista' tkun trid tastiera Franċiża, jew\n"
-"jista' jkollok tastiera Maltija ibbaĹźata fuq tastiera US. F'dawn il-\n"
-"kaşi, trid tmur lura f'dan il-pass u tagħşel it-tastiera tajba mil-\n"
-"lista.\n"
-"\n"
-"Klikkja fuq il-buttuna \"Oħrajn\" biex tara l-lista kompleta ta' \n"
-"tastiera li hemm fis-sistema."
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Jekk jogħĥbok agħşel il-lingwa preferuta għall-installazzjoni u l-uşu tas-\n"
-"sistema.\n"
-"Agħfas il-buttuna \"Avvanzat\" biex tagħşel lingwi oħra li tixtieq fuq is-\n"
-"sistema. Jekk tagħżel lingwi oħra, il-fajls speċifiċi għal dik il-lingwa "
-"jiÄĄu\n"
-"nstallati fuq is-sistema. Per eşempju, tista' tagħşel il-Malti bħala lingwa\n"
-"ewlenija fil-lista, u fis-sezzjoni avvanzata tagħşel Taljan u Russu billi \n"
-"tikklikkja l-istilla ta' maÄĄenbhom.\n"
-"\n"
-"Innota li tista' tagħşel kemm trid lingwi. Ladarba tkun għaşilt il-lingwi\n"
-"li trid agħfas \"OK\" biex tkompli."
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"Impliċitament, DrakX jassumi li għandek maws b'żewġ buttuni u jissettjah\n"
-"għall-emulazzjoni tat-tielet buttuna. DrakX kapaċi jinduna waħdu jekk il-\n"
-"maws huwiex PS/2, serjali jew USB.\n"
-"\n"
-"Jekk tixtieq tispeċifika tip ta' maws differenti, agħżel it-tip tajjeb mil-\n"
-"lista provduta.\n"
-"\n"
-"Jekk tagħżel tip ta' maws differenti mill-oriġinali, tiġi provduta faċilità\n"
-"biex tittestja s-setings. UĹźa l-buttuni kollha u r-rota biex tivverifika li "
-"s-\n"
-"setings jaħdmu sew. Jekk il-maws ma jaħdimx sew agħfas \"spazju\" jew\n"
-"[Enter] biex tikkanċella u terġa tagħżel ieħor."
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Jekk jogħĥbok agħşel il-port it-tajjeb. Per eşempju, il-port \"COM1\" fil-\n"
-"Windows huwa ekwivalenti għal \"ttyS0\" fil-GNU/Linux."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"Dan huwa punt ta' deċiżjoni kruċjali għas-sigurtà tas-sistema GNU/Linux\n"
-"tiegħek: trid tagħşel password għal \"root\". \"root\" huwa l-user li\n"
-"jintuşa bħala amministratur tas-sistema, u huwa l-uniku user awtorizzat\n"
-"li jaġġorna s-sistema, iżid users, jibdel il-konfigurazzjoni. eċċ. Fi kliem\n"
-"ieħor, \"root\" kapaċi jagħmel kollox! Għalhekk huwa importanti li tagħżel\n"
-"password li diffiċli biex taqtagħha -DrakX iwissik jekk tagħżel waħda faċli\n"
-"wisq. Kif tista' tinduna, huwa anke possibbli li ma ddaħħal xejn bħala "
-"password,\n"
-"imma dan huwa perikoluş ČAFNA u aħna ma nirrakkomandawh qatt. Peress li "
-"\"root\"\n"
-"jista' jegħleb kull limitazzjoni, saħansitra jħassar l-informazzjoni u \n"
-"partizzjonijiet kollha, huwa mportanti li jkun diffiċli kemm jista' jkun li\n"
-"nies oħra jidħlu bħala \"root\".\n"
-"\n"
-"Il-password l-aħjar li jkun taħlita ta' ittri u numri, u ta' l-inqas twil "
-"8 \n"
-"karattri. M'għandek qatt tikteb il-password ta' \"root\" - dan jagħmilha\n"
-"faċli wisq tikkomprometti s-sistema.\n"
-"\n"
-"Fl-istess ħin tagħmilx il-password twil jew komplikat wisq għax int trid\n"
-"tkun kapaċi tiftakarha.\n"
-"\n"
-"Il-password mhux se jintwera fuq l-iskrin waqt li tittajpjah. Għalhekk trid\n"
-"tittajpjah darbtejn biex jonqos iċ-ċans li tagħmel żball waqt li tittajpja.\n"
-"Jekk tagħmel l-istess şball darbtejn, trid tittajpja l-password b'dan il-"
-"mod\n"
-"sakemm tibdlu.\n"
-"\n"
-"Fil-modalità esperta għandek l-għaşla li taqbad ma' server ta' "
-"awtentikazzjoni,\n"
-"bħal NIS jew LDAP.\n"
-"\n"
-"Jekk in-network tiegħek juħa protokoll LDAP (jew NIS) għall-"
-"awtentikazzjoni,\n"
-"agħşel \"LDAP\" jew \"NIS\" bħala awtentikazzjoni. Jekk ma tafx, staqsi "
-"lill-\n"
-"amministratur tan-network.\n"
-"\n"
-"Jekk il-kompjuter tiegħek mhux imqabbad ma' network amministrat, agħşel\n"
-"\"Fajls lokali\" għall-awtentikazzjoni."
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"LILO u grub huma \"boot loaders\" għall-GNU/Linux. Dan l-istadju normalment\n"
-"huwa totalment awtomatizzat. Fil-fatt, DrakX janalizza s-settur \"boot\" "
-"tad-\n"
-"diska u jaÄĄixxi skond x'isib hemm:\n"
-"\n"
-" * Jekk isib settur boot tal-Windows, dan jiÄĄi mibdul mal-ÄĄdid;\n"
-"\n"
-"F'kaş ta' dubju, DrakX jurik window b'diversi għaşliet.\n"
-"\n"
-" * \"Boot loader x'tuşa\": għandek tliet għaşliet:\n"
-"\n"
-" * \"GRUB\": jekk tippreferi grub (menu testwali).\n"
-"\n"
-" * \"LILO b'menu grafiku\": jekk tippreferi LILO b'modalitĂ  grafika.\n"
-"\n"
-" * \"LILO b'menu testwali\": jekk tippreferi LILO b'modalitĂ  testwali.\n"
-"\n"
-" * \"Apparat boot\": ġeneralment ma tbiddilx il-valur impliċitu (\"/dev/hda"
-"\"),\n"
-"imma jekk tippreferi, il-bootloader jista' jiÄĄi nstallat fuq it-tieni diska\n"
-"(\"/dev/hdb\") jew saħanistra floppy (\"/dev/fd0\").\n"
-"\n"
-" * \"Pawża qabel ittella' impliċitu\": meta tixgħel il-kompjuter, dan "
-"jistenna\n"
-"daqshekk biex il-user ikun jista' jagħmel għaşliet oħra.\n"
-"\n"
-"!! Importanti tkun taf li jekk ma tinstallax \"bootloader\" (jekk tagħfas \n"
-"\"Ikkanċella\"), irid ikollok metodu ieħor biex ittella' s-sistema "
-"Mandrake \n"
-"Linux. Kun af sew x'qed tagħmel qabel tibdel waħda minn dawn l-għaşliet. !!\n"
-"\n"
-"Jekk tagħfas il-buttuna \"Avvanzat\" f'din il-window tara diversi għaşliet\n"
-"avvanzati għal users esperti.\n"
-"\n"
-"Wara li tkun ikkonfigurajt il-parametri ÄĄenerali tal-bootloader, tiÄĄi\n"
-"preşentat b'lista ta' għaşliet tal-boot li jkunu disponibbli meta tixgħel.\n"
-"\n"
-"Jekk għandek sistema operattiva oħra installata fuq il-kompjuter, din tkun\n"
-"mişjuda mal-menu tal-boot. Hawn, tista' tirfina l-għaşliet eşistenti. "
-"Agħşel\n"
-"wieħed mill-elementi u agħfas \"Biddel\" biex tbiddilhom u \"Neħħi\" biex "
-"tneħħi l-element. \"ŝid\" joħloq element ĥdid, u \"Lest\" imur fil-pass\n"
-"li jmiss ta' l-installazzjoni."
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (LInux LOader) u grub huma \"boot loaders\": huma jagħtuk il-faċilità\n"
-"li tħaddem lill-GNU/Linux jew sistema operattiva oħra preşenti fuq il-"
-"kompjuter.\n"
-"Normalment, dawn is-sistemi operattivi oħrajn jiĥu magħrufa u konfigurati\n"
-"awtomatikament. Jekk dan m'hux il-kaş, tista' şşid għaşla mal-menu "
-"manwalment\n"
-"f'dan l-iskrin. Aċċerta li tagħżel il-parametri tajbin.\n"
-"\n"
-"Għandek mnejn ma tkunx trid tagħti aċċess għal dawn is-sistemi operattivi "
-"lill\n"
-"ħadd. F'dak il-kaş tista' tħassar dawn l-elementi. Imma mbgħad tkun trid "
-"floppy\n"
-"apposta biex tidħol f'dawn is-sistemi operattivi!"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Hawn trid tindika fejn tixtieq tpoĥĥi l-informazzjoni meħtieĥa biex tibda\n"
-"s-sistema.\n"
-"\n"
-"Jekk ma tafx x'inti tagħmel, agħşel \"L-ewwel settur tad-diska (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-"Hawn tista' tagħşel sistema ta' printjar għall-kompjuter tiegħek. Sistemi\n"
-"operattivi oħra joffrulek waħda, Mandrake Linux jagħtik tlieta.\n"
-"\n"
-" * \"pdq\" - li jfisser \"printja minngħajr kju\", huwa l-aħjar għaşla\n"
-"jekk għandek konnessjoni diretta mal-printer, trid il-faċilità li twaqqaf\n"
-"printjar malajr, u m'għandekx printers bin-network. Dan il-metodu jaċċetta\n"
-"biss networking sempliċi, u mhux effiċjenti fuq network. Tista' tagħżel \n"
-"\"pdq\" jekk din hija l-ewwel esperjenza tiegħek fuq Linux. Tista' tibdel\n"
-"din l-għażla wara billi tħaddem PrinterDrake miċ-Ċentru tal-Kontroll \n"
-"Mandrake u tagħfas il-buttuna \"Espert\".\n"
-"\n"
-" * \"CUPS\"\"Sistema ta' Printjar Komuni tal-Linux\" huwa eċċellenti\n"
-"kemm biex tipprintja fuq printer lokali kif ukoll fuq printer in-naħa l-"
-"oħra\n"
-"tad-dinja. Huwa sempliċi u jista' jaħdem kemm bħala server kif ukoll bħala\n"
-"klijent għal sistemi antiki \"lpd\", għalhekk huwa kompatibbli ma' sistemi\n"
-"antiki. Kapaċi jagħmel ħafna affarijiet, imma l-konfigurazzjoni bażika hija\n"
-"sempliċi kważi daqs \"pdq\". Biex jemula server \"lpd\", trid tħaddem is-\n"
-"servizz \"cups-lpd\". CUPS għandu interfaċċji grafiċi biex tipprintja jew\n"
-"tissettja l-għaşliet tal-printer.\n"
-"\n"
-" * \"lprNG\" - \"line printer daemon New Generation\". Din is-sistema "
-"tagħmel\n"
-"bejn wieħed u ieħor l-istess affarijiet li jagħmlu l-oħrajn, imma kapaċi "
-"ukoll\n"
-"juża printers fuq network Novell, għax jaċċetta l-protokoll IPX, u kapaċi\n"
-"jipprintja lill kmandijiet tax-shell. Jekk għandek network Novell jew\n"
-"għandek bşonn tipprintja permezz ta' kmand mingħajr ma tuşa pajp, uşa "
-"lprNG.\n"
-"Altrimenti, CUPS huwa aħjar għax huwa iżjed sempliċi u jaħdem aħjar fuq \n"
-"network."
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX issa se jfittex apparat IDE fuq il-kompjuter tiegħek. Huwa wkoll\n"
-"ifittex kard waħda jew işjed SCSI PCI fuq is-sistema. Jekk tinstab kard\n"
-"SCSI, DrakX awtomatikament jinstalla d-driver għaliha.\n"
-"\n"
-"Press li dan il-proċess mhux dejjem isib ċerti apparat. DrakX jitolbok\n"
-"tikkonferma jekk hemmx kard SCSI PCI fuq il-kompjuter. Agħfas \"Iva\" jekk\n"
-"taf li għandek kard simili fuq il-kompjuter. Int tingħata lista ta' kards \n"
-"SCSI mnejn tagħşel tiegħek. Agħşel \"Le\" jekk m'għandekx kards SCSI. Jekk \n"
-"m'intix ċert tista' tiċċekkja l-lista ta' ħardwer misjub fis-sistema billi\n"
-"tagħfas \"Ara info. ħardwer\" u mbgħad \"OK\". Eşamina l-lista ta' apparat u "
-"mbgħad agħfas \"OK\" biex tiĥi lura fil-konfigurazzjoni ta' SCSI.\n"
-"\n"
-"Jekk trid tissettja l-adattur manwalment, DrakX jistaqsik jekk tridx \n"
-"tispeċifika għażliet għalih. Jaqbillek tħalli lill DrakX jeżamina l-ħardwer\n"
-"biex isir jaf liema għaşliet għandu bşonn l-apparat biex jaħdem. Dan \n"
-"normalment jaħdem sew.\n"
-"\n"
-"Jekk DrakX mhux kapaċi jagħraf l-għażliet li jridu jiġu mgħoddija, trid\n"
-"tispeċifikahom manwalment lid-driver. Jekk jogħġbok iċċekkja l-\"User Guide"
-"\", (kapitlu 3, \"Collecting Information on Your Hardware\") għal ħjilijiet "
-"dwar\n"
-"kif issir taf il-parametri meħtieĥa mid-dokumentazzjoni ta' l-apparat, "
-"mill-\n"
-"website tad-ditta tiegħu, jew minn Microsoft Windows (jekk tuşa dan l-"
-"apparat\n"
-"fuq il-Windows ukoll)."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"Hawn issib diversi parametri li jikkonċernaw il-kompjuter tiegħek. Skond\n"
-"l-apparat li għandek imqabbad tista' tara divers minn dawn:\n"
-"\n"
-" * \"Maws\": iċċekkja l-konfigurazzjoni preżenti tal-maws u klikkja\n"
-"l-buttuna biex tibdlu jekk meħtieĥ.\n"
-"\n"
-" * \"Tastiera\": iċċekkja jekk dan jaqbilx mat-tip ta' tastiera tiegħek;\n"
-"agħfas il-buttuna biex tibdlu.\n"
-"\n"
-" * \"Żona tal-ħin\": DrakX, impliċitament, jipprova jaqta' skond il-lingwa\n"
-"li għaşilt. Hawnhekk ukoll, bħal fil-kaş tat-tastiera, tista' ma tkunx fil-\n"
-"pajjiş ewlieni tal-lingwa, għalhekk tista' tibdel iş-şona billi tagħfas din\n"
-"il-buttuna.\n"
-"\n"
-" * \"Printer\": jekk tagħfas il-buttuna tal-printer tista' tħaddem saħħar\n"
-"biex tissettja l-printer.\n"
-"\n"
-" * \"Kard awdjo\": jekk instabet kard tal-awdjo fuq il-kompjuter tiegħek,\n"
-"tintwera hawn. M'hemm xejn xi tbiddel waqt l-installazzjoni.\n"
-" * \"Kard TV\": jekk instabet kard tat-TV fuq il-kompjuter tiegħek,\n"
-"tintwera hawn. M'hemm xejn xi tbiddel waqt l-installazzjoni.\n"
-"\n"
-" * \"Kard ISDN\": jekk instabet kard ISDN fuq il-kompjuter tiegħek,\n"
-"tintwera hawn. Tista' tagħfas il-buttuna biex tbiddel il-parametri "
-"assoċjati\n"
-"magħha."
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Agħşel liema ħard disk trid tħassar biex tinstalla l-partizzjonijiet tal-\n"
-"Mandrake Linux fuqha. Oqgħod attent, l-informazzjoni kollha fuq din id-\n"
-"diska jintilef u ma jkunx jista' jinÄĄab lura!"
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Klikkja fuq \"OK\" jekk trid tħassar l-informazzjoni u partizzjonijiet \n"
-"kollha li hemm fuq dan il-ħard disk. Oqgħod attent, wara li tagħfas \"OK\"\n"
-"ma tkunx tista' terÄĄa' tikseb l-informazzjoni u partizzjonijiet li hemm\n"
-"fuq dan il-ħard disk, inkluş fajls tal-Windows.\n"
-"\n"
-"Klikkja \"Ikkanċella\" biex twaqqaf dan il-proċess minngħajr ma tħassar\n"
-"l-informazzjoni u partizzjonijiet fuq dan il-ħard disk."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "Trid ukoll tifformattja %s"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Int għaşilt dan is-server/s: %s\n"
-"\n"
-"\n"
-"Dawn is-servers huma attivati impliċitament. M'għandhom ebda problemi ta'\n"
-"sigurtà magħrufa, imma jistgħu jinstabu ĥodda minn şmien għal şmien. "
-"Għalhekk,\n"
-"importanti li şşommhom aĥĥornati.\n"
-"\n"
-"\n"
-"Ĺťgur li trid tinstalla dawn is-servers?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Ma nsitax nuşa \"broadcast\" minngħajr dominju NIS"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Daħħal floppy formattjata FAT fid-drive %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Din il-floppy m'hix formattjata FAT"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Bex tuşa din l-għaşla ta' pakketti, ħaddem l-installazzjoni b' \"linux "
-"defcfg=floppy\""
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Problema fil-qari tal-fajl %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Xi apparat fil-kompjuter tiegħek jeħtieġ drivers speċjali biex jaħdem.\n"
-"Tista' ssib iĹźjed informazzjoni dwarhom fuq: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Għandek bşonn partizzjoni \"root\".\n"
-"Għal dan l-ewwel oħloq partizzjoni (jew agħşel waħda eşistenti)\n"
-"Imbgħad agħşel \"Punt ta' mmuntar\" u ssettjah għal \"/\""
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Għandek bşonn partizzjoni \"swap\""
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"M'għandekx partizzjoni \"swap\".\n"
-"\n"
-"Trid tkompli xorta?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Għandek bşonn partizzjoni FAT immuntata fuq /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "UĹźa l-ispazju vojt"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "M'hemmx bişşejjed spazju vojt biex jinħolqu l-partizzjonijiet il-ĥodda"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "UĹźa partizzjoni eĹźistenti"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "M'hemmx partizzjonijiet eĹźistenti x'nuĹźa"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Uşa l-partizzjoni tal-Windows għal loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Liema partizzjoni trid tuşa għal Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Agħşel id-daqsijiet"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Daqs tal-partizzjoni root f' MB: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Daqs tal-partizzjoni Swap f' MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "UĹźa l-ispazju vojt fil-partizzjoni tal-Windows"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Liema partizzjoni trid tibdlilha d-daqs?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Qed nikkalkula l-limiti tal-filesystem tal-Windows"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Il-programm biex tibdel id-daqs ta' partizzjoni FAT m'hux\n"
-"kapaċi tbiddel din il-partizzjoni - instabet din il-problema:\n"
-"%s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Il-partizzjoni tal-Windows hija mgerfxa wisq. Jekk jogħĥbok ħaddem \"defrag"
-"\"."
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"TWISSIJA!\n"
-"\n"
-"DrakX issa se jbiddel id-daqs tal-partizzjoni Windows. Oqgħod\n"
-"attent: dan il-proċess huwa perikoluż. Jekk għadek m'għamiltx dan,\n"
-"jaqbillek l-ewwel toħroġ mill-proċess tal-installazzjoni, tħaddem\n"
-"\"scandisk\" mill-Windows (u idejalment anke \"defrag\"), u \n"
-"mbgħad terĥa' tibda l-installazzjoni. Int rakkomandat ukoll li \n"
-"tieħu \"backup\" tal-informazzjoni importanti.\n"
-"Meta tkun ċert, agħfas Ok."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "X'daqs trid işşomm għall-windows fuq"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "partizzjoni %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Bdil tad-daqs FAT falla: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"M'hemmx partizzjoijiet FAT biex tibdel id-daqs jew biex tuşahom bħala\n"
-"\"loopback\" (jew m'hemmx bişşejjed spazju)."
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "ÄŚassar kull m'hemm fid-diska"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Neħħi l-Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Għandek işjed minn ħard disk waħda. Fuq liema trid tinstalla l-Linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"Il-partizzjonijiet kollha fuq id-diska %s u l-informazzjoni ta' ÄĄo fihom se "
-"jintilfu"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Partizzjonament personalizzat"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "UĹźa fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Tista' tippartizzjona %s.\n"
-"X'ħin tlesti, tinsiex tikteb il-bidliet billi tittajpja \"w\"."
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "M'għandekx bişşejjed spazju fuq il-partizzjoni Windows."
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Ma nistax insib spazju fejn ninstalla."
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Is-saħħar ta' partizzjonament DrakX sab dawn is-soluzzjonijiet:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partizzjonament falla: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Qed intella' n-network"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Qed innişşel in-network"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Inqalgħet problema, imma ma nafx kif nieħu ħsieba sew.\n"
-"Tista' tkompli b'risku tiegħek"
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Punt ta' mmuntar doppju %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Xi pakketti importanti ma ÄĄewx installati sew.\n"
-"Jew id-drive tas-CDROM, jew is-CD nnifisha huma difettuĹźi.\n"
-"Tista' tiċċekkja s-CD fuq kompjuter diġà nstallat permezz tal-kmand \"rpm -"
-"qpl Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Merħba għal %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "M'hemmx drive floppy"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Dieħel fil-pass \"%s\"\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Is-sistema hija nieqsa mir-riĹźorsi. Jista' jkollok problema biex tinstalla \n"
-"l-Mandrake Linux. Jekk jiĥri dan, ipprova installazzjoni testwali. Għal "
-"dan,\n"
-"agħfas F1 meta titla' s-CD, imbgħad ittajpja \"text\"."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Klassi ta' installazzjoni"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Jekk jogħĥbok agħşel waħda minn dawn il-klassijiet ta' installazzjoni:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Id-daqs totali tal-gruppi li għaşilt huwa madwar %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Jekk tixtieq tinstalla inqas minn dawn id-daqs, agħżel il-perċentaġġ\n"
-"ta' pakketti li trid tinstalla.\n"
-"\n"
-"Perċentaġġ baxx jinstalla biss l-iżjed programmi importanti;\n"
-"perċentaġġ ta 100%% jinstalla l-pakketti kollha magħżula."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Fuq id-diska għandek spazju għal %d%% biss minn dawn il-pakketti.\n"
-"\n"
-"Jekk tixtieq tinstalla inqas minn hekk, agħżel il-perċentaġġ tal-\n"
-"pakketti li trid tinstalla. Perċentaġġ baxx jinstalla biss l-iżjed \n"
-"programmi importanti; perċentaġġ ta %d%% jinstalla kemm jista' jkun."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Tkun tista' tagħżilhom b'mod iżjed speċifiku fil-pass li jmiss."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Perċentaġġ ta' pakketti x'tinstalla"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Għaşla ta' gruppi ta' pakketti"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Agħşel pakketti individwalment"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Daqs totali: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Pakkett ħaşin"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Isem: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "VerĹźjoni: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Daqs: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Importanza: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Ma tistax tagħşel dan il-pakkett għax ma fadalx bişşejjed spazju għalih"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Dawn huma l-pakketti li se jiÄĄu nstallati"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Dawn huma l-pakketti li se jiĥu mneħħija"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Ma tistax tagħşel dan il-pakkett"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Dan il-pakkett huwa kruċjali, ma jistax jitneħħa"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Ma tistax tneħħi l-għaşla minn dan il-pakkett, diĥà nstallat."
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Dan il-pakkett għandu bşonn jiĥi aĥĥornat.\n"
-"ŝgur li trid tneħħi l-għaşla?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Ma tistax tneħħi l-għaşla minn dan il-pakkett. Irid jiĥi aĥĥornat."
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Uri l-pakketti magħşula awtomatikament"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Installa"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Aqra/ikteb fuq floppy"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Qed naĥĥorna l-għaşla ta' pakketti"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Installazzjoni minima"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Agħşel il-pakketti li trid tinstalla"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Qed ninstalla"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Qed nistima"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "ÄŚin li fadal "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Stenna ftit, qed nipprepara l-installazzjoni"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pakketti"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Qed jinstalla il-pakkett %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Naċċetta"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Ma naċċettax"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Ibdel id-diska CD!\n"
-"\n"
-"Jekk jogħĥbok daħħal id-diska mmarkata \"%s\" fid-drive u agħfas Ok meta "
-"tlesti.\n"
-"Jekk m'għandekx din id-diska, agħfas \"Ikkanċella\" biex taqbeż il-pakketti "
-"li qegħdin fuqha."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Trid tkompli xorta?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Kien hemm problema fl-ordni tal-pakketti:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Kien hemm problema fl-installazzjoni tal-pakketti:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Inqalgħet problema"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "ŝgur trid toħroĥ mill-installazzjoni?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Qbil mal-liċenzja"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Tastiera"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Jekk jogħĥbok agħşel tqassim tat-tastiera."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Hawn issib lista sħiħa tat-tastieri disponibbli"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Liema klassi ta' installazzjoni trid?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Installa/AÄĄÄĄorna"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Din hija installazzjoni ÄĄdida jew aÄĄÄĄornament?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Rakkomandat"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Espert"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "AÄĄÄĄornament"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "AÄĄÄĄorna l-pakketti biss"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Jekk jogħĥbok agħşel it-tip tal-maws."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Port tal-maws"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Jekk jogħĥbok agħşel il-port serjali li miegħu hemm imqabbad il-maws."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Emulazzjoni tal-buttuni"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emulazzjoni ta' buttuna #2"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emulazzjoni ta' buttuna #3"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Qed nissettja kard PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Qed nikkonfigura IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "m'hemmx partizzjonijiet disponibbli"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Qed niskannja partizzjonijiet biex insib punti ta' mmuntar"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Agħşel punti ta' mmuntar"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ma nistax naqra t-tabella tal-partizzjonijiet, hija korrotta wisq :(\n"
-"Nista nkompli billi nħassar partizzjonijiet ħşiena (L-INFORMAZZJONI \n"
-"KOLLHA tintilef). L-alternattiva hi li ma tħallix lill DrakX ibiddel\n"
-"it-tabella tal-partizzjonijiet (il-problema hi %s)\n"
-"\n"
-"Trid titlef il-partizzjonijiet kollha?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake ma rnexxielux jaqra t-tabella tal-partizzjonijiet.\n"
-"Jekk tkompli jkun riskju tiegħel!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"M'hemmx spazju għal bootstrap ta' 1MB. L-installazzjoni se tkompli, imma "
-"biex tħaddem is-sistema trid toħloq partizzjoni bootstrap f' Diskdrake."
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Ebda partizzjoni root ma nstabet biex issir aÄĄÄĄornament"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Partizzjoni root"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Liem hi l-partizzjoni root tas-sistema?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Trid tirristartja sabiex il-bidliet fit-tabella tal-partizzjonijiet ikollhom "
-"effett."
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Agħşel liema partizzjonijiet trid tifformattja"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Trid tiċċekkja għal blokki ħżiena?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Qed nifformattja l-partizzjonijiet"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Qed noħloq u nifformattja fajl %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr ""
-"M'hemmx bişşejjed swap biex issir l-installazzjoni, jekk jogħĥbok şid ftit "
-"swap"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Qed insib pakketti disponibbli"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Qed insib pakketti x'naÄĄÄĄorna"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Is-sistema m'għandiex bişşejjed spazju għall-installazzjoni jew aĥĥornament "
-"(%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Komplet (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimu (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Rakkomandat (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Jekk jogħĥbok agħşel \"ikteb\" jew \"aqra\" l-għaşla tal-pakketti fuq\n"
-"floppy. Il-format huwa l-istess bħal floppies ĥenerati bl-auto_install."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Aqra' mill-floppy"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Qed tinqara' l-floppy"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Għaşla ta' pakketti"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Daħħal floppy li fiha għaşla ta' pakketti"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Ikteb fuq floppy"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Id-daqs tal-għaşla huwa ikbar mill-ispazju disponibbli"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Tip ta' installazzjoni"
-
-#: ../../install_steps_interactive.pm_.c:672
-#, fuzzy
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Għadek m'għaşiltx grupp ta' pakketti\n"
-"Jekk jogħĥbok agħşel installazzjoni minima li trid."
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "Bl-XWindows"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "B' dokumentazzjoni baĹźika (rakkomandat)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Installazzjoni verament minima (mingħajr urpmi)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Jekk għandek is-CDs kollha fil-lista ta' taħt agħfas \"Ok\".\n"
-"Jekk m'għandek ebda waħda agħfas \"Ikkanċella\".\n"
-"Jekk m'għandekx uħud minnhom, neħħi li m'għandekx u agħfas \"Ok\"."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM immarkat \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Qed nipprepara l-installazzjoni"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Qed jiÄĄi nstallat il-pakkett %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Konfigurazzjoni ta' wara l-installazzjoni"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Jekk jogħĥbok daħħal \"boot floppy\" fid-drive %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Jekk jogħĥbok daħħal \"update modules floppy\" fid-drive %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Issa għandek il-possibbiltà li tniżżel softwer immirat għaċ-ċifrazzjoni.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Issa tista' tnişşel pakketti aĥĥornati li ĥew pubblikati wara li\n"
-"din id-distribuzzjoni inħarĥet.\n"
-"\n"
-"Tista' tikseb tiswijiet ta' sigurtĂ  jew bugs, imma jrid ikollok\n"
-"konnessjoni mal-internet biex tipproċedi.\n"
-"\n"
-"Trid tinstalla dawn l-aÄĄÄĄornamenti?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Qed nikkuntattja l-website ta' Mandrake Linux biex nikseb lista tal-mirja "
-"disponibbli"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Agħşel mera minn fejn trid iĥĥib il-pakketti"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Qed nikkuntattja l-mera biex nikseb lista tal-pakketti disponibbli"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Liem hi ş-şona orarja tiegħek?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "ArloÄĄÄĄ tal-kompjuter issettjat GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Sinkronizzazzjoni tal-ħin awtomatiku (permezz ta' NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "Server NTP"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Server CUPS remot"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Ebda printer"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Għandek işjed?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Sommarju"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Maws"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "ŝona tal-ħin"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Printer"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "Kard ISDN"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Kard awdjo"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "Kard TV"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Fajls lokali"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Issettja l-password ta' \"root\""
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Ebda password"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Dan il-password sempliċi wisq (irid ikun twil tal-inqas %d ittri)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Awtentikazzjoni"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Awtentikazzjoni LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "DN baĹźi LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "Server LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "Awtentikazzjoni NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "Dominju NIS"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "Server NIS"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Bootdisk personalizzata tipprovdi mezz kif ittella' s-sistema Linux\n"
-"minngħajr ma' tinstalla l-bootloader normali. Dan huwa utli jekk ma "
-"tixtieqz\n"
-"tinstalla SILO fuq is-sistema tiegħek, jew jekk xi programm ineħħilek\n"
-"is-SILO, jew jekk SILO ma jaħdimx mal-ħardwer tiegħek. Bootdisk "
-"personalizzata\n"
-"tista' wkoll tintuĹźa mal-\"image\" tat-tiswija (rescue) ta' Mandrake, biex "
-"ikun\n"
-"iżjed faċli tirkupra minn problemi serji.\n"
-"\n"
-"Jekk tixtieq toħloq bootdisk għas-sistema tiegħek, daħħal floppy fl-ewwel \n"
-"drive u agħfas OK."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Floppy drive ewlieni"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "It-tieni floppy drive"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "AqbeĹź"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, fuzzy, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Bootdisk personalizzata tipprovdi mezz kif ittella' s-sistema Linux\n"
-"minngħajr ma' tinstalla l-bootloader normali. Dan huwa utli jekk ma "
-"tixtieqz\n"
-"tinstalla LILO (jew grub) fuq is-sistema tiegħek, jew jekk xi programm \n"
-"ineħħilek il-LILO, jew jekk LILO ma jaħdimx mal-ħardwer tiegħek. Bootdisk \n"
-"personalizzata tista' wkoll tintuĹźa mal-\"image\" tat-tiswija (rescue) ta' \n"
-"Mandrake, biex ikun iżjed faċli tirkupra minn problemi serji.\n"
-"Tixtieq toħloq bootdisk għas-sistema tiegħek?"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Jiddispjaċini, ebda floppy drive disponibbli"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Agħşel liema floppy drive tixtieq tuşa biex toħloq il-bootdisk"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Daħħal floppy ĥdida f' %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Qed tinħoloq diska \"boot\""
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Qed nipprepara l-bootloader"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Jidher li għandek magna \"OldWorld\" jew mhux \n"
-"magħrufa. Il-bootloader \"yaboot\" m'hux se jaħdem fuqha. \n"
-"L-installazzoni se tkompli, imma trid tuĹźa BootX biex \n"
-"ittella' l-Linux."
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Trid tuĹźa \"aboot\"?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Problema fl-installazzjoni ta' aboot.\n"
-"trid tipprova timponi l-installazzoni anke jekk tħassar l-ewwel partizzjoni?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Qed ninstalla l-bootloader"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "L-installazzjoni tal-bootloader falla. Dan kien il-messaÄĄÄĄ:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Għandek mnejn trid tbiddel is-setings tal-Open Firmware u tbiddel l-\n"
-"apparat tal-boot biex jiffunzjona l-bootloader. Jekk ma tixtieqx tara\n"
-"l-prompt tal-bootloader meta tirristartja, Ĺźomm Command-Option-O-F \n"
-"waqt ir-reboot u daħħal:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Imbgħad ittajpja: shut-down\n"
-"Meta jerĥa' jitla' għandek tara l-prompt tal-bootloader."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Daħħal floppy vojta' fi drive %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Qed jinħoloq floppy awto-installazzjoni"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Xi passi ma ÄĄewx finalizzati.\n"
-"\n"
-"Trid toħroĥ issa?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Prosit! L-installazzjoni issa lesta.\n"
-"Neħħi l-floppy/CD u agħfas Enter biex tirristartja.\n"
-"\n"
-"\n"
-"Għal informazzjoni dwar aĥĥornamenti li saru għal din il-verşjoni ta' "
-"Mandrake \n"
-"Linux, iċċekkja s-sezzjoni \"Errata\" li hemm fuq:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Informazzjoni dwar kif tissettja s-sistema tinstab fil-kapitlu \"Post-install"
-"\" \n"
-"fl-Official Mandrake Linux User's Guide."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Oħloq floppy awto-installa"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"L-awto-installazzjoni tista' tkun totalment awtomatizzata\n"
-"jekk trid. F'dak il-kaş tieħu l-ħard disk kollu!!\n"
-"(dan huwa ntenzjonat għal installazzjoni fuq kompjuter ĥdid)\n"
-"\n"
-"Forsi tippreferi tuĹźa \"replay\" tal-installazzjoni.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Awtomatizzata"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Replay"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Ikteb l-għaşla ta' pakketti"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Installazzjoni Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> bejn l-elementi | <Space> jimmarka | <F12> skrin li jmiss "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu nieqes"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "consolehelper nieqes"
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Agħşel fajl"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Avvanzat"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "BaĹźiku"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Stenna ftit"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Espandi friegħi"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Agħlaq friegħi"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Aqleb bejn lista sempliċi jew kategorizzata"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Għaşla ħaşina, erĥa' pprova\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "L-għażla tiegħek? (impliċita: %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Elementi li trid timla':\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "L-għażla tiegħek? (0/1, impliċitu: %s) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Buttuna \"%s\": %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "Trid tikklikkja din il-buttuna?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "L-għażla tiegħek? (impliċita: \"%s\"%s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Hemm ħafna affarijiet minn xiex tagħşel (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Nota, l-isem inbidel:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "ErÄĄa' sottometti"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Ċekk (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Ä ermaniĹź"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Spanjol"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "FinlandiĹź"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Franċiż"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "NorveÄĄiĹź"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Pollakk"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Russu"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "SvediĹź"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Tastiera UK"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Tastiera US"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "AlbaniĹź"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armen (antik)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armen (tajprajter)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armen (fonetiku)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "AĹźeri (latin)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "BelÄĄjan"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgaru (fonetiku)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "Bulgaru (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "BraĹźiljan (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Bjelorussu"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Svizzeru (tqassim Ä ermaniĹź)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Svizzeru (tqassim Franċiż)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Ċekk (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Ä ermaniĹź (bla deadkeys)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "DaniĹź"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (NorveÄĄiĹź)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (SvediĹź)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estonjan"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Ä orÄĄjan (tqassim \"Russu\")"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Ä orÄĄjan (tqassim \"Latin\")"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Grieg"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "UngeriĹź"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Kroat"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "IĹźraeli"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "IĹźraeli (fonetiku)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iranjan"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "IslandiĹź"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Taljan"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Ä appuniĹź 106 buttuna"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Korean"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latin Amerikan"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litwan AZERTY (antik)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litwan AZERTY (ÄĄdid)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litwan QWERTY \"number row\""
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litwan QWERTY fonetiku"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "Latvjan"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Maċedonjan"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "OlandiĹź"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Pollakk (qwerty)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Pollakk (qwertz)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "PortugiĹź"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "KanadiĹź (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Rumen (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Rumen (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Russu (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Sloven"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovakk (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovakk (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Serb (ċirilliku)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "Tamil"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Thai"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "TaÄĄik"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Tork (mudell tradizzjonali \"F\")"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Tork (mudell modern \"Q\")"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukranjan"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Tastiera US (internazzjonali)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "VjetnamiĹź qwerty \"numeric row\""
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslav (latin)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr "Buttuna Alt leminija"
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr "IĹź-ĹźewÄĄ buttuni \"shift\" flimkien"
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr "Ctrl u Shift flimkien"
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr "Buttuna CapsLock"
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl u Alt flimkien"
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt u Shift flimkien"
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr "Buttuna \"Menu\""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr "Buttuna \"Windows\" tax-xellug"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr "Buttuna \"Windows\" tal-lemin"
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Muntaġġ ċirkolari %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "L-ewwel neħħi l-volumi loġiċi minn ġo fih\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"Sapport għal PCMCIA m'għadux jeşisti fil-kernels 2.2. Jekk jogħĥbok uşa "
-"kernel 2.4."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Maws - Sun"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Maws bir-rota ÄĄeneriku PS2"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "buttuna waħda"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Ä eneriku 2 buttuni"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Ä eneriku"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Rota"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "serjal"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Ä eneriku 3 buttuni"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Maws Logitech (serjali, tip C7 antik)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 buttoni"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 buttoni"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "ebda"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Ebda maws"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Jekk jogħĥbok ittestja l-maws"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Biex tħaddem il-maws"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "MEXXI R-ROTA!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-*-*-bold-r-normal--17-*-100-100-p-*-iso8859-3,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Spiċċa"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Li jmiss ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Ta' qabel"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Dan tajjeb?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Aqbad ma' l-internet"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"F'Malta, il-metodu li jintuĹźa biex taqbad mal-ADSL huwa\n"
-"pptp, f'pajjişi oħra l-işjed metodu komuni huwa pppoe, \n"
-"filwaqt li wħud juşaw dhcp."
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "uĹźa dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "uĹźa pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "uĹźa pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Liema klijent dhcp trid tuĹźa?\n"
-"Normali: dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Ebda kard tan-network ethernet ma nstabet fuq il-kompjuter.\n"
-"Ma nistax nissettja dan it-tip ta' kollegament minngħajrha."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Agħżel l-interfaċċja tan-network"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Jekk jogħĥbok agħşel liema kard tan-network trid tuşa biex taqbad ma' l-"
-"internet"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "ebda kard tal-internet ma stabet"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Konfigurazzjoni tan-network"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Jekk jogħĥbok daħħal l-isem tal-kompjuter tiegħek jekk \n"
-"tafu. Xi servers DHCP jeħtieĥu l-isem biex jaħdmu. L-isem\n"
-"tal-kompjuter tiegħek irid ikun wieħed sħiħ, bħal\n"
-"\"anna.finanzi.ditta.com\""
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Isem tal-kompjuter"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Saħħar tal-Konfigurazzjoni tan-Network"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Modem ISDN estern"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Kard ISDN interna"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "X'tip ta' konnessjoni ISDN għandek?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"X'tip ta' konfigurazzjoni ISDN trid?\n"
-"\n"
-"* Il-kofigurazzjoni antika tuşa isdn4net. Fiha għodda\n"
-"b'saħħithom imma tista' tkun diffiċli biex tissettjam\n"
-"u m'hix standard.\n"
-"\n"
-"* Il-konfigurazzjoni l-ġdida hija iżjed faċli tifimha,\n"
-"işjed standard, imma fiha inqas għodda.\n"
-"\n"
-"Aħna nirrakkomandaw il-konfigurazzjoni ĥdida.\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Konfigurazzjoni ÄĄdida (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Konfigurazzjoni antika (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Konfigurazzjoni ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Agħşel provider.\n"
-" Jekk m'hux fil-lista, agħşel \"mhux imnişşel\""
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Protokoll Ewropew"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Protokoll Ewropew (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protokoll għall-kumplament tad-dinja"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protokoll għall-kumplament tad-dinja\n"
-" ebda kanal D (leased line)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Liema protokoll trid tuĹźa?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "X'tip ta' kard għandek?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Ma nafx"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Jekk il-kard hija ISA, il-valuri fuq l-iskrin li jmiss għandhom ikunu "
-"tajbin.\n"
-"\n"
-"Jekk hija kard PCMCIA, trid tkun taf l-IRQ u IO tal-kard.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Waqqaf"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Kompli"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Liema hija l-kard ISDN tiegħek?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Sibt kard ISDN PCI, imma ma nafx x'tip hi. Jekk jogħĥbok agħşel kard PCI fuq "
-"l-iskrin li jmiss."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Ebda kard ISDN PCI ma stabet. Agħşel waħda fl-iskrin li jmiss."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Jekk jogħĥbok agħşel ma' liema port serjali huwa mqabbad il-maws."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Għaşliet \"dialup\""
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Isem tal-konnessjoni"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Numru tat-telefon"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Login"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "IbbaĹźat fuq scripts"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "IbbaĹźat fuq terminal"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Isem tad-dominju"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "L-ewwel server DNS (opzjonali)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "It-tieni server DNS (opzjonali)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Tista taqta' minn ma' l-internet jew tirrikonfigura l-konnessjoni."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Tista tirrikonfigura l-konnessjoni."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Bħalissa int imqabbad ma' l-internet."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Tista taqbad mal-internet jew tirrikonfigura l-konnessjoni."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Bħalissa m'intix imqabbad ma' l-internet."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Aqbad"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Aqta'"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Ikkonfigura l-konnessjoni"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Konfigurazzjoni u konnessjoni tal-internet"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Issa se nikkonfiguraw il-konnessjoni %s"
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Issa se nissettjaw il-konnessjoni %s.\n"
-"\n"
-"\n"
-"Agħfas OK biex tkompli."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Konfigurazzjoni tan-network"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Peress li qed tagħmel installazzjoni minn fuq in-network, in-\n"
-"network diÄĄĂ  konfigurata.\n"
-"Agħfas Ok biex iżżomm din il-konfigurazzjoni, jew ikkanċella biex\n"
-"tbiddel il-konfigurazzjoni tal-internet u network.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Merħba għas-Saħħar tal-Konfigurazzjoni tan-Network\n"
-"\n"
-"Hawnhekk se nikkonfiguraw il-konnessjoni tal-internet/network.\n"
-"Jekk ma tixtieqx tuşa l-għarfien awtomatiku (autodetect), neħħi l-marka.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Agħşel profil li trid tissettja"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Uşa għarfien awtomatiku (auto-detect)"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Qed infittex l-apparat..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Konnessjoni b'modem normali"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "misjub fuq port %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "Konnessjoni ISDN"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "%s misjub"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "Konnessjoni ADSL"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "misjub fuq interfaċċja %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Konnessjoni Cable"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "konnessjoni cable misjuba"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Konnessjoni LAN"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "kard/s ethernet misjuba"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Agħşel liema konnessjoni trid tissettja"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Int ikkonfigurajet diversi modi biex taqbad ma' l-internet.\n"
-"Liema minnhom trid tuĹźa?\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Konnessjoni ma' l-internet"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Trid taqbad b'din il-konnessjoni malli tixgħel?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Konfigurazzjoni network"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "In-network irid jiÄĄi ristartjat."
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Kien hemm problema waqt li n-network kien qed jiÄĄi ristartjat: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Prosit! Il-konfigurazzjoni tan-network u l-internet lesti.\n"
-"Din il-konfigurazzjoni issa se tiĥi applikata għas-sistema.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Wara li jkun lest, aħna nirrikkmandaw li tirristartja s-sistema X biex "
-"tevita problemi ta' bdil fl-isem tal-kompjuter."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"Instabu xi problemi waqt il-konfigurazzjoni.\n"
-"Ittestja l-konnessjoni permezz ta' net_monitor jew mcc. Jekk il-konnessjoni "
-"ma taħdimx, tista' terĥa' tħaddem il-konfigurazzjoni."
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"TWISSIJA: Dan l-apparat diÄĄĂ  kien konfigurat qabel biex jaqbad ma' l-"
-"internet.\n"
-"Sempliċiment aċċetta li żżomm dan l-apparat konfigurat.\n"
-"Jekk tbiddel il-valuri ta' taħt dawn jieħdu post il-konfigurazzjoni preşenti."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Jekk jogħĥbok daħħal il-konfigurazzjoni IP għal dan il-kompjuter.\n"
-"Kull element huwa indirizz IP fil-format deċimali bit-tikek (eż, 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Qed nikkonfigura apparat tan-network %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (driver %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "Indirizz IP"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Netmask"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "IP Awtomatiku"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "L-indirizz IP irid ikun fil-format \"1.2.3.4\""
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Jekk jogħĥbok daħħal l-isem tal-kompjuter.\n"
-"Dan irid ikun isem sħiħ, bħal \"joe.linux.org.mt\".\n"
-"Tista' wkoll iddaħħal l-indirizz IP tal-gateway, jekk għandek wieħed."
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "Server DNS"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (eĹź. %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Apparat gateway"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Konfigurazzjoni tal-proxies"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "Proxy HTTP"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "Proxy FTP"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Ĺťomm kont tal-ID tal-kard tan-network (utli fuq laptops)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy mistenni jibda' http://"
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy mistenni jibda' ftp://"
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Konfigurazzjoni ta' l-internet"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Trid tipprova taqbad ma' l-internet issa?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Qed nittestja l-kollegament..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Is-sistema issa mqabbda ma' l-internet."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Għal raĥunijiet ta' sikurezza, issa se naqta'"
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Is-sistema donnha ma setgħetx taqbad ma' l-internet.\n"
-"Ipprova erÄĄa' kkonfiguraha."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Konfigurazzjoni tal-konnessjoni"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Jekk jogħġbok imla' jew iċċekkja l-elementi t'hawn taħt"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ tal-kard"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Mem. tal-kard (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO tal-kard"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_0 tal-kard"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 tal-kard"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Numru tat-telefon tiegħek"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Isem tal-provider (eĹź. provider.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Telefon tal-provider"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 tal-provider (opzjonali)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 tal-provider (opzjonali)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Agħşel il-pajjiş"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Tip ta' daljar"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Veloċità tal-konnessjoni"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "ÄŚin biex tiskadi l-konnessjoni (sek)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Login tal-kont (user name)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Password tal-kont"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "immuntar falla: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Partizzjoni estiĹźa m'hix sapportita fuq din il-pjattaforma"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Għandek toqba fit-tabella tal-partizzjonijiet imma ma nistax nuşaha.\n"
-"L-unika soluzzjoni hija li tmexxi l-partizzjoni primarja sabiex din it-toqba "
-"tkun maÄĄenb il-partizzjoni estiĹźa"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Restawr minn fajl %s falliet: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Fajl ta' backup ħaşin"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Problema waqt kitba fil-fajl %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Qed jiĥri xi ħaĥa ħaşina fuq il-ħard disk.\n"
-"It-test biex niċċekkja l-integrità tal-informazzjoni falla.\n"
-"Dan ifisser li kull ma tikteb fuq id-diska jista' jispiċċa mimli mbarazz."
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "neċessarju"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "importanti"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "tajjeb ħafna"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "tajjeb"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "forsi"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Sistema ta' Printjar Komuni tal-Unix"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Ä enerazzjoni Ä dida"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Printja minngħajr kju"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Printer lokali"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Printer remot"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Printer fuq server CUPS remot"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Printer fuq server lpd remot"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Printer tan-network (TCP/socket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Printer fuq SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Printer fuq server NetWare"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Daħħal URI tal-printer"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Għaddi x-xogħol lill kmand"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Mudell mhux magħruf"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Printers lokali"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Printers remoti"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " fuq port parallell \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", printer USB \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", apparat multi-funzjoni fuq port parallell \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", apparat multi-funzjoni fuq USB"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", apparat multi-funzjoni fuq HP JetDirect"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", apparat multi-funzjoni"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", qed jipprintja fuq %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "fuq server LPD \"%s\", printer \"%s\""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", server TCP/IP \"%s\", printer \"%s\""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "fuq server Windows \"%s\", share \"%s\""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "fuq server Novell \"%s\", printer \"%s\""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", bil-kmand %s"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Printer dirett (bla driver)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(fuq %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(fuq dan il-kompjuter)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Fuq server CUPS \"%s\""
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Impliċitu)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Agħşel konnessjoni tal-printer"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Kif inhu mqabbad il-printer?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Il-printers li hemm fuq servers CUPS m'għandhomx bşonn jiĥu ssettjati minn "
-"hawn; dawn il-printers jiĥu magħrufa awtomatikament."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Konfigurazzjoni"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Server CUPS remot"
-
-#: ../../printerdrake.pm_.c:71
-#, fuzzy
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"Għal servers CUPS remoti, m'għandekx bşonn tagħşel printer minn hawn; is-"
-"servers CUPS jinfurmaw lill-kompjuter tiegħek awtomatikament dwar il-"
-"printers li għandhom. Il-printers kollha li jaf bihom il-kompjuter tiegħek "
-"huma mniżżla taħt \"Printer impliċitu\". Agħżel liema printer minn dawn "
-"tridu jkun dak impliċitu u agħfas il-buttuna \"applika/erġa' aqra printers"
-"\". L-istess buttuna tintuĹźa biex tara printers ÄĄodda li saru disponibbli "
-"(tista' tieħu sa' 30 sekonda biex il-kompjuter jinduna bi printers ĥodda "
-"CUPS). Meta s-server CUPS qiegħed fuq network separat, trid tagħti l-"
-"indirizz IP tas-server CUPS, u possibbilment in-numru tal-port sabiex tikseb "
-"l-informazzjoni dwar il-printers minn dan is-server, altrimenti ħalli dawn l-"
-"elementi vojta."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Normalment, CUPS jiÄĄi konfigurat awtomatikament skond l-ambjent tan-network, "
-"sabiex tkun tista' taċċessa l-printers fuq network lokali. Jekk dan ma "
-"jaħdimx sew, neħħi l-marka minn \"Konfigurazzjoni awtomatika CUPS\" u rranĥa "
-"l-fajl /etc/cups/cupsd.conf manwalment. Tinsiex tirristartja 'll-CUPS wara "
-"(kmand: \"service cups restart\")."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "L-indirizz IP jidher xi ħaĥa hekk: 192.168.1.20"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "In-numru tal-port irid ikun sħiħ!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "Indirizz IP tas-server CUPS"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Port"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Konfigurazzjoni CUPS awtomatika"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Qed infittex apparat..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ittestja ports"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Ĺťid printer ÄĄdid"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Merħba għas-saħħar tal-konfigurazzoni tal-printer\n"
-"\n"
-"Dan is-saħħar iħallik tinstalla printers lokali jew remoti biex jintuşaw "
-"minn dan il-kompjuter kif ukoll kompjuters oħra fuq in-network.\n"
-"\n"
-"Huwa jitolbok l-informazzjoni kollha meħtieĥa biex tissettja l-printer u "
-"jagħtik aċċess għad-drivers tal-printers kollha disponibbli, l-għażliet tad-"
-"driver, u t-tipi ta' konnessjoni."
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Printer lokali"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Merħba għas-Saħħar tal-Printers\n"
-"\n"
-"Dan is-saħħar jgħinek tinstalla l-printer/s imqabbda mal-kompjuter.\n"
-"\n"
-"Jekk jogħĥbok ara li l-printer huwa mqabbad mal-kompjuter u huwa mixgħul.\n"
-"Agħfas \"Li jmiss\" meta tkun lest, jew \"Ikkanċella\" jekk ma tridx "
-"tissettja l-printer/s issa.\n"
-"\n"
-"Innota li xi kompjuters jistgħu jikkraxxjaw waqt l-għarfien awtomatiku tal-"
-"printer. Tista' titfi l-għarfien awtomatiku biex tinstalla manwalment. Uşa "
-"\"ModalitĂ  esperti\" meta trid tissettja printer fuq kompjuter remot, jekk "
-"printerdrake ma jsibux awtomatikament."
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Għarfien awtomatiku tal-printers"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"Prosit! Il-printer tiegħek issa nstallat u konfigurat!\n"
-"\n"
-"Tista' tipprintja billi tuĹźa l-kmand \"Print\" minn ÄĄo l-programmi li tuĹźa "
-"(ĥeneralment taħt il-menu \"Fajl\" jew \"File\").\n"
-"\n"
-"Jekk tixtieq işşid, tneħħi jew tibdel l-isem ta' printer, jew jekk tixtieq "
-"tbiddel is-setings impliċiti (daqs tal-karta, kwalità eċċ), agħżel \"Printer"
-"\" mis-sezzjoni \"Ħardwer\" taċ-Ċentru tal-Kontroll Mandrake."
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Għarfien awtomatiku tal-printers"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"PrinterDrake huwa kapaċi jagħraf printers imqabbda lokalment mal-port "
-"parallell jew USB, imma nnota li fuq xi sistema l-għarfien awtomatiku KAPAĊI "
-"JWAČČAL IS-SISTEMA U JIRRIŝULTA F'FILESYSTEM KORROTT. Għalhekk tagħmel dan "
-"b'riskju tiegħek.\n"
-"\n"
-"Trid li tkompli bl-għarfien awtomatiku tal-printers?"
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Għarfien awtomatiku"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Issettja printer manwalment"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "Instab %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Printer fuq port parallell \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "Printer USB \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Ma nstab ebda printer lokali. Biex tinstalla printer manwalment daħħal l-"
-"isem tal-port jew fajl fl-input. (Portijiet parallelli: /dev/lp0=LPT1, /dev/"
-"lp1=LPT2 eċċ; printers USB: /dev/usb/lp0, /dev/usb/lp1 eċċ)"
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Trid iddaħħal isem ta' port jew fajl!"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Ebda printer lokali ma nstab!\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Printers tan-network jistgħu jiĥu ssettjati biss wara l-installazzjoni. "
-"Agħżel \"Ħardwer\" u mbgħad \"Printer\" miċ-Ċentru tal-Kontroll Mandrake."
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Biex tinstalla printer min-network, klikkja \"Ikkanċella\", aqleb għall-"
-"modalità esperti, u erĥa' agħşel \"ŝid printer ĥdid\"."
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"Dan huwa l-printer li nstab awtomatikament. Jekk dan m'hux il-printer li "
-"ridt tissettja, daħħal isem ta' port/fajl fil-linja tal-input."
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"Din hija lista tal-printers kollha li nstabu awtomatikament. Jekk jogħĥbok "
-"agħşel il-printer li trid tissettja, jew daħħal isem ta' port/fajl fil-linja "
-"tal-input."
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-"Dan huwa l-printer li nstab awtomatikament. Il-konfigurazzjoni tal-printer "
-"issir awtomatikament. Jekk il-printer ma ngħarafx sew, jew jekk tippreferi "
-"konfigurazzjoni personalizzata, ixgħel \"Konfigurazzjoni manwali\"."
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Din hija lista tal-printers kollha li nstabu awtomatikament. Jekk jogħĥbok "
-"agħşel il-printer li trid tissettja. Il-konfigurazzjoni tal-printer issir "
-"awtomatikament. Jekk il-printer ma ngħarafx sew, jew jekk tippreferi "
-"konfigurazzjoni personalizzata, ixgħel \"Konfigurazzjoni manwali\"."
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Jekk jogħĥbok agħşel il-port fejn huwa mqabbad il-printer, jew agħşel isem "
-"ta' port/fajl fil-linja ta' kmand."
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Jekk jogħĥbok agħşel il-port ma' fejn hu mqabbad il-printer."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (portijiet parallelli: /dev/lp0, /dev/lp1 huma ekwivalenti għal LPT1, LPT2 "
-"eċċ. L-ewwel printer USB = /dev/usb/lp0, it-tieni printer USB = /dev/usb/lp1 "
-"eċċ )"
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Trid tagħşel/iddaħħal printer/apparat!"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Konfigurazzjoni manwali"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-"Il-printer tiegħek huwa apparat multi-funzjonali tal-HP (OfficeJet, PSC, "
-"PhotoSmart, LaserJet 1100/1200/1220/3200/3300 bi skaner)?"
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "Qed ninstalla l-pakkett HPOJ..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Qed niċċekkja u nikkonfigura l-apparat HPOJ..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Qed ninstalla pakkett SANE..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Skannjar fuq apparat multi-funzjoni HP"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "Qed nagħmel il-port tal-printer disponibbli għal CUPS..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Qed jinqara d-database ta' printers"
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Għaşliet għal printer lpd remot"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Biex tipprintja fuq printer remot lpd, trid tagħti l-isem tal-kompjuter kif "
-"ukoll l-isem tal-printer fuq dak is-server."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Isem tal-kompjuter remot"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Isem tal-printer remot"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Isem tal-kompjuter remot nieqes!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Isem tal-printer remot nieqes!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Għaşliet għal printer SMB (Windows 9x/NT)"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Biex tipprintja fuq printer SMB, trid tagħti l-isem SMB tal-kompjuter (li\n"
-"jista' jkun differenti mill-isem TCP/IP), u possibbilment l-indirizz IP "
-"tiegħu, kif ukoll l-isem tal-printer (share name) li trid taqbad miegħu, u "
-"possibbilment l-isem u password tal-user li trid taqbad bih, u informazzjoni "
-"dwar il-workgroup."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Isem tal-kompjuter SMB"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP tas-server SMB"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Isem tal-printer (share)"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Workgroup"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Trid tagħti l-isem jew l-indirizz IP tas-server"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Isem tal-printer (share name) nieqes!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Għaşliet tal-printer NetWare"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Biex tipprintja fuq printer NetWare, trid tagħti l-isem Netware tal-"
-"kompjuter (li\n"
-"jista' jkun differenti mill-isem TCP/IP), kif ukoll l-isem tal-kju ta' "
-"printjar li tixtieq tuĹźa, u isem u password tal-user jekk hemm bĹźonn."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Server tal-printer"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Isem tal-Kju tal-Ipprintjar"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "Isem tas-server NCP nieqes!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "Isem tal-kju NCP nieqes!"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "Għaşliet Printer TCP/Socket"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Biex tipprintja fuq printer TCP jew socket, trid tissupplixxi l-isem tal-"
-"printer u possibbilment in-numru tal-port. Fuq servers HP JetDirect in-numru "
-"tal-port ġeneralment huwa 9100. Fuq printers oħra dan ivarja. Iċċekkja l-"
-"manwal tal-printer."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Isem tal-printer"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "isem tal-printer nieqes"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "URI tal-printer"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Tista' tispeċifika l-URI tal-printer direttament. Il-URI irid isegwi l-"
-"format tal-CUPS jew tal-Foomatic. Innota li mhux kull tip ta' URI huwa "
-"aċċettat mill-spoolers kollha."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Trid iddaħħal URI validu!"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Kull printer jeħtieĥ isem, (eş, \"printer\"). Id-deskrizzjoni u post "
-"m'għandhomx bşonn jimtlew. Huma kummenti għall-uşu tiegħek."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Isem tal-printer"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Deskrizzjoni"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Post"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Qed nipprepara d-database tal-printers..."
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Isem tal-printer remot"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Dan tajjeb?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Agħşel user manwalment"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Għaşla tal-mudell tal-printer"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Liema mudell ta' printer għandek?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Jekk jogħġbok iċċekkja li PrinterDrake sab il-mudell tal-printer tiegħek "
-"sew. Jekk il-mudell immarkat m'huwiex tajjeb jew qiegħed fuq \"printer dirett"
-"\" ara jekk issibx il-mudell int fil-lista."
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "Konfigurazzjoni OKI WinPrinter"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Konfigurazzjoni inkjet Lexmark"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Setings impliċiti tal-printer\n"
-"\n"
-"Aċċerta li d-daqs tal-paġna u t-tip ta' inka/printing (jekk hemm) kif ukoll "
-"il-konfigurazzjoni tal-ħardwer tal-printer (memorja, unità dupleks, kxaxen "
-"extra) huma settjati sew. Innota li jekk tagħşel kwalità/reşoluzzjoni għolja "
-"ħafna il-printing jista' jdum ħafna işjed u/jew juşa işjed inka."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Għaşla %s trid tkun numru sħiħ!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Għaşla %s trid tkun numru!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Għaşla %s barra mil-limiti!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Tixtieq tissettja dan il-printer (\"%s\")\n"
-"bħala l-printer impliċitu?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "PaÄĄni biex tittestja"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Jekk jogħĥbok agħşel il-paĥni li trid tipprintja biex tittestja.\n"
-"Nota: Il-paĥna fotografika tista' tieħu ħafna ħin biex tlesti, u fuq laser "
-"printers bi ftit memorja tista' anqas tipprintja. F'ħafna kaşi huwa "
-"bişşejjed li tipprintja l-paĥna standard."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Ebda paÄĄni ta' testjar"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Printja"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "PaÄĄna standard"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "PaÄĄna alternattiva (Letter)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "PaÄĄna alternattiva (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "PaÄĄna fotografika"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "Tipprintjax paĥna għal test"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Qed nipprintja paÄĄna/i ta' test..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Il-paĥna/i intbagħatu fuq il-printer.\n"
-"Jista jgħaddi xi ftit ħin qabel jibda' l-printjar.\n"
-"Status tal-printjar:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Il-paĥna/i intbagħatu fuq il-printer.\n"
-"Jista jgħaddi xi ftit ħin qabel jibda' l-printjar.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "ÄŚadem sewwa?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Printer dirett"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Biex tipprintja fajl mil-linja ta' kmand (terminal), tista' tuĹźa l-kmand \"%"
-"s <fajl>\" jew programm grafiku: \"xpp <fajl>\" jew \"kprinter <fajl>\". Il-"
-"programmi grafiċi jħalluk tagħżel il-printer jew tbiddel is-setings "
-"faċilment.\n"
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Dan il-kmand jista' wkoll jintuĹźa fl-element \"Printing command\" tal-window "
-"tal-ipprintjar ta' ħafna programmi, imma iddaħħalx l-isem tal-fajl hemm għax "
-"dak jissupplixxih il-programm.\n"
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"Il-kmand \"%s\" iħallik ukoll tbiddel is-setings għal xogħol ta' printjar "
-"partikulari. Sempliċiment żid is-setings li trid fuq il-linja ta' kmand, eż "
-"\"%s <file>\". "
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"Biex tikseb lista ta' għaşliet disponibbli għal dan il-printer, aqra l-lista "
-"li tidher taħt, jew agħfas il-buttuna \"Lista ta' għaşliet tal-printer\". %"
-"s.\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Dawn huma l-għaşliet disponibbli għal dan il-printer:\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Biex tipprintja fajl mil-linja ta' kmand (terminal) uĹźa l-kmand \"%s <fajl>"
-"\".\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Dan il-kmand jista' wkoll jintuĹźa fl-element \"Printing command\" tal-window "
-"tal-ipprintjar ta' ħafna programmi, imma iddaħħalx l-isem tal-fajl hemm għax "
-"dak jissupplixxih il-programm.\n"
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Biex tikseb lista ta' għaşliet disponibbli għal dan il-printer agħfas il-"
-"buttuna \"Lista ta' għaşliet tal-printer\"."
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Biex tipprintja fajl mil-linja ta' kmand (terminal) uĹźa l-kmand \"%s <fajl>"
-"\" jew \"%s <fajl>\".\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Tista' wkull tuża l-interfaċċja grafika \"xpdq\" biex tissettja l-għażliet u "
-"biex tieħu ħsieb xogħlijiet ta' printjar.\n"
-"Jekk qed tuşa l-KDE bħala ambjent tad-desktop, għandek issib ikona fuq id-"
-"desktop li tħallik twaqqaf il-printjar kollu, per eşempju jekk jeħlulek il-"
-"karti.\n"
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"Il-kmandijiet \"%s\" u \"%s\" iħalluk ukoll tbiddel is-setings għal xogħol "
-"ta' printjar partikulari. Sempliċiment żid is-setings li trid fuq il-linja "
-"ta' kmand, eĹź \"%s <file>\".\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Agħlaq"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Printjar/skannjar fuq \"%s\""
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Printjar fuq printer \"%s\""
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Lista ta' għaşliet tal-printer"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Qed jinqara informazzjoni dwar printer..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Trasferixxi konfigurazzjoni tal-printer"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Tista' tikkopja l-konfigurazzjoni tal-printer minn spooler %s għal %s, l-"
-"ispooler attwali. L-informazzjoni kollha tal-konfigurazzjoni (isem tal-"
-"printer, deskrizzjoni, post, tip ta' konnessjoni u setings impliċiti) jiġu "
-"trasferiti, imma xogħlijiet eşistenti ta' printjar ma jiĥux trasferiti.\n"
-"Mhux il-kjus kollha jistgħu jiĥu trasferiti minħabba dawn ir-raĥunijiet:\n"
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS ma jaċċettax printers fuq servers Novell jew servers li jibgħatu d-data "
-"lill kmand \"free format\".\n"
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ jaċċetta biss printers lokali, printers remoti LPD, u printers Socket/"
-"TCP.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD u LPRng ma jaċċettawx printers IPP.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Apparti minn dan, kjus li ma nħalqux b'dan il-programm jew \"foomatic-"
-"configure\" ma jistgħux jiĥu trasferiti."
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Ukoll, printer ikkonfigurati bil-fajls PPD provduti mill-manufatturi jew bi "
-"drivers CUPS nativi ma jistgħux jiĥu trasferiti."
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Immarka l-printers li trid tittrasferixxi u klikkja \"Trasferixxi\"."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Tittrasferixxix printers"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Trasferixxi"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Printer jismu \"%s\" diĥà jeşisti taħt %s.\n"
-"Klikkja \"trasferixxi\" biex tħassar li hemm.\n"
-"Tista' wkoll tagħtih isem ĥdid jew taqbşu."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "L-isem tal-printer jista' jkun fih biss ittri, numri, u underscore"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"il-printer \"%s\" diÄĄĂ  jeĹźisti. \n"
-"Trid tħassar il-konfigurazzjoni tiegħu?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Isem tal-printer ÄĄdid"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "Qed nittrasferixxi %s..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Int ittrasferixxejt il-printer li kien impliċitu qabel (\"%s\"). Trid li "
-"jerġa' jkun il-printer impliċitu taħt is-sistema l-ġdida %s?"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Qed nerÄĄa' naqra' l-printers..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Konfigurazzjoni ta' printer remot"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Qed nibda' n-network..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Ikkonfigura n-network issa"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "FunzjonalitĂ  tan-network m'hix konfigurata"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"Qed tipprova tissettja printer remot. Dan għandu bżonn aċċess għan-network, "
-"imma s'issa ma ĥietx issettjata n-network. Jekk tkompli minngħajr network, "
-"għandu mnejn ma tkunx tuşa l-printer li qed tissettja issa. Kif trid "
-"tipproċedi?"
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Kompli kkonfigura mingħajr network"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-"Il-konfigurazzjoni tan-network li saret waqt l-installazzjoni ma tistax "
-"tittella' issa. Jekk jogħġbok iċċekkja jekk in-network isirx aċċessibbli "
-"wara li tirristartja s-sistema, imbgħad ikkoreġi l-konfigurazzjoni miċ-"
-"Ċentru tal-Kontroll Mandrake, taħt is-sezzjoni \"Network u Internet\"/"
-"\"Konnessjoni\", u wara ssettja l-printer, mill-istess Ċentru tal-Kontroll, "
-"sezzjoni \"ÄŚardwer\"/\"Printer\"."
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"L-aċċess għan-network ma kienx qed jaħdem u ma setax jittella'. Jekk "
-"jogħġbok iċċekkja l-konfigurazzjoni tal-ħardwer, imbgħad erġa' pprova "
-"kkonfigura l-printer remot."
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Qed nirristartja s-sistema ta' printjar..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "għoli"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "paranojd"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Qed ninstalla sistema ta' printjar taħt livell ta' sigurtà %s"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Se tinstalla s-sistema ta' printjar %s fuq sistema li għandha l-livell ta' "
-"sigurtĂ  %s.\n"
-"\n"
-"Din is-sistema ta' printjar tħaddem daemon (proċess fl-isfond) li jistenna' "
-"xogħlijiet ta' printjar u jieħu ħsiebhom. Dan id-daemon huwa wkoll "
-"aċċessibbli minn kompjuters oħra fuq in-network għalhekk huwa possibbli għal "
-"attikki fuqu. Għalhekk, id-daemons li jittellgħu f'dan il-livell huma ftit u "
-"magħşula sew.\n"
-"\n"
-"Ĺťgur li trid tikkonfigura l-ipprintjar fuq dan il-kompjuter?"
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Qed nistartja s-sistema ta' printjar waqt ix-xegħil"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Is-sistema ta' printjar (%s) mhux se jittella' awtomatikament meta tixgħel "
-"il-kompjuter.\n"
-"\n"
-"Huwa possibbli t-tlugħ awtomatiku ĥie mitfi meta bdilt il-livell ta' sigurtà "
-"ogħla, peress li s-sistema ta' printjar huwa punt fejn possibbilment isiru "
-"attakki.\n"
-"\n"
-"Trid li terĥa' tixgħel it-tlugħ awtomatiku tas-sistema ta' printjar?"
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Qed niċċekkja s-softwer li hemm installat..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "Qed inneħħi LPRng..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "Qed inneħħi LPD..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Agħşel \"spooler\" tal-printer"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Liema sistema ta' printjar (spooler) tixtieq tuĹźa?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Qed nikkonfigura l-printer \"%s\"..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "Qed ninstalla Foomatic..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Għaşliet tal-printer"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "Qed jiÄĄi preparat PrinterDrake..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Qed nikkonfigura l-printer \"%s\"..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Tixtieq tissettja l-printing?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Sistema ta' pprintjar: "
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Dawn huma l-printers ikkonfigurati. Klikkja-djoppju fuq printer biex "
-"tbiddillu l-konfigurazzjoni, biex tissettjah bħala printer impliċitu, jew "
-"tara informazzjoni dwaru."
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Dawn huma l-printers ikkonfigurati. Klikkja-djoppju fuq printer biex "
-"tbiddillu l-konfigurazzjoni, biex tissettjah bħala printer impliċitu, jew "
-"tara informazzjoni dwaru."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "ErÄĄa' aqra l-lista ta' printers (biex issib printers remoti CUPS)"
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Ikkonfigura sistema tal-ipprintjar"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "ModalitĂ  normali"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Trid tikkonfigura dan il-printer?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Biddel il-konfigurazzjoni tal-printer"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Printer %s\n"
-"Xi trid tagħmel b'dan il-printer?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "Agħmel dan!"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Tip ta' konnessjoni tal-printer"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Isem, deskrizzjoni u fejn qiegħed il-printer"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Ditta, mudell u driver tal-printer"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Ditta u mudell tal-printer"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Nissettja dan bħala l-printer impliċitu"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Nipprintja paÄĄni biex nittestja"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Inkun naf kif nuĹźa dan il-printer"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Neħħi printer"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Qed inneħħi l-printer antik \"%s\"..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Printer impliċitu"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Il-printer \"%s\" issa ssettjat bħala printer impliċitu"
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "ŝgur li trid tneħħi l-printer \"%s\"?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Qed jitneħħa printer \"%s\"..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Konfigurazzjoni tal-proxy"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Merħba għall-għodda tal-konfigurazzjoni tal-proxy.\n"
-"\n"
-"Hawn, tista' tissettja l-proxies ftp u http, bil-\n"
-"login u password jew minngħajrhom.\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Jekk jogħĥbok imla' l-informazzjoni dwar il-proxy http.\n"
-"ÄŚallihom vojta jekk ma tridx proxy http."
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "port"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "Url irid jibda' b' \"http:\""
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Il-parti tal-port trid tkun numerika"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Jekk jogħĥbok imla' l-informazzjoni dwar il-proxy ftp.\n"
-"ÄŚallihom vojta jekk ma tridx proxy ftp."
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Url irid jibda' b' \"ftp:\""
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Jekk jogħĥbok daħħal il-login u password tal-proxy, jekk hemm.\n"
-"ÄŚallihom vojta jekk ma tridx login/passwd"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "login"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "password"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "erÄĄa ttajpja password"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Il-passwords ma jaqblux. ErÄĄa' pprova!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Ma nistax inĹźid partizzjoni fuq RAID _formattjat_ md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Ma nistax nikteb fajl %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid falla"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid falla (forsi raidtools m'hux installat?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "M'hemmx bişşejjed partizzjonijiet għal RAID livell %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "ÄŚaddem is-sistema tal-awdjo ALSA (Advanced Linux Sound Architecture)"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron iħaddem kmandijiet perjodikament."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd jintuża biex tiċċekkja l-istatus tal-batterija ta' laptop u żżomm\n"
-"rikordju fis-syslog. Jista jintuĹźa wkoll biex jintefa' awtomatikament\n"
-"beta l-batterija titbaxxa wisq."
-
-#: ../../services.pm_.c:18
-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ħaddem kmandijiet li jiġu appuntati mill-kmand \"at\" fil-ħin speċifikat\n"
-"meta tħaddem \"at\", u jħaddem programmi meta t-tagħbija tas-sistema tkun\n"
-"baxxa bişşejjed."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron huwa programm standard tal-UNIX li jħaddem programmi speċifikati \n"
-"mill-user f'ħinijiet speċifiċi. Vixie cron iżid numru ta' fattizzi lill-\n"
-"cron başiku tal-UNIX, inkluş sigurtà aħjar u konfigurazzjoni işjed "
-"b'saħħitha."
-
-#: ../../services.pm_.c:23
-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 jippermetti l-użu tal-maws fi programmi non-grafiċi bħall-Midnight\n"
-"Commander. Jippermetti wkoll ikkopjar ta' test u menus popup fil-konsol."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake iħaddem inkjesta tal-ħardwer, u jista' jsib u \n"
-"jikkonfigura apparat ĥdid li twaħħal."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr "Apache huwa server tal-web. Huwa jista' joffri fajls HTML u CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Id-daemon tal-internet \"superserver\" (magħruf bħala inetd) itella'\n"
-"varjetà ta' servizzi oħra tal-internet skond il-ħtieĥa. Huwa responsabbli\n"
-"li jtella' diversi servizzi, inkluş telnet, ftp, rsh u rlogin. Jekk tneħħi\n"
-"lill-inetd tkun neħħejt is-servizzi kollha tiegħu."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Čaddem filtering ta' pakketti għall-kernel verşjoni 2.2 tal-Linux,\n"
-"biex tissettja firewall biex tipproteÄĄi l-kompjuter minn attakki \n"
-"min-network"
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Dan il-pakkett itella' t-tqassim tat-tastiera kif konfigurat f'\n"
-"/etc/sysconfig/keyboard. Dan jista' jiÄĄi ssettjat bil-programm kbdconfig.\n"
-"Dan għandu jibqa' ssettjat għal ħafna magni."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"RiÄĄenerazzjoni awtomatika tal-headers tal-kernel ÄĄewwa\n"
-"/boot għal /usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Għarfien u konfigurazzjoni ta' apparat ĥdid meta tixgħel."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Il-programm Linuxconf ĥieli jagħmel diversi xogħlijiet waqt li qed\n"
-"jitla' l-kompjuter biex imantni l-konfigurazzjoni."
-
-#: ../../services.pm_.c:43
-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 huwa daemon tal-ipprintjar li huwa meħtieĥ biex jaħdem sew l-lpr.\n"
-"Huwa başikament server li jqassam xogħol ta' pprintjar lill-printer/s."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual Server, li jintuĹźa biex tibni servers kbar u \n"
-"effiċjenti ħafna."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) huwa \"Domain Name Server\" (DNS) li jirrisolvi l-indirizz IP "
-"minn isem ta' kompjuter."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Jimmonta u jiĹźmonta l-filesystems kollha NFS (Unix/Linux), \n"
-"SMB (LANmanager/Windows) jew NCP (Netware)."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Itella' jew iwaqqaf l-interfaċċji kollha tan-network li qegħdin \n"
-"konfigurati biex jitilgħu meta tixgħel."
-
-#: ../../services.pm_.c:52
-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 huwa protokoll popolari għal qsim ta' fajls fuq networks TCP/IP. \n"
-"Dan is-servizz jipprovdi funzjonalitĂ  ta' server NFS, li jiÄĄi konfigurat \n"
-"mill-fajl /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS huwa protokoll popolari għal qsim ta' fajls fuq networks \n"
-"TCP/IP. Dan il-modulu jipprovdi faċilità li ssakkar fajls bl-NFS."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Awtomatikament ixgħel in-\"numlock\" taħt il-konsol u XFree \n"
-"meta tixgħel"
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Jippermetti l-uĹźu tal-Oki4w \"win-printer\" jew kompatibbli"
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"Il-PCMCIA normalment jintuşa għal kards tan-network jew modems fuq \n"
-"kompjuters laptop. Dan ma jittellax jekk ma jkunx konfigurat għalhekk \n"
-"m'hux problema jekk tħallih fuq kompjuters li m'għandhomx bşonnu."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Il-portmapper jimmaniÄĄÄĄja konnessjonijiet RPC, li jintuĹźaw minn \n"
-"protokolli bħal NFS u NIS. Is-server portmap irid ikun qed jaħdem fuq\n"
-"kompjuters li jaĥixxu bħala servers għal protokolli li juşaw il-\n"
-"mekkaniĹźmu RPC."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix huwa aġent tat-trasport tal-imejl, ċioè programm li jgħaddi imejls "
-"minn kompjuter għall-ieħor."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Jikteb u jirrestawra blokka ta' entropija għall-ĥenerazzjoni ta' \n"
-"numri bil-polza iĹźjed randomi."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Jassenja apparat \"raw\" lill apparat \"block\" (bħal partizzjoni tal-ħard "
-"disk), għal programmi bħall-Oracle"
-
-#: ../../services.pm_.c:71
-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 ""
-"Id-daemon routed jippermetti lit-tabella tar-\"routing\" li tiÄĄi\n"
-"aÄĄÄĄornata awtomatikament bil-protokoll RIP. Filwaqt li l-protokoll RIP\n"
-"huwa komuni fuq networks şgħar, huma meħtieĥa protokolli ta' routing\n"
-"iĹźjed sofistikati fuq networks kumplikati."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Il-protokoll rstat jippermetti users fuq network li jiksbu\n"
-"informazzjoni dwar l-effiċjenza ta' kull magna fuq dan in-network."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Il-protokoll rusers jippermetti lill users fuq network li jidentifikaw\n"
-"min qiegħed illoggjat fuq magni oħra."
-
-#: ../../services.pm_.c:78
-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 ""
-"Il-protokoll rwho jippermetti lill user remot li jikseb lista \n"
-"tal-users kollha li qegħdin konnessi mal-kompjuter (simili għal finger)"
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "ÄŚaddem is-sistema awdjo fuq il-kompjuter"
-
-#: ../../services.pm_.c:81
-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 huwa faċilità li permezz tagħha d-daemons jistgħu iżommu\n"
-"log ta' messaĥĥi. Dejjem huwa rakkomandat li tħaddem 'is-syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Tella' d-drivers għall-apparat usb"
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Itella' l-\"X Font Server\" (dan huwa meħtieĥ biex jaħdem l-XFree)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Agħşel liema servizzi għandhom jittellgħu awtomatikament meta tixgħel"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Printjar"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Qsim ta' fajls"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "Sistema"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Amministrazzjoni remota"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Server Database"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Servizzi: %d imtella' għal %d reĥistrati"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Servizzi"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "imtella'"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "imwaqqaf"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Servizzi u daemons"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"M'hemmx iĹźjed informazzjoni\n"
-"dwar dan l-apparat, jiddispjaċini."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Malli tixgħel"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Ibda"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Ieqaf"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Grazzi talli għaşilt Mandrake Linux 8.2"
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr "Merħba għad-dinja Sors Miftuħ"
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-"Is-suċċess ta' MandrakeSoft huwa bbażat fuq il-prinċipju ta' Softwer Ħieles. "
-"Is-sistema operattiva ĥdida tiegħek hija frott il-ħidma u koperazzjoni min-"
-"naħa tal-kommunità dinjija tal-Linux."
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "Ingħaqad mad-dinja ta' Softwer Čieles"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-"Sir af lill-kommunità Sors Miftuħ u sir membru. Tgħallem, għallem u għin "
-"lill-oħrajn billi tingħaqad fid-diversi fora li ssib fuq il-paĥni tal-web "
-"għall-kommunità tagħna."
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet u MessaÄĄÄĄi"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-"Mandrake Linux 8.2 jipprovdi l-aqwa softwer biex taċċessa kollux li "
-"joffrilek l-internet. BrawĹźja l-web u ara animazzjonijiet bil-Mozilla u "
-"Konqueror, ibgħat imejl u organizza l-informazzjoni personali tiegħek bl-"
-"Evolution u KMail, u ħafna işjed!"
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedia u Grafika"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-"Mandrake Linux 8.2 iħallik tħaddem il-kompjuter multimedia tiegħek sal-"
-"limiti! Uşa l-aħħar programmi biex tisma' muşika u awdjo, editja u organizza "
-"ritratti u stampi, ara TV u videos, u ħafna işjed"
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Ĺťviluppar"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-"Mandrake Linux 8.2 huwa l-aqwa pjattaforma għall-işviluppar. Skopri l-qawwa "
-"tal-kompilatur GNU gcc kif ukoll l-aqwa ambjenti ta' şviluppar Sors Miftuħ."
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Ċentru tal-Kontroll Mandrake"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-"Iċ-Ċentru tal-Kontroll Mandrake Linux huwa post wieħed minn fejn tista' "
-"tippersonalizza u tikkonfigura s-sistema Mandrake tiegħek"
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "User interfaces"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-"Mandrake Linux 8.2 jipprovdilek 11-il ambjent tad-destkop grafiku mnejn "
-"tagħşel, inkluş GNOME 1.4, KDE 2.2.2, WindowMaker 0.8 u oħrajn"
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Programmi għal Server"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-"Ibdel il-kompjuter tiegħel f'server b'saħħtu bi ftit azzjonijiet tal-maws: "
-"Servers tal-web, imejl, firewall, router, fajls u printjar, ..."
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Logħob"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-"Mandrake Linux 8.2 joffri l-aħjar logħbiet b'sors miftuħ - arcade, azzjoni, "
-"karti, sports, strateÄĄija..."
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-"Tixtieq titgħallem il-Linux b'mod sempliċi, malajr u b'xejn? MandrakeSoft "
-"jipprovdu stħarriĥ fuq il-Linux, kif ukoll mezz biex tittestja l-progress "
-"tiegħek fuq MandrakeCampus - iċ-ċentru ta' taħriġ elettroniku tagħna"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-"Għajnuna ta' kwalità mill-Komunità Linux, u minngħand MandrakeSoft, huwa "
-"pass 'il bogħod. U jekk int diĥà veteran tal-Linux, tista' ssir \"Espert\" u "
-"taqsam it-tagħlim tiegħek fil-website ta' sapport tagħna."
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-"Għall-proĥetti kollha tal-IT tiegħek, il-konsulenti tagħna lesti janalizzaw "
-"il-ħtiĥijiet tiegħek u joffrulek soluzzjoni personalizzata. Ibbenefika mill-"
-"esperjenza vasta ta' MandrakeSoft bħala produttur tal-Linux biex tipprovdi "
-"soluzzjoni sħiħa alternattiva għad-ditta tiegħek"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-"Varjetà sħiħa ta' soluzzjonijiet bil-Linux, kif ukoll offerti speċjali fuq "
-"il-prodotti huma disponibbli online fuq il-ħanut elettroniku tagħna."
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-#, fuzzy
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-"Għal işjed tagħrif dwar is-servizzi professjonali ta' MandrakeSoft kif ukoll "
-"offerti kummerċjali, jekk jogħġbok ċemplilna fuq in-numru \"toll-free\" li "
-"tara hawn:"
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Qed ninstalla pakketti..."
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Ma nistax naqra t-tabella tal-partizzjoni - hija mħarbta wisq :(\n"
-"Ča nipprova nkompli nneħħi partizzjonijet ħşiena"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Problema!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Ma nistax insib il-fajl \"image\" meħtieĥ \"%s\""
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Konfiguratur Awto-Installazzjoni"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Int issa se tikkonfigura floppy Awto-installazzjoni. Din il-faċilità tista' "
-"tkun perikoluĹźa u trid tintuĹźa bil-galbu.\n"
-"\n"
-"B'din il-faċilità tista' tirrepeti l-installazzjoni li għamilt fuq dan il-"
-"kompjuter, filwaqt li tiġi mistoqsi dwar ċerti passi biex tbiddillhom il-"
-"valur.\n"
-"\n"
-"Għal sigurtà massima, il-partizzjoni u formattjar tal-ħard disk qatt ma "
-"jsiru awtomatikament, tagħşel x'tagħşel waqt l-installazzjoni tal-"
-"kompjuter.\n"
-"\n"
-"Trid tkompli?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Passi tal-Konfigurazzjoni Awtomatika"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Jekk jogħĥbok agħşel għal kull pass, jekk tridhiex tkun bħal din l-"
-"installazzjoni, jew tkunx manwali"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Merħba.\n"
-"\n"
-"Il-parametri għall-awto-installazzjoni jinstabu fil-parti tax-xellug."
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Prosit!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Il-floppy ÄĄie ÄĄenerat kif mitlub.\n"
-"Issa tista' tirrepeti l-installazzjoni."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Awto-installazzjoni"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Ĺťid element"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Neħħi l-aħħar element"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" Rapport DrakBackup\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Rapport tad-daemon DrakBackup\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" Dettalji tar-Rapport DrakBackup\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "progress totali"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "ÄŚu backup ta' fajls tas-sistema..."
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "Fajls ta' backup fil-ħard disk..."
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "ÄŚu backup ta' fajls tal-users..."
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Progress tal-backup lill-ħard disk..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Ču backup ta' fajls oħrajn..."
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"lista ta' fajls mibgħuta bl-FTP : %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) Problema fil-konnessjoni FTP. Ma kienx possibbli nibgħat il-fajls bl-"
-"FTP.\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Problema biex jintbagħat imejl. \n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "Għaşla ta' fajls"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr "Agħşel fajls jew direttorju u klikkja \"ŝid\""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Jekk jogħĥbok immarka l-għaşliet kollha li għandek bşonn.\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Dawn l-għaşliet jieħdu backup u jirrestawraw il-fajls kollha tad-direttorju /"
-"etc.\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "ÄŚu backup tal-fajls tas-sistema (direttorju /etc)"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Uşa backups inkrementali (tħassarx l-antiki)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Tinkludix fajls kritiċi (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"B'din l-għaşla tkun tista' tirrestawra kwalinkwa verşjoni\n"
-"tad-direttorju /etc."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr "Jekk jogħĥbok agħşel il-users kollha li trid tinkludi f'dan il-backup."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "Tinkludix il-cache tal-browser"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Uşa backups inkrementali (tħassarx l-antiki)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Neħħi l-magħşula"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "Users"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Uşa konnessjoni FTP għall-backup"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Jekk jogħĥbok daħħal l-isem jew IP tal-kompjuter."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-"Jekk jogħĥbok daħħal id-direttorju fejn\n"
-" trid tpoÄĄÄĄi l-backup fuq il-kompjuter."
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Jekk jogħĥbok daħħal il-login"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Jekk jogħĥbok daħħal il-password"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Ftakar dan il-password"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "Konnessjoni FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Konnessjoni Ĺźgura"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "Uşa CD/DVDROM għall-backup"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Jekk jogħĥbok agħşel id-daqs tas-CD"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "Jekk jogħĥbok immarka hawn jekk qed tuşa medja CDRW"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Jekk jogħĥbok immarka hawn jekk trid tħassar is-CDRW qabel"
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Jekk jogħĥbok immarka hawn jekk trid tinkludi\n"
-" boot tal-installazzoni fuq is-CD."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Jekk jogħĥbok daħħal l-isem tal-apparat CD Writer\n"
-" eĹź: 0,1,0"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "Uşa tape għall-backup"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "Jekk jogħĥbok daħħal l-isem tal-apparat għall-backup"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Jekk jogħĥbok daħħal id-daqs massimu\n"
-" permess għal DrakBackup"
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Jekk jogħĥbok daħħal id-direttorju fejn tikteb:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Uşa kwota għall-fajls tal-backup."
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "Network"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "ÄŚard disk / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "kull siegħa"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "kuljum"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "kull ĥimgħa"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "kull xahar"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "UĹźa daemon"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"Jekk jogħĥbok agħşel l-intervall\n"
-"ta' ħin għal kull backup"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"Jekk jogħĥbok agħşel\n"
-"il-medja għall-backup."
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Uşa ħard disk bid-daemon"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "UĹźa FTP bid-daemon"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Aċċerta li d-daemon \"cron\" huwa nkluż fis-servizzi."
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "Ibgħat rapport bl-imejl wara kull backup lill:"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "Xiex"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "Fejn"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "Meta"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "Işjed għaşliet"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "Konfigurazzjoni DrakBackup"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Jekk jogħĥbok agħşel fejn trid tieħu backup"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "fuq ħard disk"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "fuq in-network"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Jekk jogħĥbok agħşel ta' xiex trid tieħu backup"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "ÄŚu backup tas-sistema"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "ÄŚu backup tal-users"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Agħşel user manwalment"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Sorsi tal-backup: \n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Fajls tas-sistema:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Fajls tal-user:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Fajls oħrajn:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- Ikteb fuq ħard disk fid-direttorju : %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- Ikteb bl-FTP fuq kompjuter : %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t isem ta' user: %s\n"
-"\t\t fuq direttorju: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Għaşliet:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tTinkludix fajls tas-sistema\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tBackups juĹźaw tar u bzip2\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tBackups juĹźaw tar u gzip\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- Daemon (%s) include :\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t-ÄŚard disk.\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-CDROM.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Network bl-FTP.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Network bl-SSH.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Ebda konfigurazzjoni, agħşel Saħħar jew Avvanzat\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Lista ta' informazzjoni x'tirrestawra:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Lista ta' informazzjoni korrotta:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "Jekk jogħĥbok neħħiha d-darba li jmiss."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "Fajls tal-backup ÄĄew korrotti"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " L-informazzjoni kollha magħşula ĥiet..........."
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " restawrata għal fuq %s "
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " Konfigurazzjoni ta' restawr....."
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "OK biex tirrestawra fajls oħra."
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Lista ta' users x'tirrestawra (l-iżjed data riċenti ta' kull user biss "
-"importanti)"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "ÄŚu backup ta' fajls tas-sistema qabel:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "jekk jogħĥbok agħşel data biex tirrestawra"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Uşa ħard disk għal backup"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Irrestawra mill-ħard disk"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "Jekk jogħĥbok daħħal id-direttorju fejn qegħdin il-backups"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Agħşel media ieħor biex tirrestawra minnu"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Media oħrajn"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "Irrestawra sistema"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Irrestawra users"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Irrestawra ieħor"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "Agħşel direttorju biex tirrestawra (minnflok / )"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Agħmel backup ĥdid qabel tirrestawra (għal backups inkrementali biss)"
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Neħħi d-direttorji tal-users qabel tirrestawra."
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Irrestawra l-backups kollha"
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "Restawr personalizzat"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Għajnuna"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "Ta' qabel"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Ikteb"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Ibni backup"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Irrestawra"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Li jmiss"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Jekk jogħĥbok ibni backup qabel tirrestawraha...\n"
-" jew ivverifika li d-direttorju huwa tajjeb."
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"Problema waqt sendmail\n"
-" ir-rapport ma ntbagħatx.\n"
-" Jekk jogħĥbok ikkonfigura s-sendmail"
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista ta' pakketti x'tinstalla"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Problema biex jintbagħat fajl bl-FTP.\n"
-" Jekk jogħĥbok ikkoreĥi l-konfigurazzjoni FTP."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Jekk jogħĥbok agħşel informazzjoni x'tirrestawra"
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Jekk jogħĥbok agħşel media għall-backup..."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Jekk jogħĥbok agħşel informazzjoni x'tikkopja"
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Ebda fajl ta' konfigurazzjoni ma nstab.\n"
-"Agħşel Saħħar jew Avvanzat."
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "Qed jiÄĄi Ĺźviluppat... stenna ftit."
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "ÄŚu backup tal-fajls tas-sistema"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "ÄŚu backup tal-fajls tal-users"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Ču backup ta' fajls oħrajn"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Progress totali"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "qed jintbagħatu fajls bl-FTP"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Qed nibgħat fajls..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "Lista ta' informazzjoni x'tinkludi fuq is-CDROM"
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Jekk jogħġbok daħħal il-veloċità tas-CD Writer"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Jekk jogħĥbok daħħal l-isem tal-apparat tas-CD Writer (eş, 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr ""
-"Jekk jogħĥbok ittikkja jekk trid tinkludi \"boot\" tal-installazzjoni fuq is-"
-"CD."
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "ÄŚu backup issa minn fajl ta' konfigurazzjoni"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Ara Konfigurazzjoni Backup."
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "Konfigurazzjoni b'Saħħar"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "Konfigurazzjoni Avvanzata"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "ÄŚu Backup Issa"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-"deskrizzjoni ta' l-għaşliet:\n"
-"\n"
-" F'dan il-pass Drakbackup iħallik tbiddel:\n"
-"\n"
-" - It-tip ta' kompressar:\n"
-" \n"
-" Jekk tagħşel kompressar bzip2, tikkompressa l-\n"
-" informazzjoni tiĥi kompressata aħjar minn gzip (madwar \n"
-" 2-10 %). Din l-għażla mhijiex magħżula impliċitament \n"
-" għax tieħu işjed ħin (madwar 1000% işjed).\n"
-"\n"
-" - ModalitĂ  aÄĄÄĄornament:\n"
-"\n"
-" Din l-għaşla taĥĥornalek backup, imma m'hijiex utli \n"
-" ħafna għax trid terĥa' tiftaħ il-backup kollu biex \n"
-" taÄĄÄĄornah.\n"
-"\n"
-" - ModalitĂ  \".backupignore\":\n"
-"\n"
-" Simili għas-CVS, Drakbackup jaqbeş dawk ir-riferenzi \n"
-" kollha li hemm fil-fajls .backupignore f'kull direttorju.\n"
-" eĹź:\n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-"\n"
-" Xi problemi waqt sendmail huma kkawĹźati minn konfigurazzjoni\n"
-" ħaşina ta' postfix. Biex issolviha trid tissettja myhostname \n"
-" jew mydomain fil-fajl /etc/postfix/main.cf\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-"deskrizzjoni ta' l-għaşliet:\n"
-"\n"
-" - ÄŚu backup tal-fajls tas-sistema:\n"
-"\n"
-"\tDin l-għaşla tħallik tieħu kopja tad-direttorju /etc,\n"
-"\tli fih il-fajls kollha tal-konfigurazzjoni tas-sistema.\n"
-"\tJekk jogħĥbok oqgħod attent waqt il-pass ta' restawr li\n"
-"\tma tħassarx:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - ÄŚu backup tal-fajls tal-users:\n"
-"\n"
-"\tDin l-għaşla tħallik tagħşel il-users kollha li trid tieħu\n"
-"\tbackup tagħhom. Biex tnaqqas l-ispazju li jintuşa, mhux \n"
-"\trakkomandat li tinkludi l-cache tal-web browser.\n"
-"\n"
-" - Ču backup ta' fajls oħra:\n"
-"\tDin l-għaşla tħallik işşid informazzjoni oħra x'tikkopja.\n"
-"\tB'dan il-backup m'hux possibbli tagħşel \"backup inkrementali\"\n"
-"\tgħalissa.\n"
-"\n"
-" - Backup inkrementali:\n"
-"\n"
-"\tIl-backup inkrementali huwa l-işjed metodu b'saħħtu \n"
-"\tgħall-backups. Din l-għaşla tħallik tieħu backup tal-\n"
-"\tinformazzjoni kollha l-ewwel darba, u wara tieħu kopja\n"
-"\tbiss ta' dak li nbidel.\n"
-"\tWara, tkun tista', waqt il-pass ta' restawr, li\n"
-"\ttirrestawra biss dak li nbidel minn ċertu data.\n"
-"\tJekk qatt ma għaşilt din l-għaşla qabel, il-backups\n"
-"\tantiki kollha jiĥu mħassra qabel kull backup.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"deskrizzjoni tar-restawr:\n"
-"\n"
-"L-iżjed data riċenti biss tintuża, għax bil-backups inkrementali\n"
-"huwa neċessarju li tirrestawra l-backups antiki wieħed wieħed.\n"
-"\n"
-"Għalhekk jekk ma tridx tirrestawra user jekk jogħġbok neħħi l-marka miċ-"
-"checkbox tiegħu.\n"
-"\n"
-"Altrimenti, tista' tagħşel biss wieħed minn dawn:\n"
-"\n"
-" - Backups inkrementali\n"
-"\n"
-"\tIl-backup inkrementali huwa l-işjed metodu b'saħħtu \n"
-"\tgħall-backups. Din l-għaşla tħallik tieħu backup tal-\n"
-"\tinformazzjoni kollha l-ewwel darba, u wara tieħu kopja\n"
-"\tbiss ta' dak li nbidel.\n"
-"\tGħalhekk huwa possibbli waqt il-pass ta' restawr, li\n"
-"\ttirrestawra biss dak li nbidel minn ċertu data.\n"
-"\tJekk qatt ma għaşilt din l-għaşla qabel, il-backups\n"
-"\tantiki kollha jiĥu mħassra qabel kull backup. \n"
-"\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft ta' DUPONT Sebastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-" Dan il-programm huwa softwer ħieles; tista' tiddistribwih u/jew tibdlu\n"
-" skond it-termini tal-Liċenzja Ġenerali Pubblika (GPL) GNU, kif "
-"ippubblikata\n"
-" mill-Free Software Foundation; jew verjoni 2 tal-liċenzja, jew (skond il-\n"
-" ġudizzju tiegħek) waħda iżjed riċenti.\n"
-"\n"
-" Dan il-programm huwa distribwit bl-isperanza li jkun utli, imma\n"
-" MINNGĦAJR EBDA GARANZIJA; minngħajr saħansitra l-garanzija impliċita \n"
-" ta' MERKANTABILITÀ jew LI HU ADEGWAT GĦAL UZU PARTIKULARI. Ara\n"
-" l-Liċenzja Ġenerali Pubblika GNU (GNU General Public License) għal iżjed\n"
-" dettalji.\n"
-"\n"
-" Għandek tirċievi kopja tal-Liċenzja Ġenerali Pubblika GNU flimkien ma' dan\n"
-" il-programm. Jekk le, ikteb lill-Free Software Foundation, Inc., \n"
-" 59, Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-"Deskrizzjoni:\n"
-"\n"
-" Drakbackup jintuşa biex jieħu kopja \"backup\" tas-sistema.\n"
-" Waqt il-konfigurazzjoni tista' tagħşel \n"
-"\t- Fajls tas-sistema, \n"
-"\t- Fajls tal-users, \n"
-"\t- Fajls oħrajn\n"
-"\tjew Sistema kollha ... u Oħrajn (bħal partizzjonijiet tal-Windows)\n"
-"\n"
-" Drakbackup iħallik tpoĥĥi din il-backup fuq:\n"
-"\t- ÄŚard disk.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (bl-autoboot, rescue u awto-installazzjoni).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup iħallik tirrestawra s-sistema għal ĥo direttorju\n"
-" li jagħşel il-user.\n"
-"\n"
-" Impliċitament, il-backups jitpoġġew fid-direttorju\n"
-" /var/lib/drakbackup\n"
-"\n"
-" fajl ta' konfigurazzjoni:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Pass ta' restawrazzjoni:\n"
-"\n"
-" Waqt il-pass ta' restawrazzjoni, Drakbackup iħassar id-\n"
-" direttorju oriÄĄinali u jivverifika li l-fajls tal-backup\n"
-" ma ĥewx korrotti. Huwa rakkomandat li tieħu backup ieħor\n"
-" qabel tibda' tirrestawra.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-"deskrizzjoni tal-għaşliet:\n"
-"\n"
-"Jekk jogħĥbok oqgħod attent meta tuşa backup bl-ftp, għax\n"
-"dawk il-backups li huma mibnija biss jintbagħatu fuq is-server.\n"
-"Għalhekk għalissa, trid tibni l-backup fuq il-ħard disk qabel\n"
-"jintbagħat lis-server.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-"\n"
-"Problemi ta' restawr ta' backup:\n"
-"\n"
-"Waqt il-pass ta' restawr, Drakbackup jivverifika l-fajls \n"
-"kollha tal-backup qabel jirrestawrahom. Qabel \n"
-"ir-restawr,.Drakbackup ineħħi d-direttorju oriĥinali, u \n"
-"tista' titlef l-informazzjoni kollha. Huwa mportanti li\n"
-"toqgħod attent u ma tbiddilx il-fajls tal-backup manwalment.\n"
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-"Deskrizzjoni:\n"
-"\n"
-" Drakbackup jintuşa biex jieħu kopja \"backup\" tas-sistema.\n"
-" Waqt il-konfigurazzjoni tista' tagħşel \n"
-"\t- Fajls tas-sistema, \n"
-"\t- Fajls tal-users, \n"
-"\t- Fajls oħrajn\n"
-"\tjew Sistema kollha ... u Oħrajn (bħal partizzjonijiet tal-Windows)\n"
-"\n"
-" Drakbackup iħallik tpoĥĥi din il-backup fuq:\n"
-"\t- ÄŚard disk.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (bl-autoboot, rescue u awto-installazzjoni).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup iħallik tirrestawra s-sistema għal ĥo direttorju\n"
-" li jagħşel il-user.\n"
-"\n"
-" Impliċitament, il-backups jitpoġġew fid-direttorju\n"
-" /var/lib/drakbackup\n"
-"\n"
-" fajl ta' konfigurazzjoni:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Pass ta' restawrazzjoni:\n"
-"\n"
-" Waqt il-pass ta' restawrazzjoni, Drakbackup iħassar id-\n"
-" direttorju oriÄĄinali u jivverifika li l-fajls tal-backup\n"
-" ma ĥewx korrotti. Huwa rakkomandat li tieħu backup ieħor\n"
-" qabel tibda' tirrestawra.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "L-installazzjoni ta' %s falliet. Dan kien il-messaÄĄÄĄ:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Fittex fonts installati"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Neħħi l-marka minn fonts installati"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "fittex fonts kollha"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "ma stabux fonts"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "lest"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "ma stajtx insib fonts fuq il-partizzjonijiet immuntati"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Erĥa' agħşel fonts tajbin"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "ma stajtx insib fonts.\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Fittex fonts fil-lista ta' nstallati"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Ikkupjar ta' fonts"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "Installazzjoni ta' fonts TrueType"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "stenna sakemm għaddej ttmkfdir..."
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "Installazzjoni TrueType lest"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "KonverĹźjoni ta' fonts"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "qed nibni type1inst"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr "Riferenzi għall-Ghostscript"
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "KonverĹźjoni ta' fonts ttf"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "KonverĹźjoni ta' fonts pfm"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Issopprimi fajls temporanji"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "Irristartja XFS"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Issopprimi fajls ta' fonts"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "ristartja l-xfs"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Qabel tinstalla fonts, kun ċert li għandek id-dritt tużahom u tinstallahom "
-"fuq is-sistema.\n"
-"\n"
-"-Tista' tinstalla fonts bis-sistema normali. F'kaşi rari, fonts ħşiena "
-"jistgħu iwaħħlulek is-server X."
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "Importazzjoni ta' fonts"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Ä ib fonts mill-Windows"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Neħħi fonts"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Għaşliet avvanzati"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Lista ta' fonts"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Agħşel il-programmi li se juşaw il-fonts :"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Printers ġeneriċi"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Agħşel il-fajl tal-font jew direttorju u agħfas \"ŝid\""
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Installa lista"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "Klikkja hawn jekk inti ċert"
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "Klikkja hawn jekk m'intix ċert."
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "Xejn magħşul"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Kollox magħşul"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "Neħħi lista"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Testijiet preliminari"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Ikkopja fonts għas-sistema"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Installa u kkonverti fonts"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Wara l-installazzjoni"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "Neħħi fonts mis-sistema"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Wara t-tneħħija"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Qsim tal-konnessjoni tal-internet"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Il-qsim tal-konnessjoni tal-internet huwa mixgħul"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Il-konfigurazzjoni tal-qsim tal-konnessjoni tal-internet diÄĄĂ  sar.\n"
-"Bħalissa huwa mixgħul.\n"
-"\n"
-"X'tixtieq tagħmel?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "itfi"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "ikkanċella"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "ri-konfigura"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Qed innişşel is-servers..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Il-qsim tal-konnessjoni tal-internet issa mitfi"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Il-qsim tal-konnessjoni tal-internet huwa mitfi"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Il-konfigurazzjoni tal-qsim tal-konnessjoni tal-internet diÄĄĂ  sar.\n"
-"Bħalissa huwa mitfi.\n"
-"\n"
-"X'tixtieq tagħmel?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "ħaddem"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Qed intella' s-servers..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Qsim tal-konnessjoni tal-internet issa mixgħul."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Se tikkonfigura l-kompjuter biex jaqsam il-konnessjoni tal-internet.\n"
-"B'din il-faċilità, kompjuters oħra fuq in-network tiegħek ikunu jistgħu "
-"juĹźaw il-konnessjoni mal-internet ta' dan il-kompjuter.\n"
-"\n"
-"Nota: irid ikollok adattur tal-internet dedikat biex tissettja n-network "
-"lokali (LAN)"
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interfaċċja %s (tuża modulu %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Interfaċċja %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Ebda adattur tan-network fuq is-sistema!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Ebda adattur tan-network ethernet ma nstab fuq is-sistema tiegħek. Jekk "
-"jogħĥbok ħaddem l-għodda tal-konfigurazzjoni tal-ħardwer."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Interfaċċja tan-network"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Hemm biss adattur wieħed fuq is-sistema tiegħek:\n"
-"\n"
-"%s\n"
-"\n"
-"Se nissettja n-network lokali fuq dak l-adattur."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Jekk jogħĥbok agħşel liema adattur tan-network se jkun imqabbad man-network "
-"lokali (LAN)."
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Interfaċċja tan-network diġà konfigurata"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"Twissija, l-adattur tan-network (%s) diÄĄĂ  konfigurat.\n"
-"\n"
-"Trid ri-konfigurazzjoni awtomatika?\n"
-"\n"
-"Tista' tagħmilha manwalment imma trid tkun taf x'qed tagħmel."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Ri-konfigurazzjoni awtomatika"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "Uri l-konfigurazzjoni kurrenti tal-interfaċċja"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"Konfigurazzjoni kurrenti ta' \"%s\":\n"
-"\n"
-"Network: %s\n"
-"Indirizz IP: %s\n"
-"Attribuzzjoni IP: %s\n"
-"Driver: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Nista; nĹźomm il-konfigurazzjoni kurrenti u nassumi li diÄĄĂ  ssettjajt server "
-"DHCP; f'dak il-kaĹź ikkonferma li qrajt l-indirizz tan-network klassi C sew; "
-"Ma nerÄĄax nikkonfiguraha u ma mmissx il-konfigurazzjoni tas-server DHCP.\n"
-"\n"
-"Inkella, nista' nerġa nikkonfigura l-interfaċċja u nissettjalek server "
-"DCHP.\n"
-"\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "Network lokali klassi C"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "IP ta' dan is-server DHCP"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Erġa' kkonfigura l-interfaċċja u s-server DHCP"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "In-network lokali ma jispiċċax b' \".0\", ħiereġ 'il barra."
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Possibbilment hemm konflitt fl-indirizz LAN fil-konfigurazzjoni ta' %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Instabet konfigurazzjoni ta' firewall!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Twissija: Instabet konfigurazzjoni eşistenti ta' firewall. Għandek mnejn "
-"tkun trid tirranÄĄaha manwalment wara l-installazzjoni."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Qed nikkonfigura..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Qed nikkonfigura scripts, ninstalla softwer u ntella' servers..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemi fl-installazzjoni tal-pakkett %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Kollox ÄĄie konfigurat.\n"
-"Issa tista taqsam konnessjonijiet ma' kompjuters oħra fuq in-network lokali, "
-"permezz tal-faċilità ta' konfigurazzjoni awtomatika (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Dan il-konfigurazzjoni diĥà sar, imma bħalissa mitfi."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Dan il-konfigurazzjoni diĥà sar, u bħalissa attivat."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Ebda qsim tal-konnessjoni għadu ma ĥie konfigurat."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Konfigurazzjoni tal-qsim tal-konnessjoni mal-internet"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Merħba għall-Faċilità ta' Qsim tal-Konnessoni tal-Internet!\n"
-"\n"
-"%s\n"
-"\n"
-"Ikklikkja \"Ikkonfigura\" biex tħaddem is-saħħar tal-konfigurazzjoni."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Konfigurazzjoni network (%d adattur/i)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "ÄŚassar profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil xi tħassar:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Profil ÄĄdid..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr "Isem tal-profil ÄĄdid (il-profil il-ÄĄdid ikun kopja ta' dak kurrenti) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Isem tal-kompjuter: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Aċċess għall-internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tip:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfaċċja:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Stat:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Stenna ftit"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Ikkonfigura l-aċċess għall-internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Konfigurazzjoni LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Driver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfaċċja"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokoll"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Stat"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Ikkonfigura network lokali (LAN)..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Klikkja hawn biex tħaddem is-saħħar ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Saħħar..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Applika"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Stenna ftit... qed napplika l-konfigurazzjoni"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Imqabbad"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Mhux imqabbad"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Aqbad..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Aqta'..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Twissija: instabet konnessjoni oħra tal-Internet, forsi qed tuşa n-network "
-"tiegħek"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"M'għandek ebda interfaċċja konfigurata.\n"
-"L-ewwel ikkonfigurahom billi tikklikkja \"ikkonfigura\""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Konfigurazzjoni LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adattur %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protokoll Boot"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Tella' fil-bidu"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Klijent DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "ixgħel issa"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "itfi issa"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Din l-interfaċċja għadha ma ġietx konfigurata.\n"
-"Čaddem is-saħħar tal-konfigurazzjoni mill-window ewlenija"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Għad m'għandekx konnessjoni mal-internet.\n"
-"Oħloq waħda billi tikklikkja \"Ikkonfigura\""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfigurazzjoni tal-konnessjoni internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfigurazzjoni tal-konnessjoni internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tip ta' konnessjoni: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Kard Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Klijent DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Livell ta' SigurtĂ "
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Ċentru tal-Kontroll"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Agħşel l-għodda li trid tuşa"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "Kanada (cable)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "Stati Uniti (bcast)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "Stati Uniti (cable)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "Stati Uniti (cable-hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Ċina (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Ä appun (bcast)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "Ä appun (cable)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Ewropa tal-Lvant"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Irlanda"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "Ewropa tal-Punent"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Awstralja"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "New Zealand"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "Afrika t'Isfel"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "ArÄĄentina"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Jekk jogħĥbok,\n"
-"daħħal it=\"TV norm\" u l-pajjiş"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "TV norm :"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "ReÄĄjun :"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "Tfittix għal stazzjonijiet tat-TV għaddej"
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "Qed infittex stazzjonijiet tat-TV"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "uĹźu: keyboarddrake [--expert] [tastiera]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Jekk jogħĥbok, agħşel it-tqassim tat-tastiera."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Trid li l-Backspace tirritorna Delete fuq il-konsol?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Ibdel is-CD"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Jekk jogħĥbok daħħal is-CD tal-installazzjoni fid-drive u agħfas Ok meta\n"
-"tlesti. Jekk m'għandekx is-CD agħfas \"Ikkanċella\" biex tevita l-"
-"aÄĄÄĄornament."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Ma stajtx nibda' l-aÄĄÄĄornament \"live\"!!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr "Il-bidliet saru, imma biex ikunu effettivi trid tilloggja 'l barra"
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "Uri għall-ĥurnata magħşula biss"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/File/_Ä did"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/File/_Iftaħ"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/File/I_kteb"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/File/Ikteb b'isem _ÄĄdid"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Fajl/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/Għa_şliet"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Għaşliet/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Għajnuna"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Għajnuna/_Dwar..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "User"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "MessaÄĄÄĄi"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "Syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Spjegazzjoni tal-għodda Mandrake"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "fittex"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Għodda biex tifli l-logs"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Setings"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "li jaqblu"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "li ma jaqblux"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Agħşel fajl"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Kalendarju"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Kontenut tal-fajl"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "Twissija Imejl/SMS"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "stenna ftit... qed jinqara l-fajl: %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "Konfigurazzjoni Imejl/twissijiet SMS"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Merħba għall-għodda tal-konfigurazzjoni imejl/SMS.\n"
-"\n"
-"Hawn, tista' tissettja s-sistema tal-allerti.\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "seting tas-servizz"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr "Tirċievi twissija jekk wieħed minn dawn is-servizzi ma jibqax jaħdem"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "seting tat-tagħbija"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Tirċievi twissija jekk it-tagħbija taqbeż dan il-valur"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "konfigurazzjoni tal-allerti"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "Ikkonfigura l-mod kif is-sistema tibgħatlek twissijiet"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Ikteb b'isem ÄĄdid..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Jekk jogħĥbok agħşel it-tip ta' maws."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "Ebda serial_usb ma nstab\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Emula t-tielet buttuna?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "%s instab fuq %s, trid tikkonfigurah?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Agħşel skaner"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "Dan l-iskaner %s mhux sapportit"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Diska/apparat \"boot\""
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"Dan l-iskaner %s irid jiÄĄi konfigurat minn printerdrake.\n"
-"Tista' tħaddem lill printerdrake miċ-Ċentru tal-Kontroll Mandrake fis-"
-"sezzjoni ÄŚardwer."
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Konfigurazzjoni tal-Firewall"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Konfigurazzjoni tal-firewall"
-
-#: ../../standalone/tinyfirewall_.c:79
-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"
-"Diĥà għandek firewall issettjat.\n"
-"Klikkja fuq \"ikkonfigura\" biex tbiddel jew tneħħi l-firewall."
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Klikkja fuq \"ikkonfigura\" biex tissettja firewall standard."
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Agħşel il-lingwa"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Agħşel klassi ta' installazzjoni"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Għarfien tal-ħard disk"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Ikkonfigura l-maws"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Agħşel tastiera"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "SigurtĂ "
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Issettja filesystems"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Ifformattja partizzjonijiet"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Agħşel pakketti biex tinstalla"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Installa s-sistema"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Ĺťid user"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Ikkonfigura network"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Ikkonfigura servizzi"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Installa bootloader"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Oħloq \"boot disk\""
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Ikkonfigura X"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Installa aÄĄÄĄornamenti tas-sigurtĂ "
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Oħroĥ mill-installazzjoni"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Konfiguratur tinyfirewall\n"
-"\n"
-"Dan jikkonfigura firewall personali għal din is-sistema Mandrake Linux.\n"
-"Għal kompjuter firewall dedikat, jekk jogħĥbok ara d-distribuzzjoni\n"
-"speċjalizzata MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Issa se nistaqsuk mistoqsijiet dwar liema servizzi tixtieq tħalli\n"
-"lill ħaddieħor jaċċessa mill-internet. Jekk jogħġbok aħseb sew dwar \n"
-"dawn il-mistoqsijiet, għax is-sigurtà tal-kompjuter huwa mportanti.\n"
-"\n"
-"Jekk m'intix qed tuşa wieħed minn dawn is-servizzi, agħşel \"Le\".\n"
-"Tista' tbiddel il-konfigurazzjoni meta trid billi terĥa' tħaddem dan\n"
-"il-programm."
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Int qed tħaddem \"web server\" fuq dan il-kompjuter li tridu jkun\n"
-"aċċessibbli għall-Internet? Jekk qed tħaddem web server li jiġi\n"
-"aċċessat biss mill-istess kompjuter tista' tagħżel \"Le\" hawn.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Int qed tħaddem name server (DNS) fuq din il-magna? Jekk ma ssettjajtx\n"
-"wieħed biex joffri informazzjoni dwar IP u şoni lill-internet kollu,\n"
-"agħşel \"Le\".\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Tixtieq tħalli konnessjonijiet ssh (Secure Shell) deħlin? Dan\n"
-"jieħu post it-telnet li tista' tuża biex taċċessa l-kompjuter\n"
-"remotament. Jekk kont qed tuşa telnet, definittivament aqleb għall-\n"
-"ssh. Telnet mhuwiex iċċifrat, għalhekk ħaddieħor jista' jisraq il-\n"
-"password. Ssh huwa ċċifrat u ma jippermettix min jissemma'."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Trid tħalli konnessjonijiet tat-telnet deħlin?\n"
-"Dan il-metodu huwa perikoluş ħafna, għax il-password tista' tinqara\n"
-"minn ħaddieħor. Aħna nirrakkomandaw li tirrispondi \"Le\" u tuşa l-\n"
-"ssh minnflok it-telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Qed tħaddem server FTP li tridu jkun aċċessibbli mill-internet? Jekk\n"
-"iva, aħna nirrakkomandaw li dan jintuşa biss għal trasferiment anonimu.\n"
-"Il-passwords li jintuşaw bl-FTP jistgħu jinsterqu minn terzi persuni,\n"
-"peress li l-FTP ma jiċċifrax il-passwords meta jibgħathom.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Qed tħaddem server tal-imejl hawn? Jekk qed tibgħat il-messaĥĥi\n"
-"bil-pine, mutt jew klijent ieħor testwali (mhux grafiku), aktarx\n"
-"iva. Altrimenti jaqbillek tagħşel \"le\".\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Qed tħaddem server POP jew IMAP? Dan jintuşa biex tipprovdi\n"
-"imejl lill nies oħra mill-kompjuter tiegħek.\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Jidher li qed tuĹźa kernel 2.2. Jekk in-numru IP tan-network\n"
-"huwa ssettjat awtomatikament minn kompjuter ieħor id-dar jew\n"
-"fl-uffiċċju (assenjat dinamikament), irridu nieħdu ħsiebu. Dan\n"
-"huwa l-kaĹź?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Il-kompjuter tiegħek jissinkronizza l-ħin ma' kompjuter ieħor?\n"
-"Normalment, dan jintuĹźa minn organizzazzjonijiet kbar ibbaĹźati\n"
-"fuq il-Unix/Linux, biex jissinkronizzaw il-kompjuters. Jekk m'\n"
-"intix fuq sistema kbira u qatt ma smajt b'dan, aktarx li m'initx."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfigurazzjoni lesta. Nistgħu niktbu dawn il-bidliet fuq id-diska?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Ma jistax jinfetaħ %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Ma jistax jinfetaħ %s għall-kitba: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Konfigurazzjoni tal-Firewall"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Stenna ftit, qed nipprepara l-installazzjoni"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Kompjuter fuq network (klijent)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "Servers NFS, SMB, Proxy, ssh"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Uffiċċju"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Għodda għall-Palm Pilot jew Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Workstation"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Firewall/Router"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domain Name u Network Information Server"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Programmi tal-uffiċċju: wordprocessors (kword, abiword), spreadsheet "
-"(kspread, gnumeric) eċċ"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Għodda relatati mal-awdjo: biex iddoqq mp3 u midi, miksers, eċċ"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Kotba u \"HOWTO\" dwar il-Linux u Softwer ÄŚieles"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, eċċ"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedia - video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-"Sett ta' programmi għal imejl, newsgroups, web, trasferiment ta' fajls u chat"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Database"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Server tad-database PostgreSQL jew MySQL"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Għodda biex tiffaċilita l-konfigurazzjoni tal-kompjuter"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedia - awdjo"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Għodda"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentazzjoni"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Għodda tal-konsol"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Server tal-imejl Postfix, news server Inn"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internet"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimedia"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Konfigurazzjoni"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Desktops grafiċi oħrajn (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"K Desktop Environment, l-interfaċċja grafika bażi, b'għażla ta' għodda "
-"jakkumpanjawha"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Ambjent Grafiku"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Għodda biex toħloq u taħraq CDs"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Kompjuter tal-Uffiċċju"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, eċċ"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Programmi grafiċi bħal GIMP"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Libreriji, programmi u fajls għal şviluppar C u C++"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Kompjuter Server tan-Network"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Imejl/Groupware/Newsgroups"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Logħob"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Programmi għad-daqq u editjar ta' video"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedia - grafika"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Programmi ta' divertiment: logħob tal-arcades, karti, strateġija eċċ"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Sett għodda biex taqra u tibgħat imejl u \"news\", u biex tibbrawşja l-web"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arkivjar, emulaturi u monitors"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Finanzi Personali"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr "Ambjent grafiku b' għażla ta' programmi u għodda faċli"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Klijenti għal protokolli differenti, eş. SSH"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Gateway tal-internet"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programmi għad-daqq u editjar ta' awdjo u video"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Desktops Grafiċi Oħrajn"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Edituri, shells, għodda tal-fajls, terminals"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programmi biex timmaniÄĄÄĄja l-finanzi personali"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "ManiÄĄÄĄjar ta' Informazzjoni Personali"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedia - ÄŚruq ta' CDs"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Xjentifiku"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Tista' tipprovdi l-għaşliet lill-modulu %s."
-
-#~ msgid "mount failed"
-#~ msgstr "immuntar falla"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr ""
-#~ "Ma nistax naċċessa l-moduli tal-kernel li jikkorrispondu mal-kernel "
-#~ "tiegħek (fajl %s nieqes)"
-
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-*-*-medium-r-normal-*-12-*-*-*-p-*-iso8859-3,*-r-*"
-
-#~ msgid "None"
-#~ msgstr "Ebda"
-
-#~ msgid "Choose a default printer!"
-#~ msgstr "Agħżel printer impliċitu!"
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Applika/erÄĄa' aqra' printers"
-
-#~ msgid "About"
-#~ msgstr "Dwar"
-
-#~ msgid " Help "
-#~ msgstr " Għajnuna "
diff --git a/perl-install/share/po/nl.po b/perl-install/share/po/nl.po
deleted file mode 100644
index 9270f3cfd..000000000
--- a/perl-install/share/po/nl.po
+++ /dev/null
@@ -1,12264 +0,0 @@
-# Translation file of Mandrake graphic install
-# Copyright (C) 1999-2000 Mandrakesoft
-# Jo <rainbow@linuxfan.com>, 1999
-# Tom Laermans <sidewinder@linuxfreak.com>, 2000
-# Niels Gras <niels.gras@wanadoo.nl>, 2000
-# Reinout van Schouwen <reinout@cs.vu.nl>, 2001, 2002
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-01 01:34+0100\n"
-"Last-Translator: Reinout van Schouwen <reinout@cs.vu.nl>\n"
-"Language-Team: Dutch <vertaling@nl.linux.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configureer alle koppen afzonderlijk"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Gebruik Xinerama-uitbreiding"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configureer alleen kaart \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Multi-koppen configuratie"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Uw systeem ondersteunt een configuratie met meerdere koppen.\n"
-"Want wenst u te doen?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafische kaart"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Selecteer een grafische kaart"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Selecteer een X-server"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-Server"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Kiest u een X-stuurprogramma"
-
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X-stuurprogramma"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Welke configuratie van XFree wilt u hebben?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Uw kaart kan 3D acceleratie ondersteuning krijgen, maar alleen met XFree %"
-"s.\n"
-"Uw kaart wordt ondersteund door XFree %s, welke betere ondersteuning zou \n"
-"kunnen hebben in 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Uw kaart kan 3D acceleratie ondersteuning krijgen met XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s met 3D hardware acceleratie"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Uw kaart kan 3D acceleratie ondersteuning krijgen met XFree %s.\n"
-"LET OP: DIT IS EEN EXPERIMENTELE ONDERSTEUNING, WELKE UW COMPUTER KAN "
-"LATEN \n"
-"VASTLOPEN."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s met EXPERIMENTELE 3D hardware acceleratie"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Uw kaart kan 3D hardware acceleratie ondersteuning hebben, maar alleen met \n"
-"XFree %s, LET OP: DIT IS EEN EXPERIMENTELE ONDERSTEUNING, WELKE UW "
-"COMPUTER \n"
-"KAN LATEN VASTLOPEN.\n"
-"Uw kaart wordt ondersteund door XFree %s, welke betere ondersteuning zou \n"
-"kunnen hebben in 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installatie beeldscherm-stuurprogramma"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree configuratie"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Selecteer de geheugengrootte van uw grafische kaart"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Selecteer de opties voor de X-server"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Selecteer een monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"De twee cruciale parameters zijn de verticale verversingsratio, d.w.z.\n"
-"de snelheid waarmee het volledige scherm wordt ververst en nog "
-"belangrijker \n"
-"de horizontale sync ratio, dit is de snelheid waaraan de scanlijnen worden\n"
-"geschreven\n"
-"\n"
-"Het is UITERMATE BELANGRIJK dat u geen monitor type opgeeft die een sync "
-"bereik\n"
-"heeft die de mogelijkheden van uw monitor overschrijdt: u kan uw monitor\n"
-"beschadigen.\n"
-"Bij twijfel maakt u best een voorzichtige keuze."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Horizontale verversingsratio"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Verticale verversingsratio"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor niet geconfigureerd"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafische kaart nog niet geconfigureerd"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resoluties nog niet gekozen"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Wenst u de configuraties te testen?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Waarschuwing: door deze grafische kaart te testen, kan uw computer vastlopen"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Configuratie Testen"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probeer enkele parameters aan te passen"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Er is een fout opgetreden:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Verdwijnt binnen %d seconden"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Is dit de juiste instelling?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Er is een fout opgetreden, probeer een aantal parameters aan te passen"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Resolutie"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Kies resolutie en kleurdiepte"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Grafische kaart: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86-server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Meer"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Expert modus"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Toon alles"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resoluties"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Toetsenbord instelling: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Muistype: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Muis: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitor Horizontale Sync: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitor verticale verversing: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Grafische kaart: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identificatie grafische kaart: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Videogeheugen: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Kleurdiepte: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Resolutie: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86-server: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 stuurprogramma: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Bezig met het voorbereiden van de X-Window configuratie"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Wat wenst u te doen?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Verander Monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Verander grafische kaart"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Verander Server-opties"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Resolutie wijzigen"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Informatie tonen"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Opnieuw testen"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Beëindig"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Veranderingen bewaren?\n"
-"De huidige configuratie is:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X bij opstarten"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Ik kan uw computer instellen om automatisch X te starten bij opstarten.\n"
-"Wenst u X te starten bij het opstarten?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Gelieve opnieuw in te loggen op %s om de wijzigingen te activeren"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Gelieve uit te loggen en daarna Ctrl-Alt-Backspace te gebruiken"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 kleuren (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32.000 kleuren (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65.000 kleuren (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miljoen kleuren (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljard kleuren (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB of meer"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standaard VGA, 640x480 aan 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 aan 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Compatibel, 1024x768 aan 87 Hz interlaced (geen 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 aan 87 Hz interlaced, 800x600 aan 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 aan 60 Hz, 640x480 aan 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 aan 60 Hz, 800x600 aan 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 aan 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency in staat om 1280x1024 aan 60 Hz weer te geven"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency in staat om 1280x1024 aan 74 Hz weer te geven"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency in staat om 1280x1024 aan 76 Hz weer te geven"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Multi-frequency in staat om 1600x1200 aan 70 Hz weer te geven"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Multi-frequency in staat om 1600x1200 aan 76 Hz weer te geven"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Eerste sector van boot-partitie"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Eerste sector van station (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO Installatie"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Waar wenst u de bootloader te installeren?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/grub-installatie"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO met tekst-menu"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO met grafisch menu"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Opstarten vanuit DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Bootloader algemene opties"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Welke bootloader te gebruiken"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Bootloader installatie"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Boot-apparaat"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (werkt niet met oude BIOS'en)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Compact"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "compact"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Video-modus"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Pauze voor het opstarten van standaard-beeld"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Wachtwoord"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Wachtwoord (nogmaals)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Commandoregel-opties beperken"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "beperken"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Elke keer bij opstarten /tmp legen"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Juiste RAM-grootte (indien nodig) (%d MB gevonden)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Meerdere profielen inschakelen"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Geef de RAM-grootte in MB"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"De optie ``Commandoregel-opties beperken'' heeft geen nut zonder wachtwoord"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Gelieve opnieuw te proberen"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "De wachtwoorden kloppen niet met elkaar"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Initialisatie-bericht"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Open Firmware Delay"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Kernel opstart-wachttijd"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Opstarten van CD mogelijk maken?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Opstarten van OF mogelijk maken?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Standaard besturingssysteem?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Hier zijn de ingangen voor LILO.\n"
-"U kunt er enkele toevoegen of de bestaande wijzigen."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Toevoegen"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Klaar"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Aanpassen"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Welk type ingang wenst u toe te voegen?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Ander OS (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Ander OS (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Ander OS (Windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Beeld"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Achteraan toevoegen"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Lezen/schrijven"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabel"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Onveilig"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Naam"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Standaard"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd-grootte"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "Geen Video"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Ingang verwijderen"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Lege naam is niet toegelaten"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "U dient een kernel-beeldbestand aan te geven"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "U dient een root-partitie aan te geven"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Deze naam wordt al gebruikt"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s %s interfaces gevonden"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Heeft u er nog één?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Heeft u een %s interface?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Nee"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Ja"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Bekijk hardware-info"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Bezig met installeren van stuurprogramma voor %s kaart %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(module %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Welk %s stuurprogramma moet ik proberen?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"In sommige gevallen heeft het stuurprogramma van %s extra informatie nodig\n"
-"om juist te werken, alhoewel het meestal ook zonder goed werkt. Wil u\n"
-"extra opties invoeren of laat u liever het stuurprogramma zijn informatie\n"
-"zelf zoeken? Soms zal de automatische detectie de computer laten hangen,\n"
-"maar het zou geen schade mogen veroorzaken."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Automatisch Detecteren"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Geef opties"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"U kunt nu zijn opties doorgeven aan module %s.\n"
-"Merk op dat een adres moet worden ingegeven met de prefix 0x zoals '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"U mag nu de opties voor module %s ingeven.\n"
-"Opties staan in het formaat ``naam=waarde naam2=waarde2 ...''.\n"
-"Bijvoorbeeld, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Module-opties:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Het laden van module %s is niet gelukt.\n"
-"Wenst u opnieuw te proberen met andere parameters?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "toegang tot X-programma's"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "toegang tot rpm-gereedschappen"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "\"su\" toestaan"
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "toegang tot administratieve bestanden"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s reeds toegevoegd)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Dit wachtwoord is te eenvoudig"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Gelieve een gebruikersnaam in te geven"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"De gebruikersnaam mag slechts kleine letters, cijfers, `-' en`_' bevatten"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Deze gebruikersnaam werd reeds toegevoegd"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Gebruiker toevoegen"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Geef een gebruiker in\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Gebruiker aanvaarden"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Echte naam"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Gebruikersnaam"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Pictogram"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Automatisch inloggen"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Ik kan uw computer instellen om automatisch bij een bepaalde gebruiker in te "
-"loggen.\n"
-"Wilt u van deze mogelijkheid gebruik maken?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Kies de standaard gebruiker:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Selecteer de 'window manager' die u wilt gebruiken:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Gelieve een taal te kiezen."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "U kunt andere talen kiezen die beschikbaar zullen zijn na installatie"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Alles"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Alle gebruikers toestaan"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Aangepast"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Niet delen"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Pakket %s dient geďnstalleerd te worden. Wilt u het installeren?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-"U kunt bestandssystemen exporteren met behulp van NFS of Samba. Welke "
-"daarvan wilt u gebruiken?"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Verplicht pakket %s is afwezig"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Annuleren"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "Userdrake opstarten"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"De 'per gebruiker delen'-functie gebruikt de groep\n"
-"\"fileshare\". U kunt met userdrake een gebruiker\n"
-"aan deze groep toevoegen."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Welkom, krakers!"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Zeer laag"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standaard"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Hoog"
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr "Hoger"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoďde"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Dit niveau moet met voorzichtigheid gebruikt worden. Het maakt uw systeem\n"
-"makkelijker te gebruiken maar erg gevoelig: het moet niet gebruikt worden "
-"als\n"
-"machine die met andere computers of het internet verbonden is. Er worden\n"
-"geen wachtwoorden gebruikt."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Wachtwoorden zijn nu ingeschakeld, maar het gebruik als genetwerkte computer "
-"is nog steeds niet aanbevolen."
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Dit is de standaardbeveiliging, aangeraden voor een computer die als client "
-"met het Internet verbonden zal worden."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Er zijn al enkele restricties en meer automatische checks worden iedere "
-"nacht gedraaid."
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Met dit veiligheidsniveau wordt het mogelijk dit systeem als server te "
-"gebruiken.\n"
-"De beveiliging is nu goed genoeg om de computer als server te gebruiken die\n"
-"verbindingen van vele clients accepteert. Merk op: als uw computer alleen "
-"een\n"
-"client op het Internet is, dan kunt u beter een lager niveau kiezen."
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Gebaseerd op het vorige niveau, maar nu is het systeem volledig afgesloten.\n"
-"Beveiligingsfuncties staan op hun maximumwaarde."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Kies een veiligheids-niveau"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Veiligheids-niveau"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Gebruik libsafe voor servers"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Een bibliotheek welke bescherming biedt tegen \"buffer-overflow\"- en "
-"\"format string\"-aanvallen."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Welkom bij %s - Kies uw besturingssysteem!\n"
-"\n"
-"Kies een ingang uit de bovenstaande lijst\n"
-"of wacht %d seconden voor de standaard-opstartkeuze.\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Welkom bij GRUB - Kies uw besturingssysteem!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Gebruik de %c en %c-toetsen om te aangeduide ingang te selecteren."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Druk Enter om het geselecteerde besturingssysteem te booten, druk 'e'"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr " om de ingang eerst te bewerken, of 'c' voor een command-line."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr ""
-"De aangeduide ingang zal automatisch gestart worden binnen %d seconden."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "niet genoeg ruimte in /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Desktop"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Start Menu"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "U kunt de opstart-lader niet installeren op een %s-partitie\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "Helaas geen hulp beschikbaar.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Configuratie van opstart-stijl"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Bestand:"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Bestand/_Beëindig"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Nieuwe stijl (in categorieën)"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Nieuwe stijl"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Traditionele stijl"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Traditionele stijl (Gtk+)"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Aurora gebruiken bij opstarten"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Lilo/Grub modus"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot modus"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"U gebruikt op dit moment %s als Opstart-manager.\n"
-"Klik op Configureer om de instel-'wizard' te starten."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Configureren"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Systeemvorm"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Open het X-Window systeem bij opstarten"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Nee, ik wil niet automatisch inloggen"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ja, ik wil automatisch inloggen met deze (gebruiker, werkomgeving)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "kan /etc/inittab niet openen: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minuten"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minuut"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d seconden"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Kan geen schermafdruk maken voor het partitioneren"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Schermafdrukken zullen beschikbaar zijn na installatie in %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Frankrijk"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "België"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Tsjechische Republiek"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Duitsland"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Griekenland"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Noorwegen"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Zweden"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Nederland"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Italië"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Oostenrijk"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Verenigde Staten"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Gelieve eerst een veiligheidskopie van uw gegevens te maken"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Lees aandachtig!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Als u aboot wenst te gebruiken, wees dan voorzichtig en laat vrije ruimte "
-"(2048 sectoren is genoeg)\n"
-"aan het begin van de schijf"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Fout"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Wizard"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Kies een actie"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"U heeft één grote FAT-partitie\n"
-"(meestal gebruikt door Microsoft DOS/Windows).\n"
-"Ik stel voor dat u eerst de grootte van die partitie aanpast\n"
-"(klik erop, en klik daarna op \"Grootte Aanpassen\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Gelieve op een nieuwe partitie te klikken"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Details"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Virtueel geheugen"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Leeg"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Ander type"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Bestandssysteem types:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Creëer"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Type"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Gebruik ``%s'' in de plaats"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Verwijderen"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Gebruik eerst ``Ontkoppelen''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Na het veranderen van het type van partitie %s, zullen alle gegevens op deze "
-"partitie verloren gaan"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Kies een partitie"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Kies een andere partitie"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Afsluiten"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Schakel naar expert-modus"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Schakel naar normale modus"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Ongedaan maken"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Toch doorgaan?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Beëindig zonder opslaan"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Beëindigen zonder de partitietabel weg te schrijven?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Wilt u de /etc/fstab aanpassingen bewaren"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Automatisch toewijzen"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Alles wissen"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Informatie over harde schijf"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Alle primaire partities zijn al toegewezen"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Ik kan geen partitie meer toevoegen"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Om meer partities te kunnen maken, zal u er een moeten verwijderen. Dan kan\n"
-"er een uitgebreide (extended) partitie worden bijgemaakt"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Partitietabel schrijven"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Partitietabel terughalen"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Partitietabel redden"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Partitietabel opnieuw laden"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Automatische koppeling van verwisselbare media"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Selecteer bestand"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"De backup partitietabel heeft niet dezelfde grootte\n"
-"Toch verdergaan?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Waarschuwing"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Plaats een floppy in het station.\n"
-"Alle gegevens op deze floppy zullen verloren gaan"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Proberen om partitietabel te redden"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Gedetailleerde informatie"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Koppelpunt"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Opties"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Grootte aanpassen"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Verplaatsen"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatteren"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Koppelen"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Toevoegen aan RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Toevoegen aan LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Ontkoppelen"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Verwijderen uit RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Verwijderen uit LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "RAID aanpassen"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Voor Loopback gebruiken"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Nieuwe partitie creëren"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Start-sector: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Grootte in MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Bestandssysteem-type: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Koppelpunt: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Voorkeur: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Het loopback-bestand verwijderen?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Verander partitietype"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Welk bestandssysteem wenst u?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Bezig met omschakelen van ext2 naar ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Waar wenst u dit loopback-apparaat %s aan te koppelen?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Waaraan wenst u dit apparaat %s te koppelen?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Kan een koppelpunt niet verzetten omdat deze partitie gebruikt wordt als\n"
-"loopback. Verwijder de loopback eerst."
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Bezig met berekenen van FAT bestandssysteemgrenzen"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Bezig met de grootte aan te passen"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Deze partitie is niet in grootte aanpasbaar"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr ""
-"Er zou een reservekopie moeten gemaakt worden van alle gegevens op deze "
-"partitie."
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Na het veranderen van de grootte van partitie %s, zullen alle gegevens op "
-"deze partitie verloren gaan"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Kies de nieuwe grootte"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Nieuwe grootte in MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Naar welke schijf wenst u het te verplaatsen?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sector"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Naar welke sector wenst u het te verplaatsen?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Aan het verplaatsen"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Partitie aan het verplaatsen..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Kies een bestaande RAID om aan toe te voegen"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "nieuw"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Kies een bestaande LVM om aan toe te voegen"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "Naam van LVM?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Deze partitie kan niet gebruikt worden voor loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Loopback-bestandsnaam: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Voer een bestandsnaam in"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Loopback-bestand is al in gebruik, gelieve een ander te kiezen"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Het bestand bestaat al. Wenst u het te gebruiken?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Koppel-opties:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Diversen"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "apparaat"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "niveau"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "chunk-grootte"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Voorzichtig: deze operatie is gevaarlijk."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Welk type partitionering?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Sorry, het is zinloos om /boot zo ver achteraan de schijf te plaatsen (op "
-"een\n"
-"cylinder > 1024).\n"
-"Ofwel gebruikt u LILO en zal het niet werken, of u gebruikt LILO niet en u "
-"heeft\n"
-"/boot niet nodig."
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"De partitie die u selecteerde als rootpartitie (/) bevindt zich fysiek "
-"voorbij\n"
-"de 1024e cylinder van de harde schijf en u heeft geen /boot partitie.\n"
-"Indien u de LILO boot manager wenst te gebruiken, zorg er dan voor dat u "
-"een\n"
-"/boot partitie toevoegt aan het begin van de schijf"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"U heeft een software RAID partitie als root (/) geselecteerd.\n"
-"Geen bootloader kan dit aan zonder een /boot partitie, dus wees er zeker\n"
-"van ook een /boot-partitie toe te voegen."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Partitietabel van schijf %s wordt weggeschreven!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "U zal moeten herstarten voordat de aanpassing van kracht wordt"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Na het formatteren van partitie %s, zullen alle gegevens op deze partitie "
-"verloren zijn"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Bezig met formatteren"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Bezig met formatteren van loopback-bestand %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Bezig met formatteren van partitie %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Bestanden verbergen"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Bestanden naar de nieuwe partitie verplaatsen"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"Map %s bevat reeds gegevens\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Bezig met verplaatsen van bestanden naar de nieuwe partitie"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Bezig met kopiëren van %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Bezig met verwijderen van %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "partitie %s heet vanaf nu %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Apparaat: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS schijfletter: %s (dit is slechts een gok)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Type: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Naam: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Start: sector %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Grootte: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sectoren"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cylinder %d tot %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Geformatteerd\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Niet geformatteerd\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Gekoppeld\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Loopback-bestand(en): %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Standaard te starten partitie\n"
-" (om MS-DOS te booten, niet voor lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Niveau %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Chunk-grootte %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-schijven %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Loopback bestandsnaam: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"De kans is aanwezig dat deze\n"
-"partitie een Driver partitie is, u\n"
-"kunt hem waarschijnlijk beter met\n"
-"rust laten.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Deze speciale Bootstrap\n"
-"partitie is voor het\n"
-"duaal-opstarten van uw systeem.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Grootte: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Indeling: %s cylinders, %s koppen, %s sectoren\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-schijven %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Partitietabel-type: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "op bus %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Opties: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Sleutel voor bestandssysteemencryption"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Kies uw sleutel voor bestandssysteemencryption"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Deze encryption-sleutel is te makkelijk (moet tenminste %d tekens lang zijn)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "De encryption-sleutels kloppen niet met elkaar"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Encryptionsleutel"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Encryptionsleutel (nogmaals)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Verander partitietype"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Gelieve op een media-soort te klikken"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Servers zoeken"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatteren van %s mislukt"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Ik weet niet hoe %s in type %s te formatteren"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "het koppelen van partitie %s in map %s is mislukt"
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck is mislukt met afsluitcode %d of signaal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "fout bij ontkoppelen %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "eenvoudig"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "met /usr"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "server"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "U kan JFS niet gebruiken op een partitie kleiner dan 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "U kan ReiserFS niet gebruiken op een partitie kleiner dan 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Koppelpunten moeten beginnen met een /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Er is al een partitie met als koppelpunt %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "U kunt geen LVM logisch deel voor koppelpunt %s gebruiken"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Deze map zou binnen het root bestandssysteem moeten blijven"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"U benodigt een geavanceerd bestandssysteem (ext2, reiserfs) voor dit "
-"koppelpunt\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "U kunt geen versleuteld bestandssysteem voor koppelpunt %s gebruiken"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Niet voldoende vrije ruimte voor automatische toewijzing"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Niets meer te doen"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Fout bij het openen van %s voor schrijfbewerking: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Er is een fout opgetreden - er werden geen geldige apparaten gevonden "
-"waarop\n"
-"nieuwe bestandssystemen konden worden gecreëerd. Gelieve uw hardware na te\n"
-"kijken voor de oorzaak van dit probleem."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "U heeft helemaal geen partities!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux is een multi-gebruikerssysteem, dit betekent dat iedere "
-"gebruiker \n"
-"haar eigen voorkeuren, bestanden enzovoort kan hebben. U kunt de \n"
-"''Gebruikershandleiding'' lezen om hierover meer te weten te komen. Maar \n"
-"in tegenstelling tot \"root\", de \"administrator\", zullen de gebruikers "
-"die\n"
-" u hier toevoegt geen recht hebben om iets te veranderen behalve hun eigen \n"
-"bestanden en hun eigen configuratie. U zult tenminste één gebruiker voor \n"
-"uzelf aan moeten maken. Deze account is degene waar u voor dagelijks "
-"gebruik \n"
-"op zult inloggen. Alhoewel het erg praktisch is om iedere dag als \"root\" \n"
-"in te loggen, kan het ook erg gevaarlijk zijn! De kleinste vergissing kan \n"
-"ervoor zorgen dat uw hele systeem niet meer werkt. Wanneer u een \n"
-"grote vergissing maakt als een reguliere gebruiker, zou u sommige gegevens \n"
-"kunnen verliezen, maar niet het hele systeem.\n"
-"\n"
-"Eerst voert u uw echte naam in. Dit is uiteraard niet verplicht - u kunt \n"
-"alles invoeren wat u wilt. DrakX neemt dan het eerste woord dat u in het "
-"veld \n"
-"hebt ingevuld en brengt het over naar het veld \"Gebruikersnaam\". Dit is "
-"de \n"
-"naam die deze afzonderlijke gebruiker krijgt om in te loggen op het "
-"systeem. \n"
-"U kunt het veranderen. Dan zal u hier een wachtwoord moeten invoeren. Het \n"
-"wachtwoord van een (reguliere) gebruiker zonder privileges is niet zo \n"
-"cruciaal als dat van de \"root\"-gebruiker vanuit veiligheidsperspectief, \n"
-"maar dat is geen reden om het te verwaarlozen- tenslotte staan uw "
-"bestanden \n"
-"op het spel.\n"
-"\n"
-"Wanneer u klikt op \"Gebruiker aaanvaarden\", dan kunt u daarna zoveel \n"
-"gebruikers toevoegen als u wilt. Voeg een gebruiker toe voor elk van uw \n"
-"vrienden, uw vader of uw zus bijvoorbeeld. Als u klaar bent met het \n"
-"toevoegen van alle gebruikers die u wenst, selecteer dan \"Klaar\".\n"
-"\n"
-"Klikken op de \"Geavanceerd\"-knop stelt u in staat om de standaard \"shell"
-"\"\n"
-"voor een gebruiker te veranderen (standaard is dit bash)."
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Hierboven zijn de bestaande Linux partities afgebeeld die op uw harde\n"
-"schijf gevonden zijn. U kunt de keuzes die gemaakt zijn door de wizard\n"
-"behouden, ze zijn goed voor de meeste doorsnee installaties.\n"
-"Indien u veranderingen maakt, moet u in ieder geval een root partitie\n"
-"(\"/\") definiëren. Kies een partitie niet te klein, anders zult u niet in\n"
-"staat zijn genoeg software te installeren. Indien u uw gegevens op een\n"
-"aparte partitie wilt bewaren, dient u tevens een \"/home\" partitie te\n"
-"creëren (alleen mogelijk wanneer er meer dan één Linux partitie\n"
-"beschikbaar is).\n"
-"\n"
-"Elke partitie is als volgt afgebeeld: \"Naam\", \"Capaciteit\"\n"
-"\n"
-"\"Naam\" is als volgt opgebouwd: \"type harde schijf\", \"harde schijf-nummer"
-"\",\n"
-"\"partitienumer\" (bijvoorbeeld \"hda1\").\n"
-"\n"
-"\"Type harde schijf\" is \"hd\" als uw harde schijf van het IDE-type is en"
-"\"sd\" wanneer deze van het SCSI type is.\n"
-"\n"
-"\"Harde schijf-nummer\" is altijd een letter na \"hd\" of \"sd\". Voor IDE\n"
-"harde schijven:\n"
-"\n"
-" * \"a\" betekent \"master harde schijf op de primaire IDE controller\",\n"
-"\n"
-" * \"b\" betekent \"slave harde schijf op de primaire IDE controller\",\n"
-"\n"
-" * \"c\" betekent \"master harde schijf op de secundaire IDE controller\",\n"
-"\n"
-" * \"d\" betekent \"slave harde schijf op de secundaire IDE controller\".\n"
-"\n"
-"In het geval van SCSI harde schijven betekent een \"a\" \"laagste SCSI ID"
-"\",\n"
-"een \"b\" \"het op één na laagste SCSI ID\", etc."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"De Mandrake Linux installatie is verdeeld over meerdere CDROMs. DrakX \n"
-"weet of een geselecteerd pakket te vinden is op een andere CDROM en zal\n"
-"de huidige CD uitwerpen en u vragen om een andere in te leggen wanneer\n"
-"dat nodig is."
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"Het is nu tijd om te bepalen welke programma's u op uw systeem\n"
-"wenst te installeren. Er zijn duizenden pakketten beschikbaar voor Mandrake\n"
-"Linux, en er wordt niet van u verwacht dat u ze allemaal uit uw hoofd kent.\n"
-"\n"
-"Indien u een standaard-installatie vanaf CD-ROM uitvoert, zal u eerst\n"
-"gevraagd worden de CD's die u bij de hand heeft te specificeren (alleen\n"
-"in Expert-modus). Ga de CD-etiketten na en selecteer de vakjes die\n"
-"corresponderen met de CD's die u heeft voor de installatie. Klik op \"OK\"\n"
-"zodra u gereed bent om verder te gaan.\n"
-"\n"
-"Pakketten zijn samengebracht in groepen die corresponderen met een\n"
-"bepaald gebruik van uw computer. De groepen zelf zijn ingedeeld in vier\n"
-"categorieën:\n"
-"\n"
-"* \"Werkstation\": indien u van plan bent uw computer als werkstation te\n"
-"gaan gebruiken, selecteer dan één of meer van de corresponderende\n"
-"groepen. \n"
-"\n"
-"* \"Ontwikkeling\": als de computer gebruikt gaat worden voor programmeren,\n"
-"kiest u de gewenste groep(en).\n"
-"\n"
-"* \"Server\": als de computer bestemd is voor server-doeleinden, dan\n"
-"kunt u aangeven welke van de meest algemene diensten u op uw\n"
-"computer geďnstalleerd wilt zien.\n"
-"\n"
-"* \"Grafische Omgeving\": tot slot is dit waar u uw voorkeur voor een "
-"grafische\n"
-"omgeving kunt aangeven. Tenminste één moet geselecteerd zijn als u een\n"
-"grafisch werkstation wilt hebben!\n"
-"\n"
-"Bij het bewegen van de muispijl boven een groepnaam zal er een korte "
-"verklarende\n"
-"tekst over die groep getoond worden. Als u alle groepen deselecteert tijdens "
-"het\n"
-"uitvoeren van een reguliere installatie (in tegenstelling tot een "
-"opwaardering), dan\n"
-"zal een dialoogvenster verschijnen dat verscheidene opties voor een "
-"minimale\n"
-"installatie voorstelt:\n"
-" * \"Met X\" Installeer zo min mogelijk pakketten met behoud van een "
-"grafische\n"
-"werkomgeving;\n"
-" \n"
-" * \"Met basis-documentatie\" installeert het basissysteem plus algemene\n"
-"hulpprogramma's en hun documentatie. Deze installatie is geschikt om een "
-"server\n"
-"mee in te richten.\n"
-"\n"
-" * \"Werkelijk minimale installatie\" zal het absolute minimum installeren "
-"dat nodig\n"
-"is om een werkend Linux-systeem te verkrijgen, slechts met een "
-"commandoregel.\n"
-"Deze installatie is ongeveer 65MB groot.\n"
-"\n"
-"U kunt het \"Individuele pakketselectie\"-vakje selecteren, welke nuttig is "
-"als\n"
-"u bekend bent met de aangeboden pakketten of indien u totale controle wenst\n"
-"over wat er geďnstalleerd zal worden.\n"
-"\n"
-"In het geval dat u de installatie in \"Opwaarderen\"-modus heeft gestart, "
-"kunt u\n"
-"alle groepen deselecteren om te voorkomen dat er nieuwe pakketten "
-"geďnstalleerd\n"
-"worden. Dit is nuttig bij het repareren of het vernieuwen van een bestaand "
-"systeem."
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Tenslotte, afhankelijk van uw keus om al dan niet individuele pakketten\n"
-"te selecteren, wordt u een boom getoond bevattende alle pakketten\n"
-"geclassificeerd in groepen en subgroepen. Terwijl u door de boom bladert,\n"
-"kunt u gehele groepen, subgroepen of individuele pakketten selecteren.\n"
-"\n"
-"Wanneer u een pakket in de boom selecteert, verschijnt een beschrijving\n"
-"aan de rechterkant. Zodra uw selectie klaar is, klikt u de \"Installeren\"-\n"
-"knop welke het installatieproces in gang zal zetten. Afhankelijk van de\n"
-"snelheid van uw apparatuur en het aantal pakketten dat geďnstalleerd\n"
-"moet worden, kan het enige tijd duren om het proces te voltooien. Een\n"
-"geschatte tijd tot voltooiing wordt weergegeven op het scherm om u te\n"
-"helpen inschatten of er nog tijd is om te genieten van een kopje koffie.\n"
-"\n"
-"!! Als een server-pakket geselecteerd is, ofwel bedoeld ofwel omdat\n"
-"het onderdeel is van een gehele groep, zal u gevraagd worden om\n"
-"te bevestigen dat u deze servers echt wilt installeren. Onder Mandrake\n"
-"Linux worden alle geďnstalleerde servers standaard ingeschakeld\n"
-"tijdens het opstarten. Zelfs wanneer zij veilig zijn en geen bekende\n"
-"beveiligingsgebreken hadden op het moment dat de distributie "
-"werdnuitgebracht, kan het gebeuren dat beveiligingsfouten ontdekt worden\n"
-"nadat deze versie van Mandrake Linux afgemaakt werd. Indien u niet\n"
-"weet wat een bepaalde dienst geacht wordt te doen of waarom het\n"
-"geďnstalleerd wordt, klikt u dan \"Nee\". Klikken op \"Ja\" zorgt ervoor\n"
-"dat de getoonde diensten geďnstalleerd worden en dat ze automatisch\n"
-"ingeschakeld zullen worden. !!\n"
-"\n"
-"De \"Automatische afhankelijkheden\"-optie schakelt eenvoudigweg het\n"
-"waarschuwingsvenster uit dat verschijnt wanneer het installatieprogramma\n"
-"automatisch een pakket selecteert. Dit gebeurt omdat het vastgesteld heeft\n"
-"dat het een afhankelijkheid moet vervullen met een ander pakket om de\n"
-"installatie succesvol te kunnen voltooien.\n"
-"\n"
-"Het minuscule diskette-pictogram onderaan de lijst stelt u in staat de\n"
-"pakketten-lijst te laden die tijdens een eerdere installatie gekozen was.\n"
-"Als u klikt op dit pictogram zal u gevraagd worden een diskette in het\n"
-"diskettestation te plaatsen welke gecreëerd was aan het eind van een\n"
-"andere installatie. Zie de tweede tip van de laatste stap over hoe u een\n"
-"dergelijke diskette aanmaakt."
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"Het is nu mogelijk om uw internet- of netwerkverbinding in te stellen.\n"
-"Indien u wenst uw computer aan het Internet of aan een lokaal netwerk te\n"
-"verbinden, klik dan op \"OK\". De automatische bespeuring van netwerk-\n"
-"apparaten en modem zal worden opgestart. Als deze bespeuring mislukt,\n"
-"deselecteer dan het \"Automatische bespeuring gebruiken\"-vakje de\n"
-"volgende keer. U kunt ook besluiten het netwerk niet te configureren of\n"
-"het later pas te doen; in dat geval klikt u op de \"Annuleren\"-knop.\n"
-"Beschikbare verbindingstypen zijn:\n"
-"conventionele modem, ISDN-adapter, ADSL-verbinding, kabelmodem en\n"
-"tenslotte een eenvoudige LAN-verbinding (Ethernet).\n"
-"\n"
-"Wij zullen hier niet tot in detail ingaan op elke configuratie. Zorgt u er\n"
-"gewoon voor dat u alle instellingen van uw Internetprovider of\n"
-"systeembeheerder bij de hand heeft.\n"
-"\n"
-"U kunt het hoofdstuk over Internetverbindingen in het handboek\n"
-"raadplegen voor details over de configuratie, of gewoon wachten\n"
-"totdat uw systeem geďnstalleerd is en dan het beschreven programma\n"
-"gebruiken om uw verbinding te configureren.\n"
-"\n"
-"Indien u wenst het netwerk later na de installatie te configureren of\n"
-"indien u klaar bent met het configureren van uw verbinding, klikt u\n"
-"op \"Annuleren\"."
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"U kunt nu kiezen welke diensten u wil gestart hebben bij het opstarten.\n"
-"\n"
-"In dit overzicht staan alle diensten die beschikbaar zijn in de huidige\n"
-"installatie. Kijk ze aandachtig na en de-selecteer degenen die niet altijd\n"
-"nodig zijn bij het opstarten.\n"
-"\n"
-"U kunt een korte uitleg krijgen over een dienst door een specifieke dienst\n"
-"te selecteren. Wanneer u niet zeker bent of een dienst nuttig is of niet,\n"
-"dan is het veiliger om de standaard-instelling over te nemen.\n"
-"\n"
-"Wees vooral voorzichtig in deze stap als u uw machine als een server wil\n"
-"gebruiken: u zal waarschijnlijk de diensten die u niet nodig heeft niet "
-"willen\n"
-"starten. Onthoud alstublieft dat een aantal diensten gevaarlijk kunnen zijn\n"
-"wanneer ze geactiveerd zijn op een server. In het algemeen geldt: kies\n"
-"alleen de services die u echt nodig heeft."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"GNU/Linux houdt de tijd bij in GMT (Greenwich Mean Time) en vertaalt\n"
-"het naar lokale tijd volgens de tijdzone die u geselecteerd heeft. Het is\n"
-"echter mogelijk om dit te deactiveren door \"Hardware klok ingesteld op\n"
-"GMT\" te deselecteren zodat de hardware-klok dezelfde is als de systeem-\n"
-"klok. Dit is nuttig wanneer er op de computer nog een ander besturings-\n"
-"systeem staat zoals Windows.\n"
-"\n"
-"De \"Automatische tijdssynchronisatie\"-optie zal de klok automatisch\n"
-"bijstellen door verbinding te maken met een tijdsserver op internet. In\n"
-"de getoonde lijst kunt u een server kiezen bij u in de buurt. Uiteraard\n"
-"moet u een werkende internetverbinding hebben voordat deze functie\n"
-"werkt. Dit zorgt er tevens voor dat er een tijdsserver op uw computer\n"
-"wordt geďnstalleerd die mogelijkerwijs gebruikt kan worden door\n"
-"andere computers op uw lokale netwerk."
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"X (voor X Window System) is het hart van de GNU/Linux grafische interface\n"
-"waarvan alle grafische omgevingen (KDE, GNOME, AfterStep, WindowMaker...)\n"
-"afhankelijk zijn die met Mandrake Linux zijn meegeleverd. In deze stap zal "
-"DrakX\n"
-"trachten X automatisch te configureren.\n"
-"\n"
-"Het is uiterst ongebruikelijk dat dit mislukt, tenzij de hardware erg oud "
-"(of\n"
-"erg nieuw) is. Als het slaagt, zal X automatisch gestart worden in het "
-"beste\n"
-"oplossend vermogen mogelijk, afhankelijk van de grootte van uw monitor.\n"
-"Een venster zal verschijnen en u vragen of u het kunt zien.\n"
-"\n"
-"Indien u een \"Expert\"-installatie uitvoert, komt u in de X configuratie "
-"wizard.\n"
-"Zie het corresponderende stuk in de handleiding voor meer informatie over\n"
-"deze wizard.\n"
-"\n"
-"Als u het bericht tijdens de test kunt zien en \"Ja\" antwoordt, zal DrakX\n"
-"doorgaan naar de volgende stap. Zoniet, dan betekent dat gewoon dat de\n"
-"configuratie onjuist was. De test zal in dat geval automatisch eindigen na\n"
-"10 seconden en het scherm herstellen."
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"De eerste keer dat u de X configuratie probeert, zult u misschien niet\n"
-"erg tevreden zijn met het beeld (scherm te klein, naar links of naar rechts\n"
-"verschoven...). Daarom zal DrakX u vragen of de configuratie u bevalt,\n"
-"zelfs als X correct opstart. Het zal u tevens voorstellen om de "
-"configuratie\n"
-"te wijzigen door een lijst van geldige modi te tonen die het gevonden "
-"heeft,\n"
-"en u vragen er één te selecteren.\n"
-"\n"
-"Als een uiterste uitwijkmogelijkheid, als het u niet lukt X aan de praat te\n"
-"krijgen, kiest u \"Grafische kaart wijzigen\", selecteer \"Niet vermelde "
-"kaart\",en wanneer u gevraagd wordt welke server u wenst, kiest u \"FBDev\". "
-"Dit\n"
-"is een veilige optie die met iedere moderne grafische kaart werkt. Kiest u\n"
-"vervolgens \"Opnieuw testen\" om u ervan te vergewissen dat het werkt."
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Tenslotte zal u gevraagd wordne of u de grafische interface wilt zien\n"
-"bij het opstarten. Merk op dat deze vraag ook gesteld wordt zelfs als\n"
-"u niet ervoor gekozen hebt om de configuratie te testen. Vanzelfsprekend\n"
-"wilt u \"Nee\" antwoorden als uw machine als server moet dienen, of\n"
-"indien u er niet in slaagde het beeld te configureren."
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"De Mandrake Linux CD-ROM heeft een ingebouwde reddings-modus. U kunt\n"
-"er bij komen door op te starten van de CD-ROM, de \"F1\"-toets in te "
-"drukken\n"
-"tijdens het opstarten en \"rescue\" in te typen bij de aanwijzing. Maar in "
-"het\n"
-"geval dat uw computer niet kan opstarten van de CD-ROM, moet u terugkomen\n"
-"naar deze stap voor hulp in tenminste twee situaties:\n"
-"\n"
-" * wanneer de opstart-lader geďnstalleerd wordt, zal DrakX de boot sector "
-"(MBR)\n"
-"van uw eerste harde schijf overschrijven (tenzij u een andere "
-"opstartbeheerder\n"
-"gebruikt) zodat u op kunt starten met ofwel Windows ofwel GNU/Linux (ervan\n"
-"uitgaand dat u Windows op uw systeem heeft). Indien u Windows opnieuw\n"
-"moet installeren, zal het Microsoft installatieproces de boot sector "
-"herschrijven,\n"
-"en u zult dan niet meer in staat zijn GNU/Linux op te starten!\n"
-"\n"
-" * indien een probleem zich voordoet waardoor u GNU/Linux niet van de harde\n"
-"schijf kunt opstarten, zal deze diskette de enige manier zijn om GNU/Linux\n"
-"op te starten. Hij bevat een behoorlijk aantal systeemgereedschappen om\n"
-"uw systeem in oude staat te herstellen wanneer het gecrashed is door een\n"
-"stroomonderbreking, een ongelukkige typfout, een vergissing in een\n"
-"wachtwoord, of wat voor reden dan ook.\n"
-"\n"
-"Wanneer u op deze stap klikt, wordt u gevraagd een diskette te plaatsen in\n"
-"het diskettestation. De diskette moet leeg zijn of geen gegevens bevatten "
-"die\n"
-"u nog nodig heeft. Het is niet nodig om hem te formatteren omdat DrakX de\n"
-"gehele diskette zal herschrijven."
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Op dit punt moet u kiezen waar op uw harde schijf u uw Mandrake Linux\n"
-"besturingssysteem wilt installeren. Als uw harde schijf leeg is of als een\n"
-"ander besturingssysteem alle beschikbare ruimte inneemt, dan zult u\n"
-"de harde schijf moeten partitioneren. Partitioneren houdt in dat u uw harde\n"
-"schijf in logische stukken onderverdeelt om ruimte te creëren voor uw "
-"nieuwe\n"
-"Mandrake Linux besturingssysteem.\n"
-"\n"
-"Omdat de effecten van het partitioneringsproces over het algemeen niet\n"
-"terug te draaien zijn, kan partitioneren intimiderend en spannend zijn voor\n"
-"een onervaren gebruiker. Gelukkig is er een wizard die dit proces\n"
-"vereenvoudigt. Raadpleeg de handleiding voordat u begint en neem de\n"
-"tijd.\n"
-"\n"
-"Indien u de installatie in expert-modus draait, komt u terecht in "
-"DiskDrake,\n"
-"het partitioneringsprogramma van Mandrake Linux, dat u in staat stelt\n"
-"om uw partities precies af te stellen. Zie het hoofdstuk over DiskDrake\n"
-"in de handleiding. Voor de installatie-interace kunt u de wizards gebruiken\n"
-"die hier beschreven zijn door op de \"Wizard\"-knop van het dialoogvenster\n"
-"te klikken.\n"
-"\n"
-"Indien er reeds partities gedefinieerd zijn, hetzij van een vorige "
-"installatie\n"
-"hetzij door een ander partitioneringsprogramma, dan kunt u deze\n"
-"eenvoudigweg selecteren om uw Linux-systeem op te installeren.\n"
-"\n"
-"Indien er geen partities gedefinieerd zijn, zult u ze moeten aanmaken met\n"
-"de wizard. Afhankelijk van de configuratie van uw harde schijf, zijn er\n"
-"verscheidene opties beschikbaar:\n"
-"\n"
-" * \"Gebruik vrije ruimte\": deze optie zal leiden tot het automatisch\n"
-"partitioneren van uw lege schijf/schijven. Er worden u verder geen vragen\n"
-"gesteld.\n"
-"\n"
-" * \"Gebruik bestaande partitie\": de wizard heeft één of meer bestaande\n"
-"Linux-partities op uw harde schijf gevonden. Indien u deze wilt gebruiken,\n"
-"kiest u deze optie.\n"
-"\n"
-" * \"Gebruik vrije ruime op de Windows-partitie\": indien Microsoft Windows\n"
-"op uw harde schijf is geďnstalleerd en alle beschikbare ruimte in beslag "
-"neemt,\n"
-"dient u vrije ruimte te creëren voor Linux-gegevens. Om dat te doen, kunt u "
-"uw\n"
-"Microsoft Windows-partitie en -gegevens wissen (zie \"Wis gehele schijf\"\n"
-"of \"Expert-modus\"-oplossingen) om uw Microsoft Windows-partitie te\n"
-"verkleinen. Het aanpassen van de grootte kan bewerkstelligd worden zonder\n"
-"verlies van enige gegevens. Deze oplossing is aanbevolen indien u zowel\n"
-"Mandrake Linux en Microsoft Windows op dezelfde computer wilt gebruiken.\n"
-"\n"
-" Laat het goed tot u doordringen, voordat u deze optie kiest, dat uw\n"
-"Microsoft Windows partitie na afloop van deze procedure minder groot\n"
-"zal zijn dan hij nu is. U zult minder vrije ruimte hebben onder\n"
-"Microsoft Windows om uw gegevens op te slaan of om nieuwe software te\n"
-"installeren.\n"
-"\n"
-" * \"Gehele schijf wissen\": indien u alle gegevens en alle partities op uw\n"
-"harde schijf wilt verwijderen en vervangen door uw nieuwe Mandrake Linux-\n"
-"systeem, kiest u deze optie. Weest u voorzichtig met deze oplossing omdat u\n"
-"na bevestiging deze keuze niet meer ongedaan kunt maken.\n"
-"\n"
-" !! Als u deze optie kiest, zullen alle gegevens op uw schijf verloren "
-"gaan. !!\n"
-"\n"
-" * \"Verwijder Windows\": dit wist simpelweg alles op de schijf en begint "
-"van\n"
-"voren af aan met partitioneren. Alle gegevens op uw schijf zullen verloren\n"
-"gaan.\n"
-"\n"
-" !! Als u deze optie kiest, zullen alle gegevens op uw schijf verloren "
-"gaan. !!\n"
-"\n"
-" * \"Expert-modus\": kies deze optie indien u handmatig uw harde schijf "
-"wenst\n"
-"te partitioneren. Weest u voorzichtig - het is een krachtige maar riskante "
-"keuze.\n"
-"U kunt erg gemakkelijk al uw gegevens kwijtraken. Kiest u derhalve niet "
-"hiervoor\n"
-"tenzij u weet wat u doet."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"Alstublieft. De installatieprocedure is voltooid en uw GNU/Linux-systeem\n"
-"is klaar voor gebruik. Klik gewoon op \"OK\" om uw computer opnieuw te\n"
-"starten. Indien u een meervoudig opstartsysteem gebruikt, kunt u GNU/Linux\n"
-"of Windows opstarten, welke u prefereert, zodra de computer de\n"
-"zelftestprocedure heeft doorlopen.\n"
-"\n"
-"De \"Geavanceerd\"-knop (alleen in Expert-modus) toont twee knoppen meer\n"
-"voor:\n"
-"\n"
-" * \"auto-installatiediskette aanmaken\": om een installatiediskette te\n"
-"creëren weke de gehele installatie automatisch zal uitvoeren zonder hulp\n"
-"van een beheerder, gelijkend op de installatie die u zonet heeft\n"
-"geconfigureerd.\n"
-"\n"
-"Merk op dat er twee verschillende opties zijn na het klikken van deze knop:\n"
-"\n"
-" * \"Afspelen\". Dit is een gedeeltelijk geautomatiseerde installatie, "
-"omdat\n"
-"de partitioneringsstap (alleen deze) interactief blijft.\n"
-"\n"
-" * \"Geautomatiseerd\". Volledig geautomatiseerde installatie: de harde\n"
-"schijf wordt volledig overschreven en alle gegevens erop raken verloren.\n"
-"\n"
-" Deze mogelijkheid is erg handig wanneer u een grote hoeveelheid\n"
-"soortgelijke computers installeert. Zie ook de Auto-installatie afdeling op\n"
-"onze website.\n"
-"\n"
-" * \"Pakketselectie opslaan\"(*) : slaat de pakketselectie op zoals u hem\n"
-"eerder heeft gemaakt. Vervolgens, wanneer u een andere installatie\n"
-"uitvoert, plaatst u de diskette in het diskettestation en draait u het\n"
-"installatieprogramma waarna u naar het helpscherm gaat door op de\n"
-"[F1]-toets te drukken, en door ''linux defcfg=\"floppy\" '' in te geven.\n"
-"\n"
-"(*) U heeft een FAT-geformatteerde dskette nodig (om er één onder\n"
-"GNU/Linux te creëren, typt u \"mformat a:\")"
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Iedere nieuw gedefinieerde partitie moet geformatteerd worden voor\n"
-"gebruik (formatteren betekent het creëren van een bestandssysteem).\n"
-"\n"
-"Op dit moment wilt u wellicht enkele reeds bestaande partities\n"
-"herformatteren om alle gegevens erop te wissen. Indien u dat wenst\n"
-"te doen, selecteert u dan ook deze partities.\n"
-"\n"
-"Merk op dat het niet nodig is om alle reeds bestaande partities te\n"
-"herformatteren. U dient de partities waar het besturingssysteem op\n"
-"staat te herformatteren (zoals \"/\", \"/usr\" of \"/var\") maar u hoeft\n"
-"geen partities te herformatteren die gegevens bevatten die u wenst\n"
-"te bewaren (gewoonlijk \"/home\").\n"
-"\n"
-"Weest u alstublieft voorzichtig met het selecteren van partities. Na het\n"
-"formatteren zullen alle gegevens op de geselecteerde partities definitief\n"
-"verwijderd zijn.\n"
-"\n"
-"Klik op \"OK\" wanneer u klaar bent om de partities te formatteren.\n"
-"\n"
-"Klik op \"Annuleren\" indien u een andere partitie voor uw nieuwe\n"
-"Mandrake Linux besturingssysteem wilt kiezen.\n"
-"\n"
-"Klik op \"Geavanceerd\" indien u partities wenst te selcteren die op\n"
-"onleesbare blokken gecontroleerd zullen worden."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Uw nieuwe Mandrake Linux besturingssysteem wordt nu geďnstalleerd.\n"
-"Afhankelijk van het aantal pakketten dat u zult installeren en de snelheid\n"
-"van uw computer, kan deze operatie enkele minuten tot een behoorlijk lange\n"
-"tijd in beslag nemen.\n"
-"\n"
-"Even geduld alstublieft."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-"Op het moment dat u Mandrake Linux installeert, is het waarschijnlijk\n"
-"dat sommige pakketten vernieuwd zijn sinds het moment dat het werd\n"
-"uitgebracht. Sommige onvolkomenheden kunnen gerepareerd zijn en\n"
-"beveiligingsproblemen opgelost. Om u te kunnen laten profiteren van\n"
-"deze vernieuwingen kunt u ze nu downloaden van het internet.\n"
-"Kies \"Ja\" indien u een werkende internetverbinding heeft, of \"Nee\"\n"
-"als u liever later vernieuwde pakketten installeert.\n"
-"\n"
-"Wanneeru op \"Ja\" klikt verschijnt er een lijst van plaatsen waar\n"
-"vernieuwingen van kunnen worden opgehaald. Kies degene waar\n"
-"u zich het dichtst bij in de buurt bevindt. Daarna verschijnt een\n"
-"pakketselectieboom: ga de selectie na en druk op \"Installeren\"\n"
-"om de geselecteerde pakketten op te halen en te installeren. Druk\n"
-"op \"Annuleren\" om af te breken."
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Voordat u verdergaat dient u eerst de voorwaarden in de licentie\n"
-"aandachtig te lezen. Zij beslaan de gehele Mandrake Linux distributie,\n"
-"en indien u niet akkoord gaat met alle voorwaarden erin klikt u op de\n"
-"\"Weigeren\"-knop hetgeen de installatie onmiddelijk zal afbreken. Om\n"
-"verder te gaan met de installatie, klikt u op de \"Accepteren\"-knop."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"Op dit punt is het tijd om het beveiligingsniveau te kiezen voor deze\n"
-"computer. Als een vuistregel is aan te houden dat hoe meer blootgesteld\n"
-"de computer is, en hoe meer cruciale gegevens erop opgeslagen zijn,\n"
-"hoe hoger het beveiligingsniveau moet zijn. Echter, een hoger\n"
-"beveiligingsniveau gaat meestal ten koste van gebruiksgemak. U zij\n"
-"verwezen naar het MSEC-hoofdstuk van de \"Reference Manual\" voor\n"
-"meer informatie over de betekenis van deze niveaus.\n"
-"\n"
-"In het geval dat u niet weet wat te kiezen, behoudt u de standaard optie."
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Op dit punt moet u kiezen welke partitie(s) gebruikt zullen worden voor\n"
-"de installatie van uw Mandrake Linux systeem. Indien er reeds partities\n"
-"gedefinieerd zijn, van een vorige GNU/Linux installatie of door een\n"
-"ander partitioneringsprogramma, kunt u bestaande partities gebruiken.\n"
-"In andere gevallen moeten er harde schijf-partities gedefinieerd worden.\n"
-"\n"
-"Om partities te creëren, dient u eerst een harde schijf te kiezen. U kunt "
-"de\n"
-"te partitioneren schijf selecteren door op \"hda\" te klikken voor de "
-"eerste\n"
-"IDE-schijf, \"hdb\" voor de tweede, \"sda\" voor de eerste SCSI-schijf\n"
-"enzovoort.\n"
-"\n"
-"Om de geselecteerde harde schijf te partitioneren, kunt u deze opties\n"
-"gebruiken:\n"
-"\n"
-" * \"Alles wissen\": deze optie verwijdert alle partities op de "
-"geselecteerde\n"
-"harde schijf.\n"
-"\n"
-" * \"Automatisch toewijzen\": deze optie creëert automatisch Ext2- en swap-\n"
-"partities in de vrije ruimte op uw harde schijf.\n"
-"\n"
-" * \"Meer\": geeft toegang tot extra opties:\n"
-"\n"
-" * \"Partitietabel opslaan\": slaat de partitietabel op op een diskette. "
-"Nuttig om\n"
-"later zonodig de partitietabel te herstellen. Het is sterk aanbevolen deze "
-"stap uit\n"
-"te voeren.\n"
-" * \"Partitietabl herstellen\": deze optie stelt u in staat om een eerder "
-"opgeslagen\n"
-"partitietabel van diskette te herstellen.\n"
-"\n"
-" * \"Partitietabel redden\": indien uw partitietabel is beschadigd, kunt "
-"u deze\n"
-"trachten te herstellen met deze optie. Weest u voorzichtig en onthoud dat "
-"dit\n"
-"kan mislukken.\n"
-"\n"
-" * \"Partitietabel herladen\": gooit alle veranderingen weg en laadt de\n"
-"partitietabel waarmee u begon\n"
-"\n"
-" * \"Auto-koppeling verwisselbare media\": het deselecteren van deze "
-"optie\n"
-"dwingt gebruikers om handmatig verwisselbare media zoals diskettes en\n"
-"CD-ROMs te koppelen en te ontkoppelen.\n"
-"\n"
-" * \"Wizard\": gebruik deze optie indien u een wizard wenst te gebruiken om\n"
-"uw harde schijf mee te partitioneren. Dit is aanbevolen als u geen brede "
-"kennis\n"
-"heeft over partitioneren.\n"
-"\n"
-" * \"Ongedaan maken\": gebruik deze optie om uw wijzigingen te annuleren.\n"
-"\n"
-" * \"Schakel naar normale / expert modus\": laat extra handelingen toe op\n"
-"partities (Type, opties, formatteren) en geeft meer informatie.\n"
-"\n"
-" * \"Klaar\": wanneer u klaar bent met het partitioneren van uw harde "
-"schijf, zal dit\n"
-"de wijzigingen wegschrijven naar schijf.\n"
-"\n"
-"Merk op: u kunt iedere optie met behulp van het toetsenbord bereiken. "
-"Navigeer door\n"
-"de partities met behulp van [Tab] en [Omhoog/Omlaag] pijlen.\n"
-"\n"
-"Wanneer een partitie is geselecteerd, kunt u deze toetscombinaties "
-"gebruiken:\n"
-"\n"
-" * Ctrl+c om een nieuwe partitie te creëren (als een lege ruimte is "
-"geselecteerd);\n"
-"\n"
-" * Ctrl+d om een partitie te verwijderen;\n"
-"\n"
-" * Ctrl+m om het koppelpunt in te stellen.\n"
-"\n"
-"Voor meer informatie over de verschillende types bestandssystemen die er "
-"zijn,\n"
-"leest u het hoofdstuk 'ext2fs' van de ``Referentie Handleiding''.\n"
-"\n"
-"In het geval dat u op een PPC computer aan het installeren bent, zult u een "
-"kleine\n"
-"HFS \"bootstrap\"-partitie van tenminste 1MB willen creëren welke gebruikt "
-"zal\n"
-"worden door de yaboot opstartlader. Indien u liever de partitie wat groter "
-"maakt,\n"
-"zeg 50MB, dan vindt u het misschien een nuttige plek om een reserve kernel-\n"
-"en ramdisk beeldbestand in op te slaan voor opstart-noodgevallen."
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Er is meer dan één Microsoft Windows partitie op uw harde schijf bespeurd.\n"
-"Kiest u degene die u wilt verkleinen om uw nieuwe Mandrake Linux\n"
-"besturingssysteem te kunnen installeren.\n"
-"\n"
-"Elke partitie wordt getoond als volgt: \"Linux naam\", \"Windows naam\"\n"
-"\"Capaciteit\".\n"
-"\n"
-"\"Linux naam\" is gestructureerd: \"harde schijf-type\", \"harde schijf-teken"
-"\",\n"
-"\"partitienummer\" (bijvoorbeeld \"hda1\").\n"
-"\n"
-"\"Harde schijf-type\" is \"hd\" indien uw harde schijf een IDE-schijf is en\n"
-"\"sd\" indien het een SCSI-schijf is.\n"
-"\n"
-"\"Harde schijf-teken\" is altijd een letter na \"hd\" of \"sd\". Bij IDE-\n"
-"harde schijven:\n"
-"\n"
-" * \"a\" betekent \"master apparaat op de primaire IDE controller\",\n"
-"\n"
-" * \"b\" betekent \"slave apparaat op de primaire IDE controller\",\n"
-"\n"
-" * \"c\" betekent \"master apparaat op de secundaire IDE controller\",\n"
-"\n"
-" * \"d\" betekent \"slave apparaat op de secundaire IDE controller\".\n"
-"\n"
-"Bij SCSI harde schijven betekent een \"a\" \"laagste SCSI ID\", een\"b\" "
-"\"op één na laagste SCSI ID\", enzovoort.\n"
-"\n"
-"\"Windows naam\" is de letter van uw harde schijf onder Windows (de\n"
-"eerste schijf of partitie wordt \"C:\" genoemd)."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Even geduld a.u.b. Deze operatie kan enkele minuten duren."
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"DrakX moet nu weten of u een standaard (\"Aanbevolen\") installatie wilt\n"
-"uitvoeren, of meer controle wilt kunnen uitoefenen (\"Expert\"). U heeft "
-"verder\n"
-"de keus tussen het uitvoeren van een nieuwe installatie en het opwaarderen\n"
-"van een reeds aanwezig Mandrake Linux systeem:\n"
-" * \"Installeren\" Wist het vorige systeem volledig. Echter, afhankelijk van "
-"hoe\n"
-"uw computer momenteel is ingesteld, is het mogelijk om oude (Linux- of "
-"andere)\n"
-"partities onveranderd te behouden.\n"
-"\n"
-" * \"Opwaarderen\" De installatieklasse laat u eenvoudigweg de pakketten\n"
-"vernieuwen die nu op uw Mandrake Linux-systeem geďnstalleerd zijn. Het\n"
-"behoudt de huidige partities van uw harde schijven zowel als de\n"
-"gebruikersconfiguraties. Alle andere configuratiestappen van een gewone\n"
-"installatie zullen beschikbaar blijven.\n"
-"\n"
-" * \"Alleen pakketten opwaarderen\" Deze gloednieuwe installatieklasse\n"
-"laat u een bestaand Mandrake Linux-systeem opwaarderen met behoud\n"
-"van de gehele systeemconfiguratie. Het is mogelijk om nieuwe pakketten\n"
-"toe te voegen aan de huidige installatie.\n"
-"\n"
-"Opwaarderen zou goed moeten gaan voor Mandrake Linux-systemen\n"
-"vanaf versie 8.1.\n"
-"\n"
-"Kies, afhankelijk van uw kennis van GNU/Linux, één van de volgende\n"
-"mogelijkheden:\n"
-"\n"
-" * Aanbevolen: kies dit als u nog nooit een GNU/Linux besturingssysteem "
-"hebt\n"
-"geďnstalleerd. De installatie zal erg gemakkelijk verlopen en er zullen u\n"
-"slechts enkele vragen gesteld worden.\n"
-"\n"
-" * Expert: als u een goede kennis bezit van GNU/Linux kunt u deze\n"
-"installatieklasse kiezen. De expert-installatie staat u toe een in hoge "
-"mate\n"
-"aangepaste installatie uit te voeren. Het beantwoorden van sommige vragen\n"
-"kan moeilijk zijn als u geen goede kennis van GNU/Linux bezit, dus kies dit\n"
-"niet tenzij u weet wat u doet."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Normaal gesproken selecteert DrakX het juiste toetsenbord voor u\n"
-"(afhankelijk van de taal die u heeft gekozen) en zult u deze stap niet eens\n"
-"te zien krijgen. Het is echter mogelijk dat u een toetsenbord bezit dat "
-"niet\n"
-"exact correspondeert met uw taal: bijvoorbeeld, als u een Engels sprekende\n"
-"Zwitser bent wilt u nog steeds dat uw toetsenbordinstelling op Zwitsers "
-"staat.\n"
-"Of indien u Engels spreekt maar zich in Quebec bevindt, verkeert u "
-"misschien\n"
-"in dezelfde situatie. In beide gevallen zult u terug moeten gaan naar deze\n"
-"installatiestap en het juiste toetsenbord uit de lijst kiezen.\n"
-"\n"
-"Klik op de \"Meer\"-knop om de complete lijst van ondersteunde\n"
-"toetsenbordindelingen te zien."
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Kiest u de gewenste taal voor installatie en gebruik op uw computer.\n"
-"\n"
-"Door te klikken op de \"Geavanceerd\"-knop kunt u andere talen selecteren\n"
-"die op uw werkstation geďnstalleerd moeten worden. Het selecteren van\n"
-"andere talen zal de taalspecifieke bestanden voor systeemdocumentatie\n"
-"en applicaties installeren. Als u bijvoorbeeld gastheer bent voor Spaanse\n"
-"gebruikers op uw machine, selecteert u Nederlands als eerste taal in het\n"
-"boom-overzicht en in de Geavanceerd-afdeling klikt u op de grijze ster "
-"naast\n"
-"\"Spaans|Spanje\".\n"
-"\n"
-"Merk op dat meerdere talen geďnstalleerd kunnen worden. Zodra u enige\n"
-"extra taalgebieden heeft geselecteerd, klikt u op de \"OK\"-knop om verder\n"
-"te gaan."
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"Normaal gesproken neemt DrakX aan dat u een tweeknops-muis heeft en\n"
-"zal deze instellen voor het nadoen van een derde knop. DrakX zoekt zelf uit\n"
-"of dit een PS/2-, seriële- of USB-muis is.\n"
-"\n"
-"Indien u een ander type muis wenst te specificeren, selecteer dan het "
-"juiste\n"
-"type uit de getoonde lijst.\n"
-"\n"
-"Indien u een andere muis kiest dan de standaardmuis, zult u een muis-\n"
-"testscherm te zien krijgen. Gebruik de knoppen en het wieltje om te\n"
-"controleren dat de instellingen goed zijn. Als de muis niet correct werkt,\n"
-"druk dan op de spatiebalk of Enter om te \"Annuleren\" en kies opnieuw."
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Gelieve de juiste poort te kiezen. COM1 onder Windows wordt bijvoorbeeld\n"
-"\"ttyS0\" genoemd onder GNU/Linux."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"Dit is de meest cruciale beslissing voor de beveiliging van uw GNU/Linux\n"
-"systeem: u moet het \"root\"-wachtwoord invoeren. \"root\" is de systeem-\n"
-"beheerder en is de enige die geautoriseerd is om updates uit te voeren,\n"
-"gebruikers toe te voegen, de algehele systeemconfiguratie te wijzigen,\n"
-"enzovoort. Kortom, \"root\" kan alles doen! Daarom dient u een lastig\n"
-"te raden wachtwoord te kiezen - DrakX vertelt het u als het te makkelijk\n"
-"is. Zoals u kunt zien kunt u ervoor kiezen geen wachtwoord in te vullen,\n"
-"maar dit raden wij sterk af al was het maar om deze ene reden: denk\n"
-"niet dat alleen omdat u GNU/Linux opgestart heeft, uw andere\n"
-"besturingssystemen niet aangetast kunnen worden door vergissingen.\n"
-"Omdat \"root\" alle beperkingen kan overschrijden en onbedoeld alle\n"
-"gegevens op partities kan wissen door achteloos deze partities te\n"
-"benaderen, is het belangrijk dat het lastig is om \"root\" te worden.\n"
-"\n"
-"Het wachtwoord zou een mix van alfanumerieke karakters moeten zijn en\n"
-"tenminste 8 karakters lang. Schrijf nooit het \"root\"-wachtwoord op - dat\n"
-"maakt het te makkelijk om een systeem te compromitteren.\n"
-"\n"
-"Aan de andere kant, maak ook het wachtwoord niet te lang of gecompliceerd\n"
-"omdat u het moet kunnen onthouden zonder al te veel moeite. \n"
-"\n"
-"Het wachtwoord zal niet op het scherm getoond worden wanneer u het\n"
-"intypt. Vandaar dat u het wachtwoord tweemaal moet intypen om de kans\n"
-"te verminderen dat u een typfout maakt. Indien u toevallig dezelfde typfout\n"
-"twee keer maakt, dan zal dit \"incorrecte\" wachtwoord gebruikt moeten\n"
-"worden bij de eerste keer dat u verbinding maakt.\n"
-"\n"
-"In expert-modus wordt u gevraagd of u verbinding gaat maken met een\n"
-"authenticatie-server zoals NIS of LDAP.\n"
-"\n"
-"Indien uw netwerk het LDAP (of NIS) protocol gebruikt voor authenticatie,\n"
-"selecteer dan \"LDAP\" (of NIS). In het geval dat u dit niet weet, "
-"raadpleeg\n"
-"dan uw netwerkbeheerder.\n"
-"\n"
-"Indien uw computer niet verbonden is aan een beheerd netwerk, zult u\n"
-"willen kiezen voor \"Lokale bestanden\" als wijze van authenticatie."
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"LILO en GRUB zijn opstartladers voor GNU/Linux. Normaal gesproken\n"
-"is deze fase volledig geautomatiseerd. In feite analyseert DrakX de\n"
-"bootsector van de schijf en handelt al naar gelang hetgeen hier\n"
-"gevonden wordt:\n"
-"\n"
-" * als een Windows bootsector gevonden is, zal deze vervangen\n"
-"worden door een GRUB/LILO bootsector. Dientengevolgde zult u\n"
-"ofwel GNU/Linux kunnen opstarten ofwel een ander besturingssysteem;\n"
-"\n"
-" * als een GRUB- of LILO bootsector gevonden is zal deze vervangen\n"
-"worden door een nieuwe;\n"
-"\n"
-"In het geval dat er onzekerheid is, zal DrakX een dialoogvenster\n"
-"weergeven met diversie opties.\n"
-"\n"
-" * \"Te gebruiken opstartlader\": u heeft drie keuzes:\n"
-"\n"
-" * \"GRUB\": indien u GRUB prefereert (tekstmenu).\n"
-"\n"
-" * \"LILO met grafisch menu\" indien u LILO met grafische interface\n"
-"prefereert.\n"
-"\n"
-" * \"LILO met tekstmenu\": indien u LILO met tekstmenu-interface\n"
-"prefereert.\n"
-"\n"
-" * \"Opstartapparaat\": in de meeste gevallen zult u de standaardkeuze\n"
-"(\"/dev/hda\") niet veranderen, maar als u dat prefereert kan de\n"
-"opstartlader op de tweede harde schijf (\"/dev/hdb\") geďnstalleerd\n"
-"worden, of zelfs op een diskette (\"/dev/fd0\").\n"
-"\n"
-" * \"Periode voordat standaard beeldbestand opgestard wordt\":\n"
-"wanneer de computer opnieuw wordt opgestart, is dit de periode\n"
-"die de gebruiker heeft om een ander item te kiezen uit het opstartmenu\n"
-"voordat de standaardoptie gekozen wordt.\n"
-"\n"
-"!! Let op dat indien u geen opstartlader installeert (door hier \"Annuleren"
-"\"\n"
-"te kiezen) u ervoor moet zorgen dat u een manier heeft om uw Mandrake\n"
-"Linux-systeem op te starten! Zorg er tevens voor dat u weet wat u doet\n"
-"wanneer u één van de opties wijzigt. !!\n"
-"\n"
-"Onder de \"Geavanceerd\"-knop in dit dialoogvenster zitten veel\n"
-"geavanceerde opties, waar alleen een gevorderde gebruiker iets\n"
-"aan heeft.\n"
-"\n"
-"Nadat u de algemene opstartlader-parameters heeft geconfigureerd,\n"
-"wordt u de lijst van opstartopties getoond die beschikbaar zullen zijn\n"
-"bij het opstarten.\n"
-"\n"
-"Als er een ander besturingssysteem op uw computer geďnstalleerd is, zal\n"
-"het automatisch aan het opstartmenu worden toegevoegd. U kunt hier de\n"
-"bestaande opties fijn afregelen. Selecteer een item en klik op \"Wijzigen\"\n"
-"om hem te wijzigen of te verwijderen; \"Toevoegen\" creëert een nieuw\n"
-"item en \"Klaar\" gaat door naar de volgende installatiestap."
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (de LInux LOader) en GRUB zijn opstart-laders: ze kunnen Linux of\n"
-"eender welk ander besturingssysteem opstarten op uw computer.\n"
-"Normaal gesproken worden deze besturingssystemen correct bespeurd en\n"
-"geďnstalleerd. Als dit niet het geval is, kunt u handmatig een ingang "
-"toevoegen\n"
-"op dit scherm. Let goed op dat u de juiste opties kiest.\n"
-"\n"
-"U wilt verder misschien niet iedereen toegang geven tot die "
-"besturingssystemen.\n"
-"In dat geval kunt u de overeenkomstige ingangen verwijderen. Maar dan zult\n"
-"u echter wel een opstartdiskette nodig hebben om ze nog te kunnen opstarten!"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Hier moet u ingeven waar u de informatie wenst te\n"
-"plaatsen die nodig is om GNU/Linux op te starten.\n"
-"\n"
-"\n"
-"Tenzij u precies weet wat u doet, kiest u \"Eerste sector van\n"
-"station (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-"Hier selecteren we een printsysteem voor uw computer. Andere\n"
-"besturingssystemen geven u er wellicht maar één, maar Mandrake\n"
-"heeft er drie.\n"
-"\n"
-" * \"pdq\" - hetgeen betekent \"print, don't queue\", is de keuze indien\n"
-"u een directe verbinding tussen uw computer en uw printer heeft en u\n"
-"in staat wilt zijn om printtaken snel te stoppen in het geval van\n"
-"papierstoringen en u niet beschikt over netwerkprinters. Het kan\n"
-"alleen omgaan met erg simpele netwerkprinttaken en is enigszins\n"
-"langzaam wanneer gebruikt in een netwerk. Kies \"pdq\" indien\n"
-"dit uw eerste kennismaking met GNU/Linux is. U kunt uw keuze\n"
-"achteraf nog wijzigen door PrinterDrake te draaien vanuit het\n"
-"Mandrake Controlecentrum op de expert-knop te klikken.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'' is uitstekend geschikt\n"
-"om naar uw lokale printer af te drukken maar ook naar de andere kant\n"
-"van de planeet. Het is eenvoudig en kan dienstdoen als een server of\n"
-"een client voor het antieke \"lpd\" printsysteem, zodat het compatibel\n"
-"is met voorgaande systemen. Het kent vele kunstjes, maar een\n"
-"basisinstallatie is bijna net zo eenvoudig als \"pdq\". Indien u dit nodig\n"
-"heeft om een \"lpd\"-server te emuleren, dient u de \"cups-lpd\"-daemon\n"
-"in te schakelen. CUPS heeft grafische schillen voor het afdrukken of\n"
-"het kiezen van printeropties.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. Dit systeem kan\n"
-"ongeveer hetzelfde als de anderen, maar het kan ook afdrukken naar\n"
-"printers gekoppeld aan een Novell Netwerk, omdat het het IPX-protocol\n"
-"ondersteunt. Verder kan het direct afdrukken naar shell-opdrachten.\n"
-"Indien u Novell nodig heeft of het afdrukken naar opdrachten zonder\n"
-"een afzonderlijk pijplijn-construct, gebruik dan lprNG. In andere gevallen\n"
-"verdient CUPS de voorkeur omdat het eenvoudiger is en beter werkt\n"
-"in netwerkverband."
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX is nu bezig met het bespeuren van IDE-apparaten die in uw\n"
-"computer aanwezig zijn. Het zal tevens zoeken naar één of meer PCI\n"
-"SCSI-kaart(en) in uw systeem. Als een SCSI-kaart gevonden is, zal\n"
-"DrakX automatisch he geschikte stuurprogramma installeren.\n"
-"\n"
-"Omdat hardware-bespeuring niet altijd een stuk hardware bespeurt, zal\n"
-"DrakX u vragen om te bevestigen dat er een PCI SCSI-kaart aanwezig is.\n"
-"Klik op \"Ja\" indien u weet dat er een SCSI-kaart in uw machine is\n"
-"geďnstalleerd. U krijgt een lijst van SCSI-kaarten te zien waaruit u kunt\n"
-"kiezen. Klik op \"Nee\" indien u geen SCSI-hardware heeft. In het geval\n"
-"dat u niet zeker bent dan kunt u de lijst van bespeurde hardware in uw\n"
-"computer nagaan door \"Bekijk hardware-info\" te selecteren en op \"OK\"\n"
-"te klikken. Bekijk de lijst van hardware en klik vervolgens op de \"OK\"-\n"
-"knop om terug te gaan naar de SCSI-interface vraag.\n"
-"\n"
-"Indien u uw adapter handmatig moet aangeven zal DrakX vragen of u\n"
-"er opties voor wilt specificeren. U kunt het beste DrakX toestaan om\n"
-"de hardware te onderzoeken om na te gaan of er kaart-specifieke opties\n"
-"nodig zijn om de hardware te initialiseren. Dit werkt normaal gesproken\n"
-"goed.\n"
-"\n"
-"Als DrakX niet in staat is om te onderzoeken welke opties doorgegeven\n"
-"moeten worden, zult u handmatig het stuurprogramma van opties moeten\n"
-"voorzien. Gelieve de \"Gebruikershandleiding\" (hoofdstuk 3, paragraaf\n"
-"\"Het verzamelen van informatie over uw hardware\") na te lezen voor\n"
-"tips over hoe u de benodigde parameters uit de documentatie van uw\n"
-"hardware haalt, of van de webpagina van de fabrikant (als u \n"
-"internettoegang heeft), of uit Microsoft Windows (als u deze hardware\n"
-"met Windows heeft gebruikt op uw systeem)."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"Hier ziet u verscheidene paramaters die betrekking hebben op uw computer.\n"
-"Afhankelijk van welke hardware u heeft, kunt u al dan niet (zie hieronder):\n"
-"\n"
-" * \"Muis\": de huidige muisconfiguratie nagaan en zonodig op deze knop "
-"klikken\n"
-"om hem aan te passen.\n"
-"\n"
-" * \"Toetsenbord\": de huidige toetsenbordindeling nagaan en zonodig op "
-"deze\n"
-"knop klikken om hem aan te passen.\n"
-"\n"
-" * \"Tijdzone\": Normaal gesproken raadt DrakX uw tijdzone aan de hand van "
-"de\n"
-"taal die u gekozen heeft. Maar hier, net zoals bij de keuze voor een "
-"toetsenbord,\n"
-"hoeft u zich niet in het land te bevinden dat correspondeert met de gekozen "
-"taal.\n"
-"Daarom is het mogelijk dat u op de \"Tijdzone\"-knop moet klikken om de klok "
-"in\n"
-"te stellen aan de hand van de tijdzone waarin u zich bevindt.\n"
-"\n"
-" * \"Printer\": klikken op de \"Geen printer\"-knop zal de "
-"printerconfiguratie-wizard\n"
-"openen.\n"
-"\n"
-" * \"Geluidskaart\": indien een geluidskaart bespeurd is op uw systeem, "
-"wordt dat\n"
-"hier weergegeven. Het is niet mogelijk dit aan te passen gedurende de "
-"installatie.\n"
-"\n"
-" * \"TV-kaart\": indien een TV-kaart bespeurd is op uw systeem, wordt dat "
-"hier\n"
-"weergegeven. Het is niet mogelijk dit aan te passen gedurende de "
-"installatie.\n"
-"\n"
-"* \"ISDN-kaart\": indien een ISDN-kaart bespeurd is op uw systeem, wordt "
-"dat\n"
-"hier weergegeven. U kunt op de knop klikken om de parameters aan te passen\n"
-"die erbij horen."
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Kies de harde schijf die u wilt wissen om uw nieuwe\n"
-"Mandrake Linux partitie op te installeren. Wees voorzichtig, alle data die\n"
-"op deze schijf staat zal verloren gaan, en niet terug te halen zijn!"
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Klik op \"OK\" wanneer u alle gegevens en partities die aanwezig zijn \n"
-"op deze harde schijf wilt wissen. Wees voorzichtig, want na het klikken \n"
-"op \"OK\" zult u niet in staat zijn om wat voor op schijf aanwezige "
-"gegevens \n"
-"of partities dan ook terug te halen, met inbegrip van alle Windows-"
-"gegevens.\n"
-"\n"
-"Klik op \"Annuleren\" om deze operatie te annuleren zonder daarbij \n"
-"gegevens of partities aanwezig op schijf te verliezen."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "U dient tevens %s te formatteren"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"U heeft de volgende server(s) geselecteerd: %s\n"
-"\n"
-"\n"
-"Deze servers worden standaard geactiveerd. Ze hebben geen bekende\n"
-"beveiligingsproblemen, maar het is mogelijk dat er nieuwe gevonden worden.\n"
-"Zorg er in dat geval voor ze zo spoedig mogelijk op te waarderen.\n"
-"\n"
-"\n"
-"Weet u zeker dat u deze servers wilt installeren?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Kan niet uitzenden zonder NIS-domein"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr ""
-"Plaats een met het FAT-bestandssysteem geformatteerde diskette in station %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Deze diskette is niet FAT-geformatteerd"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Om deze opgeslagen pakketselectie te gebruiken, start u de installatie \n"
-"met ''linux defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Fout bij het lezen van bestand %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Sommige hardware op uw computer heeft ''fabrikantsgebonden'' drivers \n"
-"nodig om te kunnen functioneren. U kunt informatie hierover vinden op: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"U moet een root-partitie hebben.\n"
-"Hiervoor dient u een partitie aan te maken (of op een bestaande partitie "
-"teklikken). Daarna kiest u de actie ``Koppelpunt'' en stelt u dit i nop `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "U moet een swap-partitie hebben"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"U heeft geen swap-partitie!\n"
-"\n"
-"Toch verdergaan?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr ""
-"U moet een partitie met FAT-bestandssysteem gekoppeld hebben aan /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Gebruik vrije ruimte"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Niet genoeg vrije ruimte om nieuwe partities te maken"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Gebruik een bestaande partitie"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Er is geen bestaande partitie om te gebruiken"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Gebruik de Windows partitie voor loopback "
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Welke partitie wenst u te gebruiken voor Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Kies de grootte"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Root-partitie-grootte in MB:"
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Swap-partitie-grootte in MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Gebruik de vrije ruimte op de Windows partitie"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Van welke partitie wilt u de grootte veranderen?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Bezig met berekenen van Windows bestandssysteemgrenzen"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"De FAT grootte-aanpasser was niet instaat met uw partitie om te gaan, \n"
-"dit is fout gegaan: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Uw Windows partitie is te gefragmenteerd, start a.u.b. eerst ``defrag'' eerst"
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"WAARSCHUWING!\n"
-"\n"
-"DrakX moet nu de grootte van uw Windows-partitie aanpassen. Wees "
-"voorzichtig:\n"
-"deze operatie is gevaarlijk. Als u dit niet reeds gedaan heeft, dient u "
-"eerst de\n"
-"installatie af te breken, scandisk (en eventueel defrag) onder Windows te "
-"draaien,\n"
-"en daarna de installatie opnieuw te starten. Maakt u ook een "
-"veiligheidskopie van uw data.\n"
-"Als u zeker bent, klik dan OK."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Welke grootte wilt u gebruiken om windows op?"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "Partitie %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT grootte-aanpassing mislukt: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Er is geen FAT partitie om de grootte van aan te passen of om als \n"
-"loopback te gebruiken (of er is te weinig ruimte over)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Volledige harde schijf wissen"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Verwijder Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "U heeft meer dan één harde schijf, op welke wilt u Linux installeren?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"ALLE bestaande partities en de data die ze bevatten, zal worden gewist van "
-"schijf %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Aangepaste schijf-partitionering"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Gebruik fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"U kan nu uw schijf %s partitioneren.\n"
-"Vergeet niet op te slaan met `w' wanneer u klaar bent."
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "U heeft niet genoeg vrije ruimte op uw Windows partitie"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Ik kan geen partitie meer toevoegen"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "De DrakX partitie wizard heeft de volgende oplossingen gevonden:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partitionering mislukt: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Bezig met opstarten van het netwerk"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Bezig met stoppen van het netwerk"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Er is een fout opgetreden, maar ik weet niet hoe deze te behandelen.\n"
-"Als u verdergaat, is dit op eigen risico."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Dubbel koppelpunt %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Sommige belangrijke pakketen werden niet juist\n"
-"geďnstalleerd. Of uw cdrom drive of uw cdrom is defect.\n"
-"Controleer de cdrom op een geďnstalleerde computer met\n"
-"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Welkom bij %s!"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Geen diskettestation beschikbaar"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Overgang naar stap `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Uw systeem heeft weinig bronnen beschikbaar. U zou problemen kunnen\n"
-"ondervinden bij het installeren van Mandrake Linux. Als dit gebeurt,\n"
-"kunt u een text installatie proberen. Om dit te doen, drukt u op `F1'\n"
-"terwijl de CDROM opstart, en dan voert u `text' in."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Installatie-klasse"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Gelieve een van de volgende installatieklasses te kiezen:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "De totale grootte voor de geselecteerde groepen is ongeveer %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Als u minder dan deze grootte wenst te installeren,\n"
-"selectere dan het percentage pakketten dat u wenst te installeren.\n"
-"\n"
-"Een laag percentage zal enkel de belangrijkste pakketten installeren;\n"
-"een percentage van 100%% zal alle geselecteerde pakketten installeren."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"U heeft schijfruimte voor slechts %d%% van deze pakketten.\n"
-"\n"
-"Als u minder wenst te installeren,\n"
-"selecteer dan het percentage pakketten dat u wenst te installeren.\n"
-"Een laag percentage zal enkel de belangrijkste pakketten installeren;\n"
-"een percentage van %d%% zal alle geselecteerde pakketten installeren."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Het is mogelijk preciezer te kiezen in de volgende stap."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Percentage pakketten om te installeren"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Pakket-groep Selectie"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Individuele pakketselectie"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Totale grootte: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Slecht pakket"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Naam: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versie: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Grootte: %d kB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Belangrijkheid: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "U kan dit pakket niet selecteren omdat er te weinig vrije ruimte is"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "De volgende pakketten zullen geďnstalleerd worden"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "De volgende pakketten zullen gedeďnstalleerd worden"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "U kan dit pakket niet (de)selecteren"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Dit is een verplicht pakket, het kan niet gedeselecteerd worden"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "U kan dit pakket niet deselecteren. Het is al geinstalleerd."
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Dit pakket moet opgewaardeerd worden.\n"
-"Weet u zeker dat u het wenst te deselecteren?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "U kunt dit pakket niet deselecteren. Het moet opgewaardeerd worden."
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Toon automatisch geselecteerde pakketten"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Installeren"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Laden/Opslaan op diskette"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Bezig met vernieuwen van pakket-selectie"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Minimale installatie"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Kies de pakketten die u wenst te installeren"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Bezig met installeren"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Bezig met schatten"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Tijd over "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Bezig met voorbereiden van installatie, even geduld alstublieft"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pakketten"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Bezig met installeren van pakket %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Accepteren"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Weigeren"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Verwissel uw CD-ROM!\n"
-"\n"
-"\n"
-"Gelieve de CD-ROM met als naam \"%s\" in uw station te plaatsen en Ok te "
-"kiezen wanneer u klaar bent.\n"
-"Als u deze CD niet heeft, klik dan Annuleren om verdere installatie vanaf "
-"deze CD te vermijden."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Toch verdergaan?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Er was een fout bij het sorteren van de pakketten:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Er was een fout bij het installeren van de pakketten:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Waarschuwing\n"
-"\n"
-"Leest u aandachtig de voorwaarden hieronder. Als u het niet eens bent \n"
-"met eender welk onderdeel, is het u niet toegestaan om de volgende \n"
-"CD-media te installeren. Klik op 'Weigeren' om de installatie voort te \n"
-"zetten zonder deze media te gebruiken.\n"
-"\n"
-"\n"
-"Sommige componenten die op de volgende CD-media staan staan niet \n"
-"onder de GPL-licentie of dergelijke overeenkomsten. Ieder van deze \n"
-"componenten valt onder de regels en voorwaarden van zijn eigen \n"
-"specifieke licentie. Leest u dergelijke licenties alstublieft aandachtig \n"
-"en ga ermee akkoord voordat u de genoemde componenten gebruikt \n"
-"of opnieuw distribueert. \n"
-"Dergelijke licenties zullen in het algemeen het overnemen, dupliceren \n"
-"(behalve voor reservekopie-doeleinden), herdistribueren, reverse \n"
-"engineering, de-assemblage, de-compilatie of aanpassing van het \n"
-"component voorkomen. Het doorbreken van deze overeenkomst zal \n"
-"onmiddelijk uw rechten onder de specifieke licentie opheffen. Tenzij \n"
-"de specifieke licentie u zulke rechten toekent, kunt u in het algemeen \n"
-"de programma's niet op meer dan één machine installeren, of hen \n"
-"aanpassen voor gebruik over een netwerk. Als u twijfelt, neem dan \n"
-"alstublieft rechtstreeks contact op met de distributeur van het \n"
-"component. \n"
-"Het doorgeven aan een derde partij of het kopiëren van dergelijke \n"
-"componenten is in het algemeen verboden.\n"
-"\n"
-"\n"
-"Alle rechten op de componenten van de volgende CD-media behoren \n"
-"aan hun respectievelijke auteurs en zijn beschermd door wetten met \n"
-"betrekking tot intellectueel eigendom en copyright van software- \n"
-"programma's. \n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Er is een fout opgetreden"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "Weet u zeker dat u het installatieprogramma wilt verlaten?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Licentie overeenkomst"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Toetsenbord"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Gelieve uw toetsenbord-layout te kiezen."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Dit is de volledige lijst van beschikbare toetsenborden"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Welke installatie-klasse wenst u?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Installatie/Update"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Is dit een installatie of een opwaardering?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Aanbevolen"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Expert"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Opwaarderen"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Alleen pakketten opwaarderen"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Gelieve het type van uw muis te kiezen."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Muispoort"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Met welke seriële poort is uw muis verbonden?"
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Muisknoppen emuleren"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emuleren van knop 2"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emuleren van knop 3"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Bezig met configureren van PCMCIA-kaarten..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "IDE-Configuratie"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "Geen beschikbare partities"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Bezig met scannen van partities om mount punten te vinden"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Selecteer de koppelpunten"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Ik kan uw partitietabel niet lezen, ze is te corrupt voor mij :-(\n"
-"Ik kan proberen door te gaan en de slechte partities verwijderen\n"
-"(ALLE DATA zal worden gewist!).\n"
-"De andere oplossing is om DrakX de de partitie tabel niet te laten "
-"aanpassen.\n"
-"(de fout is %s)\n"
-"\n"
-"Gaat u ermee akkoord alle partities te verliezen?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake kon de partitietabel niet correct inlezen.\n"
-"Als u verdergaat, is dit op eigen risico!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Er is geen vrije ruimte voor een \"bootstrap\" van 1MB! De installatie zal "
-"doorgaan, maar om uw systeem op te starten zult u de bootstrap partitie in "
-"DiskDrake moeten creëren."
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Geen \"root\"-partitie gevonden om op te waarderen"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Root-partitie"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Wat is de root-partitie (/) van uw systeem?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"U dient te herstarten om de wijzigingen in de partitietabel te activeren."
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Kies de partities die u wenst te formatteren"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Slechte blocks checken?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Bezig met formatteren van partities"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Bezig met aanmaken en formatteren van bestand %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Niet genoeg swap voor de installatie, voeg er wat toe"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Bezig met zoeken naar beschikbare pakketten"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Bezig met zoeken naar pakketten om op te waarderen"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Uw systeem heeft niet genoeg ruimte over voor installatie of opwaardering (%"
-"d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Volledig (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimaal (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Aanbevolen (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Gelieve te kiezen of u de pakketselectie wilt laden of opslaan op diskette.\n"
-"Het formaat is dezelfde als de met auto_install gegenereerde diskettes."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Laden van diskette"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Bezig met het laden van diskette"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Pakket-selectie"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Plaats een diskette met de pakket-selectie in diskettestation"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Schrijven naar floppy"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "De geselecteerde grootte is meer dan de beschikbare ruimte"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Type installatie"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"U heeft geen enkele pakketgroep geselecteerd\n"
-"Gelieve de minimale installatie die u wenst te kiezen."
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "Met X"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "Met basis-documentatie (aanbevolen!)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Werkelijk minimale installatie (in het bijzonder geen urpmi)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Als u alle CDs in de lijst hierboven heeft, klik dan Ok.\n"
-"Als u geen enkele van die CDs heeft, klik dan Annuleren.\n"
-"Als maar enkele CDs zoek zijn, deselecteer ze dan, en klik Ok."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-Rom genaamd \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Bezig met voorbereiden van installatie"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Bezig met installeren van pakket %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Installatie na configuratie"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Plaats de gebruikte Opstartdiskette in station %s alstublieft"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Plaats de \"Modules Vernieuwen\"-diskette in station %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"U bent nu in staat software bedoeld voor encryptie te downloaden.\n"
-"\n"
-"WAARSCHUWING:\n"
-"\n"
-"Ten gevolge van verschillende algemene vereisten met betrekking tot deze\n"
-"software en opgelegd door verscheidene jurisdicties, dienen klanten en/of\n"
-"eindgebruikers van deze software zich ervan te vergewissen dat de wetten\n"
-"van hun jurisdictie hen toestaan deze software te downloaden,\n"
-"opslaan en/of te gebruiken.\n"
-"\n"
-"Daarnaast zal de klant en/of eindgebruiker in het bijzonder erop letten "
-"niet\n"
-"de wetten van zijn/hun jurisdictie te overtreden. Indien de klant en/of\n"
-"eindgebruiker de bepalingen van de van toepassing zijnde wetten niet\n"
-"respecteert, zullen hem aanzienlijke sancties worden opgelegd.\n"
-"\n"
-"In geen geval zal Mandrakesoft, noch haar fabrikanten en/of leveranciers\n"
-"aansprakelijk gehouden worden voor welke speciale, indirecte of incidentele\n"
-"schade dan ook (inclusief, maar niet beperkt tot gederfde winsten, "
-"onderbreking\n"
-"van zakendoen, verlies van commerciële gegevens en andere financiële\n"
-"verliezen, en eventuele aansprakelijkheden en vergoedingen die betaald\n"
-"moeten worden als gevolg van een beslissing van een gerechtshof)\n"
-"voortkomend uit gebruik, bezit, of alleen het downloaden van deze software,\n"
-"waartoe de klant en/of eindgebruiker eventueel toegang zou kunnen hebben\n"
-"na de voorliggende overeenkomst te hebben getekend.\n"
-"\n"
-"\n"
-"Voor inlichtingen met betrekking tot deze overeenkomst, neemt u contact op "
-"met\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"U bent nu in de gelegenheid om vernieuwde pakketten te downloaden\n"
-"die uitgebracht zijn nadat de distributie uitkwam.\n"
-"\n"
-"U kunt beveiligingsreparaties of reparaties van programmafouten verkrijgen,\n"
-"maar u heeft wel een geconfigureerde internetverbinding nodig om verderte "
-"gaan.\n"
-"\n"
-"Wenst u de vernieuwde pakketten te installeren?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Bezig met verbinden met de Mandrake Linux website om de lijst met "
-"beschikbare mirrors te verkrijgen"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Kies een `mirror' om de pakketten van af te halen"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr ""
-"Bezig met de `mirror' te contacteren om de lijst met beschikbarepakketten te "
-"verkrijgen"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Wat is uw tijdzone?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Hardware-klok ingesteld op GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatische tijdssynchronisatie (met gebruik van NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP-server"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Netwerk CUPS server"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Geen printer"
-
-#: ../../install_steps_interactive.pm_.c:1032
-msgid "Do you have an ISA sound card?"
-msgstr "Heeft u een ISA geluidskaart?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-"Draai \"sndconfig\" na de installatie om uw geluidskaart te configureren"
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Geen geluidskaart bespeurd. Probeer \"harddrake\" na de installatie"
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Overzicht"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Muis"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Tijdzone"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Printer"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "Interne ISDN kaart"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Geluidskaart"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV-kaart"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Bestanden op deze computer"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Root-wachtwoord instellen"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Geen wachtwoord"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Dit wachtwoord is te makkelijk (moet tenminste %d tekens lang zijn)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Authenticatie"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Authenticatie LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAP-server"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "Authenticatie NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS-domein"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS-server"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Een bootdiskette zorgt ervoor dat u nog in uw Linux-systeem kan zonder\n"
-"afhankelijk te zijn van de normale bootloader. Dit is handig als u LILO\n"
-"(of grub) niet wil installeren op uw systeem, of als een ander "
-"besturingssysteem\n"
-"LILO verwijdert, of LILO werkt niet met uw hardware-configuratie.\n"
-"Een bootdiskette kan ook gebruikt worden met het Mandrake-reddings-image,\n"
-"waardoor het veel makkelijker wordt om te herstellen van grote systeem-\n"
-"fouten. Wil u nu een bootdiskette aanmaken voor uw systeem?\n"
-"Stop dan een diskette in het station en druk op \"OK\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Eerste diskettestation"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Tweede diskettestation"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Overslaan"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Een bootdiskette zorgt ervoor dat u nog in uw Linux-systeem kan zonder\n"
-"afhankelijk te zijn van de normale bootloader. Dit is handig als u LILO\n"
-"(of grub) niet wil installeren op uw systeem, of als een ander "
-"besturingssysteem\n"
-"LILO verwijdert, of LILO werkt niet met uw hardware-configuratie.\n"
-"Een bootdiskette kan ook gebruikt worden met het Mandrake-reddings-image,\n"
-"waardoor het veel makkelijker wordt om te herstellen van grote systeem-\n"
-"fouten. Wil u nu een opstartdiskette aanmaken voor uw systeem?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-"\n"
-"\n"
-"(WAARSCHUWING! U gebruikt XFS voor uw root-partitie,\n"
-"het creëren van een opstartdiskette op een 1.44MB-diskette\n"
-"zal hoogstwaarschijnlijk mislukken omdat XFS een zeer groot\n"
-"stuurprogramma benodigt)."
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Sorry, geen diskettestation beschikbaar"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Kies het diskettestation waarmee u de opstart-diskette wenst te maken"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Plaats een diskette in station %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Bezig met het aanmaken van de opstart-diskette"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Bezig met klaarmaken van opstartlader"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Het heeft er alle schijn van dat u een OldWorld-\n"
-" of Onbekende machine heeft. De yaboot opstartlader \n"
-" zal voor u niet werken.\n"
-"De installatie zal doorgaan, maar u zult BootX nodig \n"
-"hebben om uw machine op te starten"
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Wenst u aboot te gebruiken?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Fout bij het installeren van aboot,\n"
-"toch proberen te installeren, zelfs als dat de eerste partitie vernietigt?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Bezig met opstart-lader installeren"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr ""
-"De installatie van de bootloader is mislukt. De volgende fout werd gevonden:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Wellicht is het nodig om uw Open Firmware opstart-apparaat \n"
-" te veranderen om de opstartlader te activeren. Wanneer u geen \n"
-" opstartlader-prompt bij het opnieuw opstarten ziet, houdt dan \n"
-" Command-Option-O-F ingedrukt bij het opstarten en voer in: \n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Vervolgens voert u in: shut-down\n"
-"Bij de volgende keer opstarten zou u dan de opstartlader-prompt \n"
-"moeten zien."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Plaats een lege floppy in station %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Bezig met aanmaken van auto-installatiediskette"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Sommige stappen zijn nog niet voltooid.\n"
-"\n"
-"Weet u zeker dat u op dit moment wilt beëindigen?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Gefeliciteerd, de installatie is voltooid. \n"
-"Verwijder de opstartmedia en druk op Enter om opnieuw op te starten.\n"
-"\n"
-"\n"
-"Voor informatie over verbeteringen die voor deze versie van Mandrake Linux\n"
-"beschikbaar zijn, raadpleegt u de Errata, beschikbaar van:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/8.2errata.php3\n"
-"\n"
-"Informatie over het configureren van uw systeem is beschikbaar in het\n"
-"\"post install\"-hoofdstuk van de Official Mandrake Linux User's Guide."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Maak auto-installatiediskette aan"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"Desgewenst kan de auto-installatie volledig geautomatiseerd worden,\n"
-"in dat geval zal het de harde schijf overnemen!\n"
-"(Deze functie is bedoeld voor het installeren op een andere machine.)\n"
-"\n"
-"Wellicht geeft u de voorkeur aan het herhalen van de installatie.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Geautomatiseerd"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Herhalen"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Pakket-selectie opslaan"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux Installatie %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> tussen elementen | <Spatie> selecteert | <F12> volgend "
-"scherm "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu is afwezig!"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "ontbrekende console-hulp"
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Kies een bestand"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Geavanceerd"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Basis"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Even geduld"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr ""
-"Boom\n"
-"Uitbreiden"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr ""
-"Boom\n"
-"Inklappen"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Schakelen tussen gewoon en per-groep-gesorteerd"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Slechte keuze, probeer nog eens\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Uw keuze? (standaard %s)"
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr "Items die u dient in te vullen:%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Uw keuze? (0/1, standaard '%s')"
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Knop '%s':%s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "Wilt u op deze knop klikken?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Uw keuze? (standaard '%s'%s)"
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Er zijn vele keuzes mogelijk (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Gelieve het eerste nummer van het 10-bereik dat u wilt bewerken,\n"
-"te kiezen, of geef eenvoudigweg Enter om verder te gaan.\n"
-"Uw keuze?"
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Let op, een label is veranderd:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Opnieuw invoeren"
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Tsjechisch (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Duits"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Spaans"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Fins"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Frans"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Noors"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Pools"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Russisch"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Zweeds"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "UK toetsenbord"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "US toetsenbord"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Albanees"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armeens (oud)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armeens (typmachine)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armeens (fonetisch)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbeidzjan (latin)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgisch"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgaars (fonetisch)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "Bulgaars (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Braziliaans (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Belarusiaans"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Zwitsers (Duitse layout)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Zwitsers (Franse layout)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Tsjechisch (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Duits (geen dode toetsen)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Deens"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Noorwegen)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Zweeds)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Ests"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgisch (\"Russische\" layout)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgisch (\"Latin\" layout)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Grieks"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Hongaars"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Kroatisch"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Israelisch"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Israelisch (Fonetisch)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iraans"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "IJslands"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italiaans"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japans 106 toetsen"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Koreaans toetsenbord"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latijns-Amerikaans"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lithuaans AZERTY (oud)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lithuaans AZERTY (nieuw)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lithuaans \"nummer-rij\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lithuaans \"fonetisch\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr "Lets"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Macedonisch"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Nederlands"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Pools (qwerty layout)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Pools (qwertz layout)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugees"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Canadees (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Roemeens (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Roemeens (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Roemeens (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Sloveens"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovaaks (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovaaks (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Servisch (cyrillisch)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "Tamil"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Thai-toetsenbord"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Tadzjikisch toetsenbord"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turks (traditioneel \"F\"-model)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turks (modern \"Q\"-model)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Oekraďens"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "US toetsenbord (internationaal)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamese \"nummer-rij\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Joegoslavisch (latin)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr "Rechter Alt-knop"
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr "Beide Shift-toetsen tegelijkertijd"
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr "Control- en Shift-toetsen tegelijkertijd"
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr "CapsLock-toets"
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl- en Alt-toetsen tegelijkertijd"
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt- en Shift-toetsen tegelijkertijd"
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr "\"Menu\"-toets"
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr "Linker \"Windows\"-toets"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr "Rechter \"Windows\"-toets"
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Circulaire mounts: %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Verwijder eerst de logische delen\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"Ondersteuning voor PCMCIA bestaat niet meer voor 2.2 kernels. Gelieve een "
-"2.4 kernel te gebruiken."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - muis"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Algemene PS/2 wielmuis"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 knop"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Algemene 2-knopsmuis"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Algemeen"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Wiel"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "seriëel"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Algemene 3-knopsmuis"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech-muis (seriëel, oud C7-type)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "bus muis"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 knoppen"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 knoppen"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "geen"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Geen muis"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Test uw muis a.u.b."
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Welk type muis heeft u?"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "BEWEEG UW WIELTJE"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Fins"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Volgende ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Vorige"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Is dit correct?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Verbinden met het Internet"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"De meest gebruikte manier om te verbinden met adsl is met\n"
-"ppoe. Sommige verbindingen gebruiken pptp, enkele gebruiken\n"
-"dhcp. Als u het niet weet, kiest u 'gebruik pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "gebruik DHCP"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "gebruik pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "gebruik pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Welke dhcp client wenst u te gebruiken?\n"
-"Standaard is dit dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Er is geen ethernet netwerk adapter op uw systeem gevonden.\n"
-"Ik kan dit type connectie niet opzetten."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Kies de netwerk interface"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Kies a.u.b. met welke netwerkkaart u met het Internet wilt verbinden"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "Geen netwerkkaart gevonden"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Bezig met configureren van netwerk"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Gelieve uw hostnaam in te voeren als u deze kent.\n"
-"Sommige DHCP servers hebben de hostnaam nodig om te werken.\n"
-"Het moet een volledige hostnaam zijn, zoals ``mybox.mylab.myco.com''.\n"
-"U mag ook het IP-adres van de gateway invoeren als u er een heeft."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Host naam:"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Netwerk-configuratie wizard"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Extern ISDN modem"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Interne ISDN kaart"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Wat voor een ISDN connectie heeft u?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Welke ISDN-configuratie prefereert u?\n"
-"\n"
-"* De Oude configuratie gebruikt isdn4net. Het bevat\n"
-" krachtige gereedschappen, maar is lastig te configureren\n"
-" en niet-standaard.\n"
-"\n"
-"* De Nieuwe configuratie is gemakkelijker te begrijpen, meer\n"
-" standaard maar bevat minder gereedschappen.\n"
-"\n"
-"Wij bevelen de lichtere configuratie aan.\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Nieuwe configuratie (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Oude configuratie (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN Configuratie"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Selecteer uw provider.\n"
-" Als uw provider niet in de lijst staat, kiest u Unlisted"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Europe protocol"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Europees protocol (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protocol voor de rest van de wereld"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protocol voor de rest van de wereld \n"
-" geen D-Channel (geleasde lijnen)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Welk protocol wenst u te gebruiken?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Welk type kaart heeft u?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Ik weet het niet"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Als u een ISA kaart bezit, zouden de waardes op het volgende scherm moeten "
-"kloppen.\n"
-"\n"
-"Als u een PCMCIA kaart bezit, moet u het irq en io van uw kaart weten.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Annuleren"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Verder"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Welke is uw ISDN kaart?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Ik heb een ISDN PCI kaart gevonden, maar ik ken het merk niet. Selecteer a.u."
-"b. een PCI kaart op het volgende scherm."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Geen ISDN PCI kaart gevonden. Selecteer a.u.b. uw kaart op het volgende "
-"scherm."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Met welke seriële poort is uw modem verbonden?"
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Inbel-opties"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Verbindingsnaam"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Telefoonnummer"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Aanmeldingsnaam"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Gebaseerd op een script"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Gebaseerd op een terminal"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Domeinnaam"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Eerste DNS-server (optioneel)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Tweede DNS-server (optioneel)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"U kunt nu de verbrinding verbreken of uw connectie herconfigureren."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"U kunt uw connectie herconfigureren"
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "U bent op dit moment aangesloten op het Internet."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"U kunt verbinding maken met het Internet of uw connectie herconfigureren"
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "U bent op dit moment niet aangesloten op het Internet."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Verbinden"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Verbinding verbreken"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Configureer de verbinding"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Internet verbinding & configuratie"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "We gaan nu de %s -verbinding configureren."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"We gaan nu de %s -verbinding configureren.\n"
-"\n"
-"\n"
-"Klik op OK om door te gaan."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Netwerk-configuratie"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Omdat u een netwerk-installatie uitvoert, is uw netwerk reeds "
-"geconfigureerd.\n"
-"Klik op OK om uw configuratie te behouden, of op Annuleren om uw Internet & "
-"Netwerkverbinding opnieuw te configureren.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Welkom bij de Netwerk Configuratie Wizard\n"
-"\n"
-"We staan op het punt uw internet/netwerkverbinding te configureren.\n"
-"Als u de auto-detectie niet wilt gebruiken, deselecteer het aankruisvakje "
-"dan.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Kies het profiel om te configureren"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Gebruik auto-detectie"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Bezig met het detecteren van apparaten..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Normale modemverbinding"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "gevonden op poort %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN-verbinding"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "%s ontdekt"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ADSL-verbinding"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "gevonden op interface %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Kabelverbinding"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "kabelverbinding gevonden"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "LAN-verbinding"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "ethernet kaart(en) gevonden"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Selecteer de verbinding die u wenst te configureren"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"U heeft meerdere manieren om te verbinden met het Internet geconfigureerd.\n"
-"Kies degene die u wenst te gebruiken.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Internetverbinding"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Wenst u bij aboot uw connectie te starten?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Netwerk configuratie"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "Het netwerk dient herstart te worden"
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Een probleem deed zich voor bij het herstarten van het netwerk:\n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Gefeliciteerd, de netwerk- en internetconfiguratie is af.\n"
-"\n"
-"De configuratie zal nu worden toegepast op uw systeem.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"We raden u aan om nadat dit gebeurd is, uw X omgeving\n"
-"te herstarten om het hostnaam-veranderingprobleem\n"
-"te voorkomen."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"Er zijn problemen opgetreden tijdens de configuratie.\n"
-"Test uw verbinding via net_monitor of mcc. Indien uw verbinding niet werkt, "
-"kunt u proberen de configuratie opnieuw op te starten."
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"WAARSCHUWING: Dit apparaat is al geconfigureerd om verbinding te maken met "
-"Internet.\n"
-"Accepteer gewoon de instellingen om dit apparaat geconfigureerd te laten.\n"
-"Als u de onderstaande velden aanpast, wordt het apparaat opnieuw "
-"geconfigureerd"
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Gelieve de IP-configuratie voor deze machine in te geven.\n"
-"Elke ingang moet ingegeven worden als een IP adres in `dotted-decimal'-\n"
-"vorm (bijvoorbeeld 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Bezig met configureren van netwerk-apparaat %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr "(driver %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP adres"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Netmasker"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(BootP/DHCP)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Automatisch IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Het IP-adres moet het formaat 1.2.3.4 hebben"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Gelieve uw hostnaam in te voeren.\n"
-"Het moet een volledige hostnaam zijn, zoals ``mybox.mylab.myco.com''.\n"
-"U mag ook het IP-adres van de gateway invoeren als u er een heeft."
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS server"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (bijvoorbeeld %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Gateway apparaat"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Configuratie van proxie(s)"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP-proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP-proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr "Netwerkkaart id onthouden (nuttig voor laptops)"
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy moet http://... zijn"
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy moet ftp://... zijn"
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Internet configuratie"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Wenst u nu te proberen een connectie te maken met Internet?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Bezig met testen van uw connectie..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "U bent op dit moment aangesloten op het Internet."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Vanwege beveiligingsredenen zal het nu worden neergelegd."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Het lijkt erop dat dit systeem niet aangesloten is met\n"
-"het internet. Probeer uw connectie te herconfigureren."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Connectie configuratie"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Selecteer of vul onderstaand veld a.u.b. in"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ van de kaart"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Mem (DMA) van de kaart"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO van de kaart"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_0 van de kaart"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 van de kaart"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Uw persoonlijke telefoonnummer"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Naam van uw provider (bijv. provider.nl)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Telefoonnummer van uw provider"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 van uw provider (optioneel)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 van uw provider (optioneel)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Kies uw land"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Inbel mode"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Verbindingssnelheid"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Maximale wachttijd voor verbinding (in seconden)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Account Login (gebruikers-naam)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Wachtwoord"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "koppelen mislukt: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Extended partitie niet ondersteund op dit platform"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Er zit een gat in uw partitietabel, maar ik kan het niet gebruiken.\n"
-"De enige oplossing is om uw primaire partitie te verplaatsen zodat het gat "
-"naast de extended partitie komt te liggen"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Het herstellen van bestand %s is niet gelukt: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Slechte reservekopie"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Fout bij het schrijven naar bestand %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Er is iets verdachts aan de gang op uw schijf. \n"
-"Een test om de integriteit van de gegevens de testen is mislukt.Dat betekent "
-"dat wanneer er iets naar schijf wordt geschreven,\n"
-"het uiteindelijk onleesbare troep wordt."
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "must-have"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "belangrijk"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "heel leuk"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "leuk"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "misschien"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Lokale printer"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Netwerk printer"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Printer aan CUPS server op afstand"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Printer aan lpd server op afstand"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Netwerkprinter (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Printer aan SMB/Windows 95/98/NT server"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Printer aan NetWare server"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Voer een apparaat-URI voor de printer in"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Job doorsluizen naar een commando"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Onbekend model"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Lokale printers"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Printers op afstand"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr "op parallelle poort \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", USB printer \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", multi-functioneel apparaat op parallelle poort \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", multi-functioneel apparaat op USB"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ". multi-functioneel apparaat op HP JetDirect"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", multi-functioneel apparaat"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", bezig met printen naar %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "op LPD server \"%s\", printer \"%s\""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP host \"%s\", poort %s"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "op Windows server \"%s\", share \"%s\""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "op Novell server \"%s\", printer \"%s\""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", met gebruik van opdracht %s"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Raw printer (geen stuurprogramma)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(aan %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(aan deze machine)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Op CUPS-server \"%s\""
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Standaard)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Selecteer Printer-verbinding"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Hoe is de printer verbonden?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Printers aan een CUPS-server op afstand hoeft u hier niet te configureren; "
-"deze printers zullen automatisch bespeurd worden."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-msgid "CUPS configuration"
-msgstr "CUPS configuratie"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-msgid "Specify CUPS server"
-msgstr "CUPS server specificeren"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"Om toegang te krijgen tot CUPS-servers op afstand in uw lokale netwerk hoeft "
-"u hier niets te configureren; CUPS-servers informeren uw machine automatisch "
-"over hun printers. Alle printers die op dit moment bekend zijn bij uw "
-"computer zijn vermeld in het \"Printers op afstand\"-veld in het "
-"hoofdvenster van Printerdrake. Als uw CUPS-server zich niet bevindt in uw "
-"lokale netwerk, dan geeft u het IP-adres van de CUPS-server in en optioneel "
-"het poortnummer om de printerinformatie van de server op te vragen. In "
-"andere gevallen laat u deze velden leeg."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Normaal gesproken wordt CUPS automatisch geconfigureerd aan de hand van uw "
-"netwerkomgeving, zodat u toegang heeft tot de printers op de CUPS-servers in "
-"uw lokale netwerk. In het geval dat dit niet goed werkt, zet dan "
-"\"Automatische CUPS configuratie\" uit en bewerk uw /etc/cups/cupsd.conf "
-"bestand handmatig. Vergeet u niet daarna CUPS te herstarten (opdracht: "
-"\"service cups restart\")."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "Het IP-adres zou er uit moeten zien als 192.168.1.20"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Het poortnummer moet een geheel getal zijn!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "CUPS-server IP"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Poort"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Automatische CUPS-configuratie"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Bezig met het zoeken van apparaten..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Poorten testen"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Printer toevoegen"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Welkom bij de Printer Instellingen Wizard\n"
-"\n"
-"Deze wizard laat u lokale- of afstand-printers installeren die vanaf deze of "
-"andere computers in het netwerk gebruikt gaan worden.\n"
-"\n"
-"Het zal u vragen naar alle benodigde informatie om de printer in te stellen "
-"en geeft u toegang tot alle beschikbare printer-stuurprogramma's, "
-"stuurprogramma-opties en printerverbindingtypes."
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Lokale printer"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Welkom bij de Printer Instellingen Wizard\n"
-"\n"
-"Deze wizard helpt u bij het installren van uw printer(s) verbonden aan deze "
-"computer.\n"
-"\n"
-"Gelieve uw printer(s) in deze computer te pluggen en aan te zetten. Klik op "
-"\"Volgende\" wanneer u klaar bent, en op \"Annuleren\" wanneer u niet op dit "
-"moment uw printer(s) wilt instellen.\n"
-"\n"
-"Merk op dat sommige computers kunnen vastlopen gedurende de automatische "
-"bespeuring van de printer. Schakel \"Automatisch bespeuren van printer(s)\" "
-"uit om een printerinstallatie uit te voeren zonder automatische bespeuring. "
-"Gebruik de \"Expert-modus\" van Printerdrake indien u een printer-op-afstand "
-"wilt instellen die niet automatisch door Printerdrake getoond wordt."
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Automatisch bespeuren van printers"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"Gefeliciteerd, uw printer is nu geďnstalleerd en geconfigureerd!\n"
-"\n"
-"U kunt afdrukken met de \"Afdrukken\"-opdracht in uw toepassingen (normaal "
-"gesproken in het \"Bestand\"-menu).\n"
-"\n"
-"Indien u een printer wilt toevoegen, verwijderen of hernoemen, of indien u "
-"de standaard instellingen wilt wijzigen (papierinvoer-tray, "
-"afdrukkwaliteit, ...), selecteert u dan \"Printer\" in het \"Hardware\"-"
-"gedeelte van het Mandrake Controle Centrum."
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Automatisch bespeuren van printers"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake is in staat om de parallelle- en USB-printers die aan uw "
-"computer verbonden zijn, automatisch te bespeuren. Let u echter op dat op "
-"sommige systemen de automatische bespeuring UW MACHINE KAN LATEN VASTLOPEN. "
-"DIT KAN LEIDEN TOT BESCHADIGING VAN BESTANDSSYSTEMEN! Dus doe dit OP EIGEN "
-"RISICO!\n"
-"\n"
-"Weet u zeker dat u uw printers automatisch wilt laten bespeuren?"
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Bespeur automatisch"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Handmatig printer instellen"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "%s bespeurd"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Printer op parallelle poort \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "USB printer \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Geen lokale printer gevonden! Om met de hand een printer te installeren, "
-"voert u een apparaat- of bestandsnaam in op de invoerregel. (Parallelle "
-"poorten: /dev/lp0, /dev/lp1, ..., equivalent aan LPT1:,LPT2:, ..., 1ste USB "
-"printer: /dev/usb/lp0, 2de USB printer: /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "U dient een apparaat of bestandsnaam in te voeren!"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Geen lokale printer gevonden!\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Netwerkprinters kunnen alleen na de installatie worden ingesteld. Kies "
-"\"Hardware\" en daarna \"Printer\" in het Mandrake Controlecentrum."
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Om netwerkprinters te installeren, klikt u op \"Annuleren\", schakel over "
-"naar \"Expert modus\" en klik opnieuw op \"Nieuwe printer toevoegen\"."
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-"De volgende printer is bespeurd. Is dit niet degene die u wilt configureren, "
-"geef dan een apparaatnaam/bestandsnaam op de invoerregel"
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-"Dit is een lijst van alle automatisch bespeurde printers. Kiest u de printer "
-"om in te stellen of geef een apparaatnaam/bestandsnaam op de invoerregel"
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-"De volgende printer is automatisch bespeurd. De configuratie van de printer "
-"zal volledig automatisch gaan. Indien uw printer niet correct bespeurd wordt "
-"of indien u liever een aangepaste printerconfiguratie wilt, zet dan "
-"\"Handmatige configuratie\" aan."
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Dit is een lijst van alle automatisch bespeurde printers. Kiest u de printer "
-"die u wenst in te stellen. De configuratie van de printer zal volledig "
-"automatisch gaan. Indien uw printer niet correct bespeurd wordt of indien u "
-"een aangepaste printerconfiguratie wenst, zet dan \"Handmatige configuratie"
-"\" aan."
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Kiest u de poort waaraan uw printer is verbonden of geef een apparaatnaam/"
-"bestandsnaam op de invoerregel"
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Kiest u de poort waaraan uw printer is verbonden."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Parallelle poorten: /dev/lp0, /dev/lp1, ..., equivalent aan LPT1:,"
-"LPT2:, ..., 1ste USB printer: /dev/usb/lp0, 2de USB printer: /dev/usb/"
-"lp1, ...)."
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "U dient een printer of apparaat te kiezen/in te voeren!"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Handmatige configuratie"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-"Is uw printer een multi-functioneel apparaat van HP (OfficeJet, PSC, "
-"PhotoSmart LaserJet 1100/1200/1220/3200/3300 met scanner)?"
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "Bezig met installeren van HPOJ pakket..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Bezig met nagaan en configureren van apparaat HPOJ ..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Bezig met installeren van SANE pakket..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Scannen op uw HP multi-functioneel apparaat"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "Bezig met beschikbaar maken van printerpoort voor CUPS..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Bezig met lezen van printer-database..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "lpd op afstand - Printer-opties"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Om een lpd-printer op afstand te gebruiken, dient u de hostnaam van de "
-"printerserver en de printernaam op die server in te voeren."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Naam van host op afstand:"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Naam van printer op afstand"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "De naam van de host op afstand is afwezig!"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "De naam van de printer op afstand is afwezig!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) Printer-opties"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Om naar een SMB-printer af te drukken, dient u de SMB hostnaam (deze kan "
-"verschillen van de TCP/IP hostnaam) in te geven en mogelijk het IP-adres van "
-"de printserver, alsook de naam van de gedeelde printer waar u toegang tot "
-"wenst en, indien nodig, informatie over gebruikersnaam, wachtwoord en "
-"werkgroep."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "SMB-server host"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "SMB-server IP"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Sharenaam"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Werkgroep"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Ofwel de servernaam ofwel het IP van de server moet ingevoerd worden!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Naam van Samba-share is afwezig!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "NetWare Printer-Opties"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Op naar een NetWare-printer af te drukken, dient u de NetWare Printer "
-"servernaam op te geven (deze kan verschillen van de TCP/IP hostnaam!) alsook "
-"de naam van de printerwachtrij waar u toegang tot wilt en, indien nodig, een "
-"gebruikersnaam en wachtwoord."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Printer Server"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Naam van de printerwachtrij"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "NCP-servernaam is afwezig!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "NCP-wachtrijnaam is afwezig!"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Socket Printer opties"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Om naar een TCP- of socketprinter af te drukken, dient u de hostnaam van de "
-"printer en zonodig het poortnummer op te geven. Op HP JetDirect-servers is "
-"het poortnummer over het algemeen 9100, op andere servers kan het variëren. "
-"U zij verwezen naar het handboek van uw hardware."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Printer hostnaam"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Printer hostnaam is afwezig!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Printerapparaat URI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"U kunt de URI om de printer aan te spreken direct opgeven. De URI moet\n"
-"voldoen aan ofwel de CUPS-, ofwel de Foomatic specificaties. Let op dat\n"
-"niet alle URI-typen door alle \"spoolers\" ondersteund worden."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Een geldige URI moet worden ingevoerd!"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Elke printer heeft een naam nodig (bijvoorbeeld \"printer\"). De "
-"Beschrijving- en Locatie-velden behoeven niet te worden ingevuld. Dit zijn "
-"opmerkingen voor de gebruikers."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Naam van de printer"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beschrijving"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Locatie"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Bezig met voorbereiden van printer-database..."
-
-#: ../../printerdrake.pm_.c:1112
-msgid "Your printer model"
-msgstr "Uw printermodel"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Printerdrake heeft de modelnaam die resulteerde uit de automatische "
-"bespeuring vergeleken met de modellen in de printer-database om de beste "
-"overeenkomst te vinden. Deze keuze kan onjuist zijn, in het bijzonder "
-"wanneer uw printer in het geheel niet in de database is opgenomen. Ga dus na "
-"of de keuze juist is en klik \"Het model is juist\" als dit het geval is en "
-"zoniet klikt u \"Handmatig model selecteren\" zodat u uw printermodel "
-"handmatig kunt kiezen op het volgende scherm.\n"
-"\n"
-"Voor uw printer heeft Printerdrake gevonden:\n"
-"\n"
-"%s"
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-msgid "The model is correct"
-msgstr "Het model is juist"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-msgid "Select model manually"
-msgstr "Handmatig model selecteren"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Selectie van printer-model"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Welk model printer heeft u?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Gaat u na of Printerdrake het automatisch bespeuren van uw model printer "
-"correct heeft uitgevoerd. Zoek het juiste model in de lijst indien de "
-"selectie staat op een onjuist model, of op \"Raw printer\"."
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Indien uw printer niet getoond wordt, kies dan een compatibel model (zie uw "
-"printerhandleiding) of één die er op lijkt."
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "OKI winprinter-configuratie"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"U configureert nu een OKI laser winprinter. Deze printers\n"
-"gebruiken een erg speciaal communicatieprotocol en daarom werken ze alleen "
-"indien verbonden met de eerste parallelle poort. Als uw printer verbonden is "
-"aan een andere poort of aan een printserver, verbindt u dan de printer aan "
-"de eerste parallelle poort voordat u een testpagina afdrukt, anders zal de "
-"printer niet werken. De instelling van het verbindingstype wordt door het "
-"stuurprogramma genegeerd."
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjet-configuratie"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"De inkjet-printerstuurprogramma's die door Lexmark worden verstrekt "
-"ondersteunen alleen lokale printers, en geen printers-op-afstand of "
-"printservers. Gelieve uw printer aan een lokale poort te verbinden of hem te "
-"configureren op de machine waaraan hij is verbonden."
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-"Om met uw Lexmark inkjet en deze configuratie te kunnen afdrukken, heeft u "
-"de inkjet-printerstuurprogramma's nodig die door Lexmark (http://www.lexmark."
-"nl/) ter beschikking gesteld worden. Ga naar deze webpagina en klik op de "
-"\"Drivers\"-knop. Kies vervolgens \"Printer drivers\", uw model en daarna "
-"\"Linux\" als besturingssysteem. De stuurprogramma's komen in de vorm van "
-"RPM-pakketten of shell-scripts met interactieve grafische installatie. Het "
-"is niet nodig om deze configuratie met de grafische schillen te doen. "
-"Annuleer direct na de licentie-overeenkomst. Druk dan printkop-"
-"uitlijningpagina's af met \"lexmarkmaintain\" en pas de "
-"kopuitlijningsinstellingen aan met dit programma."
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Printer standaard-instellingen\n"
-"\n"
-"Zorgt u ervoor dat de paginagrootte en de inktsoort/afdrukmodus (indien "
-"beschikbaar), alsmede de hardware-configuratie van laserprinters (geheugen, "
-"duplex-eenheid, extra trays) juist ingesteld zijn. Let op dat een zeer hoge "
-"printkwaliteit het afdrukken behoorlijk kan vertragen."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Optie %s moet een geheel getal zijn!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Optie %s moet een getal zijn!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Optie %s valt buiten het bereik!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Wenst u deze printer (\"%s\")\n"
-"als standaard printer in te stellen?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Test-pagina's"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Selecteert u de test-pagina's die u af wenst te drukken.\n"
-"Let op: het kan een nogal lange tijd in beslag nemen voordat de foto-test-"
-"pagina is afgedrukt en op laserprinters met onvoldoende geheugen wordt deze "
-"wellicht helemaal niet afgedrukt. In de meeste gevallen is het voldoende om "
-"de standaard test-pagina af te drukken."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Geen test-pagina's"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Afdrukken"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Standaard testpagina"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Alternatieve test-pagina (Letter-formaat)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Alternatieve test-pagina (A4-formaat)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Foto-testpagina"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "Druk geen enkele testpagina af"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Bezig met afdrukken van testpagina(s)..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Testpagina('s) werd(en) naar de printer gestuurd.\n"
-"Het kan even duren voordat het eigenlijke afdrukken begint.\n"
-"Print-status:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Testpagina's) werd(en) naar de printer gestuurd.\n"
-"Het kan even duren voordat het eigenlijke afdrukken begint.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "Werkt het afdrukken naar behoren?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Kale ('raw') printer"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Om een bestand vanaf de commandoregel (terminalvenster) af te drukken, "
-"gebruikt u ofwel het commando \"%s <bestand>\", ofwel een grafisch "
-"printerhulpprogramma: \"xpp <bestand>\" of \"kprinter <bestand>\". Deze "
-"grafische hulpprogramma's stellen u in staat om de printer te kiezen en "
-"gemakkelijk de opties te wijzigen.\n"
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Deze commando's kunt u ook invullen in het \"Print-commando\"-veld van "
-"printdialogen van veel applicaties. Maar vul daar dan geen bestandsnaam in "
-"omdat het af te drukken bestand wordt geleverd door de applicatie.\n"
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"De \"%s\"-opdracht geeft ook de mogelijkheid tot het wijzigen van de opties "
-"voor een specifieke printtaak. Voeg de gewenste instellingen eenvoudigweg "
-"toe aan de commandoregel, bijvoorbeeld \"%s <bestand>\"."
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-"Om de beschikbare opties voor de huidige printer te weten te komen, kunt u "
-"ofwel de lijsthieronder lezen, ofwel klikken op de knop \"Lijst van print-"
-"opties\".%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Dit is een lijst van de beschikbare opties voor de huidige printer:\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Om een bestand vanaf de commandoregel (terminalvenster) af te drukken, \n"
-"gebruikt u het commando \"%s <bestand>\".\n"
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Dit commando kunt u ook invullen in het \"Print-commando\"-veld van "
-"printdialogen van veel applicaties. Maar vul daar dan geen bestandsnaam in "
-"omdat het af te drukken bestand wordt geleverd door de applicatie. \n"
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Om een lijst te verkrijgen van alle beschikbare opties voor de huidige "
-"printer, klikt u op de knop \"Lijst van print-opties\"."
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Om een bestand vanaf de commandoregel (terminalvenster) af te drukken, \n"
-"gebruikt u het commando \"%s <bestand>\" of \"%s <bestand>\".\n"
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Wanneer u KDE als bureau-omgeving gebruikt dan heeft u de beschikking over "
-"een \"paniek-knop\", een pictogram op het bureaublad, met daarop de tekst "
-"\"STOP Printer!\", welke onmiddelijk alle printtaken stopt wanneer u er op "
-"klikt. Dit is handig bijvoorbeeld in het geval van papierstoringen.\n"
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"De \"%s\"- en \"%s\"-opdrachten geven ook de mogelijkheid tot het wijzigen "
-"van de opties voor een specifieke printtaak. Voeg de gewenste instellingen "
-"eenvoudigweg toe aan de commandoregel, bijvoorbeeld \"%s <bestand>\".\n"
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Sluiten"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Bezig met afdrukken/scannen op \"%s\""
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Bezig met afdrukken op printer \"%s\""
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Lijst van print-opties"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Uw HP multifunctioneel apparaat is automatisch geconfigureerd om te kunnen "
-"scannen. U kunt nu scannen met \"scanimage\" (\"scanimage -d hp:%s\" om de "
-"scanner te specificeren als u er meer dan één heeft) vanaf de commandoregel "
-"of met behulp van de grafische interfaces \"xscanimage\" of \"xsane\". "
-"Indien u gebruik maakt van The GIMP, kunt u ook scannen door het juiste punt "
-"te kiezen in het \"Bestand\"/\"Importeren\"-menu. U kunt ook \"man scanimage"
-"\" en \"man sane-hp\" aanroepen vanaf de commandoregel om meer informatie te "
-"krijgen.\n"
-"\n"
-"Gebruik voor dit apparaat geen \"scannerdrake\"!"
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Uw HP multifunctioneel apparaat is automatisch geconfigureerd om te kunnen "
-"scannen. U kunt nu scannen vanaf de commandoregel met \"ptal-hp %s scan ..."
-"\". Scannen via een grafische interface of vanuit The GIMP is nog niet "
-"ondersteund voor uw apparaat. U vindt meer informatie in het bestand \"/usr/"
-"share/doc/hpoj-0.8/ptal-hp-scan.html\" op uw systeem. Als u een HP LaserJet "
-"1100 of 1200 heeft kunt u alleen scannen indien u de scanner-optie "
-"geďnstalleerd heeft.\n"
-"\n"
-"Gebruik voor dit apparaat geen \"scannerdrake\"!"
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Bezig met lezen van printer-informatie..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Printer-configuratie overzetten"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"U kunt de printerconfiguratie die u voor spooler %s uitgevoerd heeft, "
-"kopiëren naar %s, uw huidige spooler. Alle configuratiegegevens "
-"(printernaam, beschrijving, locatie, verbindingssoort, en standaard opties) "
-"worden dan overgenomen, maar printtaken zullen niet worden overgezet.\n"
-"Niet alle wachtrijen kunnen worden overgezet, vanwege de volgende redenen:\n"
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS ondersteunt geen printers op Novell-servers of printers die gegevens in "
-"een vrije vorm-opdracht versturen.\n"
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ ondersteunt alleen printers aan deze computer, LPD printers op afstand, "
-"en Socket/TCP printers.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD en LPRng ondersteunen geen IPP printers.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"Daarbij komt dat wachtrijen die niet met dit programma of met \"foomatic-"
-"configure\" zijn aangemaakt, niet kunnen worden overgezet."
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Ook printers geconfigureerd met door hun fabrikant geleverde PPD-bestanden, "
-"of met eigen CUPS drivers, kunnen niet worden overgezet."
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Markeer de printers die u wilt overzetten en klik \n"
-"\"Overzetten\"."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "De printers niet overzetten"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Overzetten"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Een printer met de naam \"%s\" bestaat al onder %s. \n"
-"Klik op \"Overzetten\" om deze te overschrijven.\n"
-"U kunt ook een nieuwe naam ingeven of deze printer overslaan."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"Een printernaam mag alleen letters, getallen en een laag liggend streepje "
-"bevatten"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"De printer \"%s\" bestaat reeds, \n"
-"weet u zeker dat u de configuratie ervan wilt overschrijven?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Nieuwe printernaam"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "Bezig met overzetten van %s ..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"U heeft uw vorige standaardprinter (\"%s\") overgezet. Moet dit ook de "
-"standaardprinter worden in het nieuwe printsysteem %s?"
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Bezig met verversen van printergegevens..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Printer-op-afstand configureren"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Bezig met inschakelen van het netwerk..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Configureer het netwerk nu"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "Netwerk-functionaliteit niet geconfigureerd"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"U staat op het punt een printer-op-afstand te configureren. Hiervoor is een "
-"werkende netwerktoegang vereist, maar uw netwerk is nog niet geconfigureerd. "
-"Als u verder wilt gaan zonder netwerkconfiguratie, zult u niet in staat zijn "
-"om de printer te gebruiken die u nu configureert. Hoe wenst u verder te gaan?"
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Doorgaan zonder configureren van netwerk"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-"De netwerk-configuratie die uitgevoerd is tijdens de installatie kan op dit "
-"moment niet worden ingeschakeld. Gaat u na of het netwerk toegankelijk is na "
-"het opnieuwopstarten van uw systeem. De configuratie is te corrigeren met "
-"het Mandrake Controle Centrum, onderdeel \"Netwerk & Internet\"/\"Verbinding"
-"\". Daarna kunt u de \n"
-"printer instellen, ook met het Mandrake Control Center, onderdeel \"Hardware"
-"\"/\"Printer\""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"De netwerktoegang was nog niet actief en kon ook niet worden ingeschakeld. "
-"Gelieve uw configuratie en uw hardware na te kijken. Probeert u daarna "
-"opnieuw uw printer-op-afstand te configureren."
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Bezig met herstarten van het printsysteem..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "hoog"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "paranoďde"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-"Bezig met installeren van een printsysteem in het %s beveiligingsniveau"
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"U staat op het punt om printsysteem %s te installeren op een systeem dat op "
-"beveiligingsniveau %s draait.\n"
-"\n"
-"Dit printsysteem draait een daemon (achtergrondproces) welke wacht op een "
-"taak en deze afhandelt. Deze daemon is ook toegankelijk voor computers op "
-"afstand over het netwerk en dus is het een mogelijk doelwit voor aanvallen. "
-"Daarom worden er normaal gesproken slechts enkele geselecteerde daemons "
-"gestart op dit beveiligingsniveau.\n"
-"\n"
-"Weet u zeker dat u het afdrukken wilt configureren op deze computer?"
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Het printsysteem zal bij het opstarten worden ingeschakeld"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"Het printsysteem (%s) zal niet automatisch worden ingeschakeld wanneer de "
-"computer wordt opgestart.\n"
-"\n"
-"Mogelijkerwijs is het automatisch inschakelen uitgezet door het omschakelen "
-"naar een hoger beveiligingsniveau, omdat het printsysteem een mogelijk "
-"doelwit is voor aanvallen.\n"
-"\n"
-"Wilt u dat het automatisch inschakelen van het printsysteem weer wordt "
-"aangezet?"
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Bezig met nagaan welke software geďnstalleerd is..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "Bezig met verwijderen van LPRng..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "Bezig met verwijderen van LPD..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Selecteer printer-spooler"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Welk printsysteem (\"spooler\") wilt u gebruiken?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Bezig met configureren van printer \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
-msgstr "Bezig met installeren van Foomatic..."
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Printer-opties"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "Bezig met het voorbereiden van PrinterDrake..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-msgid "Configuring applications..."
-msgstr "Bezig met configureren van toepassingen ..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Wenst u een printer in te stellen?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Printsysteem:"
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"De volgende printers zijn geconfigureerd. Dubbelklik op een printer om zijn "
-"instellingen te wijzigen; om hem als standaardprinter in te stellen; om "
-"informatie erover te bekijken; of om een printer op een CUPS-server op "
-"afstand ter beschikking te stellen in Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"De volgende printers zijn geconfigureerd. Dubbelklik op één ervan om zijn "
-"instellingen te wijzigen; hem als standaardprinter in te stellen; of om "
-"informatie erover te bekijken."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Printerlijst verversen (om alle CUPS printers-op-afstand zichtbaar te maken)"
-
-#: ../../printerdrake.pm_.c:2464
-msgid "Change the printing system"
-msgstr "Wijzig het printsysteem"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Normale modus"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Wenst u een andere printer te configureren?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Printerconfiguratie aanpassen"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Printer %s\n"
-"Wat wilt u aanpassen aan deze printer?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "Doe het!"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Soort printerverbinding"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Printernaam, beschrijving, locatie"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Printerfabrikant, model, aansturingsprogramma"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Printerfabrikant, model"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Stel deze printer in als standaardprinter"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Deze printer aan Star Office/OpenOffice.org toevoegen"
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Deze printer verwijderen uit Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Druk testpagina('s) af"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Weet hoe deze printer kan worden gebruikt"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Printer verwijderen"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Bezig met verwijderen van oude printer \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Standaard printer"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "De \"%s\"-printer is nu ingesteld als de standaardprinter."
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Bezig met toevoegen van printer aan Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-"De printer \"%s\" is niet succesvol aan Star Office/OpenOffice.org "
-"toegevoegd."
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-"Het toevoegen van de printer \"%s\" aan Star Office/OpenOffice.org is "
-"mislukt."
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr "Bezig met verwijderen van printer uit Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-"De printer \"%s\" is succesvol uit Star Office/OpenOffice.org verwijderd."
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-"Het verwijderen van de printer \"%s\" uit Star Office/OpenOffice.org is "
-"mislukt."
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Weet u zeker dat u de printer \"%s\" wilt verwijderen?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Bezig met verwijderen van printer \"%s\" ..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Configuratie van proxy"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Welkom bij de proxy-configuratie.\n"
-"\n"
-"Hier kunt u uw http en ftp proxy's opgeven, al dan niet\n"
-"met loginnaam en wachtwoord\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Gelieve de http proxy-informatie in te vullen.\n"
-"Laat het leeg in het geval u geen http proxy wenst."
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "poort"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "Proxy moet beginnen met http:"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Het poort-gedeelte moet numeriek zijn"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Gelieve de ftp-proxy informatie\n"
-"in te vullen. Laat het leeg als u geen ftp proxy wenst"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "URL moet beginnen met ftp:"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Voer alstublieft de proxy loginnaam en wachtwoord\n"
-"in, als deze er zijn. In andere gevallen laat u dit leeg."
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "loginnaam"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "wachtwoord"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "Voer wachtwoord opnieuw in"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "De wachtwoorden kloppen niet met elkaar. Probeert u het opnieuw!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Kan geen partitie toevoegen aan een _geformatteerde_ RAID md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Kan niet schrijven naar bestand %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid-fout!"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid-fout! (misschien ontbreken de raidtools?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Niet genoeg partities voor RAID-niveau %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Start het ALSA (Advanced Linux Sound Architecture) geluidssysteem"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, een periodieke commando-planner."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd is gebruikt voor het controleren van de batterijstatus en om dit te "
-"loggen via syslog.\n"
-"Het kan ook gebruikt worden om de machine uit te schakelen als het "
-"spanningsniveau van de batterij laag is."
-
-#: ../../services.pm_.c:18
-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 ""
-"Start commando's die door het at commando gepland zijn op het moment dat\n"
-"werd opgegeven als at werd gestart, en draait batch-commando's wanneer het "
-"load-average laag genoeg is."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron is een standaard UNIX-programma dat door de gebruiker gespecificeerde "
-"programma's start\n"
-"op periodiek geplande tijden. vixie cron voegt een aantal 'features' toe "
-"aande basis UNIX-cron,\n"
-"waaronder betere veiligheid en krachtigere configuratieopties."
-
-#: ../../services.pm_.c:23
-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 voegt muisondersteuning toe aan text-based Linux-toepassingen zoals de\n"
-"Midnight Commander. Het laat ook mouse-based console knippen-en-plakken "
-"toe,\n"
-"en biedt ook ondersteuning voor pop-up menu's op de console."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake draait als een hardware-sonde, en eventueel \n"
-"configureert het nieuwe of veranderde hardware."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache is een World Wide Web-server. Het wordt gebruikt om HTML-bestanden en "
-"CGI aan te bieden."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"De internet superserver daemon (meestal inetd genoemd) start een hele\n"
-"hoop andere internetdiensten wanneer nodig. Het is verantwoordelijk voor\n"
-"vele diensten, waaronder telnet, ftp, rsh en rlogin. Als u inetd "
-"uitschakelt,\n"
-"schakelt u alle diensten uit waar de daemon verantwoordelijk voor is."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Pakket-filtering inschakelen voor Linux kernel 2.2-serie, om \n"
-"een firewall op te zetten die uw machine beschermt tegen \n"
-"aanvallen vanuit het netwerk."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Dit pakket laadt de geselecteerde toetsenbord-layout als ingesteld in\n"
-"/etc/sysconfig/keyboard. Dit kan geselecteerd worden via de kbdconfig "
-"utility.\n"
-"U laat dit best aanstaan voor de meeste machines."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Automatisch opnieuw aanmaken van kernel header in \n"
-"/boot voor /usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Automatisch vinden en configureren van hardware bij het opstarten"
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf zal op sommige momenten regelen dat diverse \n"
-"taken worden uitgevoerd bij het opstarten, om de systeem-\n"
-"configuratie te behouden."
-
-#: ../../services.pm_.c:43
-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 is de print-daemon, die nodig is om lpr goed te laten werken. Het is\n"
-"voornamelijk een server die print-jobs naar printers stuurt en regelt."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual Server, gebruikt om een hoge-prestatie en hoge-\n"
-"beschikbaarheid server te bouwen."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) is een Domain Name Server (DNS) die wordt gebruikt om hostnamen "
-"naar IP-adressen om te zetten."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"(Ont)koppelt alle Network File System (NFS), SMB (Lan Manager/Windows)\n"
-"en NCP (NetWare) koppelpunten."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Activeert/Deactiveert alle netwerk-interfaces die geconfigureerd zijn\n"
-"om bij het opstarten ingeschakeld te worden."
-
-#: ../../services.pm_.c:52
-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 is een populair protocol voor bestandsdeling over TCP/IP-netwerken.\n"
-"Deze dienst geeft u NFS-serverfunctionaliteit, die dan wordt geregeld via "
-"het\n"
-"bestand /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS is een populair protocol voor bestandsdeling over TCP/IP-netwerken.\n"
-"Deze dienst geeft u NFS-bestands'locking'-functionaliteit."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Automatisch aanzetten van de numlock-toets onder \n"
-"commandovensters en XFree bij het opstarten."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Ondersteun de OKI 4w en compatibele winprinters"
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA-ondersteuning dient meestal om ethernet en modems in laptops te "
-"onder-\n"
-"steunen. Het zal niet gestart worden tenzij het geconfigureerd is, dus het "
-"is\n"
-"veilig om het geďnstalleerd te hebben op machines die het niet nodig hebben."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"De portmapper beheert RPC-verbindingen, die gebruikt worden door protocols\n"
-"zoals NFS en NIS. De portmap-server moet draaien op machines die fungeren\n"
-"als servers voor protocols die het RPC-mechanisme gebruiken."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix is een Mail Transport Agent, een programma dat post verplaatst van "
-"de ene machine naar de andere."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Bewaart en herstelt de systeem-entropy pool voor betere generatie\n"
-"van willekeurige cijfers."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Wijs rauwe apparaten toe aan blok-georiënteerde apparaten \n"
-"(zoals partities op een harde schijf), voor het gebruik van \n"
-"applicaties zoals Oracle"
-
-#: ../../services.pm_.c:71
-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 ""
-"De routed daemon laat automatische IP-router-tabel updates toe via het RIP-\n"
-"protocol. RIP is vooral gebruikt op kleine netwerken, complexere routing-\n"
-"protocols zijn nodig voor complexere netwerken."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Het rstat-protocol laat gebruikers op een netwerk de prestatie-cijfers\n"
-"voor elke machine op dat netwerk op te vragen."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Het rusers-protocol laat gebruikers op een netwerk toe om de kijken wie er\n"
-"ingelogd is op de andere machines op dat netwerk."
-
-#: ../../services.pm_.c:78
-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 ""
-"Het rwho-protocol laat gebruikers op afstand een lijst opvragen van alle\n"
-"gebruikers die op een machine ingelogd zijn die de rwho daemon draait.\n"
-"(vergelijkbaar met finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Schakel het geluidssysteem van uw machine in"
-
-#: ../../services.pm_.c:81
-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 is de manier die vele daemons gebruiken om boodschappen te loggen "
-"naar\n"
-"verscheidene systeem-logbestanden. Het is een goed idee syslog altijd te "
-"draaien."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Laad de stuurprogramma's voor uw USB-apparaten"
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Start de X Font Server (deze is noodzakelijk voor het draaien\n"
-"van XFree)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-"Selecteer welke diensten automatisch gestart moeten worden bij het opstarten"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Afdrukken"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Bestanden delen"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "Systeem"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Beheer op afstand"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Database-server"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Diensten: %d geactiveerd van %d geregistreerd"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Diensten"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "actief"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "gestopt"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Diensten en daemons"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Geen extra informatie over\n"
-"deze dienst beschikbaar, sorry."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Bij opstarten"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Start"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Stoppen"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Bedankt dat u voor Mandrake Linux 8.2 gekozen hebt"
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr "Welkom in de Open Source-wereld"
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-"Het succes van MandrakeSoft is gebaseerd op het principe van Vrije Software. "
-"Uw nieuwe besturingssysteem is het resultaat van het gezamenlijke werk van "
-"de wereldwijde Linux-gemeenschap."
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-msgid "Join the Free Software world"
-msgstr "Doe mee met de wereld van Vrije Software"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-"Leer de Open Source-gemeenschap kennen en word er deelgenoot van. Leer, "
-"doceer en help anderen door u aan te sluiten bij de vele discussiefora die u "
-"vindt op onze \"Community\"-webpagina's"
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internet en Berichten"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-"Mandrake Linux 8.2 biedt de software om toegang te krijgen tot alles wat het "
-"Internet te bieden heeft: Surf over het web en bekijk animaties met Mozilla "
-"en Konqueror, wissel e-mail uit & beheer uw persoonlijke informatie met "
-"Evolution en Kmail, en veel meer"
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedia en Grafisch"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-"Mandrake Linux 8.2 laat u uw multimedia-computer tot aan zijn grenzen "
-"drijven! Gebruik de allernieuwste software om muziek- en audiobestanden af "
-"te spelen, uw plaatjes en foto's te bewerken en te beheren, TV en video's te "
-"kijken en veel meer"
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Ontwikkeling"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-"Mandrake Linux 8.2 is het ultieme ontwikkelplatform. Ontdek de kracht van de "
-"GNU gcc compiler naast de beste Open Source ontwikkelomgevingen"
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Mandrake Controlecentrum"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-"Het Mandrake Linux 8.2 Controlecentrum is een alles-in-één-plek om uw "
-"Mandrake-systeem volledig aan te passen en te configureren"
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "Gebruiker-interfaces"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-"Mandrake Linux 8.2 biedt 11 verschillende grafische werkplek-omgevingen en "
-"window managers waaruit u kunt kiezen, waaronder GNOME 1.4, KDE 2.2.2, "
-"Window Maker 0.8 en de rest"
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Server software"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-"Transformeer uw computer naar een krachtige server met slechts enkele "
-"muisklikken: Web server, e-mail, firewall, router, file- en printserver, ..."
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Spelletjes"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-"Mandrake Linux 8.2 biedt het beste in Open Source games - arcade, actie, "
-"kaarten, sporten, strategie, ..."
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-"Wilt u Linux leren op een eenvoudige, snelle en gratis manier? MandrakeSoft "
-"biedt gratis Linux-training, naast een manier om uw voortgang te testen, op "
-"MandrakeCampus -- ons online trainingscentrum"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-"Kwaliteits-ondersteuning vanuit de Linux-gemeenschap, en van MandrakeSoft, "
-"is om de hoek! En indien u al een Linux-veteraan bent, word een \"Expert\" "
-"en deel uw kennis op onze ondersteuningswebpagina"
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-"Voor al uw IT-projecten staan onze consultants klaar om te analyseren wat u "
-"nodig heeft en een aangepaste oplossing te bieden. Profiteer van "
-"MandrakeSoft's enorme ervaring als Linux-producent voor een waar IT-"
-"alternatief voor uw bedrijfsorganisatie"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-"Ons volledige scala aan Linux-oplossingen, naast speciale aanbiedingen voor "
-"onze produkten en 'goodies', is beschikbaar op onze e-store"
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-"Voor meer informatie over MandrakeSoft's Professional Services en "
-"commerciële produkten, zie de volgende webpagina:"
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Bezig met installeren van pakketten..."
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Ik kan uw partitietabel niet lezen, ze is te corrupt voor mij :-(\n"
-"Ik zal proberen door te gaan en de slechte partities te verwijderen"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Fout!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Ik kan het benodigde beeld-bestand `%s' niet vinden."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Configuratieprograma voor auto-installatie"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"U staat op het punt om een auto-installatie diskette te configureren. \n"
-"Deze functie is enigszins risicovol en moet met voorzorg gebruikt worden.\n"
-"\n"
-"Met die functie zult u in staat zijn de installatie die u heeft uitgevoerd "
-"op deze computer te herhalen. Daarbij worden u bij enkele stappen vragen "
-"gesteld, om de bijbehorende waarden aan te passen.\n"
-"\n"
-"Voor een maximale graad van veiligheid, zal het partitioneren en formatteren "
-"nooit automatisch uitgevoerd worden, ongeacht wat u gekozen heeft gedurende "
-"de installatie van deze computer.\n"
-"\n"
-"Wenst u door te gaan?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Configuratie van automatische stappen"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Kiest u alstublieft voor elke stap of deze zich zal herhalen zoals bij uw "
-"installatie, of dat deze handmatig zal zijn"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Welkom.\n"
-"\n"
-"De parameters van de auto-installatie zijn aanwezig in de afdelingen aan de "
-"linkerkant"
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Gefeliciteerd!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"De diskette is met succes aangemaakt.\n"
-"U kunt nu uw installatie herhalen."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Auto-installatie"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Item toevoegen"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Het laatste item verwijderen"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Rapport \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Daemon Rapport\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Rapport Details\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "totale voortgang"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "Reservekopie maken van systeembestanden..."
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "Harde schijf reservekopie..."
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "Reservekopie gebruikersbestanden..."
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Voortgang reservekopie harde schijf..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Reservekopie andere bestanden..."
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"bestandslijst via FTP verzonden: %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) Er is een probleem opgetreden met de FTP-verbinding. Het is niet "
-"mogelijk om uw reservekopie-bestanden per FTP te verzenden.\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Er is een fout opgetreden tijdens het versturen van e-mail.\n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "Bestandsselectie"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr "Selecteer de bestanden of mappen en klik op 'Toevoegen'"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Gelieve alle opties te selecteren die u nodig heeft.\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Deze opties kunnen een reservekopie maken van alle bestanden in uw /etc "
-"map.\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Reservekopie maken van uw systeembestanden ( /etc map )"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-"Gebruik incrementele reservekopie (de oude reservekopieën niet vervangen)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Essentiële bestanden niet opnemen (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr "Met deze optie kunt u iedere versie van uw /etc herstellen."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-"Gelieve alle gebruikers te selecteren die u in uw reservekopie wilt opnemen."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "Browser-cache niet opnemen"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Gebruik incrementele reservekopieën (vervang geen oude reservekopieën)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Verwijder geselecteerden"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32) "
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr "Gebruikers"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Gebruik FTP-verbinding voor reservekopie"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Gelieve hostnaam of IP in te voeren."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-"Gelieve de map op deze host \n"
-" om de reservekopie in op te slaan\n"
-" in te voeren."
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Voer uw login in"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Voer uw wachtwoord in"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Onthoud dit wachtwoord"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP-verbinding"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Beveiligde verbinding"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "Gebruik CD/DVD-ROM voor reservekopie"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Kies uw CD-ruimte"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "Ga na of u CDRW-media gebruikt"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Gelieve na te gaan of u uw CDRW wilt wissen voor u verdergaat"
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Ga na of u de installatie-opstartprocedure\n"
-" wilt opnemen op uw CD."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Voer het apparaatnaam van uw CD Writer in\n"
-" Voorbeeld: 0,1,0"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "Gebruik tape voor backup"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "Voer de apparaatnaam in om voor de reservekopie te gebruiken"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Voer de maximumruimte in die\n"
-" Drakbackup mag gebruiken"
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Voer de map voor opslaan in:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Gebruik quota voor reservekopie-bestanden"
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "Netwerk"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "Harde schijf / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "ieder uur"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "dagelijks"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "wekelijks"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "maandelijks"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "Gebruik daemon"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"Gelieve het tijdsinterval \n"
-"tussen iedere backup te kiezen"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"Kies de media\n"
-"voor de reservekopie."
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Harde schijf met daemon gebruiken"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "FTP met daemon gebruiken"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Let u op dat de cron daemon aanstaat in uw 'diensten'."
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "Verstuur e-mailrapport na elke reservekopie naar:"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "Wat"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "Waar"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "Wanneer"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "Meer opties"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup configuratie"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Bepaal waar u de reservekopie wilt maken"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "op harde schijf"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "over netwerk"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Kies waar u een reservekopie van wilt maken"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "Reservekopie-systeem"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "Reservekopie Gebruikers"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Handmatig gebruiker selecteren"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Reservekopie-bronnen: \n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Systeembestanden:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Gebruikersbestanden:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Overige bestanden:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- Pad voor opslaan op harde schijf: %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- Host voor opslaan via FTP: %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t gebruikersnaam: %s\n"
-"\t\t op pad: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Opties:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tSysteembestanden niet opnemen\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tReservekopieën gebruiken tar en bzip2\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tReservekopieën gebruiken tar en gzip\n"
-
-# check if this is the right translation, unclear! -Reinout
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- Daemon (%s) opnemen: \n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t-harde schijf.\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-CDROM.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Netwerk over FTP.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Netwerk over SSH.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Geen configuratie, gelieve Wizard of Geavanceerd aan te klikken.\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Lijst van te herstellen gegevens:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Lijst van gecorrumpeerde gegevens:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "Gelieve het de volgende keer te deselecteren of te verwijderen"
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "Reservekopiebestanden zijn gecorrumpeerd"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " Al uw geselecteerde gegevens zijn"
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " Succesvol hersteld op %s"
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " Configuratie herstellen"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "OK om de overige bestanden te herstellen"
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Te herstellen gebruikerslijst (alleen de meest recente datum per gebruiker "
-"is van belang)"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "Reservekopie maken van systeembestanden voor:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "Gelieve de datum te kiezen om te herstellen"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Gebruik harde schijf voor reservekopie"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Herstellen van harde schijf"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "Voer de map in waar reservekopieën opgeslagen worden"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Selecteer andere media om vanaf te herstellen"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Andere media"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "Systeem herstellen"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Gebruikers herstellen"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Overige herstellen"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "selecteer te herstellen pad (in plaats van / )"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"Voer nieuwe backup uit alvorens te herstellen (alleen voor incrementele "
-"reservekopieën)"
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Verwijder gebruikersmappen alvorens te herstellen"
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Alle reservekopieën herstellen"
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "Aangepast herstellen"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Help"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "Vorige"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Opslaan"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Reservekopie maken"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Reservekopie herstellen"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Volgende"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Gelieve eerst een reservekopie te maken voordat u probeert te herstellen...\n"
-" of ga na dat uw pad voor opslaan correct is."
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"Er trad een fout op tijdens \"sendmail\"\n"
-" Uw melding is niet verstuurd.\n"
-" Gelieve sendmail te configureren."
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lijst van te installeren pakketten"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Er trad een fout op tijdens het versturen via FTP.\n"
-" Gelieve uw FTP-configuratie te corrigeren."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Selecteer de gegevens om te herstellen"
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Selecteer media voor de reservekopie"
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Selecteer de gegevens waarvan u een reservekopie wilt maken..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Kan geen configuratiebestand vinden \n"
-"klikt u op Wizard of Geavanceerd."
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "In ontwikkeling ... nog even wachten."
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "Reservekopie maken van systeembestanden"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "Reservekopie maken van gebruikersbestanden"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Reservekopie maken van overige bestanden"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Totale voortgang"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "bestanden worden per FTP verstuurd"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Bezig met versturen van bestanden..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "Lijst van gegevens om op te nemen op CD-ROM."
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Voer de snelheid van de CD-Writer in"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Gelieve uw CD Writer apparaatnaam in te voeren (Voorbeeld: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Ga na of u de installatie-opstartprocedure wilt opnemen op uw CD."
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "Nu reservekopie maken vanaf configuratiebestand"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Backup-configuratie bekijken"
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "Configuratie met wizard"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "Geavanceerde configuratie"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "Nu reservekopie maken"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-"\n"
-" Sommige fouten die tijdens sendmail optreden worden\n"
-" veroorzaakt door een verkeerde configuratie van postfix.\n"
-" Om dit op te lossen dient u 'myhostname' of 'mydomain'\n"
-" in te stellen in /etc/postfix/main.cf\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-"Omschrijving:\n"
-"\n"
-" Drakbackup dient om een reservekopie te maken van uw systeem.\n"
-" Gedurende de configuratie kunt u selecteren:\n"
-"\t- Systeembestanden,\n"
-"\t- Gebruikersbestanden,\n"
-"\t- Overige bestanden.\n"
-"\tof uw gehele systeem ... en Overigen (zoals Windows-partities)\n"
-"\n"
-" Drakbackup laat u een reservekopie maken van uw systeem op:\n"
-"\t- Harde schijf.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (met automatisch opstarten, redding en auto-"
-"installatie).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup laat u uw systeem herstellen naar een\n"
-" door de gebruiker te bepalen map.\n"
-"\n"
-" Standaard zullen alle reservekopieën opgeslagen worden in uw\n"
-" /var/lib/drakbackup map.\n"
-"\n"
-" Configuratiebestand:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Herstellen-stap:\n"
-" \n"
-" Tijdens de herstellen-stap, zal Drakbackup uw\n"
-" oorspronkelijke map verwijderen en nagaan dat geen\n"
-" van uw reservekopie-bestanden corrupt is. Het is\n"
-" aanbevelenswaardig om een laatste reservekopie te\n"
-" maken alvorens te herstellen.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-"beschrijving van opties:\n"
-"\n"
-"Weest u voorzichtig met het gebruik van FTP-reservekopie,\n"
-"omdat alleen reeds gemaakte reservekopieën naar de server\n"
-"worden verzonden. Dus op dit moment dient u de reservekopie\n"
-"op uw harde schijf te maken alvorens deze te verzenden naar\n"
-"de server.\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-"\n"
-"Problemen bij Reservekopie herstellen:\n"
-"\n"
-"Tijdens de herstellen-stap zal Drakbackup al uw\n"
-"reservekopiebestanden controleren alvorens ze\n"
-"te herstellen. \n"
-"Voordat het herstellen begint zal Drakbackup uw\n"
-"oorspronkelijke map verwijderen. Alle gegevens erin\n"
-"zullen verloren gaan. Het is belangrijk om voorzichtigheid\n"
-"te betrachten en de reservekopiebestanden niet\n"
-"handmatig te wijzigen.\n"
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-"Omschrijving:\n"
-"\n"
-" Drakbackup dient om een reservekopie te maken van uw systeem.\n"
-" Gedurende de configuratie kunt u selecteren:\n"
-"\t- Systeembestanden,\n"
-"\t- Gebruikersbestanden,\n"
-"\t- Overige bestanden.\n"
-"\tof uw gehele systeem ... en Overigen (zoals Windows-partities)\n"
-"\n"
-" Drakbackup laat u een reservekopie maken van uw systeem op:\n"
-"\t- Harde schijf.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (met automatisch opstarten, redding en auto-"
-"installatie).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup laat u uw systeem herstellen naar een\n"
-" door de gebruiker te bepalen map.\n"
-"\n"
-" Standaard zullen alle reservekopieën opgeslagen worden in uw\n"
-" /var/lib/drakbackup map.\n"
-"\n"
-" Configuratiebestand:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Herstellen-stap:\n"
-" \n"
-" Tijdens de herstellen-stap, zal Drakbackup uw\n"
-" oorspronkelijke map verwijderen en nagaan dat geen\n"
-" van uw reservekopie-bestanden corrupt is. Het is\n"
-" aanbevelenswaardig om een laatste reservekopie te\n"
-" maken alvorens te herstellen.\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "De installatie van %s is niet gelukt. De volgende fout werd gevonden:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Zoek in geďnstalleerde lettertypen"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Geďnstalleerde lettertypen deselecteren"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "alle lettertypen ontleden"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "geen lettertypen gevonden."
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "klaar"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "kan geen lettertypen vinden in uw aangekoppelde partities"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Correcte lettertypen opnieuw selecteren"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "kan geen enkel lettertpype vinden.\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Zoek lettertypen in lijst 'geďnstalleerd'"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Kopiëren van lettertypen"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "Installatie van True Type lettertypen"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "Even geduld terwijl 'ttmkfdir' wordt uitgevoerd..."
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "True Type installatie klaar"
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "Lettertypen-conversie"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "'type1inst' is bezig"
-
-# right translation? What is meant here?
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr "Ghostscript verwijzingen"
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "ttf-lettertype conversie"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "pfm-lettertype conversie"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Tijdelijke bestanden onderdrukken"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "XFS herstarten"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Lettertype-bestanden onderdrukken"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "xfs herstarten"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Ga na dat u het recht heeft om lettertypen te installeren op uw systeem en "
-"ze te gebruiken, \n"
-"alvorens lettertypen te installeren.\n"
-"-U kunt de lettertypen op de gebruikelijke manier installeren. In zeldzame "
-"gevallen kunnen\n"
-"nep-lettertypen uw X Server laten hangen."
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "Import van lettertypen"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Neem Windows-lettertypen"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Lettertypen deďnstalleren"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Geavanceerde opties"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Lettertypenlijst"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Kies de applicaties waarin de lettertypen beschikbaar zullen zijn:"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Generieke printers"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Selecteer het lettertypebestand of map en klik op 'Toevoegen'"
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Installatielijst"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "klik hier als u er zeker van bent."
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "hier zoniet."
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "Alle gedeselecteerd"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Alles geselecteerd"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "Lijst verwijderen"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Initialen-tests"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Lettertypen op uw systeem kopiëren"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Lettertypen installeren & converteren"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr "Post-installatie"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "Lettertypen op uw systeem verwijderen"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr "Post-deďnstallatie"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Internetverbinding delen"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Internetverbinding delen staat op dit moment aan"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"De setup van Internet Connectie Delen is al uitgevoerd.\n"
-"Het staat op dit moment aan.\n"
-"\n"
-"Wat wenst u te doen?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "uitschakelen"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "klaar"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "herconfigureren"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Bezig met servers uitzetten..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Internetverbinding delen staat op dit moment uit."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Internet Connectie Delen staat niet aan"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Het instellen van Internetverbinding delen is al uitgevoerd.\n"
-"Het staat op dit moment uit.\n"
-"\n"
-"Wat wenst u te doen?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "inschakelen"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Bezig met inschakelen van servers..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Internetverbinding delen staat op dit moment aan"
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"U staat op het punt om uw computer te configureren om zijn Internet-\n"
-"verbinding te delen. Met deze functie zullen andere computers op uw\n"
-"netwerk in staat zijn de internetverbinding van deze computer tegebruiken.\n"
-"\n"
-"Opmerking: u heeft een specifiek hiervoor bestemde netwerk-adapter nodig\n"
-"om een Local Area Network (LAN) op te zetten."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interface %s (gebruikt module %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Interface %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Geen netwerk adapter op uw systeem!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Er is geen ethernet netwerkadapter op uw systeem gevonden. Gelieve het "
-"hardware configuratieprogramma te draaien."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Netwerk Interface"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Er is maar één geconfigureerde netwerkadapter op uw systeem:\n"
-"\n"
-"%s \n"
-"\n"
-"Ik sta op het punt om uw Local Area Network te koppelen aan\n"
-"deze adapter."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Kies alstublieft welke netwerkadapter verbinding zal maken met uw Local Area "
-"Network."
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Netwerk-interface reeds geconfigureerd"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"Waarschuwing, de netwerk-adapter (%s) is reeds geconfigureerd.\n"
-"\n"
-"Wilt u een automatische herconfiguratie?\n"
-"\n"
-"U kunt het ook handmatig doen, maar u moet dan wel weten wat u doet."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Automatisch opnieuw configureren"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "Toon huidige interface-configuratie"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"Huidige configuratie van '%s':\n"
-"\n"
-"Netwerk: %s\n"
-"IP adres: %s\n"
-"IP attribution: %s\n"
-"Stuurprogramma: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Het is mogelijk uw huidige configuratie te behouden en aan te nemen dat u "
-"reeds een DHCP-server heeft ingesteld; controleert u in dat geval of het "
-"klasse-C netwerk dat u gebruikt voor uw lokale netwerk correct is ingelezen; "
-"het wordt niet geherconfigureerd en uw DHCP-serverconfiguratie wordt niet "
-"aangeraakt.\n"
-"\n"
-"In andere gevallen kan het installatieprogramma uw interface herconfigureren "
-"en een DHCP-server voor u instellen.\n"
-"\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "C-Class lokaal netwerk"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "(Deze) DHCP-server IP"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Interface en DHCP-server opnieuw configureren"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Het lokale netwerk eindigde niet op '.0', procedure gestaakt"
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Potentieel LAN-adresconflict gevonden in de huidige configuratie \n"
-"van %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Firewall configuratie gedetecteerd!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Waarschuwing! Een bestaande firewall configuratie is gevonden. U kunt "
-"misschien na de installatie een handmatige aanpassing nodig hebben."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Configureren..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Bezig met het configureren van scripts, installeren van software, starten "
-"vanservers..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemen met installeren van pakket %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Alles is geconfigureerd. \n"
-"U kunt nu uw internetverbinding delen met andere gebruikers op uw Local Area "
-"Network, met gebruikmaking van automatische netwerkconfiguratie (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-"De setup van Internetverbinding delen is al uitgevoerd.\n"
-"Het staat op dit moment uit."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-"De setup van Internetverbinding delen is al uitgevoerd.\n"
-"Het staat op dit moment aan."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Internetverbinding delen is tot op heden nooit geconfigureerd."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Configuratie van Internetverbinding delen"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Welkom bij Internetverbinding delen! \n"
-"\n"
-"%s\n"
-"\n"
-"Klik op Configureer om de instellingen-wizard in te schakelen."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netwerk-configuratie (%d adapters)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiel: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Wis profiel..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Te verwijderen profiel:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nieuw profiel..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Naam van het te creëren profiel (het nieuwe profiel wordt als een kopie van "
-"het huidige aangemaakt) : "
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostnaam:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internet-toegang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Soort:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Even geduld"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configureren van Internet-toegang..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN configuratie"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Stuurprogramma"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configureer Local Area Network..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Klik hier om de 'wizard' in te schakelen ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Wizard..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Toepassen"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Even geduld... bezig met toepassen van de configuratie"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Verbonden"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Niet verbonden"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Verbinding maken..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Verbinding neerleggen..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Waarschuwing: een andere internetverbinding is bespeurd, misschien gebruikt "
-"deze uw netwerk."
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"U heeft helemaal geen geconfigureerde interface.\n"
-"Configureer deze eerst door op 'Configureer' te klikken"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN Configuratie"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Opstart-protocol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Aangezet bij het opstarten"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP client"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "nu activeren"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "nu de-activeren"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Deze interface is nog niet geconfigureerd.\n"
-"Start de configuratie-wizard in het hoofdscherm."
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"U heeft helemaal geen internetverbinding.\n"
-"Creëer er eerst één door op 'Configureer' te klikken"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetverbinding configureren"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetverbinding configureren"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Soort verbinding: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameters"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet-kaart"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP Client"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Selecteer een veiligheids-niveau"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Controle-Centrum"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Selecteer het programma dat u wenst te gebruiken"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "Canada (kabel)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "VS (ether)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "VS (kabel)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "VS (kabel-hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "China (ether)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japan (ether)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "Japan (kabel)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Oost-Europa"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Ierland"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "West-Europa"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Australië"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "Nieuw-Zeeland"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "Zuid-Afrika"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Argentinië"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Gelieve uw\n"
-"TV-norm en land in te geven"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "TV norm :"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Gebied :"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "Zoeken naar TV-kanalen is bezig..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "Zoeken naar TV-kanalen"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "gebruik: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Wat is uw toetsenbord-layout?"
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Wenst u dat de BackSpace toets Delete geeft in het terminalvenster?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Verander Cd-Rom"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Stop a.u.b. de Installatie CD-ROM in uw drive en druk daarna op OK.\n"
-"Als u deze niet heeft, drukt u op Annuleren om \"live upgrade\" te vermijden."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Niet in staat \"live upgrade\" te starten!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-"De wijziging is gemaakt, maar u moet uitloggen voordat het effect heeft"
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "Toon alleen voor de geselecteerde dag"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Bestand/_Nieuw"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Bestand/_Openen"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Bestand/O_pslaan"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Bestand/Ops_laan als..."
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Bestand/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Opties"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Opties/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Help"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Help/_Info..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "Gebruiker"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "Meldingen"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "Syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Uitleg van Mandrake Gereedschappen"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "zoeken"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Een hulpprogramma om uw logs bij te houden"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Instellingen"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "komt overeen met"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "maar komt niet overeen met"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Kies een bestand"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Kalender"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Inhoud van het bestand"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "waarschuwing via e-mail/SMS"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "Even geduld, bezig met ontleden van bestand: %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "Configuratie van waarschuwing per e-mail/SMS"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Welkom bij het e-mail/SMS configuratieprogramma.\n"
-"\n"
-"Hier kunt u het waarschuwingssysteem instellen.\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "instelling diensten"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-"U zult een waarschuwing ontvangen indien één van de geselecteerde diensten "
-"niet meer draait"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "instelling processorbelasting"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-"U zult een waarschuwing ontvangen indien de processorbelasting hoger is dan "
-"deze waarde"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "configuratie van waarschuwing"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "Configureer de manier waarop het systeem u waarschuwt"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Opslaan als..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Welk type muis heeft u?"
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "Geen seriële USB gevonden\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Derde knop emuleren?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "%s gevonden op %s, deze configureren?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Selecteer een scanner"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "Deze %s-scanner is niet ondersteund"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Boot-apparaat"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"Deze %s-scanner moet geconfigureerd worden met printerdrake.\n"
-"U kunt printerdrake opstarten vanuit het Mandrake Controlecentrum in de "
-"Hardware-afdeling."
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Firewall configuratie"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Firewall configuratie"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"U heeft reeds een firewall ingesteld.\n"
-"Klik op Configureer om de firewall te wijzigen\n"
-"of te verwijderen."
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Klik op Configureer om een standaard-firewall in te stellen."
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Kies uw taal"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Installatieklasse selecteren"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Harde schijf-detectie"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Muis configureren"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Toetsenbord kiezen"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Veiligheid"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Bestandssystemen instellen"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Partities formatteren"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Te installeren pakketten kiezen"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Systeem installeren"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Gebruiker toevoegen"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Netwerk-configuratie"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Diensten configureren"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Opstart-lader installeren"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Boot-diskette aanmaken"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "X Configureren"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Installeer systeemupdates"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Installatie afsluiten"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Configuratie van tinyfirewall\n"
-"\n"
-"Dit programma configureert een persoonlijk instelling van de firewall\n"
-"voor deze Mandrake Linux machine. Voor een krachtige, specifieke\n"
-"firewall-oplossing, zie de gespecialiseerde MandrakeSecurity Firewall\n"
-"distributie."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"We zullen u nu enkele vragen stellen over de diensten waar u het \n"
-"Internet toestemming voor wilt geven om mee te verbinden.\n"
-"Denk alstublieft goed na over deze vragen, omdat de veiligheid \n"
-"van uw computer op het spel staat. \n"
-"\n"
-"Wanneer u op dit moment niet één van deze diensten draait,\n"
-"blokkeer deze dan met de firewall. U kunt deze configuratie \n"
-"altijd nog veranderen door dit programma opnieuw \n"
-"te starten!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Draait u een webserver op deze machine waar het hele Internet \n"
-"bij moet kunnen? Wanneer u een webserver draait die alleen door \n"
-"deze machine aangesproken moet kunnen worden, dan kunt u \n"
-"hier veilig 'nee' antwoorden. \n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Draait u een 'name server' op deze machine? Als u er geen hebt \n"
-"ingesteld om IP- en zone-informatie uit te delen naar het hele \n"
-"Internet, antwoordt u dan alstublieft 'nee'. \n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Wilt u binnenkomende Secure Shell (ssh)-verbindingen toestaan?\n"
-"Dit is een vervanging voor telnet welke u kunt gebruiken om in te \n"
-"loggen. Als u op dit moment telnet gebruikt, dan is het ten zeerste \n"
-"aan te raden om over te schakelen naar ssh. Telnet is niet versleuteld \n"
-"-- dus sommige aanvallers kunnen uw wachtwoord stelen als u het \n"
-"gebruikt. Ssh is versleuteld en staat dit soort afluisterpraktijken \n"
-"niet toe."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Wenst u binnenkomende telnet-verbindingen toe te staan?\n"
-"Dit is vreselijk onveilig, zoals we op het vorige scherm uiteen hebben\n"
-"gezet. We raden u sterk aan hier 'Nee' te antwoorden en ssh te \n"
-"gebruiken in plaats van telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Draait u een FTP server hier die vanaf het Internet toegankelijk moet\n"
-"zijn? Zoja, dan raden wij u sterk aan deze alleen voor 'Anonymous'\n"
-"bestandsoverdrachten te gebruiken. Ieder wachtwoord dat via FTP\n"
-"verstuurd wordt kan gestolen worden door aanvallers, omdat FTP\n"
-"eveneens geen versleuteling toepast bij het versturen van wachtwoorden.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Draait u een mail-server hier? Als u uw berichten met pine,\n"
-"mutt of een andere tekstgebaseerde mail-client verstuurt,\n"
-"dan is het antwoord waarschijnlijk 'ja'. In andere gevalen\n"
-"kunt u dit het beste blokkeren met de firewall.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Draait u een POP- of IMAP-server hier? Dit zou gebruikt\n"
-"worden om niet-webgebaseerde mail-accounts te hosten\n"
-"via deze machine.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Het heeft er alle schijn van dat u een 2.2-kernel draait. Als\n"
-"uw netwerk-IP automatisch wordt ingesteld door een computer\n"
-"in uw huis of kantoor (dynamische toewijzing), dan moeten\n"
-"we dit toelaten. Is dit het geval?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Wordt de tijd op uw computer gesynchroniseerd met een andere computer?\n"
-"Meestal wordt dit gebruikt door middelgrote Unix/Linux-organisaties\n"
-"om de tijd voor het loggen en dergelijke te synchroniseren. Als u geen\n"
-"deel uitmaakt van een groter kantoor en hier nog nooit van gehoord\n"
-"hebt, dan is dit waarschijnlijk niet het geval."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Configuratie is gereed. Kunnen we deze wijzigingen naar schijf "
-"wegschrijven?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Kan %s niet openen: %s \n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Fout bij het openen van %s voor schrijfbewerking: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr "Nee, ik heb geen DHCP nodig"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr "Ja, ik heb DHCP nodig"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr "Nee, ik heb NTP niet nodig"
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr "Ja, ik heb NTP nodig"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr "Niet opslaan"
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr "Opslaan en beëindigen"
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "Firewall configuratie-Wizard"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr "Nee (dit met de firewall van internet afsluiten)"
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr "Ja (dit met de firewall doorlaten)"
-
-#: ../../tinyfirewall.pm_.c:232
-msgid "Please Wait... Verifying installed packages"
-msgstr ""
-"Bezig met nagaan van geďnstalleerde pakketten, even geduld alstublieft..."
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-"Het installeren van de benodigde pakketten is mislukt: %s en Bastille.\n"
-" Probeer ze met de hand te installeren."
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Netwerk-computer (client)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS server, SMB server, Proxy server, ssh server"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Kantoor"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "GNOME Werkstation"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Gereedschappen voor uw Palm Pilot of uw Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Werkstation"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Firewall/Router"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domeinnaam en Network Information Server"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Kantoorprogramma's: tekstverwerkers (kword, abiword), rekenbladen (kspread, "
-"gnumeric), PDF-lezers, etc"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Audio-gerelateerde programma's: mp3- of midi afspelen, mengpanelen etc"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Boeken en Howto's over Linux en Vrije Software"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE Werkstation"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedia - Video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-"Verzameling programma's voor post, nieuws, web, bestandsoverdracht en chatten"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Database"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL of MySQL database-server"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Programma's om de configuratie van uw computer te vergemakkelijken"
-
-#
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedia - Geluid"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Hulpprogramma's"
-
-#
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Documentatie"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Commandoregel-gereedschappen"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix post-server, Inn nieuws-server"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internet-station"
-
-#
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimedia-station"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Configuratie"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Meer grafische bureaubladen (GNOME, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"Het K Desktop Environment, de basis-grafische omgeving met een verzameling "
-"van bijbehorende programma's"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Grafische omgeving"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Programma's om CD's mee te creëren en te branden"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Kantoor Werkstation"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Grafische programma's zoals The Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C and C++ ontwikkelingsbibliotheken, programma's en include-bestanden"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Netwerk-computer server"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Post/Groupware/Nieuws"
-
-#
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Game-station"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Video-afspeel- en bewerkingsprogramma's"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedia - Grafisch"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Amusementsprogramma's: arcade, bordspellen, strategie etc"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Verzameling programma's om e-post en usenet nieuws mee te lezen en te "
-"schrijven, en om het Web mee door te bladeren"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivering, emulators, toezicht houden"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Persoonlijke Financiën"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Een grafische omgeving met gebruikersvriendelijke verzameling applicaties en "
-"bureaublad-programma's"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Clients voor verschillende protcollen waaronder ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Internet gateway"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Geluids- en video-afspeel- en bewerkingsprogramma's"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Andere grafische bureaubladen"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editors, shells, bestandsbeheer, terminals"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programma's om uw financiën mee te beheren, zoals gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Persoonlijk Gegevensbeheer"
-
-#
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedia - CD branden"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Wetenschappelijk werkstation"
-
-#~ msgid "About"
-#~ msgstr "Info"
-
-#~ msgid " Help "
-#~ msgstr " Help"
-
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr ""
-#~ "Kan de kernel-modules behorend bij uw kernel niet benaderen (bestand %s \n"
-#~ "is afwezig)"
diff --git a/perl-install/share/po/no.po b/perl-install/share/po/no.po
deleted file mode 100644
index 9a2e0106b..000000000
--- a/perl-install/share/po/no.po
+++ /dev/null
@@ -1,11745 +0,0 @@
-# KTranslator Generated File
-# Translation file of Mandrake graphic install
-# Copyright (C) 1999 Mandrakesoft
-# Terje Bjerkelia <terje@bjerkelia.com>, 1999-2000
-# Andreas Bergstrřm <abergstr@halden.net>, 2000
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-06-13 15:54+0200\n"
-"PO-Revision-Date: 2002-03-10 11:04GMT\n"
-"Last-Translator: Terje Bjerkelia <terje@bjerkelia.com>\n"
-"Language-Team: Norsk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Configure all heads independently"
-msgstr "Konfigurere all hoder uavhengig"
-
-#: ../../Xconfigurator.pm_.c:244
-msgid "Use Xinerama extension"
-msgstr "Bruk Xinerama utvidelse"
-
-#: ../../Xconfigurator.pm_.c:247
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurer bare kort \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid "Multi-head configuration"
-msgstr "Multi-hode konfigurasjon"
-
-#: ../../Xconfigurator.pm_.c:251
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Systemet ditt střtter konfigurasjon for flere hoder.\n"
-"Hva řnsker du ĺ gjřre?"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Graphics card"
-msgstr "Grafikk-kort"
-
-#: ../../Xconfigurator.pm_.c:263
-msgid "Select a graphics card"
-msgstr "Velg et grafikk-kort"
-
-#: ../../Xconfigurator.pm_.c:287
-msgid "Choose a X server"
-msgstr "Velg en X-tjener"
-
-#: ../../Xconfigurator.pm_.c:287
-msgid "X server"
-msgstr "X-tjener"
-
-#: ../../Xconfigurator.pm_.c:294
-msgid "Choose a X driver"
-msgstr "Velg en X driver"
-
-#: ../../Xconfigurator.pm_.c:294
-msgid "X driver"
-msgstr "X driver"
-
-#: ../../Xconfigurator.pm_.c:361 ../../Xconfigurator.pm_.c:367
-#: ../../Xconfigurator.pm_.c:417 ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:364
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Hvilken konfigurasjon av XFree vil du ha?"
-
-#: ../../Xconfigurator.pm_.c:375
-#, 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 ""
-"Kortet ditt kan ha střtte for maskinvare 3D akselerasjon, men bare med XFree "
-"%s.\n"
-"Kortet ditt er střttet av XFree %s som kan ha bedre střtte i 2D."
-
-#: ../../Xconfigurator.pm_.c:377 ../../Xconfigurator.pm_.c:410
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Kortet ditt kan ha střtte for maskinvare 3D akselerasjon med XFree %s."
-
-#: ../../Xconfigurator.pm_.c:379 ../../Xconfigurator.pm_.c:412
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s med maskinvare 3D akselerasjon"
-
-#: ../../Xconfigurator.pm_.c:387 ../../Xconfigurator.pm_.c:401
-#, 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 ""
-"Kortet ditt kan ha střtte for maskinvare 3D akselerasjon med XFree %s,\n"
-"MERK AT DETTE ER EKSPERIMENTELL STŘTTE OG KAN 'FRYSE' MASKINEN DIN."
-
-#: ../../Xconfigurator.pm_.c:389 ../../Xconfigurator.pm_.c:403
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s med EKSPERIMENTELL maskinvare 3D akselerasjon"
-
-#: ../../Xconfigurator.pm_.c:398
-#, 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 ""
-"Kortet ditt kan ha střtte for maskinvare 3D akselerasjon, men bare med XFree "
-"%s,\n"
-"MERK AT DETTE ER EKSPERIMENTELL STŘTTE OG KAN 'FRYSE' MASKINEN DIN.\n"
-"Kortet ditt er střttet av XFree %s som kan ha bedre střtte i 2D."
-
-#: ../../Xconfigurator.pm_.c:418
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installasjons skjermdriver)"
-
-#: ../../Xconfigurator.pm_.c:422
-msgid "XFree configuration"
-msgstr "XFree konfigurasjon"
-
-#: ../../Xconfigurator.pm_.c:497
-msgid "Select the memory size of your graphics card"
-msgstr "Velg minnestřrrelsen til grafikk-kortet ditt"
-
-#: ../../Xconfigurator.pm_.c:551
-msgid "Choose options for server"
-msgstr "Velg opsjoner for tjener"
-
-#: ../../Xconfigurator.pm_.c:575
-msgid "Choose a monitor"
-msgstr "Velg en monitor"
-
-#: ../../Xconfigurator.pm_.c:575
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:578
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"De to kritiske parametrene er den vertikale oppfrisknings-raten, som er "
-"raten\n"
-"som som oppfrisker hele skjermen, og mest viktig den horisontale \n"
-"sync-raten, som er raten som scanlinjer blir vist pĺ.\n"
-"\n"
-"Det et VELDIG VIKTIG at du ikke spesifiserer en monitor-type med et sync- "
-"omrĺde\n"
-"som er utenfor det monitoren din er i stand til ĺ klare: Du kan skade "
-"skjermen din.\n"
-"Hvis du er usikker, velg en konservativ innstilling."
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Horizontal refresh rate"
-msgstr "Horisontal oppfrisknings-rate"
-
-#: ../../Xconfigurator.pm_.c:586
-msgid "Vertical refresh rate"
-msgstr "Vertikal oppfrisknings-rate"
-
-#: ../../Xconfigurator.pm_.c:623
-msgid "Monitor not configured"
-msgstr "Monitor er ikke konfigurert"
-
-#: ../../Xconfigurator.pm_.c:626
-msgid "Graphics card not configured yet"
-msgstr "Grafikk-kort er ikke konfigurert ennĺ"
-
-#: ../../Xconfigurator.pm_.c:629
-msgid "Resolutions not chosen yet"
-msgstr "Opplřsninger er ikke valgt ennĺ"
-
-#: ../../Xconfigurator.pm_.c:647
-msgid "Do you want to test the configuration?"
-msgstr "Vil du teste konfigurasjonen?"
-
-#: ../../Xconfigurator.pm_.c:651
-msgid "Warning: testing this graphics card may freeze your computer"
-msgstr "Advarsel: testing av dette grafikk-kortet kan `fryse' maskinen din"
-
-#: ../../Xconfigurator.pm_.c:654
-msgid "Test of the configuration"
-msgstr "Test konfigurasjon"
-
-#: ../../Xconfigurator.pm_.c:693 ../../Xconfigurator.pm_.c:705
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"prřv ĺ endre noen parametere"
-
-#: ../../Xconfigurator.pm_.c:693 ../../Xconfigurator.pm_.c:705
-msgid "An error occurred:"
-msgstr "En feil oppsto:"
-
-#: ../../Xconfigurator.pm_.c:734
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Slutter om %d sekunder"
-
-#: ../../Xconfigurator.pm_.c:745
-msgid "Is this the correct setting?"
-msgstr "Er dette den riktige innstillingen?"
-
-#: ../../Xconfigurator.pm_.c:754
-msgid "An error occurred, try to change some parameters"
-msgstr "En feil oppsto, prřv ĺ endre noen parametere"
-
-#: ../../Xconfigurator.pm_.c:825
-msgid "Resolution"
-msgstr "Opplřsning"
-
-#: ../../Xconfigurator.pm_.c:877
-msgid "Choose the resolution and the color depth"
-msgstr "Velg opplřsning og fargedybde"
-
-#: ../../Xconfigurator.pm_.c:879
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Grafikk-kort: %s"
-
-#: ../../Xconfigurator.pm_.c:880
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86-tjener: %s"
-
-#: ../../Xconfigurator.pm_.c:894 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mer"
-
-#: ../../Xconfigurator.pm_.c:894 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:701
-#: ../../my_gtk.pm_.c:1034 ../../my_gtk.pm_.c:1056
-#: ../../standalone/drakbackup_.c:2288 ../../standalone/drakbackup_.c:2359
-#: ../../standalone/drakbackup_.c:2375
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:896 ../../network/netconnect.pm_.c:173
-#: ../../printerdrake.pm_.c:2473 ../../standalone/drakfloppy_.c:146
-#: ../../standalone/draknet_.c:275 ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspertmodus"
-
-#: ../../Xconfigurator.pm_.c:897
-msgid "Show all"
-msgstr "Vis alle"
-
-#: ../../Xconfigurator.pm_.c:942
-msgid "Resolutions"
-msgstr "Opplřsninger"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Tastatur-oppsett: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Type mus: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Enhet mus: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitor HorizSync: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitor VertRefresh: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1518
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Grafikk-kort: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Graphics card identification: %s\n"
-msgstr "Grafikk-kort identifisering: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Minne grafikk: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Fargedybde: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Opplřsning: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1525
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86-tjener: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1526
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 driver: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1544
-msgid "Preparing X-Window configuration"
-msgstr "Forbereder X-Window konfigurasjon"
-
-#: ../../Xconfigurator.pm_.c:1564
-msgid "What do you want to do?"
-msgstr "Hva řnsker du ĺ gjřre?"
-
-#: ../../Xconfigurator.pm_.c:1569
-msgid "Change Monitor"
-msgstr "Endre monitor"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Graphics card"
-msgstr "Endre grafikk-kort"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Change Server options"
-msgstr "Endre opsjoner for tjener"
-
-#: ../../Xconfigurator.pm_.c:1574
-msgid "Change Resolution"
-msgstr "Endre opplřsning"
-
-#: ../../Xconfigurator.pm_.c:1575
-msgid "Show information"
-msgstr "Vis informasjon"
-
-#: ../../Xconfigurator.pm_.c:1576
-msgid "Test again"
-msgstr "Test igjen"
-
-#: ../../Xconfigurator.pm_.c:1577 ../../printerdrake.pm_.c:2476
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Avslutt"
-
-#: ../../Xconfigurator.pm_.c:1585
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Behold endringene?\n"
-"Nĺvćrende konfigurasjon er:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1606
-msgid "Graphical interface at startup"
-msgstr "X ved oppstart"
-
-#: ../../Xconfigurator.pm_.c:1607
-msgid ""
-"I can setup your computer to automatically start the graphical interface "
-"(XFree) upon booting.\n"
-"Would you like XFree to start when you reboot?"
-msgstr ""
-"Jeg kan sette opp maskinen din til ĺ automatisk starte X ved oppstart.\n"
-"Vil du at X skal starte nĺr du starter maskinen pĺ nytt?"
-
-#: ../../Xconfigurator.pm_.c:1613
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Vennligst logg inn i %s pĺ nytt for ĺ aktivere endringene"
-
-#: ../../Xconfigurator.pm_.c:1628
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Vennligst logg ut og bruk sĺ Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 farger (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tusen farger (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tusen farger (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 millioner farger (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milliarder farger (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB eller mer"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 ved 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA 800x600 ved 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibel, 1024x768 ved 87 Hz interlaced (ikke 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ved 87 Hz interlaced, 800x600 ved 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Utvidet Super VGA, 800x600 ved 60 Hz, 640x480 ved 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Ikke-interlaced SVGA, 1024x768 ved 60 Hz, 800x600 ved 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hřyfrekvens SVGA, 1024x768 ved 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Flerfrekvens som kan klare 1280x1024 ved 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Flerfrekvens som kan klare 1280x1024 ved 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Flerfrekvens som kan klare 1280x1024 ved 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor som kan klare 1600x1200 ved 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor som kan klare 1600x1200 ved 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Fřrste sektor av oppstartspartisjon"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Fřrste sektor av disk (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "SILO-installasjon"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Hvor řnsker du installere oppstartslasteren?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "LILO/grub-installasjon"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO med tekstmeny"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO med grafisk meny"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Start fra DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Hovedopsjoner for oppstartslaster"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Oppstartslaster som skal brukes"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Installasjon oppstartslaster"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Oppstartsenhet"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (virker ikke pĺ gamle BIOS'er)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Kompakt"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "kompakt"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Skjermmodus"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Forsinkelse fřr oppstart av standard bilde"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1087 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:710 ../../printerdrake.pm_.c:808
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Passord"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1088
-msgid "Password (again)"
-msgstr "Passord (igjen)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Begrense kommandolinje-opsjoner"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "begrense"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Třm /tmp ved hver oppstart"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Presiser RAM-střrrelse hvis det trengs (funnet %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Slĺ pĺ multiprofiler"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Oppgi ram-střrrelsen i MB"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Opsjon ``Begrense kommandolinje-opsjoner'' kan ikke brukes uten et passord"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1143
-#: ../../install_steps_interactive.pm_.c:1082
-msgid "Please try again"
-msgstr "Vennligst prřv igjen"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1082
-msgid "The passwords do not match"
-msgstr "Passordene stemmer ikke overens"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Initmelding"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Ĺpne firmwareforsinkelse"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Kernel Boot Timeout"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Skal det vćre mulig ĺ boote fra CD?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Skal det vćre mulig ĺ boote fra OF?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Standard operativsystem?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"Du har bestemt deg for ĺ installere oppstartslasteren pĺ en partisjon.\n"
-"Dette innebćrer at du allerede har en oppstartslaster pĺ den disken du "
-"starter fra (eks: System Commander.)\n"
-"\n"
-"Hvilken disk starter du fra?"
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Her er de forskjellige oppfřringene.\n"
-"Du kan legge til flere eller endre de eksisterende."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:741
-#: ../../standalone/drakbackup_.c:850 ../../standalone/drakfont_.c:790
-#: ../../standalone/drakfont_.c:827
-msgid "Add"
-msgstr "Legg til"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Ferdig"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Modifiser"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Hvilken inngangstype vil du legge til"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:884
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Andre OS (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Andre OS (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Andre OS (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Bilde"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Tilfřye"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Les-skriv"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabell"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Usikker"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Etikett"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Standard"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrdstřrrelse"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "Ingen video"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Fjern inngang"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Tom etikett er ikke tillatt"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Du mĺ velge ett kjernebilde"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Du mĺ ha en rotpartisjon"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Denne etiketten er allerede i bruk"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Fant %s %s grensesnitt"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Har du enda ett?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Har du noen %s grensesnitt?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1033
-msgid "No"
-msgstr "Nei"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1033
-msgid "Yes"
-msgstr "Ja"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Se maskinvareinfo"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Installerer driver for %s kort %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Hvilken %s driver skal jeg prřve?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"I noen tilfeller trenger %s driveren ĺ ha ekstra informasjon for ĺ virke\n"
-"ordentlig, selv om den normalt virker fint foruten. Řnsker du ĺ spesifisere "
-"ekstra\n"
-"opsjoner for den eller tillate driveren ĺ sondere maskinen din for\n"
-"informasjonen den trenger? Av og til vil sondering stoppe maskinen, men "
-"burde\n"
-"ikke forĺrsake noen skader."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Automatisk sondering"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Spesifiser opsjoner"
-
-#: ../../any.pm_.c:725
-#, fuzzy, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Du kan nĺ gi modul %s de opsjoner du fřler for.\n"
-"Merk at addresser břr gis med 0x prefikset som i '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Du kan nĺ oppgi dens opsjoner for modul %s.\n"
-"Opsjonene er i format ``navn=verdi navn2=verdi2 ...''.\n"
-"F.eks., ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modulopsjoner:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Lasting av modul %s feilet.\n"
-"Řnsker du ĺ prřve igjen med andre parametere?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "tilgang til X-programmer"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "tilgang til rpmverktřy"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "tilgang til \"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "tilgang til administrative filer"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(allerede lagt til %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Dette passordet er for enkelt"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Vennligst oppgi et brukernavn"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Brukernavnet kan kun inneholde smĺ bokstaver, tall, `-' og `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Denne brukeren er allerede lagt til"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Legg til bruker"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Entre en bruker\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Godta bruker"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Virkelig navn"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:709
-#: ../../printerdrake.pm_.c:807
-msgid "User name"
-msgstr "Brukernavn"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Skall"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikon"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Autoinnlogging"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Jeg kan sette opp maskinen din til ĺ automatisk logge pĺ en bruker ved "
-"oppstart.\n"
-"Vil du bruke denne tjenesten?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Velg standard bruker:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Velg vindushĺndtereren som skal kjřres:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Vennligst velg sprĺk som skal brukes."
-
-#: ../../any.pm_.c:851
-msgid ""
-"Mandrake Linux can support multiple languages. Select\n"
-"the languages you would like to install. They will be available\n"
-"when your installation is complete and you restart your system."
-msgstr "Du kan velge andre sprĺk som vil vćre tilgjengelige etter installasjon"
-
-#: ../../any.pm_.c:865 ../../install_steps_interactive.pm_.c:689
-#: ../../standalone/drakxtv_.c:78
-msgid "All"
-msgstr "Alle"
-
-#: ../../any.pm_.c:957
-msgid "Allow all users"
-msgstr "Tillat alle brukere"
-
-#: ../../any.pm_.c:957
-msgid "Custom"
-msgstr "Skreddersydd"
-
-#: ../../any.pm_.c:957
-msgid "No sharing"
-msgstr "Ingen deling"
-
-#: ../../any.pm_.c:967 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Pakken %s mĺ installeres. Vil du installere den?"
-
-#: ../../any.pm_.c:970
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr "Du kan eksportere med NFS eller Samba. Hvilken av dem řnsker du"
-
-#: ../../any.pm_.c:978 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Obligatorisk pakke %s mangler"
-
-#: ../../any.pm_.c:984
-msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:998 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:564
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:702 ../../my_gtk.pm_.c:705 ../../my_gtk.pm_.c:1034
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1588
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2279 ../../standalone/drakbackup_.c:2300
-#: ../../standalone/drakbackup_.c:2321 ../../standalone/drakbackup_.c:2339
-#: ../../standalone/drakbackup_.c:2387 ../../standalone/drakbackup_.c:2407
-#: ../../standalone/drakbackup_.c:2426 ../../standalone/drakfloppy_.c:235
-#: ../../standalone/drakfloppy_.c:384 ../../standalone/drakfont_.c:768
-#: ../../standalone/drakgw_.c:598 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:527
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Avbryt"
-
-#: ../../any.pm_.c:998
-msgid "Launch userdrake"
-msgstr "Start userdrake"
-
-#: ../../any.pm_.c:1000
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"per-user deling bruker gruppen \"fileshare\". \n"
-"Du kan bruke userdrake til ĺ legge til en bruker i denne gruppen."
-
-#: ../../any.pm_.c:1037
-msgid "Welcome To Crackers"
-msgstr "Velkommen til Crackers"
-
-#: ../../any.pm_.c:1038
-msgid "Poor"
-msgstr "Dĺrlig"
-
-#: ../../any.pm_.c:1039 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standard"
-
-#: ../../any.pm_.c:1040
-msgid "High"
-msgstr "Hřy"
-
-#: ../../any.pm_.c:1041
-msgid "Higher"
-msgstr "Hřyere"
-
-#: ../../any.pm_.c:1042
-msgid "Paranoid"
-msgstr "Paranoid"
-
-#: ../../any.pm_.c:1045
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Dette nivĺet břr brukes med forsiktighet. Det gjřr systemet ditt lettere ĺ\n"
-"bruke, men mer utsatt: det mĺ ikke brukes pĺ en maskin koblet til andre\n"
-"eller til Internett. Det er ingen adgang med passord."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Passord er nĺ aktivert, men bruk som nettverksmaskin er fortsatt ikke "
-"anbefalt."
-
-#: ../../any.pm_.c:1049
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Dette er standard sikkerhet anbefalt for en maskin som vil bli brukt til "
-"tilkobling mot Internett som klient."
-
-#: ../../any.pm_.c:1050
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Det er allerede noen restriksjoner, og flere automatiske kontroller kjřres "
-"hver natt."
-
-#: ../../any.pm_.c:1051
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which can "
-"accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Med dette sikkerhetsnivĺet kan systemet brukes som tjener.\n"
-"Sikkerheten er nĺ hřy nok til ĺ bruke systemet som en tjener som godtar\n"
-"oppkoblinger fra mange klienter. Merk: Hvis maskinen din kun er en klient pĺ "
-"Internett burde du velge et lavere nivĺ."
-
-#: ../../any.pm_.c:1054
-msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
-msgstr ""
-"Basert pĺ forrige nivĺ, men nĺ er systemet fullstendig stengt.\n"
-"Sikkerhetsfunksjonene er nĺ pĺ maksimum."
-
-#: ../../any.pm_.c:1059
-msgid "Please choose the desired security level."
-msgstr "Velg sikkerhetsnivĺ"
-
-#: ../../any.pm_.c:1062
-msgid "Security level"
-msgstr "Sikkerhetsnivĺ"
-
-#: ../../any.pm_.c:1064
-msgid "Use libsafe for servers"
-msgstr "Bruk libsafe for tjenere"
-
-#: ../../any.pm_.c:1065
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Ett bibliotek som beskytter mot buffer overflow og strengformateringsangrep."
-
-#: ../../any.pm_.c:1067
-msgid "Security user (login or email)"
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:354
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Velkommen til %s, operativsystem-velgeren!\n"
-"\n"
-"Velg et operativsystem fra listen over eller\n"
-"vent %d sekunder for standard oppstart.\n"
-"\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:910
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Velkommen til GRUB, operativsystem-velgeren!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:913
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Bruk %c og %c tastene for ĺ velge hvilken inngang som er markert."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:916
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Trykk enter for † starte opp valgt OS, 'e' for † redigere"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:919
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "kommandoer for oppstart, eller 'c' for en kommandolinje."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:922
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Den markerte inngangen vil bli startet automatisk om %d sekunder."
-
-#: ../../bootloader.pm_.c:926
-msgid "not enough room in /boot"
-msgstr "ikke nok plass i /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1026
-msgid "Desktop"
-msgstr "Skrivebord"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1028
-msgid "Start Menu"
-msgstr "Startmeny"
-
-#: ../../bootloader.pm_.c:1047
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Du kan ikke installere oppstartslasteren pĺ en %s partisjon\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "ingen hjelp implementert ennĺ.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Oppstartsstilkonfigurasjon"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
-#: ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Fil"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
-#: ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Fil/_Avslutt"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
-#: ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "NewStyle Categorizing Monitor"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "NewStyle Monitor"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Tradisjonell monitor"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Tradisjonell Gtk+ monitor"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Start Aurora ved oppstart"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub modus"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot modus"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Du bruker for řyeblikket %s som oppstartshĺndterer.\n"
-"Klikk pĺ Konfigurer for ĺ starte oppsett-hjelperen."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1457
-#: ../../standalone/drakbackup_.c:1468 ../../standalone/drakgw_.c:592
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Konfigurer"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Systemmodus"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the graphical environment when your system starts"
-msgstr "Start W-Windowsystemet ved oppstart"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Nei, jeg vil ikke ha autologin"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ja, jeg vil ha autologin med denne (bruker; skrivebord)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2431 ../../standalone/drakbackup_.c:3335
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:537
-#: ../../standalone/drakfont_.c:658 ../../standalone/drakfont_.c:721
-#: ../../standalone/drakfont_.c:766 ../../standalone/draknet_.c:109
-#: ../../standalone/draknet_.c:141 ../../standalone/draknet_.c:297
-#: ../../standalone/draknet_.c:436 ../../standalone/draknet_.c:522
-#: ../../standalone/draknet_.c:565 ../../standalone/draknet_.c:666
-#: ../../standalone/logdrake_.c:520
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "kan ikke ĺpne /etc/inittab for lesing: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutter"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minutt"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekunder"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Jeg kan ikke ta skjembilder fřr partisjonering."
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Skjermbilder vil vćre tilgjengelig etter installasjon i %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
-msgid "France"
-msgstr "Frankrike"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
-msgid "Belgium"
-msgstr "Belgia"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Tjekkia"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Germany"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Hellas"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Norge"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Sverige"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
-msgid "Netherlands"
-msgstr "Netherlands"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
-msgid "Italy"
-msgstr "Italia"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Řsterrike"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
-msgid "United States"
-msgstr "USA"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Vennligst ta sikkerhetskopi av din data fřrst"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:899
-#: ../../diskdrake/interactive.pm_.c:908 ../../diskdrake/interactive.pm_.c:962
-msgid "Read carefully!"
-msgstr "Les nřye!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Hvis du skal bruke aboot, vćre nřye med ĺ la det vćre ledig plass (2048 "
-"sektorer er nok)\n"
-"ved begynnelsen av disken"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Feil"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Wizard"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Velg handling"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Du har en stor FAT partisjon\n"
-"(vanligvis brukt av Microsoft Dos/Windows).\n"
-"Jeg forslĺr at du fřrst endrer střrrelsen pĺ denne partisjonen\n"
-"(klikk pĺ den, klikk sĺ pĺ \"Endre střrrelse\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Vennligst klikk pĺ en partisjon"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detaljer"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Journal filsystem"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Veksel"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1058
-msgid "Empty"
-msgstr "Tom"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:933
-msgid "Other"
-msgstr "Andre"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Filsystemtyper:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Opprett"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Type"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Bruk ``%s'' istedet"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Slett"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Bruk ``Demonter'' fřrst"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Etter endring av type pĺ partisjon %s, vil alle data pĺ denne partisjonen gĺ "
-"tapt"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Velg en partisjon"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Velg en annen partisjon"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Avslutt"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Skift til ekspertmodus"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Skift til normalmodus"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Angre"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Fortsette likevel?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Avslutt uten ĺ lagre"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Avslutt uten ĺ skrive partisjonstabellen?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Řnsker du ĺ lagre modifiseringen av /etc/fstab"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Automatisk allokering"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Fjern alle"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Harddisk informasjon"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Alle primćre partisjoner er i bruk"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Jeg kan ikke legge til flere partisjoner"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"For ĺ ha flere partisjoner vennligst slett en for ĺ kunne opprette en "
-"utvidet partisjon"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Lagre partisjonstabeller"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Redde partisjonstabell"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Nřdpartisjonstabell"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Last partisjonstabell pĺ nytt"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Fjernbart media automontering"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Velg fil"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Kopien av partisjonstabellen har ikke samme střrrelse\n"
-"Fortsette for det?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Advarsel"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Sett inn en diskett i stasjonen\n"
-"Alle data pĺ denne disketten vil gĺ tapt"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Prřver ĺ redde partisjonstabell"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Detaljert informasjon"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:535
-#: ../../diskdrake/interactive.pm_.c:562 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Monteringspunkt"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Valg"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:629
-msgid "Resize"
-msgstr "Endre střrrelse"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:682
-msgid "Move"
-msgstr "Flytt"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formater"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Monter"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Legg til RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Legg til LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Demonter"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Fjern fra RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Fjern fra LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Modifiser RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Bruk for loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Opprette en ny partisjon"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Start sektor: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:781
-msgid "Size in MB: "
-msgstr "Střrrelse i MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:782
-msgid "Filesystem type: "
-msgstr "Filsystemtype: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1042
-#: ../../diskdrake/interactive.pm_.c:1116
-msgid "Mount point: "
-msgstr "Monteringspunkt: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Valg: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Fjern loopbackfilen?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Endre partisjonstype"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Hvilket filsystem řnsker du?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Bytter fra ext2 til ext3"
-
-#: ../../diskdrake/interactive.pm_.c:533
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Hvor vil du montere loopback-filen %s?"
-
-#: ../../diskdrake/interactive.pm_.c:534 ../../diskdrake/interactive.pm_.c:561
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Hvor vil du montere %s enheten?"
-
-#: ../../diskdrake/interactive.pm_.c:540
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Kan ikke fjerne monteringspunkt da denne partisjonen blir brukt til\n"
-"loopback. Fjern loopback fřrst"
-
-#: ../../diskdrake/interactive.pm_.c:585
-msgid "Computing FAT filesystem bounds"
-msgstr "Beregner fat filsystemgrense"
-
-#: ../../diskdrake/interactive.pm_.c:585 ../../diskdrake/interactive.pm_.c:644
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Endrer střrrelse"
-
-#: ../../diskdrake/interactive.pm_.c:617
-msgid "This partition is not resizeable"
-msgstr "Denne partisjonen kan ikke střrrelsen forandres pĺ"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "All data on this partition should be backed-up"
-msgstr "Alle data pĺ denne partisjonen burde sikkerhetskopieres"
-
-#: ../../diskdrake/interactive.pm_.c:624
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Etter endring av střrrelse for partisjon %s, vil alle data pĺ denne\n"
-"partisjonen vil gĺ tapt"
-
-#: ../../diskdrake/interactive.pm_.c:629
-msgid "Choose the new size"
-msgstr "Velg den nye střrrelsen"
-
-#: ../../diskdrake/interactive.pm_.c:630
-msgid "New size in MB: "
-msgstr "Ny střrrelse i MB: "
-
-#: ../../diskdrake/interactive.pm_.c:683
-msgid "Which disk do you want to move it to?"
-msgstr "Hvilken disk vil du flytte til?"
-
-#: ../../diskdrake/interactive.pm_.c:684
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../diskdrake/interactive.pm_.c:685
-msgid "Which sector do you want to move it to?"
-msgstr "Hvilken sektor vil du flytte til?"
-
-#: ../../diskdrake/interactive.pm_.c:688
-msgid "Moving"
-msgstr "Flytter"
-
-#: ../../diskdrake/interactive.pm_.c:688
-msgid "Moving partition..."
-msgstr "Flytter partisjon..."
-
-#: ../../diskdrake/interactive.pm_.c:705
-msgid "Choose an existing RAID to add to"
-msgstr "Velg en eksisterende RAID for ĺ legge til"
-
-#: ../../diskdrake/interactive.pm_.c:706 ../../diskdrake/interactive.pm_.c:724
-msgid "new"
-msgstr "ny"
-
-#: ../../diskdrake/interactive.pm_.c:722
-msgid "Choose an existing LVM to add to"
-msgstr "Velg en eksisterende LVM for ĺ legge til"
-
-#: ../../diskdrake/interactive.pm_.c:727
-msgid "LVM name?"
-msgstr "LVM navn?"
-
-#: ../../diskdrake/interactive.pm_.c:767
-msgid "This partition can't be used for loopback"
-msgstr "Denne partisjonen kan ikke brukes for loopback"
-
-#: ../../diskdrake/interactive.pm_.c:779
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "Loopback file name: "
-msgstr "Loopback filnavn: "
-
-#: ../../diskdrake/interactive.pm_.c:785
-msgid "Give a file name"
-msgstr "Gi ett filnavn"
-
-#: ../../diskdrake/interactive.pm_.c:788
-msgid "File already used by another loopback, choose another one"
-msgstr "Filen blir allerede brukt av en annen loopback, velg en annen"
-
-#: ../../diskdrake/interactive.pm_.c:789
-msgid "File already exists. Use it?"
-msgstr "Filen eksisterer allerede. Bruke denne?"
-
-#: ../../diskdrake/interactive.pm_.c:812
-msgid "Mount options"
-msgstr "Monteringsvalg:"
-
-#: ../../diskdrake/interactive.pm_.c:819
-msgid "Various"
-msgstr "Diverse"
-
-#: ../../diskdrake/interactive.pm_.c:882 ../../standalone/drakfloppy_.c:104
-msgid "device"
-msgstr "enhet"
-
-#: ../../diskdrake/interactive.pm_.c:883
-msgid "level"
-msgstr "nivĺ"
-
-#: ../../diskdrake/interactive.pm_.c:884
-msgid "chunk size"
-msgstr "skivestřrrelse"
-
-#: ../../diskdrake/interactive.pm_.c:899
-msgid "Be careful: this operation is dangerous."
-msgstr "Vćr forsiktig: denne operasjonen er farlig."
-
-#: ../../diskdrake/interactive.pm_.c:914
-msgid "What type of partitioning?"
-msgstr "Hva slags type partisjonering?"
-
-#: ../../diskdrake/interactive.pm_.c:932
-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 ""
-"Beklager, jeg vil ikke tillate oppretting av /boot sĺ lange inne pĺ disken "
-"(pĺ en sylinder > 1024).\n"
-"Enten bruker du LILO og denne ikke virker, eller du bruker ikke LILO og du "
-"trenger ikke /boot"
-
-#: ../../diskdrake/interactive.pm_.c:936
-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 ""
-"Partisjonen du valgte ĺ legge til som root (/) er lokalisert fysisk "
-"bortenfor\n"
-"den 1024'de sylinderen pĺ hard-disken, og du har ingen /boot partisjon.\n"
-"Hvis du skal bruke oppstartshĺndtereren LILO, vćr nřye med ĺ legge til en\n"
-"/boot partisjon"
-
-#: ../../diskdrake/interactive.pm_.c:942
-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 ""
-"Du har valgt en programvare RAID partisjon som root (/).\n"
-"Ingen oppstartslaster kan hĺndtere dette uten en /boot partisjon.\n"
-"Sĺ vćr nřye med ĺ legge til en /boot partisjon"
-
-#: ../../diskdrake/interactive.pm_.c:962
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Partisjonstabellen pĺ disk %s blir nĺ skrevet til disk!"
-
-#: ../../diskdrake/interactive.pm_.c:966
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Du mĺ starte maskinen pĺ nytt for at modifiseringene skal tre i kraft"
-
-#: ../../diskdrake/interactive.pm_.c:977
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Etter formatering av partisjon %s vil alle data pĺ denne partisjonen\n"
-"gĺ tapt"
-
-#: ../../diskdrake/interactive.pm_.c:979
-msgid "Formatting"
-msgstr "Formatering"
-
-#: ../../diskdrake/interactive.pm_.c:980
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formaterer loopback-fil %s"
-
-#: ../../diskdrake/interactive.pm_.c:981
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formaterer partisjon %s"
-
-#: ../../diskdrake/interactive.pm_.c:992
-msgid "Hide files"
-msgstr "Gjem filer"
-
-#: ../../diskdrake/interactive.pm_.c:992
-msgid "Move files to the new partition"
-msgstr "Flytt filer til en ny partisjon"
-
-#: ../../diskdrake/interactive.pm_.c:993
-#, c-format
-msgid ""
-"Directory %s already contains data\n"
-"(%s)"
-msgstr ""
-"Katalogen %s inneholder allerede noe data\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-msgid "Moving files to the new partition"
-msgstr "Flytt filer til en ny partisjon"
-
-#: ../../diskdrake/interactive.pm_.c:1008
-#, c-format
-msgid "Copying %s"
-msgstr "Kopierer %s"
-
-#: ../../diskdrake/interactive.pm_.c:1012
-#, c-format
-msgid "Removing %s"
-msgstr "Fjerner %s"
-
-#: ../../diskdrake/interactive.pm_.c:1022
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "partisjon %s er nĺ kjent som %s"
-
-#: ../../diskdrake/interactive.pm_.c:1043
-#: ../../diskdrake/interactive.pm_.c:1102
-msgid "Device: "
-msgstr "Enhet: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS diskbokstav: %s (bare en gjetning)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1056
-#: ../../diskdrake/interactive.pm_.c:1120
-msgid "Type: "
-msgstr "Type: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-msgid "Name: "
-msgstr "Navn: "
-
-#: ../../diskdrake/interactive.pm_.c:1060
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Start: sektor %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "Size: %s"
-msgstr "Střrrelse: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektorer"
-
-#: ../../diskdrake/interactive.pm_.c:1065
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Sylinder %d til %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-msgid "Formatted\n"
-msgstr "Formatert\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-msgid "Not formatted\n"
-msgstr "Ikke formatert\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-msgid "Mounted\n"
-msgstr "Montert\n"
-
-#: ../../diskdrake/interactive.pm_.c:1069
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1071
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Loopback-fil(er): \n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1072
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partisjon startet opp som standard\n"
-" (for MS-DOS oppstart, ikke for lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1074
-#, c-format
-msgid "Level %s\n"
-msgstr "Nivĺ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1075
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Skivestřrrelse %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-disker %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1078
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Loopback filnavn: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1081
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Det er store sjanser for at\n"
-"denne partisjonen er en\n"
-"driverpartisjon, du břr nok\n"
-"la den vćre i fred.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1084
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Denne spesielle Bootstrap-\n"
-"partisjonen er for ĺ\n"
-"dual-boote ditt system.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1103
-#, c-format
-msgid "Size: %s\n"
-msgstr "Střrrelse: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1104
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometri: %s sylindere, %s hoder, %s sektorer\n"
-
-#: ../../diskdrake/interactive.pm_.c:1105
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1106
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-disker %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1107
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Type partisjonstabell: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1108
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "pĺ buss %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1122
-#, c-format
-msgid "Options: %s"
-msgstr "Valg: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Filesystem encryption key"
-msgstr "Filsystemkrypteringsnřkkel"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Choose your filesystem encryption key"
-msgstr "Velg din filsystemkrypteringsnřkkel"
-
-#: ../../diskdrake/interactive.pm_.c:1142
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Denne krypteringsnřkkelen er for enkel (mĺ vćre minst %d tegn lang)"
-
-#: ../../diskdrake/interactive.pm_.c:1143
-msgid "The encryption keys do not match"
-msgstr "Krypteringsnřkkelene stemmer ikke overens"
-
-#: ../../diskdrake/interactive.pm_.c:1146
-msgid "Encryption key"
-msgstr "Krypteringsnřkkel"
-
-#: ../../diskdrake/interactive.pm_.c:1147
-msgid "Encryption key (again)"
-msgstr "Krypteringsnřkkel (igjen)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Endre type"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a medium"
-msgstr "Vennligst klikk pĺ ett media"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Sřk tjenere"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatering av %s mislykket"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Jeg vet ikke hvordan formatere %s i type %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "montere partisjon %s i katalog %s gikk ikke"
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck avsluttet med feilkode %d eller signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "feil ved demontering av %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "enkel"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr "med /usr"
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "server"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Du kan ikke bruke JFS for partisjoner mindre enn 16 MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Du kan ikke bruke ReiserFS for partisjoner mindre enn 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Monteringspunkter mĺ begynne med /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Det finnes allerede en partisjon med monteringspunkt %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Du kan ikke bruke LVM logisk volum som monteringspunkt %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Denne katalogen břr forbli i root filsystemet"
-
-#: ../../fsedit.pm_.c:486
-#, fuzzy
-msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
-msgstr ""
-"Du trenger et virkelig filsystem (ext2, reiserfs) for dette "
-"monteringspunktet\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Du kan ikke bruke ett kryptert filsystem som monteringspunkt %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Ikke nok plass for auto-allokering"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Ikkenoe ĺ gjřre"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Feil ved ĺpning av %s for skriving: %s"
-
-#: ../../fsedit.pm_.c:697
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"En feil har oppstĺtt - ingen gyldige enheter ble funnet for ĺ opprette nye "
-"filsystemer. Vennligst sjekk maskinvaren din for ĺrsaken til dette problemet"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Du har ingen partisjoner!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux er ett multibrukersystem, og dette betyr at hver bruker kan ha "
-"sine\n"
-"instillinger, sine egne filer osv. Du kan lese brukerguiden for ĺ fĺ vite "
-"mer.\n"
-"Men i motsetning til root, som er administratoren, sĺ vil brukerene du "
-"legger til\n"
-"her ikke ha rett til ĺ forandre noe annet enn deres egne filer "
-"ogkonfigurasjon.\n"
-"Du mĺ lage minst en bruker for deg selv.\n"
-"Denne kontoen břr du bruke for all rutinebruk. Selv om det er praktisk ĺ "
-"logge\n"
-"inn som root hver dag, kan deg ogsĺ vćre veldig farlig! Den minste feil "
-"kunne\n"
-"bety at systemet ditt ikke lenger virker. Hvis du gjřr en stor feil som en "
-"vanlig\n"
-"bruker vil du kunne miste noe informasjon, men ikke hele systemet.\n"
-"\n"
-"Fřrst mĺ du skrive inn ditt virkelige navn. Dette er ikke nřdvendig, da du "
-"kan\n"
-"skrive inn hva du vil. drakX vil ta det fřrste ordet du legger inn og "
-"foreslĺ det som\n"
-"brukernavn. Dette er det brukernavnet den brukeren vil bruke for ĺ logge seg "
-"pĺ\n"
-"systemet. Du kan forandre det. Du mĺ legge inn ett passord her. En "
-"ikkepriviligert\n"
-"brukers passord er ikke sĺ viktig som root sitt sett i fra "
-"systemsikkerhetens side,\n"
-"men det er ingen grunn til ignorere det av den grunn, det er dine filer som "
-"er i \n"
-"faresonen.\n"
-"\n"
-"Hvis du klikker pĺ aksepter bruker kan du da legge til sĺ mange brukere som "
-"du\n"
-"vil. Nĺr du har lagt til alle de brukerene du řnsker, klikk pĺ ferdig.\n"
-"\n"
-"Ved ĺ klikke pĺ avansert kan du forandre hvilket shell brukeren har som "
-"standard.\n"
-"(Det vanlige er bash)"
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Ovenfor nevnes de eksisterende Linux partisjonene oppdaget pĺ\n"
-"harddisken din. Du kan beholde valg som er gjort av hjelperen, de er gode "
-"for vanlig\n"
-"bruk. Du kan endre disse valgene, du mĺ i hvertfall definere en root\n"
-"partisjon (\"/\"). Ikke velg for liten partisjon ellers vil du ikke kunne\n"
-"installere nok programvare. Hvis du řnsker ĺ lagre dine data pĺ en separat "
-"partisjon\n"
-"mĺ du ogsĺ velge en \"/home\" (bare mulig hvis du har mer enn en\n"
-"Linux partisjon tilgjengelig).\n"
-"\n"
-"\n"
-"For informasjon, hver partisjon er listet som fřlger: \"Navn\", \"Kapasitet"
-"\".\n"
-"\n"
-"\n"
-"\"Navn\" er kodet som fřlger: \"harddisk type\", \"harddisk nummer\",\n"
-"\"partisjon nummer\" (f.eks., \"hda1\").\n"
-"\n"
-"\n"
-"\"Harddisk type\" er \"hd\" hvis harddisken din er en IDE harddisk og \"sd"
-"\"\n"
-"hvis den er en SCSI harddisk.\n"
-"\n"
-"\n"
-"\"Hard drive nummer\" er alltid en bokstav etter \"hd\" eller \"sd\". Med "
-"IDE harddisker:\n"
-"\n"
-" * \"a\" betyr \"master harddisk pĺ primćr IDE kontroller\",\n"
-"\n"
-" * \"b\" betyr \"slave harddisk pĺ primćr IDE kontroller\",\n"
-"\n"
-" * \"c\" betyr \"master harddisk pĺ sekundćr IDE kontroller\",\n"
-"\n"
-" * \"d\" betyr \"slave harddisk pĺ sekundćr IDE kontroller\".\n"
-"\n"
-"\n"
-"Med SCSI harddisker, en \"a\" betyr \"primćr harddisk\", en \"b\" betyr "
-"\"sekundćr harddisk\", etc..."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"Mandrake Linux installasjonen er spredd ut over flere CDROMer. DrakX \n"
-"vet om en pakke er pĺ en annen CDROM og vil spytte ut den vĺvćrende\n"
-"CD og be deg sette i en annen en ved behov."
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"Det er nĺ pĺ tide ĺ spesifisere hvilke programmer du řnsker ĺ installere pĺ\n"
-"systemet ditt. Det er tusenvis av pakker tilgjengelig for Mandrake Linux, og "
-"det er ikke meningen at du skal kunne navnet pĺ samtlige.\n"
-"\n"
-"Hvis du utfřrer en standard installasjon fra CDROM, vil du fřrst bli bedt "
-"om\n"
-"ĺ spesifisere de CDene du har for řyeblikket (kun i ekspertmodus). Sjekk "
-"CDene\n"
-"og velg de bokser som tilsvarer de CDer som du har klare for installasjon.\n"
-"Klikk \"OK\" nĺr du er klar til ĺ fortsette.\n"
-"\n"
-"Pakkene er delt inn i grupper som korresponderer til typisk bruk av din "
-"maskin\n"
-"Gruppene er igjen delt inn i fire seksjoner:\n"
-"\n"
-" * \"Arbeidsstasjon\": hvis du planlagger ĺ bruke din maskin som "
-"arbeidsstasjon, velg\n"
-"en eller flere av de tilhřrende grupper.\n"
-"\n"
-" * \"Utvikling\": hvis maskinen skal brukes til programmering, velg řnskede "
-"grupper.\n"
-"\n"
-" * \"Server\": Hvis maskinen skal brukes som server, vil du kunne velge\n"
-"hvilke av de mest vanlige tjenester som du řnsker installert pĺ\n"
-"maskinen.\n"
-"\n"
-" * \"Grafisk miljř\": til slutt, det er her du kan velge ditt řnskede\n"
-"grafiske miljř. Du mĺ velge minst ett hvis du řnsker ĺ ha en grafisk\n"
-"arbeidsstasjon!\n"
-"\n"
-"Ved ĺ flytte musepekeren over et gruppenavn vil en kort forklarende tekst\n"
-"dukke opp over den gruppen. Hvis du řnsker ĺ ikke velge noen grupper under\n"
-"installasjon (og du ikke oppgraderer), sĺ vil en dialog spřrre deg om hva\n"
-"slags minimal installasjon du řnsker:\n"
-"\n"
-"* \"Med X\" For en minste installasjon med X-tjener inkludert;\n"
-"\n"
-" * \"With basic documentation\" Installerer basesystemet pluss standard\n"
-"verktřy og dokumentasjon for disse. Denne installasjonen passer til ĺ sette\n"
-"opp en server.\n"
-"\n"
-" * \"Truly minimal install\" vil installere minimum som er nřdvendig for ĺ\n"
-"Linux systemet opp og gĺ, kun kommandolinje. Denne installasjonen er pĺ\n"
-"rundt 65Mb.\n"
-"\n"
-"Du kan merke av \"Individual package selection\" boksen, som er nyttig\n"
-"hvis du kjenner til pakkene som blir tilbydt eller hvis du řnsker ĺ ha\n"
-"total kontroll over hva som vil bli installert.\n"
-"\n"
-"Hvis du startet installasjonen i \"Upgrade\" modus, kan du velge vekk alle\n"
-"grupper for ĺ unngĺ ĺ installere noen nye pakker. Dette er nyttig for\n"
-"reparasjon eller oppdatering av et eksisterende system."
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Til slutt, avhengig av ditt valg av om du vil velge enkeltpakker eller\n"
-"ikke, sĺ vil du fĺ se ett tre som inneholder alle pakkene sortert pĺ "
-"grupper\n"
-"og undergrupper. Nĺr du surfer gjennom treet, kan du velge grupper, \n"
-"undergrupper eller individuelle pakker.\n"
-"\n"
-"Nĺr du velger en pakke i treet, vil en beskrivelse dukke opp til hřyre. \n"
-"Nĺr du er ferdig med ĺ velge, klikk \"Installer\" knappen som da vil starte\n"
-"installasjonsprosessen. Avhengig av hastigheten pĺ din maskin, og antall\n"
-"pakker som skal installeres, kan det ta en stund ĺ gjřre ferdig "
-"installasjonen.\n"
-"Ett estimat pĺ hvor lang tid det vil ta vises pĺ skjermen for ĺ hjelpe deg "
-"ĺ\n"
-"avgjřre om du har tid til en kopp kaffe.\n"
-"\n"
-"!! Hvis en tjenerpakke har blitt valgt, vil du bli bedt om ĺ bekrefte at du "
-"řnsker\n"
-"ĺ installere denne. Under Mandrake Linux vil alle installerte tjenere bli \n"
-"startet ved oppstart. Selv om de er sikre og ikke har noen kjente "
-"sikkerhetshull\n"
-"nĺr denne distribusjonen ble sluppet, sĺ kan det vćre at sikkerhetshull "
-"ble \n"
-"oppdaget etter at denne versjonen av Mandrake Linux ble sluppet. Hvis du\n"
-"ikke vet hva en type tjene gjřr, eller hvorfor den blir installert, klikk "
-"\"Nei\".\n"
-"\"Ja\" vil installere tjeneren(e) og de(n) vil bli started automatisk som "
-"standard.\n"
-"\n"
-"\"Automatiske avhengigheter\" valget bare fjerner advarselsdialogboksen som\n"
-"kommer nĺr installasjonsprogrammet automatisk velger en pakke. Dette skjer "
-"fordi\n"
-"den har funnet ut at den mĺ tilfredsstille en avhengighet med en annen pakke "
-"for\n"
-"ĺ fullstendig gjennomfřre installasjonen.\n"
-"\n"
-"Det lille diskettikonet pĺ bunnen av listen lar deg laste pakkelisten som du "
-"valgte\n"
-"under en tidligere installasjon. Nĺr du klikker pĺ dette ikonet vil du bli "
-"bedt om ĺ\n"
-"sette inn disketten som ble laget under avslutningen av en annen "
-"installasjon. Se\n"
-"det andre tipset for det siste skrittet for hvordan lage en slik diskett."
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Fřr du gĺr videre břr du lese lisensen nřye.\n"
-"Den dekker hele Mandrake Linux distribusjonen og hvis du ikke er enig\n"
-"med alt den sier, klikk pĺ \"Jeg nekter\" knappensom řyeblikkelig\n"
-"avslutter installasjonen. For ĺ fortsette installasjonen, klikk pĺ\n"
-"\"Jeg aksepterer\" knappen."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"Pĺ dette punktet er det tid for ĺ velge sikkerhetsnivĺet som passer for\n"
-"maskinen. Som en tommelfingerregel, jo mere utsatt maskinen er, og jo mere\n"
-"viktig data som er lagret der, jo hřyere břr sikkerhetsnivĺet vćre.\n"
-"Men, et hřyere sikkerhetsnivĺ gĺr gjerne pĺ beskostning av "
-"brukvennligheten.\n"
-"Se i MSEC kapittelet i ``Reference Manual'' for ĺ fĺ mer informasjon om\n"
-"disse nivĺene.\n"
-"\n"
-"Hvis du ikke vet hva du skal velge, behold standard valg."
-
-#: ../../help.pm_.c:442
-#, fuzzy
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Pĺ dette punktet mĺ du velge hvilken\n"
-"partisjon(er) som skal brukes til ĺ installere ditt nye Mandrake Linux "
-"system. Hvis partisjoner\n"
-"allerede har blitt definert (fra en tidligere installasjon av GNU/Linux "
-"eller fra\n"
-"et annet partisjoneringsverktřy), kan du bruke eksisterende partisjoner. I "
-"andre tilfeller\n"
-"mĺ harddiskpartisjoner defineres.\n"
-"\n"
-"\n"
-"For ĺ opprette partisjoner mĺ du fřrst velge en harddisk. Du kan velge disk\n"
-"for partisjonering ved ĺ klikke pĺ \"hda\" for den fřrste IDE disken, \"hdb"
-"\" for\n"
-"den andre eller \"sda\" for den fřrste SCSI disken osv.\n"
-"\n"
-"\n"
-"For ĺ partisjonere den valgte harddisken kan du bruke disse valgene:\n"
-"\n"
-" * Fjern alle: dette valget sletter alle partisjoner tilgjengelig pĺ den "
-"valgte harddisken.\n"
-"\n"
-"\n"
-" * Auto allokering:: dette valget lar deg automatisk opprette Ext2 og "
-"veksel partisjoner pĺ den ledige plassen pĺ\n"
-" harddisken din.\n"
-"\n"
-"\n"
-" * Redd partisjonstabell: hvis partisjonstabellen din er skadet kan du "
-"forsřke ĺ redde den ved ĺ bruke dette valget. Vćr\n"
-" forsiktig og husk at det kan gĺ galt.\n"
-"\n"
-"\n"
-" * Angre: du kan bruke dette valget til kanselere endringene dine.\n"
-"\n"
-"\n"
-" * Last igjen: du kan bruke dette valget hvis du angrer alle endringer og "
-"vil laste partisjonstabellen du begynte med\n"
-"\n"
-"\n"
-" * Veiviser: Hvis du řnsker ĺ bruke en hjelper til ĺ partisjonere "
-"harddisken din kan du bruke dette valget. Anbefales hvis\n"
-" du ikke har god kunnskap om partisjonering.\n"
-"\n"
-"\n"
-" * Gjenopprett fra diskett: hvis du har lagret partisjonstabellen din pĺ "
-"en diskett under en tidligere installasjon kan du\n"
-" gjenopprette denne ved ĺ bruke dette valget.\n"
-"\n"
-"\n"
-" * Lagre pĺ diskett: hvis du řnsker ĺ lagre partisjonstabellen din pĺ en "
-"diskett for ĺ kunne gjenopprette denne kan du bruke dette\n"
-" valget. Det anbefales pĺ det sterkeste ĺ bruke dette valget.\n"
-"\n"
-"\n"
-" * Ferdig: nĺr du er ferdig med ĺ partisjonere harddisken din bruk dette "
-"valget til ĺ lagre endringene dine.\n"
-"\n"
-"\n"
-"For informasjon kan du nĺ valgene ved ĺ bruke tastaturet: naviger gjennom "
-"partisjonene ved ĺ bruke Tab og Up/Down pilene.\n"
-"\n"
-"\n"
-"Nĺr en partisjon er valgt kan du bruke:\n"
-"\n"
-" * Ctrl-c til ĺ opprette en ny partisjon (nĺr en tom partisjon er "
-"valgt)\n"
-"\n"
-" * Ctrl-d til ĺ slette en partisjon\n"
-"\n"
-" * Ctrl-m til ĺ sette monteringspunktet\n"
-".............\n"
-"\n"
-".............\n"
-"Hvis du installerer pĺ en PPV maskin, sĺ vil du nok lage en liten "
-"HFS'bootstrap-partisjon' pĺ minst en megabyte for bruk\n"
-"av yaboot oppstartslasteren. Hvis du řnsker ĺ lage partisjonen litt střrre, "
-"laoss si 50 MB, sĺ kan du kanskje lagre en ekstra kjene og ramdiskbilde for "
-"nřdsituasjoner."
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Mer enn en Microsoft Windows partisjon har blitt\n"
-"oppdaget pĺ harddisken din. Vennligst velg den du řnsker ĺ endre střrrelsen "
-"pĺ for ĺ\n"
-"installere ditt nye Mandrake Linux operativsystem.\n"
-"\n"
-"\n"
-"For informasjon, hver partisjon er listet som fřlger: \"Linux navn\", "
-"\"Windows\n"
-"navn\" \"Kapasitet\".\n"
-"\n"
-"\"Linux navn\" er kodet som fřlger: \"harddisk type\", \"harddisk nummer\",\n"
-"\"partisjon nummer\" (f.eks., \"hda1\").\n"
-"\n"
-"\n"
-"\"Harddisk type\" er \"hd\" hvis harddisken din er en IDE harddisk og \"sd"
-"\"\n"
-"hvis den er en SCSI harddisk.\n"
-"\n"
-"\n"
-"\"Hard drive nummer\" er alltid en bokstav etter \"hd\" eller \"sd\". Med "
-"IDE harddisker:\n"
-"\n"
-" * \"a\" betyr \"master harddisk pĺ primćr IDE kontroller\",\n"
-"\n"
-" * \"b\" betyr \"slave harddisk pĺ primćr IDE kontroller\",\n"
-"\n"
-" * \"c\" betyr \"master harddisk pĺ sekundćr IDE kontroller\",\n"
-"\n"
-" * \"d\" betyr \"slave harddisk pĺ sekundćr IDE kontroller\".\n"
-"\n"
-"Med SCSI harddisker, en \"a\" betyr \"primćr harddisk\", en \"b\" betyr "
-"\"sekundćr harddisk\", etc.\n"
-"\n"
-"\"Windows navn\" er bokstaven pĺ harddisken din under Windows (den fřrste "
-"disken\n"
-"eller partisjonen er kalt \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Vćr tĺlmodig. Denne operasjonen kan ta flere minutter."
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Vennligst velg den riktige porten. F.eks., \"COM1\" porten under\n"
-"Windows blir kalt \"ttyS0\" i GNU/Linux."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (LInux LOader) og Grub er oppstartslastere: de kan starte opp enten\n"
-"GNU/Linux eller et annet operativsystem som du har pĺ datamaskinen din.\n"
-"Normalt blir de andre operativsystemene korrekt oppdaget og installert.\n"
-"Hvis dette ikke er tilfelle, kan du legge til disse for hĺnd i dette\n"
-"bildet. Vćr nřye med ĺ velge de korrekte parameterene.\n"
-"\n"
-"Hvis du ikke řnsker ĺ gi tilgang til de andre operativsystemene til\n"
-"andre kan du fjerne linjene for disse. Men i sĺ tilfelle trenger du\n"
-"en oppstartsdiskett for ĺ starte disse!"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Du mĺ indikere hvor du řnsker ĺ\n"
-"plassere informasjonen som behřves for oppstart av GNU/Linux.\n"
-"\n"
-"Med mindre du vet akkurat hva du gjřr, velg \"Fřrste sektor av\n"
-"disken (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"Du kan legge til flere valg for yaboot, enten for andre operativsystemer\n"
-"andre kjerner, eller for ett nřdbootspeil.\n"
-"\n"
-"For andre OS bestĺr inngangen bare av et navn og rotpartisjonen\n"
-"\n"
-"For Linux er det et par mulige valg:\n"
-"\n"
-" * Label: Dette er navnet du vil skrive ved yaboot klartegnet for ĺ velge\n"
-"dette oppstartsvalget.\n"
-"\n"
-" * Image: Dette er navnet pĺ kjernen for oppstart. Typisk vmlinux\n"
-"eller en variasjon av vmlinux med en utvidelse.\n"
-"\n"
-" * Root: \"root\" enheten eller \"/\" for Linux installasjonen din.\n"
-"\n"
-" * Append: Pĺ Apple maskinvare er kjerneopsjonen append ofte brukt til\n"
-"ĺ assistere i initialisering av video maskinvare, eller til ĺ slĺ pĺ "
-"tastatur\n"
-"museknapp emulering for de ofte manglende andre og tredje museknappene pĺ "
-"en\n"
-"Apple mus. Her er noen eksempler:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: Dette valget kan brukes enten til ĺ laste initiale moduler, fřr\n"
-"oppstartsenheten er tilgengelig, eller til ĺ laste et ramdisk-bilde for en\n"
-"nřdoppstart situasjon.\n"
-"\n"
-" * Initrd-size: Standard ramdisk střrrelse er vanligvis 4,096 bytes. Hvis "
-"du\n"
-"trenger ĺ allokere en stor ramdisk, kan dette valget brukes.\n"
-"\n"
-" * Read-write: Normalt kommer \"root\" partisjonen opp som read-only for ĺ\n"
-"la et filsystem sjekke for systemet system blir \"live\".\n"
-"Her kan du overstyre dette valget.\n"
-"\n"
-" * NoVideo: Skulle Apple video maskinvaren vise seg ĺ vćre veldig\n"
-"problematisk, kan du velge dette valget for ĺ starte i \"novideo\" modus, "
-"med\n"
-"egen framebuffer střtte.\n"
-"\n"
-" * Default: Velger denne inngangen som standard Linux valg, og kan velges\n"
-"ved ĺ trykke ENTER ved yaboot klartegnet. Denne inngangen vil ogsĺ bli\n"
-"fremhevet med en \"*\", hvis du trykker [Tab] for ĺ se oppstarts-\n"
-"valgene."
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot er en oppstartslaster for NewWorld MacIntosh maskinvare. Den kan\n"
-"starte enten GNU/Linux, MacOS eller MacOSX, hvis de er til stede pĺ din\n"
-"datamaskin. Vanligvis vil disse andre operativsystemer bli korrekt oppdaget\n"
-"og installert. Hvis dette ikke skulle vćre tilfelle kan du legge til "
-"endringer\n"
-"her. Vćr forsiktig nĺr du velger de korrekte parametre.\n"
-"\n"
-"Yaboots hovedvalg er:\n"
-"\n"
-"\n"
-" * Init beskjed: En enkel melding som vises fřr oppstartsprosessen starter.\n"
-"\n"
-" * Oppstartsenhet: Indikerer hvor du řnsker ĺ plassere informasjonen som "
-"trengs\n"
-"for ĺ starte GNU/Linux. Du vil generelt ha satt opp en bootstrap-partisjon\n"
-"tidligere for ĺ ta vare pĺ denne informasjonen.\n"
-"\n"
-" * Ĺpne firmwareforsinkelse: Ulikt LILO sĺ er det to forsinkelser\n"
-"som er tilgjengelig med yaboot. Den fřrste forsinkelsen blir mĺlt i\n"
-"sekunder og du kan ved det punktet velge mellom CD, OF-boot, \n"
-"MacOS eller Linux.\n"
-"\n"
-" * Kjerneboot Timeout: Denne er lik LILO oppstartsforsinkelse.\n"
-"Etter ĺ ha valgt Linux, vil du ha 0,1 sekunder fřr standard kjerne\n"
-"blir valgt.\n"
-"\n"
-" * Aktiver CD Boot?: Hvis du velger dette valget vil du kunne\n"
-"trykke \"C\" for CD ved det fřrste oppstartsvalget.\n"
-"\n"
-" * Aktiver OF Boot?: Hvis du velger dette valget vil du kunne\n"
-"trykke\n"
-"\"N\" for Open Firmware ved det fřrste oppstartsvalget.\n"
-"\n"
-" * Standard OS: Du kan velge hvilket OS som skal lastes nĺr\n"
-"Open Firmwareforsinkelsen er utlřpt."
-
-#: ../../help.pm_.c:862
-#, fuzzy
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may - or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
-"\n"
-" * \"Timezone\": DrakX gjetter tidssonen din ut i fra sprĺket du\n"
-"har valgt. Men her, ogsĺ for valget av tastatur, er du kanskje ikke\n"
-"i det landet som valgt sprĺk skulle tilsi.\n"
-"Derfor mĺ du kanskje klikke pĺ \"Timezone\" knappen for ĺ konfigurere\n"
-"klokken til tidssonen der du er.\n"
-"\n"
-" * \"Printer\": Klikke pĺ \"No Printer\" knappen vil ĺpne skriver\n"
-"konfigureringshjelperen.\n"
-"\n"
-" * \"Sound card\": Hvis et lydkort blir oppdaget pĺ systemet ditt, blir det\n"
-"vist her. Ingen modifisering mulig under installering.\n"
-"\n"
-" * \"TV card\": Hvis et TV-kort blir oppdaget pĺ systemet ditt, blir det\n"
-"vist her. Ingen modifisering mulig under installering.\n"
-"\n"
-" * \"ISDN card\": Hvis et ISDN-kort blir oppdaget pĺ systemet ditt, blir "
-"det\n"
-"vist her. Du kan klikke pĺ knappen for ĺ endre parameterene assosiert\n"
-"til dette."
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Velg den harddisken du řnsker ĺ slette for ĺ installere din nye Mandrake\n"
-"Linux partisjon. Vćr forsiktig, alle data pĺ denne vil gĺ tapt og vil ikke\n"
-"kunne gjenopprettes!"
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Klikk pĺ \"OK\" hvis du řnsker ĺ slette alle data og partisjoner pĺ denne\n"
-"harddisken. Vćr forsiktig, etter at du har klikket pĺ \"OK\" vil du ikke\n"
-"kunne gjenopprette data og partisjoner pĺ denne harddisken inkludert "
-"Windows\n"
-"data.\n"
-"\n"
-"Klikk pĺ \"Avbryt\" for ĺ avbryte denne operasjonen uten ĺ miste data og\n"
-"partisjoner pĺ denne harddisken."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"Kan ikke fĺ tilgang til kjernemoduler ihht. kjernen din (fil %s mangler), "
-"dette betyr vanligvis at oppstartsdisketten din ikke er i synk med "
-"installasjonsmediet (vennligst opprett en nyere diskett)"
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "Du mĺ ogsĺ formatere %s"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"D har valgt fřlgende tjener(e): %s\n"
-"\n"
-"\n"
-"Disse tjenerene er aktivert som standard. De har ingen kjente sikkerhets-\n"
-"problemer, men noen nye kan bli funnet. I sĺ tilfelle mĺ du oppgradere\n"
-"sĺ snart som mulig.\n"
-"\n"
-"\n"
-"Řnsker du virkelig ĺ installere disse tjenerene?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Kan ikke bruke broadcast med intet NIS domene"
-
-#: ../../install_any.pm_.c:794
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Sett inn en FAT-formatert diskett i stasjon %s"
-
-#: ../../install_any.pm_.c:798
-msgid "This floppy is not FAT formatted"
-msgstr "Denne disketten er ikke FAT-formatert"
-
-#: ../../install_any.pm_.c:810
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"For ĺ bruke dette valget av pakker, start installasjonen med'linux "
-"defcfg=floppy'"
-
-#: ../../install_any.pm_.c:832 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Feil ved lesing av fil %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Noe maskinvare i maskinen din trenger ``riktige'' drivere for ĺ virke.\n"
-"Du kan finne noe informasjon om disse her: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Du mĺ ha en root-partisjon.\n"
-"Opprett en partisjon for dette (eller klikk pĺ en eksisterende).\n"
-"Velg sĺ ``Monteringspunkt'' og sett dette til `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Du mĺ ha en vekslingspartisjon"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Du har ingen vekselpartisjon\n"
-"\n"
-"Fortsette likevel?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Du mĺ ha en FAT-parisjonen montert under /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Bruk ledig plass"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Ikke nok plass til ĺ allokere en ny partisjon"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partitions"
-msgstr "Bruk eksisterende partisjon"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Det finnes ingen eksisterende partisjon som kan brukes"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Bruk Windows partisjonen for loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Hvilken partisjon vil du bruke for Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Velg střrrelsene"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Root-partisjonsstřrrelse i MB: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Veksel-partisjonsstřrrelse i MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Bruk den ledige plassen pĺ Windows partisjonen"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Hvilken partisjonstype řnsker du ĺ forandre střrrelse pĺ?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing Windows partition"
-msgstr "Beregner Windows filsystemgrense"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Střrrelsesendreren for FAT greide ikke ĺ hĺndtere din partisjon, \n"
-"fřlgende feil oppsto: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
-msgstr ""
-"Windows-partisjonen din er for fragmentert, vennligst kjřr ``defrag'' fřrst"
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"ADVARSEL!\n"
-"\n"
-"DrakX vil nĺ endre střrrelsen pĺ Windows partisjonen din. Vćr\n"
-"forsiktig: denne operasjonen er farlig. Hvis du ikke allerede har\n"
-"gjort det burde du fřrst kjřre scandisk under Windows (og som en\n"
-"opsjon kjřre defrag) pĺ denne partisjonen og ta sikkerhetskopi av dine "
-"data.\n"
-"Nĺr du er sikker, trykk Ok."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for Windows on"
-msgstr "Hvilken střrrelse řnsker du ĺ beholde vinduer pĺ?"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "partisjon %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Krymping/forstřrring av FAT feilet: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partition to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Det finnes ingen FAT partisjon ĺ forandre střrrelsen pĺ eller ĺ bruke som "
-"loopback (ikke nok plass igjen)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Slette hele disken"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Fjern Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Du har mer enn en harddisk, hvilken řnsker du ĺ installere linux pĺ?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "ALLE eksisterende partisjoner og deres data vil vćre tapt pĺ disk %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Egendefinert diskpartisjonering"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Bruk fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Du kan nĺ partisjonere %s.\n"
-"Nĺr du er ferdig ikke glem ĺ lagre med `w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Du har ikke nok ledig plass pĺ Windows partisjonen din"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Jeg kan ikke finne noe rom for installering"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX partisjonsveiviseren fant fřlgende lřsninger:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partisjonering feilet: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Henter opp nettverket"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Tar ned nettverket"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"En feil oppsto, men jeg vet ikke hvordan jeg skal hĺndtere dette pĺ en\n"
-"pen mĺte.\n"
-"Fortsett pĺ eget ansvar."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Dupliser monteringspunkt %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Noen viktige pakker ble ikke installert ordentlig.\n"
-"Det er noe galt enten med CD-rom'en eller CD-platen.\n"
-"Sjekk cd-platen pĺ en installert maskin med \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Velkommen til %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Ingen diskettstasjon tilgjengelig"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Entrer trinn `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Systemet ditt har lite ressurser. Du kan muligens oppleve noen problemer\n"
-"ved installering av Mandrake Linux. Hvis dette skjer kan du prřve tekst- "
-"installering\n"
-"i stedet. Trykk `F1' ved oppstart av CD-ROM, skriv sĺ `text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Installeringsklasse"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Vennligst velg en av fřlgende installasjonsklasser:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Den totale střrrelsen for gruppene du har valgt er omtrent %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Hvis du řnsker ĺ installere mindre enn denne střrrelsen,\n"
-"velg den prosentdelen av pakkene som du řnsker ĺ installere.\n"
-"\n"
-"En lav prosentdel vil installere bare de mest viktige pakkene;\n"
-"en prosentdel pĺ 100%% vil installere alle valgte pakker."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Du har plass pĺ disken din for bare %d%% av disse pakkene.\n"
-"\n"
-"Hvis du řnsker ĺ installere mindre enn dette,\n"
-"velg den prosentdelen av pakkene som du řnsker ĺ installere.\n"
-"En lav prosentdel vil installere bare de mest viktige pakkene;\n"
-"en prosentdel pĺ %d%% vil installere sĺ mange pakker som mulig."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Du vil kunne velge disse mere spesifisert i neste trinn."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Prosentdel av pakker ĺ installere"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:675
-msgid "Package Group Selection"
-msgstr "Valg pakkegruppe"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:690
-msgid "Individual package selection"
-msgstr "Individuelt pakkevalg"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:615
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Total střrrelse: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Dĺrlig pakke"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Navn: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versjon: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Střrrelse: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Viktighet: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Du kan ikke velge denne pakken da det ikke er igjen nok plass til ĺ "
-"installere denne"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Fřlgende pakker vil bli installert"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Fřlgende pakker vil bli fjernet"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Du kan ikke velge/fjerne denne pakken"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Dette er en bestemt pakke, den kan ikke fjernes"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Du kan ikke fjerne denne pakken, den er allerede installert"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Denne pakken mĺ oppgraderes\n"
-"Er du sikker pĺ at du ikke vil velge denne?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Du kan ikke fjerne denne pakken. Den mĺ oppgraderes"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Vis automatisk valgte pakker"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Installer"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Lagre pĺ/hente fra diskett"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Oppdaterer pakkevalg"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Minimal installasjon"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:525
-msgid "Choose the packages you want to install"
-msgstr "Velg pakkene du řnsker ĺ installere"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:757
-msgid "Installing"
-msgstr "Installerer"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Beregner"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Tid som gjenstĺr "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation..."
-msgstr "Vennligst vent, forbereder installasjon"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pakker"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Installerer pakke %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:781
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Godta"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:781
-msgid "Refuse"
-msgstr "Nekte"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:782
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Bytt CD!\n"
-"\n"
-"Vennligst sett inn CD'en merket \"%s\" i stasjonen og trykk Ok nĺr du er "
-"ferdig.\n"
-"Hvis du ikke har den trykk Avbryt for ĺ unngĺ installasjon fra denne CD'en."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:794
-#: ../../install_steps_interactive.pm_.c:798
-msgid "Go on anyway?"
-msgstr "Fortsette uansett?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:794
-msgid "There was an error ordering packages:"
-msgstr "Det var en feil ved endring av pakkenes rekkefřlge:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:798
-msgid "There was an error installing packages:"
-msgstr "Det var en feil ved installering av pakkene:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "En feil oppsto"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "Řnsker du virkelig ĺ forlate installasjonen?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "License agreement"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. 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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read this document carefully. 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 Mandrake Linux 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\", \"Mandrake Linux\" 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:205
-#: ../../install_steps_interactive.pm_.c:1017
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Tastatur"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Vennligst velg tastatur-oppsettet ditt."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Her er den komplette lista over tilgjengelige tastatur"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Hvilken installasjonsklasse řnsker du?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Installer/Oppdater"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Er dette en installering eller en oppdatering?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Anbefalt"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Ekspert"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Oppgrader"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Oppgrader kun pakker"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Vennligst velg din musetype."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Port mus"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Vennligst velg hvilken serieport musen din koblet til."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Emulering knapper"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emulering 2 knapper"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emulering 3 knapper"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfigurerer PCMCIA kort..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Konfigurerer IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "No partition available"
-msgstr "ingen tilgjengelige partisjoner"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Skanner partisjoner for ĺ finne monteringspunkter"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Velg monteringspunktene"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Jeg kan ikke lese partisjonstabellen din, den er for řdelagt for meg :(\n"
-"Jeg kan forsřke ĺ blanke ut dĺrlige partisjoner (ALLE DATA vil gĺ tapt!)\n"
-"Den andre lřsningen er ĺ ikke la DrakX modifisere partisjonstabellen.\n"
-"(feilen er %s)\n"
-"\n"
-"Vil du miste alle partisjonene?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake klarte ikke ĺ lese partisjonstabellen korrekt.\n"
-"Fortsett pĺ eget ansvar!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Det er ikke plass for 1 MB bootstrap! Installasjonen vil fortsette, but for "
-"ĺboote systemet ditt, mĺ du lage en bootstrap partisjon i DiskDrake"
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Ingen rotpartisjon funnet for oppgradering"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Rotpartisjon"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Hva er rotpartisjonen (/) pĺ ditt system?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Du mĺ starte maskinen pĺ nytt for at modifiseringene skal tre i kraft"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Velg partisjonene du řnsker ĺ partisjonere"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Sjekke fo rdĺrlige clustere?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formaterer partisjoner"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Lager of formaterer fila %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-"Det er ikke nok SWAP til ĺ fullfřre installasjonen, vennligst legg til litt "
-"mer"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages..."
-msgstr "Sřker etter tilgjengelige pakker"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade..."
-msgstr "Finner pakker som skal oppgraderes"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Ditt system har ikke nok plass igjen for installasjon eller oppgradering (%d "
-"> %d)"
-
-#: ../../install_steps_interactive.pm_.c:538
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Vennligst velg lagre eller hente pakkevalg pĺ diskett.\n"
-"Formatet er det samme som for auto_install genererte disketter."
-
-#: ../../install_steps_interactive.pm_.c:541
-msgid "Load from floppy"
-msgstr "Hent fra diskett"
-
-#: ../../install_steps_interactive.pm_.c:543
-msgid "Loading from floppy"
-msgstr "Henter fra disketten"
-
-#: ../../install_steps_interactive.pm_.c:543
-msgid "Package selection"
-msgstr "Pakkevalg"
-
-#: ../../install_steps_interactive.pm_.c:548
-msgid "Insert a floppy containing package selection"
-msgstr "Sett inn en diskett med pakkevalget"
-
-#: ../../install_steps_interactive.pm_.c:560
-msgid "Save on floppy"
-msgstr "Lagre pĺ diskett"
-
-#: ../../install_steps_interactive.pm_.c:628
-msgid "Selected size is larger than available space"
-msgstr "Valgt střrrelse er střrre enn tilgjengelig plass"
-
-#: ../../install_steps_interactive.pm_.c:641
-msgid "Type of install"
-msgstr "Type av installasjon"
-
-#: ../../install_steps_interactive.pm_.c:642
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Du har ikke valgt noen pakkegrupper.\n"
-"Vennligst velg den minimale installasjonen du řnsker:"
-
-#: ../../install_steps_interactive.pm_.c:645
-msgid "With X"
-msgstr "Med X"
-
-#: ../../install_steps_interactive.pm_.c:647
-msgid "With basic documentation (recommended!)"
-msgstr "Med grunnleggende dokumentasjon (anbefalt!)"
-
-#: ../../install_steps_interactive.pm_.c:648
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Virkelig minimal installasjon (uten urpmi)"
-
-#: ../../install_steps_interactive.pm_.c:732
-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 ""
-"Hvis du har alle CDene i listen nedenfor, klikk Ok.\n"
-"Hvis du ikke har noen av disse CDene, klikk Avbryt.\n"
-"Hvis bare noen av CDene mangler, fjern disse, klikk sĺ Ok."
-
-#: ../../install_steps_interactive.pm_.c:737
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROMen ved navnet \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:757
-msgid "Preparing installation"
-msgstr "Forbereder installasjon"
-
-#: ../../install_steps_interactive.pm_.c:766
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Installerer pakke %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:812
-msgid "Post-install configuration"
-msgstr "Konfigurasjon postinstallering"
-
-#: ../../install_steps_interactive.pm_.c:818
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Sett inn en oppstartsdiskett i stasjon %s"
-
-#: ../../install_steps_interactive.pm_.c:824
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Sett inn oppdater moduler disketten i stasjon %s"
-
-#: ../../install_steps_interactive.pm_.c:844
-msgid ""
-"You now have the opportunity to download encryption software.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Du har nĺ mulighet til ĺ laste ned programvare for kryptering.\n"
-"\n"
-"ADVARSEL:\n"
-"\n"
-"Pga. forskjellige krav som er tillagt denne programvaren og pĺlagt av "
-"forskjellige\n"
-"myndigheter, břr kunde og/eller sluttbruker av denne programvaren forsikre "
-"seg\n"
-"om at lovene i sin/deres jurisdiksjon tillater han/dem ĺ laste ned, ha i "
-"besittelse\n"
-"og/eller bruke denne programvaren.\n"
-"\n"
-"I tillegg skal kunde og/eller sluttbruker spesielt vćre oppmerksom pĺ ĺ ikke "
-"bryte\n"
-"lovene i sin/deres jurisdiksjon. Skulle kunde og/eller sluttbruker ikke\n"
-"respektere bestemmelsene av disse lovene, vil han/de pĺdra seg alvorlige\n"
-"sanksjoner.\n"
-"\n"
-"Under ingen omstendighet skal Mandrakesoft og eller ikke sine produsenter og/"
-"eller\n"
-"leverandřrer bli holdt ansvarlige for sćrskilte, indirekte eller tilfeldige\n"
-"skader uansett hva som enn skulle (inkludert, men ikke begrenset til tap av "
-"fortjeneste,\n"
-"forretningsavbrudd, tap av kommersiell data og andre pengemessige tap, og "
-"endelige\n"
-"ansvarsforhold og erstatninger som skal betales ifřlge en rettslig\n"
-"avgjřrelse) oppstĺ ut av bruk, besittelse, eller ene og alene nedlastingen\n"
-"av denne programvaren, som kunde og/eller sluttbruker til slutt kan ha\n"
-"tilgang til etter ĺ ha sagt seg enig i og undertegnet fremviste avtale.\n"
-"\n"
-"For spřrsmĺl angĺende denne avtalen, vennligst kontakt \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:883
-#, fuzzy
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been released after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Du har nĺ muligheten til ĺ laste ned pakker som har blitt sluppet\n"
-"etter at distribusjonen ble sluppet.\n"
-"\n"
-"Du kan fĺ sikkerhetsoppdateringer og bugfikser, men du trenger en\n"
-"internettoppkobling for ĺ fortsette.\n"
-"\n"
-"Řnsker du ĺ installere oppdateringene?"
-
-#: ../../install_steps_interactive.pm_.c:898
-msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr ""
-"Kontakter Mandrake Linux web-sted for ĺ fĺ en liste over tilgjengelige speil"
-
-#: ../../install_steps_interactive.pm_.c:903
-msgid "Choose a mirror from which to get the packages"
-msgstr "Velg et speil som pakkene kan hentes fra"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Kontakter speilet for ĺ fĺ en liste over tilgjengelige pakker"
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Which is your timezone?"
-msgstr "Hva er din tidsone?"
-
-#: ../../install_steps_interactive.pm_.c:944
-msgid "Hardware clock set to GMT"
-msgstr "Maskinvareklokken din satt til GMT"
-
-#: ../../install_steps_interactive.pm_.c:945
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatisk tidssynkronisering (ved hjelp av NTP)"
-
-#: ../../install_steps_interactive.pm_.c:952
-msgid "NTP Server"
-msgstr "NTP-tjener"
-
-#: ../../install_steps_interactive.pm_.c:986
-#: ../../install_steps_interactive.pm_.c:994
-msgid "Remote CUPS server"
-msgstr "Fjern-CUPS tjener"
-
-#: ../../install_steps_interactive.pm_.c:987
-msgid "No printer"
-msgstr "Ingen skriver"
-
-#: ../../install_steps_interactive.pm_.c:1004
-msgid "Do you have an ISA sound card?"
-msgstr "Har du et ISA lydkort?"
-
-#: ../../install_steps_interactive.pm_.c:1006
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-"Kjřr \"sndconfig\" etter installasjonen for ĺ konfigurere lydkortet ditt"
-
-#: ../../install_steps_interactive.pm_.c:1008
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Lydkort ikke oppdaget. Prřv \"harddrake\" etter installasjonen"
-
-#: ../../install_steps_interactive.pm_.c:1013 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Oppsummering"
-
-#: ../../install_steps_interactive.pm_.c:1016
-msgid "Mouse"
-msgstr "Mus"
-
-#: ../../install_steps_interactive.pm_.c:1018
-msgid "Timezone"
-msgstr "Tidssone"
-
-#: ../../install_steps_interactive.pm_.c:1019 ../../printerdrake.pm_.c:2279
-#: ../../printerdrake.pm_.c:2357
-msgid "Printer"
-msgstr "Skriver"
-
-#: ../../install_steps_interactive.pm_.c:1021
-msgid "ISDN card"
-msgstr "ISDN-kort"
-
-#: ../../install_steps_interactive.pm_.c:1024
-#: ../../install_steps_interactive.pm_.c:1026
-msgid "Sound card"
-msgstr "Lydkort"
-
-#: ../../install_steps_interactive.pm_.c:1028
-msgid "TV card"
-msgstr "TV-kort"
-
-#: ../../install_steps_interactive.pm_.c:1066
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1094
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1067
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1103
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1068
-#: ../../install_steps_interactive.pm_.c:1090
-msgid "Local files"
-msgstr "Lokale filer"
-
-#: ../../install_steps_interactive.pm_.c:1077
-#: ../../install_steps_interactive.pm_.c:1078 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Sett root-passord"
-
-#: ../../install_steps_interactive.pm_.c:1079
-msgid "No password"
-msgstr "Intet passord"
-
-#: ../../install_steps_interactive.pm_.c:1084
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "Dette passordet er for enkelt (mĺ vćre minst %d tegn langt)"
-
-#: ../../install_steps_interactive.pm_.c:1090 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autentifikasjon"
-
-#: ../../install_steps_interactive.pm_.c:1098
-msgid "Authentication LDAP"
-msgstr "Autentisering LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1099
-msgid "LDAP Base dn"
-msgstr "LDAP grunnleggende dn"
-
-#: ../../install_steps_interactive.pm_.c:1100
-msgid "LDAP Server"
-msgstr "LDAP-tjener"
-
-#: ../../install_steps_interactive.pm_.c:1106
-msgid "Authentication NIS"
-msgstr "Autentisering NIS"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "NIS Domain"
-msgstr "NIS-domene"
-
-#: ../../install_steps_interactive.pm_.c:1108
-msgid "NIS Server"
-msgstr "NIS-tjener"
-
-#: ../../install_steps_interactive.pm_.c:1143
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"En egendefinert oppstartsdiskett er en mĺte ĺ starte Linux-systemet pĺ uten\n"
-"ĺ vćre avhengig av den vanlige oppstartslasteren. Dette er nyttig hvis du "
-"ikke řnsker\n"
-"ĺ installere SILO pĺ systemet ditt, eller et annet operativsystem fjerner "
-"SILO,\n"
-"eller at SILO ikke virker med din maskinvarekonfigurasjon. En egendefinert "
-"oppstartsdiskett\n"
-"kan ogsĺ brukes sammen med Mandrake's redningsbilde, som gjřr det mye "
-"lettere gjenopprette\n"
-"etter systemsvikt.\n"
-"Hvis du řnsker du ĺ opprette en oppstartsdiskett for systemet ditt, sett inn "
-"en diskett\n"
-"i den fřrste stasjonen og trykk \"Ok\"."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "First floppy drive"
-msgstr "Fřrste diskettstasjon"
-
-#: ../../install_steps_interactive.pm_.c:1160
-msgid "Second floppy drive"
-msgstr "Andre diskettstasjon"
-
-#: ../../install_steps_interactive.pm_.c:1161 ../../printerdrake.pm_.c:1851
-msgid "Skip"
-msgstr "Dropp"
-
-#: ../../install_steps_interactive.pm_.c:1166
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"En egendefinert oppstartsdiskett er en mĺte ĺ starte Linux-systemet pĺ uten\n"
-"ĺ vćre avhengig av den vanlige oppstartslasteren. Dette er nyttig hvis du "
-"ikke řnsker\n"
-"ĺ installere LILO (eller grub) pĺ systemet ditt, eller et annet "
-"operativsystem fjerner LILO,\n"
-"eller at LILO ikke virker med din maskinvarekonfigurasjon. En egendefinert "
-"oppstartsdiskett\n"
-"kan ogsĺ brukes sammen med Mandrake's redningsbilde, som gjřr det mye "
-"lettere gjenopprette\n"
-"etter systemsvikt. Řnsker du ĺ opprette en oppstartsdiskett for systemet "
-"ditt?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1172
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-"\n"
-"\n"
-"(ADVARSEL! Du bruker XFS pĺ din rotpartisjon,\n"
-"det ĺ lage en oppstartsdiskett pĺ en 1,44 Mb diskett vil\n"
-"antageligvis ikke gĺ, dan XFS trenger en veldig stor driver)."
-
-#: ../../install_steps_interactive.pm_.c:1180
-msgid "Sorry, no floppy drive available"
-msgstr "Beklager, ingen diskettstasjon tilgjengelig"
-
-#: ../../install_steps_interactive.pm_.c:1184
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Velg diskettstasjonen du řnsker ĺ bruke for ĺ lage oppstartsdisketten"
-
-#: ../../install_steps_interactive.pm_.c:1188
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Sett inn en diskett i %s"
-
-#: ../../install_steps_interactive.pm_.c:1191
-msgid "Creating bootdisk..."
-msgstr "Oppretter oppstartdiskett"
-
-#: ../../install_steps_interactive.pm_.c:1198
-msgid "Preparing bootloader..."
-msgstr "Klargjřr oppstartslaster"
-
-#: ../../install_steps_interactive.pm_.c:1209
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"Det virker som du har en OldWorld eller ukjent\n"
-"maskin, yaboot oppstartslasteren vil ikke virke for deg.\n"
-"Installasjonen vil fortsette, men du mĺ\n"
-"bruke BootX for ĺ starte din maskin."
-
-#: ../../install_steps_interactive.pm_.c:1215
-msgid "Do you want to use aboot?"
-msgstr "Řnsker du ĺ bruke aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1218
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Feil ved installasjon av aboot, \n"
-"prřve ĺ installere selv om det řdelegger den fřrste partisjonen?"
-
-#: ../../install_steps_interactive.pm_.c:1225
-msgid "Installing bootloader"
-msgstr "Installer oppstartslaster"
-
-#: ../../install_steps_interactive.pm_.c:1231
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Installasjon av oppstartslaster mislykket. Fřlgende feil oppsto:"
-
-#: ../../install_steps_interactive.pm_.c:1239
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Du mĺ muligens endre din Open Firmware oppstartsenhet for ĺ\n"
-" slĺ pĺ oppstartslasteren. Hvis du ikke ser oppstartslasteren ved\n"
-" omstart, hold nede Command-Option-O-F ved omstart og skriv:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Skriv sĺ: shut-down\n"
-"Ved din neste oppstart burde du se oppstartslasteren."
-
-#: ../../install_steps_interactive.pm_.c:1283
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Sett inn en tom diskett i stasjon %s"
-
-#: ../../install_steps_interactive.pm_.c:1287
-msgid "Creating auto install floppy..."
-msgstr "Oppretter diskett for autoinstallasjon"
-
-#: ../../install_steps_interactive.pm_.c:1298
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Noen trinn er ikke fullfřrt.\n"
-"\n"
-"Řnsker du virkelig ĺ avslutte nĺ?"
-
-#: ../../install_steps_interactive.pm_.c:1309
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Gratulerer, installasjonen er fullfřrt.\n"
-"Fjern oppstartsmediet og trykk return for ĺ starte pĺ nytt.\n"
-"\n"
-"\n"
-"For informasjon om endringer som er tilgjengelige for denne utgaven av "
-"Mandrake Linux,\n"
-"sjekk errataen tilgjengelig fra:\n"
-"\n"
-"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Informasjon om konfigurering av systemet ditt finnes i post\n"
-"install-kapittelet i Official Mandrake Linux User's Guide."
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid "Generate auto install floppy"
-msgstr "Oppretter diskett for autoinstallasjon"
-
-#: ../../install_steps_interactive.pm_.c:1328
-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 ""
-"Autoinstallasjonen kan vćre fullstendig automatisk\n"
-"hvis du řnsker det. Den vil da ta over harddisken!!\n"
-"(dette er for ĺ installere pĺ en annen maskin)\n"
-"\n"
-"Du kanskje řnske ĺ kjřre installasjonen omigjen.\n"
-
-#: ../../install_steps_interactive.pm_.c:1333
-msgid "Automated"
-msgstr "Automatisert"
-
-#: ../../install_steps_interactive.pm_.c:1333
-msgid "Replay"
-msgstr "Gjřr igjen"
-
-#: ../../install_steps_interactive.pm_.c:1336
-msgid "Save packages selection"
-msgstr "Lagre pakkevalg"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux installasjon %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> mellom elementer | <Space> velger | <F12> neste skjerm "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu mangler"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "Konsollhjelper mangler"
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Velg en fil"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Avansert"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Grunnleggende"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Vennligst vent"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Dĺrlig valg, prřv igjen\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Ditt valg? (standard %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Innganger du mĺ fylle:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Ditt valg? (0/1, standard `%s') "
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Valg: `%s': %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button?"
-msgstr "Řnsker du ĺ klikke pĺ denne knappen? "
-
-#: ../../interactive_stdio.pm_.c:103
-msgid " enter `void' for void entry"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Ditt valg? (standard `%s'%s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Det er mange ting ĺ velge fra (%s).\n"
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Vennlig velg det fřrste nummeret av 10-range du řnsker ĺ redigere,\n"
-"eller bare trykk Enter for ĺ fortsette.\n"
-"Ditt valg? "
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Merk, et merke endret:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr "Re-submit"
-
-#: ../../keyboard.pm_.c:197 ../../keyboard.pm_.c:228
-msgid "Czech (QWERTZ)"
-msgstr "Tsjekkisk (QWERTZ)"
-
-#: ../../keyboard.pm_.c:198 ../../keyboard.pm_.c:230
-msgid "German"
-msgstr "Tysk"
-
-#: ../../keyboard.pm_.c:199
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:200 ../../keyboard.pm_.c:237
-msgid "Spanish"
-msgstr "Spansk"
-
-#: ../../keyboard.pm_.c:201 ../../keyboard.pm_.c:238
-msgid "Finnish"
-msgstr "Finsk"
-
-#: ../../keyboard.pm_.c:202 ../../keyboard.pm_.c:239
-msgid "French"
-msgstr "Fransk"
-
-#: ../../keyboard.pm_.c:203 ../../keyboard.pm_.c:264
-msgid "Norwegian"
-msgstr "Norsk"
-
-#: ../../keyboard.pm_.c:204
-msgid "Polish"
-msgstr "Polsk"
-
-#: ../../keyboard.pm_.c:205 ../../keyboard.pm_.c:272
-msgid "Russian"
-msgstr "Russisk"
-
-#: ../../keyboard.pm_.c:207 ../../keyboard.pm_.c:274
-msgid "Swedish"
-msgstr "Svensk"
-
-#: ../../keyboard.pm_.c:208 ../../keyboard.pm_.c:289
-msgid "UK keyboard"
-msgstr "UK-tastatur"
-
-#: ../../keyboard.pm_.c:209 ../../keyboard.pm_.c:290
-msgid "US keyboard"
-msgstr "US-tastatur"
-
-#: ../../keyboard.pm_.c:211
-msgid "Albanian"
-msgstr "Albansk"
-
-#: ../../keyboard.pm_.c:212
-msgid "Armenian (old)"
-msgstr "Armensk (gammel)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Armenian (typewriter)"
-msgstr "Armensk (skrivemaskin)"
-
-#: ../../keyboard.pm_.c:214
-msgid "Armenian (phonetic)"
-msgstr "Armensk (phonétic)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjansk (latin)"
-
-#: ../../keyboard.pm_.c:221
-msgid "Belgian"
-msgstr "Belgisk"
-
-#: ../../keyboard.pm_.c:222
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgarsk (phonetic)"
-
-#: ../../keyboard.pm_.c:223
-msgid "Bulgarian (BDS)"
-msgstr "Bulgarsk (BDS)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasiliansk (ABNT-2)"
-
-#: ../../keyboard.pm_.c:225
-msgid "Belarusian"
-msgstr "Belarusian"
-
-#: ../../keyboard.pm_.c:226
-msgid "Swiss (German layout)"
-msgstr "Sveisisk (tysk oppsett)"
-
-#: ../../keyboard.pm_.c:227
-msgid "Swiss (French layout)"
-msgstr "Sveisisk (fransk oppsett)"
-
-#: ../../keyboard.pm_.c:229
-msgid "Czech (QWERTY)"
-msgstr "Tsjekkisk (QWERTY)"
-
-#: ../../keyboard.pm_.c:231
-msgid "German (no dead keys)"
-msgstr "Tysk (ingen dřde taster)"
-
-#: ../../keyboard.pm_.c:232
-msgid "Danish"
-msgstr "Dansk"
-
-#: ../../keyboard.pm_.c:233
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:234
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norsk)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Svensk)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Estonian"
-msgstr "Estlandsk"
-
-#: ../../keyboard.pm_.c:240
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgisk (\"Russisk\" oppsett)"
-
-#: ../../keyboard.pm_.c:241
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgisk (\"Latinsk\" oppsett)"
-
-#: ../../keyboard.pm_.c:242
-msgid "Greek"
-msgstr "Gresk"
-
-#: ../../keyboard.pm_.c:243
-msgid "Hungarian"
-msgstr "Ungarsk"
-
-#: ../../keyboard.pm_.c:244
-msgid "Croatian"
-msgstr "Kroatisk"
-
-#: ../../keyboard.pm_.c:245
-msgid "Israeli"
-msgstr "Israelsk"
-
-#: ../../keyboard.pm_.c:246
-msgid "Israeli (Phonetic)"
-msgstr "Israelsk (Phonetic)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Iranian"
-msgstr "Iransk"
-
-#: ../../keyboard.pm_.c:248
-msgid "Icelandic"
-msgstr "Islansk"
-
-#: ../../keyboard.pm_.c:249
-msgid "Italian"
-msgstr "Italiensk"
-
-#: ../../keyboard.pm_.c:251
-msgid "Japanese 106 keys"
-msgstr "Japansk 106 taster"
-
-#: ../../keyboard.pm_.c:254
-msgid "Korean keyboard"
-msgstr "Koreansk tastatur"
-
-#: ../../keyboard.pm_.c:255
-msgid "Latin American"
-msgstr "Latinamerikansk"
-
-#: ../../keyboard.pm_.c:256
-msgid "Lithuanian AZERTY (old)"
-msgstr "Liauisk AZERTY (gammel)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Lithuanian AZERTY (new)"
-msgstr "Liauisk AZERTY (ny)"
-
-#: ../../keyboard.pm_.c:259
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litauisk \"nummer-rekke\" QWERTY"
-
-#: ../../keyboard.pm_.c:260
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litauisk \"phonétic\" QWERTY"
-
-#: ../../keyboard.pm_.c:261
-msgid "Latvian"
-msgstr "Lotvisk"
-
-#: ../../keyboard.pm_.c:262
-msgid "Macedonian"
-msgstr "Makedonsk"
-
-#: ../../keyboard.pm_.c:263
-msgid "Dutch"
-msgstr "Hollansk"
-
-#: ../../keyboard.pm_.c:265
-msgid "Polish (qwerty layout)"
-msgstr "Polsk (qwerty oppsett)"
-
-#: ../../keyboard.pm_.c:266
-msgid "Polish (qwertz layout)"
-msgstr "Polsk (qwertz oppsett)"
-
-#: ../../keyboard.pm_.c:267
-msgid "Portuguese"
-msgstr "Portugisisk"
-
-#: ../../keyboard.pm_.c:268
-msgid "Canadian (Quebec)"
-msgstr "Canadisk (Quebec)"
-
-#: ../../keyboard.pm_.c:270
-msgid "Romanian (qwertz)"
-msgstr "Romansk (qwertz)"
-
-#: ../../keyboard.pm_.c:271
-msgid "Romanian (qwerty)"
-msgstr "Romansk (qwerty)"
-
-#: ../../keyboard.pm_.c:273
-msgid "Russian (Yawerty)"
-msgstr "Russisk (Yawerty)"
-
-#: ../../keyboard.pm_.c:275
-msgid "Slovenian"
-msgstr "Slovensk"
-
-#: ../../keyboard.pm_.c:276
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovakisk (QWERTZ)"
-
-#: ../../keyboard.pm_.c:277
-msgid "Slovakian (QWERTY)"
-msgstr "Slovakisk (QWERTY)"
-
-#: ../../keyboard.pm_.c:279
-msgid "Serbian (cyrillic)"
-msgstr "Serbisk (cyrillic)"
-
-#: ../../keyboard.pm_.c:281
-msgid "Tamil"
-msgstr "Tamilsk"
-
-#: ../../keyboard.pm_.c:282
-msgid "Thai keyboard"
-msgstr "Thai-tastatur"
-
-#: ../../keyboard.pm_.c:284
-msgid "Tajik keyboard"
-msgstr "Tajik-tastatur"
-
-#: ../../keyboard.pm_.c:285
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Tyrkisk (tradisjonell \"F\" modell)"
-
-#: ../../keyboard.pm_.c:286
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Tyrkisk (moderne \"Q\" modell)"
-
-#: ../../keyboard.pm_.c:288
-msgid "Ukrainian"
-msgstr "Ukrainsk"
-
-#: ../../keyboard.pm_.c:291
-msgid "US keyboard (international)"
-msgstr "US-tastatur (internasjonal)"
-
-#: ../../keyboard.pm_.c:292
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamesisk \"nummer-rekke\" QWERTY"
-
-#: ../../keyboard.pm_.c:293
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslavisk (latin)"
-
-#: ../../keyboard.pm_.c:301
-msgid "Right Alt key"
-msgstr "Hřyre Alt tast"
-
-#: ../../keyboard.pm_.c:302
-msgid "Both Shift keys simultaneously"
-msgstr "Begge Shift taster samtidig"
-
-#: ../../keyboard.pm_.c:303
-msgid "Control and Shift keys simultaneously"
-msgstr "Control og Shift taster samtidig"
-
-#: ../../keyboard.pm_.c:304
-msgid "CapsLock key"
-msgstr "CapsLock tast"
-
-#: ../../keyboard.pm_.c:305
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl og Alt taster samtidig"
-
-#: ../../keyboard.pm_.c:306
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt og Shift taster samtidig"
-
-#: ../../keyboard.pm_.c:307
-msgid "\"Menu\" key"
-msgstr "\" Menu\" tast"
-
-#: ../../keyboard.pm_.c:308
-msgid "Left \"Windows\" key"
-msgstr "Venstre \"Windows\" tast"
-
-#: ../../keyboard.pm_.c:309
-msgid "Right \"Windows\" key"
-msgstr "Hřyre \"Windows\" tast"
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Rund monterer %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Fjern de logiske partisjoner fřrst\n"
-
-#: ../../modules.pm_.c:832
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"PCMCIA střtte eksisterer ikke lengre for 2.2 kjerner. Vennligst bruk en 2.4 "
-"kernel."
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - mus"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Generisk PS2 hjulmus"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 knapp"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Generisk 2-knappers mus"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generisk"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Hjul"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "seriell"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Generisk 3-knappers mus"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC-seriene (seriell)"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM-seriene"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (seriell, gammel C7 type)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "bussmus"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 knapper"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 knapper"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "ingen"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Ingen mus"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Vennligst test musen."
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "For ĺ aktivere musen,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "BEVEG HJULET DITT!"
-
-#: ../../my_gtk.pm_.c:666
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:701
-msgid "Finish"
-msgstr "Avslutt"
-
-#: ../../my_gtk.pm_.c:701 ../../printerdrake.pm_.c:1590
-msgid "Next ->"
-msgstr "Neste ->"
-
-#: ../../my_gtk.pm_.c:702 ../../printerdrake.pm_.c:1588
-msgid "<- Previous"
-msgstr "<- Forrige"
-
-#: ../../my_gtk.pm_.c:1034
-msgid "Is this correct?"
-msgstr "Er dette riktig?"
-
-#: ../../my_gtk.pm_.c:1098 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../my_gtk.pm_.c:1119
-msgid "Expand Tree"
-msgstr "Utvid tre"
-
-#: ../../my_gtk.pm_.c:1120
-msgid "Collapse Tree"
-msgstr "Trekk sammen tre"
-
-#: ../../my_gtk.pm_.c:1121
-msgid "Toggle between flat and group sorted"
-msgstr "Skift mellom flat og gruppesortert"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Koble opp mot Internett"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Den mest vanlige mĺten ĺ koble opp med adsl er pppoe.\n"
-"Noen oppkoblinger bruker pptp, noen fĺ bruker dhcp.\n"
-"Hvis du ikke vet, velg 'bruk pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "bruk dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "bruk pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "bruk pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Hvilken dhcp klient řnsker du ĺ bruke?\n"
-"Standard er dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Ikke noe ethernet nettverksadapter har blitt oppdaget i systemet ditt.\n"
-"Jeg kan ikke sette opp denne tilkoblingstypen."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:248
-msgid "Choose the network interface"
-msgstr "Velg nettverksgrensesnitt"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Vennligst velg hvilket nettverksadapter du řnsker ĺ bruke til ĺ koble opp\n"
-"mot Internett"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "ingen nettverkskort funnet"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
-msgid "Configuring network"
-msgstr "Konfigurerer nettverk"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Vennligst entre vertsnavnet ditt hvis du vet det.\n"
-"Noen DHCP tjenere trenger vertsnavnet for ĺ virke.\n"
-"Vertsnavnet ditt břr vćre et full-kvalifisert vertsnavn,\n"
-"som ``minboks.mittlab.mittfirma.no''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
-msgid "Host name"
-msgstr "Vertsnavn"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:179
-#: ../../network/netconnect.pm_.c:206 ../../network/netconnect.pm_.c:229
-#: ../../network/netconnect.pm_.c:237
-msgid "Network Configuration Wizard"
-msgstr "Nettverkskonfigurasjonveiviser"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Eksternt ISDN modem"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Internt ISDN-kort"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Hva slags type er ISDN-tilknytningen din?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Hvilken ISDN konfigurering foretrekker du?\n"
-"\n"
-"* Den gamle konfigurasjoen bruker isdn4net. Det har kraftfulle\n"
-" verktřy, den det er vanskelig ĺ konfigurere for en nybegynner,\n"
-" og er ikke standardbasert.\n"
-"\n"
-"' Det nye konfigurasjonsverktřyet er enklere ĺ forstĺ,\n"
-" mer standardisert, men med fćrre verktřy.\n"
-"\n"
-"Vi anbefaler den nye konfigurasjonen.\n"
-"\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Ny konfigurasjon (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Gamle konfigurasjonen (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "ISDN-konfigurasjon"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
-msgstr ""
-"Velg din tilbyder.\n"
-" Hvis denne ikke er i listen, velg ikke i listen"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Europaprotokollen"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Europaprotokollen (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protokoll for resten av verden"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Resten av verden \n"
-" ingen D-kanal (leid linje)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use?"
-msgstr "Hvilken protokoll řnsker du ĺ bruke?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Hva slags kort har du?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Jeg vet ikke"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Hvis du har et ISA kort burde verdiene i neste bilde vćre riktige.\n"
-"\n"
-"Hvis du har et PCMCIA kort mĺ du vite irq og io for kortet.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Avbryt"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Fortsett"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card?"
-msgstr "Hvilket er ditt ISDN-kort?"
-
-#: ../../network/isdn.pm_.c:235
-msgid ""
-"I have detected an ISDN PCI card, but I don't know its type. Please select a "
-"PCI card on the next screen."
-msgstr ""
-"Jeg har oppdaget et ISDN PCI-kort, men jeg vet ikke hviklet type. Vennligst "
-"velg et PCI-kort i neste skjermbilde."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Ingen ISDN PCI-kort funnet. Vennligst velg et i neste skjermbilde."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Vennligst velg hvilken serieport modemet ditt koblet til."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Opsjoner oppringt"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Navn tilknytning"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Telefonnummer"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Login ID"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Scriptbasert"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Terminalbasert"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Domenenavn"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Fřrste DNS-tjener (valgfri)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Andre DNS-tjener (valgfri)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Du kan koble ned eller rekonfigurere tilkoblingen din."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Du kan rekonfigurere tilkoblingen din."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Du er for řyeblikket koblet opp mot Internett"
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Du kan koble opp mot Internett eller rekonfigurere tilkoblingen din."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Du er for řyeblikket ikke koblet opp mot Internett."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Koble til"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Koble fra"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Konfigurer tilkoblingen"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Internett tilkobling & konfigurasjon"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Vi skal nĺ konfigurere din %s tilkobling."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Vi skal nĺ konfigurere %s oppkoblingen.\n"
-"\n"
-"\n"
-"Trykk OK for ĺ begynne."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:256
-#: ../../network/netconnect.pm_.c:276 ../../network/tools.pm_.c:63
-msgid "Network Configuration"
-msgstr "Nettverkskonfigurasjon"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Fordi du holder pĺ med en nettverksinstallasjon er ditt "
-"nettverksoppsettallerede konfigurert.\n"
-"Trykk OK for ĺ beholde din eksisterende konfigurasjon, eller avbryt for ĺ "
-"rekonfigurere din internett og nettverkskonfigurasjon.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Velkommen til nettverkskonfigurasjon hjelperen\n"
-"\n"
-"Vi skal nĺ konfigurere din internett/nettverksoppkobling.\n"
-"Hvis du ikke řnsker ĺ bruke automatisk oppdagelse, fjern krysset\n"
-"i boksen.\n"
-
-#: ../../network/netconnect.pm_.c:171
-msgid "Choose the profile to configure"
-msgstr "Velg profilen som skal konfigureres"
-
-#: ../../network/netconnect.pm_.c:172
-msgid "Use auto detection"
-msgstr "Bruk automatisk detektering"
-
-#: ../../network/netconnect.pm_.c:179 ../../printerdrake.pm_.c:145
-msgid "Detecting devices..."
-msgstr "Finner enheter..."
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "Normal modem connection"
-msgstr "Normal modemtilkobling"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-#, c-format
-msgid "detected on port %s"
-msgstr "oppdaget pĺ port %s"
-
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
-msgid "ISDN connection"
-msgstr "ISDN-tilkobling"
-
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
-#, c-format
-msgid "detected %s"
-msgstr "oppdaget %s"
-
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
-msgid "ADSL connection"
-msgstr "ADSL oppkobling"
-
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
-#, c-format
-msgid "detected on interface %s"
-msgstr "oppdaget pĺ grensesnitt %s"
-
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
-msgid "Cable connection"
-msgstr "Kabeltilkobling"
-
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
-msgid "cable connection detected"
-msgstr "Kabeltilkobling detektert"
-
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
-msgid "LAN connection"
-msgstr "Lokalt nettverksoppkobling"
-
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
-msgid "ethernet card(s) detected"
-msgstr "oppdaget ethernettkort"
-
-#: ../../network/netconnect.pm_.c:206
-msgid "Choose the connection you want to configure"
-msgstr "Velg oppkoblingen du řnsker ĺ konfigurere"
-
-#: ../../network/netconnect.pm_.c:230
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Du har konfigureret flere mĺter ĺ koble deg mot internett pĺ.\n"
-"Venligst velg den du řnsker ĺ bruker.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:231
-msgid "Internet connection"
-msgstr "Internett tilkobling"
-
-#: ../../network/netconnect.pm_.c:237
-msgid "Do you want to start the connection at boot?"
-msgstr "Řnsker du ĺ starte tilkoblingen din ved oppstart?"
-
-#: ../../network/netconnect.pm_.c:251
-msgid "Network configuration"
-msgstr "Nettverkskonfigurasjon"
-
-#: ../../network/netconnect.pm_.c:252
-msgid "The network needs to be restarted"
-msgstr "Nettverket mĺ startes pĺ nytt"
-
-#: ../../network/netconnect.pm_.c:256
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Et problem oppsto ved omstart av nettverket: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Gratulerer, internett og nettverkskonfigurasjonen er fullfřrt.\n"
-"\n"
-"Konfigurasjonen vil nĺ bli aktivert.\n"
-
-#: ../../network/netconnect.pm_.c:270
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Etter at det er ferding, anbefaler vi at du restarter X\n"
-"slik at du unngĺr problemer med at vertsnavnet forandres."
-
-#: ../../network/netconnect.pm_.c:271
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"Det oppsto problemer under konfigurasjon.\n"
-"Test tilkoblingen din via net_monitor eller mcc. Hvis tilkoblingen din ikke "
-"virker, řnsker du kanskje ĺ kjřre konfigureringen pĺ nytt"
-
-#: ../../network/network.pm_.c:293
-msgid ""
-"WARNING: this device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"ADVARSEL: Denne enheten har tidligere blitt konfigurert til ĺ koble opp mot "
-"Internett.\n"
-"Trykk OK for ĺ beholde enhetens konfigurasjon.\n"
-"Modifisering av feltene nedenfor vil overskrive denne konfigurasjonen."
-
-#: ../../network/network.pm_.c:298
-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 ""
-"Vennligst entre IP-konfigurasjonen for denne maskinen.\n"
-"Hvert element břr entres som en IP-adresse i punkt-desimal\n"
-"notasjon (f.eks, 1.2.3.4)."
-
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigurerer nettverksenhet %s"
-
-#: ../../network/network.pm_.c:309
-#, c-format
-msgid " (driver %s)"
-msgstr " (driver %s)"
-
-#: ../../network/network.pm_.c:311 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP-adresse"
-
-#: ../../network/network.pm_.c:312 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Nettmaske"
-
-#: ../../network/network.pm_.c:313
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:313
-msgid "Automatic IP"
-msgstr "Automatisk IP"
-
-#: ../../network/network.pm_.c:314
-#, fuzzy
-msgid "Start at boot"
-msgstr "Startet ved oppstart"
-
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:714
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-adresse břr vćre i format 1.2.3.4"
-
-#: ../../network/network.pm_.c:365
-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 ""
-"Vennligst entre vertsnavnet ditt.\n"
-"Vertsnavnet ditt břr vćre et full-kvalifisert vertsnavn,\n"
-"sĺ som ``minboks.mittlab.mittfirma.no''.\n"
-"Du kan ogsĺ entre IP-adressen til gateway'en hvis du har en"
-
-#: ../../network/network.pm_.c:370
-msgid "DNS server"
-msgstr "DNS-tjener"
-
-#: ../../network/network.pm_.c:371
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (f.eks. %s)"
-
-#: ../../network/network.pm_.c:373
-msgid "Gateway device"
-msgstr "Gateway-enhet"
-
-#: ../../network/network.pm_.c:385
-msgid "Proxies configuration"
-msgstr "Konfigurasjon proxy"
-
-#: ../../network/network.pm_.c:386
-msgid "HTTP proxy"
-msgstr "HTTP-proxy"
-
-#: ../../network/network.pm_.c:387
-msgid "FTP proxy"
-msgstr "FTP-proxy"
-
-#: ../../network/network.pm_.c:388
-msgid "Track network card id (useful for laptops)"
-msgstr "Spor id nettverkskort (nyttig for bćrbare)"
-
-#: ../../network/network.pm_.c:391
-msgid "Proxy should be http://..."
-msgstr "Proxy burde vćre http://..."
-
-#: ../../network/network.pm_.c:392
-msgid "Proxy should be ftp://..."
-msgstr "Proxy burde vćre ftp://..."
-
-#: ../../network/tools.pm_.c:41
-msgid "Internet configuration"
-msgstr "Internett-konfigurasjon"
-
-#: ../../network/tools.pm_.c:42
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Vil du prřve ĺ koble opp mot Internett nĺ?"
-
-#: ../../network/tools.pm_.c:46 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Tester tilkoblingen din..."
-
-#: ../../network/tools.pm_.c:56
-msgid "The system is now connected to Internet."
-msgstr "Systemet er nĺ koblet opp mot Internett."
-
-#: ../../network/tools.pm_.c:57
-msgid "For security reason, it will be disconnected now."
-msgstr "Av sikkerhetsgrunner vil den bli frakoblet nĺ."
-
-#: ../../network/tools.pm_.c:58
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Det ser ikke ut til at systemet er koblet til Internett.\n"
-"Prřv ĺ rekonfigurere tilkoblingen din."
-
-#: ../../network/tools.pm_.c:82
-msgid "Connection Configuration"
-msgstr "Konfigurasjon tilknytning."
-
-#: ../../network/tools.pm_.c:83
-msgid "Please fill or check the field below"
-msgstr "Vennnligst fyll eller merk feltet under"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "Kort IRQ"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Kort mem (DMA)"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "Kort IO"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "Kort IO_0"
-
-#: ../../network/tools.pm_.c:89 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "Kort IO_1"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Ditt telefonnummer"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Navn tilbyder (f.eks. tilbyder.net)"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Telefonnummer tilbyder"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Tilbyder dns 1 (valgfri)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Tilbyder dns 2 (valgfri)"
-
-#: ../../network/tools.pm_.c:95
-msgid "Choose your country"
-msgstr "Velg land"
-
-#: ../../network/tools.pm_.c:96 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Oppringningsmodus"
-
-#: ../../network/tools.pm_.c:97 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Oppkoblingshastighet"
-
-#: ../../network/tools.pm_.c:98 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Oppkoblingens timout (i sekunder)"
-
-#: ../../network/tools.pm_.c:99 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Logg inn (brukernavn)"
-
-#: ../../network/tools.pm_.c:100 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Passord"
-
-#: ../../network/tools.pm_.c:118
-msgid "United Kingdom"
-msgstr ""
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "montering mislykket: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Utvidet partisjon ikke střttet pĺ denne plattformen"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions."
-msgstr ""
-"Du har et hull i partisjonstabellen din, men jeg kan ikke bruke det.\n"
-"Den eneste lřsningen er ĺ flytte primćrpartisjonene dine for ĺ ha hullet ved "
-"siden av de utvidede partisjonene"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Gjenoppretting fra fil %s mislykket: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Dĺrlig sikkerhetskopi-fil"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Feil ved skriving til fil %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Noe som ikke er bra skjer med disken din. \n"
-"En test for ĺ sjekke dataintegritet var mislykket. \n"
-"Dette betyr at ĺ skrive noe til disken vil av og til ende opp som ubrukelig"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "mĺ ha"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "viktig"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "veldig bra"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "bra"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "kanskje"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Lokal skriver"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Fjern-skriver"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Skriver pĺ fjern-CUPS tjener"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:736
-msgid "Printer on remote lpd server"
-msgstr "Skriver pĺ fjern-lpd tjener"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Nettverksskriver (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Skriver pĺ SMB/Windows 95/98/NT server"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Skriver pĺ en NetWare tjener"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:740
-msgid "Enter a printer device URI"
-msgstr "Skriverenhetens URI"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Pipe inn i kommando"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2733
-msgid "Unknown model"
-msgstr "Ukjent modell"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Lokale skrivere"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Fjern-skrivere"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " pĺ parallelport \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", USB skriver \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", multifunksjonsenhet pĺ parallelport \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", multifunksjonsenhet pĺ USB"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", multifunksjonsenhet pĺ HP JetDirect"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", multifunksjonsenhet"
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", skriver til %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "pĺ LPD tjener \"%s\", skriver \"%s\""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP vert \"%s\", port %s"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "pĺ Windows tjener \"%s\", del \"%s\""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "pĺ Novell tjener \"%s\", skriver \"%s\""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", bruker kommando %s"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1138
-msgid "Raw printer (No driver)"
-msgstr "Rĺ skriver (ingen driver)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(pĺ %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(pĺ denne maskin)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Pĺ CUPS tjener \"%s\""
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2394
-#: ../../printerdrake.pm_.c:2405 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2673 ../../printerdrake.pm_.c:2700
-#: ../../printerdrake.pm_.c:2870 ../../printerdrake.pm_.c:2872
-msgid " (Default)"
-msgstr " (Standard)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Velg skrivertilkobling"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Hvordan er skriveren tilkoblet?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Skrivere pĺ fjern CUPS tjenere trenger du ikke ĺ konfigurere her; disse "
-"skriverene vil bli oppdaget automatisk."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2457
-msgid "CUPS configuration"
-msgstr "CUPS konfigurasjon"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2458
-msgid "Specify CUPS server"
-msgstr "Spesifiser CUPS tjener"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"For ĺ fĺ tilgang til fjern CUPS-tjenere i ditt lokale nettverk trenger du "
-"ikke ĺ konfigurere noen ting; CUPS-tjenerene informerer maskinen din "
-"automatisk om skriverene. Alle skriverene som fřr řyeblikket er kjent for "
-"maskinen din er listet i \"Remote printers\" seksjonen i hovedvinduet til "
-"Printerdrake. Nĺr CUPS-tjeneren din ikke er i ditt lokale nettverk, mĺ du "
-"entre CUPS-tjenerens IP-adresse og evnt. portnummeret for ĺ fĺ skriver- "
-"informasjon fra tjeneren, ellers la disse feltene vćre tomme."
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Normalt er CUPS konfigurert automatisk ihht. til nettverksmiljřet ditt, sĺ "
-"du kan ha tilgang til skrivere pĺ CUPS-tjenerene i ditt lokale nettverk. "
-"Hvis dette ikke virker ordentlig, skru av \"Automatic CUPS configuration\" "
-"og rediger filen /etc/cups/cupsd.conf manuelt. Ikke glem ĺ starte CUPS pĺ "
-"nytt etterpĺ (kommando: \"service cups restart\")."
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP-adresse břr vćre i format 1.2.3.4"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:864
-msgid "The port number should be an integer!"
-msgstr "Portnummer burde vćre numerisk"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "CUPS tjener IP"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:857
-msgid "Port"
-msgstr "Port"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Automatisk CUPS konfigurasjon"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test porter"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2440
-#: ../../printerdrake.pm_.c:2559
-msgid "Add a new printer"
-msgstr "Legg til en ny skriver"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Velkommen til Skriverveiviseren\n"
-"\n"
-"Denne veiviseren lar deg installere lokale eller fjernskrivere som kan bli "
-"brukt fra denne maskin, og ogsĺ fra andre maskiner i nettverket.\n"
-"\n"
-"Den spřr etter all nřdvendig informasjon for ĺ sette opp skriveren og gir "
-"deg tilgang til alle tilgjengelige skriverdrivere, drivervalg og skriver "
-"tilkoblinger."
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Lokal skriver"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-"\n"
-"Velkommen til skriverveiviseren\n"
-"\n"
-"Den veiviseren vil la deg installere din(e) skriver(e) som er tilkoblet "
-"denne maskin.\n"
-"\n"
-"Vennligt koble skriveren(e) til maskinen og skru dem pĺ. Klikk pĺ \"neste\" "
-"nĺr du er klar, og pĺ \"avbryt\" hvis du ikke řnsker ĺ sette opp skrivere "
-"nĺ.\n"
-"\n"
-"Merk at noen datamaskiner kan krćsje under skriver autooppdating, skru av "
-"\"autodetekter skrivere\" for ĺ installere skrivere uten autodetektering. "
-"Bruk \"ekspertmodus\" til printerdrake nĺr du řnsker ĺ sette opp utskrift pĺ "
-"en fjernskriver og printerdrake ikke lister den automatisk."
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Finn skrivere automatisk"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-"\n"
-"Gratulerer, din skriver er nĺ installert og konfigurert!\n"
-"\n"
-"Du kan skrive ut med \"Skriv ut\" kommandoen til ditt program (vanligvis i "
-"\"Fil\" menyen).\n"
-"\n"
-"Hvis du řnsker ĺ legge til, fjerne, eller gi en skriver ett nytt navn, eller "
-"vis du řnsker ĺ gjřre om standard valg (papir, utskriftkvalitet, .....), "
-"velg \"Skriver\" i \"Hardware\" delen av Mandrake Control Center."
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Automatisk detektering av skrivere"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-msgid "Do auto-detection"
-msgstr "Utfřr automatisk detektering"
-
-#: ../../printerdrake.pm_.c:228
-msgid "Set up printer manually"
-msgstr "Sett opp skriver manuellt"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "Oppdaget %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Skriver pĺ parallelport \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "USB skriver \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Ingen lokal skriver funnet! For manuelt ĺ installere en skriver entre et "
-"enhets-navn/filnavn i input-linjen (Parallelporter: /dev/lp0, /dev/lp1, ..., "
-"lik LPT1:, LPT2:, ..., 1st USB skriver: /dev/usb/lp0, 2nd USB skriver: /dev/"
-"usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Du mĺ legge til en enhet eller et filnavn!"
-
-#: ../../printerdrake.pm_.c:394
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Ingen lokal skriver funnet!\n"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Nettverksskrivere kan bare installeres etter installasjonen. Velg \"Hardware"
-"\" og sĺ \"Printer\" i Mandrake Control Center."
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Vennligst velg en port hvor skriveren din er tilkoblet eller entre en enhet "
-"navn/filnavn i input-linjen"
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Vennligst velg porten hvor skriveren din er koblet til."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Parallelporter: /dev/lp0, /dev/lp1, ..., lik LPT1:, LPT2:, ..., 1st USB "
-"skriver: /dev/usb/lp0, 2nd USB skriver: /dev/usb/lp1, ...)."
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Du mĺ velge/entre en skriver/enhet!"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Manuell konfigurasjon"
-
-#: ../../printerdrake.pm_.c:467
-#, fuzzy
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart P100 or 1315 or an "
-"HP LaserJet 2200?"
-msgstr ""
-"Er skriveren din en multifunksjonsenhet fra HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 med skanner)?"
-
-#: ../../printerdrake.pm_.c:484
-msgid "Installing HPOJ package..."
-msgstr "Installerer HPOJ pakke..."
-
-#: ../../printerdrake.pm_.c:489
-msgid "Checking device and configuring HPOJ..."
-msgstr "Sjekker enhet og konfigurer HPOJ ..."
-
-#: ../../printerdrake.pm_.c:507
-msgid "Installing SANE package..."
-msgstr "Installerer SANE pakke..."
-
-#: ../../printerdrake.pm_.c:519
-msgid "Scanning on your HP multi-function device"
-msgstr "Skanner pĺ din HP multifunksjonsenhet"
-
-#: ../../printerdrake.pm_.c:536
-msgid "Making printer port available for CUPS..."
-msgstr "Gjřr skriverport tilgjengelig for CUPS ..."
-
-#: ../../printerdrake.pm_.c:546 ../../printerdrake.pm_.c:1020
-#: ../../printerdrake.pm_.c:1134
-msgid "Reading printer database..."
-msgstr "Leser skriverdatabase ..."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote lpd Printer Options"
-msgstr "Opsjoner for fjern-lpd skriver"
-
-#: ../../printerdrake.pm_.c:627
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"For ĺ bruke en fjern-lpd skriverkř, mĺ du oppgi vertsnavnet til skriver- "
-"tjeneren og skrivernavnet pĺ denne tjeneren."
-
-#: ../../printerdrake.pm_.c:628
-msgid "Remote host name"
-msgstr "Fjern-vertsnavn"
-
-#: ../../printerdrake.pm_.c:629
-msgid "Remote printer name"
-msgstr "Fjern-skrivers navn"
-
-#: ../../printerdrake.pm_.c:632
-msgid "Remote host name missing!"
-msgstr "Det eksterne vertsnavnet mangler!"
-
-#: ../../printerdrake.pm_.c:636
-msgid "Remote printer name missing!"
-msgstr "Det eksterne vertsnavnet mangler!"
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opsjoner for SMB (Windows 9x/NT) skriver"
-
-#: ../../printerdrake.pm_.c:705
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"For ĺ skrive til en SMB-skriver, mĺ du oppgi SMB-vertsnavnet (Merk! Dette "
-"kan vćre forskjellig fra dens TCP/IP-vertsnavn!) og muligens IP-adressen til "
-"skrivertjeneren, sĺ vel som det delte navnet til skriveren du řnsker tilgang "
-"til og anvendelige brukernavn, passord og arbeidsgruppeinformasjon."
-
-#: ../../printerdrake.pm_.c:706
-msgid "SMB server host"
-msgstr "SMB-tjener vert"
-
-#: ../../printerdrake.pm_.c:707
-msgid "SMB server IP"
-msgstr "SMB-tjener IP"
-
-#: ../../printerdrake.pm_.c:708
-msgid "Share name"
-msgstr "Navn deling"
-
-#: ../../printerdrake.pm_.c:711
-msgid "Workgroup"
-msgstr "Arbeidsgruppe"
-
-#: ../../printerdrake.pm_.c:718
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Servernavnet eller serverens IP mĺ oppgis!"
-
-#: ../../printerdrake.pm_.c:722
-msgid "Samba share name missing!"
-msgstr "Samba delenavn mangler!"
-
-#: ../../printerdrake.pm_.c:727
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:728
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:738
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:741
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:803
-msgid "NetWare Printer Options"
-msgstr "NetWare skriveropsjoner"
-
-#: ../../printerdrake.pm_.c:804
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"For ĺ skrive til en NetWare-skriver, mĺ du oppgi navnet til NetWare-"
-"skrivertjeneren (Mer! Dette kan vćre forskjellig fra dens TCP/IP-vertsnavn!) "
-"sĺ vel som navnet pĺ skriverkřen til skriveren du řnsker adgang til og "
-"anvendelige brukernavn og passord."
-
-#: ../../printerdrake.pm_.c:805
-msgid "Printer Server"
-msgstr "Skrivertjener"
-
-#: ../../printerdrake.pm_.c:806
-msgid "Print Queue Name"
-msgstr "Skriverkř-navn"
-
-#: ../../printerdrake.pm_.c:811
-msgid "NCP server name missing!"
-msgstr "NCP servernavn mangler!"
-
-#: ../../printerdrake.pm_.c:815
-msgid "NCP queue name missing!"
-msgstr "NCP křnavn mangler!"
-
-#: ../../printerdrake.pm_.c:854
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Socket skrivervalg"
-
-#: ../../printerdrake.pm_.c:855
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"For ĺ skrive til en TCP eller socket skriver, mĺ du oppgi vertsnavnet til "
-"skriveren, og eventuelt portnummeret. Pĺ HP JetDirect tjenere er "
-"portnummeret vanligvis 9100, pĺ andre tjenere kan dette variere. Sjekk "
-"manualen til maskinvaren din."
-
-#: ../../printerdrake.pm_.c:856
-msgid "Printer host name"
-msgstr "Skriverens vertsnavn"
-
-#: ../../printerdrake.pm_.c:860
-msgid "Printer host name missing!"
-msgstr "Skriverens vertsnavn mangler!"
-
-#: ../../printerdrake.pm_.c:889 ../../printerdrake.pm_.c:891
-msgid "Printer Device URI"
-msgstr "Skriverenhet URI"
-
-#: ../../printerdrake.pm_.c:890
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Du kan direkte oppgi URI til skriveren. URIen mĺ vćre i henhold til enten "
-"CUPS eller Foomatic standarden. Ikke alle typer URIer střttes av "
-"křbehandlerene."
-
-#: ../../printerdrake.pm_.c:905
-msgid "A valid URI must be entered!"
-msgstr "En korrekt URI mĺ oppgis!"
-
-#: ../../printerdrake.pm_.c:1006
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Alle skrivere trenger ett navn (f.eks. \"skriver\"). Beskrivelsen og "
-"lokalisasjonsfeltene trenger ikke ĺ fylles inn. De er brukerkommentarer."
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Name of printer"
-msgstr "Navn pĺ skriver"
-
-#: ../../printerdrake.pm_.c:1008
-msgid "Description"
-msgstr "Beskrivelse"
-
-#: ../../printerdrake.pm_.c:1009
-msgid "Location"
-msgstr "Lokasjon"
-
-#: ../../printerdrake.pm_.c:1023
-msgid "Preparing printer database..."
-msgstr "Forbereder skriverdatabase ..."
-
-#: ../../printerdrake.pm_.c:1114
-msgid "Your printer model"
-msgstr "Din skrivermodell"
-
-#: ../../printerdrake.pm_.c:1115
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"Printerdrake har sammenlignet modellnavnet fra autooppdaging av skriveremed "
-"modellene oppgitt i skriverdatabasen for ĺ finne beste match. match. Dette "
-"valget kan vćre feil, spesielt hvis skriveren din ikke er oppgitt i det hele "
-"tatt i databasen. Sjekk om valget er riktig og klikk \"Modellen er riktig\" "
-"hvis den er det eller hvis ikke, klikk \"Velg modell manuellt\" sĺ du kan "
-"velge skrivermodellen din manuellt i neste skjerm.\n"
-"\n"
-"Printerdrake har for skriveren din funnet:\n"
-"\n"
-"%s"
-
-#: ../../printerdrake.pm_.c:1120 ../../printerdrake.pm_.c:1123
-msgid "The model is correct"
-msgstr "Modellen er riktig"
-
-#: ../../printerdrake.pm_.c:1121 ../../printerdrake.pm_.c:1122
-#: ../../printerdrake.pm_.c:1125
-msgid "Select model manually"
-msgstr "Velg modell manuellt"
-
-#: ../../printerdrake.pm_.c:1141
-msgid "Printer model selection"
-msgstr "Skrivervalg"
-
-#: ../../printerdrake.pm_.c:1142
-msgid "Which printer model do you have?"
-msgstr "Hva slags type skriver har du?"
-
-#: ../../printerdrake.pm_.c:1143
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-"\n"
-"\n"
-"Sjekk om Printerdrake gjorde autooppdagelsen av din skrivermodell riktig. "
-"Sřk korrekt modell i listen nĺr pekeren stĺr over en feil modell eller pĺ "
-"\"Rĺ skriver\"."
-
-#: ../../printerdrake.pm_.c:1146
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Hvis din skriver ikke finnes i listen velg en kompatibel (se i "
-"skrivermanualen) eller en lignende."
-
-#: ../../printerdrake.pm_.c:1222
-msgid "OKI winprinter configuration"
-msgstr "OKI winprinter konfigurasjon"
-
-#: ../../printerdrake.pm_.c:1223
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Du konfigurerer en OKI laser winprinter. Disse skriverene bruker en veldig\n"
-"spesiell kommunikasjonsprotokoll og virker derfor bare nĺr de er koblet "
-"tilden fřrste parallelporten. Nĺr skriveren er koblet til en annen port "
-"eller til en skrivertjenerboks koble skriveren til den fřrste parallelporten "
-"fřr du skriver en testside. Ellers vil ikke skriveren virke. Innstillinger "
-"for oppkoblingstype vil bli ignorert av driveren."
-
-#: ../../printerdrake.pm_.c:1266 ../../printerdrake.pm_.c:1293
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjet konfigurasjon"
-
-#: ../../printerdrake.pm_.c:1267
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Inkjet skriverdrivere fra Lexmark střtter bare lokale skrivere, ingen "
-"skrivere pĺ fjernmaskiner eller skrivertjenerbokser. Koble skriveren til en "
-"lokal port eller konfigurer den pĺ maskinen hvor det er koblet til."
-
-#: ../../printerdrake.pm_.c:1294
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-"For ĺ kunne skrive med din Lexmark inkjet og denne konfigurasjonen, trenger "
-"du inkjet skriverdriverene fra Lexmark (http://www.lexmark.com/). Gĺ til US "
-"web-stedet og klikk pĺ \"Drivers\" knappen. Velg sĺ din modell og etterpĺ "
-"\"Linux\" som operativsystem. Driveren kommer som RPM-pakker eller skall- "
-"skript med interaktiv grafisk installasjon. Du trenger ikke ĺ gjřre denne "
-"konfigurasjonen fra det grafiske grensesnittet. Abryt direkte etter license "
-"agreement. Skriv sĺ skriverhode alignment sider med \"lexmarkmaintain\" og "
-"juster hode alignment innstillinger med dette programmet."
-
-#: ../../printerdrake.pm_.c:1510
-#, fuzzy
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Standardskriverens instillinger\n"
-"Du břr sjekke at sidestřrrelsen og blekktypen\n"
-"er satt riktig. Merk deg at veldig god utskriftskvalitet\n"
-"kan gjřre utskriften treg."
-
-#: ../../printerdrake.pm_.c:1519
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Valg %s mĺ vćre ett helt tall!"
-
-#: ../../printerdrake.pm_.c:1523
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Valg %s mĺ vćre ett tall!"
-
-#: ../../printerdrake.pm_.c:1528
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Valg %s er utenfor rekkevidden!"
-
-#: ../../printerdrake.pm_.c:1567
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Řnsker du ĺ sette denne skriveren (\"%s\")\n"
-"som standard skriver?"
-
-#: ../../printerdrake.pm_.c:1584
-msgid "Test pages"
-msgstr "Testsider"
-
-#: ../../printerdrake.pm_.c:1585
-#, fuzzy
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Vennligst velg testsidene du řnsker ĺ skrive ut.\n"
-"Merk deg, fototestsiden kan ta lang tid ĺ skrive ut,\n"
-"og pĺ laserskrivere med for lite minne vil den ikke\n"
-"skrives ut i det hele tatt. Som regel vil det holde ĺ\n"
-"skrive ut standard testside."
-
-#: ../../printerdrake.pm_.c:1589
-msgid "No test pages"
-msgstr "Ingen testsider"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Print"
-msgstr "Skriv ut"
-
-#: ../../printerdrake.pm_.c:1592
-msgid "Standard test page"
-msgstr "Standard testside"
-
-#: ../../printerdrake.pm_.c:1595
-msgid "Alternative test page (Letter)"
-msgstr "Alternativ testside (letter)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Alternative test page (A4)"
-msgstr "Alternativ testside (A4)"
-
-#: ../../printerdrake.pm_.c:1600
-msgid "Photo test page"
-msgstr "Fototestside"
-
-#: ../../printerdrake.pm_.c:1604
-msgid "Do not print any test page"
-msgstr "Ikke skriv ut noen testside"
-
-#: ../../printerdrake.pm_.c:1612 ../../printerdrake.pm_.c:1749
-msgid "Printing test page(s)..."
-msgstr "Skriver ut testside(r)..."
-
-#: ../../printerdrake.pm_.c:1637
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Testsiden(e) har blitt sendt til skriver-daemonen.\n"
-"Det kan ta litt tid fřr skriveren starter.\n"
-"Utskriftstatus:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1641
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Testsiden(e) har blitt sendt til skriver-daemonen.\n"
-"Det kan ta litt tid fřr skriveren starter.\n"
-
-#: ../../printerdrake.pm_.c:1648
-msgid "Did it work properly?"
-msgstr "Virker det som det skal?"
-
-#: ../../printerdrake.pm_.c:1669 ../../printerdrake.pm_.c:2735
-msgid "Raw printer"
-msgstr "Rĺ skriver"
-
-#: ../../printerdrake.pm_.c:1687
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1689
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:1708
-#: ../../printerdrake.pm_.c:1718
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1695 ../../printerdrake.pm_.c:1734
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1698
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1705 ../../printerdrake.pm_.c:1715
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1710 ../../printerdrake.pm_.c:1720
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Fĺr ĺ fĺ en liste over tilgjengelige valg for nĺvćrende skriver klikk pĺ "
-"\"Print option list\" knappen."
-
-#: ../../printerdrake.pm_.c:1723
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Fĺr ĺ skrive ut en fil fra kommandolinjen (terminalvindu) bruk kommandoen \"%"
-"s <file>\" eller \"%s <file>\".\n"
-
-#: ../../printerdrake.pm_.c:1727
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1731
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1740 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:1747 ../../printerdrake.pm_.c:1748
-#: ../../printerdrake.pm_.c:2719 ../../standalone/drakbackup_.c:743
-#: ../../standalone/drakbackup_.c:2448 ../../standalone/drakfont_.c:580
-#: ../../standalone/drakfont_.c:792
-msgid "Close"
-msgstr "Lukk"
-
-#: ../../printerdrake.pm_.c:1743 ../../printerdrake.pm_.c:1755
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Skriver ut/Skanner pĺ \"%s\""
-
-#: ../../printerdrake.pm_.c:1744 ../../printerdrake.pm_.c:1756
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Skriver ut pĺ skriver \"%s\""
-
-#: ../../printerdrake.pm_.c:1746
-msgid "Print option list"
-msgstr "Skriv ut liste over valg"
-
-#: ../../printerdrake.pm_.c:1768
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1775
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1797 ../../printerdrake.pm_.c:2224
-#: ../../printerdrake.pm_.c:2488
-msgid "Reading printer data..."
-msgstr "Leser skriverdata: ..."
-
-#: ../../printerdrake.pm_.c:1817 ../../printerdrake.pm_.c:1845
-#: ../../printerdrake.pm_.c:1880
-msgid "Transfer printer configuration"
-msgstr "Overfřr skriverkonfigurasjon"
-
-#: ../../printerdrake.pm_.c:1818
-#, fuzzy, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"Du kan kopiere skriverkonfigurasjonen du har satt opp for křtjeneren\n"
-"%s til %s, din nĺvćrende křtjener. All konfigurasjonsdata (skrivernavn,\n"
-"beskrivelse, tilkoblingstype og standardinstillinger) blir overtatt, men \n"
-"ikke jobber.\n"
-"Ikke alle křer kan overfřres grunnet:\n"
-
-#: ../../printerdrake.pm_.c:1821
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS střtter ikke skrivere pĺ Novelltjenere eller skrivere som sender "
-"dataene inn i en fritt formet kommando.\n"
-
-#: ../../printerdrake.pm_.c:1823
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ střtter bare lokale skrivere, fjern-LPD skrivere, og Socket/TCP "
-"skrivere.\n"
-
-#: ../../printerdrake.pm_.c:1825
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD og LPRng střtter ikke IPP skrivere.\n"
-
-#: ../../printerdrake.pm_.c:1827
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"I tillegg, křer laget med dette programmet eller \"foomatic -configure\" kan "
-"ikke overflyttes."
-
-#: ../../printerdrake.pm_.c:1828
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Skrivere konfigurert med PPD filene som produsenten har laget eller med CUPS "
-"drivere ikke ikke overflyttes."
-
-#: ../../printerdrake.pm_.c:1829
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Velg skriverene som du vil overflytte og klikk\n"
-"\"Overfřr\"."
-
-#: ../../printerdrake.pm_.c:1832
-msgid "Do not transfer printers"
-msgstr "Ikke overfřr skrivere"
-
-#: ../../printerdrake.pm_.c:1833 ../../printerdrake.pm_.c:1850
-msgid "Transfer"
-msgstr "Overfřr"
-
-#: ../../printerdrake.pm_.c:1846
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"En skriver med navnet \"%s\" eksisterer allerede pĺ %s. \n"
-"Klikk \"Overfřr\" for ĺ overskrive.\n"
-"Du kan ogsĺ gi ett nytt skrivernavn, eller hoppe over denne skriveren."
-
-#: ../../printerdrake.pm_.c:1854
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Skrivernavn břr inneholde kun bokstaver, tall og understrek"
-
-#: ../../printerdrake.pm_.c:1859
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Skriveren \"%s\" eksisterer allerede,\n"
-"řnsker du ĺ overskrive dens konfigurasjon?"
-
-#: ../../printerdrake.pm_.c:1867
-msgid "New printer name"
-msgstr "Nytt skrivernavn"
-
-#: ../../printerdrake.pm_.c:1870
-#, c-format
-msgid "Transferring %s..."
-msgstr "Overfřrer %s ..."
-
-#: ../../printerdrake.pm_.c:1881
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1890
-msgid "Refreshing printer data..."
-msgstr "Frisker opp skriverdata ..."
-
-#: ../../printerdrake.pm_.c:1898 ../../printerdrake.pm_.c:1969
-#: ../../printerdrake.pm_.c:1981
-msgid "Configuration of a remote printer"
-msgstr "Konfigurasjon av en fjernskriver"
-
-#: ../../printerdrake.pm_.c:1899
-msgid "Starting network..."
-msgstr "Starter nettverk ..."
-
-#: ../../printerdrake.pm_.c:1933 ../../printerdrake.pm_.c:1937
-#: ../../printerdrake.pm_.c:1939
-msgid "Configure the network now"
-msgstr "Konfigurer nettverket nĺ"
-
-#: ../../printerdrake.pm_.c:1934
-msgid "Network functionality not configured"
-msgstr "Nettverksfunksjonalitet ikke konfigurert"
-
-#: ../../printerdrake.pm_.c:1935
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1938
-msgid "Go on without configuring the network"
-msgstr "Fortsett uten ĺ konfigurere nettverket"
-
-#: ../../printerdrake.pm_.c:1971
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1972
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1982
-msgid "Restarting printing system..."
-msgstr "Starter skriversystemet pĺ nytt ..."
-
-#: ../../printerdrake.pm_.c:2020
-msgid "high"
-msgstr "hřy"
-
-#: ../../printerdrake.pm_.c:2020
-msgid "paranoid"
-msgstr "paranoid"
-
-#: ../../printerdrake.pm_.c:2021
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Installerer et utskriftsystem pĺ %s sikkerhetsnivĺet"
-
-#: ../../printerdrake.pm_.c:2022
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2054
-msgid "Starting the printing system at boot time"
-msgstr "Starter utskriftsystemet ved oppstart"
-
-#: ../../printerdrake.pm_.c:2055
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2078 ../../printerdrake.pm_.c:2116
-#: ../../printerdrake.pm_.c:2146 ../../printerdrake.pm_.c:2179
-#: ../../printerdrake.pm_.c:2284
-msgid "Checking installed software..."
-msgstr "Sjekker installert programvare..."
-
-#: ../../printerdrake.pm_.c:2120
-msgid "Removing LPRng..."
-msgstr "Fjerner LPRng..."
-
-#: ../../printerdrake.pm_.c:2150
-msgid "Removing LPD..."
-msgstr "Fjerner LPD..."
-
-#: ../../printerdrake.pm_.c:2208
-msgid "Select Printer Spooler"
-msgstr "Velg skrivertkřbehandler"
-
-#: ../../printerdrake.pm_.c:2209
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Hvilket utskriftsystem (spooler) řnsker du ĺ bruke?"
-
-#: ../../printerdrake.pm_.c:2242
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Konfigurerer skriver \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2255
-msgid "Installing Foomatic..."
-msgstr "Installerer Foomatic ..."
-
-#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2351
-#: ../../printerdrake.pm_.c:2736 ../../printerdrake.pm_.c:2806
-msgid "Printer options"
-msgstr "Opsjoner for skriver"
-
-#: ../../printerdrake.pm_.c:2321
-msgid "Preparing PrinterDrake..."
-msgstr "Klargjřrer PrinterDrake ..."
-
-#: ../../printerdrake.pm_.c:2338 ../../printerdrake.pm_.c:2893
-msgid "Configuring applications..."
-msgstr "Konfigurerer applikasjoner..."
-
-#: ../../printerdrake.pm_.c:2358
-msgid "Would you like to configure printing?"
-msgstr "Řnsker du ĺ konfigurere en skriver?"
-
-#: ../../printerdrake.pm_.c:2370
-msgid "Printing system: "
-msgstr "Utskriftssystem: "
-
-#: ../../printerdrake.pm_.c:2418
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2422
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Her er fřlgende skriverkř.\n"
-"Du kan legge til flere eller endre de eksisterende."
-
-#: ../../printerdrake.pm_.c:2423
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Her er fřlgende skriverkř.\n"
-"Du kan legge til flere eller endre de eksisterende."
-
-#: ../../printerdrake.pm_.c:2449
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "Frisker opp skriverliste (for ĺ vise alle tilgjengelige CUPS skrivere)"
-
-#: ../../printerdrake.pm_.c:2467
-msgid "Change the printing system"
-msgstr "Endrer utskriftssystemet"
-
-#: ../../printerdrake.pm_.c:2472 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Normalt modus"
-
-#: ../../printerdrake.pm_.c:2628 ../../printerdrake.pm_.c:2678
-#: ../../printerdrake.pm_.c:2887
-msgid "Do you want to configure another printer?"
-msgstr "Řnsker du ĺ konfigurere enda en skriver?"
-
-#: ../../printerdrake.pm_.c:2714
-msgid "Modify printer configuration"
-msgstr "Modifiser skriverkonfigurasjon"
-
-#: ../../printerdrake.pm_.c:2716
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Skriver %s\n"
-"Hva řnsker du ĺ forandre pĺ denne skriveren?"
-
-#: ../../printerdrake.pm_.c:2720
-msgid "Do it!"
-msgstr "Gjřr det!"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2780
-msgid "Printer connection type"
-msgstr "Skrivertilkoblingstype"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2784
-msgid "Printer name, description, location"
-msgstr "Skrivernavn, beskrivelse, sted"
-
-#: ../../printerdrake.pm_.c:2728 ../../printerdrake.pm_.c:2799
-msgid "Printer manufacturer, model, driver"
-msgstr "Skriverprodusent, modell, driver"
-
-#: ../../printerdrake.pm_.c:2729 ../../printerdrake.pm_.c:2800
-msgid "Printer manufacturer, model"
-msgstr "Skriverprodusent, modell"
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2810
-msgid "Set this printer as the default"
-msgstr "Sett denne skriveren som standard"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2815
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr "Legg denne skriveren til Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2824
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr "Fjern denne skriveren fra Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2833
-msgid "Print test pages"
-msgstr "Skriver ut testsider"
-
-#: ../../printerdrake.pm_.c:2743 ../../printerdrake.pm_.c:2835
-msgid "Know how to use this printer"
-msgstr "Vet hvordan man skal bruke denne skriveren"
-
-#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2837
-msgid "Remove printer"
-msgstr "Fjern skriver"
-
-#: ../../printerdrake.pm_.c:2789
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Fjerner gammel skriver \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2813
-msgid "Default printer"
-msgstr "Standardskriver"
-
-#: ../../printerdrake.pm_.c:2814
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Skriveren \"%s\" er nĺ satt til standard skriver."
-
-#: ../../printerdrake.pm_.c:2818 ../../printerdrake.pm_.c:2821
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr "Legger skriver til Star Office/OpenOffice.org"
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr "Skriveren \"%s\" ble vellykket lagt til Star Office/OpenOffice.org."
-
-#: ../../printerdrake.pm_.c:2822
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2827 ../../printerdrake.pm_.c:2830
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2831
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2839
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Řnsker du virkelig ĺ fjerne skriveren \"%s\"?"
-
-#: ../../printerdrake.pm_.c:2841
-#, fuzzy, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Fjerner skriver \"%s\" ..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Proxy-konfigurasjon"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Velkommen til proxy-konfigurasjonsverktřyet.\n"
-"\n"
-"Her kan du sette opp dine http og ftp proxier\n"
-"med eller uten brukernavn og passord\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Vennligst fill ut med http proxy informasjon\n"
-"La feltet vćre hvis du ikke řnsker en http proxy"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "port"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "URLen břr begynne med \"http:\""
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Portnummer burde vćre numerisk"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Vennligst fyll ut ftp-proxy informasjonen-nLa feltet vćre hvis du ikke "
-"řnsker en ftp-proxy"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "URLen břr begynne med \"ftp:\""
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Vennligst skriv inn proxy brukernavn og passord, hvis det eksisterer.\n"
-"La det vćre hvis du ikke řnsker brukernavn/passord"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "brukernavn"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "passord"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "skriv inn passord pĺ nytt"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Passordene stemmer ikke overens. Prřv igjen!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Kan ikke legge til en partisjon til _formattert_ RAID md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Kan ikke skrive fil %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid mislykket"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid mislykket (kanskje raidtool mangler?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Ikke nok partisjoner for RAID nivĺ %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Start ALSA (Advanced Linux Sound Architecture) lydsystem"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron en periodisk kommandoplanlegger."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd blir brukt til overvĺkning av batteristatus og logging av dette via "
-"syslog.\n"
-"Kan ogsĺ brukes til ĺ slĺ av maskinen nĺr batteriet er dĺrlig."
-
-#: ../../services.pm_.c:18
-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 ""
-"Kjřrer kommandoer planlagt av at kommandoen ved tidspunkt spesifisert nĺr\n"
-"at ble kjřrt, og kjřrer batch kommandoer nĺr lastingsmengden er lav nok."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron er et standard UNIX-program som kjřrer brukerspesifiserte programmer\n"
-"ved periodisk planlagte tider. vixie cron gir flere funksjoner til vanlig "
-"UNIX cron,\n"
-"inkludert bedre sikkerhet og mere kraftfulle konfigurasjonsopsjoner."
-
-#: ../../services.pm_.c:23
-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 gir musestřtte til tekstbaserte Linux applikasjoner som\n"
-"Midnight Commander. Den lar ogsĺ musebaserte konsoller foreta klipp-og-lim "
-"operasjoner,\n"
-"og inkluderer střtte for pop-up menyer i konsollen."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake kjřrer et maskinvaresřk, og kan konfigurere ny/endret\n"
-"maskinvare."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:414
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache er en World Wide Web tjener. Den blir brukt til ĺ tjene HTML-filer\n"
-"og CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Internett supertjenerdaemonen (vanligvis kalt inetd) starter\n"
-"varierende Internett-tjenester ettersom det trengs. Den er ansvarlig for ĺ "
-"starte\n"
-"mange tjenester, inkludert telnet, ftp, rsh, og rlogin. Stopping av inetd "
-"stopper\n"
-"alle tjenestene den er ansvarlig for."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Start pakkefiltrering for Linux kjerne 2.2 serien for ĺ sette\n"
-"opp en brannmur for ĺ beskytte maskinen din fra nettverksangrep."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Denne pakken laster det valgte tastaturkartet som er satt i\n"
-"/etc/sysconfig/keyboard. Dette kan bli valgt ved bruk av kbdconfig "
-"verktřyet.\n"
-"For de fleste maskiner břr dette vćre aktivert."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Automatisk regenerering av kjernehode i /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "automatisk oppdagelse og konfigurering av maskinvare ved oppstart."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf vil noen ganger arrangere utfřrelse av forskjellige\n"
-"oppgaver ved oppstart for ĺ vedlikeholde systemkonfigurasjon."
-
-#: ../../services.pm_.c:43
-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 er skriverdaemonen som behřves for at lpr skal virke ordentlig. Den er\n"
-"i hovedsak en tjener som fordeler utskriftsjobber til skriveren(e)."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual Server, brukt for ĺ bygge en tjener med hřy ytelse og\n"
-"tilgjengelighet."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:415
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) er en Domain Name Server (DNS) som brukes til ĺ bestemme "
-"vertsnavn til IP-adresser."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Monterer og demonterer alle Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), og NCP (NetWare) monteringspunkter."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktiverer/deaktiverer alle nettverksgrensesnitt konfigurert til ĺ starte\n"
-"ved oppstart."
-
-#: ../../services.pm_.c:52
-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 er en populćr protokoll for fildeling over TCP/IP nettverk.\n"
-"Denne tjenesten tilbyr NFS-tjener funksjonalitet som er konfigurert via\n"
-"/etc/exports filen."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS er en populćr protokoll for fildeling over TCP/IP nettverk.\n"
-"Denne tjenesten tilbyr NFS fillĺsing funksjonalitet."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Slĺr automatisk pĺ numlock-tast i konsoll og XFree ved\n"
-"oppstart."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Střtter OKI 4w og kompatible winskrivere."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA střtte er vanligvis střtte for ting som ethernet og\n"
-"modem i bćrbare PC'er. Den vil ikke starte uten konfigurasjon sĺ det er "
-"trygt\n"
-"ĺ ha denne installert pĺ maskiner som ikke trenger det."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Portmapper hĺndterer RPC-tilknytninger, som brukes av protokoller\n"
-"som NFS og NIS. Portmap-tjeneren mĺ kjřres pĺ maskiner som brukes som\n"
-"tjenere for protokoller som bruker RPC-mekanismen."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:417
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix er en posttransporteringsagent, som er et program som flytter post "
-"fra en maskin til en annen."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Lagrer og gjenoppretter system entropy pool for hřyere kvalitet pĺ\n"
-"tilfeldig nummergenerering."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Tilordne rĺ enheter til blokkenheter (som harddisk-\n"
-"partisjoner) for bruk av applikasjoner som Oracle"
-
-#: ../../services.pm_.c:71
-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 ""
-"Den rutete daemonen tillater automatisk oppdatering av IP rutertabell via\n"
-"RIP-protokollen. Mens RIP er mye brukt pĺ smĺ nettverk, trengs mere "
-"komplekse\n"
-"rutingprotokoller for komplekse nettverk."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat protokollen lar brukere pĺ et nettverk finne ytelses-\n"
-"metrikser for alle maskinene pĺ nettverket."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"rusers protokollen lar brukere pĺ et nettverk identifisere hvem som\n"
-"er logget inn pĺ andre maskiner."
-
-#: ../../services.pm_.c:78
-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 protokollen lar fjernbrukere motta en liste over alle brukerne\n"
-"som er logget pĺ en maskin som kjřrer rwho-daemonen (lik finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Start lydsystemet pĺ maskinen din"
-
-#: ../../services.pm_.c:81
-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 er en fasilitet som mange daemoner bruker til ĺ logge beskjeder\n"
-"til forskjellige systemloggfiler. Det er en god ide ĺ alltid kjřre syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Last driverene for dine usb enheter."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Starter X-font tjeneren (dette er obligatorisk for at XFree skal kjřre)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Velg hvilke tjenester som skal startes automatisk ved oppstart"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Skriver ut"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internett"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Fildeling"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:923
-msgid "System"
-msgstr "System"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Fjernadministrasjon"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Databasetjener"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Tjenester: %d aktivert for %d registrert"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Tjenester"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "kjřrer"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "stoppet"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Tjenester og daemoner"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Ingen tilleggsinformasjon\n"
-"om denne tjenesten, begklager."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Ved oppstart"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Start"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Stopp"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr "Takk for at du valgte Mandrake Linux 8.2"
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr "Velkommen til ĺpen kilde verdenen"
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Protokoll for resten av verden"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-msgid "Internet and Messaging"
-msgstr "Internett og beskjeder"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-msgid "Multimedia and Graphics"
-msgstr "Multimedia og grafikk"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Utvikling"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-msgid "Mandrake Control Center"
-msgstr "Mandrake kontrollpanel"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-msgid "User interfaces"
-msgstr "Brukergrensesnitt"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-msgid "Server Software"
-msgstr "Tjenerprogramvare"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Spill"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr "MandrakeCampus"
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-msgid "MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr "MandrakeConsulting"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr "MandrakeStore"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr "http://www.mandrakesoft.com/sales/contact"
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Installerer pakke..."
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Jeg kan ikke lese partisjonstabellen din, den er for řdelagt for meg :(\n"
-"Jeg vil fřrsřke ĺ blanke ut dĺrlige partisjoner"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Feil!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Jeg kan ikke finne filen '%s' som jeg trenger."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr "Autoinstallasjonskonfigurering"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Du holder pĺ med ĺ konfigurere en automatisk installasjonsdiskett. Denne "
-"muligheten erlitt farlig, og mĺ brukes forsiktig.\n"
-"\n"
-"Med denne muligeten vil du kunne kjřre installasjonen du gjennomfřrte pĺ "
-"denne maskinenpĺ nytt, med muligheten for ĺ selv kunne forandre pĺ noen av "
-"instillingene.\n"
-"\n"
-"For maksimal sikkerhet vil partisjoneringen og formateringen aldri bli "
-"gjennomfřrt automatisk, uansett hva du valgte under installasjonen.\n"
-"\n"
-"Řnsker du ĺ fortsette?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Konfigurasjon av automatiske skritt"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Vennligst velg for hvert steg om det skal vćre som under installasjonen, "
-"eller manuelt"
-
-#: ../../standalone/drakautoinst_.c:83
-#, fuzzy
-msgid "Creating auto install floppy"
-msgstr "Oppretter diskett for autoinstallasjon"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:548
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Gratulerer!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Disketten har blitt generert.\n"
-"Du kan nĺ gjennomfřre installasjonen pĺ nytt."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Autoinstallering"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Legg til en enhet"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Fjern siste enhet"
-
-#: ../../standalone/drakbackup_.c:438
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:439
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:443
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:465
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:544 ../../standalone/drakbackup_.c:591
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:592 ../../standalone/drakbackup_.c:656
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Dĺrlig sikkerhetskopi-fil"
-
-#: ../../standalone/drakbackup_.c:604
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Dĺrlig sikkerhetskopi-fil"
-
-#: ../../standalone/drakbackup_.c:605
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:655
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Dĺrlig sikkerhetskopi-fil"
-
-#: ../../standalone/drakbackup_.c:663
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-msgid ""
-"\n"
-" FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:676
-#, fuzzy
-msgid " Error during mail sending. \n"
-msgstr "Feil ved lesing av fil %s"
-
-#: ../../standalone/drakbackup_.c:717 ../../standalone/drakbackup_.c:728
-#: ../../standalone/drakbackup_.c:739 ../../standalone/drakfont_.c:788
-#, fuzzy
-msgid "File Selection"
-msgstr "Pakkevalg"
-
-#: ../../standalone/drakbackup_.c:744
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:779
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:780
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:781
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:782
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:783
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:784
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:801
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Vennligst velg pakkene du řnsker ĺ installere."
-
-#: ../../standalone/drakbackup_.c:828
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:829 ../../standalone/drakbackup_.c:853
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:851 ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Fjern inngang"
-
-#: ../../standalone/drakbackup_.c:889
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Fjern Windows(TM)"
-
-#: ../../standalone/drakbackup_.c:928
-#, fuzzy
-msgid "Users"
-msgstr "Brukernavn"
-
-#: ../../standalone/drakbackup_.c:954
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:957
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Vennligst test musen."
-
-#: ../../standalone/drakbackup_.c:962
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Vennligst prřv igjen"
-
-#: ../../standalone/drakbackup_.c:972
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Vennligst prřv igjen"
-
-#: ../../standalone/drakbackup_.c:978
-#, fuzzy
-msgid "Remember this password"
-msgstr "skriv inn passord pĺ nytt"
-
-#: ../../standalone/drakbackup_.c:1042 ../../standalone/drakbackup_.c:2038
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Lokalt nettverksoppkobling"
-
-#: ../../standalone/drakbackup_.c:1049 ../../standalone/drakbackup_.c:2046
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Velg skrivertilkobling"
-
-#: ../../standalone/drakbackup_.c:1075 ../../standalone/drakbackup_.c:2879
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1078 ../../standalone/drakbackup_.c:2883
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Vennligst velg tastatur-oppsettet ditt."
-
-#: ../../standalone/drakbackup_.c:1084 ../../standalone/drakbackup_.c:2895
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Vennligst klikk pĺ en partisjon"
-
-#: ../../standalone/drakbackup_.c:1090 ../../standalone/drakbackup_.c:2901
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1096
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Vennligst velg pakkene du řnsker ĺ installere."
-
-#: ../../standalone/drakbackup_.c:1102
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1143
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Dĺrlig sikkerhetskopi-fil"
-
-#: ../../standalone/drakbackup_.c:1146
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1152 ../../standalone/drakbackup_.c:1193
-#: ../../standalone/drakbackup_.c:2003
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1185 ../../standalone/drakbackup_.c:1995
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Vennligst test musen."
-
-#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:2009
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Dĺrlig sikkerhetskopi-fil"
-
-#: ../../standalone/drakbackup_.c:1257
-#, fuzzy
-msgid "Network"
-msgstr "Nettverksgrensesnitt"
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1287 ../../standalone/drakbackup_.c:1291
-#: ../../standalone/drakbackup_.c:1295
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1288 ../../standalone/drakbackup_.c:1292
-#: ../../standalone/drakbackup_.c:1295
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1289 ../../standalone/drakbackup_.c:1293
-#: ../../standalone/drakbackup_.c:1295
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1290 ../../standalone/drakbackup_.c:1294
-#: ../../standalone/drakbackup_.c:1295
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1302
-#, fuzzy
-msgid "Use daemon"
-msgstr "Brukernavn"
-
-#: ../../standalone/drakbackup_.c:1307
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Vennligst velg pakkene du řnsker ĺ installere."
-
-#: ../../standalone/drakbackup_.c:1313
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Vennligst velg sprĺk som skal brukes."
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Oppdaging av harddisk"
-
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Brukernavn"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1359
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1401
-msgid "What"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1406
-#, fuzzy
-msgid "Where"
-msgstr "Hjul"
-
-#: ../../standalone/drakbackup_.c:1411
-#, fuzzy
-msgid "When"
-msgstr "Hjul"
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "More Options"
-msgstr "Modulopsjoner:"
-
-#: ../../standalone/drakbackup_.c:1435 ../../standalone/drakbackup_.c:2791
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Nettverkskonfigurasjon"
-
-#: ../../standalone/drakbackup_.c:1453
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Vennligst velg pakkene du řnsker ĺ installere."
-
-#: ../../standalone/drakbackup_.c:1455
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1466
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1530
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Vennligst velg pakkene du řnsker ĺ installere."
-
-#: ../../standalone/drakbackup_.c:1531
-#, fuzzy
-msgid "Backup system"
-msgstr "Oppsett filsystemer"
-
-#: ../../standalone/drakbackup_.c:1532
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1535
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1617
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1618
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1620
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1622
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1624
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1625
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1626
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Valg"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1629
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1631
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1633
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1743
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1745
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Vennligst velg hvilken serieport modemet ditt koblet til."
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1776
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1777
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1876
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Nettverkskonfigurasjon"
-
-#: ../../standalone/drakbackup_.c:1894
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1912
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1962
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Dĺrlig sikkerhetskopi-fil"
-
-#: ../../standalone/drakbackup_.c:1964
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Vennligst velg din musetype."
-
-#: ../../standalone/drakbackup_.c:1992
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Dĺrlig sikkerhetskopi-fil"
-
-#: ../../standalone/drakbackup_.c:2073
-msgid "Restore from Hard Disk."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2075
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2133
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Vennligst velg din musetype."
-
-#: ../../standalone/drakbackup_.c:2135
-#, fuzzy
-msgid "Other Media"
-msgstr "Andre"
-
-#: ../../standalone/drakbackup_.c:2141
-#, fuzzy
-msgid "Restore system"
-msgstr "Installer systemet"
-
-#: ../../standalone/drakbackup_.c:2142
-msgid "Restore Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Restore Other"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2149
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2150
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2207
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2215
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Skreddersydd"
-
-#: ../../standalone/drakbackup_.c:2256 ../../standalone/drakbackup_.c:2281
-#: ../../standalone/drakbackup_.c:2302 ../../standalone/drakbackup_.c:2323
-#: ../../standalone/drakbackup_.c:2341 ../../standalone/drakbackup_.c:2373
-#: ../../standalone/drakbackup_.c:2389 ../../standalone/drakbackup_.c:2409
-#: ../../standalone/drakbackup_.c:2428 ../../standalone/drakbackup_.c:2450
-#: ../../standalone/drakfont_.c:578
-msgid "Help"
-msgstr "Hjelp"
-
-#: ../../standalone/drakbackup_.c:2259 ../../standalone/drakbackup_.c:2286
-#: ../../standalone/drakbackup_.c:2305 ../../standalone/drakbackup_.c:2326
-#: ../../standalone/drakbackup_.c:2344 ../../standalone/drakbackup_.c:2392
-#: ../../standalone/drakbackup_.c:2412 ../../standalone/drakbackup_.c:2431
-msgid "Previous"
-msgstr "Forrige"
-
-#: ../../standalone/drakbackup_.c:2261 ../../standalone/drakbackup_.c:2328
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Status"
-
-#: ../../standalone/drakbackup_.c:2307
-#, fuzzy
-msgid "Build Backup"
-msgstr "Dĺrlig sikkerhetskopi-fil"
-
-#: ../../standalone/drakbackup_.c:2346 ../../standalone/drakbackup_.c:3023
-#, fuzzy
-msgid "Restore"
-msgstr "Skreddersydd"
-
-#: ../../standalone/drakbackup_.c:2394 ../../standalone/drakbackup_.c:2414
-#: ../../standalone/drakbackup_.c:2435
-msgid "Next"
-msgstr "Neste"
-
-#: ../../standalone/drakbackup_.c:2468
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2489
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2512
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Velg pakker for installering"
-
-#: ../../standalone/drakbackup_.c:2540
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2563
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Vennligst velg sprĺk som skal brukes."
-
-#: ../../standalone/drakbackup_.c:2584
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Vennligst velg sprĺk som skal brukes."
-
-#: ../../standalone/drakbackup_.c:2606
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Vennligst velg sprĺk som skal brukes."
-
-#: ../../standalone/drakbackup_.c:2628
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2649
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2729
-#, fuzzy
-msgid "Backup system files"
-msgstr "Dĺrlig sikkerhetskopi-fil"
-
-#: ../../standalone/drakbackup_.c:2731
-#, fuzzy
-msgid "Backup user files"
-msgstr "Dĺrlig sikkerhetskopi-fil"
-
-#: ../../standalone/drakbackup_.c:2733
-#, fuzzy
-msgid "Backup other files"
-msgstr "Dĺrlig sikkerhetskopi-fil"
-
-#: ../../standalone/drakbackup_.c:2735 ../../standalone/drakbackup_.c:2766
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2757
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2761
-#, fuzzy
-msgid "Sending files..."
-msgstr "Finner enheter..."
-
-#: ../../standalone/drakbackup_.c:2831
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2889
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Vennligst test musen."
-
-#: ../../standalone/drakbackup_.c:2907
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2913
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Vennligst velg pakkene du řnsker ĺ installere."
-
-#: ../../standalone/drakbackup_.c:2979
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Nettverkskonfigurasjon"
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Nettverkskonfigurasjon"
-
-#: ../../standalone/drakbackup_.c:3010
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "LAN-konfigurasjon"
-
-#: ../../standalone/drakbackup_.c:3014
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "LAN-konfigurasjon"
-
-#: ../../standalone/drakbackup_.c:3018
-#, fuzzy
-msgid "Backup Now"
-msgstr "Oppsett filsystemer"
-
-#: ../../standalone/drakbackup_.c:3043
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3094
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3124
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3132
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3171
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3197 ../../standalone/drakbackup_.c:3272
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3199 ../../standalone/drakbackup_.c:3274
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3213
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3251
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3260
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3288
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Installasjon av %s mislykket. Fřlgende feil oppsto:"
-
-#: ../../standalone/drakfloppy_.c:64
-msgid "usage: drakfloppy\n"
-msgstr "bruk: drakfloppy\n"
-
-#: ../../standalone/drakfloppy_.c:68
-msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-
-#: ../../standalone/drakfloppy_.c:69
-msgid "Module name"
-msgstr "Modulnavn"
-
-#: ../../standalone/drakfloppy_.c:69
-msgid "Size"
-msgstr "Střrrelse"
-
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
-msgid "drakfloppy"
-msgstr "drakoppstartsdiskett"
-
-#: ../../standalone/drakfloppy_.c:91
-msgid "boot disk creation"
-msgstr "Lage oppstartsdiskett(er)"
-
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
-msgid "default"
-msgstr "standard"
-
-#: ../../standalone/drakfloppy_.c:115
-#, c-format
-msgid "DrakFloppy Error: %s"
-msgstr "Feil: DrakFloppy: %s"
-
-#: ../../standalone/drakfloppy_.c:126
-msgid "kernel version"
-msgstr "kernel versjon"
-
-#: ../../standalone/drakfloppy_.c:132
-msgid "General"
-msgstr "Generelt"
-
-#: ../../standalone/drakfloppy_.c:137
-msgid "Expert Area"
-msgstr "Ekspert omrĺde"
-
-#: ../../standalone/drakfloppy_.c:140
-msgid "mkinitrd optional arguments"
-msgstr "mkinitrd valgfrie argumenter"
-
-#: ../../standalone/drakfloppy_.c:141
-msgid "Add a module"
-msgstr "Legg til en modul"
-
-#: ../../standalone/drakfloppy_.c:161
-msgid "force"
-msgstr "tving"
-
-#: ../../standalone/drakfloppy_.c:162
-msgid "if needed"
-msgstr "hvis det behřves"
-
-#: ../../standalone/drakfloppy_.c:163
-msgid "omit scsi modules"
-msgstr "utelat scsi moduler"
-
-#: ../../standalone/drakfloppy_.c:164
-msgid "omit raid modules"
-msgstr "utelat raid moduler"
-
-#: ../../standalone/drakfloppy_.c:200
-msgid "Remove a module"
-msgstr "Fjern en modul"
-
-#: ../../standalone/drakfloppy_.c:222
-msgid "Output"
-msgstr "Utdata"
-
-#: ../../standalone/drakfloppy_.c:234
-msgid "Build the disk"
-msgstr "Opprett disken"
-
-#: ../../standalone/drakfloppy_.c:422
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Vćr sikker pĺ at det er media i %s"
-
-#: ../../standalone/drakfloppy_.c:427
-#, fuzzy, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-"Det er ikke noe media i %s\n"
-"Vennligst sett inn ett."
-
-#: ../../standalone/drakfloppy_.c:429
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Kan ikke dele %s"
-
-#: ../../standalone/drakfloppy_.c:433
-#, c-format
-msgid ""
-"Unable to close properly mkbootdisk: \n"
-" %s \n"
-" %s"
-msgstr ""
-"Kan ikke stenge mkbootdisk skikkelig:\n"
-"%s \n"
-"%s"
-
-#: ../../standalone/drakfont_.c:230
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:232
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:254
-#, fuzzy
-msgid "no fonts found"
-msgstr "ingen nettverkskort funnet"
-
-#: ../../standalone/drakfont_.c:262 ../../standalone/drakfont_.c:304
-#: ../../standalone/drakfont_.c:353 ../../standalone/drakfont_.c:413
-#: ../../standalone/drakfont_.c:422 ../../standalone/drakfont_.c:448
-#: ../../standalone/drakfont_.c:460 ../../standalone/drakfont_.c:473
-#, fuzzy
-msgid "done"
-msgstr "Ferdig"
-
-#: ../../standalone/drakfont_.c:266
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:302
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:305
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:328
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:351
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Formater diskett"
-
-#: ../../standalone/drakfont_.c:354
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Forbereder installasjon"
-
-#: ../../standalone/drakfont_.c:358
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:362
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:369 ../../standalone/drakfont_.c:385
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:373 ../../standalone/drakfont_.c:389
-#: ../../standalone/drakfont_.c:409
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:378 ../../standalone/drakfont_.c:393
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:400
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:404
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:417
-msgid "Restart XFS"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:458 ../../standalone/drakfont_.c:468
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:470
-#, fuzzy
-msgid "xfs restart"
-msgstr "begrense"
-
-#: ../../standalone/drakfont_.c:477 ../../standalone/drakfont_.c:761
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:551
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Formater partisjoner"
-
-#: ../../standalone/drakfont_.c:566
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:571
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN-konfigurasjon"
-
-#: ../../standalone/drakfont_.c:573
-#, fuzzy
-msgid "Font List"
-msgstr "Monteringspunkt"
-
-#: ../../standalone/drakfont_.c:740
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Velg partisjonene du řnsker ĺ partisjonere"
-
-#: ../../standalone/drakfont_.c:744
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:748
-#, fuzzy
-msgid "StarOffice"
-msgstr "Office"
-
-#: ../../standalone/drakfont_.c:752
-#, fuzzy
-msgid "Abiword"
-msgstr "Avbryt"
-
-#: ../../standalone/drakfont_.c:756
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Skriver"
-
-#: ../../standalone/drakfont_.c:793
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:829
-#, fuzzy
-msgid "Install List"
-msgstr "Installer systemet"
-
-#: ../../standalone/drakfont_.c:859
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:896
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-#, fuzzy
-msgid "Selected All"
-msgstr "Velg fil"
-
-#: ../../standalone/drakfont_.c:898
-#, fuzzy
-msgid "Remove List"
-msgstr "Fjern skriver"
-
-#: ../../standalone/drakfont_.c:915 ../../standalone/drakfont_.c:935
-#, fuzzy
-msgid "Initials tests"
-msgstr "Initmelding"
-
-#: ../../standalone/drakfont_.c:916
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Ikke noe nettverksadapter i systemet ditt!"
-
-#: ../../standalone/drakfont_.c:917
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:918
-#, fuzzy
-msgid "Post Install"
-msgstr "Installer"
-
-#: ../../standalone/drakfont_.c:936
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Ikke noe nettverksadapter i systemet ditt!"
-
-#: ../../standalone/drakfont_.c:937
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Avslutt installering"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:196
-msgid "Internet Connection Sharing"
-msgstr "Deling av Internett tilkobling"
-
-#: ../../standalone/drakgw_.c:122
-msgid "Sorry, we support only 2.4 kernels."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:134
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Deling av Internett tilkobling er slĺtt pĺ"
-
-#: ../../standalone/drakgw_.c:135
-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 ""
-"Oppsett av deling av Internett tilkobling har allerede blitt gjort.\n"
-"Dette er for řyeblikket slĺtt pĺ.\n"
-"\n"
-"Hva vil du gjřre?"
-
-#: ../../standalone/drakgw_.c:139
-msgid "disable"
-msgstr "slĺ av"
-
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
-msgid "dismiss"
-msgstr "avvis"
-
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
-msgid "reconfigure"
-msgstr "Konfigurer pĺ nytt"
-
-#: ../../standalone/drakgw_.c:142
-msgid "Disabling servers..."
-msgstr "Slĺr av tjenere..."
-
-#: ../../standalone/drakgw_.c:150
-msgid "Internet connection sharing is now disabled."
-msgstr "Deling av Internett tilkobling er slĺtt av"
-
-#: ../../standalone/drakgw_.c:159
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Deling av Internett tilkobling er slĺtt av"
-
-#: ../../standalone/drakgw_.c:160
-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 ""
-"Oppsett av deling av Internett tilkobling har allerede blitt gjort.\n"
-"Dette er for řyeblikket slĺtt av.\n"
-"\n"
-"Hva vil du gjřre?"
-
-#: ../../standalone/drakgw_.c:164
-msgid "enable"
-msgstr "slĺ pĺ"
-
-#: ../../standalone/drakgw_.c:171
-msgid "Enabling servers..."
-msgstr "Slĺr pĺ tjenere..."
-
-#: ../../standalone/drakgw_.c:176
-msgid "Internet connection sharing is now enabled."
-msgstr "Deling av Internett tilkobling er nĺ slĺtt pĺ."
-
-#: ../../standalone/drakgw_.c:197
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Du er i ferd med ĺ konfigurere maskinen din til ĺ dele Internett-"
-"tilkobling.\n"
-"Andre maskiner i nettverket ditt vil da kunne bruke denne maskinens "
-"Internett tilkobling.\n"
-"\n"
-"Merk: du trenger et dedikert nettverksadapter for ĺ sette opp et lokalt "
-"nettverk (LAN)."
-
-#: ../../standalone/drakgw_.c:223
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Grensesnitt %s (bruker modul %s)"
-
-#: ../../standalone/drakgw_.c:224
-#, c-format
-msgid "Interface %s"
-msgstr "Grensesnitt %s"
-
-#: ../../standalone/drakgw_.c:232
-msgid "No network adapter on your system!"
-msgstr "Ikke noe nettverksadapter i systemet ditt!"
-
-#: ../../standalone/drakgw_.c:233
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Ikke noe ethernet nettverksadapter har blitt oppdaget i systemet ditt. "
-"Vennligst kjřr verktřyet for maskinvarekonfigurasjon."
-
-#: ../../standalone/drakgw_.c:239
-msgid "Network interface"
-msgstr "Nettverksgrensesnitt"
-
-#: ../../standalone/drakgw_.c:240
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Det er bare ett konfigurert nettverksadapter i systemet ditt:\n"
-"\n"
-"%s\n"
-"\n"
-"Jeg er i ferd med ĺ sette opp ditt lokale nettverk (LAN) med dette adapteret."
-
-#: ../../standalone/drakgw_.c:249
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Vennligst velg hvilket nettverksadapter som skal kobles til ditt lokale "
-"nettverk (LAN)."
-
-#: ../../standalone/drakgw_.c:267
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Monitor er ikke konfigurert"
-
-#: ../../standalone/drakgw_.c:268
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:273
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Konfigurasjon av automatiske skritt"
-
-#: ../../standalone/drakgw_.c:274
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Modifiser skriverkonfigurasjon"
-
-#: ../../standalone/drakgw_.c:276
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:288
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:293
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:294
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "CUPS tjener IP"
-
-#: ../../standalone/drakgw_.c:295
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:302
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:313
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Mulig LAN-adresse konflikt funnet i konfigurasjonen til %s!\n"
-
-#: ../../standalone/drakgw_.c:321
-msgid "Firewalling configuration detected!"
-msgstr "Brannmurkonfigurasjon oppdaget!"
-
-#: ../../standalone/drakgw_.c:322
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Advarsel! En eksisterende brannmurkonfigurasjon har blitt oppdaget. Du "
-"trenger muligens ĺ konfigurere noe manuelt etter installasjon."
-
-#: ../../standalone/drakgw_.c:329
-msgid "Configuring..."
-msgstr "Konfigurerer..."
-
-#: ../../standalone/drakgw_.c:330
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Konfigurerer script, installerer programvare, starter tjenere..."
-
-#: ../../standalone/drakgw_.c:366
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemer ved installering av pakke %s"
-
-#: ../../standalone/drakgw_.c:549
-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 ""
-"Alt har blitt konfigurert.\n"
-"Du kan nĺ dele Internett-tilkobling med andre maskiner pĺ ditt lokale "
-"nettverk ved ĺ bruke automatisk nettverkskonfigurasjon (DHCP)."
-
-#: ../../standalone/drakgw_.c:566
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Oppsett har allerede blitt gjort, men er for řyeblikket slĺtt av."
-
-#: ../../standalone/drakgw_.c:567
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Oppsett har allerede blitt gjort, og er for řyeblikket slĺtt pĺ."
-
-#: ../../standalone/drakgw_.c:568
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Deling av Internett tilkobling har aldri blitt konfigurert."
-
-#: ../../standalone/drakgw_.c:573
-msgid "Internet connection sharing configuration"
-msgstr "Internett deling av tilkobling konfigurasjon"
-
-#: ../../standalone/drakgw_.c:580
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Velkommen til verktřyet for deling av Internett tilkobling!\n"
-"\n"
-"%s\n"
-"\n"
-"Klikk pĺ Konfigurer for ĺ starte oppsett-hjelperen."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Nettverkskonfigurasjon (%d adaptere"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Slett profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil som skal slettes:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Ny profil...."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Vertsnavn: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internett-tilgang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Type:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Grensesnitt:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigurer internetttilgang...."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN-konfigurasjon"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Driver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "rensesnitt"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokoll"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Konfigurer lokalt nettverk"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Wizard..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Bruk"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Vennligst vent . . . Setter konfigurasjonen pĺ plass"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Tilkoblet"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Ikke tilkoblet"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Koble til..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Koble fra..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Du har ingen konfigurerte grensesnitt.\n"
-"Konfigurer disse fřrst ved ĺ klikke pĺ 'Konfigurer'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN-konfigurasjon"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Oppstartsprotokoll"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Startet ved oppstart"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktiver nĺ"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktiver nĺ"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Du har ingen internett-tilkobling.\n"
-"Opprett en fřrst ved ĺ klikke pĺ 'Konfigurer'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internett tilkobling konfigurasjon"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internett tilkobling konfigurasjon"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Oppkoblingstype:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametere"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernettkort"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-klient"
-
-#: ../../standalone/draksec_.c:51
-msgid "Setting security level"
-msgstr "Setter sikkerhetsnivĺ"
-
-#: ../../standalone/draksec_.c:57
-#, fuzzy
-msgid "Setting security user"
-msgstr "Setter sikkerhetsnivĺ"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Kontrollpanel"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Velg verktřyet du řnsker ĺ bruke"
-
-#: ../../standalone/drakxtv_.c:55
-msgid ""
-"XawTV isn't installed!\n"
-"\n"
-"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
-"module in \"/etc/modules\") nor installed xawtv, please send the\n"
-"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
-"with subject \"undetected TV card\".\n"
-"\n"
-"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Canadisk (Quebec)"
-
-#: ../../standalone/drakxtv_.c:72
-msgid "USA (broadcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:73
-msgid "China (broadcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:73
-msgid "Japan (broadcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:73
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:74
-msgid "East Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:74
-#, fuzzy
-msgid "France [SECAM]"
-msgstr "Frankrike"
-
-#: ../../standalone/drakxtv_.c:74
-#, fuzzy
-msgid "Ireland"
-msgstr "Islansk"
-
-#: ../../standalone/drakxtv_.c:74
-msgid "West Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:75
-#, fuzzy
-msgid "Australia"
-msgstr "Řsterrike"
-
-#: ../../standalone/drakxtv_.c:75
-#, fuzzy
-msgid "Newzealand"
-msgstr "Netherlands"
-
-#: ../../standalone/drakxtv_.c:76
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:77
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:113
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:115
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:116
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:120
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:128
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:131
-#, fuzzy
-msgid "There was an error while scanning for TV channels"
-msgstr "Det var en feil ved installering av pakkene:"
-
-#: ../../standalone/drakxtv_.c:132
-msgid "XawTV isn't installed!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:135
-msgid "Have a nice day!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:136
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:148
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:149
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "bruk: keyboarddrake [--expert] [tastatur]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Vennligst velg tastatur-oppsettet ditt."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Řnsker du at BackSpace skal returnere Delete i konsoll?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Bytt CD"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Vennligst sett inn installasjons-CD'en i stasjonen og trykk Ok nĺr du er\n"
-"ferdig. Hvis du ikke har denne, trykk Avbryt for ĺ unngĺ oppgradering."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Kan ikke starte oppgradering !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:516
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-#, fuzzy
-msgid "Show only for the selected day"
-msgstr "Vis kun for denne dag"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Fil/_Ny"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Fil/_Ĺpne"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>Ĺ"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Fil/_Lagre"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>L"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Fil/Lagre _Som"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Fil/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Valg"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Valg/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Hjelp"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Hjelp/_Om..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Brukernavn"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "meldinger"
-
-#: ../../standalone/logdrake_.c:175
-#, fuzzy
-msgid "Syslog"
-msgstr "syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "sřk"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Ett verktřy for ĺ sjekke loggene dine"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Instillinger"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "lik"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "men ikke lik"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Velg fil"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Kalender"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Innholdet i filen"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "vennligst vent, gjennomgĺr %s"
-
-#: ../../standalone/logdrake_.c:407
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Lilo/Grub konfigurasjon"
-
-#: ../../standalone/logdrake_.c:408
-#, fuzzy
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Velkommen til proxy-konfigurasjonsverktřyet.\n"
-"\n"
-"Her kan du sette opp dine http og ftp proxier\n"
-"med eller uten brukernavn og passord\n"
-
-#: ../../standalone/logdrake_.c:416
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache og Pro-ftpd"
-
-#: ../../standalone/logdrake_.c:419
-msgid "sshd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:420
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:421
-#, fuzzy
-msgid "xinetd"
-msgstr "Avslutt"
-
-#: ../../standalone/logdrake_.c:424
-#, fuzzy
-msgid "service setting"
-msgstr "Tjener"
-
-#: ../../standalone/logdrake_.c:425
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:435
-#, fuzzy
-msgid "load setting"
-msgstr "Formatering"
-
-#: ../../standalone/logdrake_.c:436
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:449
-#, fuzzy
-msgid "alert configuration"
-msgstr "Internett-konfigurasjon"
-
-#: ../../standalone/logdrake_.c:450
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:493
-msgid "Save as.."
-msgstr "Lagre Som..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Vennligst velg din musetype."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "ingen serie_usb funnet\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Emulere tredje knapp?"
-
-#: ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "Leser skriverdata: ..."
-
-#: ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Finner enheter ..."
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Velg et grafikk-kort"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Oppstartsenhet"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Brannmurkonfigurasjon"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Brannmurkonfigurasjon"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Brannmur\n"
-"\n"
-"Du har allerede satt opp en brannmur.\n"
-"Klikk pĺ Konfigurer for ĺ endre eller fjerne brannmuren"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Brannmur\n"
-"\n"
-"Klikk pĺ Konfigurer for ĺ sette opp en standard brannmur"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Velg sprĺk"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Velg installasjonsklasse"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Oppdaging av harddisk"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Konfigurer mus"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Velg tastatur"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Sikkerhet"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Oppsett filsystemer"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formater partisjoner"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Velg pakker for installering"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Installer systemet"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Legg til en bruker"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Konfigurer nettverk"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Konfigurer tjenester"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Installer oppstartslaster"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Opprett en oppstartdiskett"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Konfigurer X"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Installer systemet"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Avslutt installering"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall konfigurering\n"
-"\n"
-"Dette konfigurerer en personlig brannmur for denne Mandrake Linux maskinen.\n"
-"For en kraftig dedikert brannmurlřsning ta en kikk pĺ den\n"
-"spesialiserte MandrakeSecurity Firewall distribusjonen."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Vi vil nĺ stille deg spřrsmĺl om hvilke tjenester du vil tillate\n"
-"Internett ĺ koble til. Tenk nřye over disse spřrsmĺlene,\n"
-"da sikkerheten til maskinen din er viktig.\n"
-"\n"
-"Hvis du ikke bruker noen av disse tjenestene for řyeblikket, skru\n"
-"av brannmur. Du kan endre denne konfigurasjonen nĺr du vil ved ĺ\n"
-"kjřre denne applikasjonen pĺ nytt!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Kjřrer du en web-tjener pĺ denne maskinen som hele hele Internett trenger\n"
-"ĺ se? Hvis du kjřrer en web-tjener som kun trenger tilgang fra denne "
-"maskinen\n"
-"kan du trygt svare NEI her.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Kjřrer du en navnetjener pĺ denne maskinen? Hvis du ikke satte opp en\n"
-"for ĺ gi ut IP og soneinformasjon til hele Internett, vennligst svar nei.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Řnsker du ĺ tillate innkommende Secure Shell (ssh) tilkoblinger? Dette\n"
-"er et alternativ til telnet som du kan bruke til innlogg. Hvis du bruker\n"
-"telnet nĺ burde du definitivt bytte til ssh. telnet er ikke kryptert --\n"
-"sĺ noen angripere kan stjele passordet ditt hvis du bruker det. ssh\n"
-"er kryptert og tillater ikke dette."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Řnsker du ĺ tillate innkommende telnet tilkoblinger?\n"
-"Dette er forferdelig usikkert som vi forklarte i forrige skjermbilde. Vi\n"
-"anbefaler pĺ det sterkeste ĺ svare Nei her og bruke ssh i stedet for\n"
-"telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Kjřrer du en FTP-tjener her som du trenger ĺ ha tilgjengelig pĺ\n"
-"Internett? I sĺfall anbefaler vi pĺ det sterkeste at du kun bruker\n"
-"den til anonyme overfřringer. Passord sendt med FTP kan stjeles av\n"
-"angripere, siden FTP heller ikke bruker kryptering for ĺ overfřre passord.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Kjřrer du en epost-tjener her? Hvis du sender beskjeder via \n"
-"pine, mutt eller andre tekstbaserte epost-klienter gjřr du\n"
-"antageligvis det. Eller skal du slĺ av dette.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Kjřrer du en POP- eller IMAP-tjener her? Denne vil bli\n"
-"brukt som vert for ikke-web-baserte epost-kontoer via \n"
-"denne maskinen.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Det ser ut til at du kjřrer en 2.2 kjerne. Hvis nettverks-IP'en\n"
-"din er automatisk satt av en maskin hjemme eller pĺ kontoret \n"
-"(dynamisk tildelt), trenger vi ĺ tillate dette.. Er dette\n"
-"tilfelle?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Mottar maskinen din tid synkronisert til en annen maskin?\n"
-"For det meste er dette brukt av medium-store /Unix/Linux\n"
-"organisasjoner for ĺ synkronisere tid for ting som logging. Hvis\n"
-"du ikke er en del av et střrre kontor og ikke har hřrt om dette\n"
-"gjřr du antageligvis ikke."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Konfigurasjon ferdig. Skal vi skrive endringene til disk?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Kan ikke ĺpne %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Kan ikke ĺpne %s for skriving: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Brannmurkonfigurasjon"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Vennligst vent, forbereder installasjon"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Nettverksmaskin (klient)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS-tjener, SMB-tjener, Proxy-tjener, SSH-tjener"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Office"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome arbeidstasjon"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Verktřy for din Palm Pilot eller din Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Arbeidstasjon"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Server, Brannmur/ruter"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Tjener for domenenavn og nettverksinformasjon"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Kontorprogrammer: tekstbehandlere (kword, abiword), regneark (kspread, "
-"gnumeric), pdf fremvisere etc"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Lydrelaterte verktřy: mp3 eller midi-spillere, miksere etc."
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Břker og howto's om Linux og fri programvare"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE arbeidstasjon"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm etc"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedia - Video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Sett med verktřy for e-post, nyheter, web, filoverfřring og chat"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Database"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL eller MySQL database tjener"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Verktřy for ĺ forenkle konfigurasjonen pĺ maskinen din"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedia - Lyd"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentasjon"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Konsollverktřy"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix posttjener, Inn nyhetstjener"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internettstasjon"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimediastasjon"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Konfigurasjon"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Mere grafiske skrivebord (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"K Desktop Environment, basis grafikkmiljř med en samling av passende verktřy"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Grafisk miljř"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache og Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Verktřy for ĺ opprette og brenne CD'er"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Kontor og arbeidsmaskin"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Tjener"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm etc"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Grafiske programmer sĺ som Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C og C++ utviklingsbibliotek, programmer og include filer"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Nettverk datamaskintjener"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Server, Mail/Gruppevare/News"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Spillstasjon"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Videospillere og redigerere"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedia - Grafikk"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Underholdningsprogrammer: arkade, bordspill, strategi etc"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Sett med verktřy for ĺ lese og sende e-post og nyheter (pine, mutt, tin...) "
-"og for se pĺ webben"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Personlig finans"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Et grafisk miljř med et brukervennlig sett med applikasjoner og skrivebords- "
-"verktřy"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Klienter for forskjellige protokoller inkludert ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Internett-gateway"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Lyd og bilde avspilling/redigeringsprogrammer"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Andre grafiske skrivebord"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Redigerere, skall, filverktřy, terminaler"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programmer for ĺ hĺndtere dine finanser, sĺ som gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Personling informasjonshĺndtering"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedia - CD-brenning"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Vitenskaplig arbeidsstasjon"
-
-#~ msgid "Complete (%dMB)"
-#~ msgstr "Full (%dMB)"
-
-#~ msgid "Minimum (%dMB)"
-#~ msgstr "Minimum (%dMB)"
-
-#~ msgid "Recommended (%dMB)"
-#~ msgstr "Anbefalt (%dMB)"
-
-#~ msgid ""
-#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, "
-#~ "PhotoSmart, LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-#~ msgstr ""
-#~ "Er skriveren din en multifunksjonsenhet fra HP (OfficeJet, PSC, "
-#~ "PhotoSmart, LaserJet 1100/1200/1220/3200/3300 med skanner)?"
-
-#~ msgid ""
-#~ "***********************************************************************\n"
-#~ "\n"
-#~ msgstr ""
-#~ "***********************************************************************\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "\n"
-#~ "***********************************************************************\n"
-#~ "\n"
-#~ msgstr ""
-#~ "\n"
-#~ "\n"
-#~ "***********************************************************************\n"
-#~ "\n"
-
-#~ msgid "Utilities"
-#~ msgstr "Verktřy"
-
-#~ msgid "Archiving, emulators, monitoring"
-#~ msgstr "Arkivering, emulatorer, overvĺkning"
diff --git a/perl-install/share/po/pl.po b/perl-install/share/po/pl.po
deleted file mode 100644
index 420d569c8..000000000
--- a/perl-install/share/po/pl.po
+++ /dev/null
@@ -1,13539 +0,0 @@
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (c) 1999 MandrakeSoft
-# Pawel Jablonski <pj@linux-mandrake.com>, 1999-2000.
-# Wojciech Karas <karas@uci.agh.edu.pl>, 2000
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-08-10 10:57GMT+0200\n"
-"Last-Translator: Pawel Jablonski <pj@linux-mandrake.com>\n"
-"Language-Team: Polish <pl@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:242
-msgid "Configure all heads independently"
-msgstr "Konfiguruj wszystkie monitory niezależnie"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Użyj rozszerzenia Xinerama"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfiguruj tylko kartę \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Konfiguracja wielomonitorowa"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Twój system obsługuje wiele monitorów.\n"
-"Co chcesz zrobić?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Karta graficzna"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Wybierz kartę graficzną"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Wybierz X serwer"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X serwer"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Wybierz X serwer"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X serwer"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Którą konfigurację XFree chcesz mieć?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Dla Twojej karty akceleracja 3D jest obsługiwana tylko przez XFree %s.\n"
-"Twoja karta jest obsługiwana przez XFree %s, gdzie może być wydajniejsza "
-"obsługa 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Dla Twojej karty akceleracja 3D jest obsługiwana tylko przez XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s z obsługą sprzętowej akceleracji 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Dla Twojej karty akceleracja 3D jest obsługiwana przez XFree %s.\n"
-"JEST TO ROZWIĄZANIE EKSPERYMENTALNE, MOŻE ZAWIESIĆ KOMPUTER."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s z EKSPERYMENTALNĄ obsługą sprzętowej akceleracji 3D "
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Dla Twojej karty akceleracja 3D jest obsługiwana tylko przez XFree %s.\n"
-"JEST TO ROZWIĄZANIE EKSPERYMENTALNE, MOŻE ZAWIESIĆ KOMPUTER.\n"
-"Twoja karta jest obsługiwana przez XFree %s, gdzie może być wydajniejsza "
-"obsługa 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installation display driver)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Konfiguracja XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Określ rozmiar pamięci karty graficznej"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Wybierz opcje serwera"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Wybierz monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Dwa krytyczne parametry to częstotliwość synchronizacji pionowej,\n"
-"która określa, jak często odświeżany jest cały ekran oraz najbardziej "
-"istotny\n"
-"- częstotliwość synchronizacji poziomej - rysowania linii.\n"
-"\n"
-"Jest BARDZO WAŻNE aby nie podać typu monitora o większym zakresie\n"
-"częstotliwości odchylania niż możliwości twojego monitora,\n"
-"ponieważ może to spowodować jego uszkodzenie.\n"
-"Jeśli masz wątpliwości, wybierz zachowawcze ustawienia."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Częstotliwość synchronizacji poziomej"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Częstotliwość synchronizacji pionowej"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Nie skonfigurowano monitora"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Nie skonfigurowano jeszcze karty graficznej"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Nie określono jeszcze rozdzielczości"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Chcesz przetestować tą konfigurację?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Ostrzeżenie: testowanie tej karty może zawiesić komputer"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test konfiguracji"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"spróbuj zmienić jakieś parametry"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Wystąpił błąd:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Pozostalo %d sekund"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Czy te ustawienia sa prawidlowe?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Wystąpił błąd, spróbuj zmienić jakieś parametry"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Rozdzielczość"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Określ rozdzielczość oraz głębię kolorów"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Karta graficzna: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Serwer XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Więcej"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Tryb eksperta"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Pokaż wszystkie"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rozdzielczości"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Układ klawiatury: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Typ myszy: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Port myszy: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Synchronizacja pozioma monitora: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Synchronizacja pionowa monitora: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Karta graficzna: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Karta graficzna: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Pamięć karty: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Ilość kolorów: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Rozdzielczość: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Serwer XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Sterownik XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Przygotowywanie konfiguracji X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Co chcesz zrobić?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Zmienić monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Zmienić kartę graficzną"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Zmienić opcje serwera"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Zmienić rozdzielczość"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Obejrzeć informacje"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Przetestować ponownie"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Wyjść"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zachować zmiany?\n"
-"Aktualna konfiguracja jest następująca:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X przy uruchomieniu "
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Można skonfigurować komputer, aby automatycznie po uruchomieniu startowały X-"
-"y.\n"
-"Czy chcesz, by X-y uruchamiały się po restarcie?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "By uaktywnić zmiany zaloguj się ponownie do %s"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Wyloguj się i użyj kombinacji klawiszy Ctrl-Alt-BackSpace "
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 kolorów (8 bitów)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tysiące kolorów (15 bitów)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tysięcy kolorów (16 bitów)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milionów kolorów (24 bity)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardy kolorów (32 bity)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB lub więcej"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standardowa VGA, 640x480 przy 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 przy 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Zgodny z 8514, 1024x768 przy 87 Hz z przeplotem (bez 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 przy 87 Hz z przeplotem, 800x600 in 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Rozszerzona SVGA, 800x600 przy 60 Hz, 640x480 przy 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA bez przeplotu, 1024x768 przy 60 Hz, 800x600 przy 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Wysokoczęstotliwościowy SVGA, 1024x768 przy 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Wieloczęstotliwościowy do 1280x1024 przy 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Wieloczęstotliwościowy do 1280x1024 przy 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Wieloczęstotliwościowy do 1280x1024 przy 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor do 1600x1200 przy 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor do 1600x1200 przy 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Pierwszy sektor na partycji startowej"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Pierwszy sektor na dysku (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Instalacja SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Gdzie chcesz zainstalować program rozruchowy?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Instalacja LILO/Grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO z menu tekstowym"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO z menu graficznym"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Start z DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Podstawowe opcje programu rozruchowego"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Użyty program rozruchowy"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Instalacja programu rozruchowego"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Urządzenie startowe"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (nie funkcjonuje ze starszymi BIOSami)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Odczytuj duże bloki"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "duże bloki"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Tryb video"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Opóźnienie przed uruchomieniem domyślnego systemu"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Hasło"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Hasło (powtórnie)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Ograniczenie opcji linii komend"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "ograniczenie"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Wyczyścić /tmp przy każdym starcie systemu"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Określ rozmiar pamięci, jeśli trzeba (znaleziono %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Włączyć profile sprzętowe?"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Podaj rozmiar pamięci w MB"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Opcja \"Ograniczenie opcji linii komend\" nie działa bez hasła"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Proszę spróbować ponownie"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Hasła nie zgadzają się"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Komunikat startowy"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Open Firmware Delay"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Opóźnienie uruchamiania"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Uaktywnić uruchamianie z CD?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Enable OF Boot?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Domyślny system?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Masz następujące pozycje.\n"
-"Możesz dodać następne lub zmienić istniejące."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Dodaj"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Zrobione"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Modyfikuj"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Jakiego typu pozycję chcesz dodać?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Inny system operacyjny (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Inny system operacyjny (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Inny system operacyjny (Windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Obraz"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Dołącz"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Startowy ramdysk"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Zapis-odczyt"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabela"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Niebezpieczne"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Etykieta"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Domyślne"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Rozmiar startowego ramdysku"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "brak video"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Usuń pozycję"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Pusta etykieta jest niedozwolona"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Musisz mieć partycję wymiany (swap)"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Ta etykieta jest już używana"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Znaleziono %s %s interfejsów"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Masz inne?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Czy masz interfejs %s?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Nie"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Tak"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Pokaż informację o sprzęcie"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instalacja sterownika do karty %s %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(moduł %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Który sterownik %s wypróbować?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"W pewnych przypadkach sterownik %s potrzebuje dodatkowych\n"
-"informacji do poprawnego działania, mimo że zazwyczaj działa\n"
-"bez nich. Czy chcesz podać dodatkowe parametry, czy też \n"
-"pozwolisz sterownikowi wykryć je automatycznie?\n"
-"Czasami wykrywanie może zawiesić komputer, nie powoduje to\n"
-"jednak żadnych problemów (utraty danych)."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Autodetekcja"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Określ parametry"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Możesz przekazać do modułu %s parametry.\n"
-"Są one w formacie \"nazwa1=wartość1 nazwa2=wartość2 ...\n"
-"Np. \"io=0x300 irq=7\" "
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcje modułu:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Nieudane załadowanie modułu %s.\n"
-"Chcesz spróbować z innymi parametrami?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(już dodano %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Hasło jest zbyt proste"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Proszę podać nazwę użytkownika"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Nazwa użytkownika może składać się tylko z małych liter, cyfr, `-'i `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Ten użytkownik został już dodany"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Dodaj użytkownika"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Podaj dane użytkownika\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Akceptuj użytkownika"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Nazwisko"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Identyfikator:"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Powłoka"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikona"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Automatyczne logowanie"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Można skonfigurować komputer, by automatycznie logował użytkownika\n"
-"w systemie. Jeśli nie chcesz korzystać z tej możliwości, wybierz Anuluj."
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Wybierz domyślnego użytkownika:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Wybierz uruchamiane środowisko graficzne:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Wybierz język używania systemu"
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr ""
-"Możesz wybrać inne języki, które chcesz mieć do dyspozycji po instalacji"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Wszystkie"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Użytkownicy"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Użytkownika"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "Uruchamianie CUPS"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"Ten pakiet musi być uaktualniony.\n"
-"Jesteś pewien, że chcesz go odznaczyć?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Anuluj"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Witajcie, włamywacze"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Zły"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Standardowa"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Wysoki"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Wysoki"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoidalny"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Ten poziom powinien być używany ostrożnie. Co prawda system jest łatwiejszy\n"
-"do używania, ale jest też bardziej wrażliwy i mniej bezpieczny, szczególnie "
-"dla \n"
-"maszyn pracujących w Internecie. Nie ma zabezpieczenia hasłem!"
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Hasła są uaktywnione, ale ciągle nie zalecamy używania komputera\n"
-"w sieci."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"To jest standardowy poziom zabezpieczeń dla komputera, który będzie\n"
-"korzystał z sieci jako klient."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Ten poziom umożliwia użycie komputera jako serwera, który akceptuje\n"
-"połączenia z wieloma klientami przy zachowaniu wysokiego \n"
-"poziomu bezpieczeństwa."
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"To czwarty poziom zabezpieczeń.\n"
-"System jest całkowicie zamknięty, poziom zabezpieczeń jest maksymalny."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Wybierz poziom bezpieczeństwa"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Ustawienie poziomu bezpieczeństwa"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Wybierz opcje serwera"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Witamy w programie wybierajacym system operacyjny- %s\n"
-"\n"
-"Wybierz system operacyjny z listy powyzej lub\n"
-"czekaj %d sekund na domyslny start.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Witamy w programie wybierajacym system - GRUB!"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Uzyj %c i %c klawiszy , aby podswietlic pozycje."
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr ""
-"Nacisnij Enter, aby zaladowac wybrany system operacyjny, `e' aby wyedytowac"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "komendy przed zaladowaniem albo `c' , aby pracowac w linii polecen."
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Podswietlony system zostanie uruchomiony po %d sekundach."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "nie ma już miejsca na /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Pulpit"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Menu startowe"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Gdzie chcesz zainstalować program rozruchowy?"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "brak pomocy.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Konfiguracja sposobu uruchamiania"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Plik"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Plik/Za_kończ"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>k"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Wygląd nowoczesny z kategoriami"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Styl nowoczesny"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Wygląd tradycyjny"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Wygląd tradycyjny Gtk+"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Uaktywnij graficzny start"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Tryb Lilo/Grub"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Tryb Yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"%s jest programem uruchamiającym system (bootloaderem)\n"
-"Wybierz Konfiguruj, by uruchomić kreatora.."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Konfiguruj"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Tryb pracy systemu"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Uruchom X-Window po uruchomieniu"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Nie, nie chcę automatycznego logowania"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Tak, chcę dla tego użytkownika korzystać z automatycznego logowania"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "nie można otworzyć dla odczytu /etc/inittab: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minut"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minuta"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekund"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Nie można dodać więcej partycji"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-"Możesz wybrać inne języki, które chcesz mieć do dyspozycji po instalacji"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Francja"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "belgijski"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-#, fuzzy
-msgid "Germany"
-msgstr "niemiecki"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "grecki"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "norweski"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Patrz"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "włoski"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "szeregowa"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Proszę zacząć od archiwizacji danych"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Czytaj uważnie!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Jeżeli masz zamiar używać aboot pamiętaj, by zostawić, \n"
-"wolne miejsce na początku dysku - wystarczy 2048 sektorów."
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Błąd"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Kreator"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Wybierz czynność"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Na dysku jest jedna wielka partycja FAT.\n"
-"(zazwyczaj używana przez Microsoft Dos/Windows)\n"
-"Należy zacząć od pomniejszenia tej partycji\n"
-"(kliknij na partycji, po czym kliknij na \"Zmień rozmiar\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Proszę kliknąć na partycji"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Szczegóły"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "nieudane montowanie"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Pusta"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Inna"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Typy systemu plików:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Utwórz"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Typ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Użyj zamiast tego ``%s'' "
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Usuń"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Najpierw ``Odmontuj'' "
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "Po zmianie typu partycji %s, wszystkie dane na niej zostaną utracone"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Wybierz czynność"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Utwórz nową partycję"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Przełącz na tryb zaawansowany"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Przełącz na tryb standardowy"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Cofnij"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Kontynuować mimo to?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Wyjście bez zapisywania"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Opuścić program bez zapisywania tablicy partycji?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Chcesz przetestować tą konfigurację?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Rozmieść automatycznie"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Wyczyść wszystko"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Wykrywanie dysków"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Wszystkie partycje podstawowe są używane"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Nie można dodać więcej partycji"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"By mieć więcej partycji, należy usunąć jedną,\n"
-"by było możliwe utworzenie partycji rozszerzonej."
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Zapisz tablicę partycji"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Odzyskaj tablicę partycji"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Odzyskaj tablicę partycji"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Odzyskaj tablicę partycji"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Automatyczne montowanie wyjmowanych dysków"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Wybierz plik"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Zapasowa tablica partycji ma inny rozmiar\n"
-"Kontynuować?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Ostrzeżenie"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Włóż dyskietkę do stacji.\n"
-"Wszystkie dane na niej zostaną utracone"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Próba odzyskania tablicy partycji"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "Obejrzeć informacje"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Punkt montowania"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Opcje"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Zmień rozmiar"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Przesuń"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatuj"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Montuj"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Dodaj do RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Dodaj do LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Odmontuj"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Usuń z RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Usuń z LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Modyfikuj RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Użyj na plikopartycję"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Utwórz nową partycję"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Sektor startowy: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Rozmiar w MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Typ systemu plików: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Punkt montowania: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Preferencja:"
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Formatowanie plikopartycji %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Zmiana typu partycji"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Jakiego systemu plików potrzebujesz?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Przełączenie z ext2 do ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Gdzie chcesz zamontować plikopartycje %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Gdzie chcesz zamontować urządzenie %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Nie można odmontować tej partycji, gdyż jest używana przez plikopartycję.\n"
-"Zacznij od usunięcia plikopartycji."
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Obliczanie granic systemu plików FAT"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Zmiana rozmiaru"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Tej partycji nie można zmniejszyć"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Wszystkie dane na tej partycji powinny zostać zarchiwizowane"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Po zmianie rozmiaru partycji %s, wszystkie dane na niej zostaną utracone"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Określ nowy rozmiar"
-
-#: ../../diskdrake/interactive.pm_.c:622
-#, fuzzy
-msgid "New size in MB: "
-msgstr "Rozmiar w MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Na który dysk chcesz przenieść ?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Na który sektor chcesz przenieść ?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Przenoszenie"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Przenoszenie partycji..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Wybierz istniejący RAID aby dodać do niego"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "nowy"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Wybierz istniejący LVM aby dodać do niego"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "Nazwa LVM?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Na tej partycji nie można założyć plikopartycji"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Plikopartycja"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Nazwa plikopartycji: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Nazwisko"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Plik jest już używany jako plikopartycja, wybierz inny"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Plik już istnieje. Użyć go?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-#, fuzzy
-msgid "Mount options"
-msgstr "Opcje modułu:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "urządzenie"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "poziom"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "rozmiar kawałka"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Uważaj: ta operacja jest niebezpieczna"
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Określ sposób partycjonowania."
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Niestety, nie można utworzyć /boot tak daleko na dysku (poza cylindrem "
-"1024)\n"
-"Albo użyjesz LILO, (nie będzie działać), lub nie będziesz używać lilo\n"
-"i nie potrzebujesz /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Dodałeś partycję root (/) na dysku poza cylindrem 1024, nie ma też\n"
-"partycji /boot. Jeżeli więc chcesz używać programu rozruchowego lilo\n"
-"dodaj partycję /boot poniżej cylindra 1024"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Wybrałeś jako partycję root (/) programowy RAID.\n"
-"Żaden program rozruchowy nie jest w stanie obsłużyć jej bez partycji /boot.\n"
-"Pamiętaj więc o dodaniu partycji /boot."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Tablica partycji napędu %s będzie zapisana na dysk!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Należy zrestartować komputer przed uaktywnieniem zmian"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Po sformatowaniu wszystkie dane na partycji %s, zostaną utracone"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formatowanie"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formatowanie plikopartycji %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formatowanie partycji %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid padł"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Brak wolnego miejsca do stworzenia nowych partycji"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Brak wolnego miejsca do stworzenia nowych partycji"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Rozdzielczość: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Urządzenie: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Dosowy dysk: (przypuszczalnie %s)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Rodzaj: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Nazwa:"
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Początek: sektor %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Rozmiar: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektorów"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cylinder %d do cylindra %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Sformatowana\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Nie sformatowana\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Zamontowano\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Plikopartycje:%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Domyślna partycja startowa\n"
-" (dla startu MS-DOS, nie dla lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Poziom %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Rozmiar kawałka %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Dyski RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Nazwa plikopartycji: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Rozmiar: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometria: %s cylindrów, %s głowic, %s sektorów\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Informacje: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Dyski LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Typ tabeli partycji: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "na szynie %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Opcje: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Typ systemu plików: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "To hasło jest zbyt proste ( musi być co najmniej %d znaków)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Hasła nie zgadzają się"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "Zmiana typu partycji"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Proszę kliknąć na partycji"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "Serwer DNS"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatowania z %s nieudane"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Nie wiadomo jak sformatować %s typu %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck zwróciło kod błędu %d lub sygnał %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "błąd odmontowania %s; %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "proste"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "serwer"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Nie można używać JFS na partycji mniejszej niż 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Nie można używać ReiserFS na partycji mniejszej niż 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Punkty montowania muszą zaczynać się od /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Istnieje partycja z punktem montowania %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Nie możn użyć LVM dla punktu montowania %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Ten katalog powinien być wewnątrz systemu plików / (root)"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Dla tego punktu montowania potrzebujesz porządnego systemu plików (ext2,"
-"reiserfs)\n"
-
-#: ../../fsedit.pm_.c:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Nie możn użyć LVM dla punktu montowania %s"
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Brak wolnego miejsca dla automatycznego rozmieszczenia"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Błąd otwarcia %s do zapisu: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Wystąpił błąd - nie znaleziono urządzeń, na których można utworzyć nowe \n"
-"systemy plików. Sprawdź sprzęt, by wykryć przyczynę"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Nie masz żadnych partycji!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-#, fuzzy
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Powyżej pokazano wykryte na Twoim dysku istniejące partycje linuksowe\n"
-"Możesz zastosować wybór określony przez kreatora, są one odpowiednie\n"
-"w większości przypadków. Jesli chcesz zmienić , musisz określić co najmniej\n"
-"partycję root (\"/\"). Nie wybieraj zbyt małej partycji - nie będziesz mógł "
-"wówczas\n"
-"zainstalować zbyt dużo oprogramowania. Jeśli chcesz trzymać swoje dane na \n"
-"oddzielnej partycji, możesz także wybrać \"/home\" (jest to możliwe tylko, "
-"jeśli\n"
-"masz więcej niż jedną partycję linuksową\n"
-"\n"
-"\n"
-"Dla informacji, każda partycja jest określona przez \"Nazwę\" i \"Rozmiar"
-"\".\n"
-"\n"
-"\n"
-"Nazwa jest określana następująco: \"typ dysku\",\"numer dysku\",\n"
-"\"numer partycji\". (na przykład \"hda1\").\n"
-"\n"
-"\n"
-"\"Typ dysku\" to \"hd\" w przypadku dysków IDE, \"sd\" w przypadku SCSI\n"
-"\n"
-"\n"
-"\"Numer dysku\" to litera po \"hd\" lub \"sd\". W przypadku dysku IDE:\n"
-"\n"
-" * \"a\" oznacza pierwszy dysk na pierwszym kontrolerze IDE\n"
-"\n"
-" * \"b\" oznacza drugi dysk na pierwszym kontrolerze IDE\n"
-"\n"
-" * \"c\" oznacza pierwszy dysk na drugim kontrolerze IDE\n"
-"\n"
-" * \"d\" oznacza drugi dysk na drugim kontrolerze IDE\n"
-"\n"
-"\n"
-"W przyadku dysków SCSI \"a\" oznacza pierwszy dysk twardy,\n"
-"\"b\" - drugi dysk twardy, itd."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-#, fuzzy
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Teraz możesz wybrać usługi, jakie chcesz mieć włączone przy starcie\n"
-"systemu.\n"
-"\n"
-"\n"
-"Jeżeli najedziesz myszą na element listy, to pojawi się mały obłoczek\n"
-"z opisem tej usługi.\n"
-"\n"
-"\n"
-"Zachowaj szczególną ostrożność przy wyborze, jeżeli chcesz używać\n"
-"swojej maszyny jako serwera - niektórych usług nie będziesz chciał\n"
-"uruchamiać. Pamiętaj, że uruchomienie niektórych usług na serwerze\n"
-"może być niebezpieczne.\n"
-"W ogólności, uruchamiaj tylko te usługi, których naprawdę potrzebujesz."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-#, fuzzy
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"W tym etapie instalacji określasz, gdzie na dysku zostanie zainstalowany\n"
-"Mandrake Linux. Jeśli dysk jest pusty lub istniejące systemy operacyjne\n"
-"zajmują całe dostępne miejsce, należy podzielić dysk na partycje\n"
-"Partycjonowanie to po prostu logiczny podział twardego dysku na oddzielne\n"
-"obszary w celu zainstalowania systemu Mandrake Linux\n"
-"\n"
-"\n"
-"Ponieważ efekt partycjonowania jest nieodwracalny, czynność wydaje się\n"
-"straszna i jest stresująca dla niedoświadczonych użytkowników.\n"
-"Kreator ten upraszcza ten proces, tak więc nie się czego obawiać,\n"
-"tym niemniej warto poświęcić nieco czasu na wcześniejsze\n"
-"zapoznanie się z dokumentacją\n"
-"\n"
-"\n"
-"Niezbędne są co najmniej 2 partycje: jedna dla systemu operacyjnego\n"
-"oraz druga na pamięć wirtualną (swap).\n"
-"\n"
-"\n"
-"Jeśli partycje tes już zostały utworzone (w czasie poprzedniej instalacji\n"
-"lub przy pomocy innego narzędzia), należy je wybrać do zainstalowania\n"
-"systemu Linux\n"
-"\n"
-"\n"
-"Jeśli partcje te nie istnieją , należy je utworzyć.\n"
-"By to zrobić, użyj powyższego kreatora. Możliwych jest kilka rozwiązań\n"
-"zależnych od konfiguracji dysku twardego:\n"
-"\n"
-"* Użycie istniejących partycji: gdy kreator wykryje jedną lub więcej "
-"istniejących partycji linuksowych,\n"
-" wybierz to rozwiązanie, jeśli chcesz użyć te partycje na nową "
-"instalację.\n"
-"\n"
-"\n"
-"* Skasowanie zawartości całego dysku: Jeśli chcesz skasować ze swojego\n"
-"dysku wszystkie dane i wszystkie partycje\n"
-" i zastąpić nowym systemem Mandrake Linux, wybierz to rozwiązanie. Pamiętaj,"
-"w tym przypadku nie\n"
-" nie ma możliwości odwrotu po potwierdzeniu wyboru.\n"
-"\n"
-"\n"
-"* Użyj wolnego miejsca na partycji Windows: Jeśli na dysku jest "
-"zainstalowany\n"
-"Microsoft Windows i zajmuje \n"
-" całe dostępne miejsce,możliwe jest utworzenie wolnego miejsca dla Linuksa. "
-"By to zrobić, można skasować \n"
-" partycję Windows wraz z danymi (patrz \"Wymaż cały dysk\" lub \"Tryb "
-"eksperta\") lub zmienić\n"
-" rozmiar partycji Windows. Zmiana rozmiaru jest realizowana bez\n"
-"utraty żadnych danych. \n"
-" To rozwiązanie jest zalecane, jeśli chcesz używać zarówno Linuksa-"
-"Mandrake, jak i Windows\n"
-"\n"
-"\n"
-" Należy pamiętać, że w ten sposób partycja Windows będzie mniejsza niż do "
-"tej pory. Oznacza to\n"
-" mniej wolnego miejsca na dane oraz instalację nowych programów\n"
-"\n"
-"\n"
-"* Tryb eksperta: wybierz tą opcję, jeśli chcesz partycjonować swój dysk "
-"ręcznie.Pamiętaj!\n"
-" Wybranie tej opcji daje Ci duże możliwości, lecz jest bardzo niebezpieczne."
-"Bardzo łatwo można utracić wszystkie dane\n"
-" Nie wybieraj więc tej opcji, jeśli naprawdę nie wiesz, co robisz!"
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-#, fuzzy
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Wszystkie nowo powstałe partycje muszą zostać sformatowane przed\n"
-"wykorzystaniem (formatowanie oznacza utworzenie systemu plików).\n"
-"\n"
-"\n"
-"Można teraz także powtórnie sformatować istniejące już partycje, by\n"
-"usunąć znajdujące się na nich dane. Jeśli chcesz to zrobić, zaznacz\n"
-"partycje do sformatowania\n"
-"\n"
-"\n"
-"Pamiętaj, że nie jest konieczne formatowanie wszystkich istniejących już\n"
-"partycji. Należy sformatować partycje zawierające system operacyjny:\n"
-"\"/\", \"/usr\" oraz \"/var\", nie jest natomiast konieczne formatowanie\n"
-"partycji zawierających dane, które chcesz zachować (zazwyczaj /home).\n"
-"Uważnie wybieraj partycje do sformatowania, po sformatowaniu wszystkie\n"
-"dane zostaną utracone bez możłiwości ich odzyskania.\n"
-"\n"
-"\n"
-"Wybierz \"OK\", jeśli jesteś już gotowy do formatowania partycji.\n"
-"\n"
-"\n"
-"Wybierz \"Anuluj\", jeśli chcesz wybrać do zainstalowania\n"
-"Linuksa-Mandrake inne partycje."
-
-#: ../../help.pm_.c:404
-#, fuzzy
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Trwa instalacja systemu operacyjnego Mandrake Linux.\n"
-"Zabierze to trochę czasu (w zależności od ilości wybranych pakietów\n"
-"oraz szybkości komputera)\n"
-"\n"
-"\n"
-"Bądź cierpliwy."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-#, fuzzy
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"W tym etapie instalacji wybierasz partycje, na których będzie instalowany\n"
-"Mandrake Linux, jeśli istnieją, np. pozostały po poprzedniej instalacji,\n"
-"lub też zostały założone innym narzędziem. W przeciwnym razie należy je\n"
-"utworzyć. Operacja ta polega na logicznym podziale dysku twardego komputera\n"
-"na na oddzielne obszary\n"
-"\n"
-"\n"
-"Utworzenie partycji należy rozpocząć od wybrania dysku. Robi się to przez\n"
-"kliknięcie na zakładce \"hda\" dla pierwszego dysku IDE, \"hdb\" dla "
-"drugiego,\n"
-"lub \"sda1\" dla pierwszego dysku SCSI, itd.\n"
-"\n"
-"\n"
-"W celu podzielenia dysku na partycje można użyć następujących opcji:\n"
-"\n"
-" * Wyczyść wszystko: ta opcja kasuje wszystkie partycje na wybranym "
-"dysku.\n"
-"\n"
-"\n"
-" * Rozmieść automatycznie: ta opcja automatycznie tworzy partycje ext2\n"
-" oraz swap na wolnym (niespartycjonowanym) miejscu dysku\n"
-"\n"
-"\n"
-" * Odzyskaj tablicę partycji: jeśli tablica partycji jest uszkodzona, "
-"można\n"
-" spróbować ją odzyskać przy pomocy tej opcji. Bądź ostrożny i pamiętaj,\n"
-"że ta opcja może zawieść\n"
-"\n"
-"\n"
-" * Cofnij: użyj tej opcji by anulować zmiany.\n"
-"\n"
-"\n"
-" * Przeładuj: użyj tej opcji, jeśli chcesz cofnąć wszystkie zmiany i "
-"załadować\n"
-" początkową tablicę partycji\n"
-"\n"
-"\n"
-" * Kreator: Możesz użyć kreatora, który pomoże Ci podzielić dysk na "
-"partycje\n"
-" Zalecane, jeśli niewiele wiesz o podziale na partycje.\n"
-"\n"
-"\n"
-" * Przywróć z dyskietki: jeśli podczas poprzedniej instalacji zapisałeś "
-"tabelę\n"
-" partycji na dyskietce, możesz odzyskać ją korzystając z tej opcji.\n"
-"\n"
-"\n"
-" * Zapisz na dyskietkę: Możesz zapisać na dyskietkę tablicę partycji, by "
-"mieć\n"
-" możliwość jej odzyskania w przypadku pomyłki\n"
-" Użycie tej opcji jest bardzo zalecane\n"
-"\n"
-"\n"
-" * Zrobione: po zakończeniu partycjonowania dysku użyj tej opcji do "
-"zapisania\n"
-" na dysku zmian.\n"
-"\n"
-"\n"
-" Możesz wybrać odpowiednią opcję używając klawisza \n"
-"TAB i strzałek góra/dół klawiatury. \n"
-"\n"
-"\n"
-"Po wybraniu partycji możesz nacisnąć:\n"
-"\n"
-" * Ctrl-c by utworzyć nową partycję ( jeżeli został wybrany pusty "
-"obszar\n"
-"\n"
-" * Ctrl-d by usunąć partycję\n"
-"\n"
-" * Ctrl-m by określić punkt montowania"
-
-#: ../../help.pm_.c:513
-#, fuzzy
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Na dysku wykryto więcej niż jedną partycję Windows. Wybierz, którą\n"
-"z nich chcesz zmniejszyć w celu zainstalowania Mandrake Linux\n"
-"\n"
-"\n"
-"Dla informacji, każda partycja jest określona przez\n"
-" \"Nazwę linuksową\", \"Nazwę Windows\" i \"Rozmiar\".\n"
-"\n"
-"\n"
-"Nazwa linuksowa jest określana następująco: \"typ dysku\",\"numer dysku\",\n"
-"\"numer partycji\". (na przykład \"hda1\").\n"
-"\n"
-"\n"
-"\"Typ dysku\" to \"hd\" w przypadku dysków IDE, \"sd\" w przypadku SCSI\n"
-"\n"
-"\n"
-"\"Numer dysku\" to litera po \"hd\" lub \"sd\". W przypadku dysku IDE:\n"
-"\n"
-" * \"a\" oznacza pierwszy dysk na pierwszym kontrolerze IDE\n"
-"\n"
-" * \"b\" oznacza drugi dysk na pierwszym kontrolerze IDE\n"
-"\n"
-" * \"c\" oznacza pierwszy dysk na drugim kontrolerze IDE\n"
-"\n"
-" * \"d\" oznacza drugi dysk na drugim kontrolerze IDE\n"
-"\n"
-"\n"
-"W przyadku dysków SCSI \"a\" oznacza pierwszy dysk twardy,\n"
-"\"b\" - drugi dysk twardy, itd.\n"
-"\n"
-"\"Nazwa Windows\" to litera dysku pod Windows (pierwszy dysk \n"
-"lub partycja to \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Bądź cierpliwy. Ta operacja może potrwać kilkanaście minut."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Wybierz \"Instalacja\" jeśli nie masz zainstalowanej starszej wersji\n"
-"Mandrake Linux, lub jeśli chcesz używać wielu dystrybucji lub wersji.\n"
-"\n"
-"\n"
-"Wybierz \"Aktualizacja\" jeśli chcesz zaktualizować już zainstalowaną wersję "
-"Mandrake Linux:\n"
-"\n"
-"\n"
-"W zależności od poziomu Twojej znajomości GNU/Linuksa możesz wybrać jeden z "
-"następujących sposobów instalacji\n"
-" lub aktualizacji systemu operacyjnego Mandrake Linux.\n"
-"\n"
-"* Zalecany: Jeśli nie instalowałeś GNU/Linuksa nigdy wcześniej, wybierz ten "
-"sposób instalacji,\n"
-" jest bardzo prosty, odpowiesz na kilka prostych pytań\n"
-"\n"
-"\n"
-"* Użytkownika: Jeśli jesteś obeznany z GNU/Linux, możesz określić podstawowe "
-"zastosowanie komputera. (stacja robocza, serwer\n"
-" programowanie). Odpowiesz także na więcej pytań, niż przy sposobie "
-"instalacji \"Zalecany\".\n"
-" tak więc powinieneś trochę znać GNU/Linuksa, by wybrać ten "
-"rodzajinstalacji\n"
-"\n"
-"\n"
-"* Ekspert: Jeśli dobrze znasz GNU/Linuksa, wybierz ten sposób instalacji "
-"Podobnie jak w instalacji \"Użytkownika\", będziesz mógł określić podstawowe "
-"zastosowanie komputera. Przemyśl,\n"
-" czy na pewno chcesz wybrać ten rodzaj instalacji. Będziesz mógł "
-"przeprowadzić bardzo zindywidualizowaną instalację, lecz\n"
-" odpowiedź na niektóre pytania może być bardzo trudna bez dobrej znajomości "
-"GNU/Linuksa.\n"
-" Nie wybieraj więc tego rodzaju instalacji, jeśli nie jesteś pewien."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-#, fuzzy
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Wybierz właściwy port. Na przykład COM1 z MS Windows\n"
-"w GNU/Linux nazywa się ttyS0."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO ( LInux LOader ) i Grub to programy rozruchowe: potrafią uruchomić\n"
-"GNU/Linux lub inny system operacyjny, zainstalowany na twoim komputerze.\n"
-"Zazwyczaj inne istniejące w komputerze systemy są prawidłowo wykrywane\n"
-"i instalowane. Jeżeli tak nie jest, powinieneś \"ręcznie\" wprowadzić\n"
-"odpowiednie dane. Uważnie wybieraj właściwe parametry.\n"
-"\n"
-"\n"
-"Możesz oczywiście również uniemożliwić dostęp do nich przy starcie przez \n"
-"usunięcie ich z listy. W tej sytuacji musisz jednak posiadać dyskietki\n"
-"startowe, by je uruchomić."
-
-#: ../../help.pm_.c:722
-#, fuzzy
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Powinieneś wskazać, gdzie chcesz\n"
-"umieścić informacje wymagane do uruchomienia GNU/Linuxa\n"
-"\n"
-"\n"
-"Jeśli nie wiesz dokładnie, co robisz, wybierz\n"
-" \"Pierwszy sektor na dysku (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"Instalator spróbuje wykryć kontroler(y) SCSI na magistrali PCI.\n"
-"Jeśli je odnajdzie i rozpozna, które sterowniki należy użyć\n"
-"załaduje je automatycznie.\n"
-"\n"
-"Jeśli posiadasz kontroler SCSI ISA, lub PCI, ale instalator nie\n"
-"wykryje sterownika do niego, zostaniesz zapytany, czy w Twoim\n"
-"systemie istnieje kontroler SCSI. Jeśli nie masz żadnego, odpowiedz\n"
-"\"Nie\", jeśli masz jeden lub więcej, odpowiedz \"Tak\". Ukaże się\n"
-"wówczas lista sterowników, z której należy wybrać właściwy.\n"
-"\n"
-"\n"
-"Po wybraniu sterownika, instalator spyta Cię, czy chcesz określić\n"
-"opcje dla niego. Pozwól sterownikowi automatycznie wykryć \n"
-"ustawienia, zazwyczaj działa to dobrze\n"
-"\n"
-"\n"
-"Jeśli nie, podaj sterownikowi opcje znalezione w dokumentacji,\n"
-"na stronie producenta sprzętu (jeśli masz dostęp do Internetu)\n"
-"lub takie, jak w Windows (jeśli je posiadasz). Podręcznik instalacji\n"
-"pomoże Ci odnaleźć potrzebne parametry."
-
-#: ../../help.pm_.c:784
-#, fuzzy
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"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 video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-"\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."
-
-#: ../../help.pm_.c:830
-#, fuzzy
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"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."
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-#, fuzzy
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Wybierz dysk, który chcesz wykasować, by założyć na nim\n"
-"partycje Mandrake Linux. Pamiętaj, że wszystkie dane z tego\n"
-"dysku zoastaną utracone bez możliwości odzyskania."
-
-#: ../../help.pm_.c:896
-#, fuzzy
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Wybierz \"OK\", jeśli chcesz usunąć dane na wszystkich partycjach\n"
-"istniejących na dysku. Pamiętaj, po wybraniu \"OK\", nie będzie\n"
-"możliwe odzyskanie żadnych danych z partycji (także Windows)\n"
-"\n"
-"\n"
-"Wybierz \"Anuluj\", by anulować tą operację bez utraty danych."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Wybrano następujące serwery: %s\n"
-"\n"
-"\n"
-"Będą one domyślnie uruchamiane. Nie zawierają one żadnych znanych błędów\n"
-"związanych z bezpieczeństwem, lecz mogą one zostać w przyszłości ujawnione.\n"
-"W takiej sytuacji należy dokonać jak najszybszego uaktualnienia.\n"
-"\n"
-"\n"
-"Czy na pewno chcesz zainstalować te serwery?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Nie używaj rozgłaszania przy braku domeny NIS"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Włóż sformatowaną (FAT) dyskietkę do stacji %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Ten dysk nie jest sformatowany."
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"By użyć zapisanej listę pakietów, należy uruchomić instalację z opcją "
-"''linux defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Błąd odczytu pliku %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Część sprzętu w Twoim komputerze wymaga \"firmowych\" sterowników.\n"
-"Więcej informacji na ten temat uzyskasz z %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Musisz mieć partycję root.\n"
-"W tym celu, utwórz partycję ( lub kliknij na istniejącą),\n"
-"następnie Wybierz \"Punkt montowania\" `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Musisz mieć partycję wymiany (swap)"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Nie masz partycji swap\n"
-"\n"
-"Kontynuować mimo to?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Musisz mieć partycję FAT zamontowaną w /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Wykorzystaj wolne miejsce"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Brak wolnego miejsca do stworzenia nowych partycji"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Użyj istniejącej partycji"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Brak istniejących partycji do wykorzystania"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Wykorzystaj miejsce na partycji Windows na plikopartycję"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Którą partycję chcesz użyć dla Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Określ rozmiary"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Rozmiar partycji root w MB:"
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Rozmiar partycji swap w MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Wykorzystaj wolne miejsce na partycji Windows"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Którą partycję chcesz zmniejszyć?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Obliczanie granic systemu plików Windows"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Program zmniejszający partycję FAT nie potrafi obsłużyć\n"
-"Twojej partycji. Wystąpił następujący błąd: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr "Twoja partycja Windows jest zbyt sfragmentowana, uruchom \"defrag\""
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"OSTRZEŻENIE!\n"
-"\n"
-"Instalator zmieni teraz rozmiar partycji Windows.\n"
-"Uważaj, jest to niebezpieczne. Jeśli wcześniej tego nie zrobiłeś,\n"
-"należy przerwać instalację, wrócić do Windows, zeskanować\n"
-"i zdefragmentować dysk po czym powtórnie uruchomić instalację. \n"
-"Warto również zarchiwizować dane na dysku.\n"
-"Jeśli jesteś pewny, wybierz OK."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Jaki ma być docelowy rozmiar partycji Windows?"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "partycja %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Zmiana rozmiaru partycji FAT nie powiodła się: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Nie ma partycji FAT do zmiany rozmiaru lub użycia jako plikopartycjęn(lub "
-"brak wolnego miejsca)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Wymaż cały dysk"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Usuń Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"Masz więcej niż 1 dysk twardy, na którym z nich chcesz zainstalować linuxa?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"WSZYSTKIE istniejące partycje i dane na nich zostaną usunięte z dysku %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Zaawansowany podział na partycje"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Użyj fdiska"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Możesz teraz tworzyć partycje %s \n"
-"Gdy skończysz, pamiętaj o zapisaniu używając `w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Masz za mało wolnego miejsca na partycji Windows"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Brak miejsca na instalację"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Kreator podziału na partycje proponuje następujące rozwiązania:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partycjonowanie nie powiodło się: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Uruchamianie sieci"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Zatrzymywanie sieci"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Wystąpił jakiś błąd. Nie można poprawnie go obsłużyć\n"
-"Kontynuuj na własną odpowiedzialność."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Powielony punkt montowania %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Pewne istotne pakiety nie zostały poprawnie zainstalowane.\n"
-"Prawdopodobnie uszkodzona jest płyta lub napęd CDROM.\n"
-"Sprawdź płytę w innym komputerze używając polecenia:\n"
-"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Witamy w %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Niedostępna stacja dyskietek"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Przechodzę do kroku `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Twój system ma mało zasobów. Mogą wystąpić problemy z instalacją.\n"
-"Jeśli tak się stanie, spróbuj instalacji w trybie tekstowym.\n"
-"By ją uruchomić, naciśnij F1 podczas startu z CD i wpisz \"text\"."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Klasa instalacji"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Wybierz jedną z następujących klas instalacji:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Całkowity rozmiar dla wybranych grup to około %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Jeżeli chcesz zainstalować mniej,\n"
-"podaj procentowo rozmiar, który możesz przeznaczyć na instalację.\n"
-"Mały procent spowoduje instalację tylko najważniejszych pakietów,\n"
-"100%% spowoduje zainstalowanie wszystkich wybranych pakietów."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Masz miejsce na dysku tylko na %d%% pakietów.\n"
-"\n"
-"Jeśli chcesz zainstalować mniej, określ procentowo, ile pakietów\n"
-" chcesz zainstalować. Mały procent spowoduje instalację tylko\n"
-"najważniejszych pakietów,\n"
-"Wybór %d%% spowoduje zainstalowanie tylu pakietów ile się da."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "W następnym kroku można będzie wybrać bardziej precyzyjnie"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procent pakietów do instalacji"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Wybór grup pakietów"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Samodzielny wybór pakietów"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Całkowity rozmiar: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Pakiet uszkodzony"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Nazwa: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Wersja: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Rozmiar: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Ważność: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Nie możesz wybrać tego pakietu. Nie ma już miejsca, by go zainstalować"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Zostaną zainstalowane następujące pakiety"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Zostaną usunięte następujące pakiety"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Nie można zmienić statusu tego pakietu."
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Ten pakiet jest konieczny, nie można go pominąć"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Nie można odznaczyć tego pakietu. Został już zainstalowany."
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Ten pakiet musi być uaktualniony.\n"
-"Jesteś pewien, że chcesz go odznaczyć?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Nie można odznaczyć tego pakietu. Musi zostać zamieniony na nowszy"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Pokaż automatycznie wybrane pakiety"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Instalacja"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Odczytaj/Zapisz na dyskietkę"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Uaktualnianie listy wybranych pakietów"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Minimalna instalacja"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Wybierz pakiety do zainstalowania"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Instalowanie"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Szacowanie"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Pozostało czasu "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Proszę czekać, trwa przygotowywanie instalacji"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pakietów"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Instalowanie pakietu %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Akceptuj"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Odrzuć"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Zmień płytę CD!\n"
-"\n"
-"Włóż płytę zatytułowaną \"%s\" do kieszeni czytnika i naciśnij Ok.\n"
-"Jeśli jej nie masz, naciśnij Anuluj, by ominąć instalację pakietów z niej"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Kontynuować?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Wystąpił błąd porządkowania pakietów:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Wystąpił błąd podczas instalowania pakietów:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Wystąpił błąd"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Chcesz zrestartować sieć?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Umowa licencyjna"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Klawiatura"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Wybierz układ klawiatury."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Oto lista dostępnych układów klawiatury"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Określ klasę instalacji"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Instalacja/Uaktualnienie"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Czy to instalacja, czy uaktualnienie?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Zalecana"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Dla eksperta"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Uaktualnienie"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Uaktualnianie listy wybranych pakietów"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Wybierz typ myszy."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Port myszy"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Do którego portu szeregowego jest podłączona mysz?"
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Emulacja przycisków"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emulacja 2 przycisku"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emulacja 3 przycisku"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfiguracja kart PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Konfiguracja IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "brak dostępnych partycji"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Przeszukiwanie partycji w celu określenia punktów montowania"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Wybierz punkty montowania"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Nie można odczytać tablicy partycji, jest zbyt uszkodzona :(\n"
-"Można kontynuować USUWAJĄC WSZYSTKIE DANE\n"
-"Innym rozwiązaniem jest zabronienie instalatorowi modyfikowania tabeli "
-"partycji\n"
-" (wystąpił błąd: %s)\n"
-"\n"
-"Czy zgadzasz się na utratę wszystkich partycji?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"Instalator nie może odczytać poprawnie tablicy partycji.\n"
-"Kontynuuj na własną odpowiedzialność!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Brak wolnej przestrzeni na 1MB bootstrap. Instalacja będzie kontynuowana,\n"
-"lecz należy utworzyć partycję bootstrap."
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr ""
-"Nie znaleziono partycji root, na której można przeprowadzić aktualizację"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Partycja root"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Która partycja jest w Twoim systemie partycją root (/)"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Należy zrestartować komputer w celu uaktywnienia zmian w tablicy partycji"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Wybierz partycje do sformatowania"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Sprawdzić fizycznie partycje?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formatowanie partycji"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Tworzenie i formatowanie plikopartycji %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Wielkość partycji wymiany jest niewystarczająca, należy ją zwiększyć"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Wyszukiwanie dostępnych pakietów"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Wyszukiwanie pakietów do uaktualnienia"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr "Zbyt mało miejsca na instalację lub uaktualnienie (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Pełna (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimalna (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Zalecana (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Proszę wybrać odczytanie lub zapis listy wybranych pakietów\n"
-"na dyskietkę. Format jest identyczny z dyskiem automatycznej\n"
-"instalacji."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Odczytaj z dyskietki"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Odczytywanie z dyskietki"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Wybór pakietów"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Włóż dyskietkę zawierającą listę wybranych pakietów"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Zapisz na dyskietkę"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Wybrany rozmiar przekracza dostępne miejsce"
-
-#: ../../install_steps_interactive.pm_.c:671
-#, fuzzy
-msgid "Type of install"
-msgstr "Wybierz pakiety do zainstalowania"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-#, fuzzy
-msgid "With X"
-msgstr "Czekaj"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Jeżeli masz wszystkie płyty CD z listy, kliknij Ok.\n"
-"Jeżeli nie masz żadnej z płyt z listy, kliknij Anuluj.\n"
-"Jeżeli niektórych płyt z listy nie masz, odznacz je i kliknij Ok."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM oznaczony \"%s\" "
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Przygotowywanie instalacji"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Instalowanie pakietu %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Konfiguracja poinstalacyjna"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Włóż dyskietkę startową do stacji %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Włóż dyskietkę z uaktalnionymi modułami do stacji %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Masz teraz możliwość pobrania z sieci oprogramowania, służącego do "
-"szyfrowania\n"
-"\n"
-"OSTRZEŻENIE:\n"
-"Z powodu różnych ograniczeń prawnych mających zastosowanie do \n"
-"tego oprogramowania, Klient lub (i) użytkownik powinien być pewien,\n"
-"że przepisy go dotyczące pozwalają na kopiowanie, przechowywanie\n"
-"i używanie tego oprogramowania.\n"
-"\n"
-"Dodatkowo klient lub (i) użytkownik, powinien być ostrzeżony,\n"
-"aby nie złamać praw obowiązujących w jego jurysdykcji.\n"
-"Jeżeli klient lub (i) użytkownik nie przestrzegałby obowiązujących \n"
-"go przepisów, mogą dotknąć go poważne sankcje.\n"
-"\n"
-"Ani Mandrakesoft ani jego producenci lub dostawcy nie są odpowiedzialni\n"
-"za jakiekolwiek celowe, przypadkowe lub pośrednie szkody\n"
-"powstałe z używania, posiadania lub tylko zainstalowania oprogramowania,\n"
-"do którego klient lub (i) użytkownik będzie miał dostęp po wyrażeniu \n"
-"zgody na powyższe zastrzeżenia .\n"
-"Wszystkie zapytania, dotyczące niniejszego uzgodnienia proszę kierować do:\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Łączenie z mirrorem - pobieranie listy dostępnych pakietów"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Wybierz mirror, z którego chcesz pobrać pakiety"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Łączenie z mirrorem - pobieranie listy dostępnych pakietów"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Wybierz swoją strefę czasową."
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Ustawienie zegar sprzętowego na czas GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatyczna synchronizacja czasu (przy użyciu NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "Serwer NTP"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Zdalny serwer CUPS"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Brak drukarki"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Masz inne?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Różne"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Mysz"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Strefa czasowa"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Drukarka"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "Karta ISDN"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Karta dźwiękowa"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "Karta TV"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Pliki lokalne"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Hasło roota"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Bez hasła"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "To hasło jest zbyt proste ( musi być co najmniej %d znaków)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autentykacja"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Autentykacja LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "Serwer LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "Autentykacja NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "Domena NIS"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "Serwer NIS"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Dysk startowy umożliwia uruchomienie systemu Linux niezależnie od "
-"normalnego\n"
-"programu rozruchowego. Jest użyteczny, jeśli nie chcesz instalować SILO,\n"
-"lub SILO w Twoim systemie nie działa oraz jeśli inny system operacyjny\n"
-"usunął SILO. Dysk użytkownika można także używać z obrazem ratunkowym,\n"
-"ułatwiając naprawienie systemu w przypadku awarii.\n"
-"Jeśli chcesz utworzyć dysk startowy dla swojego systemu, włóż dyskietkę\n"
-"do stacji i wybierz \"OK\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Pierwsza stacja dyskietek"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Druga stacja dyskietek"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Pomiń"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Dysk startowy umożliwia uruchomienie systemu Linux niezależnie od\n"
-"normalnego programu rozruchowego. Jest użyteczny, jeśli nie chcesz\n"
-"instalować LILO/Grub, lub programy te w Twoim systemie nie działają\n"
-"oraz jeśli inny system operacyjny usunął LILO/grub.\n"
-"Dysku tego można także używać z obrazem ratunkowym,\n"
-"ułatwiając naprawienie systemu w przypadku awarii.\n"
-"Czy chcesz dla swojego systemu utworzyć dysk startowy?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Niestety, stacja dyskietek jest niedostępna."
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
-"Wybierz stację dyskietek, której użyjesz do stworzenia dysku startowego"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Włóż dyskietkę do stacji %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Tworzenie dysku startowego"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Przygotowanie programu rozruchowego"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Czy chcesz używać aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Błąd podczas instalowania aboot. \n"
-"Wymusić instalację, nawet gdyby groziło to zniszczeniem pierwszej partycji?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Program rozruchowy"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr ""
-"Instalacja programu rozruchowego nie powiodła się. Wystąpił następujący błąd:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, fuzzy, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"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."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Włóż pustą dyskietkę do stacji %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Tworzenie dyskietki automatycznej instalacji"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Pewne etapy instalacji nie zostały zakończone\n"
-"\n"
-"Czy na pewno chcesz teraz zakończyć?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Gratulacje, instalacja została zakończona.\n"
-"Usuń płytę i (lub) dyskietkę z napędów i naciśnij enter, by zrestartować.\n"
-"\n"
-"\n"
-"Informacje o poprawkach dotyczących tej wersji Mandrake Linux\n"
-"znajdziesz na stronach\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Informacje o konfiguracji systemu znajdują się\n"
-"w Oficjalnym Podręczniku Użytkownika Mandrake Linux."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Tworzenie dyskietki automatycznej instalacji"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"Automatyczna instalacja może być, jeśli jest taka potrzeba\n"
-"przeprowadzona w sposób całkowicie samodzielny.\n"
-"Zajmie ona wówczas cały dysk,\n"
-"co ma znaczenie przy instalacj na innym komputerze.\n"
-"\n"
-"Można zażyczyć sobie odtworzenia instalacji.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automatyczna"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Odtwórz ponownie"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Zapisz listę wybranych pakietów"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Instalacja Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> między element. | <Spacja> wybór | <F12> następny ekran "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "brakuje kdesu"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Wybierz czynność"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Zaawansowane"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Proszę czekać"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informacje"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Rozwiń drzewo"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Zwiń drzewo"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Przełącz między płaskim i grupowym sortowaniem"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Zły wybór, spróbuj ponownie\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Twój wybór? (domyślnie %s)"
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Twój wybór? (domyślnie %s)"
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Opcje: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "Czy chcesz używać aboot?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Twój wybór? (domyślnie %s)"
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "czeski (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "niemiecki"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvoraka"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "hiszpański"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "fiński"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "francuski"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "norweski"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "polski"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "rosyjski"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "szwedzki"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "angielski"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "amerykański"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "albański"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "armeński (stary)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "armeński - fonetyczny"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "armeński - fonetyczny"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "azerski (latin)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "belgijski"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "armeński - fonetyczny"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "bułgarski"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "brazylijski(ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "białoruski"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "szwajcarski (układ niemiecki)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "szwajcarski (układ francuski)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "czeski (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "niemiecki ( bez martwych klawiszy)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "duński"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvoraka (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvoraka (norweski)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvoraka (US)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "estoński"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "gruziński (układ rosyjski)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "gruziński (układ łaciński)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "grecki"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "węgierski"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "chorwacki"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "izraelski"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "izraelski (fonetyczny)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Irański"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "islandzki"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "włoski"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "japoński 106 klawiszy"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "koreański"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "latyno-amerykański"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "litewski AZERTY"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "litewski AZERTY"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "litweski QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "litewski QWERTY - fonetyczny"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Lokalizacja"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Macedońska"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "holenderski"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "polski (programisty)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "polski (maszynistki)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "portugalski"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "kanadyjski (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "rumuński (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "rumuński (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "rosyjski (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "słoweński"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "słowacki (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "słowacki (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "azerski (cyrilic)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Tabela"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "tajski"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "tajski"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "turecki"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "turecki (nowy)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "ukraiński"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "amerykański (międzynarodowy)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "wietnamski QWERTY"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "jugosłowiański - (łaciński/cyrylica)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Zapętlone montowanie %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Zacznij od usunięcia logicznych dysków (LV)\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Mysz Sun"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Mysz standardowa PS/2 z kółkiem"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1-przyciskowa"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Mysz standardowa 2-przyciskowa"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Standardowa"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "z kółkiem"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "szeregowa"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Mysz standardowa 3-przyciskowa"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech seria CC"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "Seria MM"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet (szeregowy)"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Mysz Logitech (szeregowa, stary typ C7)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2-przyciskowa"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3-przyciskowa"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "brak"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Brak myszy"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Przetestuj mysz"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "By uaktywnić mysz,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "RUSZ KÓŁKIEM!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Zakończ"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Dalej ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Poprzedni"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Działa prawidłowo?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Połączenie z Internetem"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Njabardziej typowym sposobem połączenia przez ADSL jest ppoe.\n"
-"Istenieją jednak połączenia używające pptp oraz nieliczne - dhcp.\n"
-"Jeśli nie wiesz, wybierz \"użyj pppoe\""
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "użyj dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "użyj pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "użyj pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Jaki program klienta DHCP chcesz użyć?\n"
-"Domyślnym jest dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Nie wykryto w systemie karty sieciowej.\n"
-"Nie można skonfigurować tego typu połączenia."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Wybierz interfejs sieciowy"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Proszę wybrać kartę sieciową którą chcesz użyć do połączenia z Internetem"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "nie znaleziono karty sieciowej"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Konfiguracja sieci"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Proszę wpisać nazwę komputera, jeśli ją znasz\n"
-"Niektóre z serwerów DHCP wymagają jej do działania.\n"
-"Nazwa ta powinna być w postaci pełnej,\n"
-"np. \"mojkomputer.mojadomena.pl\"."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Nazwa komputera"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Kreator konfiguracji sieci"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Zewnętrzny modem ISDN"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Wewnętrzna karta ISDN"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Określ rodzaj połączenia ISDN"
-
-#: ../../network/isdn.pm_.c:45
-#, fuzzy
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Jaki sposób konfiguracji ISDN preferujesz?\n"
-"\n"
-"* Stary sposób konfiguracji przy użyciu isdn4net. Wykorzystuje narzędzia\n"
-"o dużych możliwościach, lecz jest niestandardowy i podstępny dla "
-"początkujących\n"
-"\n"
-"* Nowy sposób konfiguracji jest łatwiejszy do zrozumienia, bardziej "
-"standardowy,\n"
-"lecz daje mniej narzędzi.\n"
-"\n"
-"Zalecany jest nowy sposób konfiguracji.\n"
-"\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Nowa konfiguracjia (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Stara konfiguracji (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Konfiguracja ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Wybierz swojego dostawcę Internetu.\n"
-"Jeśli nie ma go na liście, wybierz \"Unlisted\""
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol"
-msgstr "Protokół uruchamiania"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Europa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "Reszta świata"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Reszta świata \n"
-" bez kanału D (linie dzierżawione)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Jakiego protokołu chcesz użyć?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Jaki rodzaj karty posiadasz?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Nie wiem"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Jeśli posiadasz kartę ISA, wartości na następnym ekranie\n"
-"powinny być odpowiednie\n"
-"Jeśli posiadasz kartę PCMCIA, powinieneś znać IRQ i IO swojej karty.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Przerwij"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Kontynuuj"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Wybierz swoją kartę ISDN"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Wykryto kartę ISDN PCI nieznanego typu. Proszę wybrać jedną z listy na "
-"kolejnym ekranie."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Nie wykrytą żadnej karty ISDN PCI. Proszę wybrać jedną z listy na kolejnym "
-"ekranie."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Wskaż port szeregowy, do którego podłączony jest modem."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Opcje dzwonienia"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Nazwa połączenia"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Numer telefonu"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Identyfikator"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Oparta o skrypt"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Poprzez terminal"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Domena"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Pierwszy serwer DNS (opcjonalnie)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Drugi serwer DNS (opcjonalnie)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Możesz rozłączyć się lub zrekonfigurować połączenie."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Możesz zrekonfigurować połączenie."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Jesteś już połączony z Internetem."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Możesz połączyć się z Internetem lub zrekonfigurować połączenie."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Nie jesteś teraz połączony z Internetem."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Połącz"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Rozłącz"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Konfiguracja sieci"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Internet - połaczenie i konfiguracja"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Będziemy teraz konfigrować połączenie %s."
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Będziemy teraz konfigurować połączenie %s.\n"
-"\n"
-"\n"
-"By rozpocząć, naciśnij Dalej."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Konfiguracja sieci"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Ponieważ przeprowadzasz instalację przez sieć, jest ona już skonfigurowana.\n"
-"Wybierz OK by zachować konfigurację, lub Anuluj by ponownie skonfigurować "
-"sieć/połączenie z Intenetem.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Witaj w Kreatorze Konfiguracji Sieci\n"
-"\n"
-"Służy on do konfiguracji połączenia z Intenetem lub inną siecią.\n"
-"Jeśli nie chcesz korzystać z autodetekcji, odznacz to pole.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Wybierz profil do konfiguracji"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Użyj autodetekcji"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Wykrywanie urządzeń..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Połączenie modemowe"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "wykryto na porcie %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "Połączenie ISDN"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "wykryto %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "Połączenie ADSL"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "wykryto na interfejsie %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Połączenie przez kablówkę"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "wykryto połączenie przez kablówkę"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Sieć lokalna"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "wykryto kartę(y) ethernet"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Wybierz połączenie, które chcesz skonfigurować"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Skonfigurowano różne sposoby połączenia z Internetem.\n"
-"Wybierz ten, z którego chcesz korzystać.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Połączenie z Internetem"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Czy chcesz łączyć się Internetem przy uruchamianiu komputera?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Konfiguracja sieci"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Wystąpił problem podczas restartowania sieci: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Gratulacje, konfiguracja sieci i Internetu została zakończona.\n"
-"\n"
-"Zostanie teraz zapisana w twoim systemie.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Po zakończeniu zalecane jest zrestartowanie X w celu ominięcia\n"
-"problemu wynikającego ze zmianą nazwy hosta."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"OSTRZEŻENIE: Urządzenie to zostało poprzednio skonfigurowane do połączenia z "
-"Internetem.\n"
-"Naciśnij po prostu OK by zachować konfigurację.\n"
-"Modyfikacja pól poniżej spowoduje nadpisanie istniejącej konfiguracji."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Proszę podać konfigurację IP dla komputera.\n"
-"Każda pozycja powinna być wpisana w zapisie dziesiętnym\n"
-"oddzielonym kropkami (np. 192.168.1.1)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfiguracja urządzenia sieciowego %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (sterownik %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "Adres IP"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Maska"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Automatyczne IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Adres IP powinien być w formacie typu 192.168.1.1"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Proszę wpisać nazwę komputera.\n"
-"Nazwa ta powinna być w postaci pełnej,\n"
-"np. \"mojkomputer.mojadomena.pl\".\n"
-"Jeśli jest to potrzebne, należy wpisać też adres routera."
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "Serwer DNS"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Interfejs (np. eth0)"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Konfiguracja pośrednika (proxy)"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "Pośrednik HTTP"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "Pośrednik FTP"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Nazwa pośrednika powinna być typu: http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Nazwa pośrednika powinna być typu: ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Internet - konfiguracja"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Czy chcesz teraz spróbować połączyć się Internetem?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Testowanie połączenia..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Jesteś teraz połączony z Internetem."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Ze względu na bezpieczeństowo połączenie zostanie teraz rozłączone."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Połączenie z Internetem nie udało się.\n"
-"Spróbuj zmienić konfigurację połączenia."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Konfiguracja połączenia"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Wypełnij lub zaznacz pole poniżej"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ karty"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "DMA karty"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO karty"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_0 karty"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 karty"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Numer Twojego telefonu"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Nazwa dostawcy usług (np. Dialog, Netia, TPSA)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Numer telefonu dostawcy usług"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "1 DNS dostawcy (opcjonalnie)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "2 DNS dostawcy (opcjonalnie)"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "Wybór klawiatury"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Sposób wybierania"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Szybkość połączenia"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Czas połączenia:"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Konto (nazwa użytkownika)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Hasło:"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "nieudane montowanie: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Na tej platformie nie istnieją partycje rozszerzone"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"W tablicy partycji jest puste miejsce pomiędzy partycjami, którego\n"
-"nie można wykorzystać. Jedynym rozwiązaniem jest przesunięcie\n"
-"partycji podstawowych, by puste miejsce było obok partycji rozszerzonych"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Przywracanie z pliku %s nie powiodło się: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Uszkodzony plik archiwum"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Błąd zapisu do pliku %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Z Twoim dyskiem dzieje się coś niedobrego. \n"
-"Nie powiódł się test spójności danych. \n"
-"Oznacza to, że zapisanie czegokolwiek na dysku może się źle skończyć"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "musisz mieć"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "ważny"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "bardzo fajny"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "fajny"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "taki sobie"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Drukarka lokalna"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Drukarka sieciowa"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Zdalny serwer CUPS"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "Sieciowy serwer lpd"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Drukarka sieciowa (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Serwer wydruku"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "Port drukarki URI:"
-
-#: ../../printer.pm_.c:55
-#, fuzzy
-msgid "Pipe job into a command"
-msgstr "Potok do polecenia"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Drukarka lokalna"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Drukarka sieciowa"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Błąd zapisu do pliku %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, fuzzy, c-format
-msgid ", using command %s"
-msgstr "Potok do polecenia"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(moduł %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP serwera CUPS"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Domyślne)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Wybierz sposób podłączenia drukarki"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Jak jest podłączona drukarka?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"Korzystając z sieciowego serwera CUPS nie musisz tutaj\n"
-"konfigurować żadnych drukarek; zostaną one automatycznie\n"
-"wykryte, chyba że znajduje się on w innej sieci, w tym przypadku\n"
-"należy podać adres serwera CUPS oraz opcjonalnie numer portu."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Konfiguracja sieci lokalnej"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Zdalny serwer CUPS"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "Adres IP powinien być w formacie typu 192.168.1.1"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-#, fuzzy
-msgid "The port number should be an integer!"
-msgstr "Numer portu powinien być liczbą"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP serwera CUPS"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Port"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Konfiguracja sposobu uruchamiania"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Wykrywanie urządzeń..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Testowanie portów"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Dodaj drukarkę"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Drukarka lokalna"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Drukarka sieciowa"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Użyj autodetekcji"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Drukarka sieciowa"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "wykryto %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Port drukarki URI:"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Drukarka lokalna"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Wskaż port szeregowy, do którego podłączony jest modem."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Port drukarki URI:"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Konfiguracja kolorów"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Instalowanie pakietu %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Instalowanie pakietu %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "Odczytywanie bazy sterowników CUPS..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-#, fuzzy
-msgid "Reading printer database ..."
-msgstr "Odczytywanie bazy sterowników CUPS..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Opcje drukarki sieciowej lpd"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"By używać kolejki drukarki sieciowej lpd należy podać\n"
-"nazwę serwera wydruku oraz nazwę kolejki na\n"
-"serwerze, do której kierowane będą zadania wydruku."
-
-#: ../../printerdrake.pm_.c:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "Nazwa serwera:"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Drukarka sieciowa"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Nazwa serwera: brak nazwy!"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Nazwa serwera: brak nazwy!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opcje drukarki SMB (Windows 9x/NT)"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"By drukować na drukarce SMB, musisz określić nazwę serwera SMB\n"
-"(nie zawsze jest ona równoznaczna z nazwą TCP/IP), o ile możliwe\n"
-"adres IP serwera wydruku,nazwę użytkownika, grupę, hasło oraz\n"
-"oczywiście nazwę drukarki."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Nazwa serwera SMB"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP serwera SMB"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Nazwa drukarki"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Grupa"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Należy podac nazwę serwera lub jego adres IP!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Brakuje nazwy udziału Samby!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Opcje drukarki NetWare"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"By drukować na drukarce NetWare, należy podać nazwę serwera\n"
-"wydruku NetWare (nie zawsze to samo co nazwa TCP/IP!),\n"
-"nazwę kolejki drukarki, do której chcesz uzyskać dostęp,\n"
-"oraz właściwą nazwę użytkownika i hasło."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Serwer wydruku"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Nazwa kolejki drukarki"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "Brakuje nazwy serwera NCP!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "Brakuje nazwy kolejki NCP!"
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Opcje drukarki sieciowej"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"By drukować na drukarce sieciowej, należy podać\n"
-"nazwę sieciową drukarki oraz opcjonalnie numer portu."
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "Nazwa sieciowa drukarki"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Brakuje nazy drukarki sieciowej!"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Port drukarki URI:"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "A valid URI must be entered!"
-
-#: ../../printerdrake.pm_.c:1004
-#, fuzzy
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Każda drukarka musi mieć nazwę (na przykład lp).\n"
-"Pola Opis i Lokalizacja nie muszą byc wypełniane.\n"
-"Są to komentarze dla użytkowników."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Nazwa drukarki"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Opis"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Lokalizacja"
-
-#: ../../printerdrake.pm_.c:1021
-#, fuzzy
-msgid "Preparing printer database ..."
-msgstr "Odczytywanie bazy sterowników CUPS..."
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Drukarka sieciowa"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Działa prawidłowo?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Drukarka sieciowa"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Wybór modelu drukarki"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Jaki model drukarki posiadasz?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Internet - konfiguracja"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Internet - konfiguracja"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, fuzzy, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Port musi być dodatnią liczbą całkowitą!"
-
-#: ../../printerdrake.pm_.c:1521
-#, fuzzy, c-format
-msgid "Option %s must be a number!"
-msgstr "Port musi być dodatnią liczbą całkowitą!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Czy chcesz wydrukować stronę testową?"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "Testowanie portów"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "Drukarka"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Standardowa"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "Drukowanie stron/y testowych/ej"
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "Drukowanie stron/y testowych/ej"
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Drukowanie stron/y testowych/ej"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Drukowanie stron/y testowych/ej"
-
-#: ../../printerdrake.pm_.c:1635
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Strona testowa została wysłana do demona drukowania.\n"
-"Może chwilę potrwać, zanim pojawi się wydruk\n"
-"Status drukowania:\n"
-"%s\n"
-"\n"
-"Czy wydruk jest prawidłowy?"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Strona testowa została wysłana do demona drukowania.\n"
-"Może chwilę potrwać, zanim pojawi się wydruk\n"
-"Czy wydruk jest prawidłowy?"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Brak drukarki"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zamknij"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Zatrzymywanie sieci"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Zatrzymywanie sieci"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Opcje drukarki"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Internet - konfiguracja"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"Nazwa drukarki powinna zawierać tylko litery, cyfry i znak podkreślenia"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "Brak drukarki"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "Odczytywanie bazy sterowników CUPS..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "Konfiguracja Lilo/Grub"
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Otwieranie połączenia..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Konfiguracja sieci"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Nie skonfigurowano monitora"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Konfiguracja sieci"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Jakiego systemu wydruku zamierzasz używać?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Wysoki"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Paranoidalny"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Jakiego systemu wydruku zamierzasz używać?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Wybierz system wydruku"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Jakiego systemu wydruku zamierzasz używać?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Konfiguracja drukarki"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Instalowanie pakietu %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Opcje drukarki"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Konfiguracja drukarki"
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Czy chcesz skonfigurować drukowanie?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Drukarka"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Istnieją następujące kolejki wydruku.\n"
-"Możesz dodać następne lub zmienić istniejące."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Istnieją następujące kolejki wydruku.\n"
-"Możesz dodać następne lub zmienić istniejące."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Konfiguracja sieci"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Tryb zwykły"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Chcesz przetestować tą konfigurację?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Internet - konfiguracja"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Chcesz przetestować tą konfigurację?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Połączenie z Internetem"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Wybór modelu drukarki"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "Drukowanie stron/y testowych/ej"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Chcesz przetestować tą konfigurację?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Drukarka sieciowa"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Drukarka sieciowa"
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Drukarka lokalna"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Chcesz zrestartować sieć?"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Drukarka sieciowa"
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Konfiguracja pośrednika (proxy)"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Narzędzie do konfiguracji pośrednika.\n"
-"\n"
-"Pozwala na skonfigurowanie pośredników http oraz ftp\n"
-"z (lub bez) nazwą użytkownika oraz hasłem\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Proszę wprowadzić dane pośrednika http ,\n"
-"lub pozostawić puste, jeśli z niego nie korzystasz"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "port"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "URL powinien zaczynać się od: http://..."
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Numer portu powinien być liczbą"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Proszę wprowadzić dane pośrednika ftp ,\n"
-"lub pozostawić puste, jeśli z niego nie korzystasz"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "URL powinien zaczynać się od: ftp://..."
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Proszę podać nazwę użytkownika pośrednika\n"
-"oraz hasło lub pozostawić pola puste"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "Nazwa użytkownika"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "hasło"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "Powtórz hasło"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Hasła nie zgadzają się. Spróbuj ponownie!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Nie można dodać partycji do sformatowanego RAID md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Nie można zapisać pliku %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid padł"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid padł ( może brak raidtools)?"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Za mało partycji dla RAID poziom %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Uruchamia podsystem dźwięku ALSA (Advanced Linux Sound Architecture)"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron - program uruchamiający okresowo zadania."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"Apmd przekazuje przez syslog informacje o stanie akumulatorów.\n"
-"Umożliwia także zamknięcie systemu, gdy są one zbyt wyładowane."
-
-#: ../../services.pm_.c:18
-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 ""
-"Uruchamia o określonym czasie programy zaplanowane do wykonania komendą \"at"
-"\"\n"
-"oraz wykonuje zadania wsadowe, gdy obciążenie systemu jest niewielkie."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"Cron jest standardowym programem unixowym, który zarządza wykonywaniem\n"
-"programów użytkownika w określonych przez niego porach."
-
-#: ../../services.pm_.c:23
-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 umożliwia posługiwanie się myszą w aplikacjach,\n"
-"pracujących pod konsolą Linuxa jak np. Midnigth Commander.\n"
-"Umożliwia operacje Wytnij-Wklej oraz wybór opcji poprzez wyskakujące menu."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake przeprowadza wykrywanie sprzętu oraz opcjonalnie \n"
-"konfiguruje nowy lub zmieniony sprzęt."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache to serwer WWW. Jest używany do udostępniania plików \n"
-"HTML i CGI w Internecie/Intranecie."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Internetowy (super)demon, zwany inetd startuje wiele usług internetowych,\n"
-"takich jak telnet, ftp, rsh i rlogin.\n"
-" Wyłączenie go uniemożliwia korzystanie z tych usług."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Uruchomienie filtrowania pakietów dla kernela Linuxa w wersji 2.2\n"
-"zabezpiecza komputer przed atakiem z sieci."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Ten pakiet ładuje wybrane mapowania klawiatury, zgodnie z zawartością\n"
-"pliku /etc/sysconfig/keyboard. Mogą one być przełączane przy pomocy\n"
-"narzędzia kbdconfig. Powinien być uruchomiony w większości przypadków."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Automatyczna regenracja nagłówków kernela w /boot\n"
-"dla /usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Automatyczne wykrywanie i konfiguracja sprzętu przy uruchomieniu"
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"LinuxConf umożliwia przeprowadzenie podczas uruchamiania\n"
-"różnych zadań związanych z konserwacją systemu."
-
-#: ../../services.pm_.c:43
-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 to demon, konieczny do prawidłowego działania lpr,a przez to całego \n"
-"systemu drukowania."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Wirtualny Serwer linuxowy używane jest przy tworzeniu bardzo wydajnych\n"
-"serwerów o dużej niezwodności."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"Named (BIND) to DNS -czyli serwer, umożliwiający tłumaczenie\n"
-"nazw komputerów na ich adresy IP."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Montuje i odmontowuje wszystkie punkty zamontowania systemów plików \n"
-"NFS ( sieciowe systemy plików), SMB {LAN Manager/Windows} i NCP ( NetWare)."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Włącza/wyłącza skonfigurowane interfejsy sieciowe\n"
-"podczas uruchamiania systemu."
-
-#: ../../services.pm_.c:52
-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 jest popularnym protokołem udostępniania plików w sieci TCP/IP.\n"
-"Ta usługa uruchamia konfigurowany przez plik /etc/exports serwer NFS."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS jest popularnym protokołem udostępniania plików w sieci TCP/IP.\n"
-"Ta usługa umożliwia działanie w NFS funkcji blokowania plików."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Automatycznie włacza klawiaturę numeryczną przy uruchamianiu \n"
-"w trybie konsoli oraz graficznym."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-"Zapewnia obsługę drukarek OKI dla Windows\n"
-"oraz kompatybilnych windrukarek."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"PCMCIA używany jest zwykle do obsługi kart ethernetowych i modemów\n"
-"w laptopach. Nie jest uruchamiany, jeżeli się go nie skonfiguruje\n"
-"a więc bezpiecznie może być instalowany nawet na maszynach, które go nie \n"
-"potrzebują."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Portmapper zarządza połączeniami RPC, używanymi przez protokoły takie, jak\n"
-"NFS i NIS. Jeżeli Twoja maszyna jest serwerem dla protokołów, które \n"
-"wykorzystują RPC, należy go uruchomić na starcie."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix to agent pocztowy (MTA),\n"
-"przesyłający pocztę między maszynami."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr "Polepsza generację liczb pseudolosowych."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Przypisuje \"surowe\" urządzenia do urządzeń blokowych\n"
-"(np dysków) dla aplikacji typu Oracle"
-
-#: ../../services.pm_.c:71
-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 ""
-"Demon routed aktualizuje automatycznie tablicę routingu IP wykorzystując\n"
-"stosowany w małych sieciach protokół RIP. W większych sieciach stosuje\n"
-"się bardziej złożone protokoły routingu."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Protokół rstat umożliwia użytkownikowi sieci monitorowanie \n"
-"wydajności innych maszyn w sieci."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Protokół rusers pozwala na sprawdzanie, kto jest zalogowany na innych,\n"
-"dostępnych maszynach w sieci."
-
-#: ../../services.pm_.c:78
-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 ""
-"Protokół rwho działa jak who ( podaje listę użytkowników) dla innych maszyn "
-"w sieci.\n"
-"które mają włączony demon rwho (podobny do finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Uruchamia podsystem dźwięku w komputerze"
-
-#: ../../services.pm_.c:81
-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 to narzędzie, pozwalające różnym demonom na\n"
-"dokonywanie wpisów do różnych plików \"dziennikowych\" ( log files).\n"
-"Jego uruchomienie jest zalecane."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Ładuje sterowniki urządzeń USB."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Uruchamia serwer czcionek (konieczny do działania XFree)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Wybierz usługi automatycznie uruchamiane podczas startu"
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Drukarka"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Tryb pracy systemu"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Opcje drukarki sieciowej lpd"
-
-# ../../share/compssUsers
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Bazy danych"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "urządzenie"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "uruchomione"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "zatrzymane"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Usługi i demony"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Niestety brak dodatkowych informacji\n"
-"o tej usłudze."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Przy uruchamianiu"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Status:"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Sektor"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Reszta świata"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Dostęp do Internetu"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedia - Grafika"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Programowanie"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Centrum Sterowania"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Interfejs sieciowy"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "Nazwa serwera SMB"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Gry"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Dla eksperta"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-#, fuzzy
-msgid "MandrakeStore"
-msgstr "niezbędny"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Instalowanie pakietu %s"
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Nie można odczytać tablicy partycji, jest zbyt uszkodzona :(\n"
-"Można próbować kontynuować z pustymi partycjami"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Błąd"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Konfiguracja poinstalacyjna"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Konfiguracja sposobu uruchamiania"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Gratulacje!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Instalacja"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Użytkownicy"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Formatowanie plikopartycji %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Uszkodzony plik archiwum"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Uszkodzony plik archiwum"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Uszkodzony plik archiwum"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Wybór pakietów"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Wybierz pakiety do zainstalowania."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Usuń kolejkę"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Usuń Windows(TM)"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Identyfikator:"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Przetestuj mysz"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Proszę spróbować ponownie"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Proszę spróbować ponownie"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "Powtórz hasło"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Sieć lokalna"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Wybierz sposób podłączenia drukarki"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Wybierz układ klawiatury."
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Proszę kliknąć na partycji"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Wybierz pakiety do zainstalowania."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Uszkodzony plik archiwum"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Przetestuj mysz"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Uszkodzony plik archiwum"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Interfejs sieciowy"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Identyfikator:"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Wybierz pakiety do zainstalowania."
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Wybierz język używania systemu"
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Użyć optymalizacji dysku?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Użyć optymalizacji dysku?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-#, fuzzy
-msgid "What"
-msgstr "Czekaj"
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "z kółkiem"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "z kółkiem"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Opcje modułu:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Konfiguracja sieci"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Wybierz pakiety do zainstalowania."
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Wybierz pakiety do zainstalowania."
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Systemy plików"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Opcje"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Wskaż port szeregowy, do którego podłączony jest modem."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Konfiguracja sieci"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Uszkodzony plik archiwum"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Wybierz typ myszy."
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Uszkodzony plik archiwum"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Przywróć z dyskietki"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Wybierz typ myszy."
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Inna"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Instalacja pakietów"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Przywróć z pliku"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Przywróć z pliku"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Użytkownika"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/Pomo_c"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- Poprzedni"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Status:"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Uszkodzony plik archiwum"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Przywróć z pliku"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Tekst"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Wybór pakietów"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Wybierz język używania systemu"
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Wybierz język używania systemu"
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Wybierz język używania systemu"
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Uszkodzony plik archiwum"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Uszkodzony plik archiwum"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Uszkodzony plik archiwum"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Zapisz do pliku"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Przetestuj mysz"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Wybierz pakiety do zainstalowania."
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Konfiguracja sieci"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Konfiguracja sieci"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Konfiguracja sieci lokalnej"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Konfiguracja sieci lokalnej"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Systemy plików"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Instalacja %s nie powiodła się. Wystąpił następujący błąd:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "nie znaleziono %s "
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Zrobione"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Formatuj dyskietkę"
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Przygotowywanie instalacji"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "ograniczenie"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Formatowanie"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-#, fuzzy
-msgid "Uninstall Fonts"
-msgstr "Oddnstalowanie pakietów"
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Konfiguracja sieci lokalnej"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Punkt montowania"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Wybierz partycje do sformatowania"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Biuro"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Przerwij"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Drukarka"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Instalacja pakietów"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Wybierz plik"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Drukarka sieciowa"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
-msgid "Initials tests"
-msgstr "Komunikat startowy"
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Nie wykryto w systemie karty sieciowej!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Instalacja"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Nie wykryto w systemie karty sieciowej!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Wyjście z instalacji"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Współdzielenie połączenia z Internetem"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Współdzielenie połączenia z Internetem jest włączone"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Konfiguracja współdzielenia połączenia z Internetem została już wykonana.\n"
-"Jest teraz uaktywniona.\n"
-"\n"
-"Co chcesz zrobić?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "wyłączyć"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "zwolnić"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "rekonfigurować"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Wyłączenie serwerów..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Współdzielenie połączenia z Internetem jest wyłączone."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Współdzielenie połączenia z Internetem jest wyłączone"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Konfiguracja współdzielenia połączenia z Internetem została już wykonana.\n"
-"Usługa ta jest teraz wyłączona.\n"
-"\n"
-"Co chcesz zrobić?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "włączyć"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Włączenie serwerów..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Współdzielenie połączenia z Internetem jest teraz włączone"
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Można skonfigurować komputer jako współdzielący połączenie z Internetem\n"
-"Ta usługa pozwala innym komputerom w sieci lokalnej na używanie połączenia\n"
-"tego komputera z Internetem.\n"
-"\n"
-"Uwaga: wymagana jest dedykowana karta sieciowa włączająca komputer w sieć "
-"lokalną (LAN)"
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interfejs %s (moduł %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Interfejs %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Nie wykryto w systemie karty sieciowej!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Nie wykryto w systemie karty sieciowej. Proszę uruchomić program "
-"konfiguracji sprzętu."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Interfejs sieciowy"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"W Twoim systemie istnieje tylko jedna skonfigurowana karta sieciowa:\n"
-"\n"
-"%s\n"
-"\n"
-"Można skonfigurować sieć lokalną (LAN) przy wykorzystaniu tej karty."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Wskaż, która karta sieciowa będzie połączona\n"
-"z siecią lokalną (LAN)."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Nie skonfigurowano monitora"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Konfiguracja sposobu uruchamiania"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Internet - konfiguracja"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "IP serwera CUPS"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"W bieżącej konfiguracji wykryto możliwy konflikt adresów sieciowych: %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Wykryto konfigurację firewalla!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Ostrzeżenie! Została wykryta istniejąca konfiguracja firewalla. Może być "
-"konieczne dokonanie kilku ręcznych poprawek po instalacji. Kontynuować?"
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Konfiguracja..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Konfiguracja skryptów, instalowanie programów, uruchamianie serwerów..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemy z instalacją pakietu %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Wszytko zostało skonfigurowane.\n"
-"Możesz udostępniać połączenie z Internetem innym komputeremw sieci lokalnej, "
-"używając automatycznej konfiguracji sieci (DHCP)"
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-"Konfiguracja współdzielenia połączenia została już wykonana, lecz usługa ta "
-"jest teraz wyłączona."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-"Konfiguracja współdzielenia połączenia z Internetem została już wykonana "
-"jest włączona"
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Współdzielenie połączenia z Internetem nie było jeszcze konfigurowane."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Konfiguracja współdzielenia połączenia z Internetem"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Witaj w konfiguratorze współdzielenia połączenia z Internetem!\n"
-"\n"
-"%s\n"
-"\n"
-"Wybierz Konfiguruj, by uruchomić kreatora.."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Konfiguracja sieci (%d karty)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Usuń profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil do usunięcia:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nowy profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nazwa komputera:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Dostęp do Internetu"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Rodzaj: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Router:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfejs:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfiguracja dostępu do Internetu..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Konfiguracja sieci lokalnej"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Sterownik"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfejs"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokół"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Konfiguracja sieci lokalnej..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Kreator..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Zastosuj"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Proszę czekać... ładowanie konfiguracji"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Połączony"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nie połączony"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Połącz..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Rozłącz..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nie skonfigurowano jeszcze żadnego interfejsu.\n"
-"Zacznij konfigurację przez kliknięcie na \"Konfiguruj\""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Konfiguracja sieci lokalnej"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Karta %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protokół uruchamiania"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Uruchamiany przy starcie"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Klient DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Uaktywnij"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Uaktywnij"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nie skonfigurowano jeszcze żadnego połączenia z Internetem.\n"
-"Rozpocznij konfigurację przez kliknięcie na \"Konfiguruj\""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfiguracja połączenia z Internetem"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfiguracja połączenia z Internetem"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Rodzaj połączenia:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametry"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Router"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Karta ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Klient DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Ustawienie poziomu bezpieczeństwa"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Centrum Sterowania"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Wybór używanych narzędzi"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "kanadyjski (Quebec)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "Europa"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "islandzki"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "Europa"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "szeregowa"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "użycie: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Wybierz układ klawiatury."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Czy chcesz używać BackSpace zamiast Delete dla konsoli?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Zmiana CD-ROM"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Włóż płytę Installation CD-Rom do kieszeni czytnika i naciśnij Ok.\n"
-"Jeśli jej nie masz, naciśnij Anuluj, by ominąć uaktualnienie."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Nie można uruchomić uaktualnienia!!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Plik/_Nowy"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Plik/_Otwórz"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Plik/Zapi_sz"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Plik/Z_apisz jako"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Plik/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Opcje"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Opcje/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/Pomo_c"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Pomoc/O _programie"
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Identyfikator:"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "Komunikat startowy"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Ustawienia"
-
-#: ../../standalone/logdrake_.c:191
-#, fuzzy
-msgid "matching"
-msgstr "Komputer:"
-
-#: ../../standalone/logdrake_.c:192
-#, fuzzy
-msgid "but not matching"
-msgstr "Komputer:"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Konfiguracja Lilo/Grub"
-
-#: ../../standalone/logdrake_.c:406
-#, fuzzy
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Narzędzie do konfiguracji pośrednika.\n"
-"\n"
-"Pozwala na skonfigurowanie pośredników http oraz ftp\n"
-"z (lub bez) nazwą użytkownika oraz hasłem\n"
-
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache oraz Pro-ftpd"
-
-#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "shadow"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "interesujący"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "Formatowanie"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Konfiguracja kolorów"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr ""
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Wybierz typ myszy."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "nie znaleziono serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Emulować środkowy przycisk?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Wybierz kartę graficzną"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Urządzenie startowe"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Konfiguracja zapory sieciowej"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Konfiguracja zapory sieciowej"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Zapora sieciowe\n"
-"\n"
-"Jest już skonfigurowana.\n"
-"Wybierz Konfiguruj, by zmienić lub usunąc jego konfigurację"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Zapora sieciowa\n"
-"\n"
-"Wybierz Konfiguruj, by ustawić standardową zaporę sieciową"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Wybór języka"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Rodzaj instalacji"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Wykrywanie dysków"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Konfiguracja myszy"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Wybór klawiatury"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Bezpieczeństwo"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Systemy plików"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formatowanie"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Wybór pakietów"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Instalacja pakietów"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Użytkownicy"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Konfiguracja sieci"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Konfiguracja usług"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Program rozruchowy"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Dysk startowy"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Konfiguracja X"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Instalacja pakietów"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Wyjście z instalacji"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Konfiguracja zapory sieciowej\n"
-"\n"
-"Narzędzie to umożliwia konfgurację prostej zapory sieciowej.\n"
-"Jeśli potrzebujesz silnego dedykowanego rozwiązania,\n"
-"skorzystaj z dystrybucji Mandrake Security Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Zostanie zadane kilka pytań dotyczących usług, które chcesz\n"
-"udostępniać w Internecie. Przemyśl odpowiedzi na te pytania,\n"
-"ponieważ bezpieczeństwo komputera w sieci jest ważne.\n"
-"\n"
-"Pamiętaj, wyłącz usługi, z których teraz nie korzystasz.\n"
-"Możesz w dowolnej chwili zmienić konfigurację powtórnie\n"
-"uruchomiając ten program!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Czy uruchamiono na tym komputerze serwer WWW, który ma być dostępny\n"
-"z Internetu?. Jeśli uruchomiono serwer, który ma być dostępny tylko z tego\n"
-"komputera, możesz spokojnie odpowiedzieć tutaj NIE.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Czy uruchomiono serwer nazw (DNS)?\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Czy chcesz umożliwić nawiązywanie przychodzących połączeń ssh?\n"
-"Ssh to następca telneta używany do logowania. Jeśli używasz jeszcze "
-"telneta,\n"
-"należy ostatecznie przejść na ssh, ponieważ telnet nie jest szyfrowany,\n"
-"co daje możliwość podsłuchania hasła i włamania się do systemu."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Czy chcesz umożliwić nawiązywanie przychodzących połączeń telnet?\n"
-"Jest to bardzo niebezpieczne, sugerujemy by odpowiedzieć NIE\n"
-"i używać zamiast telneta ssh.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Czy uruchomiono dostępny z Internetu serwer FTP?. Jeśli tak, zalecamy\n"
-"używanie go tylko do anonimowych transferów, ponieważ FTP także nie\n"
-"szyfruje przesyłanych haseł.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Czy uruchomiono serwer pocztowy?. Jeśli wysyłasz pocztę\n"
-"korzystając z tekstowych programów typu pine czy mutt\n"
-"serwer pocztowy prawdopodobnie jest uruchomiony.\n"
-"Jeśli nie, należy zablokować tą usługę.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Czy uruchomiono serwer POP lub IMAP? Używany jest on do zdalengo\n"
-"odbioru poczty z kont pocztowych założonych na tym komputerze\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Wygląda na to, że uruchomiony jest kernel serii 2.2. \n"
-"Jeśli Twój adres IP jest przyznawany automatycznie,\n"
-"przez inny komputer w biurze lub domu należy na to\n"
-"pozwolić. Jak jest w tym przypadku?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Czy Twój komputer synchronizuje czas z innego komputera?\n"
-"Najczęściej jest to wykorzystywane w dużych i średnich\n"
-"organizacjach do synchronizacji czasu dla logowania.\n"
-"Jeśli nie słyszałeś o tym, prawdopodobnie nie potrzebujesz\n"
-"tej usługi."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Zakończono konfigurację. czy zapisać zamiany na dysk?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Nie można otworzyć %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Błąd otwarcia %s do zapisu: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-msgid "Firewall Configuration Wizard"
-msgstr "Kreator konfiguracji zapory sieciowej"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Proszę czekać, trwa przygotowywanie instalacji"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "WWW,/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Komputer sieciowy (klient)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "Serwery NFS, SMB, SSH, oraz Proxy"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Biuro"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Stacja robocza z Gnome"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Narzędzia do Palm Pilota lub Visior"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Stacja robocza"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Zapora sieciowa/Router"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Serwer systemu DNS"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Programy biurowe: procesory tekstu (kword, abiword), arkusze kalkulacyjne "
-"(kspread, gnumeric), przeglądarki pdf, itp."
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Dzwięk: odtwarzacze mp3 i midi, miksery, itp."
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Podręczniki i HOWTO o Linuksie i wolnym oprogramowaniu"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Stacja robocza z KDE"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, itp"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedia - Video"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Zestawy narzędzi dla poczty, WWW, transferu plików i chat"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Bazy danych"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Serwery baz danych PostgreSQL lub MySQL"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Narzędzia ułatwiające konfigurację komputera"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedia - Dźwięk"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Narzędzia"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentacja"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Narzędzia dla konsoli"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Serwer pocztowy Postfix, serwer grup dyskusyjnych Inn"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Korzystanie z Internetu"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Korzystanie z multimediów"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "Konfiguracja sieci lokalnej"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Więcej pulpitów graficznych (Gnome, IceWM)"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"KDE - podstawowe środowisko graficzne wraz z zestawem towarzyszących narzędzi"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Środowisko graficzne"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache oraz Pro-ftpd"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Narzędzia do tworzenia i nagrywania CD"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Komputer biurowy"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Serwer"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, itp."
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Programy graficzne, np. Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Biblioteki do programowania w C i C++ , programy i pliki nagłówkowe"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Serwer sieciowy"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Pocza/Narzędzia pracy grupowej/News"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Komputer do gier"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Odtwarzacze i edytory video"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimedia - Grafika"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Programy rozrywkowe: zręcznościowe, planszowe, strategiczne, itp."
-
-# ../../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 ""
-"Zestaw narzędzi do czytania i wysyłania poczty i grup dyskusyjnych (pin, "
-"mutt, tin) oraz przeglądania sieci Web"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archiwizacja, emulatory, monitorowanie"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Finanse osobiste"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Środowisko graficzne z przyjaznymi dla użytkownika zestawami aplikacji i "
-"narzędzi"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Programy klientów dla różnych protokołów, w tym ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Bramka do Internetu"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programy do odtwarzania/edycji dźwięku i video"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Inne pulpity graficzne"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "editory, powłoki, narzędzia plikowe, terminale"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programy do zarządzania finansami, np gnucash"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Zarządzanie osobistymi informacjami"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedia - Nagrywanie płyt CD"
-
-# ../../share/compssUsers
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Stacja robocza dla naukowca"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Przerwij"
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Żaden"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Wybierz domyślnego użytkownika:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Drukarka sieciowa"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Możesz teraz określić parametry modułu %s."
-
-#~ msgid "Low"
-#~ msgstr "Niski"
-
-#~ msgid "Medium"
-#~ msgstr "Średni"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Parę ulepszeń dla tego poziomu zabezpieczeń: więcej komunikatów i testów."
-
-#~ msgid "mount failed"
-#~ msgstr "nieudane montowanie"
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimedia"
-
-#~ msgid "Boot mode"
-#~ msgstr "Tryb uruchamiania"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Dla eksperta"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux korzysta z czasu GMT \"Czas uniwersalny Greenwich\", tłumacząc "
-#~ "go\n"
-#~ "na czas lokalny odpowiednio do wybranej strefy czasowej."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Połącz z Internetem"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Rozłącz połączenie z Internetem"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfiguracja połączenia z siecią (LAN lub Internet)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Na który dysk chcesz przenieść ?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Wybierz pakiety do zainstalowania."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Informacje"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Stacja robocza z Gnome"
-
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "Użytkownik:"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Wybierz typ myszy."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Zakończ"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Automatyczne montowanie wyjmowanych dysków"
-
-#~ msgid "Active"
-#~ msgstr "Uaktywnij"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Nie"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Wykryto drukarkę model \"%s\" na"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Port lokalnej drukarki"
-
-#~ msgid "Printer Device"
-#~ msgstr "Port drukarki:"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "Brak nazwy urządzenia/pliku!"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Zdalny serwer CUPS"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Zdalny serwer CUPS"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Tryb pracy systemu"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Inna"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Wybierz układ klawiatury."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Proszę kliknąć na partycji"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Rodzaj: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Uszkodzony plik archiwum"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Konfiguracja X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Port drukarki:"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Anuluj"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ok"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Zamknij"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "toot"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Otwieranie połączenia..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Zamykanie połączenia..."
-
-#~ 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 ""
-#~ "Połączenie nie zostało zamknięte.\n"
-#~ "Spróbuj zrobić to ręcznie przez uruchomienie\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "jako root."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "System jest teraz rozłączony."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Określ rozmiar przeznaczony na instalację"
-
-#~ msgid "Total size: "
-#~ msgstr "Całkowity rozmiar: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Proszę czekać, "
-
-#~ msgid "Total time "
-#~ msgstr "Całkowity czas "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Wykorzystać istniejącą konfigurację X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Do jakiego portu jest podłączona drukarka?\n"
-#~ "(pamiętaj, że /dev/lp0 to odpowiednik LPT1:)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Uwaga, karta sieciowa została już skonfigurowana. Zostanie "
-#~ "zrekonfigurowana."
-
-#~ msgid "New"
-#~ msgstr "Nowy"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Kolejka sieciowa"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Proszę kliknąć na partycji"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Niejednoznaczny (%s), sprecyzuj\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr "? (domyślnie %s)"
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Twój wybór? (domyślnie %s, wpisz \"none\" dla żadnego) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "nie można otworzyć do odczytu /etc/sysconfig/autologin: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Chcesz zrestartować sieć?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Zgadzasz się?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Należy zrestartować interfejs:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Należy zrestartować urządzenie %s. Zgadzasz się?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Standardowy wybór to \"/dev/hda\", czyli pierwszy dysk twardy (primary\n"
-#~ " IDE) lub \"/dev/sda\" pierwszy dysk SCSI (first SCSI disk)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Czas połączenia:"
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Wybierz domyślnego użytkownika:"
-
-#~ msgid "Spooler: "
-#~ msgstr "System wydruku: "
-
-#~ msgid "Test the mouse here."
-#~ msgstr "Sprawdź tutaj mysz"
-
-#~ msgid "Press next to continue."
-#~ msgstr "By kontynuować, naciśnij Dalej."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Wybierz właściwy język instalacji i używania systemu."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "By kontynuować instalację, musisz zaakceptować warunki licencji.\n"
-#~ "\n"
-#~ "\n"
-#~ "Wybierz \"Zgadzam się\", jeśli zgadzasz się z jej warunkami.\n"
-#~ "\n"
-#~ "\n"
-#~ "Wybierz \"Nie zgadzam się\", jeśli się z nimi nie zgadzasz.\n"
-#~ "Instalacja zostanie zakończona bez żadnych zmian w konfiguracji."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Wybierz odpowiedni język i układ klawiatury z listy powyżej"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Jeśli chcesz, by po instalacji były dostępne także inne języki\n"
-#~ "(poza wybranym na początku instalacji), wybierz je z listy powyżej\n"
-#~ "Jeśli chcesz wybrać wszystkie, wskaż \"Wszystkie\"."
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Wybierz:\n"
-#~ "\n"
-#~ "\n"
-#~ " - Użytkownika: Jeśli jesteś obeznany z Linuxem, masz możliwość\n"
-#~ " określenia zastosowania zainstalowanego systemu. Szczegóły poniżej\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ekspert: Świetnie znasz GNU/Linux i chcesz zainstalować go\n"
-#~ " w nietypowy, odpowiedni dla Ciebie sposób . Podobnie jak w przypadku\n"
-#~ " instalacji \"Użytkownika\" masz możliwość określenia zastosowania "
-#~ "systemu\n"
-#~ " Ale bardzo, bardzo prosimy, NIE WYBIERAJ TEJ OPCJI, JEŚLI NIE WIESZ "
-#~ "CO ROBISZ!"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Teraz należy określić sposób wykorzystania komputera. \n"
-#~ "* Stacja robocza: To dokonały wybór, jeśli używasz komputera do "
-#~ "codziennej pracy w biurze lub\n"
-#~ " w domu.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Programowanie: wybierz tę opcję, jeżeli chcesz korzystać z komputera do "
-#~ "tworzenia oprogramowania.\n"
-#~ " Zostanie zainstalowane całe oprogramowanie umożliwiające kompilację , "
-#~ "debugowanie programów,\n"
-#~ " oraz tworzenie pakietów oprogramowania.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Serwer: jest to właściwy wybór, jeśli komputer ma byc serwerem. Może to "
-#~ "być serwer plików (NFS lub\n"
-#~ " SMB ), serwer drukarek (uniksowy typu \"windowsowego\") serwer NIS, "
-#~ "serwer baz danych itp.\n"
-#~ " Nie oczekuj zainstalowaniea żadnych wodotrysków typu KDE lub GNOME."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Możesz teraz wybrać grupy pakietów, które chcesz \n"
-#~ "zainstalować lub aktualizować\n"
-#~ "\n"
-#~ "\n"
-#~ "Instalator sprawdzi, czy masz na to dość miejsca na dysku. Zostaniesz\n"
-#~ "ostrzeżony, jeśli jest go zbyt mało. Jeśli postanowisz mimo to "
-#~ "kontynuować,\n"
-#~ "część mniej ważnych pakietów nie zostanie zainstalowana.\n"
-#~ "Na dole listy znajdziesz opcję \"Samodzielny wybór pakietów\"; \n"
-#~ "Będziesz musiał jednak wybierać spośród ponad1000 pakietów ..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Można teraz indywidualnie wybierać pakiety do zainstalowania.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kliknięcie w lewym rogu okna pakietów zwija lub rozwija listę pakietów\n"
-#~ "\n"
-#~ "\n"
-#~ "Kliknięcie na \"Przełącz między płaskim i grupowym sortowaniem\"\n"
-#~ "umożliwia zobaczenie pakietów posortowanych alfabetycznie\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeśłi nie chcesz być informowany o zależnościach miedzy pakietami,\n"
-#~ "kliknij na \"Automatyczne sprawdzanie zależności\". Po włączeniu tej "
-#~ "opcji\n"
-#~ "odznaczenie pakietu spowoduje automatyczne od innych pakietów,\n"
-#~ "które wymagają go do działania."
-
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Jeśli masz wszystkie instalacyjne płyty CD z listy powyżej, kliknij Ok.\n"
-#~ "Jeśli nie masz żadnej z tych płyt, kliknij Anuluj.\n"
-#~ "Jeśli masz niektóre z płyt, odznacz te, których nie masz i kliknij Ok."
-
-#~ 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.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are installing on an Apple machine with a 1-button mouse, you "
-#~ "will\n"
-#~ "be given the opportunity to define some keyboard keys to emulate the 2nd\n"
-#~ "and 3rd mouse buttons. This will allow you to be able to access the "
-#~ "full\n"
-#~ "functionality of the mouse in both the Linux console and the X Window "
-#~ "GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have an ADB mouse, please select USB, as the Linux kernel will "
-#~ "take\n"
-#~ "care of mapping your mouse hardware correctly."
-#~ msgstr ""
-#~ "Należy teraz przetestować działanie myszy. Użyj przycisków oraz kółka\n"
-#~ "by sprawdzić, czy ustawienia są prawidłowe. Jeśli nie, naciśnij \"Anuluj"
-#~ "\"\n"
-#~ "i wybierz inny sterownik.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeśli instalujesz na komputerze Apple z 1-przyciskową myszą, masz teraz\n"
-#~ "możliwość przypisania jakiś klawiszy klawiatury w celu emulacji 2 i 3 "
-#~ "przycisku\n"
-#~ "myszy. Pozwoli to na zapewnienie pełnej funkcjonalności myszy podczas "
-#~ "pracy\n"
-#~ "na konsoli oraz w środowisku graficznym. "
-
-#~ 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 "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Wybierz właściwą opcję, by podłączyć komputer do Internetu\n"
-#~ "lub sieci lokalnej. Pamiętaj o włączeniu urządzeń zewnętrznych\n"
-#~ "przed wybraniem opcji, by instalator mógł je automatycznie wykryć.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeśli nie używasz sieci lokalnej ani Internetu, wybierz\n"
-#~ "\"Wyłączenie sieci\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeśli chcesz skonfigurować sieć po instalacji, lub zakończyłeś\n"
-#~ "konfigurowanie sieci, wybierz \"Zrobione\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Nie wykryto modemu. Proszę określić port szeregowy, do którego jest on "
-#~ "podłączony.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dla informacji: pierwszy port szeregowy (COM1 w Windows)\n"
-#~ "w GNU/Linux nazywa się \"ttyS0\". "
-
-#~ 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 "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Należy teraz podać opcje połączenia modemowego. Jeśli nie wiesz,\n"
-#~ "lub nie wiesz co wpisać, poprawne informacje otrzymasz od\n"
-#~ "Twojego dostawcy Internetu (ISP). Jeśli nie wpiszesz adresów DNS, zostaną "
-#~ "one pobrane od ISP\n"
-#~ "w trakcie połączenia."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Jeśli posiadasz zewnętrzny modem, włącz go, by instalator mógł go "
-#~ "automatycznie wykryć."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Włącz modem i wybierz własciwy model."
-
-#~ 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"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Jeśli nie jesteś pewien, że powyższe informacje są prawidłowe, lub\n"
-#~ "lub nie wiesz co wpisać, poprawne informacje otrzymasz od\n"
-#~ "Twojego dostawcy Internetu (ISP). Jeśli nie wpiszesz adresów DNS, zostaną "
-#~ "one pobrane od ISP\n"
-#~ "w trakcie połączenia."
-
-#~ 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 ""
-#~ "Możesz teraz, podać nazwę hosta (jeśli trzeba).\n"
-#~ "Jeśli nie jesteś pewien, co wpisać, należy uzyskać informacje od\n"
-#~ "Twojego dostawcy Internetu (ISP)."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Należy teraz skonfigurować kartę sieciową\n"
-#~ "\n"
-#~ " * adres IP, jeżeli go nie znasz, spytaj administratora sieci\n"
-#~ " Nie wpisuj adresu IP, jeśli wybrałeś \"Automatyczne IP\".\n"
-#~ "\n"
-#~ " * maskę sieci, \"255.255.255.0\" na ogół działa. \n"
-#~ " Jeżeli nie jesteś pewien, spytaj administratora sieci.\n"
-#~ "\n"
-#~ " * Automatyczne IP: Jeżeli Twoja sieć używa protokołu DHCP lub BOOTP,\n"
-#~ " wybierz tę opcję. Jeżeli nie jesteś pewien, spytaj administratora "
-#~ "sieci.\n"
-#~ " W przypadku wybranie tej opcji nie należy wpisywać adresu IP"
-
-#~ 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 ""
-#~ "Możesz teraz, podać nazwę hosta (jeśli trzeba).\n"
-#~ "Jeśli nie jesteś pewien, co wpisać, należy uzyskać informacje od "
-#~ "administratora sieci."
-
-#~ 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 ""
-#~ "Możesz teraz, podać nazwę hosta (jeśli trzeba).\n"
-#~ "Jeśli nie jesteś pewien, co wpisać, pozostaw to pole puste."
-
-#~ 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 ""
-#~ "Możesz teraz podać opcje połączenia modemowego. Jeżeli ich nie znasz, \n"
-#~ "skontaktuj się z dostawcą Internetu (ISP)."
-
-#~ 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 ""
-#~ "Jeśli będziesz korzystał z serwerów pośredniczących, skonfiguruj je "
-#~ "teraz.\n"
-#~ "Jeżeli nie jesteś pewien, spytaj administratora sieci lub dostawcy "
-#~ "Internetu."
-
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Możesz użyć pakietów kryptograficznych, jeżeli Twoje połączenie \n"
-#~ "z Internetem zostało odpowiednio skonfigurowane. Zacznij od wyboru "
-#~ "mirrora\n"
-#~ "(miejsca, skąd będziesz ściągał pakiety) i wybierz pakiety do instalacji\n"
-#~ "\n"
-#~ "\n"
-#~ "Pamiętaj, że wybór mirrora i pakietów musi być zgodny z polskim prawem."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Należy teraz określić strefę czasową miejsca, w którym mieszkasz."
-
-#~ 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 ""
-#~ "Możesz skonfigurować drukarkę lokalną (podłączonę bezpośrednio do\n"
-#~ "Twojego komputera), lub sieciową (dostępną poprzez sieć Unix, Netware\n"
-#~ "lub Microsoft Windows)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Jeśli chcesz mieć możliwość drukowania, wybierz system wydruku\n"
-#~ "(dostępne są CUPS i LPR)\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS to nowy, silny i elastyczny system wydruku dla systemów Unixowych\n"
-#~ "(CUPS oznacza \"Common Unix Printing System\"). Jest to domyślny system\n"
-#~ "wydruku w Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR to stary system wydruku używany w poprzednich\n"
-#~ "wersjach Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeśli nie używasz drukarki, wybierz \"Brak\"."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linux obsługuje wiele rodzajów drukarek. Każda z nich wymaga\n"
-#~ "oddzielnej konfiguracji.\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeśli drukarka jest fizycznie podłączona do Twojego komputera, wybierz\n"
-#~ "\"Drukarka lokalna\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeśli chcesz uzyskać dostęp do drukarki na innym komputerze z Unixem,\n"
-#~ "wybierz \"Drukarka sieciowa\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Jeśli chcesz uzyskać dostęp do drukarki założonej na innym komputerze\n"
-#~ "z Microsoft Windows (lub Unixie z Sambą), wybierz \"SMB/Windows 95/98/NT"
-#~ "\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Należy teraz włączyć drukarkę, by umożliwić instalatorowi jej wykrycie.\n"
-#~ "\n"
-#~ "Konieczne jest też podanie kilku informacji.\n"
-#~ "\n"
-#~ "\n"
-#~ "...*.Nazwa drukarki: system wydruku wykorzystuje \"lp\" jako domyślną "
-#~ "drukarkę, powinieneś posiadać drukarkę\n"
-#~ " o takiej nazwie. Jedna drukarka może mieć wiele nazw, oddzielonych "
-#~ "znakiem '\"'\".\n"
-#~ " Jeśli więc lubisz przyjazne nazwy, możesz z nich korzystać:np. "
-#~ "\"Moja drukarka|lp\".\n"
-#~ " Drukarka, której jedną z nazw jest \"lp\" będzie drukarką domyślną\n"
-#~ "\n"
-#~ "\n"
-#~ " * Opis drukarki jest opcjonalny, lecz użyteczny jeśli posiadasz więcej "
-#~ "drukarek, lub też udostępniasz je innym\n"
-#~ "\n"
-#~ "\n"
-#~ " * Lokalizacja. Jeśli chcesz podać informacje o położeniu drukarki,\n"
-#~ " wpisz je tutaj (możesz wpisać cokolwiek, np. \"Drugie piętro\").\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Należy wpisać tutaj kilka informacji.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Nazwa kolejki: system wydruku wykorzystuje \"lp\" jako domyślną "
-#~ "drukarkę, powinieneś posiadać drukarkę\n"
-#~ " o takiej nazwie. Jedna drukarka może mieć wiele nazw, oddzielonych "
-#~ "znakiem '\"'\".\n"
-#~ " Jeśli więc lubisz przyjazne nazwy, możesz z nich korzystać:np. "
-#~ "\"Moja drukarka|lp\".\n"
-#~ " Drukarka, której jedną z nazw jest \"lp\" będzie drukarka domyślną\n"
-#~ "\n"
-#~ " \n"
-#~ " * Katalog bufora: jest to katalog, gdzie są zapisywane drukowane "
-#~ "zadania. Nie zmieniaj domyślnego wpisu,\n"
-#~ " jeśli nie wiesz, co wpisać\n"
-#~ "\n"
-#~ "\n"
-#~ " * Podłączenie drukarki. Jeśli drukarka jest fizycznie podłączona do "
-#~ "Twojego komputera, wybierz\n"
-#~ " \"Drukarka lokalna\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Jeśli chcesz uzyskać dostęp do drukarki na innym komputerze z "
-#~ "Unixem,\n"
-#~ " wybierz \"Drukarka sieciowa lpd\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Jeśli chcesz uzyskać dostęp do drukarki założonej na innym "
-#~ "komputerze z Microsoft Windows\n"
-#~ " (lub Unixie z Sambą), wybierz \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ " Jeśli chcesz uzyskać dostęp do drukarki w sieci Netware, wybierz "
-#~ "\"NetWare\".\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Nie wykryto drukarki. Podaj nazwę portu, do którego jest podłączona\n"
-#~ "\n"
-#~ "\n"
-#~ "Dla informacji: większość drukarek podłącza się do pierwszego portu "
-#~ "równoległego\n"
-#~ "Nazywa się on w GNU/Linuksie \"/dev/lp0\", natomiast w Windows\"LPT1\""
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Wybierz drukarkę z listy powyżej."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "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 ""
-#~ "Wybierz właściwe dla swojej drukarki opcje.\n"
-#~ "Jeśli nie wiesz, co zaznaczyć, zapoznaj się z dokumentacją drukarki\n"
-#~ "\n"
-#~ "\n"
-#~ "W następnym kroku będzie możliwe sprawdzenie wybranej konfiguracji oraz "
-#~ "jej modyfikacja, jeśli wydruki nie będą zgodne z oczekiwaniami."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Teraz należy wpisać hasło roota Twojego Mandrake Linux.\n"
-#~ "Hasło należy wpisać dwa razy w celu weryfikacji poprawności\n"
-#~ "\n"
-#~ "\n"
-#~ "Root to administrator systemu, jedyny użytkownik mający prawo\n"
-#~ "modyfikacji konfiguracji systemu.Zwróć więc szczególną uwagę na\n"
-#~ "jego hasło! Nieautoryzowane użycie konta roota może być skrajnie\n"
-#~ "niebezpieczne dla integralności systemu i danych oraz innych systemów,\n"
-#~ "podłączonych do niego.\n"
-#~ "\n"
-#~ "\n"
-#~ "Hasło powinno być mieszanką znaków alfanumerycznych\n"
-#~ "o długości co najmniej 8 znaków. *Nigdy* nie powinno być\n"
-#~ "zapisywane.\n"
-#~ "\n"
-#~ "Nie wymyślaj jednak hasła zbyt długiego lub nazbyt\n"
-#~ "skomplikowanego: musisz go zapamiętać bez kłopotu."
-
-#~ msgid ""
-#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
-#~ "select\n"
-#~ "\"LDAP\" (or \"NIS\") as authentication. If you don't know, ask your "
-#~ "network\n"
-#~ "administrator.\n"
-#~ "\n"
-#~ "If your computer is not connected to any administrated network, you may "
-#~ "want to\n"
-#~ "choose \"Local files\" for authentication."
-#~ msgstr ""
-#~ "Jeśli w sieci do autentykacji stosowany jest protokół LDAP (lub NIS), "
-#~ "wybierz\n"
-#~ "\"LDAP\" (lub \"NIS\") jako sposób autentykacji. Jeśli nie wiesz, spytaj\n"
-#~ "administratora sieci\n"
-#~ "\n"
-#~ "Jesli komputer nie jset podłączony do administrowanej sieci, wskazanejest "
-#~ "wybranie \"Pliki lokalne\" jak sposobu autentykacji."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Powinieneś utworzyć jedno lub więcej kont \"zwykłych\" użytkowników\n"
-#~ "będących przeciwieństwem konta \"uprzywilejowanego\" użytkownika\n"
-#~ "- roota. Możesz utworzyć jedno lub więcej kont dla każdej osoby, której\n"
-#~ "chcesz umożliwić korzystanie z komputera. Pamiętaj, że każde konto ma\n"
-#~ "indywidualne ustawienia (środowisko graficzne, ustawienia programów,"
-#~ "itp.)\n"
-#~ "oraz własny \"katalog domowy\", w których te ustawienia są zapisywane.\n"
-#~ "\n"
-#~ "\n"
-#~ "Przede wszystkim, utwórz konto dla samego siebie!. Nawet jeśli jesteś\n"
-#~ "jedynym użytkownikiem komputera, NIE KORZYSTAJ z konta roota do\n"
-#~ "codziennej pracy: jest to bardzo ryzykowne. Często zdarza się \n"
-#~ "zniszczenie systemu przez zwykłą literówkę\n"
-#~ "\n"
-#~ "\n"
-#~ "Powinieneś więc do normalnej pracy w systemie korzystać z konta\n"
-#~ "zwykłego użytkownika, natomiast konto roota wykorzystywać tylko\n"
-#~ "do administracji oraz konfiguracji systemu."
-
-#~ 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 ""
-#~ "Utworzenie dysku startowego jest bardzo zalecane. Jeśli nie będzie\n"
-#~ "można uruchomić komputera, będzie to jedyny prosty sposób\n"
-#~ "przywrócenia działania systemu bez reinstalacji."
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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 ""
-#~ " Główne opcje LILO i Grub to:\n"
-#~ " - urządzenie startowe: urządzenie, które zawiera sektor ładujący\n"
-#~ "zwykle jest to \"/dev/hda\". Wybierz tak, jeżeli nie masz pewności.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Czas opóźnienia uruchamiania domyślnego systemu:\n"
-#~ "określa, ile czasu masz do rozpoczęcia uruchamiania domyślnego systemu.\n"
-#~ "Przydatne bywa w systemach, które są tak skonfigurowane, że\n"
-#~ "uruchamianie następuje z twardego dysku, natychmiast po uaktywnieniu\n"
-#~ "klawiatury. Program ładujący nie czeka, jeżeli opóźnienie jest równe "
-#~ "zero,\n"
-#~ "lub pominiesz tę opcję,\n"
-#~ " \n"
-#~ "\n"
-#~ " - Tryb graficzny: określa tryb tekstowy VGA, który powinien być "
-#~ "wybrany\n"
-#~ "podczas ładowania. Opcje to:\n"
-#~ "\n"
-#~ " * normal: wybierz tryb 80x25.\n"
-#~ "\n"
-#~ " * <numer>: wybierz tryb o danym numerze. \n"
-#~ "\n"
-#~ " - Wyczyść \"/tmp\" po każdym przeładowaniu: jeśli chcesz skasować\n"
-#~ " wszystkie pliki i katalogi znajdujące się w \"/tmp\" po przeładowaniu, "
-#~ "zaznacz tą opcję. - Określ rozmiar pamięci, jeśli trzeba; nie istnieje "
-#~ "niestety standardowa metoda\n"
-#~ "sprawdzania w BIOS-ie ilości pamięci. W konsekwencji Linux może "
-#~ "nieprawdłowo\n"
-#~ "wykryć wielkość pamięci RAM w twoim komputerze. Należy pamiętać, że "
-#~ "różnica\n"
-#~ "2 do 4 MB między rozmiarem pamięci wykrytym, a rzeczywistym jest normalna."
-
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 to program rozruchowy dla SPARC: pozwala on uruchomić\n"
-#~ "GNU/Linux lub inny system operacyjny, zainstalowany na twoim komputerze.\n"
-#~ "Normalnie inne systemy są wykrywane i instalowane. Jeżeli tak nie jest,\n"
-#~ "powinieneś \"ręcznie\" wprowadzić odpowiednie dane. Bądź ostrożny\n"
-#~ "i wybierz właściwe parametry.\n"
-#~ "\n"
-#~ " \n"
-#~ "Możesz oczywiście również uniemożliwić dostęp do nich przy starcie "
-#~ "przez \n"
-#~ "usunięcie ich z listy. W tej sytuacji musisz jednak posiadać dyskietki "
-#~ "startowe\n"
-#~ "by je uruchomić."
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Główne opcje SILO to:\n"
-#~ " - urządzenie startowe: urządzenie, które zawiera sektor ładujący\n"
-#~ " Jeśli nie wiesz dokładnie, co chcesz zrobić, wybierz \"Pierwszy "
-#~ "sektor dysku (MBR)\"\n"
-#~ "\n"
-#~ "\n"
-#~ " - Czas opóźnienia uruchamiania domyślnego systemu:\n"
-#~ " określa, ile czasu masz do rozpoczęcia uruchamiania domyślnego "
-#~ "systemu.\n"
-#~ " To przydaje się w systemach, które są tak skonfigurowane, że "
-#~ "uruchamianie następuje z twardego dysku, natychmiast po właczeniu "
-#~ "klawiatury. Program ładujący nie czeka, jeżeli opóźnienie jest równe "
-#~ "zero,\n"
-#~ " lub pominiesz tę opcję."
-
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Przyszedł czas na konfigurację systemu X Window, który jest rdzeniem\n"
-#~ "GUI (graficznego interfejsu użytkownika) GNU/Linuxa. W tym celu trzeba\n"
-#~ "skonfigurować kartę graficzną oraz monitor. Większość kroków jest\n"
-#~ "zautomatyzowana, tak więc Twoje zadanie polega na weryfikacji tego,\n"
-#~ "co zostało zrobione oraz akceptowaniu ustawień :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Kiedy konfiguracja zostanie zakończona, X-y zostaną uruchomione\n"
-#~ "(o ile tego chcesz), byś można było sprawdzić, czy ustawienia są "
-#~ "odpowiednie\n"
-#~ "Jeśli nie są właściwe, możesz się cofnąć i zmienić je, tak wiele\n"
-#~ "razy jak jest to potrzebne."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Jeżeli z konfiguracją X-ów jest coś nie tak, użyj tych opcji,\n"
-#~ "w celu poprawnego skonfigurowania X Window System."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Jeżeli chcesz używać graficznego trybu przy logowaniu się w systemie \n"
-#~ "wybierz \"Tak\". W przeciwnym wypadku wybierz \"Nie\"."
-
-#~ msgid ""
-#~ "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"
-#~ msgstr ""
-#~ "Możesz określić poziom bezpieczeństwa systemu. Szczegółowe informacje na "
-#~ "ten temat znajdują się w podręczniku.\n"
-#~ "Jeśli nie wiesz co wybrać, zachowaj domyślne ustawienia.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Teraz nastąpi ponowne uruchomienie systemu.\n"
-#~ "\n"
-#~ "Twój nowy Mandrake Linux zostanie załadowany automatycznie.\n"
-#~ "Jeżeli chciałbyś załadować inny z posiadanych systemów operacyjnych,\n"
-#~ "przeczytaj dodatkowe instrukcje."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "czeski (programisty)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "słowacki (programisty)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Nazwa tworzonego profilu:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Zapisz /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Sformatuj wszystko"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Po sformatowaniu wszystkich partycji,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "wszystkie dane znajdujące się na nich zostaną utracone"
-
-#~ msgid "Reload"
-#~ msgstr "Przeładuj"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Czy utworzyć dyskietkę instalacji automatycznej w celu powielenia "
-#~ "instalacji?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Konfiguracja ADSL"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Korzystając z sieciowego serwera CUPS nie musisz tutaj\n"
-#~ "konfigurować żadnych drukarek; zostaną one automatycznie\n"
-#~ "wykryte, chyba że znajduje się on w innej sieci, w tym przypadku\n"
-#~ "należy podać adres serwera CUPS oraz opcjonalnie numer portu."
-
-#~ msgid "Enter Printer Name and Comments"
-#~ msgstr "Podaj nazwę drukarki i komentarz"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr " Kolejka sieciowa"
-
-#~ msgid ""
-#~ "Here you can specify any arbitrary command line into which the job should "
-#~ "be piped instead of being sent directly to a printer."
-#~ msgstr ""
-#~ "Tutaj można podać dowolne polecenie, które zostanie wykonane w "
-#~ "potokuzamiast bezpośredniego wysłania wydruku do drukarki"
-
-#~ msgid "Command line"
-#~ msgstr "Polecenie"
-
-#~ msgid "A command line must be entered!"
-#~ msgstr "Należy wpisać polecenie!"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Monitorowanie sieci"
-
-#~ msgid "Profile "
-#~ msgstr "Profil "
-
-#~ msgid "Statistics"
-#~ msgstr "Statystyki"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Szybkość wysyłania: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Szybkość odbierania: "
-
-#~ msgid "Connection Time: "
-#~ msgstr "Czas połączenia:"
-
-#~ msgid "Logs"
-#~ msgstr "Logi"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Połączenie z Internetem"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Rozłącz połączenie z Internetem"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Rozłączenie połączenia powiodło się."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Rozłączono."
-
-#~ msgid "Connection complete."
-#~ msgstr "Połączono."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Połączenie nie powiodło się. Sprawdź konfigurację w w Centrum Sterownia "
-#~ "Mandrake."
-
-#~ msgid "sent: "
-#~ msgstr "wysłano: "
-
-#~ msgid "received: "
-#~ msgstr "odebrano: "
-
-#~ msgid "average"
-#~ msgstr "średnio"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Domyślny tryb uruchamiania"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Zawartość pliku konfiguracyjnego nie może zostać zinterpretowana."
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Niepoprawny plik konfiguracyjny"
-
-#~ msgid "Adapter"
-#~ msgstr "Karta"
-
-#~ msgid "Disable network"
-#~ msgstr "Wyłączenie sieci"
-
-#~ msgid "Enable network"
-#~ msgstr "Włączenie sieci"
-
-#~ 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 ""
-#~ "Można teraz przetestować mysz. Użyj przycisków i kółka by sprawdzić,\n"
-#~ "czy ustawienia są właściwe. Jeśli nie, wybierz \"Anuluj\" by wybrać inny\n"
-#~ "sterownik."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Połączenie DSL (lub ADSL)"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Zamknij"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "Można bezpośrednio podać URI określające dostęp do drukarki w CUPS"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Tak, wydrukuj stronę testową ascii"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Tak, wydrukuj graficzną stronę testową"
-
-#~ msgid "Yes, print both test pages"
-#~ msgstr "Tak, wydrukuj obie strony testowe"
-
-#~ msgid "Paper Size"
-#~ msgstr "Rozmiar papieru"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Wysunąć stronę po wydruku?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Opcje sterownika uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "Opcje głębi kolorów"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Drukować tekst jako PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Usunąć efekt schodków?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Ilość stron na stronie wydruku"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Lewy/Prawy margines w punktach (1/72 cala) "
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Górny/Dolny margines w punktach (1/72 cala)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Dodatkowe opcje GhostScriptu"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Dodatkowe opcje dla tekstu"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Odwrotna kolejność stron"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Wybierz sposób podłączenia drukarki sieciowej"
-
-#~ 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 ""
-#~ "Przy korzystaniu z sieciowego serwera CUPS, drukarki\n"
-#~ "zostaną automatycznie wykryte, nie ma potrzeby ich konfiguracji.\n"
-#~ "W przypadku wątpliwości, wybierz \"Sieciowy serwer CUPS\"."
-
-#~ 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 ""
-#~ "Każda drukarka wymaga nazwania (na przykład lp)\n"
-#~ "Można też zdefiniować inne parametry jak opis drukarki lub jej "
-#~ "lokalizację\n"
-#~ "Jaką nazwę użyć dla tej drukarki oraz w jaki sposób jest ona podłączona?"
-
-#~ 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 ""
-#~ "Każda kolejka drukarki (drukuje zadanie skierowane do niej)\n"
-#~ "wymaga nazwania (często lp) oraz przypisania katalogu na bufor.\n"
-#~ "Jak nazwać katalog przypisany do kolejki oraz jak drukarka jest "
-#~ "podłączona?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Nazwa kolejki:"
-
-#~ msgid "Spool directory"
-#~ msgstr "Katalog bufora:"
-
-#~ msgid "Disable"
-#~ msgstr "Wyłączyć"
-
-#~ msgid "Enable"
-#~ msgstr "Włączyć"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "By zwiększyć poziom bezpieczeństwa systemu należy włączyć:\n"
-#~ "\"Użyj pliku shadow\" i \"Użyj długich haseł MD5\" "
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Jeżeli Twoja sieć używa NIS (systemu informacji sieciowej),\n"
-#~ "wybierz \"Użyj NIS\". \n"
-#~ "Jeżeli nie jesteś pewien, spytaj administratora sieci."
-
-#~ msgid "yellow pages"
-#~ msgstr "żółte strony"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Konfiguracja sieci lokalnej"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "DNS 1 dostawcy"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "DNS 2 dostawcy"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Jak chcesz łączyć się Internetem?"
-
-#~ msgid "cannot fork: "
-#~ msgstr "cannot fork: "
-
-#~ msgid "Selected size %d%s"
-#~ msgstr "Rozmiar wybranych %d%s"
-
-#~ msgid "Opening your connection..."
-#~ msgstr "Otwieranie połączenia..."
-
-#~ msgid "Configure..."
-#~ msgstr "Konfiguruj..."
-
-#~ msgid "Standard tools"
-#~ msgstr "Narzędzia standardowe"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Ten skrypt startowy ładuje moduł obsługujący mysz usb."
-
-#~ msgid "Boot style configuration"
-#~ msgstr "Konfiguracja sposobu uruchamiania"
-
-#~ 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 ""
-#~ "Połączenie z Internetem jest skonfigurowane.\n"
-#~ "Można skonfigurować komputer jako współdzielący połączenie z Internetem\n"
-#~ "Ta usługa pozwala innym komputerom w sieci lokalnej na używanie "
-#~ "połączenia\n"
-#~ "tego komputera z Internetem.\n"
-#~ "\n"
-#~ "Uwaga: wymagana jest dedykowana karta sieciowa włączająca komputer w "
-#~ "sieć lokalną (LAN)\n"
-#~ "Czy chcesz konfigurować współdzielenie połączenia z Internetem?\n"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Automatyczne sprawdzanie zależności"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Konfiguracja LILO/GRUB"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Utwórz dysk startowy"
-
-#~ msgid "Choice"
-#~ msgstr "Wybór"
-
-#~ 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 ""
-#~ "Teraz możesz wybrać różne dodatkowe opcje dla Twojego systemu.\n"
-#~ "\n"
-#~ "* Używać optymalizacji dysku: ta opcja może zwiększyć szybkość twardego\n"
-#~ "dysku, ale jest opcją tylko dla zaawansowanych użytkowników: \n"
-#~ "niektóre kiepskie chipsety mogą zniszczyć Twoje dane, bądź więc czujny!\n"
-#~ "Kernel ma wprawdzie wbudowaną czarną listę chipsetów, ale jeśli chcesz \n"
-#~ "uniknąć przykrej niespodzianki, lepiej nie wybierać tej opcji.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Wybierz poziom bezpieczeństwa: możesz wybrać poziom bezpieczeństwa \n"
-#~ "dla twojego systemu. Zajrzyj do podręcznika po szczegółową informację,\n"
-#~ "lub po prostu,jeśli nie wiesz, co zrobić , wybierz \"średni\" ; \n"
-#~ "\n"
-#~ "\n"
-#~ "* Sprecyzuj rozmiar pamięci, jeżeli trzeba: niestety w dzisiejszym "
-#~ "świecie\n"
-#~ "pecetów nie ma standardowej metody zapytania BIOS-u o wielkość pamięci.\n"
-#~ "Tak więc GNU/Linux może wykryć nieprawidłowo Twoją pamięć. \n"
-#~ "W tym wypadku podaj prawidłową wielkość\n"
-#~ "Uwaga: różnica o 2 lub 4 MB jest normalna.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Automatyczne montowanie wyjmowanych dysków: Jeżeli nie chcesz\n"
-#~ "\"ręcznie\" montować mediów typu CD, stacja dyskietek, Zip,\n"
-#~ "zaznacz tę opcję\n"
-#~ "\n"
-#~ "\n"
-#~ "* Wyczyść /tmp przy każdym starcie systemu: zaznacz tą opcję, jeśli\n"
-#~ "jeśli chcesz kasować wszystkie pliki i katalogi zapiasane w /tmp przy \n"
-#~ "starcie systemu,\n"
-#~ "\n"
-#~ "\n"
-#~ " - Włącz NumLock przy starcie: zaznacz tą opcję, jeśli chcesz uaktywnić\n"
-#~ " klawiaturę numeryczną po stacie Uwaga : W X-ach klawisz NumLock może "
-#~ "działać lub nie, nie uaktywniaj też\n"
-#~ "tej opcji w przypadku laptopów."
-
-#~ msgid "Internet/Network access"
-#~ msgstr "Dostęp do Internetu/sieci lokalnej"
-
-#~ msgid "Mail information"
-#~ msgstr "Informacje o poczcie"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Różne"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Różne pytania"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr ""
-#~ "Nie można używać supermount\n"
-#~ "przy ustawionym wysokim poziomie bezpieczeństwa"
-
-#~ 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 ""
-#~ "Ostrzeżenie: PRZY TYM POZIOMIE BEZPIECZEŃSTWA NIE JEST MOŻLIWE\n"
-#~ "BEZPOŚREDNIE REJESTROWANIE SIĘ Z KONSOLI NA ROOTA! \n"
-#~ "Należy zarejestrować się jako zwykły użytkownik, następnie użyć \"su\".\n"
-#~ "W ogólności: komputer w tej konfiguracji nadaje się wyłącznie na serwer.\n"
-#~ "Zostałeś ostrzeżony."
-
-#~ 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 ""
-#~ "Bądź ostrożny, uaktywnienie numlock może powodować\n"
-#~ "problemy z wypisywaniem cyfr zamiast liter (np. naciśnięcie \"p\" daje \"6"
-#~ "\")"
-
-#~ msgid "Actions"
-#~ msgstr "Czynności"
-
-# ../../share/compssUsers
-#~ msgid "Scientific applications"
-#~ msgstr "Programy naukowe"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Pierwszy serwer DNS"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Drugi serwer DNS"
-
-#~ msgid "using module"
-#~ msgstr "użycie modułu"
-
-#~ msgid "Development, Database"
-#~ msgstr "Programowanie, bazy danych"
-
-#~ msgid "Development, Standard tools"
-#~ msgstr "Programowanie, narzędzia standardowe"
-
-#~ msgid "loopback"
-#~ msgstr "plikopartycja"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Którego programu rozruchowego chcesz użyć?"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Dyskietka automatycznej instalacji"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Spróbować wykryć modem?"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Wyłączenie połączenia z Internetem"
-
-#~ msgid "Configure local network"
-#~ msgstr "Konfiguracja sieci lokalnej"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Konfiguracja połączenia z Internetem / Konfiguracja sieci lokalnej"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ "Sieć lokalna została już skonfigurowana.\n"
-#~ "Czy chcesz:"
-
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Skonfiguruj ponownie korzystając z kreatora..."
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Obróbka grafiki"
-
-#~ msgid "Sciences"
-#~ msgstr "Nauki"
-
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ "Rozmowy chat: (IRC lub natychamiastowa komunikacja) programy jak xchat, "
-#~ "licq, gaim, oraz narzędzia transferu plików"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Ułatwienia komunikacyjne"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Narzędzia internetowe"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Bazy danych (mysql i postgresql)"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Programowanie C/C++"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Konfiguracja strefy czasowej"
-
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Karta sieciowa 1 (eth0):"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(może być przyczyną zniszczenia danych)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Uaktywnienie num lock przy starcie"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Potwierdź hasło:"
-
-#~ msgid "default"
-#~ msgstr "domyślne"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "Jakie jest zastosowanie komputera?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Określ rozmiar przeznaczony na instalację"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Użyj diskdrake"
-
-#~ msgid "Customized"
-#~ msgstr "Użytkownika"
-
-#~ 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 ""
-#~ "Jesteś pewien, że jesteś ekspertem? \n"
-#~ "Będziesz miał duże uprawnienia, co może być niebezpieczne.\n"
-#~ "\n"
-#~ "Będziesz pytany np. o \"Użyj pliku shadow dla haseł?\n"
-#~ "Czy potrafisz odpowiedzieć na tego typu pytania?"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Użyj pliku shadow"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Użyj haseł kodowanych MD5"
-
-#~ msgid "Search"
-#~ msgstr "Znajdź"
-
-#~ msgid "Package"
-#~ msgstr "Pakiet"
-
-#~ msgid "Tree"
-#~ msgstr "Drzewo"
-
-#~ msgid "Sort by"
-#~ msgstr "Sortowanie wg"
-
-#~ msgid "Category"
-#~ msgstr "Kategoria"
-
-#~ msgid "Installed packages"
-#~ msgstr "Zainstalowane pakiety"
-
-#~ msgid "Available packages"
-#~ msgstr "Dostępne pakiety"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Pokaż tylko pozostałe"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Dodaj położenie pakietów"
-
-#~ msgid "Update location"
-#~ msgstr "Położenie uaktualnień"
-
-#~ msgid "Remove"
-#~ msgstr "Usuń"
-
-#~ msgid "Find Package"
-#~ msgstr "Szukaj pakietu"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Znajdź pakiet zawierający plik"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Przełącze między zainstalowanymi i dostępnymi"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Sprawdzanie zależności"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Zostaną odinstalowane następujące pakiety"
-
-#~ msgid "Regexp"
-#~ msgstr "Wyrażenie regularne"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Jakiego pakietu szukasz?"
-
-#~ msgid "No match"
-#~ msgstr "Nic nie pasuje"
-
-#~ msgid "No more match"
-#~ msgstr "Nic więcej nie pasuje"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "Teraz rpmdrake zostanie ponownie uruchomiony,\n"
-#~ "aby umożliwić szukanie zbiorów."
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Którego pliku szukasz?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Czego szukasz?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Podaj termin (n.p. ``extra'', ``commercial'')"
-
-#~ msgid "Directory"
-#~ msgstr "Katalog"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "CD niedostępny ( nic w katalogu /mnt/cdrom )."
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL katalogu zawierającego RPM-y."
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Dla połączenia FTP lub HTTP musisz podać położenie pliku hdlist\n"
-#~ "względem adresu powyżej."
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Wyślij następujące informacje"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s jest już używane"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Aktualizacja bazy RPM-ów."
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Zostanie usunięta pozycja %s"
-
-#~ msgid "Finding leaves"
-#~ msgstr "Znajdowanie pozostałych"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Znajdowanie pozostałych zajmie trochę czasu"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Wykryto kartę ISDN:\n"
-
-#~ msgid "Other countries"
-#~ msgstr "Inne kraje"
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "W jakim kraju przebywasz?"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Modem Alcatel"
-
-#~ msgid "ECI modem"
-#~ msgstr "Modem ECI"
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ "Jeśli Tój modem to Alcatel, wybierz Alcatel, jeśli nie, wybierz ECI."
-
-#~ msgid "don't use pppoe"
-#~ msgstr "nie używaj pppoe"
-
-#~ msgid "i18n (important)"
-#~ msgstr "lokalizacja (ważny)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "lokalizacja (bardzo fajny)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (przydatny)"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "Do którego portu szeregowego jest podłączona mysz?"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, biblioteki, narzędzia"
-
-#~ msgid "Czech"
-#~ msgstr "czeski"
-
-#~ msgid "Slovakian"
-#~ msgstr "słowacki"
diff --git a/perl-install/share/po/pt.po b/perl-install/share/po/pt.po
deleted file mode 100644
index a0f710bb1..000000000
--- a/perl-install/share/po/pt.po
+++ /dev/null
@@ -1,11403 +0,0 @@
-# DRAKX PT .PO FILE.
-# Copyright (C) 1999 MandrakeSoft
-# Andrei <andreib@zaz.com.br>, 1999-2000
-# Paulo Cardoso <paulo@ejs.is>, 2000
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-03-10 19:37GMT\n"
-"Last-Translator: Jorge Costa <jorgercosta@netc.pt>\n"
-"Language-Team: Portuguese <pt@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.2\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configurar todas as cabeças independentemente"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Usar extençăo Xinerama"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configurar placa única \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Configuraçăo Multi-Cabeça"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"O seu sistema suporta configuraçăo multi-cabeça.\n"
-"O que deseja afazer?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Placa Gráfica"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Seleccione uma placa gráfica"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Escolha um servidor X"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "servidor X"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Escolha um servidor X"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "servidor X"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Qual a configuraçăo do Servidor X que deseja ter?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"A sua placa pode ter suporte para aceleraçăo 3D por hardware mas só com o "
-"XFree%s.\n"
-"A sua placa é suportada pelo XFree %s que pode ter um melhor suporte para 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-"A sua placa pode ter suporte para aceleraçăo 3D por hardware com o XFree%s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s com aceleraçăo 3D por hardware"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"A sua placa pode ter suporte para aceleraçăo 3D por hardware com o XFree%s,\n"
-"ATENÇĂO ESTE SUPORTE É EXPERIMENTAL E PODE CONGELAR O SEU COMPUTADOR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s com aceleraçăo 3D por hardware EXPERIMENTAL"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"A sua placa pode ter suporte para aceleraçăo 3D por hardware com o XFree%s,\n"
-"ATENÇĂO ESTE SUPORTE É EXPERIMENTAL E PODE CONGELAR O SEU COMPUTADOR.A sua "
-"placa é suportada pelo XFree %s que pode ter um melhor suporte para 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuraçăo do XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Seleccione o tamanho da memória da sua placa gráfica"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Escolha as opçőes para o servidor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Escolha um monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Dois parâmetros críticos săo a taxa de refrescamento vertical, que é a taxa\n"
-"em que todo o ecră é refrescado, e principalmente a taxa de sincronizaçăo\n"
-"horizontal, que é a taxa em que 'scanlines' săo mostradas.\n"
-"\n"
-"É MUITO IMPORTANTE que năo especifique um tipo de monitor com taxa de "
-"actualizaçăo\n"
-"para além das capacidades do seu monitor: pode danificar seu monitor.\n"
-" Se tiver dúvidas, escolha definiçőes conservadoras."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Taxa de refrescamento horizontal"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Taxa de refrescamento vertical"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor năo configurado"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Placa gráfica ainda năo configurada"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resoluçőes ainda năo escolhidas"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Quer testar a configuraçăo?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Aviso: o teste desta placa gráfica pode congelar o seu computador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Teste da configuraçăo"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"tente alterar alguns parâmetros"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ocorreu um erro:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "A sair em %d segundos"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Esta é a definiçăo correcta?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ocorreu um erro, tente alterar alguns parâmetros"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Resoluçăo"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Escolha a resoluçăo e a profundidade de cor"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Placa Gráfica: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Server XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mais"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modo de Perito"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mostrar tudo"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resoluçőes"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Tipo de teclado: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Tipo de Rato: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Dispositivo Rato: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Sincronizaçăo Horizontal do Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Refrescamento Vertical do Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Placa Gráfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Placa Gráfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Memória gráfica: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Profundidade de cor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Resoluçăo: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Servidor XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Driver XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "A preparar a configuraçăo X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "O que deseja fazer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Alterar Monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Alterar Placa Gráfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Alterar opçőes do Servidor"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Alterar Resoluçăo"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostrar informaçăo"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Testar de novo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Sair"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Manter alteraçőes?\n"
-"A configuraçăo actual é:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X ao iniciar"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Eu posso configurar o computador para iniciar automaticamente o X após o "
-"arranque.\n"
-"Gostaria de iniciar o X quando voltar a arrancar?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Por favor volte a entrar no %s para activar a alteraçőes"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Por favor saía e depois utilize Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 cores (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil cores (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil cores (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milhőes de cores (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milhőes de cores (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB ou mais"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA Padrăo, 640x480 a 60 Hz Padrăo"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatível com 8514, 1024x768 a 87 Hz entrelaçado (sem 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrelaçado, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA Alargado, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA Năo-entrelaçado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA de Alta Frequęncia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequęncia que consegue 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequęncia que consegue 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequęncia que consegue 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor que consegue1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor que consegue1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Primeiro sector da partiçăo de arranque"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Primeiro sector do disco (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Instalaçăo do SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Onde quer instalar o carregador de arranque?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Instalaçăo do LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO com menu em texto"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO com menu gráfico"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Arrancar do DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Principais opçőes do carregador de arranque"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Carregador de arranque deve usar"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Instalaçăo do carregador de arranque"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Dispositivo de arranque"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (năo funciona com BIOS antigas)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Compacto"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "compacto"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Modo de Vídeo"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Tempo de espera antes de arrancar na imagem padrăo"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Senha"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Senha (de novo)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Restringir opçőes da linha de comando"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "restringir"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Limpar /tmp a cada arranque"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Tamanho da RAM preciso se necessário (%d MB encontrados)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Activar multi-perfis"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Indicar o tamanho da RAM em Mb"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Opçăo ``Restringir opçőes da linha de comando'' năo tem uso sem senha"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Por favor tente novamente"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "As senhas năo coincidem"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Mensagem Init"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Abrir tempo de espera de Firmware"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Tempo limite de Arranque do Kernel"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Activar Arranque de CD?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Activar de Arranque?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "SO por omissăo?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Aqui estăo a diferentes entradas.\n"
-"Pode adicionar mais ou alterar as existentes"
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Adicionar"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Pronto"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Modificar"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Qual tipo de entrada que quer adicionar?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Outros SO (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Outros SO (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Outros SO (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Imagem"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Adicionar"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Leitura-Escrita"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabela"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Inseguro"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Rótulo"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Por omissăo"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Tamanho-Initrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "SemVídeo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Remover entrada"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Năo é permitido um rótulo vazio"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Tem que ter uma partiçăo swap"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Este rótulo já está a ser utilizado"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Interfaces %s %s encontrados"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Tem algum outro?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Tem algum interface %s?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Năo"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Sim"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Ver informaçăo do hardware"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "A instalar o driver para %s placa %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(módulo %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Qual driver %s que eu deveria tentar?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Em alguns casos, o driver %s precisa de informaçőes extra para funcionar\n"
-"correctamente, mas ele normalmente funciona bem sem estas informaçőes.\n"
-"Deseja especificar opçőes extras ou deixar o driver localizar na sua\n"
-"máquina as informaçőes que ele precisa? Ocasionalmente, isso poderá\n"
-"travar o computador, mas năo deve causar algum dano."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Auto-procurar"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Especificar opçőes"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Agora pode definir as opçőes para o módulo %s.\n"
-"As opçőes estăo no formato ``nome=valor nome2=valor2 ...''\n"
-"Para exemplo, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opçőes do módulo:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"O carregamento do módulo %s falhou.\n"
-"Quer tentar novamente com outros parâmetros?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(já adicionado %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Essa senha é demasiado simples"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Por favor indique um nome de utilizador"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"O nome de utilizador deve conter apenas letras minúsculas, números, `-' e `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Este nome de utilizador já foi adicionado"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Adicionar utilizador"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Introduza um utilizador\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Aceitar utilizador"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Nome real"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Nome de utilizador"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ícone"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Autologin"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Eu posso configurar o computador para iniciar automaticamente o X após o "
-"arranque.\n"
-"Gostaria de iniciar o X quando voltar a arrancar?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Escolha o utilizador por omissăo :"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Escolha o gestor de janelas a correr:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Por favor escolha o idioma a ser utilizado."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Pode escolher outros idiomas que estarăo disponíveis após a instalaçăo"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Tudo"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Adicionar um utilizador"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalizado"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "A iniciar o CUPS"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"Este pacote tem que ser actualizado\n"
-"Tem certeza que năo o quer seleccionar?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Bem-vindo ŕ Crackers"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Pobre"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Padrăo"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Alto"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Alto"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranóico"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Este nível deve ser usado com cuidado. Ele torna o seu sistema mais fácil \n"
-"de usar, mas muito sensível: năo deve ser usado numa máquina \n"
-"ligada a outras ou ŕ Internet. Năo existe acesso por senha."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"As senhas agora estăo activadas, mas o uso como computador de rede ainda năo "
-"é recomendado."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Esta é a segurança padrăo recomendada para um computador que será usado\n"
-"para se ligar ŕ Internet como um cliente. Agora existem verificaçőes de "
-"segurança. "
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Com este nível de segurança, o uso deste sistema como um servidor tornou-se "
-"possível.\n"
-"A segurança agora está alta o suficiente para usar o sistema como um\n"
-"servidor que aceita ligaçőes de muitos clientes. "
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Nós definimos características nível 4, mas agora o sistema está .\n"
-"totalmente fechado. As características de segurança estăo no máximo."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Escolha o nível de segurança"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Opçőes do nível de segurança"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Escolha as opçőes para o servidor"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Bem vindo ao %s o seleccionador de Sistema Operativo!\n"
-"\n"
-"Escolha um Sistema Operativo da lista acima ou\n"
-"espere %d segundos pelo arranque por omissăo.\n"
-"\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Bem-Vindo ao GRUB o seleccionador de Sistema Operativo!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Use a tecla %c e %c para escolher qual a entrada seleccionada."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Prima 'enter' para arrancar o SO seleccionado, 'e' para editar os"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "comandos antes de arrancar, ou 'c' para linha de comando."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr ""
-"A opçăo seleccionada vai arrancar automaticamente dentro de %d segundos."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "năo há espaço suficiente em /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Ambiente de trabalho"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Menu Iniciar"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Onde quer instalar o carregador de arranque?"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "nenhuma ajuda implementada ainda.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Configuraçăo do Estilo de Arranque"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Ficheiro"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Ficheiro/_Sair"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>S"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Monitor de Categorizaçăo NewStyle"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Monitor NewStyle"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Monitor Tradicional"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Monitor Tradicional Gtk+"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Iniciar Aurora no arranque"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Modo lilo/grub"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Modo yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Está correntemente a usar %s como Gestor de Arranque.\n"
-"Clique em Configurar para iniciar o assistente de configuraçăo."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Configurar"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Modo do sistema"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Iniciar o X-Window na inicializaçăo"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Năo, eu năo quero autologin"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Sim, eu quero autologin com este (utilizador, ambiente de trabalho)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "năo possível abrir /etc/inittab para leitura: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutos"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minuto"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d segundos"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Eu năo posso adicionar mais nenhuma partiçăo"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Pode escolher outros idiomas que estarăo disponíveis após a instalaçăo"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "France"
-msgstr "Francęs"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Belga"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-#, fuzzy
-msgid "Germany"
-msgstr "Alemăo"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Grego"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Norueguęs"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Sueco"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Italiano"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "série"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Por favor faça primeiro uma cópia de segurança dos seus dados"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Leia com atençăo!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Se planear usar aboot, lembre-se de deixar espaço livre (2048 sectores é "
-"suficiente)\n"
-"no início do disco"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Erro"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Assistente"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Escolher acçăo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Tem uma partiçăo FAT grande \n"
-"(normalmente utilizada pelo MicroSoft Dos/Windows.)\n"
-"Sugiro que redimensione primeiro a partiçăo\n"
-"(clique nela, depois clique em \"Redimensionar\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Por favor clique numa partiçăo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detalhes"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "falhou ao montar"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Vazio"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Outro"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Tipos de sistema de ficheiros:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Criar"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tipo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Use ``%s'' ao invés"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Eliminar"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Use ``Desmontar'' primeiro"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Após alterar o tipo de partiçăo %s, todos os dados desta partiçăo serăo "
-"perdidos"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Escolher acçăo"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Criar uma nova partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Alternar para modo perito"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Alternar para modo normal"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Anular"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Continuar mesmo assim?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Sair sem guardar"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Sair sem gravar na tabela de partiçăo?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Quer testar a configuraçăo?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Auto alocar"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Limpar tudo"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Detecçăo de discos rígidos"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Todas as partiçőes primárias estăo usadas"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Eu năo posso adicionar mais nenhuma partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Para ter mais partiçőes, por favor elimine uma para poder criar uma partiçăo "
-"extendida"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Alterar tipo de partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Tentando resgatar tabela de partiçőes"
-
-#: ../../diskdrake/interactive.pm_.c:297
-#, fuzzy
-msgid "Rescue partition table"
-msgstr "Tentando resgatar tabela de partiçőes"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Alterar tipo de partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Automontagem de Médias Amovíveis"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Seleccione ficheiro"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"A tabela de partiçőes de segurança năo tem o \n"
-"mesmo tamanho. Continuar mesmo assim?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Aviso"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Insira uma disquete no drive\n"
-"Todos os dados na disquete serăo perdidos"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Tentando resgatar tabela de partiçőes"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "Mostrar informaçăo"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Ponto de Montagem"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Opçőes"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Redimensionar"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Mover"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatar"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Montar"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Adicionar ao RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Adicionar ao LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Desmontar"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Remover do RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Remover do LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Modificar RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Usar para loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Criar uma nova partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Sector inicial: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Tamanho em MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Tipo do Sistema de Ficheiros: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Ponto de montagem: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Preferęncia: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "A formatar o ficheiro loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Alterar tipo de partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Que sistema de ficheiros deseja?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Onde deseja montar o ficheiro loopback %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Onde deseja montar o dispositivo %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Năo posso remover a definiçăo do ponto de montagem enquanto \n"
-"a partiçăo for usada para loopback. Remova o loopback primeiro"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "A computar limites do sistema de ficheiros FAT"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "A redimensionar"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Esta partiçăo năo é redimensionável"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Deveria fazer uma cópia de segurança de todos os dados nesta partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Após redimensionar a partiçăo %s, todos os dados da partiçăo serăo perdidos"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Escolha o novo tamanho"
-
-#: ../../diskdrake/interactive.pm_.c:622
-#, fuzzy
-msgid "New size in MB: "
-msgstr "Tamanho em MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Para qual disco quer mover?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sector"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Para qual sector quer mover?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "A mover"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "A mover partiçăo..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Escolha um RAID existente para adicionar a"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "novo"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Escolha um LVM existente para adicionar a"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "Nome do LVM?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Essa partiçăo năo pode ser usada para loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Nome do ficheiro loopback: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Nome real"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "O ficheiro já é utilizado por outro loopback, escolha outro"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "O ficheiro já existe. Utilizá-lo?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-#, fuzzy
-msgid "Mount options"
-msgstr "Opçőes do módulo:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "dispositivo"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "nível"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "tamanho do bloco"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Tenha cuidado: essa operaçăo é perigosa."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Que tipo de particionamento?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Lamento, eu năo aceitarei criar /boot tăo distante no disco (num cilindro > "
-"1024).\n"
-"Ou usa o LILO e ele năo funcionará, ou vocę năo usa o LILO e năo precisará "
-"de /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"A partiçăo que vocę seleccionou para adicionar como root (/) é fisicamente "
-"localizada para além\n"
-"do cilindro 1024 do disco rígido, e năo possui uma partiçăo /boot.\n"
-"Se quer usar o gestor de arranque LILO, tenha cuidado em adicionar uma "
-"partiçăo /boot."
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Seleccionou uma partiçăo software RAID como root (/).\n"
-"Nenhum gestor de arranque năo consegue acedę-lo sem uma\n"
-"partiçăo /boot. Tenha o cuidado de adicionar uma partiçăo /boot"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "A tabela de partiçőes do drive %s vai ser escrita no disco!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Precisará re-arrancar antes que as modificaçőes tenham efeito"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Após formatar a partiçăo %s, todos os dados desta partiçăo serăo perdidos"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "A formatar"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "A formatar o ficheiro loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "A formatar a partiçăo %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid falhou"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Sem espaço livre suficiente para alocar as novas partiçőes"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Sem espaço livre suficiente para alocar as novas partiçőes"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Resoluçăo: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Dispositivo: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Letra do drive no DOS: %s (apenas um palpite)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tipo: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Nome: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Inicial: sector: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Tamanho: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sectores"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cilindro %d ao cilindro %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formatado\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Năo formatado\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Montado\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Ficheiro(s) loopback: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partiçăo de arranque por omissăo\n"
-" (para arranque do MS-DOS, năo para o lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Nível %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Tamanho do bloco %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Discos RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Nome do ficheiro loopback: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"É provável que esta partiçăo seja\n"
-"uma partiçăo Driver, năo lhe\n"
-"deve mexer.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Esta é uma partiçăo especial\n"
-" Bootstrap serve para o \n"
-"duplo arranque do seu sistema.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Tamanho: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometria: %s cilindros, %s cabeças, %s sectores\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Informaçăo: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Discos LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Tipo da tabela de partiçőes: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "no barramento %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Opçőes: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Tipo do Sistema de Ficheiros: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Essa senha é muito simples (deve ter ao menos %d caracteres)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "As senhas năo coincidem"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "Alterar tipo de partiçăo"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Por favor clique numa partiçăo"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "Servidor DNS"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formataçăo de %s falhou"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Năo sei como formatar %s no tipo %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "erro a desmontar %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "simples"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "servidor"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Năo pode usar JFS em partiçőes menores que 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Năo pode usar ReiserFS em partiçőes menores que 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Pontos de montagem devem começar com uma /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Já existe uma partiçăo no ponto de montagem %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Năo pode usar LVM Logical Volume para o ponto de montagem %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Esta directoria deveria permanecer dentro do sistema de ficheiros root"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Precisa de um verdadeiro sistema de ficheiros (ext2, reiserfs) para este "
-"ponto de montagem\n"
-
-#: ../../fsedit.pm_.c:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Năo pode usar LVM Logical Volume para o ponto de montagem %s"
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Sem espaço livre suficiente para auto-alocaçăo"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Erro ao abrir %s para escrita: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Ocorreu um erro - nenhum dispositivo válido foi encontrado para criar novos "
-"sistemas de ficheiros. Por favor verifique no hardware a causa deste problema"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Năo tem partiçőes!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-
-#: ../../help.pm_.c:404
-#, fuzzy
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"O seu novo sistema operativo Mandrake Linux está ser instalado\n"
-"Essa operaçăo deve demorar algumas minutos (isso depende do tamanho que\n"
-"escolheu para instalar e a velocidade do seu computador).\n"
-"\n"
-"\n"
-"Por favor seja paciente."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr ""
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Por favor escolha \"Instalar\" caso năo exista nenhuma versăo anterior do "
-"Mandrake Linux\n"
-"instalado ou se deseja utilizar vários sistemas operativos.\n"
-"\n"
-"\n"
-"Por favor escolha \"Actualizar\" se desejar actualizar uma versăo instalada "
-"do Mandrake Linux.\n"
-"\n"
-"\n"
-"Dependendo do seu conhecimento sobre GNU/Linux, vocę pode escolher um dos "
-"seguintes níveis para instalar\n"
-"ou actualizar o seu Mandrake Linux:\n"
-"\n"
-"* Recomendado: se nunca instalou um sistema GNU/Linux escolha esse. A "
-"instalaçăo será \n"
-" fácil e serăo feitas apenas algumas perguntas.\n"
-"\n"
-"\n"
-"* Personalizado: se estiver familiarizado com o GNU/Linux, pode escolher o "
-"uso primário (estaçăo, \n"
-" servidor, desenvolvimento) do seu sistema. Responderá a mais perguntas do "
-"que na classe de instalaçăo\n"
-" \"Recomendada\", precisa entăo de saber com o GNU/Linux funciona para "
-"poder escolher esse nível.\n"
-"\n"
-"\n"
-"* Perito: se tem um bom conhecimento sobre o GNU/Linux, pode escolher esta "
-"classe. Como \n"
-" na classe \"Personalizado\", poderá escolher o uso primário (estaçăo, "
-"servidor, desenvolvimento)\n"
-" Tenha muito cuidado antes de escolher esta classe. Poderá fazer uma "
-"instalaçăo bastante personalizada.\n"
-" As respostas a algumas questőes que podem ser difíceis se năo tiver "
-"conhecimento sobre GNU/Linux.\n"
-" Năo escolha esta classe se năo souber o que está a fazer."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX tentará localizar adaptadores PCI SCSI. Se o DrakX encontrar\n"
-"um adaptador SCSI e souber qual driver a utilizar, ele será instalado\n"
-"automaticamente\n"
-"\n"
-"\n"
-"Se năo possuir adaptadores SCSI, um adaptador ISA SCSI ou um PCI SCSI que\n"
-"DrakX năo reconhece, será questionado sobre se algum adaptador SCSI existe "
-"no seu\n"
-"sistema. Se năo existirem adaptadores, pode clicar em \"Năo\". Se clicar em\n"
-"\"Sim\", uma lista de drivers aparecerá para que possa escolher o seu\n"
-"adaptador.\n"
-"\n"
-"\n"
-"Se tem que especificar manualmente o seu adaptador, DrakX perguntará \n"
-"se quer especificar opçőes para ele. Pode deixar que o DrakX examine o "
-"hardware\n"
-"para descobrir as opçőes. Isso normalmente funciona bem.\n"
-"\n"
-"\n"
-"Se năo, precisará definir as opçőes para o driver. Por favor veja o Guia do "
-"Utilizador\n"
-"(capítulo 3, secçăo \"Recolhendo informaçőes sobre o seu hardware) para "
-"dicas sobre\n"
-"como descobrir essas informaçőes na documentaçăo do hardware, no Web site\n"
-"do fabricante (se tiver acesso ŕ Internet) ou no Microsoft Windows\n"
-"(se o tiver no seu sistema)."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Seleccionou o(s) seguinte(s) servidor(es): %s\n"
-"\n"
-"\n"
-"Estes servidores săo activados por omissăo. Năo possuem nenhum problema\n"
-"de segurança conhecido, mas algum novo pode ser encontrado. Neste caso, "
-"certifique-se \n"
-"da sua actualizaçăo logo que possível.\n"
-"\n"
-"\n"
-"Deseja mesmo instalar estes servidores?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Năo é possível usar 'broadcast' sem algum domínio NIS"
-
-#: ../../install_any.pm_.c:793
-#, fuzzy, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Insira uma disquete no drive %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr ""
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Para usar esta selecçăo guardada de pacotes, arranque a instalaçăo com "
-"``linux defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Erro ao ler o ficheiro %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Algum hardware no seu computador precisa de drivers ``proprietários'' \n"
-"para funcionar. Pode encontrar mais informaçőes em: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Tem ter uma partiçăo root.\n"
-"Para isso, crie uma partiçăo (ou clique numa existente).\n"
-"Entăo escolha a acçăo ``Ponto de montagem'' e defina-a como `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Tem que ter uma partiçăo swap"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Năo possui uma partiçăo swap\n"
-"\n"
-"Continuar mesmo assim?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Tem que ter uma partiçăo swap"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Usar espaço livre"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Sem espaço livre suficiente para alocar as novas partiçőes"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Usar a partiçăo existente"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Năo existe nenhuma partiçăo para usar"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Usar a partiçăo Windows para loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Qual partiçăo que quer usar para o Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Escolha os tamanhos"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Tamanho da partiçăo root em MB:"
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Tamanho da partiçăo swap em MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Usar o espaço livre na partiçăo Windows"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Qual partiçăo que quer redimensionar?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Computando limites do sistema de ficheiros do Windows"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"O redimensionador de FAT é incapaz de manipular sua partiçăo, \n"
-"ocorreu o seguinte erro: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"A sua partiçăo Windows está muito fragmentada, corra primeiro o ``defrag''"
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"ATENÇĂO!\n"
-"\n"
-"Drakx vai agora redimensionar sua partiçăo Windows. Tenha cuidado:\n"
-"esta operaçăo é perigosa. Se o năo tiver feito ainda, deve correr o\n"
-"scandisk do Windows (e opcionalmente correr o defrag) nesta partiçăo, e\n"
-"entăo reiniciar a instalaçăo. Também deveria fazer backup dos seus\n"
-"dados. Quando tiver certeza, pressione Ok."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Quanto de espaço quer deixar para o windows em"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "partiçăo %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Falha no redimensionamento FAT: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Năo existem partiçőes FAT para redimensionar ou para usar como loopback (ou "
-"năo existe espaço suficiente)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Apagar o disco inteiro"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Remover Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Tem mais de um disco rígido, em qual deles quer instalar o linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"Todas as partiçőes existentes e os dados nelas contidos serăo perdidos %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Particionamento de disco personalizado"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Usar fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Pode agora particionar %s.\n"
-"Quando terminar, năo esqueça de guardar usando `w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Năo tem espaço livre suficiente na sua partiçăo Windows"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Năo consigo encontrar espaço para instalaçăo"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "O assistente de particionamento DrakX encontrou as seguintes soluçőes:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "O particionamento falhou: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "A ligar a rede"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "A desligar a rede"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Ocorreu um erro, mas eu năo sei como lidar com ele.\n"
-"Continue a seu próprio risco."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Ponto de montagem %s duplicado"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Alguns pacotes importantes năo foram instalados correctamente.\n"
-"O seu drive de cdrom ou o seu cdrom está defeituoso.\n"
-"Verifique o cdrom num computador instalado usando \"rpm -qpl Mandarke/RPMS/*."
-"rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Bem-vindo ŕ %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Nenhum drive de disquete disponível"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "A entrar no passo `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Seu sistema está com poucos recursos. Pode ter algum problema na\n"
-"instalaçăo do Mandrake Linux. Se isso ocorrer, pode tentar instalar usando "
-"o\n"
-"modo texto. Para isso, prima `F1' no quadro de inicializaçăo e escreva "
-"`text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Classe de Instalaçăo"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Por favor escolha uma das seguintes classes de instalaçăo:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"O tamanho total dos grupos que seleccionou é de aproximadamente %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Se deseja instalar menos que esse tamanho,\n"
-"seleccione a percentagem de pacotes que quer instalar.\n"
-"\n"
-"Uma baixa percentagem irá instalar apenas os pacotes mais importantes;\n"
-"uma percentagem de 100%% irá instalar todos os pacotes seleccionados."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Tem espaço em seu disco para apenas %d%% desses pacotes.\n"
-"\n"
-"Se desejar instalar menos que este tamanho,\n"
-"seleccione a percentagem de pacotes que quer instalar.\n"
-"Uma baixa percentagem irá instalar apenas os pacotes mais importantes;\n"
-"uma percentagem de %d%% irá instalar o máximo de pacotes possível."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Será capaz de escolher mais precisamente no próximo passo"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Percentagem de pacotes a serem instalados"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Selecçăo de Grupo de Pacotes"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Selecçăo individual de pacotes"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Tamanho total: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Pacote defeituoso"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Nome: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versăo: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Tamanho: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Importância: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Năo pode seleccionar esse pacote pois năo existe espaço livre para o instalar"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Os seguintes pacotes serăo instalados"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Os seguintes pacotes serăo removidos"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Năo pode seleccionar/deselecionar esse pacote"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Este é um pacote obrigatório, tem que ser seleccionado"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Năo pode deixar de seleccionar este pacote. Ele já está instalado"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Este pacote tem que ser actualizado\n"
-"Tem certeza que năo o quer seleccionar?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr ""
-"Năo pode deixar de seleccionar este pacote. Ele tem que ser actualizado"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Mostrar automaticamente pacotes seleccionados"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Instalar"
-
-#: ../../install_steps_gtk.pm_.c:466
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "Guardar em disquete"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Guardar selecçăo de pacotes"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "Sair da instalaçăo"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Escolha os pacotes que deseja instalar"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "A instalar"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "A estimar"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Tempo restante "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Por favor aguarde, a preparar a instalaçăo"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pacotes"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "A instalar pacote %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Aceitar"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Recusar"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Troque o seu Cd-Rom!\n"
-"\n"
-"Por favor insira o Cd-Rom rotulado \"%s\" no seu drive e prima Ok quando "
-"estiver pronto.\n"
-"Se năo o tiver, prima Cancelar para evitar a instalaçăo deste Cd-Rom."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Continuar mesmo assim?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Houve um erro na ordenaçăo dos pacotes:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Houve um erro a instalar os pacotes:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Ocorreu um erro"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Quer testar a impressăo?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Contrato de licença"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Teclado"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Por favor escolha o tipo de teclado."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Aqui está a lista completa de teclados disponíveis"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Que classe de instalaçăo deseja?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Instalar/Actualizar"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Isso é uma instalaçăo ou actualizaçăo?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Recomendado"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Perito"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Actualizar"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Guardar selecçăo de pacotes"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Por favor escolha o tipo de rato."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Porta do Rato"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Por favor escolha a que porta série o rato está ligado."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Emulaçăo de botőes"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emulaçăo Botăo 2"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emulaçăo Botăo 3"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "A configurar cartőes PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "A configurar IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "sem partiçőes disponíveis"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Procurando partiçőes para encontrar pontos de montagem"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Escolha os pontos de montagem"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Năo consigo ler sua tabela de partiçăo, é muito defeituosa para mim :(\n"
-"Eu posso tentar continuar limpando as partiçőes defeituosas (TODOS OS DADOS\n"
-"serăo perdidos!). A outra soluçăo é năo deixar o DrakX modificar a tabela\n"
-"de partiçőes. (o erro é %s)\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"O DiskDrake falhou na leitura da tabela de partiçőes.\n"
-"Continue por sua conta e risco!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "Escolha as partiçőes que quer formatar"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Partiçăo Root"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Qual a partiçăo root (/) do seu sistema?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Precisa reiniciar para que as modificaçőes na tabela de partiçăo tenham "
-"efeito"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Escolha as partiçőes que quer formatar"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Verificar blocos defeituosos?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "A formatar partiçőes"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "A criar e formatar ficheiro %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr ""
-"Sem 'swap' suficiente para completar a instalaçăo, por favor adicione mais"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "A procurar pacotes disponíveis"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "A procurar pacotes para actualizar"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"O seu sistema năo tem espaço suficiente para instalaçăo ou actualizaçăo (%d "
-"> %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completa (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Mínima (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomendada (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-#, fuzzy
-msgid "Load from floppy"
-msgstr "Restaurar da disquete"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Loading from floppy"
-msgstr "Restaurar da disquete"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Selecçăo de Pacotes"
-
-#: ../../install_steps_interactive.pm_.c:578
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "Insira uma disquete no drive %s"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Guardar em disquete"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "O tamanho seleccionado é maior que o espaço disponível"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Se tiver todos os CDs da lista abaixo, clique em Ok.\n"
-"Se năo tiver nenhum desses CDs, clique em Cancelar.\n"
-"Se apenas alguns CDs estiverem em falta, desmarque-os e entăo clique em Ok."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom rotulado como \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "A preparar a instalaçăo"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Instalando o pacote %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Configuraçăo pós-instalaçăo"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Insira uma disquete no drive %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Insira uma disquete vazia no drive %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Tem agora a possibilidade de descarregar o software para codificaçăo "
-"(encriptaçăo).\n"
-"\n"
-"ATENÇĂO:\n"
-"Devido a vários requerimentos aplicáveis ŕ este software e impostos\n"
-"por várias jurisdiçőes, o cliente e/ou o utilizador final deste software "
-"deve\n"
-"assegurar-se que as leis da sua jurisdiçăo lhe permitem descarregar, "
-"armazenar e usar este software.\n"
-"\n"
-"Além disso, o cliente e/ou o utilizador final deve estar particularmente "
-"prevenido para\n"
-"năo infringir as leis da sua jurisdiçăo. Se o cliente e/ou o utilizador "
-"final\n"
-"năo respeitar o previsto nestas leis, poder-lhe-ăo ser aplicadas sérias\n"
-"sançőes.\n"
-"\n"
-"Em nenhum caso irá a Mandrakesoft ou seu produtores e/ou seus fornecedores\n"
-"ser responsáveis por especiais, indirectos ou acidentais danos seja qual "
-"for\n"
-"(incluindo também mas năo limitada a perda de lucros), interrupçăo de "
-"negócios, perda de informaçăo\n"
-"comercial e outras perdas monetárias, e eventual endividamento e "
-"indemnizaçăo a ser\n"
-"paga, de acordo com a decisăo do tribunal) saindo do uso, posse, ou do "
-"descarregamento\n"
-"isolado deste software, do qual o cliente e/ou o utilizador final pode "
-"eventualmente\n"
-"ter acesso após ter assinado o acordo presente.\n"
-"\n"
-"\n"
-"Para qualquer pergunta relacionada a esse acordo, favor entrar em contacto "
-"com: \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "A contactar o 'mirror' para obter a lista de pacotes disponíveis"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Escolha um 'mirror' de onde obter os pacotes"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "A contactar o 'mirror' para obter a lista de pacotes disponíveis"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Qual é o seu fuso horário?"
-
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "O seu relógio de hardware está definido GMT?"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "Servidor NTP"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Servidor CUPS remoto"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Nenhuma impressora"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Tem algum outro?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Sumário"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Rato"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Fuso horário"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Impressora"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "Placa RDIS"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Placa de Som"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "Placa TV"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-#, fuzzy
-msgid "Local files"
-msgstr "Impressora local"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Especificar senha do root"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Nenhuma senha"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Essa senha é muito simples (deve ter ao menos %d caracteres)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autenticaçăo?"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "Autenticaçăo?"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-#, fuzzy
-msgid "LDAP Server"
-msgstr "Servidor"
-
-#: ../../install_steps_interactive.pm_.c:1134
-#, fuzzy
-msgid "Authentication NIS"
-msgstr "Autenticaçăo NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "Domínio NIS"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "Servidor NIS"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Um disco de arranque oferece uma maneira de arrancar o Linux sem\n"
-"depender de um carregador de arranque normal. Isso é necessário se năo "
-"quiser instalar\n"
-"o SILO no seu sistema, ou se outro sistema operativo remover o SILO, ou\n"
-"o se\n"
-"SILO năo funcionar com o seu hardware. Um disco de inicializaçăo também\n"
-"pode\n"
-"ser usado com uma imagem de backup do Mandrake deixando muito mais fácil\n"
-"recuperar\n"
-"um sistema com danos severos.\n"
-"\n"
-"Se vocę quiser criar um disco de inicializaçăo para o seu sistema, insira um "
-"disquete\n"
-"no drive e aperte em \"OK\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Primeiro drive de disquetes"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Segundo drive de disquetes"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Saltar"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Uma disquete de arranque personalizada oferece uma maneira de arrancar o "
-"Linux \n"
-" sem um carregador de arranque normal. Isto é necessário se năo quiser "
-"instalar\n"
-"o LILO (ou grub) no seu sistema, ou se outro sistema operativo remover\n"
-"o LILO, ou o se LILO năo funcionar com o seu hardware. Uma disquete de "
-"arranque\n"
-"personalizada também pode ser usada com uma imagem de backup do Mandrake,\n"
-"tornando muito mais fácil recuperar o sistema com danos graves.\n"
-"Deseja criar uma disquete de arranque para o seu sistema?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Desculpe, nenhum drive de disquetes disponível"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
-"Escolha o drive de disquetes que quer usar para criar a disquete de arranque"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Insira uma disquete no drive %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "A criar disquete de arranque"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "A preparar o carregador de arranque"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Quer usar o aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Erro ao instalar o aboot, \n"
-"tentar forçar a instalaçăo, mesmo que isso destrua a primeira partiçăo?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Instalar carregador de arranque"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr ""
-"A instalaçăo do carregador de arranque falhou. Ocorreram os seguintes erros:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Insira uma disquete vazia no drive %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "A criar disquete de auto-instalaçăo"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Alguns passos năo estăo completos.\n"
-"\n"
-"Quer realmente sair agora?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-#, fuzzy
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Parabéns, a instalaçăo está completa.\n"
-"Para informaçőes sobre correcçőes para esta versăo do Mandrake Linux\n"
-"consulte a Errata disponível em http://www.mandrakelinux.com/.\n"
-"\n"
-"Informaçăo sobre como configurar o seu sistema está disponível no\n"
-"capítulo pós-instalaçăo do Oficial Guia do Utilizador do Mandrake Linux."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Criar disquete de auto instalaçăo"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"A auto instalaçăo pode ser totalmente automatizada se\n"
-"quiser, neste caso, ela tomará de conta do disco\n"
-"rígido!! (com vista a instalaçăo em outra máquina).\n"
-"\n"
-"Pode preferir repetir a instalaçăo.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automático"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Repetir"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Guardar selecçăo de pacotes"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Instalaçăo do Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> entre opçőes | <Espaço> selecciona | <F12> próximo passo "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu em falta"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Escolher acçăo"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Avançado"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Por favor aguarde"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informaçăo"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandir Árvore"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Encolher Árvore"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Alternar entre organizaçăo plana ou em grupo"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Má escolha, tente novamente\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Sua escolha? (por omissăo %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Sua escolha? (por omissăo %s) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Opçőes: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "Quer usar o aboot?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Sua escolha? (por omissăo %s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Checo (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Alemăo"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Espanhol"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Filandęs"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Francęs"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norueguęs"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polaco"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Russo"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Sueco"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Teclado Inglęs"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Teclado Americano"
-
-#: ../../keyboard.pm_.c:188
-#, fuzzy
-msgid "Albanian"
-msgstr "Iraniano"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armęnio (velho)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armęnio (máquina de escrever)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armęnio (Fonético)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbeijăo (latino)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belga"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Armęnio (Fonético)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Búlgaro"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazileiro (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Bielorusso"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Suíço (layout Alemăo)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Suíço (layout Francęs)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Checo (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Alemăo (sem teclas mortas)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Dinamarquęs"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norueguęs)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estoniano"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgiano (layout \"Russo\")"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgiano (layout \"Latin\")"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Grego"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Húngaro"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Croata"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Israelense"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Israelense (Fonético)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iraniano"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandęs"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italiano"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japonęs 106 teclas"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Teclado coreano"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latino Americano"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituano AZERTY (velho)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituano AZERTY (novo)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituano \"número de colunas\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituano \"fonético\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Localizaçăo"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Macedónio"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Holandęs"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Polaco (layout QWERTY)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Polaco (layout QWERTZ)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portuguęs"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Canadiano (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Romeno (qwertz)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Romeno (qwerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Russo (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Eslovaco"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Eslovaco (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Eslovaco (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "Azerbeijăo (cirílico)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Tabela"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Teclado Tailandęs"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Teclado Tailandęs"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turco (modelo \"F\" tradicional)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turco (modelo moderno \"Q\")"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ucraniano"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Teclado Americano (Internacional)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamita \"número de colunas\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslavo (latin/cirílico)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Montagens circulares %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Remova os volumes lógicos primeiro\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Rato - SUN"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Rato Genérico PS2 com roda"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 botăo"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Rato Genérico com 2 Botőes"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Genérico"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Roda"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "série"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Rato Genérico com 3 Botőes"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech Série CC (série)"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "Série MM"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Mouse Logitech (serial, tipo C7 antigo)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 botőes"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 botőes"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "nenhum"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Nenhum Rato"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Por favor teste o rato"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Para activar o rato,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "MOVA SUA RODA!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Terminar"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Próximo ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Anterior"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Isto está correcto?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Ligar ŕ Internet"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"A maneira mais comum de se ligar com adsl é pppoe.\n"
-"Mas algumas ligaçőes usam pptp, poucas usam dhcp.\n"
-"Se năo sabe, escolha 'usar pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "usar dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "usar pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "usar pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Qual cliente dhcp que deseja usar?\n"
-"Por omissăo é dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Nenhum adaptador de rede ethernet foi detectado no seu sistema.\n"
-"Eu năo posso configurar este tipo de ligaçăo."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Escolha o interface de rede"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Por favor escolher o adaptador de rede que quer usar para se ligar ŕ Internet"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "nenhuma placa de rede encontrada"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "A configurar a rede"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Por favor introduza o nome do seu anfitriăo(se souber).\n"
-"Alguns servidores DHCP requerem o nome do anfitriăo para funcionar.\n"
-"O nome do anfitriăo deve ser um nome de anfitriăo totalmente qualificado,\n"
-"como por exemplo ``mybox.mylab.myco.com''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Nome do anfitriăo"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Assistente de Configuraçăo da Rede"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Modem ISDN externo"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Placa ISDN interna"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "De que tipo é sua ligaçăo ISDN?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "Configuraçăo total (isdn4net)"
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "Configuraçăo total (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Configuraçăo ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Seleccione o seu provedor.\n"
-" Se năo estiver na lista, escolha Năo Listado"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol"
-msgstr "Protocolo de Arranque"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Europa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "Resto do mundo"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Resto do mundo \n"
-" sem Canal-D (linhas alugadas)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Qual protocolo que quer usar?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Qual tipo de placa tem?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Eu năo sei"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Se tiver uma placa ISA, os valores do próximo quadro devem estar correctos.\n"
-"\n"
-"Se tiver uma placa PCMCIA, tem que saber o irq e io da sua placa.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Abortar"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Continuar"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Qual é a sua placa ISDN?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Eu detectei uma placa ISDN PCI, mas năo sei qual é o tipo. Por favor "
-"seleccione uma placa PCI no próximo quadro."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Nenhuma placa ISDN PCI foi encontrada. Por favor seleccione uma no próximo "
-"quadro."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Por favor escolha a que porta série o seu modem está ligado."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Opçőes de ligaçăo"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Nome da ligaçăo"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Número do telefone"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "ID de Login"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Baseado em script"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Baseado em terminal"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Nome do domínio"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Primeiro DNS Servidor (opcional)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Second DNS Server (opcional)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Pode desligar ou reconfigurar a sua ligaçăo."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Pode reconfigurar sua ligaçăo."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Está neste momento ligado ŕ Internet."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Pode ligar ŕ Internet ou reconfigurar sua ligaçăo."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Năo está neste momento ligado ŕ Internet."
-
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
-msgid "Connect"
-msgstr "Ligado"
-
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
-msgid "Disconnect"
-msgstr "Desligar..."
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Configurar rede"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Ligaçăo e configuraçăo da Internet"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr ""
-"\n"
-"Pode desligar ou reconfigurar a sua ligaçăo."
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"Pode desligar ou reconfigurar a sua ligaçăo."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Configuraçăo da Rede"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Por que está a fazer uma instalaçăo em rede a sua rede já está configurada.\n"
-"Clique em OK para manter a configuraçăo, ou Cancelar para reconfigurar a sua "
-"ligaçăo Internet & Rede.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Bem-Vindo ao Assistente de Configuraçăo da Rede\n"
-"\n"
-"Estamos preparados para configurar a sua ligaçăo de rede/Internet.\n"
-"Se năo quiser usar a auto-detecçăo, desmarque a opçăo.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Escolha o perfil a configurar:"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Usar auto-detecçăo"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "A detectar dispositivos..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Ligaçăo normal via modem"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "detectado na porta %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "Ligaçăo ISDN"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "detectado %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy
-msgid "ADSL connection"
-msgstr "Ligaçăo ŕ LAN"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "detectado no interface %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Ligaçăo por Cabo"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "ligaçăo por cabo detectada"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Ligaçăo ŕ LAN"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "placa(s) ethernet detectada(s)"
-
-#: ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "Escolha a ferramenta que deseja usar"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Ligaçăo ŕ Internet"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Quer iniciar a sua ligaçăo ao iniciar?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Configuraçăo da Rede"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Ocorreu um problema ao reiniciar a rede: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Parabéns. A configuraçăo da rede e da Internet acabou.\n"
-"\n"
-"A configuraçăo será agora aplicada ao seu sistema.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Depois de completado, recomendamos que reinicie o seu \n"
-"ambiente X para evitar o problema da troca de nome do anfitriăo."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"AVISO: Esse dispositivo já foi configurado para ligar ŕ Internet.\n"
-"Apenas aceite manter este dispositivo configurado.\n"
-"A modificaçăo dos campos abaixo irá sobrepor esta configuraçăo."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Por favor introduza a configuraçăo IP para esta máquina.\n"
-"Cada item deve ser introduzido como endereço IP ponteado-decimal\n"
-"(por exemplo, 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "A configurar dispositivo de rede %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (driver %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "Endereço IP"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Netmask"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "IP Automático"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "O endereço IP deve estar no formato 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Por favor introduza o nome do seu anfitriăo.\n"
-"O nome do anfitriăo deve ser um nome de anfitriăo totalmente qualificado,\n"
-"como por exemplo ``mybox.mylab.myco.com'' .\n"
-"Também pode introduzir o endereço IP de um gateway se tiver um"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "Servidor DNS"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Dispositivo de gateway"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Configuraçăo de proxies"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "Proxy HTTP"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "Proxy FTP"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "O proxy deve ser http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "O proxy deve ser ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Configuraçăo da Internet"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Quer tentar ligar-se ŕ Internet agora?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "A testar a sua ligaçăo..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "O sistema está agora ligado ŕ Internet."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Por razőes de Security, será desligado(a) agora."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"O sistema năo aparenta estar ligado ŕ Internet.\n"
-"Tente reconfigurar a sua ligaçăo."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Configuraçăo da Ligaçăo"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Por favor preencha ou verifique os campos abaixo"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ da Placa"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Memória da Placa (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO da Placa"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_O da Placa"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 da Placa"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "O seu número de telefone pessoal"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Nome do provedor (ex: provedor.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Número do telefone do provedor"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "Provider dns 1 (opcional)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "Provider dns 2 (opcional)"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "Escolha o seu teclado"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Modo de marcaçăo"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "Tipo de Ligaçăo:"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Tipo de Ligaçăo:"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Nome do utilizador da conta"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Senha da conta"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "falhou ao montar: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Partiçăo extendida năo é suportada nesta plataforma"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Tem um buraco na sua tabela de partiçőes e eu năo a posso usar.\n"
-"A única soluçăo é mover as suas partiçőes primárias para ter o buraco "
-"próximo das partiçőes extendidas"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "A restauraçăo pelo ficheiro %s falhou: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Ficheiro de cópia de segurança defeituoso"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Erro ao escrever no ficheiro %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Algo mau está acontecer no seu drive. \n"
-"O teste que verifica a integridade dos dados falhou. \n"
-"Isso significa que escrever algo no disco resultará em lixo aleatório."
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "obrigatório"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "importante"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "muito bom"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "bom"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "talvez"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Impressora local"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Impressora remota"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Servidor CUPS remoto"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "Servidor lpd remoto"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Impressora da rede (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Servidor de Impressăo"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "Dispositivo de Impressăo URI"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Impressora local"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Impressora remota"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Erro ao escrever no ficheiro %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(módulo %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP do servidor CUPS"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Por omissăo)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Seleccionar Ligaçăo da Impressora"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Como está a impressora ligada?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"Com um servidor CUPS remoto, năo tem que configurar\n"
-"nenhuma impressora aqui; elas serăo detectadas automaticamente.\n"
-"Se tiver dúvidas, seleccione \"Servidor CUPS remoto\"."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Configuraçăo"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Servidor CUPS remoto"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "O endereço IP deve estar no formato 1.2.3.4"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-#, fuzzy
-msgid "The port number should be an integer!"
-msgstr "O número da porta deve ser numérico"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP do servidor CUPS"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Porta"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Configuraçăo do Estilo de Arranque"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "A detectar dispositivos..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Testar portas"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Nenhuma impressora"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Impressora local"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Usar auto-detecçăo"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "detectado %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Dispositivo de Impressăo URI"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Impressora local"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Por favor escolha a que porta série o seu modem está ligado."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Dispositivo de Impressăo URI"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Configuraçăo da Internet"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "A instalar pacote %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "A instalar pacote %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-#, fuzzy
-msgid "Reading printer database ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Opçőes da impressora lpd Remota"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Para usar uma fila de impressăo lpd remota, precisa indicar\n"
-"o nome do anfitriăo e o servidor de impressăo e o nome da\n"
-"fila naquele servidor."
-
-#: ../../printerdrake.pm_.c:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "Nome do anfitriăo remoto"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:630
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "Nome do anfitriăo remoto"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Nome do anfitriăo remoto"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opçőes de Impressăo SMB (Windows 9x/NT)"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Para imprimir numa impressora SMB, precisa indicar o nome do \n"
-"anfitriăo SMB (Nota! Ele pode ser diferente do anfitriăo TCP/IP!) e \n"
-"possivelmente o endereço IP do servidor de impressăo, como também\n"
-" o nome de partilha para a impressora que deseja aceder e qualquer \n"
-"informaçăo aplicável sobre nome de utilizador, senha e grupo de trabalho."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Anfitriăo servidor SMB"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP do servidor SMB"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Nome de partilha"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Grupo de trabalho"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Opçőes de Impressăo NetWare"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Para imprimir numa impressora NetWare, precisa indicar o\n"
-"nome do servidor de impressăo NetWare (Nota: ele pode ser diferente\n"
-"do servidor TCP/IP!) como também o nome da fila de impressăo para a "
-"impressora\n"
-"que deseja aceder como qualquer nome de utilizador e senha aplicável."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Servidor de Impressăo"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Nome da Fila de Impressăo"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Opçőes da Impressora 'Socket'"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Para imprimir numa impressora 'socket', precisa indicar o \n"
-"nome do servidor da impressora e a número da porta (opcional)."
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "Nome do Servidor da impressora"
-
-#: ../../printerdrake.pm_.c:858
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "Nome do Servidor da impressora"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Dispositivo de Impressăo URI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Nome da impressora"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descriçăo"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Localizaçăo"
-
-#: ../../printerdrake.pm_.c:1021
-#, fuzzy
-msgid "Preparing printer database ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Isto está correcto?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:1139
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Ligaçăo da Impressora"
-
-#: ../../printerdrake.pm_.c:1140
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "Qual tipo de impressora que tem?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Configuraçăo da Internet"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Configuraçăo da Internet"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Quer testar a impressăo?"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "Testar portas"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-#, fuzzy
-msgid "No test pages"
-msgstr "Sim, imprimir ambas as páginas de teste"
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "Impressora"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Padrăo"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "A imprimir página(s) de teste..."
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "A imprimir página(s) de teste..."
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "A imprimir página(s) de teste..."
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "A imprimir página(s) de teste..."
-
-#: ../../printerdrake.pm_.c:1635
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"A(s) página(s) foi(foram) enviada(s) para o demónio de impressăo.\n"
-"Pode demorar algum tempo antes da impressăo começar.\n"
-"Estado da impressăo:\n"
-"%s\n"
-"\n"
-"Está a funcionar correctamente?"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"A(s) página(s) foi(foram) enviada(s) para o demónio de impressăo.\n"
-"Pode demorar algum tempo antes da impressăo começar.\n"
-"Está a funcionar correctamente?"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Nenhuma impressora"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Fechar"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "A desligar a rede"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "A desligar a rede"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Opçőes da impressora"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Configuraçăo da Internet"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-#, fuzzy
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"O nome da impressora deve apenas conter letras, números e 'underscore' '_'"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "Nenhuma impressora"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "A iniciar a sua ligaçăo..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Configurar rede"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Monitor năo configurado"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "A configurar a rede"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Alto"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Paranóico"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Seleccionar Ligaçăo da Impressora"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Que sistema de impressăo deseja usar?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Configurar Impressora"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "A instalar pacote %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Opçőes da impressora"
-
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Configurar Impressora"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Deseja configurar uma impressora?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Impressora"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Aqui estăo as seguintes filas de impressăo.\n"
-"Pode adicionar mais ou modificar as existentes."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Aqui estăo as seguintes filas de impressăo.\n"
-"Pode adicionar mais ou modificar as existentes."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Configurar rede"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Modo Normal"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Quer testar a configuraçăo?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Configuraçăo da Internet"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Quer testar a configuraçăo?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Ligaçăo ŕ Internet"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Ligaçăo da Impressora"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "A imprimir página(s) de teste..."
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Quer testar a configuraçăo?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Impressora local"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Quer testar a impressăo?"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Configuraçăo de Proxy"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Bem vindo ao utilitário de configuraçăo de proxy.\n"
-"\n"
-"Aqui, poderá definir as proxies http e ftp\n"
-"com ou sem utilizador e palavra-passe\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Por favor preencha as informaçőes da proxy para http\n"
-"Deixe em branco se năo deseja uma proxy para http"
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "porta"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "O Url deve começar com 'http:'"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "A parte da porta deve ser numérica"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Por favor preencha as informaçőes da proxy para ftp\n"
-"Deixe em branco se năo deseja uma proxy para ftp"
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "O Url deve começar com 'ftp:'"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Por favor introduza o utilizador e palavra-passe para proxy, se existir.\n"
-"Deixe em branco se năo desejar utilizador/palavra-passe"
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "utilizador"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "palavra-passe"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "reintroduza a palavra-passe"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "As palavras-passe năo coincidem. Tente novamente!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Năo é possível adicionar partiçăo ao RAID _formatado_ md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Năo possível escrever o ficheiro %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid falhou"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid falhou (talvez as raidtools estejam em falta?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Sem partiçőes suficientes para RAID nível %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Inicia o sistema de som ALSA (Advanced Linux Sound Architecture) "
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, um calendarizador de comando periódicos"
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd é usado para monitorizar o estado da bateria e registando-o via "
-"syslog.\n"
-"Pode ser usado também para desligar a máquina quando a bateria estiver fraca."
-
-#: ../../services.pm_.c:18
-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 ""
-"Executa comandos agendados pelo comando at na hora especificada quando\n"
-"at foi executado, e executa comandos em grupo de comandos quando o uso de "
-"memória estiver suficientemente baixo."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron é um programa UNIX padrăo que executa programas especificados pelo\n"
-"utilizador em horas marcadas. vixie cron adiciona várias características ao "
-"UNIX\n"
-"cron básico, incluindo melhor segurança e melhores opçőes de configuraçăo."
-
-#: ../../services.pm_.c:23
-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 adiciona suporte de rato a aplicaçőes Linux em modo de texto\n"
-"tal como o Midnight Commander. Permite também copiar e colar utilizando\n"
-"o rato e inclui suporte para menus pop-up na consola."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"O HardDrake sonda o hardware, e opcionalmente\n"
-"configura hardware novo ou alterado."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache é um servidor World Wide Web. Ele é usado para servir ficheiros\n"
-"HTML e CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"O demónio (daemon) Internet superserver(normalmente chamado inetd) inicia\n"
-"uma variedade de outros serviços de Internet quando necessário. É "
-"responsável\n"
-"pela inicializaçăo de vários serviços, incluindo telnet, ftp, rsh e rlogin. "
-"Desactivando o inetd, todos os serviços pelos quais é responsável \n"
-"também săo desactivados."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Inicie o filtro de pacotes para Linux kernel 2.2, para criar \n"
-"uma firewall afim de proteger a sua máquina de ataques de rede."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Este pacote carrega o mapa de teclado seleccionado como\n"
-"definido em /etc/sysconfig/keyboard. Isto pode ser seleccionado usando o\n"
-"utilitário kbdconfig. Deve deixar isto activado para a maioria da máquinas."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Regeneraçăo automática do 'kernel header' em /boot \n"
-"para /usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Detecçăo e configuraçăo automática de hardware no arranque."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"O Linuxconf irá por vezes executar várias tarefas\n"
-"no arranque para manter a configuraçăo do sistema."
-
-#: ../../services.pm_.c:43
-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 é o demónio de impressăo obrigatório para o lpr funcionar "
-"correctamente.\n"
-"Ele é basicamente um servidor que controla os trabalhos para a(s) impressora"
-"(s)."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual Server, usado para criar um servidor de alta\n"
-"desempenho e disponibilidade."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) é um Servidor de Nome de Domínio (DNS) que é usado para\n"
-"transformar nomes de servidores em endereços IP."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Monta e desmonta todos os pontos de montagem do Network File\n"
-"System (NFS), SMB (Gestor de Rede/Windows) e NCP (NetWare)."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Activa/Desactiva todas os interfaces de rede configurados para iniciar\n"
-"no arranque."
-
-#: ../../services.pm_.c:52
-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 é um protocolo popular usado na partilha de ficheiros através\n"
-"de redes TCP/IP. Esse serviço oferece a funcionalidade do servidor NFS, que "
-"é configurado através do ficheiro /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS é um protocolo popular usado na partilha de ficheiros através de redes\n"
-"TCP/IP. Esse serviço oferece a funcionalidade de bloquear ficheiros NFS."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Automaticamente ligar o teclado numérico na consola\n"
-"e XFree no arranque."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Suporte a OKI 4w e 'winprinters' compatíveis."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"Suporte PCMCIA é utilizado normalmente para suportar coisas como\n"
-"ethernet ou modems em portáteis. Ele năo será iniciado a năo ser que seja "
-"configurado de maneira que\n"
-"seguro estar instalado em máquinas que năo precisem dele."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"O portmapper gere ligaçőes RPC, que săo usadas por\n"
-"protocolos como NFS ou NIS. O servidor portmap tem que estar a correr nas "
-"máquinas\n"
-"que actuarăo como servidores para os protocolos que utilizam o mecanismo RPC."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix é um Agente de Transporte de Correio, um programa\n"
-"que move mensagens de correio de uma máquina para outra."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Guarda e restaura o 'entropy pool' do sistema para melhor qualidade\n"
-"na geraçăo aleatória de números."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Designa dispositivos 'raw' a dispositivos de bloco (como \n"
-"partiçőes de disco duro), para o uso de aplicaçőes como Oracle"
-
-#: ../../services.pm_.c:71
-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 ""
-"O demónio routed permite a actualizaçăo automática da tabela IP Router\n"
-"através do protocolo RIP. Enquanto o RIP é usado largamente em pequenas\n"
-"redes, protocolos de 'routing' mais complexos săo necessários em redes mais "
-"complexas."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"O protocolo rstat permite que utilizadores da rede recebam\n"
-"informaçőes sobre a performance de qualquer máquina naquela rede."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"O protocolo rusers permite que os utilizadores de uma rede identifiquem\n"
-"quem está registado (logged) noutras máquinas que respondam."
-
-#: ../../services.pm_.c:78
-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 ""
-"O protocolo rwho permite que utilizadores remotos obtenham uma lista de "
-"todos os\n"
-"utilizadores registados (logged) numa máquina a correr o demónio rwho "
-"(similar ao finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Iniciar o sistema de som na sua máquina"
-
-#: ../../services.pm_.c:81
-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 é uma capacidade que muitos demónios usam para registar mensagens\n"
-"em vários ficheiros de registo. É uma boa ideia correr sempre o syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Carrega os driver para os seus dispositivos usb."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Inicia o Servidor X Font (essencial para o XFree funcionar)"
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-"Escolha quais os serviços que devem ser inicializados automaticamente na "
-"altura do arranque"
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Impressora"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Modo do sistema"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Opçőes da impressora lpd Remota"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Base de Dados"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Serviços"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "a correr"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "parado"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Serviços e demónios"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Năo há informaçăo adicional\n"
-"sobre este serviço, lamento."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Ao arrancar"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Estado:"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Sector"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Resto do mundo"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Acesso Internet"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimédia - Gráficos"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Desenvolvimento"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Centro de Controlo"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Interface de rede"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "Anfitriăo servidor SMB"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Jogos"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Perito"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "A instalar pacote %s"
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Eu năo consigo ler sua tabela de partiçőes, é demasiado defeituosa\n"
-"para mim. Tentarei continuar limpando as partiçőes defeituosas"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Erro"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Configuraçăo pós-instalaçăo"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Configuraçăo do Estilo de Arranque"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Parabéns!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Instalar"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Adicionar um utilizador"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "A formatar o ficheiro loopback %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Ficheiro de cópia de segurança defeituoso"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Ficheiro de cópia de segurança defeituoso"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Ficheiro de cópia de segurança defeituoso"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Selecçăo de Pacotes"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Por favor escolha os pacotes que quer instalar."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Remover entrada"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Remover Windows(TM)"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Nome de utilizador"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Por favor teste o rato"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Por favor tente novamente"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Por favor tente novamente"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "reintroduza a palavra-passe"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Ligaçăo ŕ LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Seleccionar Ligaçăo da Impressora"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Por favor escolha o tipo de teclado."
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Por favor clique numa partiçăo"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Por favor escolha os pacotes que quer instalar."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Ficheiro de cópia de segurança defeituoso"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Por favor teste o rato"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Ficheiro de cópia de segurança defeituoso"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Interface de rede"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Nome de utilizador"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Por favor escolha os pacotes que quer instalar."
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Por favor escolha o idioma a ser utilizado."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Detecçăo de discos rígidos"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Nome de utilizador"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "Roda"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "Roda"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Opçőes do módulo:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Configuraçăo da Rede"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Por favor escolha os pacotes que quer instalar."
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Por favor escolha os pacotes que quer instalar."
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Configurar sistemas de ficheiros"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Opçőes"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Por favor escolha a que porta série o seu modem está ligado."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Configuraçăo da Rede"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Ficheiro de cópia de segurança defeituoso"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Por favor escolha o tipo de rato."
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Ficheiro de cópia de segurança defeituoso"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Por favor escolha o tipo de rato."
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Outro"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Instalar sistema"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Personalizado"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- Anterior"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Estado:"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Ficheiro de cópia de segurança defeituoso"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Personalizado"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Próximo ->"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Escolha os pacotes a serem instalados"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Por favor escolha o idioma a ser utilizado."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Por favor escolha o idioma a ser utilizado."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Por favor escolha o idioma a ser utilizado."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Ficheiro de cópia de segurança defeituoso"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Ficheiro de cópia de segurança defeituoso"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Ficheiro de cópia de segurança defeituoso"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "A detectar dispositivos..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Por favor teste o rato"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Por favor escolha os pacotes que quer instalar."
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Configuraçăo da Rede"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Configuraçăo da Rede"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Configuraçăo"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Configuraçăo LAN"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Configurar sistemas de ficheiros"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "A Instalaçăo do %s falhou. Ocorreram os seguintes erros:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "nenhuma placa de rede encontrada"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Pronto"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "A preparar a instalaçăo"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "restringir"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Formatar partiçőes"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuraçăo LAN"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Ponto de Montagem"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Escolha as partiçőes que quer formatar"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Escritório"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Abortar"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Impressora"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Instalar sistema"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Seleccione ficheiro"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Impressora remota"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
-msgid "Initials tests"
-msgstr "Mensagem Init"
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Nenhum adaptador de rede no seu sistema!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Instalar"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Nenhum adaptador de rede no seu sistema!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Sair da instalaçăo"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Partilha da Ligaçăo ŕ Internet"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "A Partilha da Ligaçăo ŕ Internet está activa"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"A configuraçăo da Partilha da Ligaçăo ŕ Internet já foi feita.\n"
-"Está neste momento activa.\n"
-"\n"
-"O que deseja fazer?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "desactivar"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "libertar"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "reconfigurar"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "A desactivar servidores..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Partilha da Ligaçăo ŕ Internet está agora desactivada."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "A Partilha da Ligaçăo ŕ Internet está actualmente desactivada"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"A configuraçăo da Partilha da Ligaçăo ŕ Internet já foi feita.\n"
-"Está neste momento desactivada.\n"
-"\n"
-"O que deseja fazer?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "activar"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "A activar servidores..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Partilha da Ligaçăo ŕ Internet está agora activa."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Estás prestes a configurar o seu computador para partilhar a Ligaçăo ŕ "
-"Internet.\n"
-"Com esta capacidade, outros computadores na sua rede local poderăo usar a "
-"ligaçăo ŕ Internet deste computador\n"
-"\n"
-"Nota: necessita de um Adaptador de Rede dedicado para configurar uma Rede de "
-"Área Local (LAN)."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interface %s (a usar módulo %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Interface %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Nenhum adaptador de rede no seu sistema!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Nenhum adaptador de rede foi encontrado no seu sistema. Por favor execute a "
-"ferramenta de configuraçăo de hardware."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Interface de rede"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Existe apenas um adaptador de rede configurado no seu sistema:\n"
-"\n"
-"%s\n"
-"\n"
-"Estou prestes a configurar a sua Rede de Área Local com esse adaptador."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Por favor escolha qual adaptador de rede que estará ligado a sua Rede de "
-"Área Local."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Monitor năo configurado"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Configuraçăo do Estilo de Arranque"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Configuraçăo da Internet"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "IP do servidor CUPS"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Potencial conflito de endereços de LAN encontrado na configuraçăo actual de %"
-"s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Configuraçăo de firewall detectada!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Aviso! Uma configuraçăo de firewall existente foi detectada. Pode necessitar "
-"de configuraçăo manual depois da instalaçăo."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "A configurar..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "A configurar scripts, a instalar software, iniciando servidores..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemas a instalar o pacote %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Tudo foi configurado.\n"
-"Pode agora partilhar a sua Ligaçăo ŕ Internet com outros computadores na sua "
-"Rede Local, usando a configuraçăo de rede automática (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "A configuraçăo já foi feita, mas está actualmente desactivada."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "A configuraçăo já foi feita, e está actualmente activa."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Nenhuma Partilha da Ligaçăo ŕ Internet foi alguma vez configurada."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Configuraçăo da Partilha de Ligaçăo ŕ Internet"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Bem-Vindo ao utilitário de Partilha da Ligaçăo ŕ Internet!\n"
-"\n"
-"%s\n"
-"\n"
-"Clique em Configurar para iniciar o assistente de configuraçăo."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuraçăo de Rede (%d adaptadores)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Eliminar perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil a eliminar:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novo perfil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostname: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Acesso Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Estado:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurar Acesso ŕ Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuraçăo LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Driver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocolo"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Estado:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurar Rede de Área Local."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistente..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplicar"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Por favor aguarde... A aplicar a configuraçăo"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Ligado"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Năo ligado"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Ligar..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Desligar..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Năo tem nenhum interface configurado.\n"
-"Para configurar primeiro clique em 'Configurar'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuraçăo LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocolo de Arranque"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciado ao arrancar"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Activo"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Activo"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Năo tem nenhuma ligaçăo ŕ Internet.\n"
-"Crie uma clicando em 'Configurar'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuraçăo da Ligaçăo ŕ Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuraçăo da Ligaçăo ŕ Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipo de Ligaçăo:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parâmetros"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Placa Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP Client"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Opçőes do nível de segurança"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Centro de Controlo"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Escolha a ferramenta que deseja usar"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Canadiano (Quebec)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Islandęs"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "série"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "uso: keyboarddrake [--expert] [teclado]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Por favor escolha o tipo de teclado."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Deseja que o BackSpace funcione como Delete na consola?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Troque de CD-Rom"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Por favor insira o CD-Rom de Instalaçăo no seu drive e prima OK quando "
-"estiver pronto.\n"
-"Se năo o tiver, prima Cancelar para evitar a actualizaçăo directa."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Năo é possível iniciar actualizaçăo directa!!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-#, fuzzy
-msgid "Show only for the selected day"
-msgstr "Mostrar apenas para este dia"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Ficheiro/_Novo"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Ficheiro/_Abrir"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Ficheiro/_Guardar"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Ficheiro/Guardar _Como"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Ficheiro/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Opçőes"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Opçőes/Teste"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ajuda"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Ajuda/_Sobre..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Nome de utilizador"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "mensagens"
-
-#: ../../standalone/logdrake_.c:175
-#, fuzzy
-msgid "Syslog"
-msgstr "syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "pesquisa"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Uma ferramenta para monitorizar os seus logs"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Configuraçăo"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "correspondęncia"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "mas năo há correspondęncia"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Escolha ficheiro"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Calendário"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Conteudo do ficheiro"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "aguarde por favor, a analisar ficheiro: %s"
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Configuraçăo leve"
-
-#: ../../standalone/logdrake_.c:406
-#, fuzzy
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Bem vindo ao utilitário de configuraçăo de proxy.\n"
-"\n"
-"Aqui, poderá definir as proxies http e ftp\n"
-"com ou sem utilizador e palavra-passe\n"
-
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache e Pro-ftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "Serviços"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "A formatar"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Configuraçăo da Internet"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Guardar como..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Por favor escolha o tipo de rato."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "nenhum usb_série encontrado\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Deseja emulaçăo de 3 botőes?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Seleccione uma placa gráfica"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Dispositivo de arranque"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Configuraçăo de firewalling"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Configuraçăo de firewalling"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"Firewalling\n"
-"\n"
-"Já configurou a firewalll.\n"
-"Clique em Configurar para alterar ou remover a firewall"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewalling\n"
-"\n"
-"Clique em Configurar para configurar uma firewall padrăo"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Escolha a seu idioma"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Seleccione a classe da instalaçăo"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Detecçăo de discos rígidos"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Configurar rato"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Escolha o seu teclado"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Segurança"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Configurar sistemas de ficheiros"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formatar partiçőes"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Escolha os pacotes a serem instalados"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Instalar sistema"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Adicionar um utilizador"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Configurar rede"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Configurar serviços"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Instalar carregador de arranque"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Criar um disco de arranque"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Configurar X"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Instalar sistema"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Sair da instalaçăo"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"Configurador do tinyfirewall\n"
-"\n"
-"Configura uma firewall pessoal para esta máquina Linux Mandrake.\n"
-"Para uma firewall poderosa e dedicada, por favor procure a \n"
-"distribuiçăo especializada MandrakeSecurity Firewall"
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Está a correr um servidor de nomes nesta máquina? Se năo definiu \n"
-"um para enviar informaçőes de IP e zona a toda a Internet por favor \n"
-"responda năo.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Deseja autorizar ligaçőes Secure Shell (ssh) recebidas do exterior? \n"
-"Isto é um substituto de telnet que pode utilizar para efectuar o login.\n"
-"Se estiver a utilizar telnet agora, deve mudar para ssh. telnet năo é \n"
-"encriptado -- possibilitando o roubo da sua palavra-passe se o usar\n"
-"ssh é encriptado e năo autoriza este 'eavesdropping'."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Deseja autorizar ligaçőes telnet recebidas do exterior?\n"
-"Isto é muito inseguro, como já explicamos. Nós recomendamos\n"
-"vivamente responder Năo aqui e usar ssh em vez de telnet.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Está a correr um servidor FTP aqui que necessita que esteja acessível na\n"
-"Internet? Se estiver, recomendamos que apenas o utilize para transferęncias\n"
-"Anónimas. Quaisquer palavras-passe enviadas por FTP podem ser roubadas,\n"
-" uma vez que o FTP também năo utiliza encriptaçăo para palavras-passe.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Está a correr um servidor de correio aqui? Se está a enviar a si \n"
-"mensagens através do pine, mutt ou outro cliente de correio base-\n"
-"ado em texto provavelmente está. De outra forma deveria remover \n"
-"o firewall para isto.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Esta a correr um servidor POP OU IMAP aqui? Isto seria\n"
-"usado para albergar contas de correio năo baseadas na web\n"
-"para pessoas via esta máquina.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Aparentemente está a correr um kernel 2.2. Se o seu IP de \n"
-"Rede é automaticamente definido por um computador na sua \n"
-"casa ou escritório (dinamicamente atribuído), necessitamos \n"
-"permitir isto. É este o caso?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"O seu computador está a sincronizar a hora com outro computador?\n"
-"Isto é usado por maioritariamente por organizaçőes Unix/Linux médias-\n"
-"grandes para sincronizar a hora para registos e assim. Se năo faz parte \n"
-"de um grande escritório e nunca ouviu falar disto, provavelmente năo \n"
-"estará."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Configuraçăo completa. Posso escrever estas mudanças no disco?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Năo é possível abrir %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Năo é possível abrir %s para escrita: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Configuraçăo de firewalling"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Por favor aguarde, a preparar a instalaçăo"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Computador de Rede (cliente)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "Servidor NFS, Servidor SMB, Servidor Proxy, Servidor SSH"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Escritório"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Estaçăo de Trabalho Gnome"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Ferramentas para o seu Palm Pilot ou Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Estaçăo de Trabalho"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Firewall/Router"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Servidor de Nome do Domínio e Informaçăo de Rede"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Programas de Escritório: texto (kword, abiword), folhas de cálculo (kspread, "
-"gnumeric), visualizadores pdf, etc"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Ferramentas para audio: reprodutores mp3 ou midi, misturadores, etc"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Livros e Howto's sobre o Linux e Software Livre"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Estaçăo de Trabalho KDE"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimédia - Vídeo"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-"Conjunto de ferramentas para correio electrónico, news, web, transferęncia "
-"de ficheiros e chat"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Base de Dados"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Servidor de Bases de Dados PostgreSQL ou MySQL"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Ferramentas para facilitar a configuraçăo do seu computador"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimédia - Som"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitários"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Documentaçăo"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Ferramentas de terminal"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix servidor de correio, Inn servidor de news "
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Estaçăo de Internet"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Estaçăo Multimédia"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Configuraçăo"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Mais Ambientes de Trabalho Gráficos (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"The K Desktop Environment, o ambiente gráfico básico com a colecçăo de "
-"ferramentas que o acompanham"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Ambiente Gráfico"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache e Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Ferramentas para criar e gravar CD"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Estaçăo de Trabalho de Escritório"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Servidor"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Aplicaçőes para gráficos como o The Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr ""
-"C e C++ bibliotecas de desenvolvimento, programas e ficheiros 'include'"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Computador de Rede Servidor"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Mail/Groupware/News"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Estaçăo de Jogo"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Reprodutores de Vídeo e editores"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimédia - Gráficos"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Programas de divertimento: arcade, tabuleiros, estratégia, etc"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Conjunto de ferramentas para ler e enviar correio electrónico e news (pine, "
-"mutt, tin...) e para navegar na Web"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arquivo, emuladores, monitorizaçăo"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Finanças Pessoais"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Um ambiente gráfico com um conjunto de aplicaçőes e ferramentas de ambiente "
-"de trabalho fáceis de usar"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Clientes para diferentes protocolos incluindo ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Gateway Internet"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Aplicaçőes de som e vídeo reproduçăo/ediçăo"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Outros Ambientes de Trabalho Gráficos"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editores, linhas de comando, ferramentas de ficheiro, terminais"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programas para gerir as suas finanças, como o gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Gestăo de Informaçőes Pessoais"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimédia - Gravaçăo de CDs"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Estaçăo de Trabalho Científica"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Abortar"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "Pronto"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Escolha o utilizador por omissăo :"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Impressora remota"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Agora pode indicar as opçőes para o módulo %s."
-
-#~ msgid "Low"
-#~ msgstr "Baixo"
-
-#~ msgid "Medium"
-#~ msgstr "Médio"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Alguns melhoramentos para este nível de segurança, o principal é \n"
-#~ "que existem mais avisos e testes de segurança."
-
-#~ msgid "mount failed"
-#~ msgstr "falhou ao montar"
-
-#~ msgid "Boot mode"
-#~ msgstr "Modo de arranque"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Perito"
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Ligar ŕ Internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Desligar da Internet"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Configurar ligaçăo de rede (LAN ou Internet)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Para qual disco quer mover?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Por favor escolha os pacotes que quer instalar."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Informaçăo"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Estaçăo de Trabalho Gnome"
-
-#~ msgid "authentification"
-#~ msgstr "autenticaçăo"
-
-#~ msgid "user"
-#~ msgstr "utilizador"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Por favor escolha o tipo de rato."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Sair"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Automontagem de Médias Amovíveis"
-
-#~ msgid "Active"
-#~ msgstr "Activo"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Năo"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Uma impressora, modelo \"%s\", foi detectado no(a) "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Dispositivo de Impressora Local"
-
-#~ msgid "Printer Device"
-#~ msgstr "Dispositivo da Impressora"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Servidor CUPS remoto"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Servidor CUPS remoto"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Modo do sistema"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Outro"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Por favor escolha o tipo de teclado."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Por favor clique numa partiçăo"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tipo: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Ficheiro de cópia de segurança defeituoso"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Configurar X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Dispositivo da Impressora"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Cancelar"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ok"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Fechar"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "A iniciar a sua ligaçăo..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "A fechar a sua ligaçăo..."
-
-#~ 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 ""
-#~ "A ligaçăo năo está fechada.\n"
-#~ "Tente fazę-lo manualmente executando\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "como root."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "O sistema está agora desligado."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Escolha o tamanho que deseja instalar"
-
-#~ msgid "Total size: "
-#~ msgstr "Tamanho total:"
-
-#~ msgid "Please wait, "
-#~ msgstr "Por favor aguarde, "
-
-#~ msgid "Total time "
-#~ msgstr "Tempo total "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Usar a configuraçăo existente para o X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "A que dispositivo a sua impressora está ligada \n"
-#~ "(note que /dev/lp0 é equivalente a LPT1:)?\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr "Aviso, o adaptador de rede já está configurado. Vou reconfigurá-lo."
-
-#~ msgid "New"
-#~ msgstr "Novo"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Fila remota"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Por favor clique numa partiçăo"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambiguidade (%s), seja mais preciso\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (por omissăo %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Sua escolha? (por omissăo %s introduza `nenhum' para nenhum) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "năo possível abrir /etc/sysconfig/autologin para leitura: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Deseja reiniciar a rede"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Concorda?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Estou pronto a reiniciar o dispositivo de rede:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Estou pronto para reiniciar o dispositivo de rede %s. Concorda?"
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Tipo de Ligaçăo:"
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Escolha o utilizador por omissăo :"
-
-#~ msgid "Test the mouse here."
-#~ msgstr "Teste aqui o rato."
-
-#~ msgid "What type of printer do you have?"
-#~ msgstr "Qual tipo de impressora que tem?"
-
-#~ msgid "Do you want to test printing?"
-#~ msgstr "Quer testar a impressăo?"
-
-#~ 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 ""
-#~ "Agora pode testar seu rato. Use os botőes e a roda para\n"
-#~ "verificar se as configuraçőes estăo correctas. Se năo estiverem, pode "
-#~ "clicar\n"
-#~ "em \"Cancelar\" e escolher outro driver."
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Para ter um sistema mais seguro, deve escolher \"Usar ficheiro shadow\"\n"
-#~ "e \"Usar senhas MD5\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Se a sua rede usa NIS, seleccione \"Usar NIS\". Se năo sabe, pergunte\n"
-#~ "ao seu administrador de rede."
-
-#~ msgid "yellow pages"
-#~ msgstr "páginas amarelas"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "DNS 1 do provedor"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "DNS 2 do provedor"
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Ligaçăo DSL (ou ADSL)"
-
-#~ msgid "Choose"
-#~ msgstr "Escolha"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "Vocę pode directamente especificar o URI para aceder ŕ impressora com CUPS"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Sim, imprimir página de teste ASCII"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Sim, imprimir página de teste PostScript"
-
-#~ msgid "Yes, print both test pages"
-#~ msgstr "Sim, imprimir ambas as páginas de teste"
-
-#~ msgid "Paper Size"
-#~ msgstr "Tamanho do Papel"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Ejectar página após trabalho de impressăo?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Opçőes do driver Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "Opçőes da profundidade de cor"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Imprimir texto como PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Corrigir texto com stair-stepping?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Número de páginas por páginas de saída"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Margem Direita/Esquerda em pontos (1/72 de polegada)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Margem Superior/Inferior em pontos (1/72 de polegada)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Opçőes extras de GhostScript"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Opçőes extras de Texto"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Inverter a ordem das páginas"
-
-#~ msgid "Reading CUPS drivers database..."
-#~ msgstr "Lendo banco de dados de drivers do CUPS"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Seleccionar ligaçăo de impressora remota"
-
-#~ 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 ""
-#~ "Com um servidor CUPS remoto, năo tem que configurar\n"
-#~ "nenhuma impressora aqui; elas serăo detectadas automaticamente.\n"
-#~ "Se tiver dúvidas, seleccione \"Servidor CUPS remoto\"."
-
-#~ 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 ""
-#~ "Cada impressora precisa de um nome (por exemplo\n"
-#~ "lp). Outros parâmetros, tal como a descriçăo da impressora ou sua\n"
-#~ "localizaçăo podem ser definidas. Qual nome que deve ser usado para \n"
-#~ " esta impressora e como a impressora está ligada?"
-
-#~ 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 ""
-#~ "Cada fila de impressăo (ŕ qual as impressőes săo dirigidas) precisa\n"
-#~ "de um nome (normalmente lp) e de uma directoria de spool associada.\n"
-#~ "Qual o nome e a directoria que devem ser utilizados para esta fila?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Nome da fila de impressăo"
-
-#~ msgid "Spool directory"
-#~ msgstr "Directoria de spool"
diff --git a/perl-install/share/po/pt_BR.po b/perl-install/share/po/pt_BR.po
deleted file mode 100644
index ec0a82624..000000000
--- a/perl-install/share/po/pt_BR.po
+++ /dev/null
@@ -1,12055 +0,0 @@
-# DRAKX PT_BR PO FILE.
-# Copyright (C) 2000 MandrakeSoft
-# Andrei Bosco Bezerra Torres <andreibt@uol.com.br>, 1999-2000
-# Bruno Dorfman Buys <brunobuys@zipmail.com.br>, 2002
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-02-20 23:55GMT -2\n"
-"Last-Translator: Bruno Dorfman Buys <brunobuys@zipmail.com.br>\n"
-"Language-Team: Portugues\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configurar todas as cabeças independentemente"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Usar extensăo Xinerama"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configurar apenas placa \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Configuraçăo multi-cabeça"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Seu sistema suporta configuraçăo de cabeça múltipla.\n"
-"O que vocę quer fazer?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Placa Gráfica"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Selecione uma placa gráfica"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Escolha um servidor X"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Escolha um servidor X"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Servidor X"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Qual configuraçăo do XFree vocę quer ter?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Seu placa suporta aceleraçăo hardware 3D mas apenas com o XFree %s.\n"
-"Sua placa é suportada pelo XFree %s que pode ter melhor suporte 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Sua placa suporta aceleraçăo hardware 3D com o XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s com aceleraçăo hardware 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Seu placa suporta aceleraçăo hardware 3D com o XFree %s,\n"
-"NOTE QUE O SUPORTE É EXPERIMENTAL E PODE TRAVAR O SEU COMPUTADOR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s com aceleraçăo hardware 3D EXPERIMENTAL"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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 ""
-"Seu placa suporta aceleraçăo hardware 3D mas apenas com o XFree %s,\n"
-"NOTE QUE O SUPORTE É EXPERIMENTAL E PODE TRAVAR O SEU COMPUTADOR.\n"
-"Sua placa é suportada pelo XFree %s que pode ter melhor suporte 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installation display driver)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuraçăo do XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Selecione o tamanho da memória de sua placa gráfica"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Escolha as opçőes do server"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Escolha um monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Dois parâmetros críticos săo a taxa de atualizaçăo vertical, que é a taxa\n"
-"em que toda a tela é atualizada, e principalmente a taxa de sincronizaçăo\n"
-"horizontal, que é a taxa em que scanlines săo mostradas.\n"
-"\n"
-"É MUITO IMPORTANTE que vocę năo especifique um tipo de monitor com taxa de "
-"atualizaçă\n"
-"que é muito além das capacidades do seu monitor: vocę pode danificar seu "
-"monitor.\n"
-" Se tiver dúvida, escolha características conservadoras."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Taxa de atualizaçăo horizontal"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Taxa de atualizaçăo vertical"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor năo configurado"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Placa gráfica ainda năo configurado"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resoluçőes ainda năo escolhidas"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Vocę quer testar a configuraçăo?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Atençăo: testar essa placa gráfica pode travar o seu computador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Testar configuraçăo"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"tente mudar alguns parâmetros"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Ocorreu um erro:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Saindo em %d segundos"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "É essa a configuraçăo correta?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Ocorreu um erro, tente mudar alguns parâmetros"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Resoluçăo"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Escolha a resoluçăo e número de cores"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Placa Gráfica: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Server XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Mais"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modo Avançado"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mostrar tudo"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resoluçőes"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Estilo do teclado: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Tipo do Mouse: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Dispositivo do mouse: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Sincronizaçăo Horizontal do Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Atualizaçăo Vertical do Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Placa Gráfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identificaçăo de Placa Gráfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Memória gráfica: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Número de cores: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Resoluçăo: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Server XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Driver XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Preparando configuraçăo X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "O que vocę quer fazer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Mudar Monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Mudar Placa Gráfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Mudar opçőes do Server"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Mudar Resoluçăo"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostrar informaçăo"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Testar de novo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Sair"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Manter alteraçőes?\n"
-"A configuraçăo atual é:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X ao iniciar"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Eu posso fazer seu computador automaticamento iniciar no X após a\n"
-"a inicializaçăo. Vocę gostaria de iniciar o X quando reiniciar?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Favor relogar em %s para ativar as mudanças"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-"Favor fazer um log out (sair) e entăo usar as teclas Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 cores (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil cores (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil cores (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milhőes de cores (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 bilhőes de cores (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB ou mais"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA Padrăo, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatível com 8514, 1024x768 a 87 Hz entrelaçado (sem 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrelaçado, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA Extendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA Năo-entrelaçado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA de Alta Frequęncia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequęncia que pode fazer 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequęncia que pode fazer 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequęncia que pode fazer 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor que pode fazer 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor que pode fazer 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Primeiro setor da partiçăo de boot"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Primeiro setor do drive (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Instalaçăo do SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Onde vocę quer instalar o gerenciador de inicializaçăo?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Instalaçăo do LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO com menu de texto"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO com menu gráfico"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Inicializaçăo pelo DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Principais opçőes do gerenciador de inicializaçăo"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Gerenciador de inicializaçăo a ser usado"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Instalaçăo do gerenciador de inicializaçăo"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Dispositivo de boot"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (năo funciona em BIOS antigas)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Compacto"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "Compacto"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Modo de Vídeo"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Tempo antes de entrar na imagem padrăo"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Senha"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Senha (de novo)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Restringir opçőes da linha de comando"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "restrito"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Limpar /tmp a cada inicializaçăo"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Especifique o tamanho da RAM se necessário (%d MB encontrados)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Permitir vários perfis"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Dar o tamanha da RAM em Mb"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Opçăo ``Restringir opçőes da linha de comando'' năo tem uso sem senha"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Favor tentar novamente"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "As senhas năo conferem"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Mensagem Inicial"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Delay do firmware aberto"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Tempo de espera do boot do kernel"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Permitir CD Boot?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Permitir OF Boot?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "SO padrăo?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Aqui estăo as entradas diferentes.\n"
-"Vocę pode adicionar mais ou modificar as existentes."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Adicionar"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Pronto"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Modificar"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Qual tipo de entrada vocę quer adicionar"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Outros SO (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Outros SO (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Outros SO (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Image"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Append"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Read-write"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Table"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Unsafe"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Rótulo"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Default"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Tamanho do Initrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "Sem vídeo"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Remover entrada"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Năo é permitido rótulo vazio"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Vocę deve especificar uma imagem de kernel"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Vocę deve especificar uma partiçăo root"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Esse rótulo já está sendo utilizado"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Interfaces %s %s encontradas"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Vocę tem alguma outra?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Vocę tem alguma interface %s?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Năo"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Sim"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Ver informaçăo do hardware"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instalando driver para placa %s %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(módulo %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Qual driver %s eu deveria tentar?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Em alguns casos, o driver %s precisa de informaçőes extra para funcionar\n"
-"corretamente, mas ele normalmente funciona bem sem essas informaçőes. Vocę\n"
-"gostaria de especificar opçőes extras ou deixar o driver localizar na sua\n"
-"máquina as informaçőes que ele precisa? Ocasionalmente, isso poderá travar\n"
-"o computador, mas năo deve causar nenhum dano."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Auto detectar"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Especificar opçőes"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Agora vocę pode prover as opçőes para o módulo %s.\n"
-"As opçőes estăo no formato ``nome=valor nome2=valor2 ...''\n"
-"Para instância, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opçőes do módulo:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Falha carregando módulo %s.\n"
-"Vocę quer tentar novamente com outros parâmentros?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "Acesso a programas X"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "Acesso a ferramentas rpm"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "Permitir \"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "Acesso a arquivos administrativos"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(já adicionado %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Essa senha é muito simples"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Favor dar um nome de usuário"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"O nome do usuário deve conter apenas letras minúsculas, números `-' e `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Esse usuário já foi adicionado"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Adicionar usuário"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Entre com o usuário\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Aceitar usuário"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Nome real"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Nome do usuário"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ícone"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Autologin"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Eu posso configurar o seu computador para automaticamente logar um usuário.\n"
-"Se vocę năo quiser utilisar esta funçăo, clique em \"Cancelar\"."
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Escolha o usuário:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Escolha o gerenciador de janelas para ele:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Favor escolher o idioma a ser utilizado."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr ""
-"Vocę pode escolher outros idiomas que estarăo disponíveis após a instalaçăo"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Tudo"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Permite todos os usuários"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalizada"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Sem compartilhamento"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "O pacote %s precisa ser instalado. Vocę deseja instalá-lo?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Vocę pode exportar usando SAMBA ou NFS. Qual deles vocę quer"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Pacote obrigatório %s faltando"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr "Carregar Userdrake"
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-"O compartilhamento por usuário usa o grupo \"fileshare\".\n"
-"Vocę pode usar o userdrake para adicionar um usuário neste grupo."
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Bem-vindo ŕ Crackers"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Pobre"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Padrăo"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Alto"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Alto"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranóico"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Esse nível deve ser usado com cuidado. Ele faz o seu sistema mais fácil de "
-"usar,\n"
-"mas muito sensível: ele năo deve ser usado em uma máquina conectada a "
-"outros\n"
-"ou ŕ internet. Năo existe acesso por senha."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"As senhas agora estăo ativadas, mas o uso como computador de rede ainda năo "
-"é recomendado."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Esse é a segurança padrăo recomendada para um computador que será usado\n"
-"para se conectar ŕ Internet como um cliente. Agora existe checagens de "
-"segurança. "
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Com esse nível de segurança, o uso desse sistema como um servidor se tornou "
-"possível.\n"
-"A segurança agora está alta o suficiente para usar o sistema como um "
-"servidor\n"
-"que aceita conexăo de muitos clientes. "
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Baseado no nível anterior, mas agora o sistema está totalmente fechado.\n"
-"As características de segurança estăo no máximo."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Escolha nível de segurança"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Nível de segurança"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Use lbsafe para servidores"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Uma livraria que defende contra ataques de buffer overflow e strings de "
-"format"
-
-# 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)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Bem-vindo ao %s, o selecionador de sistema operacional!\n"
-"\n"
-"Escolha um sistema operacional da lista acima ou\n"
-"aguarde %d segundos para entrar no sistema padrao.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Bem-vindo ao GRUB o selecionador de sistema operacional!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Use as teclas %c e %c para selecionar a entrada que quiser."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Pressione entrar para entrar no SO selecionado, 'e' para editar os"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "comandos antes da inicializacao, ou 'c' para linha de comando."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr ""
-"A inicializacao da entrada selecionada ocorrera automaticamente em %d "
-"segundos."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "sem espaco suficiente em /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Desktop"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Menu Iniciar"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Vocę năo pode instalar o carregador de boot em uma %s partiçăo\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "ajuda ainda năo implementada.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Configuraçăo do estilo de inicializaçăo"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Arquivos"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Arquivo/Sai_r"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>R"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Categorizamento NewStyle de Monitor"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Monitor NewStyle"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Monitor Tradicional"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Monitor Gtk+ Tradicional"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Executar Aurora na inicializaçăo"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Modo lilo/grub"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Modo yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Vocę está utilizando o %s como gerenciador de inicializaçăo.\n"
-"Clique em Configurar para abrir o auxiliar de configuraçăo."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Configurar"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Modo do sistema"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Executar o sistema X-Window na inicializaçăo"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Năo, eu năo quero autologin"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Sim, eu quero autologin com esse (usuário, desktop)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "năo foi possívek abrir /etc/inittb para leitura: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutos"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minuto"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d segundos"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Năo posso fazer screenshots antes de particionar"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Screenshots estarăo disponíveis depois da instalaçăo em %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "França"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "Bélgica"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "República Tcheca"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Alemanha"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Grécia"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Noruega"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Suécia"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Holanda"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Itália"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Áustria"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Estados Unidos"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Favor primeiro fazer um backup de seus dados"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Ler com atençăo!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Se vocę planejar usar aboot, lembre-se de deixar espaço livre (2048 setores "
-"é suficiente)\n"
-"no início do disco"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Erro"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Ajudante"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Escolher açăo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Vocę tem uma grande partiçăo fat\n"
-"(normalmente utilizada pelo MicroSoft Dos/Windows.)\n"
-"Eu sugiro vocę a primeiro redimensionar a partiçăo\n"
-"(clique nela, depois clique em \"Redimensinar\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Favor clicar em uma partiçăo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detalhes"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Vazio"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Outro"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Tipos de sistema de arquivo:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Criar"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tipo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Use ``%s'' ao invés"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Deletar"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Use ``Desmontar'' primeiro"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Após alterar o tipo da partiçăo %s, todos os dados desta partiçăo serăo "
-"perdidos"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Escolher partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Escolher outra partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Sair"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Mudar para modo expert"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Mudar para modo normal"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Desfazer"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Continuar mesmo assim?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Sair sem salvar"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Sair sem gravar na tabela de partiçăo?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Vocę quer salvar as modificaçőes /etc/fstab"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Auto alocar"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Limpar tudo"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Informaçăo de discos rigidos"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Todas as partiçőes primárias estăo sendo usadas"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Eu năo posso adicionar mais nenhuma partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Para ter mais partiçőes, favor deletar uma para poder criar uma partiçăo "
-"extendida"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Gravar tabela de partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Restaurar tabela de partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Recuperar tabela de partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Recuperar tabela de partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Auto-montagem da mídia removível"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Selecione arquivo"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"O backup da tabela de partiçăo năo tem o mesmo tamanho\n"
-"Ainda continuar?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Aviso"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Insira um disquete no drive\n"
-"Todos os dados no disquete serăo perdidos"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Tentando resgatar tabela de partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Mostrar informaçăo detalhada"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Ponto de Montagem"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Opçőes"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Redimensionar"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Mover"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatar"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Montar"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Adicionar ao RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Adicionar ao LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Desmontar"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Remover do RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Remover do LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Modificar RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Usar para loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Criar uma nova partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Setor inicial: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Tamanho em MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Tipo do Sistema de Arquivos: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Ponto de montagem: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Preferęncia: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Remove o arquivo de loopback?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Mudar tipo de partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Qual sistema de arquivos vocę quer?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Mudando de ext2 para ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Onde vocę quer montar o arquivo loopback %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Onde vocę quer montar o dispositivo %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Năo posso desmacar o ponto de montagem enquanto a partiçăo for\n"
-"usada para loop back. Remova o loopback primeiro"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Computando limites do sistema de arquivo fat"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Redimensionando"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Esta partiçăo năo é redimensionável"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Vocę deveria fazer backup de todos os dados desta partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Após redimensionar a particăo %s, todos os dados da partiçăo serăo perdidos"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Escolha o novo tamanho"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Novo tamanho em MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Qual disco vocę quer mover?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Setor"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Qual setor vocę quer mover?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Movendo"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Movendo partiçăo..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Escolha um RAID existente para adicionar"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "novo"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Escolha um LVM existente para adicionar"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "Nome LVM?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Essa partiçăo năo pode ser usada para loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Nome do arquivo loopback: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Dę um nome de arquivo"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Arquivo já utilizado por outro loopback, escolha outro"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Arquivo já existe. Utilizá-lo?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Opçőes de montagem"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Vários"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "dispositivo"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "nível"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "tamanho do bloco"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Tenha cuidade: essa operaçăo é perigosa."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Qual tipo de particionamento?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Desculpe, eu năo aceitarei criar /boot tăo distante do driver (em um cilindo "
-"> 1024).\n"
-"Ou vocę usa LILO e ele năo funcionará, ou vocę năo usará LILO e vocę năo "
-"precisará de /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"A partiçăo que vocę selecionou para adicionar como root (/) é fisicamente "
-"localizada além\n"
-"do cilindro 1024 do disco rígido, e vocę năo possui uma partiçăo /boot.\n"
-"Se vocę quer usar o gerenciador de inicializaçăo LILO, năo esqueça "
-"deadicionar uma partiçăo /boot."
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Vocę selecionou uma partiçăo software RAID como root (/).\n"
-"O gerenciador de inicializaçăo năo consegue acessá-lo sem uma\n"
-"partiçăo /boot. Entăo năo esqueça de adicioná-la"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "A tabela de partiçăo do drive %s está para ser gravada no disco!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Vocę precisará reiniciar antes que as modificaçőes tenham efeito"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Após formatar a partiçăo %s, todos os dados desta partiçăo serăo perdidos"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formatando"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formatando arquivo loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formatando partiçăo %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Esconder arquivos"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Mover arquivos para nova partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"Diretório %s já contém alguns dados\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Movendo arquivos para a nova partiçăo"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Copiando %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Removing %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "Partiçăo %s agora chama-se %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Dispositivo: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Letra do drive no DOS: %s (apena um palpite)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tipo: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Nome: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Iniciar: setor: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Tamanho: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s setores"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cilindro %d ao cilindro %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formatado\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Năo formatado\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Montado\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Loopback file(s):\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partiçăo de inicializaçăo padrăo\n"
-" (para inicializaçăo do MS-DOS, năo para o lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Nível %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Tamanho do bloco %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Discos RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Nome do arquivo loopback: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"É provável que está partiçăo seja uma\n"
-"partiçăo Driver, vocę provavelmente\n"
-"năo deveria mexer nela.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Essa partiçăo especial\n"
-"Bootstrap é para o\n"
-"boot-duplo do seu sistema.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Tamanho: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometria: %s cilindros, %s cabeças, %s setores\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Informaçăo: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Discos LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Tipo da tabela de partiçăo: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "no barramento %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Opçőes: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Chave criptográfica do sistema de arquivos"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Escolha a sua chave criptográfica do sistema de arquivos"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Essa chave é muito simples (deve ter ao menos %d caracteres)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "As chaves criptográficas năo conferem"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Chave criptográfica"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Chave criptográfica (de novo)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Mudar tipo"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Favor clicar em uma mídia"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-msgid "Search servers"
-msgstr "Servidores de busca"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formataçăo de %s falhou"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Eu năo sei como formatar %s no tipo %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck falhou sem código de saída %d ou sinal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "erro desmontando %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "simples"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "servidor"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Vocę năo pode usar JFS em partiçőes menores que 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Vocę năo pode usar ReiserFS em partiçőes menores que 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Pontos de montagem devem começar com uma /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Já existe uma partiçăo no ponto de montagem %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Vocę năo pode usar um Volume Lógivo LVM para o ponto de montagem %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Esse diretório deveria permanecer dentro do sistema de arquivo root"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Vocę precisa de um verdadeiro sistema de arquivo (ext2, reiserfs) para esse "
-"ponto de montagem\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-"Vocę năo pode usar um sistema de arquivos criptografado como ponto de "
-"montagem %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Sem espaço livre suficiente para auto-alocaçăo"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Nada a fazer"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Erro abrindo %s para gravaçăo: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Ocorreu um erro - nenhum dispositivo válido foi encontrado para criar novos "
-"sistema de arquivos. Favor checar seu hardware para a causa desse problema"
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Vocę năo tem nenhuma partiçăo!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-"GNU/Linux é um sistema multiusuário, e isto significa que cada usuário pode "
-"ter suas\n"
-"próprias preferęncias, seus próprios arquivos, e assim em diante. Vocę pode "
-"ler o \n"
-"``Guia do Usuário'' para aprender mais. Mas, ao contrário do \"root\", que é "
-"o administrador \n"
-"do sistema, os usuários a serem adicionados năo terăo direito a modificar "
-"nada, a năo \n"
-"ser seus próprios arquivos e suas próprias configuraçőes. Vocę deverá criar "
-"ao menos uma conta regular para vocę mesmo. Embora seja muito prático logar "
-"como \"root\" todo \n"
-"dia, também pode ser muito perigoso! O menor engano pode significar que o "
-"seu sistema\n"
-"năo funcionará mais. Se vocę comete um engano sério como usuário regular, "
-"vocę \n"
-"somente perde informaçăo, e năo o sistema inteiro.\n"
-"\n"
-"Primeiro vocę deve entrar o seu nome real. Isto năo é obrigatório, é claro "
-"-\n"
-"porque vocę pode entrar, na verdade, o que vocę quiser. DrakX irá, depois, "
-"pegar a \n"
-"primeira palavra que vocę digitou na caixa e colocar como \"User\n"
-"name\". Este é o nome que este usuário específico irá usar paralogar no "
-"sistema. \n"
-"Vocę pode mudá-lo. Depois vocę deverá entrar uma senha. Uma\n"
-"senha de usuário năo privilegiado (regular) năo é tăo crucial\n"
-"quanto a de \"root\", do ponto de vista da segurança, mas isto năo é razăo "
-"para\n"
-"negligenciar esta senha, pois afinal, săo os seus arquivos que estăo lá.\n"
-"\n"
-"Se vocę clicar em \"Aceitar usuário\" vocę poderá depois adicionar quantos "
-"quiser.\n"
-"Adicione um usuário para cada um dos seus amigos: seu pai, ou sua irmăo, "
-"por\n"
-"exemplo. Depois que terminar de adicionar os usuários, selecione \"Feito\".\n"
-"\n"
-"Clicando em \"Avançado\" permite que vocę mude o \"shell\"\n"
-"default para aquele usuário (bash por default)."
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Acima estăo listadas as partiçőes Linux detectadas no\n"
-"seu disco rígido. Vocę pode manter as opçőes feitas pelo o ajudante, elas "
-"săo\n"
-"boas para o uso diário. Se vocę quiser alterar essas opçőes, vocę deve ao\n"
-"menos definir uma partiçăo (\"/\"). Năo escolhe uma partiçăo muito pequena "
-"ou vocę\n"
-"năo será capaz de instalar software suficiente. Se vocę quiser guardar seus "
-"dados em\n"
-"uma partiçăo separada, vocę precisa escolher uma \"/home\" (apenas possível "
-"se vocę\n"
-"tiver mais de uma partiçăo Linux disponível).\n"
-"\n"
-"Nota: cada partiçăo é listada da seguinte forma: \"Nome\", \"Capacidade\".\n"
-"\n"
-"\n"
-"\"Nome\" é codificado da seguinte maneira: \"tipo do disco rígido\", "
-"\"número\n"
-"do disco rígido\", \"número da partiçăo\" (por exemplo, \"hda1\").\n"
-"\n"
-"\n"
-"\"Tipo do disco rígido\" é \"hd\" se seu disco rígido for IDE e \"sd\"\n"
-"se ele for um disco rígido SCSI.\n"
-"\n"
-"\n"
-"\"Número do disco rígido\" é sempre uma letra depois de \"hd\" ou \"sd\".Com "
-"discos rígidos IDE:\n"
-"\n"
-" * \"a\" significa \"disco rígido mestre na controladora IDE primária\",\n"
-"\n"
-" * \"b\" significa \"disco rígido escravo na controladora IDE primária\",\n"
-"\n"
-" * \"c\" significa \"disco rígido mestre na controladora IDE secundária"
-"\",\n"
-"\n"
-" * \"d\" significa \"disco rígido escravo na controladora IDE secundária"
-"\",\n"
-"\n"
-"\n"
-"Com discos rígidos SCSI, um significa \"disco rígido primário\", um \"b\" "
-"significa \"disco rígido secundário\", etc..."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-"O instalador do Linux Mandrake está espalhado em diferentes CD-ROMS. O "
-"DrakX\n"
-"sabe se um pacote selecionado está localizado em outro CD-ROM e irá ejetar\n"
-"o CD-ROM atual e pedir para vocę inserir o CD-ROM necessário."
-
-#: ../../help.pm_.c:77
-#, fuzzy
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-"Agora vocę deverá especificar quais programas vocę deseja instalar no seu\n"
-"sistema. Existem milhares de pacotes disponíveis para o Mandrake Linux, e\n"
-"vocę năo precisa conhecę-los todos de cabeça.\n"
-"\n"
-"Se vocę está fazendo uma instalaçăo padrăo por CD-ROM, vocę primeiro\n"
-"será questionado sobre que CDs vocę tem (somente em modo expert). Confirme\n"
-"os nomes dos CDs e cheque as caixas de diálogo correspondentes aos CDs\n"
-"que vocę tem disponíveis. Clique \"OK\" quando estiver pronto para "
-"continuar.\n"
-"\n"
-"Os pacotes estăo separados em grupos correspondendo a um uso particular\n"
-"da sua máquina. Os grupos estăo organizados em quatro sessőes:\n"
-"\n"
-" * \"Workstation\": Se vocę planeja usar sua máquina como estaçăo de "
-"trabalho, selecione\n"
-"um ou mais dos grupos correspondentes.\n"
-"\n"
-" * \"Development\": Se a máquina será usada para programaçăo, escolha o\n"
-"grupo desejado(s).\n"
-"\n"
-" * \"Server\": se a máquina será um servidor, vocę poderá escolher\n"
-"quais dos serviços mais comuns vocę deseja instalar na\n"
-"máquina.\n"
-"\n"
-" * \"Graphical Environment\": finalmente, este é onde vocę irá escolher seu\n"
-"ambiente gráfico preferido. Pelo menos um tem que ser selecionado, se vocę "
-"quer\n"
-"ter uma estaçăo de trabalho gráfica!\n"
-"\n"
-"Movendo o mouse em cima de um nome de grupo irá mostrar uma pequena "
-"explicaçăo\n"
-"sobre o grupo. Se vocę năo selecionar nenhum grupo enquanto faz\n"
-"uma instalaçăo regular (em oposiçăo a um upgrade); um diálogo irá aparecer\n"
-"propondo um tipo diferente de instalaçăo mínima:\n"
-"\n"
-" * Irá instalar o mínimo necessário para ter um sistema linux rodando,\n"
-"em linha de comando somente.\n"
-"\n"
-" * Instalar o sistema básico e mais os aplicativos básicos\n"
-"\n"
-" * Instalar os pacotes mínimos necessários para ter um ambiente gráfico\n"
-"\n"
-"Vocę pode checar a caixa \"Selecăo individual de pacotes\", que é útil se\n"
-"vocę está familiarizado com os pacotes sendo oferecidos ou se vocę deseja\n"
-"ter total controle sobre o que será instalado.\n"
-"\n"
-"Se vocę começou a instalaçăo em modo \"Upgrade\", vocę pode des-selecionar "
-"todos os\n"
-"grupos para evitar instalar qualquer pacote novo. Isto é útil para reparar "
-"ou atualizar\n"
-"um sistema já existente."
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-"Finalmente, dependendo da sua escolha em selecionar ou năo pacotes "
-"individuais,\n"
-"vocę será levado a uma árvore contendo todos os pacotes classificados por "
-"grupos\n"
-"e subgrupos. Navegando na árvoerer, vocę poderá selecionar grupos inteiros, "
-"sub\n"
-"grupos ou pacotes individuais.\n"
-"\n"
-"Quando vocę seleciona um pacote individual na árvore, uma breve descriçăo "
-"aparecerá\n"
-"ŕ direita. Quando a sua seleçăo estiver concluída, clique \"Install\" , que\n"
-"irá iniciar a isntalaçăo. Dependendo da velocidade do seu hardware e do "
-"número\n"
-"de pacotes a serem instalados, poderá levar algum tempo. Uma estimativa de "
-"tempo\n"
-"necessário é mostrada na tela, para ajudá-lo a pensar se há tempo para uma "
-"xícara\n"
-"de café.\n"
-"\n"
-"!! Se um pacote de servidor foi selecionado, intencionalmente, ou por ser "
-"parte de um\n"
-"grupo, vocę será instado a confirmar que realmente deseja estes servidores "
-"instalados.\n"
-"No Mandrake Linux quaisquer servidores instalados serăo iniciados por "
-"default no boot.\n"
-"Mesmo se eles săo seguros e năo possuem quaisquer dúvidas a respeito quando "
-"da\n"
-"distribuiçăo do pacote, é possível que brechas de segurança hajam sido "
-"descobertas\n"
-"depois que esta versăo do Mandrake Linux foi concluída. Se vocę năo sabe o "
-"que um\n"
-"certo serviço faz, ou porque está sendo instalado, clique em \"No\". "
-"Clicando em \"Yes\"\n"
-"irá automaticamente instalar os serviços listados e eles serăo iniciados "
-"automaticamente\n"
-"por default.\n"
-"\n"
-"A opçăo \"Dependęncias automáticas\" simplesmente desabilita a caixa de "
-"diálogo\n"
-"de aviso que aparece quando o instalador automaticamente seleciona um "
-"pacote. Isto\n"
-"ocorre porque ele determina que é necessário satisfazer uma dependęncia com "
-"outro\n"
-"pacote para completar a instalaçăo corretamente.\n"
-"\n"
-"O pequeno ícone de disco floppy no fim da lista permite carregar uma lista "
-"de pacotes\n"
-"escolhidos durante uma instalaçăo prévia. Clicando neste ícone vocę poderá "
-"inserir\n"
-"um disco removível criado previamente no fim de uma instalaçăo. Veja a "
-"segunda dica\n"
-"do último passo para criar um floppy assim."
-
-#: ../../help.pm_.c:164
-#, fuzzy
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-"Se vocę deseja conectar seu computador ŕ internet, ou a uma rede local,\n"
-"por favor escolha a opçăo correta. Por favor, desligue seu dispositivo, "
-"antes de fazer a escolha certa para deixar o DrakX detectá-lo "
-"automaticamente.\n"
-"\n"
-"MandrakeLinux propőe a configuraçăo de uma conexăo ŕ internet durante a "
-"instalaçăo\n"
-"do sistema. As opçőes disponíveis săo modem tradicional, conexăo ADSL, cable "
-"modem,\n"
-" e finalmente, LAN (Ethernet).\n"
-"\n"
-"Aqui nós năo iremos detalhar cada configuraçăo. Apenas certifique-se de que "
-"vocę tem\n"
-"todas as informaçőes de seu Provedor de Internet ou administrador do "
-"sistema.\n"
-"\n"
-"Vocę pode consultar o capítulo do manual sobre conexőes de internet para "
-"mais detalhes\n"
-"sobre a conexăo, ou simplesmente esperar até que o sistema esteja instalado "
-"e usar o\n"
-"programa descrito para configurar sua conexăo.\n"
-"\n"
-"Se vocę deseja configurar a rede mais tarde, depois da instalaçăo ou se vocę "
-"terminou\n"
-"de configurar sua conexăo de rede, clique \"Cancelar\"."
-
-#: ../../help.pm_.c:186
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Vocę agora pode escolher quais serviços vocę quer que iniciem na hora da "
-"inicializaçăo.\n"
-"\n"
-"Aqui estarăo todos os serviços disponíveis na instalaçăo atual. Reveja "
-"cuidadosamente e desabilite aqueles que năo sőa sempre necessários durante a "
-"inicializaçăo.\n"
-"\n"
-"Quando vocę colocar o mouse sobre um item, um pequeno balăo de ajuda\n"
-"aparecerá descrevendo a funçăo do serviço. Quando vocę năo tiver certeza se "
-"um \n"
-"serviço é útil ou năo, é seguro manter o comportamento default.\n"
-"\n"
-"Tenha muito cuidado nesse passo, pois se vocę pretende usar sua máquina como "
-"um servidor:\n"
-"vocę provavelmente vai querer que serviços indesejados năo sejam iniciados.\n"
-"Favor lembrar que vários serviços podem ser perigosos se foram habilitados "
-"em um\n"
-"servidor. Em geral, selecione apenas os serviços que vocę realmente precisa."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-"O GNU/Linux gerencia o tempo em GMT (Tempo Médio de Grenwich) e traduz\n"
-"em tempo local de acordo com o fuso horário que vocę escolheu. Contudo, é "
-"possível \n"
-"desativá-lo, deselecionando \"Relógio do hardware configurado para GMT\", de "
-"forma que \n"
-"o relógio do hardware seja o mesmo do relógio do sistema. Isto é útil quando "
-"a máquina \n"
-"está abrigando outro sistema operacional, como o Windows.\n"
-"\n"
-"A opçăo \"Sincronizaçăo Automática de Tempo\" irá automaticamente regular o "
-"relógio\n"
-"conectando-o a um servidor remoto de tempo na internet. Na lista "
-"apresentada\n"
-"escolha um servidor perto de vocę. Obviamente, vocę deve dispor de uma "
-"conexăo\n"
-" com a internet para isso."
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-"O X (o sistema X window) é o coraçăo da interface gráfica GNU/Linux\n"
-"na qual todos os ambientes gráficos (KDE, Gnome, AfterStep, WindowMaker...)\n"
-"acoplados ao Mandrake Linux se baseiam. Nesta seçăo, o DrakX\n"
-"tentará configurar o sistema X automaticamente.\n"
-"\n"
-"É muito raro este processo falhar, o que pode ocorrer se o hardware for "
-"muito velho\n"
-"(ou muito novo). Se tudo correr bem, ele iniciará o X automaticamente com a "
-"melhor\n"
-"resoluçăo possível, dependendo do tamanho do monitor. Uma janela aparecerá \n"
-"e perguntará se vocę pode vę-la.\n"
-"\n"
-"Se vocę estiver usando a instalaçăo em modo \"Expert\", vocę deverá entrar "
-"no \n"
-"assistente de configuraçăo X. Veja a seçăo correspondente do manual para "
-"mais \n"
-"informaçőes sobre este assistente.\n"
-"\n"
-"Se vocę conseguir ver a mensagem e responder \"Sim\", entăo o DrakX seguirá "
-"para\n"
-"o próximo passo. Se vocę năo conseguir ver a mensagem, significa que a "
-"configuraçăo\n"
-"estava errada, e o teste irá automaticamente terminar em 10 segundos, "
-"restaurando\n"
-"a tela."
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-"Na primeira vez que vocę usar o sistema X, vocę pode năo ficar muito\n"
-"satisfeito com a imagem (tela muito pequena, errada no sentido esquerdo -"
-"direito...).\n"
-"Porém, mesmo se o X começar corretamente, o DrakX irá perguntar se a "
-"configuraçăo\n"
-"o agrada. Irá também propôr modificaçőes, mostrando uma lista de "
-"alternativas, pedindo \n"
-"a vocę para escolher uma.\n"
-"\n"
-"Como último recurso, se vocę ainda năo conseguir fazer o X funcionar,, "
-"escolha\n"
-"\"Mudar placa de vídeo\", selecione \"Placas năo listadas\", e quando "
-"perguntado em qual \n"
-"servidor vocę deseja, escolha \"FBDev\". É uma opçăo ŕ prova de erros, que "
-"funciona\n"
-"com qualquer placa de vídeo moderna. Depois escolha \"Testar de novo\" para "
-"se certificar."
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"finalmente, vocę será perguntado se deseja ver a interface gráfica durante a "
-"inicializaçăo.\n"
-"Repare que esta opçăo será apresentada mesmo se vocę escolher năo testar a \n"
-"configuraçăo. Obviamente, vocę deverá responder \"Năo\" se a sua máquina irá "
-"funcionar\n"
-"como um servidor, ou se vocę năo conseguiu configurar o display."
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-"O CDROM Mandrake Linux possui um modo de resgate embutido. Vocę pode ter "
-"acesso\n"
-"a ele iniciando sua máquina pelo CDROM, apertando >>F1<< durante o boot e "
-"digitando\n"
-">>rescue<< no prompt. No caso de o seu computador năo iniciar pelo CDROM, "
-"vocę\n"
-"deverá voltar a este passo em pelo menos duas situaçőes:\n"
-"\n"
-" *quando instalando o boot loader, DrakX irá reescrever o setor de boot "
-"(MBR)\n"
-"do seu disco rígido principal (năo se vocę estiver usando outro gerenciador "
-"de boot)\n"
-"para que vocę poassa iniciar com o Windows ou com o GNU/Linux (assumindo "
-"que\n"
-"vocę tem Windows no seu sistema). Se vocę precisar reinstalar o Windows, o "
-"instalador\n"
-"da Microsoft irá reescrever o setor de boot, e vocę năo poderá iniciar o GNU/"
-"Linux!\n"
-"\n"
-" *se aparecer um problema, e vocę năo puder iniciar o GNU/Linux do disco "
-"rígido,\n"
-"este floppy será o único meio de restaurar e iniciar o GNU/Linux. Ele contém "
-"uma \n"
-"série de feramentas para reparar e restaurar o sistema, que pode ter parado "
-"por falta de \n"
-"energia, ou algum erro de digitaçăo, erro de senha, ou qualquer outro "
-"motivo.\n"
-"\n"
-"Quando vocę clica nesta etapa, vocę será instado a inserir um disco no drive "
-"de floppy.\n"
-"O disco que vocę inserir deverá estar vazio ou conter dados que vocę năo "
-"precisa.\n"
-"Vocę năo precisará reformatá-lo, porque o DrakX irá reescrever o disco "
-"inteiro."
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"A esse ponto, vocę precisa escolher onde vocę quer instalar o seu sistema\n"
-"Mandrake Linux no seu disco rígido. Se estiver vazio ou se um sistema\n"
-"operacional existente usa todo o espaço disponível, vocę terá que\n"
-"particioná-lo. Basicamente, particionar um disco rígido consiste em\n"
-"dividí-lo logicamente para criar espaço para o seu novo sistema Mandrake "
-"Linux.\n"
-"\n"
-"Como os efeitos de um processo de particionamento săo normalmente\n"
-"irreversíveis, o particionamento pode ser intimidante e estressante se\n"
-"vocę for um usuário inexperiente.\n"
-"Esse ajudante simplifica o procceso. Antes de começar, favor consultar o "
-"manual\n"
-"e năo se apressar.\n"
-"\n"
-"\n"
-"Vocę precisa de no mínimo duas partiçőes. Uma para o sistema opercional em e "
-"a\n"
-"outra para a memória virtual (também chamada de Swap).\n"
-"\n"
-"\n"
-"Se as partiçőes já tiverem sido definidas (por uma instalaçăo prévia ou "
-"através\n"
-"de outra ferramenta particionadora), vocę precisa apenas escolher aquelas a "
-"usar\n"
-"para instalar o seu sistema Linux.\n"
-"\n"
-"\n"
-"Se as partiçőes năo tiverem sido definidas ainda, vocę precisa criá-las.\n"
-"Para fazer isso, use o ajudante disponível acima. Dependendo da\n"
-"configuraçăo do seu disco rígido, várias soluçőes podem estar disponíveis:\n"
-"\n"
-"* Usar partiçăo existente: o ajudante detectado uma ous mais partiçőes Linux "
-"já existentes no seu disco rígido. Se\n"
-" vocę quiser mantę-las, escolha essa opçăo. \n"
-"\n"
-"\n"
-"* Apagar todo o disco: se vocę quiser deletar todos os dados e todas as "
-"partiçőes existentes no disco rígidos e substituí-las pelo seu novo sistema "
-"Mandrake Linux, vocę pode escolher essa opçăo. Tenha cuidado com essa "
-"opçăo,\n"
-" vocę năo pode reverter sua escolha após a confirmaçăo.\n"
-"\n"
-"\n"
-"* Usar o espaço livre na partiçăo Windows: se o Microsoft Windows estiver "
-"instalado no seu disco rígido e tomar\n"
-" todo o espaço disponível, vocę tem que criar espaço livre para o Linux. "
-"Para fazer isso, vocę pode deletar a sua\n"
-" partiçăo Microsoft Windows e dados (ver \"Apagar todo o disco\" ou "
-"soluçőes \"Modo Expert\") ou redimensionar\n"
-" a sua partiçăo Microsoft Windows. O redimensionamento pode ser feito sem a "
-"perda de dados. Essa soluçăo é\n"
-" recomendada se vocę quiser usar o Mandrake Linux e o Microsoft Windows no "
-"mesmo computador.\n"
-"\n"
-"\n"
-" Antes de escolher essa soluçăo, favor entender que o tamanho de sua "
-"partiçăo\n"
-" Microsoft Windows será menor do que agora. Isso significa que vocę irá\n"
-"ter menos espaço livre no Microsoft\n"
-" Windows para guardar os seus dados ou instalar novos programas.\n"
-"\n"
-"\n"
-"* Modo Expert: se vocę quiser particionar manualmente o seu disco rígido, "
-"escolha essa opçăo. Tenha cuidado\n"
-" antes de escolhe-la. Ela é muito poderosa, mas muito perigosa. Vocę pode "
-"perder todos os seus dados\n"
-" facilmente. Entăo năo escolha essa soluçăo a năo ser que saiba o que faz."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"Aqui estamos, a instalaçăo agora está completa e o seu GNU/Linux está "
-"pronto\n"
-"para usar. Clique em \"OK\"para reiniciar o sistema. Vocę pode iniciar o "
-"GNU/Linux \n"
-"ou o Windows, o que vocę preferir (se estiver em dual-boot), assim que o "
-"computador\n"
-"tiver reiniciado.\n"
-"\n"
-"O botăo \"Avançado\" (em modo expert) mostra mais dois botőes:\n"
-"\n"
-" * \"gerar disco de autoinstalaçăo\": para criar um disco de instalaçăo que "
-"irá\n"
-"automaticamente fazer uma instalaçăo completa sem a ajuda de um operador,\n"
-"semelhante ŕ instalaçăo que vocę acabou de fazer.\n"
-"\n"
-" Note que duas opçőes diferentes estăo disponíveis depois de clicar o "
-"botăo:\n"
-"\n"
-" * \"Replay\". É uma instalaçăo parcialmente automática, porque a seçăo "
-"de\n"
-"particionamento (somente esta) permanece interativa.\n"
-"\n"
-" * \"Automatizada\". Completamente automatizada: o disco rígido é "
-"completamente \n"
-"reescrito, e todos os dados anteriores săo perdidos.\n"
-"\n"
-" Esta funcionalidade é muito adequada quando se deseja instalar o sistema\n"
-"em um grande número de máquinas semelhantes. Veja a seçăo de autoinstalaçăo\n"
-"do nosso website. * \"Save packages selection\"(*) : salva a seleçăo de "
-"pacotes como feita anteriormente.\n"
-"Depois, quando fizer outra instalaçăo, insira o floppy no drive e rode a "
-"instalaçăo, indo\n"
-"para a tela de ajuda pela tecla F1 e escolhendo >>linux defcfg=\"floppy"
-"\"<<.\n"
-"\n"
-"(*) Vocę necessitará de um disco floppy formatado em FAT (para criar um no "
-"GNU/Linux\n"
-"digite \"mformat a:\")"
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Qualquer partiçăo que acabou de ser criada deve ser\n"
-"formatada para o uso (formatar significa criar um sistema de arquivos).\n"
-"\n"
-"Agora, vocę pode reformatar algumas partiçőes existentes para apagar os "
-"dados\n"
-"contidos nelas. Se vocę deseja fazer isso, favor também selecionar quais\n"
-"partiçőes vocę deseja formatar\n"
-"\n"
-"Favor notar que năo é necessário reformatar todas as partiçőes já "
-"existentes.\n"
-"Vocę deve reformatar as partiçőes contendo o sistema operacional (tal como\n"
-"\"/\",\"/usr\" ou \"/var\"), mas vocę năo tem que reformatar as partiçőes "
-"contendo\n"
-"dados que vocę deseja manter (normalmente /home).\n"
-"\n"
-"Favor tenha cuidado ao selecionar as partiçőes, após formatá-las,\n"
-"todos os dados serăo apagados e năo pode ser recuperados.\n"
-"\n"
-"Cliquem em \"OK\" quando estiver pronto para formatar as partiçőes.\n"
-"\n"
-"Clique em \"Cancelar\" se vocę desejar escolher outras partiçőes para "
-"instalar\n"
-"o seu novo sistema operacional Mandrake Linux."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Seu novo sistema operacional Mandrake Linux está sendo instalado\n"
-"Essa operaçăo deve demorar algumas minutos (isso depende do tamanho que\n"
-"vocę escolheu para instalar e a velocidade do seu computador).\n"
-"\n"
-"Por favor seja paciente."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Antes de continuar vocę deve ler com atençăo os termos da Licensa. Ela "
-"cobre\n"
-"o Mandrake Linux inteiro, e se vocę năo concorda com todos os termos, clique "
-"no \n"
-"botăo \"Recusar\" que irá imediatamente sair da instalaçăo. Para continuar "
-"na instalaçăo,\n"
-"clique em \"Aceitar\"."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"Neste ponto é necessário escolher o nível de segurança desejado para a "
-"máquina.\n"
-"Via de regra, quanto mais exposta a máquina está, e quanto mais dados "
-"cruciais estăo\n"
-"guardados nela, maior deve ser o nível de segurança. Contudo, os níveis mais "
-"altos de \n"
-"segurança săo obtidos ŕs expensas da facilidade de uso. Consulte o capítulo "
-"MSEC\n"
-" do ``Manual de Referęncia'' para conseguir mais informaçőes sobre o "
-"significado destes\n"
-"níveis de segurança.\n"
-"\n"
-"Se vocę năo souber o que escolher, siga os defaults."
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"Agora vocę precisa escolher qual(is)\n"
-"partiçăo(őes) utilizar para instalar o seu novo sistema Mandrake Linux. Se "
-"aspartiçőes\n"
-"já estiverem definidas (através de uma instalaçăo anterior do GNU/Linux ou "
-"outra\n"
-"ferramenta particionadora), vocę pode utilizá-las. Caso contrário, as\n"
-"partiçőes devem ser definidas.\n"
-"\n"
-"Para criar partiçőes, vocę deve primeiro selecionar um disco rígido. Vocę\n"
-"pode selecionar o disco clicando em \"hda\" para o primeiro drive IDE,\"hdb"
-"\" para\n"
-"o segundo ou \"sda\" para o primeiro drive SCSI e assim por diante.\n"
-"\n"
-"Para particionar o disco selecionado, vocę pode usar as seguintes opçőes:\n"
-"\n"
-" * Limpar tudo: essa opçăo deletará todas as partiçőes disponíveis do "
-"disco rígido selecionado.\n"
-"\n"
-" * Auto alocar: essa opçăo lhe permite criar automaticamente partiçőes "
-"Ext2 e swap no espaço livre do seu\n"
-" disco rígido.\n"
-"\n"
-" * Resgatar tabela de partiçăo: se sua tabela de partiçăo estiver "
-"danificada, vocę pode tentar recuperá-la usando\n"
-" essa opçăo. Tenha cuidado e lembre-se que ela pode falhar.\n"
-"\n"
-" * Desfazer: vocę pode usar essa opçăo para cancelar suas alteraçőes.\n"
-"\n"
-" * Recarregar: vocę pode usar essa opçăo se vocę desejar desfazer todas as "
-"suas alteraçőes e recomeçar de novo\n"
-"\n"
-" * Ajudante: se vocę desejar utilizar um ajudante para particionar o seu "
-"disco rígido, vocę pode usar essa opçăo.\n"
-" É recomendada caso năo tenha conhecimento sobre particionamento.\n"
-"\n"
-" * Restaurar do disquete: se vocę salvou a sua tabela da partiçăo em um "
-"disquete em um instalaçăo anterior, vocę\n"
-" pode recuperá-la com essa opçăo.\n"
-"\n"
-" * Salvar em disquete: se vocę quiser salvar sua tabela de partiçăo em um "
-"disquete para pode recuperá-la,\n"
-" vocę pode usar essa opçăo. É altamente recomendado utilizá-la.\n"
-"\n"
-" * Salvar: quando vocę terminar de particionar o seu disco rígido, use "
-"essa opçăo para salvar as alteraçőes.\n"
-"\n"
-"Nota: vocę pode utilizar qualquer opçăo usando o teclado: navegue entre as "
-"partiçőes usando Tab e as setas para cima/baixo.\n"
-"\n"
-"Quando a partiçő estiver selecionada, vocę pode usar:\n"
-"\n"
-" * Ctrl-c para criar uma nova partiçăo (quando uma vazia estiver "
-"selecionada)\n"
-" * Ctrl-d para deletar uma partiçăo\n"
-"\n"
-" * Ctrl-m para especificar um ponto de montagemSe vocę está "
-"instalando em uma Máquina PPC, vocę vai querer criar uma pequena partiçăo "
-"'bootstrap' HFS de ao menos 1MB para\n"
-"usar com o gerenciador de boot yaboot. Se vocę quiser criar uma partiçăo um "
-"pouco maior, digamos 50MB, vocę pode usar o espaço \n"
-"para guardar um kernel extra e uma imagem ramdisk para emergęncias."
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"Mais de uma partiçăo Microsoft Windows foi detectada\n"
-"em seu disco rígido. Favor escolher a que vocę quer redimensionar para\n"
-"instalar o seu novo sistema operacional Mandrake Linux.\n"
-"\n"
-"Nota: cada partiçăo é listada da seguinte forma: \"Nome Linux\", \"Nome\n"
-"Windows\" \"Capacidade\".\n"
-"\n"
-"\"Nome Linux\" é codificado da seguinte maneira: \"tipo do disco rígido\", "
-"\"número do disco rígido\", \"número da partiçăo\" (por exemplo, \"hda1\").\n"
-"\n"
-"\"Tipo do disco rígido\" é \"hd\" se seu disco rígido for IDE e \"sd\"\n"
-"se ele for um disco rígido SCSI.\n"
-"\n"
-"\"Número do disco rígido\" é sempre uma letra depois de \"hd\" ou \"sd\".Com "
-"discos rígidos IDE:\n"
-"\n"
-" * \"a\" significa \"disco rígido mestre na controladora IDE primária\",\n"
-"\n"
-" * \"b\" significa \"disco rígido escravo na controladora IDE primária\",\n"
-"\n"
-" * \"c\" significa \"disco rígido mestre na controladora IDE secundária"
-"\", \n"
-" * \"d\" significa \"disco rígido escravo na controladora IDE secundária"
-"\". \n"
-"\n"
-"Com discos rígidos SCSI, um significa \"disco rígido primário\", um \"b\" "
-"significa \"disco rígido secundário\", etc...\n"
-"\n"
-"\"Nome Windows\" é a letra do seu disco rígido no Windows (o primeirodisco\n"
-"ou partiçăo é chamado \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Por favor seja paciente. Essa operaçăo pode demorar vários minutos."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"dRakX agora precisa saber se vocę deseja fazer uma isntalaçăo default\n"
-" (\"recomendada\") ou se vocę deseja ter maior controle sobre o processo "
-"(\"expert\").\n"
-"Vocę também tem a escolha de fazer uma nova instalaçăo ou uma atualizaçăo "
-"de\n"
-"um sistema MandrakeLinux existente antes.\n"
-"\n"
-" * \"Instalar\" Limpa completamente o sistema antigo. Na verdade, dependendo "
-"do\n"
-"que existia antes, vocę ainda pode conseguir manter partiçőes antigas sem\n"
-"modificaçőes.\n"
-"\n"
-" * \"Atualizaçăo\" Esta classe de instalaçăo permite simpelsmente atualizar "
-"os\n"
-"pacotes instalados no seu sistema MandrakeLinux. Ele mantém as atuais "
-"partiçőes\n"
-"e os arquivos de usuário. Todos os outros passos da isntalaçăo continuam "
-"disponíveis\n"
-"em comparaçăo com a instalaçăo primária.\n"
-"\n"
-" * \"Somente autalizaçăo de pacotes\" Esta nova classe de instalaçăo "
-"permite\n"
-"atualizar um sistema Mandrake Linux existente mantendo todas as "
-"configuraçőes do\n"
-"sistema intocadas. Adicionar novos pacotes ŕ instalaçăo atual também é "
-"possível.\n"
-"\n"
-"Dependendo do seu conhecimento do GNU/Linux, selecione uma das seguintes\n"
-"opçőes: * Recomendada: escolha esta se vocę nunca instalou um sistema "
-"operacional\n"
-"GNU/Linux antes. A instalaçăo será bem simples e vocę só terá que "
-"responder \n"
-"umas poucas perguntas.\n"
-"\n"
-"* Expert: se vocę tem um bom conhecimento sobre o GNU/Linux, vocę pode "
-"escolher essa classe. Como em \n"
-" na classe \"Personalizado\", vocę poderá escolher o uso primário(estaçăo, "
-"servidor, desenvolvimento)\n"
-" Tenha muito cuidado antes de escolher essa classe. Vocę poderá fazer uma "
-"instalaçăo bastante personalizada.\n"
-" Responda a algumas questőes que podem ser bem difíceis se vocę năo tiver "
-"conhecimento sobre GNU/Linux.\n"
-"Entăo, só escolha essa classe se souber o que está fazendo."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-"Normalmente o DrakX esoclhe o teclado certo para vocę, (dependendo da "
-"linguagem\n"
-"qe vocę escolheu) e vocę nem verá este passo. Contudo, vocę pode possuir um "
-"teclado\n"
-"que năo corresponde ŕ linguagem que vocę escolheu: se vocę for um suíço, "
-"porém falante\n"
-"de inglęs, vocę pode preferir continuar tendo um teclado suíço. Ou se vocę "
-"fala inglęs mas\n"
-"mora no Quebec, vocę pode estar na mesma situaçăo. Em ambos os casos, vocę "
-"deverá \n"
-"voltar a este passo na instalaçăo e escolher o teclado apropriado da lista.\n"
-"\n"
-"Clique em \"Mais\" para ver uma lista completa de teclados disponíveis."
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-"Por favor, escolha a sua língua preferida para a instalaçăo e uso do "
-"sistema.\n"
-"\n"
-"Clicando em \"Avançado\" vocę poderá selecionar outras línguas para serem "
-"instaladas\n"
-"no seu sistema. Selecionar outras línguas irá também instalar os arquivos "
-"específicos\n"
-"para documentaçăo e aplicativos. Por exemplo, se vocę pretende hospedar "
-"usuários\n"
-"espanhóis na sua máquina, selecione Inglęs como língua principal na árvore "
-"de\n"
-" viisualizaçăo e na seçăo avançada clique na estrela cinza correspondente a "
-"\"Espanhol|\n"
-"Espanha\".\n"
-"\n"
-"Note que múltiplas línguas podem ser instaladas. Uma vez que vocę "
-"selecionou \n"
-"quaisquer adicionais, clique em \"OK\" para continuar."
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-"Por default, o DrakX assume que vocę tem um mouse de dois botőes, e irá setá-"
-"lo para\n"
-"emulaçăo do terceiro botăo. O DrakX saberá automaticamente se é PS/2, serial "
-"ou USB.\n"
-"\n"
-"Se vocę deseja especificar um tipo diferente de mouse, selecione o tipo da "
-"lista\n"
-"\n"
-"Se vocę escolher um mouse diferente do default vocę será apresentado a uma "
-"tela de teste de mouse.\n"
-"Use os botőes e a roda para verificar se as configuraçőes estăo boas. Se o "
-"mouse \n"
-"năo estiver funcionando bem, pressione a barra de espaço ou RETORNO para "
-"\"Cancelar\"\n"
-"e escolher de novo."
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Favor selecionar a porta correta. Por exemplo, a porta COM1\n"
-"no MS Windows é chamada ttyS0 no GNU/Linux."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-"Esta é a principal opçăo para a segurança do seu sistema GNU/Linux: vocę\n"
-"deverá digitar a senha de \"root\". \"root\" é o administrador do sistema, e "
-"é o único\n"
-"autorizado a fazer atualizaçőes, adicionar usuários e mudar configuraçőes "
-"gerais\n"
-"do computador. Em suma: \"root\" pode tudo! Por isso vocę deve escolher uma "
-"senha\n"
-"dicífil de adivinhar - o DrakX irá avisá-lo se for muito fácil. Vocę pode "
-"também escolher\n"
-"năo entrar uma senha, mas nós desaconselhamos fortemente esta opçăo. Năo "
-"pense que\n"
-"por ter inicado o computador em GNU/Linux vocę está a salvo de problemas. "
-"\"root\"\n"
-"pode contornar todas as limitaçőes do sistema e desavisadamente apagar "
-"todos\n"
-"os dados de uma partiçăo, por exemplo. É muito importante que a senha de "
-"\"root\"\n"
-"seja difícil.\n"
-"\n"
-"A senha deve ser um mistura de caracteres alfanuméricos de pelo menos 8 "
-"caracteres\n"
-"de extensăo. Nunca escreva a senha \"root\" num papel - isso torna o sistema "
-"vulnerável.\n"
-"\n"
-"Porém, nŕo faça também uma senha muito complicada e longa, porque vocę "
-"deve \n"
-"ser capaz de relembrá-la sem muito esforço.\n"
-"\n"
-"Asenha nŕo será mostrada na tela enquanto vocę digita. Portanto vocę deverá "
-"digitar a \n"
-"senha duas vezes para reduzir a chance de erro. Se ocorrer de vocę digitar o "
-"mesmo \n"
-"erro duas vezes, vocę deverá fazer o primeiro login no sistema com esta "
-"senha \"errada\".\n"
-"\n"
-"Em mod expert vocę será questionado se se conectará a um servidor de\n"
-" autenticaçăo, como NIS ou LDAP.\n"
-"\n"
-"Se sua rede usa o protocolo LDAP (ou NIS) selecione \"LDAP\" (ou \"NIS\") "
-"como\n"
-"autenticaçăo. Se vocę năo sabe, pergunte ao seu administrador de rede.\n"
-"\n"
-"Se seu computador năo está conectado a uma rede administrada, vocę deverá\n"
-"esoclher \"Local Files\" para autenticaçăo."
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-"O LILO e o Grub săo gerenciadores de iniciaçăo do GNU/Linux. Este estágio "
-"via de regra\n"
-"é totalmente automatizado. De fato, o DrakX analisa o setor de boot do disco "
-"rígido e\n"
-"age de acordo com o que encontra ali.:\n"
-"\n"
-" * Se um setor de boot windows é encontrado, ele substitui com um setor de "
-"boot\n"
-"LILO ou Grub. Portanto, vocę poderá iniciar o GNU/Linux ou outro sistema "
-"operacional;\n"
-"\n"
-" * Se um setor LILO ou Grub é encontrado, ele será substituído por outro "
-"novo;\n"
-"\n"
-"Em dúvida, o DrakX irá mostrar um diálogo com várias opçőes.\n"
-"\n"
-" * \"Gerenciador de iniciaçăo a ser usado\": vocę tem tręs escolhas:\n"
-"\n"
-" *\"GRUB\": se vocvę prefere o GRUB (menu em modo texto).\n"
-"\n"
-" *\"LILO com menu em modo gráfico\" se vocę prefere o LILO em modo "
-"gráfico.\n"
-"\n"
-" *\"LILO com menu em mod texto\": se vocę prefere o LILO em modo texto.\n"
-"\n"
-" * \"Dispositivo de iniciaçăo\": Na maioria dos casos vocę nŕo irá mudar o "
-"default\n"
-"(\"/dev/hda\"), mas se vocę preferir, o carregador de iniciaçăo poderá ser "
-"instalado\n"
-"num segundo disco rígido (\"dev/hdb\"), ou mesmo num flopy (\"/dev/fd0\").\n"
-"\n"
-" * \"Tempo antes de iniciar o sistema default\": antes de iniciar o "
-"computador, este\n"
-"é o tempo dado ao usuaio para escolher o sistema a ser iniciado.\n"
-"\n"
-"!! Repare que se vocę escolher năo instalar um gerenciador de iniciaçăo "
-"(selecionando\n"
-"\"Cancelar\" neste ponto) vocę deve se certificar de que vocę tem um jeito "
-"de iniciar o\n"
-"seu sistema Mandrake Linux! Também, tenha certeza de que vocę sabe o que "
-"está \n"
-"fazendo quando mudar qualquer default destes.!!\n"
-"\n"
-"Clicando em \"Avançado\" neste diálogo, aparecerăo várias opçőes "
-"avançadas, \n"
-"resevadas ao usuário experiente.\n"
-"\n"
-"Depois de ter configurado todos os parâmetros do gerenciador de iniciaçăo na "
-"máquina,\n"
-"vocę verá as opçőes de iniciaçăo disponíveis no momento da iniciaçăo.\n"
-"\n"
-"Se houver outro sistema operacional instalado na máquina, "
-"ser'automaticamente\n"
-"adicionado ao menu de iniciaçăo. Portanto vocę poderá depois, ajustar as "
-"opçőes \n"
-"existentes. Selecione uma entrada e clique \"Modificar\" para modificá-la ou "
-"removę-la,\n"
-"\"Adicionar\" cria uma nova entrada, e \"Feito\" vai para o próximo passo da "
-"instalaçăo."
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (o LInux LOader) e Grub săo gerenciadors de boot: ele săo capazes de\n"
-"de inicializar tanto no GNU/Linux quanto qualquer outro sistema\n"
-"operacional instalado. Normalmente, esses sistemas săo detectados e\n"
-"instalados corretamente. Se esse năo for o caso, vocę pode adicionar\n"
-"entradas manualmente nessa tela. Cuidado ao escolher os parâmetros "
-"corretos.\n"
-"\n"
-"\n"
-"Vocę pode também năo dar acesso a esses sistemas operacionais para\n"
-"ninguém, na qual vocę pode deletar as entradas correspondentes. Mas nesse\n"
-"caso, vocę precisará de um disco de inicializaçăo para poder utilizá-los!"
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Vocę precisa indicar onde vocę deseja\n"
-"guardar a informaçăo necessária para inicializar o GNU/Linux.\n"
-"\n"
-"\n"
-"A năo ser que vocę saiba exatamente o que está fazendo, escolha \"Primeiro\n"
-"setor do drive (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX tentará localizar adaptadores PCI SCSI. Se DrakX encontrar\n"
-"um adaptador SCSI e souber qual driver utilizar, ele será instalado\n"
-"automaticamente\n"
-"\n"
-"\n"
-"Se vocę năo possuir adaptadores SCSI, um adaptador ISA SCSI ou PCI SCSI que\n"
-"DrakX năo reconhece, vocę será perguntado se algum adaptador SCSI existe em "
-"seu\n"
-"sistema. Se năo existir adaptadores, vocę pode clicar em \"Năo\". Se vocę "
-"clicar em\n"
-"\"Sim\", uma lista de drivers aparecerá para que vocę possa escolher o seu\n"
-"adaptador.\n"
-"\n"
-"\n"
-"Se vocę tem que especificar manualmente o seu adaptador, DrakX perguntará "
-"se\n"
-"vocę quer especificar opçőes para ele. Vocę pode deixar que o DrakX examine "
-"o hardware\n"
-"para descobrir as opçőes. Isso normalmente funciona bem.\n"
-"\n"
-"\n"
-"Se năo, vocę precisará prover as opçőes para o driver. Favor olhar o Guia do "
-"Usuário\n"
-"(capítulo 3, seçăo \"Coletando informaçőes sobre seu hardware) para dicas "
-"sobre\n"
-"como descobrir essas informaçőes na documentaçăo do hardware, no Web site\n"
-"do fabricante (se vocę tiver acesso ŕ Internet) ou no Microsoft Windows\n"
-"(se vocę tivé-lo no seu sistema)."
-
-#: ../../help.pm_.c:784
-#, fuzzy
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"Vocę pode adicionar entradas adicionais no yaboot, tanto para outros "
-"sistemas operacionais,\n"
-"kernels alternativos, ou imagem de boot de emergęncia.\n"
-"\n"
-"\n"
-"Para outros SO - a entrada consiste apenas de um nome e da partiçăo root.\n"
-"\n"
-"\n"
-"Para Linux, existem algumas opçőes possíveis: \n"
-"\n"
-"\n"
-" - Label: Isso é simplesmente o nome que será necessário pare entrar no "
-"sistema \n"
-"através do yaboot.\n"
-"\n"
-"\n"
-" - Image: Isso seria o nome do kernel a ser usado. Tipicamente vmlinux ou "
-"uma\n"
-"variaçăo de vmlinux com uma extensăo.\n"
-"\n"
-"\n"
-" - Root: O dispositivo padrăo ou '/' da sua instalaçăo Linux.\n"
-"\n"
-"\n"
-" \n"
-" - Append: No hardware Apple, a opçăo append (anexar) é normalmente usada "
-"para\n"
-"auxiliar na inicializando do hardware de vídeo, ou para permitir a emulaçăo "
-"do botăo\n"
-"do mouse pelo teclado, devido a falta do segundo e terceiro botăo no mouse "
-"Apple.\n"
-"A seguir estăo alguns exemplos:\n"
-"\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-"\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
-"\n"
-"\n"
-" \n"
-" - Initrd: Essa opçăo pode ser usada tanto para carregar módulos adicionais "
-"antes que\n"
-"o dispositivo de boot esteja disponível, ou para carregar uma imagem ramdisk "
-"de emergęncia.\n"
-"\n"
-"\n"
-" - Initrd-size: O tamanho padrăo do ramdisk é 4096 bytes. Se vocę precisar "
-"alocar\n"
-"um ramdisk maior, essa opçăo pode ser usada.\n"
-"\n"
-"\n"
-" - Read-write: Normalmente a partiçăo 'root' é inicialmente carregada como "
-"apenas-leitura,\n"
-"para permitir uma checagem do sistema antes de ativá-lo. Vocę pode modificar "
-"essa opçăo aqui.\n"
-"\n"
-"\n"
-" - NoVideo: Se o hardware de vídeo Apple mostrar ser excepcionalmente "
-"problemática, vocę pode\n"
-"selecionar esse opçăo para entrar no modo 'semvídeo', com suporte nativo ao "
-"framebuffer.\n"
-"\n"
-"\n"
-" - Default: Selecione essa entrada como sendo a opçăo padrăo Linux, "
-"bastando pressionar\n"
-"ENTER no prompt do yaboot. Essa entrada também aparecerá marcada com um '*', "
-"se vocę\n"
-"pressionar TAB para ver as opçőes de boot."
-
-#: ../../help.pm_.c:830
-#, fuzzy
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot é o inicializador para hardware NewWorld MacIntosh. Ele é capaz\n"
-"de inicializar tanto o GNU/Linux, MacOS ou MacOSX, se existente no seu\n"
-"computador. Normalmente, esses outros sistemas operacionais săo detectados\n"
-"corretamente e instalados. Se esse năo for o seu caso, vocę pode adicionar\n"
-"entradas manualmente nesta tela. Escolha cuidadosamente os parâmetros.\n"
-"\n"
-"\n"
-"A principais opçőes do Yaboot săo:\n"
-"\n"
-"\n"
-" - Mensagem Inicial: uma pequena mensagem de texto que aparece antes do\n"
-"prompt do boot.\n"
-"\n"
-"\n"
-" - Dispositivo de boot: Indica onde vocę quer colocar a informaçăo "
-"necessária \n"
-"para entrar no GNU/Linux. Geralmente, vocę terá que configurar uma partiçăo "
-"bootstrap \n"
-"para manter essa informaçăo.\n"
-"\n"
-"\n"
-" - Tempo de boot do Kernel: esse tempo é similar ao tempo de boot do "
-"LILO. Após \n"
-"selecionar Linux, vocę terá 0.1 segundo antes do kernel padrăo ser "
-"selecionado.\n"
-"\n"
-"\n"
-" - Permitir CD Boot?: Marcar essa opçăo lhe permitirá escolher 'C' para CD "
-"no\n"
-"primeiro prompt do boot.\n"
-"\n"
-"\n"
-" - Permitir OF Boot?: Marcar essa opçăo lhe permitirá escolher 'N' para "
-"Firmware\n"
-"Aberto no primeiro prompt de boot.\n"
-"\n"
-"\n"
-" - SO padrăo: vocę pode selecionar qual SO será iniciado por padrăo quando "
-"o tempo \n"
-"do Firmware Aberto expirar."
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-#, fuzzy
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"Escolha o disco rígido que vocę quer apagar para instalar\n"
-"sua partiçăo Mandrake Linux. Tenha cuidado, pois todos os dados existentes "
-"serăo\n"
-"perdidos e năo poderăo ser recuperados."
-
-#: ../../help.pm_.c:896
-#, fuzzy
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Clique em \"OK\" se vocę quiser apagar todos os\n"
-"dados e partiçăo existentes nesse disco rígido. Tenha cuidado, pois após "
-"clicar\n"
-"em \"OK\", vocę năo será capaz de recuperar os dados/partiçőes existentes "
-"nesse\n"
-"disco rígido, incluindo quaisquer dados do Windows.\n"
-"\n"
-"\n"
-"Clique em \"Cancelar\" para cancelar essa operaçăo sem perder qualquer dado\n"
-"e partiçăo presente nesse disco rígido."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Vocę selecionou o(s) seguinte(s) serviço(s): %s\n"
-"\n"
-"\n"
-"Esses servidores săo ativados por padrăo. Eles năo possuem nenhuma falha\n"
-"de segurança conhecida, mas pode existir uma nova. Nesse caso, vocę "
-"deveatualizá-lo\n"
-"o mais cedo possível.\n"
-"\n"
-"\n"
-"Vocę realmente quer instalar esses servidores?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Năo pode usar broadcast sem domínio NIS"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Insira um disquete FAT formatado no drive %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Esse disquete năo está formatado como FAT"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Para usar a seleçăo salva de pacotes, entre na instalaçăo com ``linux "
-"defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Erro lendo arquivo %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Algum hardware no seu computador precisa de drivers ``proprietário'' \n"
-"para funcionar. Vocę pode encontrar informaçőes sobre eles em: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Vocę deve ter uma partiçăo root.\n"
-"Para isso, crie um partiçăo (ou click em uma existen).\n"
-"Entăo escolha açăo ``Ponto de montagem'' e coloque como `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Vocę tem que ter uma partiçăo swap"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Vocę năo possui uma partiçăo swap\n"
-"\n"
-"Continuar mesmo assim?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Vocę tem que ter uma partiçăo swap"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Usar espaço livre"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Sem espaço livre suficiente para alocar as novas partiçőes"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Use partiçăo existindo"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Năo existe nenhuma tabela de partiçăo para usar"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Usar a partiçăo Windows para loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Qual partiçăo vocę quer usar para o Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Escolha os tamanhos"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Tamanho da partiçăo root em MB:"
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Tamanho da partiçăo swap em MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Usar o espaço livre da partiçăo Windows"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Qual partiçăo vocę quer redimensionar?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Computando limites do sistema de arquivo do Windows"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"O redimensionar FAT é incapaz de manipular sua partiçăo, \n"
-"o seguinte erro ocorreu: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Sua partiçăo Windows está muito fragmentada, favor rodar primeiro o "
-"``defrag''"
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"ATENÇĂO!\n"
-"\n"
-"Drakx precisa agorar redimensionar sua partiçăo Windows. Tenha cuidado:\n"
-"essa operaçăo é perigosa. Se vocę năo tiver feito ainda, vocę deve rodar o\n"
-"scandisk no Windows (e opcionalmente rodar o defrag) nesta partiçăo,\n"
-"entăo reiniciar a instalaçăo. Vocę também deveria fazer backup de seus\n"
-"dados. Quando tiver certeza, pressione Ok."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Quanto de espaço vocę quer deixar para o windows em"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "partiçăo %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Falha no redimensionamento FAT: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Năo existem partiçőes FAT para redimensionar ou para usar como loopback (ou "
-"năo existe espaço suficiente)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Apague disco inteiro"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Remover Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"Vocę tem mais de um disco rígido, em qual deles vocę quer instalar o linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"Todas as partiçőes que existem e todos os dados serăo perdidos em disco %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Particionamento de disco personalizada"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Usar fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Vocę pode agorar particionar %s.\n"
-"Quando terminar, năo esqueça de salvar usando `w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Vocę năo tem espaço livre na sua partiçăo Windows"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Eu năo achei espaço para instalaçăo"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "O particionador DrakX encontrou as soluçőes seguintes:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "O particionamento falhou: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Trazendo (acessando) a rede"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Fechando (desconectando) a rede"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Um erro ocorreu, mas eu năo sei como lidar com ele.\n"
-"Continue a seu próprio risco."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Ponto de montagem %s duplicado"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Alguns pacotes importantes năo foram instalados corretamente.\n"
-"O seu drive de cdrom ou o seu cdrom está defeituoso.\n"
-"Cheque o cdrom em um computador instalado usando \"rpm -qpl Mandarke/RPMS/*."
-"rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Bem-vindo ŕ %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Nenhum drive de disquete disponível"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Entrando no passo `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Seu sistema está com poucos recursos. Vocę pode ter algum problema na\n"
-"instalaçăo do Mandrake Linux. Se isso ocorrer, vocę pode tentar instalar "
-"usando o\n"
-"modo texto. Para isso, aperte `F1' na tela de inicializaçăo e escreva `text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Classe de Instalaçăo"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Por favor escolhe uma das seguintes classes de instalaçăo:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"O tamanho total dos grupos que vocę selecionou é de aproximadamente %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Se vocę deseja instalar menos que esse tamanho,\n"
-"selecionar a percentagem de pacotes que vocę quer instalar.\n"
-"\n"
-"Uma baixa percentagem irá instalar apenas os pacotes mais importantes;\n"
-"uma percentagem de 100%% irá instalar todos os pacotes selecionados."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Vocę tem espaço em seu disco para apenas %d%% desses pacotes.\n"
-"\n"
-"Se vocę deseja instalar menos que esse tamanho,\n"
-"selecionar a percentagem de pacotes que vocę quer instalar.\n"
-"Uma baixa percentagem irá instalar apenas os pacotes mais importantes;\n"
-"uma percentagem de %d%% irá instalar o máximo de pacotes possível."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Vocę será capaz de escolhe-los mais precisamente no próximo passo"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Percentagem de pacotes a serem instalados"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Seleçăo de Grupo de Pacotes"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Seleçăo individual de pacotes"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Tamanho total: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Pacote defeituoso"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Nome: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versăo: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Tamanho: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Importância: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Vocę năo pode selecionar esse pacote pois năo existe espaço livre para "
-"instalá-lo"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Os seguintes pacotes serăo instalados"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Os seguintes pacotes serăo removidos"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Vocę năo pode selecionar/deselecionar esse pacote"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Esse é um pacote obrigatório, năo pode ser deselecionado"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Vocę năo pode deselecionar esse pacote. Ele já está instalado"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Esse pacote tem que ser atualizado\n"
-"Tem certeza que vocę quer deselecioná-lo?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Vocę năo pode deselecionar essa pacote. Ele tem que ser atualizado"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Mostra automaticamente os pacotes selecionados"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Instalar"
-
-#: ../../install_steps_gtk.pm_.c:466
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "Salvar em disquete"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Salvar seleçăo de pacotes"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "Sair da instalaçăo"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Escolha os pacotes que vocę quer instalar"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Instalando"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Estimando"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Tempo restante "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Por favor aguarde, preparando instalaçăo"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pacotes"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Instalando pacote %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Aceitar"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Recusar"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Mude o seu Cd-Rom!\n"
-"\n"
-"Favor inserir o Cd-Rom rotulado \"%s\" no seu drive e aperte em Ok quando "
-"estiver pronto.\n"
-"Se vocę năo o tiver, aperte em Cancelar para evitar a instalaçăo desse Cd-"
-"Rom."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Continuar mesmo assim?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Houve um erro ordenando os pacotes:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Houve um erro instalando os pacotes:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Ocorreu um erro"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Vocę quer reiniciar a rede"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Contrato de licença"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Teclado"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Favor escolher o layout do seu teclado."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Aqui está a lista completa de teclados disponíveis"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Qual classe de instalaçăo vocę quer?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Instalar/Atualizar"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Isso é uma instalaçăo ou atualizaçăo?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Recomendado"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Expert"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Atualizar"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Salvar seleçăo de pacotes"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Favor escolher o tipo do seu mouse."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Porta do Mouse"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Favor escolher em qual porta serial seu mouse está conectado."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Emulaçăo dos botőes"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emulaçăo dos 2 botőes"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emulaçăo dos 3 botőes"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Configurando cartőes PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Configurando IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "sem partiçőes disponíveis"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Escanenado partiçőes para encontrar pontos de montagem"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Escolha os ponto de montagem"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Eu năo consigo ler sua tabela de partiçăo, é muito defeituosa para mim :(\n"
-"Eu posso tentar continuar limpando as partiçőes defeituosas (TODOS OS DADOS\n"
-"serăo perdidos!). A outra soluçăo é năo deixar o DrakX modificar a tabela\n"
-"de particăo. (o erro é %s)\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"O DiskDrake falhou na leitura da tabela de partiçăo.\n"
-"Continue a seu próprio risco!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "Escolha as partiçőes que vocę quer formatar"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Partiçăo Root"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Qual a partiçăo root (/) do seu sistema?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Vocę precisa reiniciar para que as modificaçőes na tabela de partiçăo tenham "
-"efeito"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Escolha as partiçőes que vocę quer formatar"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Checar blocos defeituosos?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formatando partiçőes"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Criando e formatando arquivo %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Sem swap suficiente para completar a instalaçăo, favor adicionar mais"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Procurando por pacotes disponíveis"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Procurando pacotes ŕ atualizar"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Seu sistema năo tem espaço suficiente para instalçăo ou atualizaçăo (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completa (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Mínima (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomendada (%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-#, fuzzy
-msgid "Load from floppy"
-msgstr "Restaurar do disquete"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Loading from floppy"
-msgstr "Restaurar do disquete"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Package selection"
-msgstr "Seleçăo de Grupo de Pacotes"
-
-#: ../../install_steps_interactive.pm_.c:578
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "Insira um disquete no drive %s"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Salvar em disquete"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "O tamanho escolhido é maior que o espaço disponível"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Se vocę tiver todos os CDs da lista abaixo, clique em Ok.\n"
-"Se vocę năo tiver nenhum desses CDs, clique em Cancelar.\n"
-"Se apenas alguns CDs estiverem faltando, desmarque-os, entăo clique em Ok."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom rotualdo \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Preparando instalaçăo"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Instalando pacote %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Configuraçăo pós-instalaçăo"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Insira um disquete no drive %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Insira um disquete vazio no drive %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Vocę agora tem a possibilidade de fazer o download de software voltado para "
-"codificaçăo (encriptaçăo).\n"
-"\n"
-"ATENÇĂO:\n"
-"Devido a vários requerimentos requeridos aplicados ŕ esses software e "
-"impostos\n"
-"por várias jurisdiçőes, o cliente e/ou o usuário final desse software deve\n"
-"se assegurar que as leis da sua jurisdiçăo lhe permite fazer o download, "
-"armazenar\n"
-"e/ou usar esse software.\n"
-"\n"
-"Além disso, o cliente e/ou o usuário final deve estar particularmente "
-"prevenido para\n"
-"năo infringir as leis de sua jurisdiçăo. Se o cliente e/ou o usuário final\n"
-"năo respeitar a provisăo dessas leis aplicáveis, irá lhe(s) ocorrer sérias\n"
-"sançőes.\n"
-"\n"
-"Em nenhum acontecimento irá a Mandrakesoft ou seu manufaturadores e/ou seu "
-"fornecedor\n"
-"ser responsávei por danos especiais, indiretos ou acidentais seja, qual for\n"
-"(incluindo, mas năo limitada ŕ perda de lucros, interrupçăo de negócios, "
-"perda\n"
-" de informaçăo comercial e outras perdas monetárias, e eventual "
-"endividamento e indenizaçăo\n"
-"a ser paga, de acordo com a decisăo da corte) saindo do uso, posse, ou do\n"
-"download isolado desse software, do qual o cliente e/ou o usuário final "
-"pode\n"
-"eventualmente ter acesso após ter assinado o acordo presente.\n"
-"\n"
-"\n"
-"Para qualquer pergunta relacionada a esse acordo, favor entrar em contato \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Contactando o mirror (espelho) para pegar a lista de pacotes disponíveis"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Escolha um mirror (espelho) de onde pegar os pacotes"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr ""
-"Contactando o mirror (espelho) para pegar a lista de pacotes disponíveis"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Qual é o seu fuso horário?"
-
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "O seu relógio do hardware está configurado como GMT?"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-#, fuzzy
-msgid "NTP Server"
-msgstr "Servidor NIS"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Sevidor CUPS remoto"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Nenhuma impressora"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Vocę tem alguma outra?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Sumário"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Mouse"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Fuso horário"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Impressora"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "Placa ISDN"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Placa de som"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "Placa de TV"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-#, fuzzy
-msgid "NIS"
-msgstr "Usar NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-#, fuzzy
-msgid "Local files"
-msgstr "Impressora local"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Especificar senha do root"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Nenhuma senha"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Essa senha é muito simples (deve ter ao menos %d caracteres)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autenticaçăo?"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "Autenticaçăo?"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-#, fuzzy
-msgid "LDAP Server"
-msgstr "servidor"
-
-#: ../../install_steps_interactive.pm_.c:1134
-#, fuzzy
-msgid "Authentication NIS"
-msgstr "Autenticaçăo NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "Domínio NIS"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "Servidor NIS"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Um disco de inicializaçăo provę uma maneira de dar boot no Linux sem\n"
-"depender de um inicializador normal. Isso é necessário se vocę năo quiser "
-"instalar\n"
-"o SILO no seu sistema, ou se outro sistema operacionar remover o SILO, ou\n"
-"o se\n"
-"SILO năo funcionar com o seu hardware. Um disco de inicializaçăo também\n"
-"pode\n"
-"ser usado com uma imagem de backup do Mandrake deixando muito mais fácil\n"
-"recuperar\n"
-"um sistema com danos severos.\n"
-"\n"
-"Se vocę quiser criar um disco de inicializaçăo para o seu sistema, insira um "
-"disquete\n"
-"no drive e aperte em \"OK\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Primeiro drive de disquete"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Segundo drive de disquete"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Pular"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Um disco de inicializaçăo provę uma maneira de entrar no Linux sem depender\n"
-"de um inicializador normal. Isso é necessário se vocę năo quiser instalar o "
-"LILO (ou\n"
-"o grub) no seu sistema, ou se outro sistema operacionar remover o LILO, ou "
-"se o LILO\n"
-"năo funcionar com o seu hardware. Um disco de inicializaçăo também pode ser "
-"usado com\n"
-"uma imagem de backup do Mandrake, deixando muito mais fácil recuperar um "
-"sistema\n"
-"com danos severos. Vocę quer criar um disco de inicializaçăo?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Desculpe, nenhum drive de disquete disponível"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
-"Escolha o drive de disquete que vocę quer usar para criar o disco de "
-"inicializaçăo"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Insira um disquete no drive %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Criando disco de inicializaçăo"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Preparando gerenciador de inicializaçăo"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Vocę quer usar o aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Erro instalando o aboot, \n"
-"tentar forçar a instalaçăo, mesmo que isso destrua a primeira partiçăo?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Instalar gerenciador de inicializaçăo"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr ""
-"A instalaçăo do gerenciador de inicializaçăo falhou. Ocorreram os seguintes "
-"erros:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, fuzzy, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"Vocę pode precisar mudar seu dispostivo de boot Open Firmware\n"
-" para ativar o gerenciado de boot. Se vocę năo ver o prompt dele ao\n"
-" reiniciar, segure Command-Option-O-F ao reiniciar e digite:\n"
-" setenv boot-device $of_boot,\\\\:tbxi\n"
-" Entăo escreva: shut-down\n"
-"No seu próximo boot, vocę deve ver o prompt do gerenciador de boot."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Insira um disquete vazio no drive %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Criando disquete de auto instalaçăo"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Alguns passos năo foram completados.\n"
-"\n"
-"Vocę realmente quer sair agora?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-#, fuzzy
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Parabéns, a instalaçăo foi completada.\n"
-"Remova a mídia de inicializaçăo e aperte enter para reiniciar.\n"
-"\n"
-"Para informaçőes sobre correçőes disponíveis para essa versăo do Mandrake "
-"Linux,\n"
-"consulte a Errata disponível em http://www.mandrakelinux.com/.\n"
-"\n"
-"Informaçőes sobre a configuraçăo do sistema estăo disponíveis no\n"
-"capítulo pós-instalaçăo do Guia Oficial de Usuário Mandrake Linux."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Criar disquete de auto instalaçăo"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"A auto instalaçăo pode ser totalmente automatizada se\n"
-"vocę quiser, nesse caso, ela tomará de conta do disco\n"
-"rígido!! (em vista a instalaçăo em outra máquina).\n"
-"\n"
-"Vocę pode preferir repetir a instalaçăo.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automático"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Repetir"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Salvar seleçăo de pacotes"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Instalaçăo do Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> move entre opçőes | <Espaço> seleciona | <F12> próxima "
-"tela "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu ausente"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Escolher açăo"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Avançado"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Por favor aguarde"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informaçăo"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandir Árvore"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Colapsar Árvore"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Mudar entre organizaçăo plana ou em grupo"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Má escolha, tente novamente\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Sua escolha? (padrăo %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Sua escolha? (padrăo %s) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Opçőes: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "Vocę quer usar o aboot?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Sua escolha? (padrăo %s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Tcheco (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Alemăo"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Espanhol"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Filandęs"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Francęs"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norueguęs"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polonęs"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Russo"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Sueco"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Inglęs (UK)"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Americano (US)"
-
-#: ../../keyboard.pm_.c:188
-#, fuzzy
-msgid "Albanian"
-msgstr "Iraniano"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armęnio (velho)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armęnio (máquina de escrever)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armęnio (fonético)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjani (latino)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belga"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Armęnio (fonético)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Búlgaro"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasileiro (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Bielorusso"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Suíço (layout Alemăo)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Suíço (layout Francęs)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Tcheco (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Alemăo (sem teclas mortas)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Dinamarquęs"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norueguęs)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estoniano"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgiano (layout \"Russo\")"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgiano (layout \"Latin\")"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Grego"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Húngaro"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Croata"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Israelense"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Israelense (Fonético)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iraniano"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandęs"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italiano"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japonęs 106 teclas"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Koreano"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latino Americano"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituânio AZERTY (velho)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituânio AZERTY (novo)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituânio \"número de colunas\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituânio \"fonético\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Lugar"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Macedônio"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Holandęs"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Polonęs (layout QWERTY)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Polonęs (layout QWERTZ)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portuguęs"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Canadense (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "Russo (Yawerty)"
-
-#: ../../keyboard.pm_.c:248
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "Russo (Yawerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Russo (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Eslovęnio"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Eslováquio (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Eslováquio (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "Azerbaidjani (cirílico)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Table"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Teclado Tailandęs"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Teclado Tailandęs"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turco (modelo \"F\" tradicional)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turco (modelo moderno \"Q\")"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ucraniano"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Americano (Internacional)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamita \"número de colunas\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Iugoslávio (latin/cirílico)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Monts circulares %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Remover os volumes lógicos primeiro\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Mouse"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan/FistMouse (serial)"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Mouse Genérico PS2 com roda"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 botăo"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Mouse Genérico com 2 Botőes"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Genérico"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Roda"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "serial"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Mouse Genérico com 3 Botőes"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech Série CC (serial)"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "Série MM"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Mouse Logitech (serial, tipo C7 antigo)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 botőes"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 botőes"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "nenhum"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Nenhum Mouse"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Favor testar o mouse"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Para ativar o mouse,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "MOVA SUA RODA!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Terminar"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Próximo ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Anterior"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Isto está correto?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Conectar ŕ Internet"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"A maneira mais comum de se conectar com adsl é pppoe.\n"
-"Mas algumas conexőes usam pptp, umas poucas usam dhcp.\n"
-"Se vocę năo sabe, escolha 'usar pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "usar dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "usar pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "usar pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Qual cliente dhcp vocę quer usar?\n"
-"O padrăo é dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Nenhum adaptador de rede ethernet foi detectado em seu sistema.\n"
-"Eu năo posso configurar esse tipo de conexăo."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Escolha a interface de rede"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Favor escolher qual adaptador de rede vocę quer usar para se conectar ŕ "
-"Internet"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "nenhuma placa de rede encontrada"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Configurando rede"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"Favor entrar com o nome do seu host (se vocę souber).\n"
-"Alguns servidores DHCP requerem o nome do host para funcionar.\n"
-"Seu nome do host deve ser um nome de host totalmente qualificado,\n"
-"como por exemplo ``mybox.mylab.myco.com''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Host name (nome do host)"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Auxiliar de Configuraçăo da Rede"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Modem ISDN externo"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Placa ISDN interna"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "De que tipo é sua conexăo ISDN?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "Configuraçăo de Firewall detectado!"
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "Configuraçăo de Firewall detectado!"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Configuraçăo ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Selecione o seu provedor.\n"
-" Se năo estiver na lista, escolha Năo Listado"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol"
-msgstr "Protocolo da inicializaçăo"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Europa (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "Resto do mundo"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Resto do mundo \n"
-" sem Canal-D (linhas arrendadas)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Qual protocolo vocę quer usar?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Qual tipo de placa vocę tem?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Eu năo sei"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Se vocę tiver uma placa ISA, os valores da próxima tela devem estar certos.\n"
-"\n"
-"Se vocę tiver uma placa PCMCIA, vocę tem que saber o irq e io de sua placa.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Abortar"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Continuar"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Qual é a sua placa ISDN?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Eu detectei um placa ISDN PCI, mas năo sei qual é o tipo. Favor selecionar "
-"uma placa PCI na próxima tela."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Nenhuma placa ISDN PCI encontrada. Favor selecionar uma na próxima tela"
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Favor escolher em qual porta serial seu modem está conectado."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Opçőes dialup"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Nome da conexăo"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Número do telefone"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "ID de Login"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Baseado em script"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Baseado em terminal"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Nome do domínio"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Primeiro Servidor DNS (opcional)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Segundo Servidor DNS (opcional)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Vocę pode se disconectar ou reconfigurar sua conexăo."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Vocę pode reconfigurar sua conexăo."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Vocę está conectado ŕ Internet."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Vocę pode se conectar ŕ Internet ou reconfigurar sua conexăo."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Vocę năo está conectado ŕ Internet."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Conectar"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Desconectar"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Configurar rede"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Conexăo e configuraçăo da Internet"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr ""
-"\n"
-"Vocę pode se disconectar ou reconfigurar sua conexăo."
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"Vocę pode se disconectar ou reconfigurar sua conexăo."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Configuraçăo da Rede"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Como vocę está fazendo uma instalaçăo por rede, sua rede já está "
-"configurada.\n"
-"Clique em Ok para manter sua configuraçăo, ou cancelar para reconfigurar sua "
-"conexăo de Internet & Rede.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Bem-vindo ao Ajudante de Configuraçăo de Rede\n"
-"\n"
-"Estamos para configurar sua conexăo de rede/internet.\n"
-"Se vocę năo quiser usar a auto detecçăo, desmarque a opçăo.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Escolha o perfil a configurar:"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Usar auto detecçăo"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Detectando dispositivos..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Conexăo normal via modem"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "detectado na porta %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "Conexăo ISDN"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "detectado %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy
-msgid "ADSL connection"
-msgstr "Coneçăo LAN"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "detectado na interface %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Conexăo via cabo"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Conexăo via cabo"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Coneçăo LAN"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "placa(s) ethernet detectada(s)"
-
-#: ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "Escolha a ferramente que vocę quer usar"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-#, fuzzy
-msgid "Internet connection"
-msgstr "Compartilhamento da Conexăo ŕ Internet"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Vocę quer iniciar sua conexăo ao iniciar?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Configuraçăo da Rede"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Um problema ocorreu reiniciando a rede: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Parabéns, a configuraçăo da rede e internet está concluída.\n"
-"\n"
-"A configuraçăo agora será aplicada no seu sistema.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Quando isso terminar, nós recomendados vocę a reiniciar o seu\n"
-"ambiente X para evitar o problema da mudança do nome do host."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"ATENÇĂO: Esse dispostivo já foi configurado para se conectar ŕ Internet.\n"
-"Apenas aceite para manter esse dispositivo configurado.\n"
-"A modificaçăo dos campos abaixo irá sobrepor essa configuraçăo."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Favor entrar com a configuraçăo IP para esta máquina.\n"
-"Cada item deve ser entrando como endereço IP pontilhado-decimal\n"
-"(por exemplo, 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Configurando dispositivo de rede %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (driver %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "Endereço IP"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Netmask"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "IP Automático"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "O endereço IP deve ser no formato 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Favor entrar com o nome do seu host.\n"
-"Seu nome do host deve ser um nome de host totalmente qualificado,\n"
-"como por exemplo ``mybox.mylab.myco.com'' .\n"
-"Vocę também pode entrar como o endereço IP de um gateway se vocę tiver um"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "Servidor DNS"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Dispositivo de gateway"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Configuraçăo de proxies"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "Proxy HTTP"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "Proxy FTP"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "O proxy deve ser http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "O proxy deve ser ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Configuraçăo da Internet"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Vocę quer tentar se conectar ŕ Internet agora?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Testando sua conexăo..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "O sistema está conectado ŕ Internet."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Por razăo de segurança, vocę será desconectado agora."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"O sistema năo está conectado ŕ internet.\n"
-"Tente reconfigurar sua conexăo."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Configuraçăo da Conexăo"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Favor preencher ou marcar os campos abaixo"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ da Placa"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "Memória da Placa (DMA)"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO da Placa"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_O da Placa"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 da Placa"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "O número do seu telefone"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Nome do provedor (ex: provedor.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Número do telefone do provedor"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 do provedor (opcional)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 do provedor (opcional)"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "Escolha seu teclado"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Modo de discagem"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "Tipo de conexăo: "
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Tipo de conexăo: "
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Nome da conta (nome do usuário)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Senha da conta"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "falhou ao montar: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Partiçăo extendida năo suportada nessa plataforma"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Vocę tem um buraco em sua tabela de partiçăo e eu năo posso usá-lo.\n"
-"A única soluçăo é mover suas partiçőes primárias para ter o buraco próximo "
-"das partiçőes extendidas"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Restauraçăo pelo arquivo %s falhou: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Arquivo de backup defeituoso"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Erro gravando no arquivo %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Algo ruim está acontecendo com o seu drive. \n"
-"O teste que checa a integridade dos dados falhou. \n"
-"Isso significa que gravar algo no disco resultará em lixo aleatório."
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "tem que ter"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "importante"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "muito bom"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "bom"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "talvez"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Impressora local"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Impressora remota"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Sevidor CUPS remoto"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "Servidor lpd remoto"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Impressora da rede (TCP/Socket)"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Servidor de Impressăo"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "Dispositivo de Impressăo URI"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Impressora local"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Impressora remota"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Erro gravando no arquivo %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(módulo %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP do servidor CUPS"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Default)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Selecionar Coneçăo da Impressora"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Como a impressora está conetada?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"Com um servidor CUPS remoto, vocę năo tem que configurar\n"
-"nenhuma impressora aqui; elas serăo detectadas automaticamente.\n"
-"Se tiver dúvida, selecione \"Servidor CUPS remoto\"."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Configuraçăo LAN"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Sevidor CUPS remoto"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "O endereço IP deve ser no formato 1.2.3.4"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-#, fuzzy
-msgid "The port number should be an integer!"
-msgstr "O número da porta deve ser numérico"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP do servidor CUPS"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Porta"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Configuraçăo do estilo de inicializaçăo"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Detectando dispositivos..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Testar portas"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Nenhuma impressora"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Impressora local"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Usar auto detecçăo"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "detectado %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Dispositivo de Impressăo URI"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Impressora local"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Favor escolher em qual porta serial seu modem está conectado."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Dispositivo de Impressăo URI"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Configuraçăo"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Instalando pacote %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Instalando pacote %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-#, fuzzy
-msgid "Reading printer database ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Opçőes da impressora lpd Remota"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Para usar uma fila de impressăo lpd remota, vocę precisa\n"
-"dar o nome do host e o servidor de impressăo e o nome da\n"
-"fila naquele servidor."
-
-#: ../../printerdrake.pm_.c:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "Nome do host remoto"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:630
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "Nome do host remoto"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Nome do host remoto"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opçőes de Impressăo SMB (Windows 9x/NT)"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Para imprimir em uma impressora SMB, vocę precisa\n"
-"dar o nome do host SMB (Nota! Ele pode ser diferente\n"
-"do host TCP/IP!) e possivelmente o endereço IP do servidor de impressăo,\n"
-"como também o nome compartilhado para a impressora que vocę deseja acessar "
-"e\n"
-"qualquer informaçăo aplicável sobre nome de usuário, senha e grupo de "
-"trabalho."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Host servidor SMB"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP do servidor SMB"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Nome compartilhado"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Grupo de trabalho"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Opçőes de Impressăo NetWare"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Para imprimir em uma impressora NetWare, vocę precisar dar o\n"
-"nome do servidor de impressăo NetWare (Nota! ele pode ser diferente\n"
-"do host TCP/IP!) como também o nome da fila de impressăo para a impressora\n"
-"que vocę deseja acessar como qualquer nome de usuário e senha aplicável."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Servidor de Impressăo"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Nome da Fila de Impressăo"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Opçőes da Impressora Socket"
-
-#: ../../printerdrake.pm_.c:853
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Para imprimir em uma impressora socket, vocę precisa prover\n"
-"o nome do host da impressora e a número da porta (opcional)."
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "Nome do host da impressora"
-
-#: ../../printerdrake.pm_.c:858
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "Nome do host da impressora"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "Dispositivo de Impressăo URI"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Nome da impressora"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descriçăo"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Lugar"
-
-#: ../../printerdrake.pm_.c:1021
-#, fuzzy
-msgid "Preparing printer database ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Isto está correto?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:1139
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Conexăo da Impressora"
-
-#: ../../printerdrake.pm_.c:1140
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "Qual tipo de impressora vocę tem?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Configuraçăo da Internet"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Configuraçăo da Internet"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Vocę quer testar a impressăo?"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "Testar portas"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-#, fuzzy
-msgid "No test pages"
-msgstr "Sim, imprimir ambas as páginas de teste"
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "Impressora"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Padrăo"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "Imprimindo página(s) de teste..."
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "Imprimindo página(s) de teste..."
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Imprimindo página(s) de teste..."
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Imprimindo página(s) de teste..."
-
-#: ../../printerdrake.pm_.c:1635
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"A pagina de teste foi mandado ao demónio de impressăo,\n"
-"pode demorar um pouco até a impressora começar.\n"
-"Estado da impressăo:\n"
-"%s\n"
-"\n"
-"A impressăo funcionou corretamente?"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"A pagina de teste foi mandado ao demónio de impressăo,\n"
-"pode demorar um pouco até a impressora começar.\n"
-"A impressăo funcionou corretamente?"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Nenhuma impressora"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Fechar"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Fechando (desconectando) a rede"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Fechando (desconectando) a rede"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Opçőes da impressora"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Configuraçăo da Internet"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "O nome da impressora deve conter apenas letras, números e o símbolo _"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "Nenhuma impressora"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Iniciando sua conexăo..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Configurar rede"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Monitor năo configurado"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Configurando rede"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Qual sistema de impressăo vocę quer usar?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Alto"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Paranóico"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Qual sistema de impressăo vocę quer usar?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Selecionar Coneçăo da Impressora"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Qual sistema de impressăo vocę quer usar?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Configurar Impressora"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Instalando pacote %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Opçőes da impressora"
-
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Configurar Impressora"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Vocę gostaria de configurar uma impressora?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Aqui estăo as filas de impressăo.\n"
-"Vocę pode adicionar mais ou modificar as existentes."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Aqui estăo as filas de impressăo.\n"
-"Vocę pode adicionar mais ou modificar as existentes."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Configurar rede"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Modo Normal"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Vocę quer testar a configuraçăo?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Configuraçăo da Internet"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Vocę quer testar a configuraçăo?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Compartilhamento da Conexăo ŕ Internet"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Conexăo da Impressora"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "Imprimindo página(s) de teste..."
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Vocę quer testar a configuraçăo?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Impressora remota"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Impressora local"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Vocę quer reiniciar a rede"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Lendo banco de dados de drivers do CUPS"
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-#, fuzzy
-msgid "Proxy configuration"
-msgstr "Configuraçăo de proxies"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr ""
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-#, fuzzy
-msgid "port"
-msgstr "Porta"
-
-#: ../../proxy.pm_.c:44
-#, fuzzy
-msgid "Url should begin with 'http:'"
-msgstr "O proxy deve ser http://..."
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-#, fuzzy
-msgid "The port part should be numeric"
-msgstr "O número da porta deve ser numérico"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "O proxy deve ser ftp://..."
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-#, fuzzy
-msgid "login"
-msgstr "Autologin"
-
-#: ../../proxy.pm_.c:82
-#, fuzzy
-msgid "password"
-msgstr "Senha"
-
-#: ../../proxy.pm_.c:84
-#, fuzzy
-msgid "re-type password"
-msgstr "Nenhuma senha"
-
-#: ../../proxy.pm_.c:88
-#, fuzzy
-msgid "The passwords don't match. Try again!"
-msgstr "As senhas năo conferem"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Năo posso adicionar partiçăo ao RAID _formatado_ md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Năo posso gravar arquivo %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid falhou"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid falhou (talvez o raidtools esteja faltando)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Sem partiçőes suficientes para RAID nível %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Iniciar o sistema de som ALSA (Arquitetura Avançada de Som Linux)"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, um agendador de comando periódicos"
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd é usado para monitarar o estado da bateria e gravando-o via syslog.\n"
-"Ele também pode ser usado para desligar a máquina quando a bateria estiver "
-"fraca."
-
-#: ../../services.pm_.c:18
-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 ""
-"Executa comando agendados pelo comando at na hora especificado quando\n"
-"at estava rodando, e executa comandos grupos de comandos quando o uso de "
-"memória estiver baixo o suficiente."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron é um program UNIX padrăo que executa progrmas especificados pelo\n"
-"usuaio em horas marcadas. vixie cron adiciona várias características ao "
-"UNIX\n"
-"cron básico, incluindo melhor segurança e melhores opçőes de configuraçăo."
-
-#: ../../services.pm_.c:23
-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 adiciona suporte ao mouse ŕ aplicativos Linux com base em texto\n"
-"tal como o Midnight Commander. Ele também permitir copiar e colar "
-"utilizando\n"
-"o mouse e inclui suporte para menus pop-up no console."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake executa uma detecçăo do hardware existente, e\n"
-"opcionalmente configura um novo/alterado hardware."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache é um servidor World Wide Web. Ele é usado para servir arquivos\n"
-"HTML e CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"O internet superserver daemon (normalmente chamado inetd) inicia\n"
-"uma variedade de outros serviços de internet quando necessário. É "
-"responsável\n"
-"pela inicializaçăo de vários serviços, incluindo telnet, ftp, rsh e rlogin. "
-"Disabilitando\n"
-"inetd, todos os serviços pela qual ele é responsável também săo "
-"desabilitados."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Iniciar filtro de pacots para kernel Linux série 2.2, para criar\n"
-"um firewall para proteger sua máquina de ataques de rede."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Esse pacote carrega o mapa de teclado selecionado como\n"
-"um comando em /etc/sysconfig/keyboard. Isso pode ser selecionado usando o\n"
-"utilitário kbdconfig. Vocę deve deixar isso ativar para a maioria da "
-"máquinas."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Regeneraçăo automática do heador do kernel no /boot para\n"
-"/usr/include/linux{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Detecçăo e configuraçăo automática do hardware na inicializaçăo."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf irá periodicamente executar várias tarefas durante a\n"
-"inicializaçăo para manter a configuraçăo do sistema"
-
-#: ../../services.pm_.c:43
-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 é o daemon de impressăo requerido para o lpr funcionar corretamente.\n"
-"Ele é basicamente um servidor que organiza os trabalhos ŕ(s) impressora(s)."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Servidor Virtual Linux, utilizado para criar um servidor de alta\n"
-"performance e alta acessibilidade."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) é um Servidor de Nome de Domínio (DNS) que é usado para\n"
-"transformar nome de hosts para endereços IP."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Monta e desmonta todos os pontos de montagem do Network File\n"
-"System (NFS), SMB (Gerenciador de Rede/Windows) e NCP (NetWare)."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Ativa/Desativa todas as interfaces de rede configuradas para iniciar\n"
-"na hora de inicializaçăo."
-
-#: ../../services.pm_.c:52
-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 é um protocolo popular usado no compartilhamento de arquivos através\n"
-"de redes TCP/IP. Esse serviço provę a funcionalidade do servidor NFS, que é "
-"configurado através do arquivo /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS é um protocolo popular usado para compartilhar arquivos através de\n"
-"redes TCP/IP. Esse serviço provę a funcionalidade de trava de arquivos NFS."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Automaticamente ativa o Num Lock no console e XFree\n"
-"durante a inicializaçăo."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Suporte para impressoras OKI-4w e compatíveis."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"Suporte PCMCIA é utilizado normalmente para suportar coisas como\n"
-"ethernet ou modems em laptops. Ele năo será iniciado a năo ser que "
-"estejaconfigurado,\n"
-"entăo é seguro te-lo instalado em máquinas que năo precisam dele."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"O portmapper gerencia conexőes RPC, que săo usadas por\n"
-"protocolos como NFS ou NIS. O servidor portmap deve estar rodando em "
-"máquinas\n"
-"que serăo os servidores para os protocolos que utilizam o mecanismo RPC."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix é um Agente de Transporte de Correio, que é um programa\n"
-"que move mensagens entre uma máquina e outra."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Salva e restaura o entropy pool do sistema para melhor qualidade\n"
-"na geraçăo randômica de número."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Determinar dispositivos raw como dispositovs de bloco\n"
-"(como partiçőes), para o uso em aplicativos como o Oracle"
-
-#: ../../services.pm_.c:71
-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 ""
-"O daemon routed permite a atualizaçăo automática da tabela roteadora\n"
-"IP através do protocolo RIP. Enquanto o RIP é usado largamente em pequenas\n"
-"rede, protocolos de roteamento mais complexos săo necessários em redes mais "
-"complexas."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"O protcolo rstat permite que usários da rede recebam\n"
-"informaçőes sobre a perfomance de qualquer máquina na rede."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"O protocolo rusers pertmite que os usuários da rede identifiquem\n"
-"quem está logado na máquina correspondente do outro."
-
-#: ../../services.pm_.c:78
-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 ""
-"O protocolo rwho permite que usuários remotos peguem uma lista de todos os\n"
-"usuários logados em uma máquina rodando o daemon rwho (similar ao finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Iniciar o sistema de som da sua máquina"
-
-#: ../../services.pm_.c:81
-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 é um aparato que muitos daemons usam para gravar mensagens\n"
-"em vários arquivos de log. É uma boa idéia sempre rodar o syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Carrega os drivers para seus dispositivos usb."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Inicia o Servidor de Fontes X (é obrigatório para a execuçăo do XFree)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-"Escolha quais serviços devem ser inicializados automaticamente na "
-"inicalizaçăo"
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Impressora"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Modo do sistema"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Opçőes da impressora lpd Remota"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Servidor, Bancos de dados"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "dispositivo"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "iniciado"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "parado"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Serviços e daemons"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Nenhuma informaçăo adicional\n"
-"sobre este serviço, desculpe."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "No boot"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Status:"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Setor"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Resto do mundo"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Acesso ŕ Internet"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimídia - Gráficos"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Desenvolvimento"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Centro de Controle"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Interface de rede"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "Host servidor SMB"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Jogos"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Expert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Instalando pacote %s"
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Eu năo consigo ler sua tabela de partiçăo, é muito defeituosa\n"
-"para mim. Eu irei tentar continuar limpando as partiçőes defeituosas"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Erro"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Configuraçăo pós-instalaçăo"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Configuraçăo do estilo de inicializaçăo"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Parabéns!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Instalar"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Adicionar um usuário"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Formatando arquivo loopback %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Arquivo de backup defeituoso"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Arquivo de backup defeituoso"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Arquivo de backup defeituoso"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Seleçăo de Grupo de Pacotes"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Escolha os pacotes que vocę quer instalar"
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Fila remota"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Remover Windows(TM)"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Nome do usuário"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Favor testar o mouse"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Favor tentar novamente"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Favor tentar novamente"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "Nenhuma senha"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Coneçăo LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Selecionar Coneçăo da Impressora"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Favor escolher o layout do seu teclado."
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Favor clicar em uma partiçăo"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Escolha os pacotes que vocę quer instalar"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Arquivo de backup defeituoso"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Favor testar o mouse"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Arquivo de backup defeituoso"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Interface de rede"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Nome do usuário"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Escolha os pacotes que vocę quer instalar"
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Favor escolher o idioma a ser utilizado."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Detecçăo de discos rigidos"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Nome do usuário"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "Roda"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "Roda"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Opçőes do módulo:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Configuraçăo da Rede"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Escolha os pacotes que vocę quer instalar"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Escolha os pacotes que vocę quer instalar"
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Setup dos sistemas de arquivos"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Opçőes"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Favor escolher em qual porta serial seu modem está conectado."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Configuraçăo da Rede"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Arquivo de backup defeituoso"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Favor escolher o tipo do seu mouse."
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Arquivo de backup defeituoso"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Restaurar do disquete"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Favor escolher o tipo do seu mouse."
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Outro"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Instalar sistema"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Restaurar do arquivo"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Restaurar do arquivo"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Personalizada"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/Aj_uda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- Anterior"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Status:"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Arquivo de backup defeituoso"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Restaurar do arquivo"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Próximo ->"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Escolha pacotes a serem instalados"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Favor escolher o idioma a ser utilizado."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Favor escolher o idioma a ser utilizado."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Favor escolher o idioma a ser utilizado."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Arquivo de backup defeituoso"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Arquivo de backup defeituoso"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Arquivo de backup defeituoso"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Salvar no arquivo"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Favor testar o mouse"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Escolha os pacotes que vocę quer instalar"
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Configuraçăo da Rede"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Configuraçăo da Rede"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Configuraçăo LAN"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Configuraçăo LAN"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Setup dos sistemas de arquivos"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "A Instalaçăo do %s falhou. Ocorreram os seguintes erros:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "nenhuma placa de rede encontrada"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Pronto"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Preparando instalaçăo"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-#, fuzzy
-msgid "Restart XFS"
-msgstr "restrito"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "restrito"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Formatar partiçőes"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuraçăo LAN"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Ponto de Montagem"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Escolha as partiçőes que vocę quer formatar"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Escritório"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "Abortar"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Impressora"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Instalar sistema"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Selecione arquivo"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Impressora remota"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
-msgid "Initials tests"
-msgstr "Mensagem Inicial"
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Nenhum adaptador de rede em seu sistema!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Instalar"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Nenhum adaptador de rede em seu sistema!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Sair da instalaçăo"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Compartilhamento da Conexăo ŕ Internet"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "O Compartilhamento da Conexăo ŕ Internet está ativo"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"A configuraçăo de compartilhamento da conexăo ŕ Internet já foi feita.\n"
-"Ela está ativa.\n"
-"\n"
-"O que vocę gostaria de fazer?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "desativar"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "liberar"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "reconfigurar"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Desativando servidores..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "O Compartilhamento da Conexăo ŕ Internet agora está desativado."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "O Compartilhamento da Conexăo ŕ Internet está desativado"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"A configuraçăo do compartilhamento da conexăo ŕ Internet já foi feito.\n"
-"Está desabilitado.\n"
-"\n"
-"O que vocę gostaria de fazer?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "ativar"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Ativando servidores..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "O Compartilhamento da Conexăo ŕ Internet agora está ativo."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Vocę está para configurar o compartilhamento da conexăo ŕ Internet do seu \n"
-"computador. Assim, outros computadores da sua rede local serăo capaz de user "
-"a conexăo ŕ Internet deste computador.\n"
-"\n"
-"Nota: vocę precisa de um Adaptador de Rede dedicado para criar um Rede Local "
-"(LAN)."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interface %s (usando módulo %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Interface %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Nenhum adaptador de rede em seu sistema!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Nenhum adaptador de rede foi detectado em seu sistema. Favor executar a "
-"ferramenta de configuraçăo de hardware."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Interface de rede"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Existe apenas um adaptador de rede configurado em seu sistema:\n"
-"\n"
-"%s\n"
-"\n"
-"Irei configurar sua Rede Local (LAN) com esse adaptador."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Favor escolher qual adaptador de rede será conectado ŕ su Rede Local."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Monitor năo configurado"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Configuraçăo do estilo de inicializaçăo"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Configuraçăo da Internet"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "IP do servidor CUPS"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Potencial conflinto de endereço LAN encontra na configuraçăo atual de %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Configuraçăo de Firewall detectado!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Atençăo! Uma configuraçăo de firewall foi detectada. Talvez vocę terá que "
-"fazer alguma correçăo manual após a instalaçăo."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Configurando..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Configurando scripts, instalando programas, iniciando servidores..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemas instalando pacote %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Tudo foi configurado.\n"
-"Vocę agora pode compartilhar sua conexăo com outros computadores na sua Rede "
-"Local (LAN), usando a configuraçăo automática de rede (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "A configuraçăo já foi feita, mas está desativada."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "A configuraçăo já foi feita e está desativada."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "O Compartilhamento de Conexăo ŕ Internet nunca foi configurado."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Configuraçăo do compartilhamento da Internet"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Bem-vindo ao utilitário de Compartilhamente da Conexăo ŕ Internet!\n"
-"\n"
-"%s\n"
-"\n"
-"Clique em ``Configurar'' se vocę quiser abrir o ajudante de configuraçăo."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuraçăo da Rede (%d adaptadores)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Apagar perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil a apagar:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novo perfil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostname:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Acesso ŕ Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipo:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interface:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configurar Acesso ŕ Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuraçăo LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Driver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interface"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocolo"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configurar Rede Local (LAN)..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Ajudante..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplicar"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Por favor aguarde... Aplicando a configuraçăo"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Conectado"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Năo conectado"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Conectar..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Desconectar..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Vocę năo possui nenhuma interface configurada.\n"
-"Configure-as primeiro clicando em 'Configurar'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuraçăo LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocolo da inicializaçăo"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciado na inicializaçăo"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Ativo"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Ativo"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Vocę năo possui nenhuma conexăo ŕ Internet.\n"
-"Crie uma clicando em 'Configurar'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuraçăo da conexăo ŕ Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuraçăo da conexăo ŕ Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipo de conexăo: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parâmetros"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Placa Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Cliente DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Opçőes do nível de segurança"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Centro de Controle"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Escolha a ferramente que vocę quer usar"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Canadense (Quebec)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "Europa"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Islandęs"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "Europa"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "serial"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "utilizaçăo: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Favor escolher o layout do seu teclado."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Vocę quer que o BackSpace retorne o Delete no console?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Mudar Cd-Rom"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Favor inserir o Cd-Rom de instalaçăo no seu drive e pressionar em Ok.\n"
-"Se vocę năo o tiver, pressione em Cancelar para sair da atualizaçăo on-line."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Incapaz de iniciar a atualizaçăo on-line!!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-#, fuzzy
-msgid "logdrake"
-msgstr "draknet"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Arquivo/_Novo"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>A"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Arquivo/_Abrir"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>A"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Arquivo/_Salvar"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Arquivo/Salvar _Como"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Arquivo/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Opçőes"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Opçőes/Teste"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/Aj_uda"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Ajuda/_Sobre"
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Nome do usuário"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "Mensagem Inicial"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:191
-#, fuzzy
-msgid "matching"
-msgstr "Máquina:"
-
-#: ../../standalone/logdrake_.c:192
-#, fuzzy
-msgid "but not matching"
-msgstr "Máquina:"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Configuraçăo LAN"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache e Pro-ftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "dispositivo"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "Formatando"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Configuraçăo"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Salvar como..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Favor escolher o tipo do seu mouse."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "nenhum usb_serial encontrado\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Deseja emulaçăo de 3 botőes?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Selecione uma placa gráfica"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Dispositivo de boot"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Configuraçăo de Firewall"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Configuraçăo de Firewall"
-
-#: ../../standalone/tinyfirewall_.c:79
-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"
-"Vocę já tem um firewall configurado.\n"
-"Clique em configurar para alterar ou remover o firewall"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Clique em configurar para criar um firewall padrăo"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Escolha seu idioma"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Selecione a classe da instalaçăo"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Detecçăo de discos rigidos"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Configurar mouse"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Escolha seu teclado"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Segurança"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Setup dos sistemas de arquivos"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formatar partiçőes"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Escolha pacotes a serem instalados"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Instalar sistema"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Adicionar um usuário"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Configurar rede"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Configurar serviços"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Instalar gerenciador de inicializaçăo"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Criar um disco de inicializaçăo"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Configurar X"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Instalar sistema"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Sair da instalaçăo"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"configurador pequenoFirewall\n"
-"\n"
-"Isso configura um firewall pessoal para essa máquina Mandrake Linux.\n"
-"Para um firewall dedicado potente, favor procurar a distribuiçăo\n"
-"especilizada MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Agora lhe perguntaremos sobre qual serviços vocę gostaria de permitir\n"
-"a Internet se conectar. Por favor, pense cuidadosamente sobre essas\n"
-"perguntas, já que a segurança do seu computador é importante.\n"
-"\n"
-"Atençăo, se vocę năo estiver usando um desses serviços, retire o firewall "
-"dele. Vocę pode alterar essa configuraçăo a qualquer hora,\n"
-"basta re-executar esse aplicativo!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Vocę está executando um servidor web nesta máquina que vocę precisa\n"
-"que toda a Internet veja? Se vocę estiver executando um servidor web que\n"
-"precisa ser acessado por esta máquina apenas, favor responder NĂO aqui.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Vocę está executando um servidor de nome nesta máquina? Se vocę năo\n"
-"configurou um que dę a sua informaçăo de zona e IP para toda a Internet,\n"
-"favor responder năo.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Vocę quer permitir receber conexőes Secure Shell (ssh)? Isso é um\n"
-"substituto da telnet que vocę pode usar para login. Se vocę estiver\n"
-"usando telnet agora, vocę deveria mudar definitivamente para ssh. telnet\n"
-"năo é codificada -- entăo alguns agressores podem roubar sua senha.\n"
-"ssh é codificada e năo permite esse tipo de roubo."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Vocę quer permitir receber conexőes telnet?\n"
-"Isso é terrivelmente inseguro, como explicado na tela anterior. Nós\n"
-"fortemente recomendamos responder Năo aqui e utilizar ssh no lugar\n"
-"da telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Vocę está executando um servidor FTP que precisa ser acessível pela\n"
-"Internet? Se vocę estiver, nós realmente recomendamos que vocę user\n"
-"apenas para transferęncias anônimas. Qualquer senha enviada por FTP pode\n"
-"ser roubada por invasores, desde que FTP năo usa codificaçăo de senhas.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Vocę está executando um servidor de mensagens aqui? Se vocę esiver\n"
-"mando mensagens pelo pine, mutt ou qualquer outro cliente de texto,\n"
-"vocę provavelmente está. Caso contrário, vocę deve retirar o firewall dele.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Vocę está executando um servidor POP ou IMAP aqui? Ele seria\n"
-"utilizado para hospedar contas năo baseadas na web para\n"
-"pessoas através desta máquina.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Vocę parece estar utilizando um kernel 2.2. Se seu número IP\n"
-"for automaticamente dado por um computador em sua casa ou \n"
-"escritório (determinado dinamicamente), nós precisamos permitir\n"
-"isso. É esse o caso?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"O seu computador está sincronizando a hora com outro computador?\n"
-"Normalmente, isso é utilizado por organizaçőes Unix/Linux médias-grandes\n"
-"para sincronizar o tempo para relatório, etc. Se vocę năo for\n"
-"parte de uma grande empresa ou nunca ouviu sobre isso, vocę \n"
-"provalvemente năo está."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Configuraçăo completa. Essas alteraçőes podem ser gravadas no disco?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Năo foi possível abrir %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Erro arbindo %s para gravaçăo: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Configuraçăo de Firewall"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Por favor aguarde, preparando instalaçăo"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Servidor, Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Computador de rede (cliente)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "Servidor NFS, servidor SMB, servidor Proxy, servidor SSH"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Escritório"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Estaçăo de Trabalho Gnome"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Ferramentas para o seu Palm Pilot e seu Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Estaçăo de Trabalho"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Servidor, Firewall/Roteador"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Nome do Domínio e Servidor de Informaçăo da Rede"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Programas de escritório: processadores de texto (kword, abiword), tabelas "
-"(kspread, gnumeric), visualizadores pdf, etc"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr ""
-"Ferramentas relacionadas ŕ áudio: tocadores de mp3 ou midi, mixers, etc"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Livros e Howto's sobre Linux e Software Livre"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Estaçăo de Trabalho KDE"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimídia - Vídeo"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-"Conjunto de ferramentas para mensagens, notícias, web, transferęncias de "
-"arquivos e bate-papo"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Servidor, Bancos de dados"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Servidor de banco de dados PostgreSQL ou MySQL"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Ferramentas para facilitar a configuraçăo do seu computador"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimídia - Som"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitários"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Documentaçăo"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Ferramentas do Console"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Servidor de mensagens postfiz, servidor de notícias Inn"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Estaçăo de Internet"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Estaçăo de Multimídia"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "Configuraçăo LAN"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Mais Desktops Gráficos (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"O K Desktop Environment, o ambiente gráfico básico acompanhando de uma "
-"coleçăo de ferramentas"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Ambiente Gráfico"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache e Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Ferramentas para criar e gravar CD's"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Estaçăo de Trabalho de Escritório"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "servidor"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Programas gráficos como o The Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Bibliotecas de desenvolvimento C e C++, programas e arquivos include"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Servidor de Rede"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Servidor, Correio/Groupware/News"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Estaçăo de Jogos"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Editor e visualizadores de Vídeo"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimídia - Gráficos"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Programas de divertimento: arcade, estratégia, etc"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Conjunto de ferramentas para ler e enviar mensagem e notícias (pine, mutt, "
-"tin...) e para navegar na Web"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arquivamento, emuladores, monitoramento"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Finança Pessoal"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Um ambiente gráfico com um conjunto de aplicativos e ferramenas de desktop "
-"amigáveis"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Clientes para protocolos diferentes incluindo ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Internet Gateway"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programas editores/tocadores de som e vídeo"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Outros Desktops Gráficos"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editores, shells, ferramentas de arquivos, terminais"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programas para gerenciar seu dinheiro, como o gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Gereciador de Informaçăo Pessoal"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimídia - Gravaçăo de CD"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Estaçăo de Trabalho Científica"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Abortar"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "Pronto"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Escolha o usuário:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Impressora remota"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Agora vocę poder prover as opçőes para o módulo %s."
-
-#~ msgid "Low"
-#~ msgstr "Baixo"
-
-#~ msgid "Medium"
-#~ msgstr "Médio"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Algumas melhoras para esse nível de segurança, a principal é que existem\n"
-#~ "mais avisos e testes de segurança."
-
-#~ msgid "mount failed"
-#~ msgstr "falhou ao montar"
diff --git a/perl-install/share/po/ro.po b/perl-install/share/po/ro.po
deleted file mode 100644
index 82e30c776..000000000
--- a/perl-install/share/po/ro.po
+++ /dev/null
@@ -1,12989 +0,0 @@
-# Translation file of Mandrake graphic install
-# Copyright (c) 2000 MandrakeSoft
-# Florin Grad <florin@mandrakesoft.com>, 1999-2000
-# Dragos Marian Barbu <dragosb@softhome.net>, 2000
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX 7.1\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-04-30 2:55+0200\n"
-"Last-Translator: Florin Grad <florin@mandrakesoft.com>\n"
-"Language-Team: romanian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-2\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:249
-#, fuzzy
-msgid "Multi-head configuration"
-msgstr "Citirea configuraţiei"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Carte grafică"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Alegeţi o carte grafică"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Alegeţi un server X"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Server X"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Alegeţi un server X"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Server X"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, fuzzy, c-format
-msgid "XFree %s"
-msgstr "Server XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:363
-#, fuzzy
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Ce tip de intrări doriţi să adăugaţi ?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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:417
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:421
-#, fuzzy
-msgid "XFree configuration"
-msgstr "Configuraţie post-install"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Alegeţi memoria pentru cartea grafică"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Alegeţi opţiunile pentru server"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Alegeţi un monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Cei doi parametri critici sunt rata de actualizare verticală, care este "
-"rata\n"
-"la care întregul ecran e actualizat şi mai important rata de sincronizare\n"
-"orizontală, care este rata la care liniile de scan sunt afişate.\n"
-"Este FOARTE IMPORTANT să nu specificaţi un tip de monitor cu interval de\n"
-"sincronizare care depăşeşte capabilităţile monitorului vostru: puteţi\n"
-"distruge monitorul în acest fel.\n"
-"Dacă nu sunteţi sigur, alegeţi parametri conservativi."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Rata de actualizare orizontală"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Rata de actualizare verticală"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor nu a fost încă configurat"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Cartea grafică nu a fost configurată încă"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Rezoluţia nu a fost încă aleasă"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Doriţi să testaţi configuraţia ?"
-
-#: ../../Xconfigurator.pm_.c:650
-#, fuzzy
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Atenţie: testul e periculos pentru această carte grafică"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test de configuraţie"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"reîncercaţi după ce aţi modificat ceva parametri"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "A apărut o eroare:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Testul se va termina în %d secunde"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Configuraţia e corectă"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Eroare, reîncercaţi după ce aţi modificat ceva parametri"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Rezoluţie"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Alegeţi rezoluţia şi culorile"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Carte grafică: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Server XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr "Deplasează"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Expert Mode"
-msgstr "Expert"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Afişaţi tot"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezoluţii"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Tastatura : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Tip de mouse : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Periferic pentru mouse: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Frecvenţa orizontala pentru monitor : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Frecvenţa verticala pentru monitor : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Carte grafică : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Carte grafică : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Memorie grafică : %s KB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, fuzzy, c-format
-msgid "Color depth: %s\n"
-msgstr "Opţiuni pentru culori:"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, fuzzy, c-format
-msgid "Resolution: %s\n"
-msgstr "Rezoluţii"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Server XFree86 : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, fuzzy, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Server XFree86 : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pregătesc configuraţia X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Ce doriţi să faceţi ?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Alegeţi un alt tip de monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Alegeţi un alt tip de carte grafică"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Schimbaţi opţiunile server-ului"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Alegeţi o altă rezoluţie"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Afişează informaţiile"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Testează din nou"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Ieşire"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, fuzzy, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr "Pastraţi configuraţia IP curentă"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "Sever X la demaraj"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Pot să configurez calculatorul sa demareze automat X la demaraj.\n"
-"Doriţi sa demaraţi X cînd redemaraţi ?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Vă rog reconectaţi-vă ca %s pentru a activa schimbările"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Vă rog delogaţi-vă şi folosiţi Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 de culori (8 biţi)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mii de culori (15 biţi)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mii de culori (16 biţi)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milioane de culori (24 biţi)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliarde de culori (32 biţi)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB sau mai mult"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 la 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 la 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Compatibil, 1024x768 la 87 Hz întreţesut (nu 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 la 87 Hz întreţesut, 800x600 la 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA Extins, 800x600 la 60 Hz, 640x480 la 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Ne-Întreţesut SVGA, 1024x768 la 60 Hz, 800x600 la 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Înaltă frecvenţă SVGA, 1024x768 la 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frecvenţă care e capabil de 1280x1024 la 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frecvenţă care e capabil de 1280x1024 la 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frecvenţă care e capabil de 1280x1024 la 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor care e capabil de 1600x1200 la 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor care e capabil de 1600x1200 la 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Primul sector al partiţiei de demaraj"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Primul sector al discului (MBR)"
-
-#: ../../any.pm_.c:120
-#, fuzzy
-msgid "SILO Installation"
-msgstr "Instalare LILO/grub"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Unde doriţi să instalaţi Gestionarul de demaraj ?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Instalare LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr ""
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr ""
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr ""
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr ""
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr ""
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-#, fuzzy
-msgid "Yaboot"
-msgstr "Root"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Opţiunile principale ale gestionarului de demaraj"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-#, fuzzy
-msgid "Bootloader to use"
-msgstr "Opţiunile principale ale gestionarului de demaraj"
-
-#: ../../any.pm_.c:169
-#, fuzzy
-msgid "Bootloader installation"
-msgstr "Opţiunile principale ale gestionarului de demaraj"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Periferic de demaraj"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (nu funcţionează cu BIOS-urile vechi)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Compact"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "compact"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Mod video"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Timp de aşteptare înaintea demarării imaginii standard"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Parola"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Parola (din nou)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Limitează opţiunile liniei de comandă"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "limitează"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Curăţă /tmp la fiecare demaraj"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Precizează cantintatea de RAM dacă e necesar (am găsit %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Activează profilurile multiple"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Introduceţi cantintatea de RAM în MB"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Opţiunea ``Limitează opţiunile liniei de comandă'' e inutilă fără parolă"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Încercaţi din nou"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Parolele nu corespund"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr ""
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr ""
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr ""
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:206
-#, fuzzy
-msgid "Default OS?"
-msgstr "Standard"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Acestea sunt diferitele intrările.\n"
-"Puteţi să mai adăugaţi şi altele sau să schimbaţi cele existente."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Adaugă"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Gata"
-
-#: ../../any.pm_.c:265
-#, fuzzy
-msgid "Modify"
-msgstr "Modifică RAID"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Ce tip de intrări doriţi să adăugaţi ?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Alt SO (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Alt SO (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Alt SO (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Imagine"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Append"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Citeşte-Scrie"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabel"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Nesigur"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Etichetă"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Standard"
-
-#: ../../any.pm_.c:326
-#, fuzzy
-msgid "Initrd-size"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr ""
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Şterge intrarea"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Eticheta goală nu e permisă"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Trebuie să aveţi o partiţie swap"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Această etichetă nu e permisă"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Am găsit interfaţele %s %s"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Aveţi o altă interfaţa?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Aveţi vreo interfaţă %s ?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Nu"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Da"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Vezi info hardware"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instalarea pilotului pentru %s cartea %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Care %s pilot să încerc?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"În anumite cazuri, pilotul %s necesită informaţii suplimentare pentru a\n"
-"funcţiona corect, dar funcţionează bine şi fără. Doriţi să specificaţi\n"
-"opţiuni suplimentare sau îi permiteţi să interogheze calculatorul pentru\n"
-"informaţiile necesare? Ocazional, interogarea poate bloca calculatorul,\n"
-"dar n-ar trebui să produce nici o deteriorare."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Autoprobează"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Specificaţi opţiunile"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Puteţi furniza acum opţiunile modulului %s.\n"
-"Opţiunile sunt în formatul ``nume=valoare nume2=valoare2 ...''.\n"
-"de exemplu, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opţiuni pentru module:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Încăcarea modulului %s a eşuat.\n"
-"Doriţi săîncercaţi cu alţi parametri ?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(deja adăugat %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Aceasta parolă e prea simplă"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Va rog înscrieţi numele utilizatorului"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Numele utilizatorului trebuie sa conţină numai caractere minuscule, numere, "
-"`-' şi `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Acest nume de utilizator e deja adăugat"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Adăugaţi un utilizator"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Intraţi un utilizator\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Acceptare utilizator"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Nume real"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Numele utilizatorului"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Icoană"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr ""
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Pot să configurez calculatorul sa demareze automat X la demaraj.\n"
-"Doriţi sa demaraţi X cînd redemaraţi ?"
-
-#: ../../any.pm_.c:833
-#, fuzzy
-msgid "Choose the default user:"
-msgstr "Alegeţi noua mărime"
-
-#: ../../any.pm_.c:834
-#, fuzzy
-msgid "Choose the window manager to run:"
-msgstr "Alegeţi unealta pe care doriţi să o folosiţi"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Vă rog, alegeţi o limbă."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Puteţi să alegeţi alte limbi care vor fi disponibile după instalare"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr ""
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Adăugaţi un utilizator"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-#, fuzzy
-msgid "Custom"
-msgstr "Personalizat"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "Estimare"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"Acest pachet trebuie actualizat\n"
-"Sunteţi sigur că doriţi să-l deselectaţi ?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Anulează"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Bun venit Piraţilor"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Slab"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr ""
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Ridicat"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Ridicat"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoiac"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Va trebui să folosiţi acest nivel cu grijă. Aceasta face ca sistemul să fie\n"
-"mai uşor de folosit, dar foarte sensibil: nu trebuie să fie folosit pentru "
-"un\n"
-"calculator conectat cu altele de pe Internet. Nu există nici o parolă de\n"
-"acces."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Parolele sunt acum activate, dar utilizarea lui ca un calculator într-o\n"
-"reţea tot nu recomandată."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Acest a nivelul de securitate standard recomandat pentru un calculator care\n"
-"va fi conectat ca un client la Internet. Nu există verificări de securitate."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"Cu acest nivel de securitate, utilizarea acestui calculator ca server\n"
-"devine posibilă. Securitatea este destul de ridicată pentru a folosi acest\n"
-"sistem ca server care acceptă conexiuni de la mulţi clienţi."
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Avem funcţionalităţile nivelului 4 de securitate dar acum sistemul e\n"
-"complet închis. Securitatea e la maximum."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Alegeţi nivelul de securitate"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Alegerea nivelului de securitate"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Alegeţi opţiunile pentru server"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, fuzzy, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Bun venit la gestionarul de sisteme de operare %s!\n"
-"\n"
-"Pentru a afisa diferitele posibilitati, apasati <TAB>.\n"
-"\n"
-"Pentru a demara unul dintre ele, scrieti-i numele si apasati <ENTER> sau\n"
-"asteptati %d secunde pentru demararea din oficiu.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Bun venit la gestionarul de sisteme de operare GRUB!"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Folositi tastele %c si %c pentru selectarea intrarii puse in evidenta."
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Apasati enter pentru a demara OS-ul selectat, 'e' pentru a edita"
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "comandele inainte de a demara, sau 'c' pentru linia de comanda."
-
-# 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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Intrarea selectata va demara dupa %d secunde"
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "nu e destul spaţiu în /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Desktop"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Meniu de Start"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Unde doriţi să instalaţi Gestionarul de demaraj ?"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr ""
-
-#: ../../bootlook.pm_.c:62
-#, fuzzy
-msgid "Boot Style Configuration"
-msgstr "Configuraţie post-install"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-#, fuzzy
-msgid "/_File"
-msgstr "Fişiere:\n"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr ""
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr ""
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:92
-#, fuzzy
-msgid "NewStyle Monitor"
-msgstr "Monitor"
-
-#: ../../bootlook.pm_.c:93
-#, fuzzy
-msgid "Traditional Monitor"
-msgstr "Alegeţi un alt tip de monitor"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr ""
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Lilo/grub mode"
-msgstr "Nume de domeniu"
-
-#: ../../bootlook.pm_.c:98
-#, fuzzy
-msgid "Yaboot mode"
-msgstr "Periferic de demaraj"
-
-#: ../../bootlook.pm_.c:104
-#, fuzzy, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-#, fuzzy
-msgid "Configure"
-msgstr "Configuraţi X"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr ""
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr ""
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr ""
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr ""
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr ""
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr ""
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr ""
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr ""
-
-#: ../../common.pm_.c:114
-#, fuzzy, c-format
-msgid "%d seconds"
-msgstr "Testul se va termina în %d secunde"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Imposibil de adăugat o alta partiţie"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Puteţi să alegeţi alte limbi care vor fi disponibile după instalare"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "France"
-msgstr "Anulează"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "Belgian"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-#, fuzzy
-msgid "Germany"
-msgstr "German"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Grec"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "Norvegian"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "Afişează"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Italian"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "serie"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Vă rog faceţi mai întîi o copie a datelor dumneavoastră"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Citiţi cu atenţie!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Dacă doriţi să folosiţi aboot, asiguraţi-vă să lăsaţi un spaţiu liber\n"
-"(2048 de sectoare sunt de ajuns) la începutul discului"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Eroare"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Alegeţi acţiunea"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Aveţi o singură partiţie mare FAT\n"
-"(în general folosită de MicroSoft Dos/Windows).\n"
-"Va sugerez să redimensionaţi mai întîi acea partiţie\n"
-"faceţi clic pe ea şi apoi pe \"Redimensionează\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Vă rog faceţi clic pe o partiţie"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detalii"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "montare eşuată"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Gol"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Alt tip"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Tipul de fişiere sistem: "
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Crează"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tip"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Foloseşte ``%s'' în loc"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Şterge"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Foloseşte ``Demontare' mai întîi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"După schimbarea tipului de partiţie %s, toate datele de pe aceasta "
-"partiţievor fi pierdute"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Alegeţi acţiunea"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Creează o nouă partiţie"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Trece în mod expert"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Trece în mod normal"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Anulează"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Continuaţi totuşi?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Ieşire fără a înregistra"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Ieşire din program fără a scrie în tabloul de partiţii ?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Doriţi să testaţi configuraţia ?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Auto aloca"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Şterge tot"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Afişează informaţiile"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Toate partiţiile principale sunt alocate"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Imposibil de adăugat o alta partiţie"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Pentru a avea mai multe partiţii, ştergeţi una pentru a putea crea una de "
-"tip Extended "
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Scrie tabloul de partiţii"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Salvează tabelul de partiţii"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Salvează tabelul de partiţii"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Salvează tabelul de partiţii"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Automontare automată a perifericelor extractibile"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Selecţionează fişierul"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Tabloul de partiţie salvat nu are aceeaşi mărime\n"
-"Să continui totuşi ?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Avertisment"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Introduceţi o dischetă în periferic\n"
-"Toate datele de pe această dischetă vor fi pierdute"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Încercare de salvare a tabloului de partiţii"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "Afişează informaţiile"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Punct de montaj"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-#, fuzzy
-msgid "Options"
-msgstr "Informaţie"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Redimensionează"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Deplasează"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formatează"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Montaj"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Adaugă la RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Adaugă la LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Demontează"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Şterge din RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Şterge din LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Modifică RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Foloseşte pentru loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Creează o nouă partiţie"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Sector de început: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Mărimea în MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Tipul de fişiere: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Punct de montaj: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Preferinţă: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Formatarea fişierului loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Schimbă tipul partiţiei"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-#, fuzzy
-msgid "Which filesystem do you want?"
-msgstr "Ce limbă doriţi ?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Unde doriţi să montaţi fişierul loopback %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Unde doriţi să montaţi perifericul %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Nu pot să desfiinţez acest punct de montaj pentru că partiţia e "
-"folosităpentru loopback.\n"
-"Ştergeţi loopback-ul mai întîi"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Calculează salturile de fişiere FAT"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Redimensionează"
-
-#: ../../diskdrake/interactive.pm_.c:609
-#, fuzzy
-msgid "This partition is not resizeable"
-msgstr "Ce tip de partiţie doriţi?"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Toate datele de pe aceasta partiţie ar trebui salvate mai întîi"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"După redimensionarea partiţiei %s toate datele de pe aceasta partiţie vor fi "
-"pierdute"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Alegeţi noua mărime"
-
-#: ../../diskdrake/interactive.pm_.c:622
-#, fuzzy
-msgid "New size in MB: "
-msgstr "Mărimea în MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Pe ce disc doriţi să schimbaţi ?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sector"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "La ce sector doriţi sa schimbaţi ?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Schimbă"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Schimbă partiţia..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Alegeţi un RAID existent la care să adăugaţi"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "nou"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Alegeţi un LVM existent la care să adăugaţi"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Această partiţie nu poate fi folosită pentru loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Numele fişierului loopback"
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "Nume real"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Fişier deja folosit de un alt loopback, alegeţi un altul"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Fişierul există deja. Să-l folosesc ?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-#, fuzzy
-msgid "Mount options"
-msgstr "Opţiuni pentru module:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "periferic: "
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "nivel"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "mărimea porţiunii "
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Atenţie: aceasta operaţie e periculoasă."
-
-#: ../../diskdrake/interactive.pm_.c:906
-#, fuzzy
-msgid "What type of partitioning?"
-msgstr "Ce tip de imprimanta aveţi?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Îmi pare rău dar nu voi accepta să creez /boot atît de departe ę disc (pe un "
-"cilindru > 1024).\n"
-"Sau folosiţi LILO soi nu va funcţiona, sau nu folosiţi LILO şi atunci nu\n"
-"aveţi nevoie de /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Partiţia pe care aţi selecţionat-o pentru adăugare ca root (/) e fizic "
-"localizată dincolo\n"
-"de cilindru 1024 pe discul dur şi nu aveţi nici o partiţie /boot.\n"
-"Dacă planificaţi să folosiţi LILO ca gestionar de demaraj, asiguraţi-vă "
-"căaţi adăugat o partiţie /boot."
-
-#: ../../diskdrake/interactive.pm_.c:934
-#, fuzzy
-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 ""
-"Aţi selectat o partiţie software root en tant que RAID.\n"
-"Nici un gestionar de boot nu e capabil să gereze aceasta fără\n"
-"o partitie /boot. Folosiţi deci o partiţie /boot dacă doriţi să folosiţi\n"
-"lilo sau grub."
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Tabloul de partiţii al perifericului %s va fi scris pe disc!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr ""
-"Va trebui să redemaraţi pentru ca schimbările sa fie luate în considerare"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"După formatarea partiţiei %s toate datele de pe aceasta partiţie vor fi "
-"pierdute"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formatare"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formatarea fişierului loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formatarea partiţiei %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid a eşuat"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Creează o nouă partiţie"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Creează o nouă partiţie"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Rezoluţii"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Periferic: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Litera perifericului DOS: %s (doar o presupunere)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Tip: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Nume: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Start: sector %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Mărimea: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sectori"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "De la cilindrul %d la cilindrul %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Formatat\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Neformatat\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Montat\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Fişier(e) loopback: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partiţia demarată din oficiu\n"
-" (pentru demaraj MS-DOS, nu pentru lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Nivel %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Mărimea porţiunii %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Discuri-RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Numele fişierului loopback: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Mărime: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometrie: %s cylinders, %s heads, %s sectors\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Discuri-LVM %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Tipul tabloul de partiţii : %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "pe bus-ul %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, fuzzy, c-format
-msgid "Options: %s"
-msgstr "Partiţie"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Tipul de fişiere: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Această parole e prea simplă (ar trebui să fie de cel puţin %d caractere)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Parolele nu corespund"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "Schimbă tipul partiţiei"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "Vă rog faceţi clic pe o partiţie"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "Server DNS"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s Formatarea %s eşuată"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Nu ştiu cum să formatez %s în tipul %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "eroare la demontarea %s: %s"
-
-#: ../../fsedit.pm_.c:21
-#, fuzzy
-msgid "simple"
-msgstr "Fişier"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "server"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr ""
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Punctele de montaje trebuie sa înceapă cu un /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "O partiţie cu punctul de montaj %s există deja\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr ""
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr ""
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Aveţi nevoie de un sistem de fişiere serios (ext2, reiserfs) pentru\n"
-"acest punct de montaj.\n"
-
-#: ../../fsedit.pm_.c:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-"Aveţi nevoie de un sistem de fişiere serios (ext2, reiserfs) pentru\n"
-"acest punct de montaj.\n"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr ""
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Eroare la citirea %s pentru a scrie: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"O eroare a apărut - nu am găsit nici un periferic pentru a instala noi "
-"fişiere\n"
-"sistem. Verificaţi harware-ul pentru a detecta cauza acestei probleme."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Nu aveţi nici o partiţie!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-#, fuzzy
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Puteţi alege acum serviciile ce doriţi să iniţializaţi la demararea\n"
-"calculatorului. Dacă plasaţi mouse-ul deasupra rubricii, un mic balon de\n"
-"ajutor va apare pentru a descrie rolul serviciului respectiv."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr ""
-
-#: ../../help.pm_.c:547
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-#, fuzzy
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Vă rog selectaţi portul corect. De exemplu, portul COM1 din Windows e\n"
-"numit ttyS0 în Linux."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (de la LInux LOader) şi Grub sunt gestionare de demaraj. Amîndoi sunt\n"
-"capabili să demareze Linux sau un alt sistem prezent în calculator.\n"
-"În mod normal, aceste alte sisteme de operare sunt detectate şi instalate\n"
-"corect. Dacă cumva nu e cazul, puteţi adăuga o intrare manual în acest\n"
-"ecran. Aveţi grijă să alegeţi parametrii cei buni.\n"
-"\n"
-"\n"
-"Puteţi de asemenea să interziceţi accesul acestor alte sisteme a altor \n"
-"utilizatori, caz în care ar trebui să ştergeţi intrările acestor sisteme.\n"
-"În acest ultim caz însă, veţi avea nevoie de un floppy de demaraj pentru\n"
-"a putea le demara!"
-
-#: ../../help.pm_.c:722
-#, fuzzy
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Va trebui să indicaţi unde să puneţi informaţia necesară pentru a porni "
-"Linux.\n"
-"\n"
-"\n"
-"În general alegeţi \"Primul sector al discului\". Alegeţi altceva doar dacă "
-"ştiţi ce faceţi."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Nu pot să folosesc difuzia fără nici un domeniu NIS"
-
-#: ../../install_any.pm_.c:793
-#, fuzzy, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Introduceţi o dischetă în perifericul %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr ""
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "Eroare la citirea fişierului %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Trebuie să aveţi o partiţie root.\n"
-"Pentru aceasta, creaţi o partiţie (sau faceţi clic pe un existentă).\n"
-"Alegeţi apoi acţiunea ``Punct de montaj'' şi fixaţi-o la '/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Trebuie să aveţi o partiţie swap"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"N'aveţi nici o partiţie swap\n"
-"\n"
-"Să continui totuşi?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Trebuie să aveţi o partiţie swap"
-
-#: ../../install_interactive.pm_.c:90
-#, fuzzy
-msgid "Use free space"
-msgstr "Foloseşte pentru loopback"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:100
-#, fuzzy
-msgid "Use existing partition"
-msgstr "Formatarea partiţiilor"
-
-#: ../../install_interactive.pm_.c:102
-#, fuzzy
-msgid "There is no existing partition to use"
-msgstr "Încercare de salvare a tabloului de partiţii"
-
-#: ../../install_interactive.pm_.c:109
-#, fuzzy
-msgid "Use the Windows partition for loopback"
-msgstr "Foloseşte pentru loopback"
-
-#: ../../install_interactive.pm_.c:112
-#, fuzzy
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Ce partiţe doriţi să folosiiţ pentru a instala Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Alegeţi mărimile"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Mărimea partiţiei root în MB:"
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Mărimea partiţiei swap în MB:: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:128
-#, fuzzy
-msgid "Which partition do you want to resize?"
-msgstr "Ce tip de partiţie doriţi?"
-
-#: ../../install_interactive.pm_.c:130
-#, fuzzy
-msgid "Computing Windows filesystem bounds"
-msgstr "Calculează salturile de fişiere FAT"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"AVERTISMENT!\n"
-"\n"
-"DrakX va redimensiona acum partiţiile Windows. Aveţi grijă: această "
-"operaţie\n"
-"est periculoasă. Dacă nu aţi făcut-o deja, ar trebui mai întîi să părăsiţi\n"
-"instalarea şi şa executaţi scandisk în Windows (şi defrag opţional), apio\n"
-"reîncepeţi instalarea. Ar trebui de asemenea să faceţi o copie a datelor\n"
-"dumneavoastră. Dacă sunteţi sigur, apăsaţi Ok."
-
-#: ../../install_interactive.pm_.c:147
-#, fuzzy
-msgid "Which size do you want to keep for windows on"
-msgstr "La ce sector doriţi sa schimbaţi ?"
-
-#: ../../install_interactive.pm_.c:148
-#, fuzzy, c-format
-msgid "partition %s"
-msgstr "Partiţie"
-
-#: ../../install_interactive.pm_.c:155
-#, fuzzy, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Redimensionarea automată a eşuat"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:182
-#, fuzzy, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"După redimensionarea partiţiei %s toate datele de pe aceasta partiţie vor fi "
-"pierdute"
-
-#: ../../install_interactive.pm_.c:190
-#, fuzzy
-msgid "Custom disk partitioning"
-msgstr "Formatarea partiţiilor"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:197
-#, fuzzy, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Puteţi partiţiona acum discul %s dumneavoastră dur\n"
-"Cînd aţi terminat, nu uitaţi să înregistraţi folosind `w'"
-
-#: ../../install_interactive.pm_.c:226
-#, fuzzy
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Nu aveţi nici o partiţie Windows"
-
-#: ../../install_interactive.pm_.c:242
-#, fuzzy
-msgid "I can't find any room for installing"
-msgstr "Imposibil de adăugat o alta partiţie"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:251
-#, fuzzy, c-format
-msgid "Partitioning failed: %s"
-msgstr "Tipul tabloul de partiţii : %s\n"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Configuraţie reţea"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Oprire reţea"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"A apărut o eroare pe care nu ştiu să o interpretez în mod corect.\n"
-"Continuaţi pe riscul dumneavoastră."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duplicaţi pounctul de montaj %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Cîteva pachete importante nu s-au instalat corect.\n"
-"Sau aveţi o problemă cu perifericul de cdrom sau cu \n"
-"cdrom-ul propriu-zis. Folosiţi comanda \"rpm -qpl \n"
-"Mandrake/RPMS/*.rpm\" pentru a verifica cdrom-ul pe un\n"
-"sistem instalat.\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Bine aţi venit la %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Nici dischetă disponibilă"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Începe etapa `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Tip de instalare"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Vă rog alegeţi unul din următoarele tipuri de instalare"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Mărimea totală a grupurilor selectate e în jur de %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Dacă doriţi să instalaţi mai puţin decît această mărime,\n"
-"selectaţi procentul pachetelor pe care doriţi să le instalaţi.\n"
-"\n"
-"Un procent slab va instala numai pachetele cele mai inmportante;\n"
-"un procent de 100% va instala toate pachetele selectate."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Nu aveţi spaţiu pe discul dunmeavoastră decît pentru %d%% al acestor\n"
-"pachete.\n"
-"\n"
-"Dacă doriţi să instalaţi mai puţin decît atît,\n"
-"selectaţi procentul pachetelor pe care doriţi săle instalaţi.\n"
-"Un procent slab nu va installa decît pachetele cele mai importante;\n"
-"un procent de %d%% va instala cît de multe pachete va fi posibil."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Veţi putea să le alegeţi mai în detaliu la etapa următoare."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procentul pachetelor de instalat"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Selectarea grupurilor de pachete"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Selectare individuală a pachetelor"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Mărime totală: %d / %d MB "
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Pachet defectuos"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Nume: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versiune: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Mărime: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Importanţă: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Nu aveţi destul spaţiu pentru a instala acest pachet"
-
-#: ../../install_steps_gtk.pm_.c:422
-#, fuzzy
-msgid "The following packages are going to be installed"
-msgstr "Pachetele următoare urmează să fie dezinstalate"
-
-#: ../../install_steps_gtk.pm_.c:423
-#, fuzzy
-msgid "The following packages are going to be removed"
-msgstr "Următoare pachete vor fi instalate/şterse"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Nu puteţi selecta/deselecta acest pachet"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Acesta este un pachet indispensabil şi nu poate fi deselectat"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Nu puteţi deselecta aces pachet. E deja instalat"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Acest pachet trebuie actualizat\n"
-"Sunteţi sigur că doriţi să-l deselectaţi ?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Nu puteţi deselecta acest pachet. Trebuie acualizat."
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Instalare"
-
-#: ../../install_steps_gtk.pm_.c:466
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "Înregistreaza pe dischetă"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Selectare individuală a pachetelor"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "Dezinstalare"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Alegeţi pachetele pe care doriţi să le instalaţi"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "În curs de instalare"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Estimare"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Timp rămas "
-
-#: ../../install_steps_gtk.pm_.c:528
-#, fuzzy
-msgid "Please wait, preparing installation"
-msgstr "Pregătesc instalarea"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d pachete"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Instalarea pachetului %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-#, fuzzy
-msgid "Accept"
-msgstr "Acceptare utilizator"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#, fuzzy
-msgid "Refuse"
-msgstr "Redimensionează"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Schimbaţi Cd-Rom-ul!\n"
-"\n"
-"Vă rog introduceţi Cd-Rom etichetat \"%s\" şi apoi apăsaţi Ok.\n"
-"Dacă nu-l aveţi, apăsaţi Anulează pentru a evita instalarea de pe acest Cd-"
-"Rom."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Să continui totuşi?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "O eroare a apărut la ordonarea pachetelor:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "A fost o eroare la instalarea pachetelor:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "A apărut o eroare"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Doriţi să testaţi configuraţia ?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Tastatură"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Alegeţi tastatura."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Ce tip de instalare doriţi?"
-
-#: ../../install_steps_interactive.pm_.c:226
-#, fuzzy
-msgid "Install/Update"
-msgstr "Instalare/Actualizare"
-
-#: ../../install_steps_interactive.pm_.c:226
-#, fuzzy
-msgid "Is this an install or an update?"
-msgstr "Este vorba de o instalare sau de o actualizare ?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Recomandat"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Expert"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "Actualizare"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Selectare individuală a pachetelor"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Vă rog, alegeţi tipul de mouse?"
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Port Mouse"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Pe ce port serie este conectat mouse-ul?"
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Configuraţie cartele PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Configuraţia IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "nici o partiţie disponibilă"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Alegeţi punctele de montaj"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, fuzzy, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Nu pot citi tabloul de partiţii, e prea deteriorat după mine :(\n"
-"Voi încerca să continui ştergînd partiţiile greşite"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake a eşuat la citirea corectă a tabloului de partiţii.\n"
-"Continuaţi pe riscul dumneavoastră!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "N'am găsit nici o partiţie root"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Partiţia Root"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Care e partiţia root (/) a sistemului dumneavoastră?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Trebuie să redemaraţi pentru a înregistra modificările tabloului de partiţii"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Alegeţi partiţiile pe care doriţi sa le formataăi"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Să verific blocurile defectuoase?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formatarea partiţiilor"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Crearea şi formatarea fişierului %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Swap insuficient pentru a termina instalarea, mai adăugaţi ceva"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Căutarea pachetelor disponibile"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Cautarea pachetelor de actualizat"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, fuzzy, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"Sistemul dumneavoastră nu ar destul spaţiu disponibil pentru instalare\n"
-"sau actualizare"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, fuzzy, c-format
-msgid "Complete (%dMB)"
-msgstr "Normal"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, fuzzy, c-format
-msgid "Minimum (%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, fuzzy, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomandat"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-#, fuzzy
-msgid "Load from floppy"
-msgstr "Restaurează din dischetă"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Loading from floppy"
-msgstr "Restaurează din dischetă"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Package selection"
-msgstr "Selectarea grupurilor de pachete"
-
-#: ../../install_steps_interactive.pm_.c:578
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "Introduceţi o dischetă în perifericul %s"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Înregistreaza pe dischetă"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:671
-#, fuzzy
-msgid "Type of install"
-msgstr "Alegeţi pachetul de instalat"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-#, fuzzy
-msgid "With X"
-msgstr "Aşteptare"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Dacă aveţi toate CD-urile din lista de mai jos, apăsaţi Ok.\n"
-"Dacă nu aveţi nici unul din aceste CD-uri, apăsaţi Anulează.\n"
-"Dacă nu vă lispsesc decît cîteva CD-uri, deselectaţi-le şi faceţi click pe "
-"Ok."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom etichetat \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Pregătesc instalarea"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"instalarea pachetului %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Configuraţie post-install"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Introduceţi o dischetă în perifericul %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Introduceţi uo dischetă goală în perifericul %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Aveţi acum posibilitatea de a recupera de pe Internet programele destinate\n"
-"criptajului.\n"
-"\n"
-"AVERTISMENT:\n"
-"\n"
-"Din cauza diferitelor cerinţe generale aplicabile la aceste programe în\n"
-"funcţie de diferite jurisdicţii, clientul şi/sau utilizatorul final al\n"
-"acestor programe ar trebui să se asigure că jurisdicţia îi permite să\n"
-"folosească sau să stocheze aceste programe.\n"
-"\n"
-"Încălcarea eventuală a unei interziceri în acest domeniu ar putea să fie\n"
-"sacţionată sever de jurisdicţia dumneavoastră.\n"
-"\n"
-"În nici un caz MandrakeSoft sau unul dintre fabricanţii săi şi/sau\n"
-"furnizorii săi n'ar putea să poarte responsabilitatea unor deteriorări\n"
-"indirecte sau accidentale (incluzînd, dar fără as e limita la pierderi\n"
-"sau profituri, întreruperi de afaceri, pierdere a datelor comerciale şi\n"
-"alte pierderi şi unele indemnizări eventuale din cauza unor decizii)\n"
-"suscitate în urma folosirii, posesiei, sau a simplei recuperări a acestor\n"
-"programe, la care clientul sau/şi utilizatorul final ar avea acces după\n"
-"acceptarea prezentului acord.\n"
-"\n"
-"\n"
-"Pentru orice întrebări cu privire a acestui acord, vă rog contactaţi\n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "Contactarea oglinzii pentru recuperarea pachetelor disponibile"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Alegeţi o oglindă de la care să recuperaţi pachetele"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Contactarea oglinzii pentru recuperarea pachetelor disponibile"
-
-#: ../../install_steps_interactive.pm_.c:967
-#, fuzzy
-msgid "Which is your timezone?"
-msgstr "Care e folosinţa sistemului dumneavoastră?"
-
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "Ceasul dumneavoastră hardware e fixat la GMT?"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-#, fuzzy
-msgid "NTP Server"
-msgstr "Server NIS"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-#, fuzzy
-msgid "Remote CUPS server"
-msgstr "Coadă distantă:"
-
-#: ../../install_steps_interactive.pm_.c:1015
-#, fuzzy
-msgid "No printer"
-msgstr "Imprimantă locală"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Aveţi o altă interfaţa?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1044
-#, fuzzy
-msgid "Mouse"
-msgstr "Mouse USB"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Imprimantă"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-#, fuzzy
-msgid "NIS"
-msgstr "Foloseşte NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-#, fuzzy
-msgid "Local files"
-msgstr "Imprimantă locală"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Alegeţi parola pentru root"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Nici o parolă"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr ""
-"Această parole e prea simplă (ar trebui să fie de cel puţin %d caractere)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autentificare"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "Autentificare"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-#, fuzzy
-msgid "LDAP Server"
-msgstr "Server NIS"
-
-#: ../../install_steps_interactive.pm_.c:1134
-#, fuzzy
-msgid "Authentication NIS"
-msgstr "Autentificare NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "Domeniu NIS"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "Server NIS"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, fuzzy
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"O dischetă personalizată de demaraj permite un mod de a accede la sistemul\n"
-"vostru Linux fără a depinde de gestionarul de demaraj normal. Acesta este \n"
-"util dacă nu doriţi să instalaţi LILO (sau grub) în sistem sau dacâ alte \n"
-"sisteme şterg LILO sau dacă LILO nu funcţionează în sistemul dumneavoastră.\n"
-"O dischetă personalizată poate fi de asemena folosită ca o imagine de\n"
-"depanaj, ceea ce permite recuperări mult mai uşoare în urmă unor pane "
-"severe.\n"
-"Doriţi să creaţi o dischetă de demaraj pentru sistemul dumneavoastră ?"
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Primul periferic de dichetă"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Al doilea periferic de dischetă"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Sari peste"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"O dischetă personalizată de demaraj permite un mod de a accede la sistemul\n"
-"vostru Linux fără a depinde de gestionarul de demaraj normal. Acesta este \n"
-"util dacă nu doriţi să instalaţi LILO (sau grub) în sistem sau dacâ alte \n"
-"sisteme şterg LILO sau dacă LILO nu funcţionează în sistemul dumneavoastră.\n"
-"O dischetă personalizată poate fi de asemena folosită ca o imagine de\n"
-"depanaj, ceea ce permite recuperări mult mai uşoare în urmă unor pane "
-"severe.\n"
-"Doriţi să creaţi o dischetă de demaraj pentru sistemul dumneavoastră ?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Îmi pare rău dar nu găsesc nici un periferic de dischetă disponibil."
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
-"Alegeţi perifericul pe care-l doriţi pentru a realiza un disc de demaraj."
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Introduceţi o dischetă în perifericul %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Crearea dischetei de demaraj"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Pegătirea gestionalului de demaraj"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-#, fuzzy
-msgid "Do you want to use aboot?"
-msgstr "Vreţi să folosiţi SILO?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Eroare la instalrea lui aboot,\n"
-"să încerc să forţaţi instalarea chiar dacă aceasta distruge prima partiţie ?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Instalaţi un gestionar de demaraj"
-
-#: ../../install_steps_interactive.pm_.c:1259
-#, fuzzy
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Instalarea lui LILO a eşuat. Următoarea eroare a apărut:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Introduceţi uo dischetă goală în perifericul %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Creati discheta de autoinstalare"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Cîteva etape nu au fost completate.\n"
-"\n"
-"Chiar vreţi să terminaţi acum?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Felicitări, instalarea e completă.\n"
-"Scoateţi media de demaraj şi apăsaţi Enter pentru redemaraj.\n"
-"\n"
-"\n"
-"Pentru informaţii asupra corecţii disponibile pentru aceasta versiune\n"
-"Mandrake Linux, consultaţi Erata disponibilă la \n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Informaţiile asupra configurării sistemului sunt disponibile în \n"
-"capitolul referitor la post instalare din \n"
-"Oficial Mandrake Linux User's Guide."
-
-#: ../../install_steps_interactive.pm_.c:1354
-#, fuzzy
-msgid "Generate auto install floppy"
-msgstr "Creati discheta de autoinstalare"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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:1361
-msgid "Automated"
-msgstr "Automatizat"
-
-#: ../../install_steps_interactive.pm_.c:1361
-#, fuzzy
-msgid "Replay"
-msgstr "Reîncarcă"
-
-#: ../../install_steps_interactive.pm_.c:1364
-#, fuzzy
-msgid "Save packages selection"
-msgstr "Selectare individuală a pachetelor"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Instalare Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> între elemente | <Space> selectează | <F12> următorul ecran"
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Alegeţi acţiunea"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr ""
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Puţintică răbdare"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandaţi Arborele"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Închideţi Arborele"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Basculaţi între plat şi triere în funcţie de grup"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Alegere greşită, încercaţi din nou\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Ce alegeţi? (din oficiu %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Ce alegeţi? (din oficiu %s) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Partiţie"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "Vreţi să folosiţi SILO?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Ce alegeţi? (din oficiu %s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Ceh (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "German"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Spaniol"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Finlandez"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Francez"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Norvegian"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polonez"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Rus"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Suedez"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "Tastatura UK"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "Tastatura US"
-
-#: ../../keyboard.pm_.c:188
-#, fuzzy
-msgid "Albanian"
-msgstr "Ukrainian"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Armenian (vechi)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Armenian (maşină de scris)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Armenian (fonetic)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr ""
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgian"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Armenian (fonetic)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Bulgar"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazilian (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Bielorus"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Elveţian (dispoziţie germanâ)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Elveţian (dispoziţie francezâ)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Ceh (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "German (făra taste moarte)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Danez"
-
-#: ../../keyboard.pm_.c:210
-#, fuzzy
-msgid "Dvorak (US)"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:211
-#, fuzzy
-msgid "Dvorak (Norwegian)"
-msgstr "Norvegian"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estonian"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgian (dispoziţie \"Rusă\")"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgian (dispoziţie \"Latină\")"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Grec"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Ungar"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Croat"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Izraelian"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Izraelian (fonetic)"
-
-#: ../../keyboard.pm_.c:224
-#, fuzzy
-msgid "Iranian"
-msgstr "Ukrainian"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandez"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Italian"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr ""
-
-#: ../../keyboard.pm_.c:231
-#, fuzzy
-msgid "Korean keyboard"
-msgstr "Tastatura UK"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latin American"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituanian AZERTY (vechi)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituanian AZERTY (nou)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituanian QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lithuanian \"fonetic\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "Informaţie"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Olandez"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Polonez (dispoziţie qwerty)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Polonez (dispoziţie qwertz)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portughez"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Canadian (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "us (Yawerty)"
-
-#: ../../keyboard.pm_.c:248
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "us (Yawerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "us (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Sloven"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovac (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovac (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "Iugoslav (dispoziţie latinâ)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "Tabel"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Tastatură Thai"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Tastatură Thai"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turc (tradiţional model \"F\")"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turc (model \"Q\" modern)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukrainian"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "Tastatură US (internaţional)"
-
-#: ../../keyboard.pm_.c:269
-#, fuzzy
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Lituanian QWERTY"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Iugoslav (dispoziţie latinâ)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Montaje circulare %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr ""
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Mouse - Sun"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-#, fuzzy
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Mouse PS/2 generic"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr ""
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "Mouse generic cu 2 butoane"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generic"
-
-#: ../../mouse.pm_.c:46
-#, fuzzy
-msgid "Wheel"
-msgstr "nivel"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "serie"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Mouse generic cu 3 butoane"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (serie, tip vechi C7)"
-
-#: ../../mouse.pm_.c:66
-#, fuzzy
-msgid "busmouse"
-msgstr "Fără mouse"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr ""
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr ""
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "nici unul"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Fără mouse"
-
-#: ../../mouse.pm_.c:499
-#, fuzzy
-msgid "Please test the mouse"
-msgstr "Vă rog, alegeţi tipul de mouse?"
-
-#: ../../mouse.pm_.c:500
-#, fuzzy
-msgid "To activate the mouse,"
-msgstr "Vă rog, alegeţi tipul de mouse?"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-#, fuzzy
-msgid "Finish"
-msgstr "Finlandez"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "E corect ?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-#, fuzzy
-msgid "Connect to the Internet"
-msgstr "Nume de conexiune"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:37
-#, fuzzy
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr "Ce tip de partiţie doriţi?"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-#, fuzzy
-msgid "Choose the network interface"
-msgstr "Alegeţi noua mărime"
-
-#: ../../network/ethernet.pm_.c:93
-#, fuzzy
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Pe ce port serie este conectat mouse-ul?"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "n'am găsit nici o carte de reţea"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Configuraţie reţea"
-
-#: ../../network/ethernet.pm_.c:203
-#, fuzzy
-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 ""
-"Vă rog intraţi numele calculatorului.\n"
-"Numele calculatorului ar trebui să fie un nume întreg-calificat,\n"
-"ca de exemplu ``calculatorulmeu.laboratorulmeu.întreprindereamea.com''.\n"
-"Puteţi de asemenea intra adresa IP a pasarelei dacă aveţi una"
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-#, fuzzy
-msgid "Host name"
-msgstr "Numele calculatorului:"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-#, fuzzy
-msgid "Network Configuration Wizard"
-msgstr "Configuraţia reţelei"
-
-#: ../../network/isdn.pm_.c:22
-#, fuzzy
-msgid "External ISDN modem"
-msgstr "Expert"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:22
-#, fuzzy
-msgid "What kind is your ISDN connection?"
-msgstr "La ce port serial este conectat mouse-ul?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "Citirea configuraţiei"
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "Citirea configuraţiei"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-#, fuzzy
-msgid "ISDN Configuration"
-msgstr "Configuraţie"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "Test de configuraţie"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:189
-#, fuzzy
-msgid "Which protocol do you want to use ?"
-msgstr "Ce tip de partiţie doriţi?"
-
-#: ../../network/isdn.pm_.c:199
-#, fuzzy
-msgid "What kind of card do you have?"
-msgstr "Ce tip de imprimanta aveţi?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:200
-#, fuzzy
-msgid "ISA / PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-#, fuzzy
-msgid "PCI"
-msgstr "PCMCIA"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:210
-#, fuzzy
-msgid "Continue"
-msgstr "Continuaţi totuşi?"
-
-#: ../../network/isdn.pm_.c:216
-#, fuzzy
-msgid "Which is your ISDN card ?"
-msgstr "Care e zona dumneavoastră orară?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Pe ce port serial este conectat modemul dumneavoastră?"
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Opţuni de telefonie"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Nume de conexiune"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-#, fuzzy
-msgid "Phone number"
-msgstr "Număr de telefon"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "ID de login"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Bazat-pe-un-script"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Bazat-pe-un-terminal"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-#, fuzzy
-msgid "Domain name"
-msgstr "Nume de conexiune"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-#, fuzzy
-msgid "First DNS Server (optional)"
-msgstr "Primul server DNS"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-#, fuzzy
-msgid "Second DNS Server (optional)"
-msgstr "Al doilea server DNS"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr "Configuraţie reţea"
-
-#: ../../network/netconnect.pm_.c:34
-#, fuzzy
-msgid "You are currently connected to internet."
-msgstr "Pe ce disc doriţi să schimbaţi ?"
-
-#: ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr "Nume de conexiune"
-
-#: ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid "You are not currently connected to Internet."
-msgstr "Pe ce disc doriţi să schimbaţi ?"
-
-#: ../../network/netconnect.pm_.c:41
-#, fuzzy
-msgid "Connect"
-msgstr "Nume de conexiune"
-
-#: ../../network/netconnect.pm_.c:43
-#, fuzzy
-msgid "Disconnect"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Configuraţie reţea"
-
-#: ../../network/netconnect.pm_.c:50
-#, fuzzy
-msgid "Internet connection & configuration"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Configuraţie reţea"
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr "Configuraţie reţea"
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Configuraţia reţelei"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-
-#: ../../network/netconnect.pm_.c:167
-#, fuzzy
-msgid "Choose the profile to configure"
-msgstr "Alegeţi noua mărime"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Detecţia perifericelor..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, fuzzy
-msgid "Normal modem connection"
-msgstr "Configuraţie reţea"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, fuzzy, c-format
-msgid "detected on port %s"
-msgstr "Duplicaţi pounctul de montaj %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, fuzzy
-msgid "ISDN connection"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy
-msgid "ADSL connection"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "Cable connection"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-#, fuzzy
-msgid "LAN connection"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "Alegeţi unealta pe care doriţi să o folosiţi"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-#, fuzzy
-msgid "Internet connection"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../network/netconnect.pm_.c:233
-#, fuzzy
-msgid "Do you want to start the connection at boot?"
-msgstr "Doriti să folosiţi aboot?"
-
-#: ../../network/netconnect.pm_.c:247
-#, fuzzy
-msgid "Network configuration"
-msgstr "Configuraţia reţelei"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, fuzzy, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr "Doriţi să testaţi configuraţia ?"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Vă rog intraţi configuraţia IP pentru acest calculator.\n"
-"Fiecare rubrica va trebui sa fie completată ca o adresă IP în format\n"
-"zecimal-punctat (de exemplu 192.168.1.55)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Configuraţia cărţii de reţea %s"
-
-#: ../../network/network.pm_.c:307
-#, fuzzy, c-format
-msgid " (driver %s)"
-msgstr "Server XFree86 : %s\n"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-#, fuzzy
-msgid "IP address"
-msgstr "Adresă IP"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-#, fuzzy
-msgid "Netmask"
-msgstr "Mască de reţea:"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "IP automat"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Adresa IP ar trebui să fie în formatul 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"Vă rog intraţi numele calculatorului.\n"
-"Numele calculatorului ar trebui să fie un nume întreg-calificat,\n"
-"ca de exemplu ``calculatorulmeu.laboratorulmeu.întreprindereamea.com''.\n"
-"Puteţi de asemenea intra adresa IP a pasarelei dacă aveţi una"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "Server DNS"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Periferic pasarelă"
-
-#: ../../network/network.pm_.c:381
-#, fuzzy
-msgid "Proxies configuration"
-msgstr "Configuraţie post-install"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy-ul ar trebui să fie http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy-ul ar trebui să fie ftp://..."
-
-#: ../../network/tools.pm_.c:39
-#, fuzzy
-msgid "Internet configuration"
-msgstr "Configuraţie proxy"
-
-#: ../../network/tools.pm_.c:40
-#, fuzzy
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Doriţi să testaţi configuraţia ?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-#, fuzzy
-msgid "Testing your connection..."
-msgstr "Configuraţie reţea"
-
-#: ../../network/tools.pm_.c:50
-#, fuzzy
-msgid "The system is now connected to Internet."
-msgstr "Pe ce disc doriţi să schimbaţi ?"
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr ""
-
-#: ../../network/tools.pm_.c:52
-#, fuzzy
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr "Nume de conexiune"
-
-#: ../../network/tools.pm_.c:76
-#, fuzzy
-msgid "Connection Configuration"
-msgstr "Configuraţie proxy"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr ""
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr ""
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr ""
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr ""
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr ""
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr ""
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr ""
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-#, fuzzy
-msgid "Provider phone number"
-msgstr "Număr de telefon"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-#, fuzzy
-msgid "Provider dns 1 (optional)"
-msgstr "Opţiuni imprimantă"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-#, fuzzy
-msgid "Provider dns 2 (optional)"
-msgstr "Opţiuni imprimantă"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "Alegeţi tastatura"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-#, fuzzy
-msgid "Dialing mode"
-msgstr "Nume de domeniu"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "Nume de conexiune"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Nume de conexiune"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-#, fuzzy
-msgid "Account Login (user name)"
-msgstr "Punct de montaj"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-#, fuzzy
-msgid "Account Password"
-msgstr "Parola"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "montare eşuată: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Partiţiile extended nu sunt suportatet pe această platformă "
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"Aveţi o gaură în tabloul de partiţii dar nu pot să o folosesc.\n"
-"Singura soluţie e să deplasaţi partiţia principală pentru a avea gaura "
-"lîngăpartiţia extinsă"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Restaurarea din fişierul %s a eşuat: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Backup defectuos"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Eroare la scrierea în fişierul %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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:24
-msgid "must have"
-msgstr "trebuie avut"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "important"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "foarte simpatic"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "simpatic: "
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "poate"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Imprimantă locală"
-
-#: ../../printer.pm_.c:48
-#, fuzzy
-msgid "Remote printer"
-msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Coadă distantă:"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "lpd distant:"
-
-#: ../../printer.pm_.c:51
-#, fuzzy
-msgid "Network printer (TCP/Socket)"
-msgstr "Opţiunea imprimantei NetWare"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Server de imprimantă"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "Periferic imprimantă:"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "Imprimantă locală"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Eroare la scrierea în fişierul %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(modul %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Adresa IP a serverului SMB"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Standard)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Cum e conectată imprimanta ?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Configuraţie"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Coadă distantă:"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "Adresa IP ar trebui să fie în formatul 1.2.3.4"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:87
-#, fuzzy
-msgid "CUPS server IP"
-msgstr "Adresa IP a serverului SMB"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-#, fuzzy
-msgid "Port"
-msgstr "Slab"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Configuraţie post-install"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Detecţia perifericelor..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test porturi"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Imprimantă locală"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "Imprimantă locală"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "Duplicaţi pounctul de montaj %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Periferic imprimantă:"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Imprimantă locală"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Pe ce port serial este conectat modemul dumneavoastră?"
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Periferic imprimantă:"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Configuraţie proxy"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Instalarea pachetului %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "Instalarea pachetului %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"pentru a folosi a coadă de impresie lpd distantă, aveţi nevoie să furnizaţi\n"
-"numele calculatorului serverului de imprimantă ăi lista de aşteptare"
-
-#: ../../printerdrake.pm_.c:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "Numele calculator distant"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#: ../../printerdrake.pm_.c:630
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "Numele calculator distant"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Numele calculator distant"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opţiuni pentru imprimanta SMB/Windows 95/NT"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Pentru a imprima pe o imprimantă SMB, aveţi nevoie să furnizaţi\n"
-"numele calculatorului SMB (acesta nu este întotdeauna numele maşinii\n"
-"TCP/IP) si probabil adresa IP a serverului de imprimantă, cît şi \n"
-"numele de access şi numele de utilizator, parola şi informaţia grupului de "
-"lucru."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Numele serverului SMB"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "Adresa IP a serverului SMB"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Numele de access"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Numele de grup"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Opţiunea imprimantei NetWare"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Pentru a imprima pe o imprimantă NetWare, trebuie să furnizaţi\n"
-"numele serverului NetWare (nu e întotdeauna acelaşi cu cel TCP/IP)\n"
-"cît şi numele listei de aşteptare şi eventual utilizatorii care vor avea\n"
-"access şi parolele."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Server de imprimantă"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Lista de aşteptare a imprimantei"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Opţiunea imprimantei NetWare"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "Opţiuni imprimantă"
-
-#: ../../printerdrake.pm_.c:858
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "Opţiuni imprimantă"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-#, fuzzy
-msgid "Printer Device URI"
-msgstr "Periferic imprimantă:"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-#, fuzzy
-msgid "Name of printer"
-msgstr "Imprimantă locală"
-
-#: ../../printerdrake.pm_.c:1006
-#, fuzzy
-msgid "Description"
-msgstr "Specificaţi opţiunile"
-
-#: ../../printerdrake.pm_.c:1007
-#, fuzzy
-msgid "Location"
-msgstr "Informaţie"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "E corect ?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#: ../../printerdrake.pm_.c:1139
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../printerdrake.pm_.c:1140
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "Ce tip de imprimanta aveţi?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Configuraţie modem"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Configuraţie proxy"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Doriţi să testaţi imprimarea ?"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "Test porturi"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-#, fuzzy
-msgid "No test pages"
-msgstr "Da, imprimă amîndouă paginile de test"
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "Imprimantă"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "Programator"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "Imprimarea pagin(ei/lor) de test"
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "Imprimarea pagin(ei/lor) de test"
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Imprimarea pagin(ei/lor) de test"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Imprimarea pagin(ei/lor) de test"
-
-#: ../../printerdrake.pm_.c:1635
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Pagin(a/ile) de test a/au fost trimisă la procesul de impresie.\n"
-"Aceasta va dura puţin timp înaintea pornirii imprimării\n"
-"Starea Imprimării:\n"
-"%s\n"
-"\n"
-"Funcţionează cum trebuie?"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Pagin(a/ile) de test a/au fost trimisă la procesul de impresie.\n"
-"Aceasta va dura puţin timp înaintea pornirii imprimării\n"
-"Funcţionează cum trebuie?"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "Imprimantă locală"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr "Mouse USB"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Oprire reţea"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Oprire reţea"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "Opţiuni imprimantă"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Configuraţie proxy"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "Imprimantă locală"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "Configuraţia imprimantei"
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "Configuraţie reţea"
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Configuraţie reţea"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Monitor nu a fost încă configurat"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Configuraţie reţea"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "Ce tip de partiţie doriţi?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "Ridicat"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "Paranoiac"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Ce tip de partiţie doriţi?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Ce tip de partiţie doriţi?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Configuraţia imprimantei"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Instalarea pachetului %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Opţiuni imprimantă"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Configuraţia imprimantei"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Doriţi să configuraţi o imprimantă?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Imprimantă"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Iată următoarele cozi de imprimare\n"
-"Puteţi să adăugaţi altele sau să modificaţi cele existente."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Iată următoarele cozi de imprimare\n"
-"Puteţi să adăugaţi altele sau să modificaţi cele existente."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Configuraţie reţea"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Normal Mode"
-msgstr "Normal"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Doriţi să testaţi configuraţia ?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Configuraţie modem"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Doriţi să testaţi configuraţia ?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "Imprimarea pagin(ei/lor) de test"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Doriţi să testaţi configuraţia ?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "Imprimantă locală"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Doriţi să testaţi configuraţia ?"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-#, fuzzy
-msgid "Proxy configuration"
-msgstr "Configuraţie post-install"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr ""
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-#, fuzzy
-msgid "port"
-msgstr "Slab"
-
-#: ../../proxy.pm_.c:44
-#, fuzzy
-msgid "Url should begin with 'http:'"
-msgstr "Proxy-ul ar trebui să fie http://..."
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr ""
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Proxy-ul ar trebui să fie ftp://..."
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-#, fuzzy
-msgid "login"
-msgstr "Belgian"
-
-#: ../../proxy.pm_.c:82
-#, fuzzy
-msgid "password"
-msgstr "Parola"
-
-#: ../../proxy.pm_.c:84
-#, fuzzy
-msgid "re-type password"
-msgstr "Nici o parolă"
-
-#: ../../proxy.pm_.c:88
-#, fuzzy
-msgid "The passwords don't match. Try again!"
-msgstr "Parolele nu corespund"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Nu pot adăuga partiţia la md%d _formatat_RAID"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Nu pot scrie fişierul %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid a eşuat"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid a eşuat (poate vă lipsesc raidtools?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Nu aveţi destule partiţii pentru nivelul RAID %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron un orar de comandă periodică"
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd e folosit pentru a monitoriza bateria şi login-ul via syslog.\n"
-"Poate de asemenea fi folosit pentru oprirea calculatorului dacă bateria e\n"
-"slabă."
-
-#: ../../services.pm_.c:18
-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 ""
-"Demarează comenzi programate de comanda at la timpul specificat la\n"
-"demararea lui at şi lansează comenzi batch atunci cînd media de încărcare\n"
-"e suficient de scăzută."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron e un program UNIX standard care demarează programe-utilizator\n"
-"specificate la intervale periodice. vixie cron adaugă o serie "
-"defuncţionalităţi la bazicul cron UNIX, printre care o mai bună securitate "
-"şi\n"
-"opţiuni de configuraţie mai avansate."
-
-#: ../../services.pm_.c:23
-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 adaugă suport mouse la aplicaţii text Linux ca Midnight Commander.\n"
-"El permite de asemenea operaţii cu mouse-ul de copiere/lipire şi include\n"
-"suportul meniurilor contextuale în consolă."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache e un server World Wide Web. E folosit pentru a servi fişiere HTML\n"
-"şi CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Super-procesul Internet (numit în mod normal inetd) demarează o sumedenie\n"
-"de servicii, incluzînd telnet, ftp, rsh şi rlogin. Dezactivarea lui telnet\n"
-"dezactivează toate serviciile de care e responsabil."
-
-#: ../../services.pm_.c:33
-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:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Acest pachet încarcă harta de tastatură selectată ca în\n"
-"/etc/sysconfig/keyboard. Aceasta poate fi selectată folosind kbdconfig.\n"
-"Ar trebuie să-l lăsaţi activat pentru majoritatea calculatoarelor."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-
-#: ../../services.pm_.c:43
-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 este procesul de imprimare necesar pentru ca lpr să funcţioneze corect.\n"
-"E un server care arbitrează activitatea imprimantei(lor)."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) e un Server de Nume de Domeniu (DNS) care e folosit la\n"
-"rezolvarea adreselor IP."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Montează şi demontează toate punctele de montaj a Fişierelor sistem de "
-"Reţea\n"
-"(NFS), SMB (LanManager/Windows şi NCP (NetWare)."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Activează/Dezactivează toate interfeţele de reţea configurate pentru fi\n"
-"iniţializate la demaraj."
-
-#: ../../services.pm_.c:52
-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 e un protocol popular pentru a împărţi fişiere de-a lungul reţelelor\n"
-"TCP/IP. Acest serviciu furnizează funcţionalitatea server-ului NFS, care e\n"
-"configurată via fişierului /etc/exports."
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS e un protocol popular pentru a împărţi fişiere de-a lungul reţelelor\n"
-"TCP/IP. Acest serviciu furnizează funcţionalitatea blocării fişierelor NFS."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"Suportul PCMCIA e destinat pentru a suporta cartele ethernet şi modem-uri\n"
-"laptop-uri. Nu va demara decît dacă e configurat deci nu e nici o problemă\n"
-"dacă e instalat pe calculatoare care nu au nevoie de acesta."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Portmapper-ul gestionează conexiunile RPC, care sunt folosite de "
-"protocoluri\n"
-"ca NFS şi NIS. Server-ul portmap trebuie demarat pe calculatoare care \n"
-"funcţionează ca servere pentru protocoluri care folosesc mecanismul RPC."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix est un Agent de Transport de Mail (MTA), care e programul care\n"
-"permite deplasarea mail-ului de la un calculator la altul."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Salvează şi restaurează entropia sistemului pentru o mai mare calitate\n"
-"a generării de numere aleatoare."
-
-#: ../../services.pm_.c:69
-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:71
-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 ""
-"Serviciul de rutaj permite actualizarea automată a tabloului IP de rutaj\n"
-"via\n"
-" protocolului RIP. În timp de RIP este folosit pentru reţele mici,\n"
-"alte protocoluri mai complexe sunt folosite pentru reţele mai complexe."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Protocolul rstat permite utilizatorilor unei reţele să recupereze\n"
-"performanţele metrice de la orice calculator de pe reţea."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"'Protocolul rusers permite utilizatorilor unei reţele să identifice\n"
-"cine e conectat la calculatoarele care au răspuns."
-
-#: ../../services.pm_.c:78
-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 ""
-"Protocolul rwho permite utilizatorului să recupereze lista tuturor\n"
-"utilizatorului conectaţi la un calculator care foloseşte procesul rwho\n"
-"(similar cu finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr ""
-
-#: ../../services.pm_.c:81
-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 e facilitatea pe care multe procese o folosesc pentru a scrie\n"
-"mesaje de log în numeroaselor fişiere de log ale sistemului. E o idee\n"
-"bună să demaraţi întotdeauna syslog."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: ../../services.pm_.c:84
-#, fuzzy
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Demarează şi opreşte Server-ul de caractere X la demararea şi\n"
-"oprirea calculatorului."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Alegeţi ce servici doriţi să fie lansate automat la demaraj"
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "Imprimantă"
-
-#: ../../services.pm_.c:123
-#, fuzzy
-msgid "Internet"
-msgstr "Interesant"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "Mouse Systems"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "Server de imprimantă"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "periferic: "
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "running"
-msgstr "Avertisment"
-
-#: ../../services.pm_.c:198
-#, fuzzy
-msgid "stopped"
-msgstr "Append"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr ""
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-
-#: ../../services.pm_.c:224
-#, fuzzy
-msgid "On boot"
-msgstr "Root"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "Meniu de Start"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "Sector"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Test de configuraţie"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Interesant"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimedia"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-#, fuzzy
-msgid "Development"
-msgstr "Programator"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Nume de conexiune"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Interesant"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "Numele serverului SMB"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-#, fuzzy
-msgid "Games"
-msgstr "Gnome"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "expert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-#, fuzzy
-msgid "MandrakeStore"
-msgstr "indispensabil"
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Instalarea pachetului %s"
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Nu pot citi tabloul de partiţii, e prea deteriorat după mine :(\n"
-"Voi încerca să continui ştergînd partiţiile greşite"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "Eroare"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Configuraţie post-install"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Configuraţie post-install"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Felicitări!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "Instalare"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "Adăugaţi un utilizator"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Formatarea fişierului loopback %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Backup defectuos"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "Backup defectuos"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "Backup defectuos"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "Selectarea grupurilor de pachete"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Şterge coada"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "Numele utilizatorului"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Vă rog, alegeţi tipul de mouse?"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Încercaţi din nou"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Încercaţi din nou"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "Nici o parolă"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Alegeţi tastatura."
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Vă rog faceţi clic pe o partiţie"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Backup defectuos"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Vă rog, alegeţi tipul de mouse?"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "Backup defectuos"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "Configuraţie reţea"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "Numele utilizatorului"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Vă rog, alegeţi o limbă."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Sa folosesc optimizările penrtu disc dur?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Sa folosesc optimizările penrtu disc dur?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-#, fuzzy
-msgid "What"
-msgstr "Aşteptare"
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "nivel"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "nivel"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "Opţiuni pentru module:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Configuraţia reţelei"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "Instalarea fişierelor sistem"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Informaţie"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Pe ce port serial este conectat modemul dumneavoastră?"
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Configuraţia reţelei"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Backup defectuos"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Vă rog, alegeţi tipul de mouse?"
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Backup defectuos"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Restaurează din dischetă"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Vă rog, alegeţi tipul de mouse?"
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "Alt tip"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "Instalarea sistemului"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "Restaurează din fişierul"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "Restaurează din fişierul"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Personalizat"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "Ajutor"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "Meniu de Start"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "Backup defectuos"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "Restaurează din fişierul"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "Text"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "Alege pachetele de instalat"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Vă rog, alegeţi o limbă."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Vă rog, alegeţi o limbă."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Vă rog, alegeţi o limbă."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "Backup defectuos"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "Backup defectuos"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "Backup defectuos"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "Înregistrează în fişierul"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Vă rog, alegeţi tipul de mouse?"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Configuraţia reţelei"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Configuraţia reţelei"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Configuraţie"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Configuraţie"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "Instalarea fişierelor sistem"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Instalarea lui %s a eşuat. Următoarea eroare a apărut:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "n'am găsit %s "
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "Gata"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Formatează dischetă"
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Pregătesc instalarea"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "limitează"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Formatarea partiţiilor"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-#, fuzzy
-msgid "Uninstall Fonts"
-msgstr "Dezinstalarea RPM-urilor"
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuraţie"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "Punct de montaj"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "Alegeţi partiţiile pe care doriţi sa le formataăi"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "Birou"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Imprimantă"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "Instalarea sistemului"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "Selecţionează fişierul"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "Instalare"
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Ieşire din instalare"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-#, fuzzy
-msgid "Internet Connection Sharing"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-
-#: ../../standalone/drakgw_.c:143
-#, fuzzy
-msgid "disable"
-msgstr "Tabel"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-#, fuzzy
-msgid "reconfigure"
-msgstr "Configuraţi X"
-
-#: ../../standalone/drakgw_.c:146
-#, fuzzy
-msgid "Disabling servers..."
-msgstr "Detecţia perifericelor..."
-
-#: ../../standalone/drakgw_.c:154
-#, fuzzy
-msgid "Internet connection sharing is now disabled."
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-
-#: ../../standalone/drakgw_.c:168
-#, fuzzy
-msgid "enable"
-msgstr "Tabel"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:180
-#, fuzzy
-msgid "Internet connection sharing is now enabled."
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:228
-#, fuzzy, c-format
-msgid "Interface %s"
-msgstr "Interesant"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Monitor nu a fost încă configurat"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Configuraţie post-install"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Configuraţie modem"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "Adresa IP a serverului SMB"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-#, fuzzy
-msgid "Firewalling configuration detected!"
-msgstr "Citirea configuraţiei"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:340
-#, fuzzy
-msgid "Configuring..."
-msgstr "Configuraţia IDE"
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:378
-#, fuzzy, c-format
-msgid "Problems installing package %s"
-msgstr "Instalarea pachetului %s"
-
-#: ../../standalone/drakgw_.c:672
-msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local "
-"Area Network, using automatic network configuration (DHCP)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:691
-#, fuzzy
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/drakgw_.c:696
-#, fuzzy
-msgid "Internet connection sharing configuration"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/drakgw_.c:703
-#, 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 "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuraţia reţelei"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "montare eşuată: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Numele calculatorului:"
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "Interesant"
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Tip: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Pasarelă:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "Interesant"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Configuraţia serviciilor"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Configuraţie"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Driver"
-msgstr "Server"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "Interesant"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Meniu de Start"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Configuraţie reţea"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Test de configuraţie"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Nume de conexiune"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "Configuraţie"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Activ"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Activ"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Selectaţi Conexiunea de imprimantă"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Nume de conexiune"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Pasarelă"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Alegerea nivelului de securitate"
-
-#: ../../standalone/drakxconf_.c:47
-#, fuzzy
-msgid "Control Center"
-msgstr "Nume de conexiune"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Alegeţi unealta pe care doriţi să o folosiţi"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Canadian (Quebec)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "Islandez"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "serie"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Alegeţi tastatura."
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
-
-#: ../../standalone/livedrake_.c:24
-#, fuzzy
-msgid "Change Cd-Rom"
-msgstr "Alegeţi o altă rezoluţie"
-
-#: ../../standalone/livedrake_.c:25
-#, 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 ""
-"Schimbaţi Cd-Rom-ul!\n"
-"\n"
-"Vă rog introduceţi Cd-Rom etichetat \"%s\" şi apoi apăsaţi Ok.\n"
-"Dacă nu-l aveţi, apăsaţi Anulează pentru a evita instalarea de pe acest Cd-"
-"Rom."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr ""
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:102
-#, fuzzy
-msgid "/File/_New"
-msgstr "Fişiere:\n"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:106
-#, fuzzy
-msgid "/File/-"
-msgstr "Fişiere:\n"
-
-#: ../../standalone/logdrake_.c:108
-#, fuzzy
-msgid "/_Options"
-msgstr "Informaţie"
-
-#: ../../standalone/logdrake_.c:109
-#, fuzzy
-msgid "/Options/Test"
-msgstr "Informaţie"
-
-#: ../../standalone/logdrake_.c:110
-#, fuzzy
-msgid "/_Help"
-msgstr "Ajutor"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr ""
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "Numele utilizatorului"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "Test porturi"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-#, fuzzy
-msgid "search"
-msgstr "Caută"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:191
-#, fuzzy
-msgid "matching"
-msgstr "formatare"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:196
-#, fuzzy
-msgid "Choose file"
-msgstr "Alegeţi acţiunea"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:211
-#, fuzzy
-msgid "Content of the file"
-msgstr "Nume de conexiune"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, fuzzy, c-format
-msgid "please wait, parsing file: %s"
-msgstr "Pregătesc instalarea"
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Configuraţie"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "shadow"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "Interesant"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "Formatare"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "Configuraţie proxy"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-#, fuzzy
-msgid "Save as.."
-msgstr "Meniu de Start"
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Vă rog, alegeţi tipul de mouse?"
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "n'am găsit nici un serie_usb\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Emulare 3 Butoane?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Alegeţi o carte grafică"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Periferic de demaraj"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-#, fuzzy
-msgid "Firewalling Configuration"
-msgstr "Citirea configuraţiei"
-
-#: ../../standalone/tinyfirewall_.c:44
-#, fuzzy
-msgid "Firewalling configuration"
-msgstr "Citirea configuraţiei"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Alegeţi limba"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Alegeţi tipul de instalare"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Detecţia discului dur"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Configuraţie mouse"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Alegeţi tastatura"
-
-#: ../../steps.pm_.c:19
-#, fuzzy
-msgid "Security"
-msgstr "cîrlionţat"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Instalarea fişierelor sistem"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formatarea partiţiilor"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Alege pachetele de instalat"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Instalarea sistemului"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Adăugaţi un utilizator"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Configuraţie reţea"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Configuraţia serviciilor"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Instalaţi un gestionar de demaraj"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Creaţi un floppy de demaraj"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Configuraţi X"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Instalarea sistemului"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Ieşire din instalare"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:84
-#, fuzzy, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Eroare la citirea %s pentru a scrie: %s"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Configuraţia reţelei"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Pregătesc instalarea"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer (client)"
-msgstr "Opţiunea imprimantei NetWare"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Birou"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Gnome Workstation"
-msgstr "Informaţie"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Workstation"
-msgstr "Informaţie"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "KDE Workstation"
-msgstr "Informaţie"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - Video"
-msgstr "Multimedia"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Tools to ease the configuration of your computer"
-msgstr "Doriţi să testaţi configuraţia ?"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - Sound"
-msgstr "Multimedia"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Documentaţie"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet station"
-msgstr "Configuraţie proxy"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia station"
-msgstr "Multimedia"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "Configuraţie"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Office Workstation"
-msgstr "Informaţie"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Server"
-msgstr "server"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer server"
-msgstr "Opţiunea imprimantei NetWare"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Game station"
-msgstr "Documentaţie"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - Graphics"
-msgstr "Multimedia"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-
-#: ../../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:999
-msgid "Archiving, emulators, monitoring"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet gateway"
-msgstr "Interesant"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr ""
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia - CD Burning"
-msgstr "Multimedia"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Scientific Workstation"
-msgstr "Informaţie"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Montaj"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Nici unul"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Alegeţi noua mărime"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Opţiuni pentru imprimanta lpd distantă"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Puteţi furniza acum opţiunile modulului %s."
-
-#~ msgid "mount failed"
-#~ msgstr "montare eşuată"
-
-#~ msgid "Low"
-#~ msgstr "Scăzut"
-
-#~ msgid "Medium"
-#~ msgstr "Mediu"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Cîteva ameliorări pentru acest nivel de securitate, principalul fiind că\n"
-#~ "am introdus mai multe mesaje de avertisment şi verificări."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimedia"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Expert"
-
-#, fuzzy
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Puteţi selecta acum zona orară în funcţie de locul unde trăiţi.\n"
-#~ "\n"
-#~ "\n"
-#~ "Linux tratează ora în format GMT sau \"Greenwich Mean Time\" şi-l "
-#~ "traduce\n"
-#~ "în oră locală în funcţie de zona orară aleasă."
-
-#, fuzzy
-#~ msgid "Connect to Internet"
-#~ msgstr "Nume de conexiune"
-
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Nume de conexiune"
-
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Pe ce disc doriţi să schimbaţi ?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Vă rog alegeţi pachetele pe care doriţi să le instalaţi"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Informaţie"
-
-#, fuzzy
-#~ msgid "authentification"
-#~ msgstr "Autentificare"
-
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "Numele utilizatorului"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Vă rog, alegeţi tipul de mouse?"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Automontare automată a perifericelor extractibile"
-
-#~ msgid "Active"
-#~ msgstr "Activ"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Nu"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "O imprimantă, modelul \"%s\", a fost detactă în"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Periferic local de imprimantă"
-
-#~ msgid "Printer Device"
-#~ msgstr "Periferic imprimantă:"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Coadă distantă:"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Coadă distantă:"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mouse Systems"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Alt tip"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Alegeţi tastatura."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Vă rog faceţi clic pe o partiţie"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tip: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Backup defectuos"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Configuraţi X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Periferic imprimantă:"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Anulează"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ok"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Mouse USB"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "Root"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr "Pe ce disc doriţi să schimbaţi ?"
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Alegeţi mărimea pe care vreţi să o instalaţi"
-
-#~ msgid "Total size: "
-#~ msgstr "Mârime totală: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Asteptaţi, vă rog"
-
-#~ msgid "Total time "
-#~ msgstr "Timp total "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Să folosesc configuraţia existentă pentru X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "La ce periferic aţi conectat imprimanta \n"
-#~ "(notaţi că /dev/lp0 e echivalent cu LPT1:)?\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid "New"
-#~ msgstr "Nou"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Şterge"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Vă rog faceţi clic pe o partiţie"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Alegerea obişnuită este \"/dev/hda\" pentru un disc maestru principal "
-#~ "IDE\n"
-#~ "sau \"/dev/sda\" pentru primul disc SCSI."
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambiguitate (%s), fiţi mai precis\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (din oficiu %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Ce alegeţi ? (din oficiu %s enter `niciuna' pentru niciuna) "
-
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Doriţi să testaţi configuraţia ?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Doriţi să testaţi configuraţia ?"
-
-#, fuzzy
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Doriţi să testaţi configuraţia ?"
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Nume de conexiune"
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Alegeţi noua mărime"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Vă rog, alegeţi tipul de mouse?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Alegeţi limba pentru instalare şi folosirea sistemului."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Alegeţi dispoziţia tastaturii din lista de mai sus"
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "Selectare:\n"
-#~ "\n"
-#~ " - Personalizat: Dacă sunteţi destul de familiar cu GNU/Linux, puteţi\n"
-#~ " atunci să alegeţi utilizarea principală a calculatorului. Vezi mai "
-#~ "jos\n"
-#~ " pentru detalii.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: Aceasta presupune că sunteţi foarte familiar cu GNU/Linux "
-#~ "şi\n"
-#~ " doriţi să faceţi o instalare foarte personalizată. Ca şi pentru "
-#~ "clasa\n"
-#~ " \"Personalizat\", veţi putea să selectaţi utilizarea sistemului\n"
-#~ " dumneavoastră.\n"
-#~ " Dar vă rog, NU ALEGEŢi ACEASTA DECÎT DACĂ ŞTIŢI CE FACEŢI!."
-
-#, fuzzy
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "\t* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ "\t at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ "\t will then have a complete collection of software installed in order "
-#~ "to compile, debug and format source code,\n"
-#~ "\t or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ "\t SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ "\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Diferitele posibilităţi pentru utilizarea calculatorului (furnizate, "
-#~ "deci, dacă\n"
-#~ "aţi ales \"Personalizat\" sau \"Expert\" la clasa de instalare) sunt \n"
-#~ "următoarele:\n"
-#~ "\n"
-#~ " - Normal: alegeţi aceasta dacă doriţi să folosiţi calculatorul pentru\n"
-#~ " utilizare zilnică (munca de servici, manipulaţii grafice, etc). Nu "
-#~ "vă\n"
-#~ " aşteptaţi la nici un compilator, utilitare de programare şi altele\n"
-#~ "\n"
-#~ " - Programare: cum numele-l indică. Alegeţi acesta dacă doriţi să aveţi\n"
-#~ " un calculator în principal pentru programare. Veţi avea atunci o "
-#~ "colecţiecompletă\n"
-#~ " instalată pentru a compila, deboga şi formata cod sursă sau crea \n"
-#~ " pachete software.\n"
-#~ "\n"
-#~ " - Server: alegeţi aceasta pentru a instala Mandrake Linux şi "
-#~ "intenţionaţi să-l folosiţi ca server. Acesta poate fi server de "
-#~ "fişiere (NFS sau SMB),\n"
-#~ " sau server de imprimantă (Unix' lp (Line Printer) protocol sau "
-#~ "imprimare \n"
-#~ "stil Windows SMB, server de autentificare (NIS), server de baze de date, "
-#~ "etc.\n"
-#~ "Deci nu vă aşteptaţi la programe de genul KDE, GNOME...\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Puteţi acum să selectaţi grupul pachetelor pe care vreţi să le instalaţi\n"
-#~ "sau actualizaţi.\n"
-#~ "DrakX va verifica dacă aveţi destul spaţiu pentru a le instala pe toate."
-#~ "Dacă nu, vă va avertiza despre asta. Dacă doriţi să continuaţi oricum,\n"
-#~ "va continua instalarea a tuturor grupurilor selectate dar va lăsa\n"
-#~ "deoparte cîteva pachete de mai puţin interes. La baza listei puteţi să\n"
-#~ "selectaţi opţiunea \"Selectarea individuală a pachetelor\"; în acest caz\n"
-#~ "va trebui va trebui să parcurgeţi mai mult de 1000 de pachete..."
-
-#, fuzzy
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Dacă aveţi toate CD-urile din lista de mai sus faceţi clic pe Ok.\n"
-#~ "Dacă nu aveţi nici unul din aceste Cd-uri, faceţi clic pe Anulează.\n"
-#~ "Dacă numai cîteva din aceste Cd-uri lipsesc, de-selectaţi-le şi apoi Ok."
-
-#, fuzzy
-#~ 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 ""
-#~ "Puteţi intra opţiunile de telefonie. Dacă nu sunteţi sigur de ceea ce\n"
-#~ "trebuie să intraţi, întrebaţi ISP-ul dumneavoastră."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Intrare;\n"
-#~ "\n"
-#~ " - Adresă IP: dacă nu ştiţi care e, întrebaţi administratorul de reţea "
-#~ "sauFurnizorul de Acces Internet (ISP).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mască de reţea: \"255.255.255.0\" e în general cea corectă. Dacă nu\n"
-#~ "sunteţi sigur, întrebaţi administratorul de reţea sau ISP.\n"
-
-#, 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 ""
-#~ "Dacă reţeaua dumneavoastră foloseşte NIS, selectaţi \"Foloseşte NIS\". "
-#~ "Dacă\n"
-#~ "nu ştiţi exact, întrebaţi administratorul de reţea."
-
-#~ 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 ""
-#~ "Puteţi intra opţiunile de telefonie. Dacă nu sunteţi sigur de ceea ce\n"
-#~ "trebuie să intraţi, întrebaţi ISP-ul dumneavoastră."
-
-#~ 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 ""
-#~ "Dacă folosiţi servere proxy, configuraţi-le acum. Dacă nu ştiţi dacă ar\n"
-#~ "trebuie să folosiţi un proxy, întrebaţi administratorul de reţea sau ISP-"
-#~ "ul."
-
-#, fuzzy
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Puteţi instala pachetul criptografie dacă conexiunea Internet a fost\n"
-#~ "realizată corect. Alegeţi mai întîi un sit Internet oglindă pentru a\n"
-#~ "recupera pachetele şi selectaţi pachetele de instalat.\n"
-#~ "\n"
-#~ "Notaţi că va trebui să alegeţi aceste pachete criptografice "
-#~ "corespunzătoare\n"
-#~ "legislaţie dumneavoastră."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Alegeţi parola pentru utilizatorul administrator al sistemului Linux.\n"
-#~ "Parola trebuie înscrisă de două ori pentru a se asigura că sunt "
-#~ "identice.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root e utilizatorul administrator al sistemului şi singurul autorizat\n"
-#~ "pentru a modifica configuraţia sistemului. Deci alegeţi cu atenţie "
-#~ "această\n"
-#~ "parolă! Utilizarea neautorizată a acestui cont poate fi foarte\n"
-#~ "periculoasă pentru integritatea sistemului, pentru informaţiilor "
-#~ "conţinute\n"
-#~ "şi pentru celelalte calculatoare conectate la el. Această parolă trebuie "
-#~ "să\n"
-#~ "fie un amestec de caractere alfanumerice şi de cel puţin 8 caractere. Nu-"
-#~ "l\n"
-#~ "scrieţi NICIODATĂ pe ceva şi nu-l faceţi prea lung sau prea greu de "
-#~ "reţinut."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Puteţi crea acum unul sau mai multe conturi de utilizator \"obişnuite\",\n"
-#~ "în opoziţie cu contul \"privilegiat\" al utilizatorului root. Puteţi\n"
-#~ "crea unul sau mai multe conturi pentru fiecare persoană autorizată să\n"
-#~ "se conecteze la calculator. Notaţi că fiecare cont utilizator va avea\n"
-#~ "propriile preferinţe (configuraţie grafică, parametrii de programe, "
-#~ "etc.)\n"
-#~ "şi propriul dosar personal în \"/home\" unde toate aceste preferinţe vor "
-#~ "fi\n"
-#~ "stocate.\n"
-#~ "\n"
-#~ "\n"
-#~ "Mai întîi creaţi un cont pentru dumneavoastră! Chiar dacă veţi fi "
-#~ "singurul\n"
-#~ "utilizator al calculatorului, NU TREBUIE SĂ VĂ CONECTAŢI CA ROOT PENTRU\n"
-#~ "SCOPURI ZILNICE LA SISTEM: pentru motive securitate. În plus, un sistem\n"
-#~ "poate uşor deveni inutilizabil prin apăsarea unei taste greşite.\n"
-#~ "\n"
-#~ "\n"
-#~ "În consecinţă, ar trebuie să vă conectaţi la sistem folosind contul \n"
-#~ "utilizatorului pe care l-aţi creat aici şi să folosiţi contul root\n"
-#~ "numai pentru administraţie şi scopuri de depanare."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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 ""
-#~ "Principalele opţiuni ale lui LILO şi grub sunt:\n"
-#~ " - Periferic de boot: parametrează numele perifericului (e.g. o partiţie\n"
-#~ "a unui disc dur) care conţine sectorul de demaraj. În mod normal e vorba\n"
-#~ "de \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Timp de aşteptare înainte de a demara imaginea din oficiu: Specifică\n"
-#~ "numărul de zecimi de secundă pentru a aştepta înaintea demarării primei\n"
-#~ "imagini. Acesta e foarte practic pentru sistemele care demarează de pe\n"
-#~ "disc dur după activarea tastaturii. Gestionarul de demaraj nu aşteaptă\n"
-#~ "deloc dacă secţiunea \"delay\" e omisă sau dacă e fixată la zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mod Video: Aceasta specifică modul text VGA care ar trebui selectat "
-#~ "la\n"
-#~ "demaraj. Următoarele opţiuni sunt valabile:\n"
-#~ " * normal: selectaţi normal pentru un mod text de 80x25.\n"
-#~ " * <număr>: folosiţi modul text corespunzător."
-
-#, fuzzy
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 ""
-#~ "LILO (de la LInux LOader) şi Grub sunt gestionare de demaraj. Amîndoi "
-#~ "sunt\n"
-#~ "capabili să demareze Linux sau un alt sistem prezent în calculator.\n"
-#~ "În mod normal, aceste alte sisteme de operare sunt detectate şi "
-#~ "instalate\n"
-#~ "corect. Dacă cumva nu e cazul, puteţi adăuga o intrare manual în acest\n"
-#~ "ecran. Aveţi grijă să alegeţi parametrii cei buni.\n"
-#~ "\n"
-#~ "\n"
-#~ "Puteţi de asemenea să interziceţi accesul acestor alte sisteme a altor \n"
-#~ "utilizatori, caz în care ar trebui să ştergeţi intrările acestor "
-#~ "sisteme.\n"
-#~ "În acest ultim caz însă, veţi avea nevoie de un floppy de demaraj pentru\n"
-#~ "a putea le demara!"
-
-#, fuzzy
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Principalele opţiuni ale lui LILO şi grub sunt:\n"
-#~ " - Periferic de boot: parametrează numele perifericului (e.g. o partiţie\n"
-#~ "a unui disc dur) care conţine sectorul de demaraj. În mod normal e vorba\n"
-#~ "de \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Timp de aşteptare înainte de a demara imaginea din oficiu: Specifică\n"
-#~ "numărul de zecimi de secundă pentru a aştepta înaintea demarării primei\n"
-#~ "imagini. Acesta e foarte practic pentru sistemele care demarează de pe\n"
-#~ "disc dur după activarea tastaturii. Gestionarul de demaraj nu aşteaptă\n"
-#~ "deloc dacă secţiunea \"delay\" e omisă sau dacă e fixată la zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mod Video: Aceasta specifică modul text VGA care ar trebui selectat "
-#~ "la\n"
-#~ "demaraj. Următoarele opţiuni sunt valabile:\n"
-#~ " * normal: selectaţi normal pentru un mod text de 80x25.\n"
-#~ " * <număr>: folosiţi modul text corespunzător."
-
-#, fuzzy
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Acum e momentul să configuraţi Sistemul X Windows, care e inima "
-#~ "interfaţei\n"
-#~ "grafice din Linux (Linux GUI de la Linux Graphical User Interface). În\n"
-#~ "acest scop trebuie să configuraţi cartea video şi monitorul. Majoritatea\n"
-#~ "acestor etape sunt automatizate; deci s-ar putea ca tot ceea ce veţi "
-#~ "avea\n"
-#~ "de făcut va consista în verificarea şi acceptarea parametrilor :)\n"
-#~ "\n"
-#~ "Cînd aţi terminat cu configuraţia, X va fi re-demarat (dar poate îi veţi\n"
-#~ "cere lui DrakX să nu o facă) pentru a verifica dacă noii parametrii vă\n"
-#~ "convin. Dacă nu vă convin, va puteţi întoarce şi să-i schimbaţi de cîte "
-#~ "ori\n"
-#~ "e necesar."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Dacă ceva nu e în regulă cu configuraţia X, folosiţi aceste opţiuni "
-#~ "pentru\n"
-#~ "a configura în mod corect Sistemul X Windows."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Dacă preferaţi să folosiţi un login în mod grafic, selectaţi \"Da\" şi \n"
-#~ "\"Nu\" în celălalt caz."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Sistemul dumneavoastră e pe cale să re-demareze.\n"
-#~ "\n"
-#~ "După re-demaraj, noul sistem Mandrake Linux sa va lansa automat. Dacă "
-#~ "doriţi\n"
-#~ "să demaraţi un alt sistem de operare existent, vă rog citiţi "
-#~ "instrucţiunile\n"
-#~ "adiţionale."
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Scrie /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formatează tot"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "După formatarea tuturor partiţiilor,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "toate datele din aceste partiţii vor fi pierdute"
-
-#~ msgid "Reload"
-#~ msgstr "Reîncarcă"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Doriţi să creaţi un floppy pentru o instalare automată de replicare?"
-
-#~ msgid "Remote queue"
-#~ msgstr "Coadă distantă:"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Standard"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#, fuzzy
-#~ msgid "Adapter"
-#~ msgstr "Actualizare"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Mouse USB"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Da, imprimă o pagină de test ASCII"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Da, imprimă o pagina de test Postscript"
-
-#~ msgid "Paper Size"
-#~ msgstr "Mărimea hîrtiei"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Ejectarea paginei după lucru?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Opţiuni pilot Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "Opţiuni pentru culori:"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Imprimă text ca Postscript"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Repară efectul de scară al textului"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Număr de pagini"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Marginile Dreapta/Stînga în puncte (1/72 inci)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Marginile Sus/Jos în puncte (1/72 inci)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Opţiuni Gostscript suplimentare"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Opţinuni Text suplimentare"
-
-#~ msgid "Reverse page order"
-#~ msgstr "incersează ordinea paginilor"
-
-#, fuzzy
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Selectaţi Conexiunea de imprimantă"
-
-#, fuzzy
-#~ 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 ""
-#~ "Fiecare coadă (la care activităţile de imprimare sunt trimise) are "
-#~ "nevoie\n"
-#~ "de un nume (adesea lp) şi de un directoriu de spool asociat. Ce nume\n"
-#~ "şi directoriu doriţi să utilizaţi pentru această coadă şi cum e "
-#~ "conectatăimprimanta?"
-
-#~ 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 ""
-#~ "Fiecare coadă (la care activităţile de imprimare sunt trimise) are "
-#~ "nevoie\n"
-#~ "de un nume (adesea lp) şi de un directoriu de spool asociat. Ce nume\n"
-#~ "şi directoriu doriţi să utilizaţi pentru această coadă şi cum e "
-#~ "conectatăimprimanta?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Numele cozii:"
-
-#~ msgid "Spool directory"
-#~ msgstr "Dosar de Spool:"
-
-#, fuzzy
-#~ msgid "Disable"
-#~ msgstr "Tabel"
-
-#, fuzzy
-#~ msgid "Enable"
-#~ msgstr "Tabel"
-
-#, fuzzy
-#~ msgid "fsck failed: "
-#~ msgstr "montare eşuată: "
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Pentru a crea un sistem încă şi mai sigur, ar trebui să alegeţi "
-#~ "\"Foloseşte\n"
-#~ "un fişier shadow\" şi \"Foloseşte parole MD5\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Dacă reţeaua dumneavoastră foloseşte NIS, selectaţi \"Foloseşte NIS\". "
-#~ "Dacă\n"
-#~ "nu ştiţi exact, întrebaţi administratorul de reţea."
-
-#~ msgid "yellow pages"
-#~ msgstr "Pagini galbene"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Configuraţie"
-
-#, fuzzy
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Pe ce disc doriţi să schimbaţi ?"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Selecţionează fişierul"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr "Configuraţia IDE"
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Configuraţie: Adaugă localizare"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr ""
-#~ "Acest script de demaraj încearcă să încarce modulele pentru mouse-ul\n"
-#~ "dumneavoastră usb."
-
-#, fuzzy
-#~ msgid "Boot style configuration"
-#~ msgstr "Configuraţie post-install"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Dependenţe automate"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Configuraţie LILO/GRUB"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Creaţi o dischetă de demaraj"
-
-#~ msgid "Choice"
-#~ msgstr "Alegere "
-
-#, fuzzy
-#~ msgid "gMonitor"
-#~ msgstr "Monitor"
-
-#, 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 ""
-#~ "Puteţi alege acum diferite opţiuni pentru sistemul dumneavoastră.\n"
-#~ "\n"
-#~ " - Foloseşte optimizări pentru disc dur: această opţiune poate ameliora\n"
-#~ "performanţele discului dur dar e rezervat numai utilizatorilor avansaţi:\n"
-#~ "problemele cu unele microprocesoare port distruge datele, deci sunteţi\n"
-#~ "avertizat. Kernel-ul conţine o listă neagră a discurilor şi a "
-#~ "microproce-\n"
-#~ "soarelor, dar dacă vreţi să eliminaţi orice surpriză nu selectaţi "
-#~ "această\n"
-#~ "opţiune.\n"
-#~ "\n"
-#~ " - Alege nivelul de securitate: puteţi alege nivelul de securitate "
-#~ "pentru\n"
-#~ "sistemul dumneavoastră. Vă referiţi-vă la manual pentru o informaţie "
-#~ "completă.\n"
-#~ "Pe scurt: dacă nu sunteţi sigur, alegeţi \"Mediu\", dacă doriţi un\n"
-#~ "calculator securizat, alegeţi \"Paranoiac\" dar aveţi grijă: ÎN ACEST "
-#~ "NIVEL\n"
-#~ " DE SECURITATE, LE LOGIN ÎN CALITATE DE ROOT NU E AUTORIZAT DIRECT! "
-#~ "Pentru \n"
-#~ "a deveni root, va trebui să vă conectaţi ca utilizator normal şi apoi să\n"
-#~ "folosiţi comanda \"su\". În plus, nu vă aşteptaţi să aveţi altceva decît\n"
-#~ "un server. Aţi fost avertizat.\n"
-#~ "\n"
-#~ " - Precizează RAM-ul dacă e necesar: din păcate, în lumea actuală a\n"
-#~ "calculatoarelor personale, nu există o metodă standard pentru a consulta\n"
-#~ "BIOS-ul cu privire la RAM-ul prezent în calculator dumneavoastră. Din\n"
-#~ "această cauză, Linux poate eşua la detectarea RAM-ului în mod corect. "
-#~ "Dacă\n"
-#~ "acesta e cazul, puteţi specifica aici cantitatea exactă. Notaţi că o\n"
-#~ "diferenţă de 2 sau 4Mb e normală.\n"
-#~ "\n"
-#~ " - Auto-montaj des media extractibile: dacă preferaţi să nu montaţi "
-#~ "manual\n"
-#~ "în mod manual aceste periferice (CD-ROM, Floppy, Zip) cu ajutorul \n"
-#~ "comenzilor \"mount\" şi \"umount\", selectaţi această opţiune.\n"
-#~ "\n"
-#~ " - Activează Numlock la demaraj: dacă doriţi să activaţi NumLock la\n"
-#~ "demaraj selectaţi această opţiune (Notaţi că Numlock poate sau să\n"
-#~ "funcţioneze în) mod grafic, X)."
-
-#, fuzzy
-#~ msgid "Internet/Network access"
-#~ msgstr "Interesant"
-
-#~ msgid "Miscellaneous"
-#~ msgstr "Diverse"
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Întrebări diverse"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "Nu pot să folosesc supermount în nivelul de securitate ridicat"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Primul server DNS"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Al doilea server DNS"
-
-#, fuzzy
-#~ msgid "using module"
-#~ msgstr "Nume de domeniu"
-
-#, fuzzy
-#~ msgid "Development, Database"
-#~ msgstr "Programator"
-
-#~ msgid "loopback"
-#~ msgstr "loopback"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Ce gestionar de demaraj doriţi să folosiţi ?"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Floppy pentru instalare automată"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Să caut un modem?"
-
-#, fuzzy
-#~ msgid "Configure an ISDN connection"
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "Configure local network"
-#~ msgstr "Configuraţie reţea"
-
-#, fuzzy
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Nume de conexiune"
-
-#, fuzzy
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr "Reţeaua LAN a fost deja configurată. Doriţi să :"
-
-#, fuzzy
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr "Configuraţia IDE"
-
-#, fuzzy
-#~ msgid "KDE"
-#~ msgstr "IDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#, fuzzy
-#~ msgid "Internet Tools"
-#~ msgstr "Configuraţie proxy"
-
-#, fuzzy
-#~ msgid "Development C/C++"
-#~ msgstr "Programator"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Configuraţia zonei orare"
-
-#, fuzzy
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr "Opţiunea imprimantei NetWare"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(poate cauza deteriorarea datelor)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Activează num lock la demaraj"
-
-#, fuzzy
-#~ msgid "Confirm Password"
-#~ msgstr "Parola"
-
-#~ msgid "DNS server:"
-#~ msgstr "Server DNS:"
-
-#~ msgid "Gateway device:"
-#~ msgstr "Periferic pasarelă:"
-
-#~ msgid "default"
-#~ msgstr "standard"
-
-#, fuzzy
-#~ msgid "What is your system used for?"
-#~ msgstr "Care e folosinţa sistemului dumneavoastră?"
-
-#, fuzzy
-#~ msgid "Select the size you want to install"
-#~ msgstr "Alegeţi mărimea pe care vreţi să o instalaţi"
-
-#~ msgid "Customized"
-#~ msgstr "Personalizat"
-
-#, 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 ""
-#~ "Sunteţi sigur ca sunteţi un expert?\n"
-#~ "Ei, nu-i glumă, veţi putea face lucruri serioase dar periculoase aici."
-
-#~ msgid "Use shadow file"
-#~ msgstr "Foloseşte un fişier shadow"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Foloseşte parole MD5"
-
-#~ msgid "Package"
-#~ msgstr "Pachet"
-
-#~ msgid "Tree"
-#~ msgstr "Arbore"
-
-#~ msgid "Sort by"
-#~ msgstr "Triază în funcţie de"
-
-#~ msgid "Category"
-#~ msgstr "Categorie"
-
-#~ msgid "Installed packages"
-#~ msgstr "Pachete instalate"
-
-#~ msgid "Available packages"
-#~ msgstr "Pachete disponibile"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Afişaţi numai foile"
-
-#~ msgid "Expand all"
-#~ msgstr "Expandează tot"
-
-#~ msgid "Collapse all"
-#~ msgstr "Reduce tot"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Adaugă localizarea pachetelor"
-
-#~ msgid "Update location"
-#~ msgstr "Actualizare localizare"
-
-#~ msgid "Find Package"
-#~ msgstr "Caută Pachetul"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Caută pachetul conţinînd fişierul"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Basculează între Instalare şi Disponibil"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Verificare dependenţe"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Pachetele următoare urmează să fie dezinstalate"
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Ce pachet căutaţi ?"
-
-#~ msgid "No match"
-#~ msgstr "Nici unul"
-
-#~ msgid "No more match"
-#~ msgstr "Nici o altă ocurenţă"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake e actualmente într-un mod ``memorie joasă''.\n"
-#~ "Voi re-lansa rpmdrake pentru a permite căutarea fişierelor"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Ce fişier căutaţi ?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Ce căutaţi ?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Daţi-mi un nume (ex: `extra', `comercial')"
-
-#~ msgid "Directory"
-#~ msgstr "Directoriu"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Nici un Cd-rom disponibil (nimic în /mnt/cdrom)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL-ul directoriului care conţine RPM-urile"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Pentru FTP şi HTTP, aveţi nevoie să daţi localizarea pentru hdlist\n"
-#~ "Aceasta trebuie să fie relativă la URL -ul de mai sus"
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Vă rog furnizaţi următoarea informaţie"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s e deja folosit"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Actualizare bazei RPM-urilor"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Voi şterge intrarea %s"
-
-#~ msgid "Finding leaves"
-#~ msgstr "Căutare de foi"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Găsirea foilor ia ceva timp"
-
-#, fuzzy
-#~ msgid "ECI modem"
-#~ msgstr "Expert"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (important)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (foarte simpatic)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (simpatic)"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "La ce port serial este conectat mouse-ul?"
-
-#~ msgid "Czech"
-#~ msgstr "Ceh"
-
-#~ msgid "Slovakian"
-#~ msgstr "Slovac"
-
-#, fuzzy
-#~ msgid "Reconfigure local network"
-#~ msgstr "Reconfiguraţi reţeaua"
-
-#, fuzzy
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Nume de conexiune"
-
-#, fuzzy
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Nume de conexiune"
-
-#, fuzzy
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Nume de conexiune"
-
-#, fuzzy
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Nume de conexiune"
-
-#, fuzzy
-#~ msgid "Germany (1TR6)"
-#~ msgstr "German"
-
-#, fuzzy
-#~ msgid "What do you wish to do?"
-#~ msgstr "Ce doriţi să faceţi ?"
-
-#, fuzzy
-#~ msgid "Install/Rescue"
-#~ msgstr "Instalare"
-
-#, fuzzy
-#~ msgid "Rescue"
-#~ msgstr "Redimensionează"
-
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Ce tip de partiţie doriţi?"
-
-#, fuzzy
-#~ 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 Mandrake Linux "
-#~ "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"
-#~ msgstr ""
-#~ "Alegeţi \"Instalare\" dacă nu exista alte versiuni de Linux instalate,\n"
-#~ "sau dacă doriţi să folosiţi mai multe versiuni sau distribuţii.\n"
-#~ "\n"
-#~ "Alegeţi \"Actualizare\" dacă doriţi să actualizaţi o versiune\n"
-#~ "precedentă Mandrake Linux:\n"
-#~ "%s or %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Selectare:\n"
-#~ "\n"
-#~ " - Automatizat: Dacă n'aţi mai instalat Linux niciodată, alegeţi "
-#~ "aceasta.\n"
-#~ "NOTĂ:\n"
-#~ " reţeaua nu va fi configurată în timpul instalării, folosiţi\n"
-#~ " \"LinuxConf\" pentru a o configura după ce instalarea s'a terminat.\n"
-#~ "\n"
-#~ " - Personalizat: Dacă sunteţi destul de familiar cu GNU/Linux, puteţi\n"
-#~ " atunci să alegeţi utilizarea principală a calculatorului. Vezi mai "
-#~ "jos\n"
-#~ " pentru detalii.\n"
-#~ "\n"
-#~ " - Expert: Aceasta presupune că sunteţi foarte familiar cu GNU/Linux "
-#~ "şi\n"
-#~ " doriţi să faceţi o instalare foarte personalizată. Ca şi pentru "
-#~ "clasa\n"
-#~ " \"Personalizat\", veţi putea să selectaţi utilizarea sistemului\n"
-#~ " dumneavoastră.\n"
-#~ " Dar vă rog, NU ALEGEŢi ACEASTA DECÎT DACĂ ŞTIŢI CE FACEŢI!.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux 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 acest punct, veţi putea alege partiţiile pentru a instala sistemul\n"
-#~ "Mandrake Linux dacă acestea au fost deja definite (dintr-o altă "
-#~ "instalare\n"
-#~ "prealabilă a unui sistem Linux sau cu ajutorul unui program "
-#~ "departiţionare). În celelalte cazuri, partiţiile vor trebui să fie "
-#~ "create.\n"
-#~ "Această operaţie consistă în divizarea logică a capacităţii discului dur\n"
-#~ "în arii separate pentru utilizare.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dacă aveţi nevoie să creaţi noi partiţii, folosiţi \"Auto alocare\" \n"
-#~ "pentru o creare automată de partiţii Linux. Puteţi selecta discul pentru\n"
-#~ "partiţionare făcînd clic pe \"hda\" pentru primul disc IDE, \"hdb\" \n"
-#~ "pentru al doilea sau \"sda\" pentru primul disc SCSI şi aşa mai departe.\n"
-#~ "\n"
-#~ "\n"
-#~ "Două partiţii obişnuite sunt: partiţia root (/), punctul de plecare\n"
-#~ "al ierarhiei sistemului de fişiere şi /boot, care conţine toate "
-#~ "fişierele\n"
-#~ "necesare pentru a demara sistemul de operare cînd calculatorul e aprins.\n"
-#~ "\n"
-#~ "\n"
-#~ "Pentru că efectele acestui proces sunt în mod uzual reversibile,\n"
-#~ "partiţionarea poate fi intimidantă pentru un utilizator ne-experimentat.\n"
-#~ "De aceea DiskDrake simplifică pe cît posibil acest proces. Consultaţi\n"
-#~ "documentaţia şi nu vă grăbiţi înainte de a începe.\n"
-#~ "\n"
-#~ "\n"
-#~ "Puteţi accede la toate opţiunile cu ajutorul tastaturii: navigaţi "
-#~ "printre\n"
-#~ "partiţii folosind tasta Tab şi tastele săgeţi Sus/Jos. Cînd o partiţie\n"
-#~ "e selectată, puteţi folosi:\n"
-#~ "\n"
-#~ "- Ctrl-c pentru a crea o nouă partiţie (cînd a partiţie goală e "
-#~ "selectată)\n"
-#~ "\n"
-#~ "- Ctrl-d pentru a şterge o partiţie\n"
-#~ "\n"
-#~ "- Ctrl-m pentru a crea un punct de montaj\n"
-
-#~ 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 ""
-#~ "Toate partiţiile care tocmai au fost definite trebuie să fie formatate\n"
-#~ "înainte de a fi utilizate. (formatare însemnînd crearea fişierelor "
-#~ "sistem).\n"
-#~ "Poate doriţi să reformataţi partiţii pre-existente pentru a şterge \n"
-#~ "informaţiile conţinute.\n"
-#~ "Nota: nu este necesar să formataţi partiţii mai ales dacă doriţi să\n"
-#~ "conservaţi informaţiile ce le conţin. Partiţii de acest gen sunt:\n"
-#~ "/home şi /usr/local."
-
-#~ 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 ""
-#~ "Pachetele selectate sunt acum pe cale de fi instalate. Această operaţie\n"
-#~ "ar trebui să ia cîteva minute, excepţie făcînd Actualizare unei "
-#~ "distribuţii\n"
-#~ "precedente, caz în care timpul va fi lung înainte ca actualizarea să\n"
-#~ "înceapă."
-
-#, fuzzy
-#~ 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"
-#~ "\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"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Dacă DrakX nu a reuşit să detecteze mouse-ul, sau dacă doriţi să "
-#~ "verificaţi\n"
-#~ "ceea ce a făcut, vi se va propune lista cu mouse-uri de mai sus.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dacă sunteţi de acord cu propunerea lui DrakX, săriţi la secţiunea "
-#~ "dorită\n"
-#~ "cu un simple în meniu din stînga. Dacă nu, alegeţi tipul de mouse care\n"
-#~ "credeţi că se apropie mai mult de cel pe care-l aveţi.\n"
-#~ "\n"
-#~ "\n"
-#~ "În cazul unui mouse de tip serie, veţi putea specifica portul serie la\n"
-#~ "care e conectat."
-
-#~ 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 Mandrake Linux 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 ""
-#~ "Această secţiune este dedicată configuraţiei unei reţele locale (LAN)\n"
-#~ "sau a unui modem.\n"
-#~ "\n"
-#~ "Alegeţi \"Reţea LAN\" şi DrakX va încerca să detecteze adaptatorul\n"
-#~ "Ethernet pe care-l aveţi. Adaptatorii PCI sunt în general detectaţi şi\n"
-#~ "iniţializaţi în mod automat.\n"
-#~ "În cazul unui adaptator ISA, detecţia automată nu va funcţiona şi veţi\n"
-#~ "avea atunci de ales pilotul din lista propusă.\n"
-#~ "\n"
-#~ "\n"
-#~ "La fel şi pentru adaptatorii SCSI, puteţi lăsa testul mai întîi, dacă nu\n"
-#~ "puteţi specifica opţiunile pentru pilot pe care le-aţi recuperat în \n"
-#~ "documentaţia hardware-ului.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dacă instalaţi sistemul Mandrake Linux pe un calculator care face parte\n"
-#~ "dintr-o reţea deja existentă, administratorul de reţea vă va da toate\n"
-#~ "informaţiile necesare (adresă IP, sub-mască de reţea sau netmask mai pe\n"
-#~ "scurt şi numele calculatorului). Dacă configuraţi o reţea privată la\n"
-#~ "dumneavoastră acasă, de exemplu, va trebui să alegeţi adresele singur.\n"
-#~ "\n"
-#~ "\n"
-#~ "Alegeţi \"Telefonaţi cu modem\" şi atunci conexiunea Internet va fi\n"
-#~ "configurată. DrakX va încerca să detecteze modemul şi dacă nu reuşeşte\n"
-#~ "vă va propune portul serie la care modemul e conectat."
-
-#, fuzzy
-#~ 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"
-#~ "\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"
-#~ "\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."
-#~ msgstr ""
-#~ "Linux poate gera multe tipuri de imprimante. Fiecare din aceste tipuri\n"
-#~ "necesită o instalare diferită. Notaţi că \"spool\"-ul de imprimantă\n"
-#~ "foloseşte \"lp\" pentru numele din oficiu al imprimantei; deci va trebui\n"
-#~ "să aveţi o imprimantă cu un acest nume; dar îi veţi putea da mai multe "
-#~ "nume,\n"
-#~ "separate de caractere '|'. Deci, dacă doriţi să aveţi unele nume mai "
-#~ "pline\n"
-#~ "de sens, veţi putea folosi, de exemplu: \"Imprimanta mea|lp\".\n"
-#~ "Imprimanta care are are \"lp\" printre numele ei va fi considerată ca\n"
-#~ "imprimanta din oficiu.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dacă imprimanta e conectată fizic la calculator, selectaţi atunci\n"
-#~ "\"Imprimantă locală\". Veţi avea apoi a intra numele portului de\n"
-#~ "imprimantă la care aceasta e conectată şi a selecta filtrul apropriat\n"
-#~ "Portul LPT1 devine lp0 în Linux\n"
-#~ "\n"
-#~ "\n"
-#~ "Dacă doriţi să accedeţi la un calculator Unix distant, veţi avea a "
-#~ "selecta\n"
-#~ "\"lpd distant\". Pentru a o face să funcţioneze, nu aveţi nevoie de "
-#~ "parolă\n"
-#~ "sau de nume de utilizator, dar va trebui să ştiţi care e numele cozii de\n"
-#~ "imprimare de pe acest server-ului.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dacă doriţi să acedeţi la o imprimantă SMB (adică la o imprimantă "
-#~ "conectată\n"
-#~ "fizic la un calculator distant cu un sistem Windows), va trebui să \n"
-#~ "specificaţi numele ei SMB (care nu e numele ei TCP/IP) şi probabil "
-#~ "adresa\n"
-#~ "ei IP, plus numele utilizatorului, al grupului de lucru şi parola cerută\n"
-#~ "pentru a accede la imprimantă şi bineînţeles numele imprimantei. "
-#~ "Lucrurile\n"
-#~ "sunt similare pentru o imprimantă Netware, excepţie făcînd faptul că nu\n"
-#~ "aveţi nevoie de informaţia de grup de lucru."
-
-#, 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 ""
-#~ "E foarte indicat să răspundeţi \"Da\" aici. Dacă instalaţi Microsoft \n"
-#~ "Windows mai tîrziu, acest a vă va şterge sectorul de demaraj al "
-#~ "discului.\n"
-#~ "Dacă nu aveţi un floppy de demaraj, nu veţi mai putea demara Linux."
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Abandonaţi schimbările?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Ce tip de mouse aveţi?"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "Rezoluţii alese în mod automat"
-
-#~ 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 ""
-#~ "Pentru a afla rezoluţiile disponibile voi încerca altele diferite.\n"
-#~ "Ecranul dumneavoastră se va stinge şi aprinde de cîteva ori..."
-
-#~ 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?"
-#~ msgstr ""
-#~ "Pot să încerc să găsesc rezoluţiile disponibile (eg:800x600).\n"
-#~ "Uneori, totuşi, aceasta poate bloca calculatorul.\n"
-#~ "Doriţi să încerc ?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "N'am găsit moduri valide\n"
-#~ "Încercaţi cu o altă carte video sau alt monitor"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Configurarea automată a rezoluţiilor"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Mouse Apple ADB"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Mouse Apple ADB (2 Butoane)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Mouse Apple ADB (3+ Butoane)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Mouse Apple USB"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Mouse Apple USB (2 Butoane)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Mouse Apple USB (3+ Butoane)"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "Mouse ATI Bus"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Mouse Microsoft Bus"
-
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Mouse Logitech Bus"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "Mouse USB (3 butoane sau mai multe)"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A sau mai mult (serie)"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (serie)"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (serie)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (serie)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Mouse serie generic"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Mouse Microsoft compatibil (serie)"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Mouse serie generic cu 3 butoane"
-
-#, fuzzy
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse"
-
-#~ msgid "nfs mount failed"
-#~ msgstr "montarea nfs a eşuat"
-
-#~ msgid "Cryptographic"
-#~ msgstr "Criptografie"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Doriţi sa configuraţi reţeaua LAN pentru sistemul dumneavoastră?"
-
-#~ msgid "Show less"
-#~ msgstr "Afişaţi mai puţin"
-
-#~ msgid "Show more"
-#~ msgstr "Afişaţi mai mult"
-
-#~ msgid "tie"
-#~ msgstr "cravată"
-
-#~ msgid "brunette"
-#~ msgstr "brunetă"
-
-#~ msgid "girl"
-#~ msgstr "fată"
-
-#~ msgid "woman-blond"
-#~ msgstr "femeie blondă"
-
-#~ msgid "automagic"
-#~ msgstr "automagic"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Care e dispoziţia tastaturii?"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Să încerc să găsesc cartelele PCMCIA?"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Să încerc să găsesc periferice %s?"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr "Doriţi sa configuraţi o conexiune telefonică prin modem?"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Să încerc să găsesc periferice PCI?"
-
-#~ msgid "Searching root partition."
-#~ msgstr "În căutarea partiţiei root"
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr "%s: Aceasta nu e o partiţie root, vă rog alegeţi o alta"
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Vă rog alegeţi o partiţie pentru a o folosi ca partiţie root?."
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "Nu aveţi destul spaţiu pentru Lnx4win"
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# 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
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#~ 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 ""
-#~ "Bun venit la gestionarul de sisteme de operare LILO!\n"
-#~ "Pentru a lista posibilitatile, apasati <TAB>.\n"
-#~ "\n"
-#~ "Pentru a lansa unul dintre ele, scrietii numele si apasati <ENTER> sau\n"
-#~ "asteptati %d secunde pentru demararea din oficiu.\n"
-#~ "\n"
-
-# 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 ""
-#~ "Bun venit la gestionarul de sisteme de operare SILO!\n"
-#~ "\n"
-#~ "Pentru a afisa diferitele posibilitati, apasati <TAB>.\n"
-#~ "\n"
-#~ "Pentru a demara unul dintre ele, scrieti-i numele si apasati <ENTER> sau\n"
-#~ "asteptati %d secunde pentru demararea din oficiu.\n"
-#~ "\n"
-
-#~ msgid "SILO main options"
-#~ msgstr "Opţinunile principale ale lui SILO"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Iată următoarele intrări din SILO.\n"
-#~ "Puteţi adăuga mai multe sau schimba cele existente."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Această etichetă e deja utilizată"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "Instalarea lui SILO a eşuat. Următoarea eroare a apărut:"
-
-#~ 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 va încerca mai întîi să caute unul sau mai mulţi adaptatori PCI\n"
-#~ "sau SCSI. Dacă căutarea e fructuoasă şi ştie ce pilot să folosească,\n"
-#~ "atunci îl (le) va instala în mod automat.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dacă adaptatorul este o carte ISA, sau est e o carte PCI şi DrakX\n"
-#~ "nu ştie ce pilot să folosească sau dacă nu aveţi nici un adaptator SCSI\n"
-#~ "veţi fi mai apoi întrebat dacă aveţi unul sau nu. Dacă nu aveţi nici "
-#~ "unul\n"
-#~ "răspundeţi \"Nu\". Dacă aveţi unul sau mai multe, răspundeti \"Da\".\n"
-#~ "O listă cu piloţi va va permite atunci să alegeţi unul.\n"
-#~ "\n"
-#~ "\n"
-#~ "După ce aţi selecţionat pilotul, DrakX vă va întreba dacă doriţi\n"
-#~ "să specificaţi opţiuni pentru el (ei). Mai întîi încercaţi şi lăsaţi\n"
-#~ "pilotul să testeze hardware-ul: în mod normal aceasta funcţionează bine.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dacă nu, nu uitaţi informaţiile despre hardware pe care le-aţi putea "
-#~ "găsi\n"
-#~ "în documentaţia dumneavoastră sau din Windows (dacă l-aveţi instalat), "
-#~ "aşa\n"
-#~ "cum e sugerat în ghidul de instalare. Acestea sunt opţiuni pe care le "
-#~ "veţi\n"
-#~ "furniza pilotului."
-
-#~ msgid "Shutting down"
-#~ msgstr "Oprire"
-
-#~ msgid "useless"
-#~ msgstr "nefolositor"
-
-#~ 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."
-#~ msgstr ""
-#~ "Am găsit ceva caractere din windows.\n"
-#~ "Doriţi să le folosiţi ? Asiguraţi-vă ca aveţi dreptul să le folosiţi\n"
-#~ "în Linux."
-
-#~ 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 ""
-#~ "Alegeţi \"Instalare\" dacă nu exista alte versiuni de Linux instalate,\n"
-#~ "sau dacă doriţi să folosiţi mai multe versiuni sau distribuţii.\n"
-#~ "\n"
-#~ "\n"
-#~ "Alegeţi \"Actualizare\" dacă doriţi să actualizaţi o versiune precedentă\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 "Do you want to use LILO?"
-#~ msgstr "Doriţi să utilizaţi LILO?"
-
-#~ msgid "Choose other CD to install"
-#~ msgstr "Alegeţi alt CD de instalat"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Automated: 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 ""
-#~ "Selecţionează:\n"
-#~ "\n"
-#~ " - Automatizat: Dacă nu aţi mai instalat niciodată Linux, sau dacă "
-#~ "doriţi\n"
-#~ "să instalaţi distribuţia aleasă \"Produsul anului\" în anul 1999, faceţi\n"
-#~ "clic aici.\n"
-#~ "\n"
-#~ " - Personalizat: Dacă sunteţi obişnuit cu Linux şi veţi fi capabil să\n"
-#~ "alegeţi scopul sistemului instalat între normal, progamator sau server.\n"
-#~ "Alegeţi \"Normal\" pentru o utilizare generală a calculatorului. Puteţi\n"
-#~ "alege \"Programator\" dacă veţi folosi calculatorul în principal pentru\n"
-#~ "programare sau \"Server\" dacă doriţi să instalaţi un server general\n"
-#~ "(pentru mail, imprimare...)\n"
-#~ "\n"
-#~ " - Expert: Dacă cunoaşteţi bine GNU/Linux şi doriţi să alegeţi un tip "
-#~ "de\n"
-#~ "instalare personalizabilă in cele mai mici detalii, selectaţi acest tip.\n"
-#~ "Veţi fi capabil să selectaţi destinaţia sistemului dumneavoastră ca şi\n"
-#~ "pentru \"Personalizat\"."
-
-#~ msgid "Setup SCSI"
-#~ msgstr "Instalare SCSI"
-
-#~ msgid "developer"
-#~ msgstr "programator"
-
-#~ msgid "beginner"
-#~ msgstr "începător"
-
-#~ msgid "After %s partition %s,"
-#~ msgstr "După %s partiţie %s,"
-
-#~ msgid "changing type of"
-#~ msgstr "schimbă tipul de"
-
-#~ msgid "resizing"
-#~ msgstr "redimensionează"
-
-#~ msgid "Size: %s MB"
-#~ msgstr "Cantitatea: %s MB"
-
-#~ msgid "Password:"
-#~ msgstr "Parola:"
-
-#~ msgid "User name:"
-#~ msgstr "Numele utilizatorului:"
-
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Alegeţi Instalare sau Actualizare"
diff --git a/perl-install/share/po/ru.po b/perl-install/share/po/ru.po
deleted file mode 100644
index 1f8d41ac7..000000000
--- a/perl-install/share/po/ru.po
+++ /dev/null
@@ -1,13049 +0,0 @@
-# DrakX messages translations.
-# Copyright (C) 1999 MandrakeSoft.
-# Vladimir Choundalov <choundalovvv@point.pwp.ru>, 2001
-# Aleksey Smirnov <smi@logic.ru>, 1999-2000
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-11-23 10:07 +0200\n"
-"Last-Translator: Vladimir Choundalov <choundalovvv@point.pwp.ru>\n"
-"Language-Team: ru\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=koi8-r\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "îÁÓÔŇĎÉÔŘ ×ÓĹ ÇĎĚĎ×ËÉ ÎĹÚÁ×ÉÓÉÍĎ"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ŇÁÓŰÉŇĹÎÉĹ Xinerama"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "óËŇĎÎĆÉÇŐŇÉŇĎ×ÁÔŘ ÔĎĚŘËĎ ËÁŇÔŐ \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "îÁÓÔŇĎĘËÁ ÄĚŃ ÎĹÓËĎĚŘËÉČ ÇĎĚĎ×ĎË"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"÷ÁŰÁ ÓÉÓÔĹÍÁ ĐĎÄÄĹŇÖÉ×ÁĹÔ ÎÁÓÔŇĎĘËŐ ÄĚŃ ÎĹÓËĎĚŘËÉČ ÇĎĚĎ×ĎË.\n"
-"ţÔĎ ×Ů ČĎÔÉÔĹ ÓÄĹĚÁÔŘ?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "÷ÉÄĹĎËÁŇÔÁ"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "÷ŮÂĹŇÉÔĹ ×ÉÄĹĎËÁŇÔŐ"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "÷ŮÂĹŇÉÔĹ X ÓĹŇ×ĹŇ"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X ÓĹŇ×ĹŇ"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "÷ŮÂĹŇÉÔĹ X ÓĹŇ×ĹŇ"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X ÓĹŇ×ĹŇ"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree86 %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "ëÁËŐŔ ËĎÎĆÉÇŐŇÁĂÉŔ XFree ×Ů ČĎÔÉÔĹ ĐĎĚŐŢÉÔŘ?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"÷ÁŰÁ ×ÉÄĹĎËÁŇÔÁ ÍĎÖĹÔ ĐĎÄÄĹŇÖÉ×ÁÔŘ ÁĐĐÁŇÁÔÎĎĹ 3D ŐÓËĎŇĹÎÉĹ, ÎĎ ÔĎĚŘËĎ Ó "
-"XFree %s.\n"
-"÷ÁŰÁ ×ÉÄĹĎËÁŇÔÁ ĐĎÄÄĹŇÖÉ×ÁĹÔÓŃ ÓĹŇ×ĹŇĎÍ XFree %s, ËĎÔĎŇŮĘ ×ĎÚÍĎÖÎĎ ĚŐŢŰĹ "
-"ĐĎÄÄĹŇÖÉ×ÁĹÔ 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "÷ÁŰÁ ×ÉÄĹĎËÁŇÔÁ ÍĎÖĹÔ ĐĎÄÄĹŇÖÉ×ÁÔŘ ÁĐĐÁŇÁÔÎĎĹ 3D ŐÓËĎŇĹÎÉĹ × XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s Ó ÁĐĐÁŇÁÔÎŮÍ 3D ŐÓËĎŇĹÎÉĹÍ"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"÷ÁŰÁ ×ÉÄĹĎËÁŇÔÁ ÍĎÖĹÔ ĐĎÄÄĹŇÖÉ×ÁÔŘ ÁĐĐÁŇÁÔÎĎĹ 3D ŐÓËĎŇĹÎÉĹ × XFree %s,\n"
-"ďâňáôéôĺ ÷îéíáîéĺ - üôď üëóđĺňéíĺîôáěřîáń đďääĺňöëá é ÷ďúíďöîď úá÷éóáîéĺ "
-"÷áűĺçď ëďíđřŕôĺňá."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s Ó üëóđĺňéíĺîôáěřîůí ÁĐĐÁŇÁÔÎŮÍ 3D ŐÓËĎŇĹÎÉĹÍ"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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:417
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "îÁÓÔŇĎĘËÁ XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "÷ŮÂĹŇÉÔĹ ŇÁÚÍĹŇ ĐÁÍŃÔÉ ×ÁŰĹĘ ×ÉÄĹĎËÁŇÔŮ"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "÷ŮÂĹŇÉÔĹ ĎĐĂÉÉ ÄĚŃ ÓĹŇ×ĹŇÁ"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "÷ŮÂĹŇÉÔĹ ÍĎÎÉÔĎŇ"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "íĎÎÉÔĎŇ"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"ä×Á ËŇÉÔÉŢĹÓËÉČ ĐÁŇÁÍĹÔŇÁ - ÜÔĎ ŢÁÓÔĎÔÁ ×ĹŇÔÉËÁĚŘÎĎĘ ŇÁÚ×ĹŇÔËÉ, ËĎÔĎŇÁŃ "
-"ÓŐÔŘ\n"
-"ŢÁÓÔĎÔÁ ĎÂÎĎ×ĚĹÎÉŃ ×ÓĹÇĎ ÜËŇÁÎÁ, É ŢÔĎ ĹÝĹ ×ÁÖÎĹĹ, ŢÁÓÔĎÔÁ ÇĎŇÉÚĎÎÔÁĚŘÎĎĘ\n"
-"ŇÁÚ×ĹŇÔËÉ, ËĎÔĎŇÁŃ ÓŐÔŘ ŢÁÓÔĎÔÁ ×Ů×ĎÄÁ ÓÔŇĎË ÎÁ ÜËŇÁÎ.\n"
-"\n"
-"üÔĎ ďţĺîř ÷áöîď, ŢÔĎÂŮ × ×ŮÂŇÁÎÎĎÍ ÍĎÎÉÔĎŇĹ ŢÁÓÔĎÔÁ ÓÉÎČŇĎÎÉÚÁĂÉÉ ÎĹ "
-"ĎËÁÚÁĚÁÓŘ\n"
-"×ÎĹ ĆÁËÔÉŢĹÓËÉČ ×ĎÚÍĎÖÎĎÓÔĹĘ ×ÁŰĹÇĎ ÍĎÎÉÔĎŇÁ: ×Ů ÍĎÖĹÔĹ ÉÓĐĎŇÔÉÔŘ ÍĎÎÉÔĎŇ.\n"
-" ĺÓĚÉ ÓĎÍÎĹ×ÁĹÔĹÓŘ - ĚŐŢŰĹ ×ŮÂĹŇÉÔĹ ËĎÎÓĹŇ×ÁÔÉ×ÎŮĹ ŐÓÔÁÎĎ×ËÉ."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "ţÁÓÔĎÔÁ ÇĎŇÉÚĎÎÔÁĚŘÎĎĘ ŇÁÚ×ĹŇÔËÉ"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "ţÁÓÔĎÔÁ ×ĹŇÔÉËÁĚŘÎĎĘ ŇÁÚ×ĹŇÔËÉ"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "íĎÎÉÔĎŇ ÎĹ ÎÁÓÔŇĎĹÎ"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "÷ÉÄĹĎËÁŇÔÁ ĹÝĹ ÎĹ ÎÁÓÔŇĎĹÎÁ"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "ňÁÚŇĹŰĹÎÉĹ ĹÝĹ ÎĹ ×ŮÂŇÁÎĎ"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "čĎÔÉÔĹ ĐŇĎÔĹÓÔÉŇĎ×ÁÔŘ ÎÁÓÔŇĎĘËÉ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"đŇĹÄŐĐŇĹÖÄĹÎÉĹ: ÔĹÓÔÉŇĎ×ÁÎÉĹ ÜÔĎĘ ×ÉÄĹĎËÁŇÔŮ ÍĎÖĹÔ ĐŇÉ×ĹÓÔÉ Ë ÚÁ×ÉÓÁÎÉŔ "
-"ËĎÍĐŘŔÔĹŇÁ"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "đŇĎ×ĹŇËÁ ÎÁÓÔŇĎĹË"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"ĐĎĐŇĎÂŐĘÔĹ ÉÚÍĹÎÉÔŘ ÎĹËĎÔĎŇŮĹ ĐÁŇÁÍĹÔŇŮ"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "úÁ×ĹŇŰĹÎÉĹ ŢĹŇĹÚ %d ÓĹËŐÎÄ"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "üÔÉ ŐÓÔÁÎĎ×ËÉ ×ĹŇÎŮ?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ, ĐĎĐŇĎÂŐĘÔĹ ÉÚÍĹÎÉÔŘ ÎĹËĎÔĎŇŮĹ ĐÁŇÁÍĹÔŇŮ"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "ňÁÚŇĹŰĹÎÉĹ"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "÷ŮÂĎŇ ŇÁÚŇĹŰĹÎÉŃ É ÇĚŐÂÉÎŮ Ă×ĹÔÁ"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "÷ÉÄĹĎËÁŇÔÁ: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "óĹŇ×ĹŇ XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "ĺÝĹ"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "ďË"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "ňĹÖÉÍ üËÓĐĹŇÔ"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "đĎËÁÚÁÔŘ ×ÓĹ"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "ňÁÚŇĹŰĹÎÉŃ"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "ňÁÓËĚÁÄËÁ ËĚÁ×ÉÁÔŐŇŮ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "ôÉĐ ÍŮŰÉ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "íŮŰŘ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "íĎÎÉÔĎŇ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "ţÁÓÔĎÔÁ ÇĎŇ.ŇÁÚ×. ÍĎÎÉÔĎŇÁ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "ţÁÓÔĎÔÁ ×ĹŇÔ.ŇÁÚ×. ÍĎÎÉÔĎŇÁ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "÷ÉÄĹĎËÁŇÔÁ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "÷ÉÄĹĎËÁŇÔÁ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "÷ÉÄĹĎĐÁÍŃÔŘ: %s KB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "çĚŐÂÉÎÁ Ă×ĹÔÁ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "ňÁÚŇĹŰĹÎÉĹ: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "óĹŇ×ĹŇ XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "äŇÁĘ×ĹŇ XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "đĎÄÇĎÔĎ×ËÁ ÎÁÓÔŇĎĹË X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "ţÔĎ ×Ů ČĎÔÉÔĹ ÓÄĹĚÁÔŘ?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "óÍĹÎÉÔĹ ÍĎÎÉÔĎŇ"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "óÍĹÎÉÔĹ ×ÉÄĹĎËÁŇÔŐ"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "óÍĹÎÉÔĹ ĎĐĂÉÉ óĹŇ×ĹŇÁ"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "óÍĹÎÉÔĹ ŇÁÚŇĹŰĹÎÉĹ"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "đĎËÁÚÁÔŘ ÉÎĆĎŇÍÁĂÉŔ"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "đŇĎ×ĹŇÉÔŘ ÓÎĎ×Á"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "÷ŮČĎÄ"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"óĎČŇÁÎÉÔŘ ÉÚÍĹÎĹÎÉŃ?\n"
-"ôĹËŐÝÉĹ ÎÁÓÔŇĎĘËÉ:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X ĐŇÉ ÚÁÇŇŐÚËĹ"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"íĎÖÎĎ ÎÁÓÔŇĎÉÔŘ ÓÉÓÔĹÍŐ ÄĚŃ Á×ÔĎÍÁÔÉŢĹÓËĎÇĎ ÚÁĐŐÓËÁ X ĐĎÓĚĹ ÚÁÇŇŐÚËÉ.\n"
-"čĎÔÉÔĹ, ŢÔĎÂŮ X ÓÔÁŇÔĎ×ÁĚ ĐŇÉ ĐĹŇĹÚÁÇŇŐÚËĹ?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "÷ĎĘÄÉÔĹ ĐĎ×ÔĎŇÎĎ × %s ÄĚŃ ÁËÔÉ×ÁĂÉÉ ÉÚÍĹÎĹÎÉĘ"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "÷ŮĘÄÉÔĹ, Á ÚÁÔĹÍ ÉÓĐĎĚŘÚŐĘÔĹ Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 Ă×ĹÔĎ× (8 ÂÉÔ)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ÔŮÓŃŢÉ Ă×ĹÔĎ× (15 ÂÉÔ)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ÔŮÓŃŢ Ă×ĹÔĎ× (16 ÂÉÔ)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 ÍÉĚĚÉĎÎĎ× Ă×ĹÔĎ× (24 ÂÉÔÁ)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 ÍÉĚĚÉÁŇÄÁ Ă×ĹÔĎ× (32 ÂÉÔÁ)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mb"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB ÉĚÉ ÂĎĚŘŰĹ"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "óÔÁÎÄÁŇÔÎŮĘ VGA, 640x480 ĐŇÉ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 ĐŇÉ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "óĎ×ÍĹÓÔÉÍÁ Ó 8514, 1024x768 ĐŇÉ 87 Hz ŢŇĹÚ-ÓÔŇĎŢÎŮĘ (ÎĹÔ 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ĐŇÉ 87 Hz ŢŇĹÚ-ÓÔŇĎŢÎŮĘ, 800x600 ĐŇÉ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-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:134
-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:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA ÷ŮÓĎËĎĘ ţÁÓÔĎÔŮ, 1024x768 ĐŇÉ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1280x1024 ĐŇÉ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1280x1024 ĐŇÉ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1280x1024 ĐŇÉ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1600x1200 ĐŇÉ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor ÓĐĎÓĎÂÎŮĘ ĐĎÄÄĹŇÖÉ×ÁÔŘ 1600x1200 ĐŇÉ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "đĹŇ×ŮĘ ÓĹËÔĎŇ ÚÁÇŇŐÚĎŢÎĎÇĎ ŇÁÚÄĹĚÁ"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "đĹŇ×ŮĘ ÓĹËÔĎŇ ŐÓÔŇĎĘÓÔ×Á (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "őÓÔÁÎĎ×ËÁ SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "ëŐÄÁ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ÎÁŢÁĚŘÎŮĘ ÚÁÇŇŐÚŢÉË?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "őÓÔÁÎĎ×ËÁ LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO Ó ÔĹËÓÔĎ×ŮÍ ÍĹÎŔ"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO Ó ÇŇÁĆÉŢĹÓËÉÍ ÍĹÎŔ"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "úÁÇŇŐÖÁÔŘÓŃ ÉÚ DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "çĚÁ×ÎŮĹ ĐÁŇÁÍĹÔŇŮ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "÷ŮÂĎŇ ÉÓĐĎĚŘÚŐĹÍĎÇĎ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "őÓÔÁÎĎ×ËÁ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "úÁÇŇŐÚĎŢÎĎĹ ŐÓÔŇĎĘÓÔ×Ď"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ÎĹ ŇÁÂĎÔÁĹÔ ÎÁ ÓÔÁŇŮČ BIOS)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "ëĎÍĐÁËÔÎĎ"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "ËĎÍĐÁËÔÎĎ"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "÷ÉÄĹĎ-ŇĹÖÉÍ"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "úÁÄĹŇÖËÁ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ ĎÂŇÁÚÁ ĐĎ ŐÍĎĚŢÁÎÉŔ"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "đÁŇĎĚŘ"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "đÁŇĎĚŘ (ĹÝĹ ŇÁÚ)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "ďÇŇÁÎÉŢÉÔŘ ĐÁŇÁÍĹÔŇŮ ËĎÍÁÎÄÎĎĘ ÓÔŇĎËÉ"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "ĎÇŇÁÎÉŢÉÔŘ"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "ďŢÉÝÁÔŘ /tmp ĐŇÉ ËÁÖÄĎĘ ÚÁÇŇŐÚËĹ"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "őËÁÖÉÔĹ ÔĎŢÎŮĘ ŇÁÚÍĹŇ RAM (ÎÁĘÄĹÎĎ %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "ňÁÚŇĹŰÉÔŘ ÎĹÓËĎĚŘËĎ ĐŇĎĆÉĚĹĘ"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "úÁÄÁĘÔĹ ŇÁÚÍĹŇ RAM × Mb"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "đŐÎËÔ ``ďÇŇÁÎÉŢÉÔŘ ĎĐĂÉÉ ËĎÍÁÎÄÎĎĘ ÓÔŇĎËÉ'' ÎĹ ÉÓĐĎĚŘÚŐĹÔÓŃ ÂĹÚ ĐÁŇĎĚŃ"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "đĎĐŇĎÂŐĘÔĹ ĹÝĹ ŇÁÚ"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "đÁŇĎĚÉ ÎĹ ÓĎ×ĐÁÄÁŔÔ"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "îÁŢÁĚŘÎĎĹ ÓĎĎÂÝĹÎÉĹ"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "úÁÄĹŇÖËÁ ĎÔËŇŮÔÉŃ Firmware"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "úÁÄĹŇÖËÁ ÚÁÇŇŐÚËÉ ŃÄŇÁ"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "÷ËĚŔŢÉÔŘ ÚÁÇŇŐÚËŐ Ó CD?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "÷ËĚŔŢÉÔŘ ÚÁÇŇŐÚËŐ OF?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "ďĐĹŇÁĂÉĎÎÎÁŃ ÓÉÓÔĹÍÁ ĐĎ ŐÍĎĚŢÁÎÉŔ?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"éÍĹĹÔÓŃ ÎĹÓËĎĚŘËĎ ŇÁÚŮÎČ ĐŐÎËÔĎ×.\n"
-"÷Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ĹÝĹ, ÉĚÉ ÉÚÍĹÎÉÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĹ."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "äĎÂÁ×ÉÔŘ"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "çĎÔĎ×Ď"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "éÚÍĹÎÉÔŘ"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "ëÁËĎĘ ÔÉĐ ĐŐÎËÔÁ ×Ů ČĎÔÉÔĹ ÄĎÂÁ×ÉÔŘ?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "äŇŐÇÁŃ ďó (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "äŇŐÇÁŃ ďó (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "äŇŐÇÁŃ ďó (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "ďÂŇÁÚ"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "äĎÂÁ×ÉÔŘ"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "ţÔĹÎÉĹ-ÚÁĐÉÓŘ"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "ôÁÂĚÉĂÁ"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "îĹÂĹÚĎĐÁÓÎŮĘ"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "íĹÔËÁ"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "őÍĎĚŢÁÎÉĹ"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "ňÁÚÍĹŇ Initrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "âĹÚ ÇŇÁĆÉËÉ"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "őÄÁĚÉÔŘ ĐŐÎËÔ"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "đŐÓÔÁŃ ÍĹÔËÁ ÎĹ ÄĎĐŐÓËÁĹÔÓŃ"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "ő ×ÁÓ ÄĎĚÖĹÎ ÂŮÔŘ ŇÁÚÄĹĚ swap"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "üÔÁ ÍĹÔËÁ ŐÖĹ ÉÓĐĎĚŘÚŐĹÔÓŃ"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "îÁĘÄĹÎŮ %s %s ÉÎÔĹŇĆĹĘÓŮ"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "ĺÓÔŘ ĚÉ Ő ×ÁÓ ÄŇŐÇĎĘ?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "ĺÓÔŘ ĚÉ Ő ×ÁÓ ËÁËÉĹ-ĚÉÂĎ %s ÉÎÔĹŇĆĹĘÓŮ?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "îĹÔ"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "äÁ"
-
-#: ../../any.pm_.c:661
-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:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "őÓÔÁÎĎ×ËÁ ÄŇÁĘ×ĹŇÁ ÄĚŃ %s ËÁŇÔŮ %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(ÍĎÄŐĚŘ %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "ëÁËĎĘ %s ÄŇÁĘ×ĹŇ ÍÎĹ ĐĎĐŇĎÂĎ×ÁÔŘ?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"÷ ÎĹËĎÔĎŇŮČ ÓĚŐŢÁŃČ %s ÄŇÁĘ×ĹŇŐ ÎŐÖÎÁ ÎĹËĎÔĎŇÁŃ ÄĎĐĎĚÎÉÔĹĚŘÎÁŃ ÉÎĆĎŇÍÁĂÉŃ,\n"
-"ČĎÔŃ ĎÂŮŢÎĎ ÜÔĎÇĎ ÎĹ ÔŇĹÂŐĹÔÓŃ. îĹ ČĎÔÉÔĹ ĚÉ ×Ů ÚÁÄÁÔŘ ÄĚŃ ÎĹÇĎ\n"
-" ÄĎĐĎĚÎÉÔĹĚŘÎŮĹ ĐÁŇÁÍĹÔŇŮ ÉĚÉ ĐĎÚ×ĎĚÉÔĹ ÄŇÁĘ×ĹŇŐ ĐŇĎÔĹÓÔÉŇĎ×ÁÔŘ ÍÁŰÉÎŐ\n"
-"× ĐĎÉÓËÁČ ÎĹĎÂČĎÄÉÍĎĘ ÉÎĆĎŇÍÁĂÉÉ? ÷ĎÚÍĎÖÎĎ, ÔĹÓÔÉŇĎ×ÁÎÉĹ ĐĎÄ×ĹÓÉÔ ËĎÍĐŘŔÔĹŇ, "
-"ÎĎ ĎÎĎ \n"
-"ÎĹ ×ŮÚĎ×ĹÔ ÎÉËÁËÉČ ĐĎ×ŇĹÖÄĹÎÉĘ."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "á×ÔĎĐĎÉÓË"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "őËÁÖÉÔĹ ĐÁŇÁÍĹÔŇŮ"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ÚÁÄÁ×ÁÔŘ ĐÁŇÁÍĹÔŇŮ ÄĚŃ ÍĎÄŐĚŃ %s.\n"
-"đÁŇÁÍĹÔŇŮ ÚÁÄÁŔÔÓŃ × ĆĎŇÍÁÔĹ ``ÉÍŃ=ÚÎÁŢĹÎÉĹ ÉÍŃ2=ÚÎÁŢĹÎÉĹ2 ...''.\n"
-"îÁĐŇÉÍĹŇ, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "đÁŇÁÍĹÔŇŮ ÍĎÄŐĚŃ:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"úÁÇŇŐÚËÁ ÍĎÄŐĚŃ %s ÚÁ×ĹŇŰÉĚÁÓŘ ÎĹŐÄÁŢÎĎ.\n"
-"čĎÔÉÔĹ ĐĎĐŇĎÂĎ×ÁÔŘ ĹÝĹ Ó ÄŇŐÇÉÍÉ ĐÁŇÁÍĹÔŇÁÍÉ?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(ŐÖĹ ÄĎÂÁ×ĚĹÎĎ %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "üÔĎÔ ĐÁŇĎĚŘ ÓĚÉŰËĎÍ ĐŇĎÓÔ"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "÷×ĹÄÉÔĹ ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"éÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ ÄĎĚÖÎĎ ÓĎÄĹŇÖÁÔŘ ÂŐË×Ů ÔĎĚŘËĎ × ÎÉÖÎĹÍ ŇĹÇÉÓÔŇĹ, \n"
-"ĂÉĆŇŮ , `-' É `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "üÔĎ ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ ŐÖĹ ÄĎÂÁ×ĚĹÎĎ"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "äĎÂÁ×ÉÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"÷×ĹÓÔÉ ĐĎĚŘÚĎ×ÁÔĹĚŃ\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "đŇÉÎŃÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "îÁÓÔĎŃÝĹĹ ÉÍŃ"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "đĎĚŘÚĎ×ÁÔĹĚŘÓËĎĹ ÉÍŃ"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "ďÂĎĚĎŢËÁ"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "đÉËÔĎÇŇÁÍÍÁ"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "á×ÔĎ-×ČĎÄ"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"íĎÖĹÍ ÎÁÓÔŇĎÉÔŘ ×ÁŰ ËĎÍĐŘŔÔĹŇ ÄĚŃ Á×ÔĎÍÁÔÉŢĹÓËĎÇĎ ×ČĎÄÁ ĎÄÎĎÇĎ "
-"ĐĎĚŘÚĎ×ÁÔĹĚŃ.\n"
-"ĺÓĚÉ ×Ů ÎĹ ČĎÔÉÔĹ ĐĎĚŘÚĎ×ÁÔŘÓŃ ÜÔĎĘ ×ĎÚÍĎÖÎĎÓÔŘŔ, ÎÁÖÍÉÔĹ ÎÁ ËÎĎĐËŐ ďÔÍĹÎÉÔŘ."
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "÷ŮÂĹŇÉÔĹ ĐĎĚŘÚĎ×ÁÔĹĚŃ ĐĎ ŐÍĎĚŢÁÎÉŔ:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "÷ŮÂĹŇÉÔĹ ÍĹÎĹÄÖĹŇ ĎËĎÎ ÄĚŃ ÚÁĐŐÓËÁ:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "őËÁÖÉÔĹ, ËÁËĎĘ ŃÚŮË ÉÓĐĎĚŘÚĎ×ÁÔŘ."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "÷Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÄŇŐÇÉĹ ŃÚŮËÉ, ËĎÔĎŇŮĹ ÂŐÄŐÔ ÄĎÓÔŐĐÎŮ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "÷ÓĹ"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "äĎÂÁ×ÉÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "óĐĹĂÉÁĚŘÎÁŃ"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "úÁĐŐÓËÁĹÔÓŃ CUPS"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"üÔĎÔ ĐÁËĹÔ ÓĚĹÄŐĹÔ ĎÂÎĎ×ÉÔŘ\n"
-"÷Ů Ő×ĹŇĹÎŮ, ŢÔĎ ČĎÔÉÔĹ ĎÔÍĹÎÉÔŘ ĹÇĎ ×ŮÂĎŇ?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "ďÔÍĹÎÁ"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "äĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ × Crackers"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "óĚÁÂŮĘ"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "óÔÁÎÄÁŇÔÎÁŃ"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "÷ŮÓĎËÉĘ"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "÷ŮÓĎËÉĘ"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "đÁŇÁÎĎÉÄÁĚŘÎŮĘ"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"üÔĎÔ ŐŇĎ×ĹÎŘ ÎÁÄĎ ÉÓĐĎĚŘÚĎ×ÁÔŘ Ó ĎÓÔĎŇĎÖÎĎÓÔŘŔ. óÉÓÔĹÍÁ ÓÔÁÎĎ×ÉÔÓŃ\n"
-"ĐŇĎÝĹ × ÉÓĐĎĚŘÚĎ×ÁÎÉÉ, ÎĎ ÂĎĚĹĹ ŢŐ×ÓÔ×ÉÔĹĚŘÎĎĘ: ÜÔĎÔ ŐŇĎ×ĹÎŘ ÎĹ ÓĚĹÄŐĹÔ "
-"ÉÓĐĎĚŘÚĎ×ÁÔŘ\n"
-"ÎÁ ÍÁŰÉÎÁČ, ĐĎÄËĚŔŢĹÎÎŮÍ Ë ÓĹÔÉ ÉĚÉ Ë Internet. ÷ČĎÄ ÎĹ ÚÁÝÉÝĹÎ ĐÁŇĎĚĹÍ."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"đÁŇĎĚÉ ÔĹĐĹŇŘ ×ËĚŔŢĹÎŮ, ÎĎ ÉÓĐĎĚŘÚĎ×ÁÎÉĹ ËĎÍĐŘŔÔĹŇÁ × ËÁŢĹÓÔ×Ĺ ÓĹÔĹ×ĎÇĎ\n"
-"ĐĎ-ĐŇĹÖÎĹÍŐ ÎĹ ŇĹËĎÍĹÎÄŐĹÔÓŃ."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"üÔĎ ÓÔÁÎÄÁŇÔÎÁŃ ÂĹÚĎĐÁÓÎĎÓÔŘ, ŇĹËĎÍĹÎÄŐĹÍÁŃ ÄĚŃ ËĎÍĐŘŔÔĹŇÁ,\n"
-"ĐĎÄÓĎĹÄÉÎĹÎÎĎÇĎ Ë Internet × ËÁŢĹÓÔ×Ĺ ËĚÉĹÎÔÁ. äĎÂÁ×ĚĹÎŮ ÎĎ×ŮĹ ĐŇĎ×ĹŇËÉ\n"
-"ÎÁ ÂĹÚĎĐÁÓÎĎÓÔŘ."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"îÁ ÜÔĎÍ ŐŇĎ×ÎĹ ÂĹÚĎĐÁÓÎĎÓÔÉ ÓÔÁÎĎ×ÉÔÓŃ ×ĎÚÍĎÖÎŮÍ ÉÓĐĎĚŘÚĎ×ÁÎÉĹ ÓÉÓÔĹÍŮ\n"
-"× ËÁŢĹÓÔ×Ĺ ÓĹŇ×ĹŇÁ. âĹÚĎĐÁÓÎĎÓÔŘ ÔĹĐĹŇŘ ÄĎÓÔÁÔĎŢÎĎ ×ŮÓĎËÁ ÄĚŃ ŇÁÂĎÔŮ\n"
-"ÓĹŇ×ĹŇÁ, ÄĎĐŐÓËÁŔÝĹÇĎ ÓĎĹÄÉÎĹÎÉŃ ÓĎ ÍÎĎÇÉÍÉ ËĚÉĹÎÔÁÍÉ."
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"íŮ ĐŇÉÎŃĚÉ ÎÁÓÔŇĎĘËÉ ŢĹÔ×ĹŇÔĎÇĎ ŐŇĎ×ÎŃ ÂĹÚĎĐÁÓÎĎÓÔÉ, ÎĎ ÔĹĐĹŇŘ ÓÉÓÔĹÍÁ "
-"ĐĎĚÎĎÓÔŘŔ ÚÁËŇŮÔÁ.\n"
-"đÁŇÁÍĹÔŇŮ ÂĹÚĎĐÁÓÎĎÓÔÉ ŐÓÔÁÎĎ×ĚĹÎŮ ÎÁ ÍÁËÓÉÍŐÍ."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "őŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ"
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "îÁÓÔŇĎĘËÁ ŐŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "÷ŮÂĹŇÉÔĹ ĎĐĂÉÉ ÄĚŃ ÓĹŇ×ĹŇÁ"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"äĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ %s ÄÉÓĐĹÔŢĹŇ ĎĐĹŇÁĂÉĎÎÎĎĘ ÓÉÓÔĹÍŮ!\n"
-"\n"
-"÷ŮÂĹŇÉÔĹ ĎĐĹŇÁĂÉĎÎÎŐŔ ÓÉÓÔĹÍŐ ÉÚ ÓĐÉÓËÁ ÉĚÉ\n"
-"ĐĎÄĎÖÄÉÔĹ %d ÓĹËŐÎÄ ÄĚŃ ÚÁÇŇŐÚËÉ ÓÉÓÔĹÍŮ, ŐËÁÚÁÎÎĎĘ ĐĎ ŐÍĎĚŢÁÎÉŔ.\n"
-"\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "äĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ × GRUB, ÄÉÓĐĹÔŢĹŇ ĎĐĹŇÁĂÉĎÎÎĎĘ ÓÉÓÔĹÍŮ!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "éÓĐĎĚŘÚŐĘÔĹ ËĚÁ×ÉŰÉ %c É %c ÄĚŃ ×ŮÄĹĚĹÎÉŃ ĐŐÎËÔÁ."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "îÁÖÍÉÔĹ enter ÄĚŃ ÚÁÇŇŐÚËÉ ×ŮÂŇÁÎÎĎĘ ďó, 'e' ÄĚŃ ŇĹÄÁËÔÉŇĎ×ÁÎÉŃ"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "ËĎÍÁÎÄ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ, ÉĚÉ 'c' ÄĚŃ ŇĹÖÉÍÁ ËĎÍÁÎÄÎĎĘ ÓÔŇĎËÉ."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "÷ŮÂŇÁÎÎŮĘ ĐŐÎËÔ ÂŐÄĹÔ ÚÁÇŇŐÖĹÎ Á×ÔĎÍÁÔÉŢĹÓËÉ ŢĹŇĹÚ %d ÓĹËŐÎÄ."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "ÎĹ Č×ÁÔÁĹÔ ÍĹÓÔÁ × /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "ňÁÂĎŢÉĘ ÓÔĎĚ"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "óÔÁŇÔĎ×ĎĹ ÍĹÎŔ"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "ëŐÄÁ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ÎÁŢÁĚŘÎŮĘ ÚÁÇŇŐÚŢÉË?"
-
-#: ../../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 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_ćÁĘĚ"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/ćÁĘĚ/_÷ŮČĎÄ"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "íĎÎÉÔĎŇ ËÁÔĹÇĎŇÉÉ NewStyle"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "NewStyle íĎÎÉÔĎŇ"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "ôŇÁÄÉĂÉĎÎÎŮĘ ÍĎÎÉÔĎŇ"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "ôŇÁÄÉĂÉĎÎÎŮĘ Gtk+ ÍĎÎÉÔĎŇ"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "úÁĐŐÓËÁÔŘ Aurora ĐŇÉ ÚÁÇŇŐÚËĹ"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "ňĹÖÉÍ Lilo/grub"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "ňĹÖÉÍ Yaboot"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"÷ ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×Ů ÉÓĐĎĚŘÚŐĹÔĹ %s × ËÁŢĹÓÔ×Ĺ ÍĹÎĹÄÖĹŇÁ ÚÁÇŇŐÚËÉ.\n"
-"÷ŮÂĹŇÉÔĹ ĐŐÎËÔ îÁÓÔŇĎĘËÁ ÄĚŃ ÚÁĐŐÓËÁ ÍÁÓÔĹŇÁ ÎÁÓÔŇĎĘËÉ."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "îÁÓÔŇĎĘËÁ"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "óÉÓÔĹÍÎŮĘ ŇĹÖÉÍ"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "úÁĐŐÓËÁÔŘ X-Window ĐŇÉ ÎÁŢÁĚĹ ŇÁÂĎÔŮ"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "îĹÔ, Ń ÎĹ ČĎŢŐ ÉÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎÍÁÔÉŢĹÓËÉĘ ×ČĎÄ × ÓÉÓÔĹÍŐ"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-"äÁ, Ń ČĎŢŐ ÉÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎÍÁÔÉŢĹÓËÉĘ ×ČĎÄ × ÓÉÓÔĹÍŐ Ó ÜÔÉÍÉ (user, desktop)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ÄĚŃ ŢÔĹÎÉŃ /etc/inittab : %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "Gb"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "Kb"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "Mb"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "Tb"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d ÍÉÎŐÔ"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 ÍÉÎŐÔÁ"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d ÓĹËŐÎÄ"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "äĎÂÁ×ĚĹÎÉĹ ÎĎ×ŮČ ŇÁÚÄĹĚĎ× ÎĹ×ĎÚÍĎÖÎĎ"
-
-#: ../../common.pm_.c:166
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "÷Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÄŇŐÇÉĹ ŃÚŮËÉ, ËĎÔĎŇŮĹ ÂŐÄŐÔ ÄĎÓÔŐĐÎŮ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "France"
-msgstr "ćŇÁÎĂŐÚÓËÉĘ"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-#, fuzzy
-msgid "Belgium"
-msgstr "âĹĚŘÇÉĘÓËÉĘ"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-#, fuzzy
-msgid "Germany"
-msgstr "îĹÍĹĂËÉĘ"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "çŇĹŢĹÓËÉĘ"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Norway"
-msgstr "îĎŇ×ĹÖÓËÉĘ"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Sweden"
-msgstr "ű×ĹÄÓËÉĘ"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "éÔÁĚŘŃÎÓËÉĘ"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
-msgid "Austria"
-msgstr "ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎÁŃ"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "đŇĹÖÄĹ ×ÓĹÇĎ ÓÄĹĚÁĘÔĹ ŇĹÚĹŇ×ÎŐŔ ËĎĐÉŔ ÄÁÎÎŮČ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "ţÉÔÁĘÔĹ ×ÎÉÍÁÔĹĚŘÎĎ!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"ĺÓĚÉ ĐĚÁÎÉŇŐĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ aboot, ĎÓÔÁ×ŘÔĹ Ó×ĎÂĎÄÎĎĹ ÍĹÓÔĎ (2048 ÓĹËÔĎŇĎ× "
-"ÂŐÄĹÔ ÄĎÓÔÁÔĎŢÎĎ)\n"
-"× ÎÁŢÁĚĹ ÄÉÓËÁ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "ďŰÉÂËÁ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "íÁÓÔĹŇ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "÷ŮÂĹŇÉÔĹ ÄĹĘÓÔ×ÉĹ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"ő ×ÁÓ ĹÓÔŘ ÔĎĚŘËĎ ÂĎĚŘŰĎĘ ŇÁÚÄĹĚ FAT\n"
-"(ĎÂŮŢÎĎ ÉÓĐĎĚŘÚŐĹÍŮĘ MicroSoft Dos/Windows).\n"
-"đŇĹÄĚÁÇÁŔ ĐŇĹÖÄĹ ×ÓĹÇĎ ÉÚÍĹÎÉÔŘ ŇÁÚÍĹŇ ŇÁÚÄĹĚÁ\n"
-"(ËĚÉËÎÉÔĹ ÎÁ ÎĹÇĎ, Á ÚÁÔĹÍ ÎÁ \"éÚÍĹÎÉÔŘ ŇÁÚÍĹŇ\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "đĎÖÁĚŐĘÓÔÁ ÎÁÖÍÉÔĹ ÎÁ ŇÁÚÄĹĚ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "đĎÄŇĎÂÎĎÓÔÉ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "ĎŰÉÂËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "đŐÓÔĎ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "äŇŐÇÉĹ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "ôÉĐŮ ĆÁĘĚĎ×ŮČ ÓÉÓÔĹÍ:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "óĎÚÄÁÔŘ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "ôÉĐ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "÷ÍĹÓÔĎ ÜÔĎÇĎ ÉÓĐĎĚŘÚŐĘÔĹ ``%s'' "
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "őÄÁĚÉÔŘ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "óÎÁŢÁĚÁ ÓÄĹĚÁĘÔĹ ``ďÔÍĎÎÔÉŇĎ×ÁÔŘ''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"đĎÓĚĹ ÉÚÍĹÎĹÎÉŃ ÔÉĐÁ ŇÁÚÄĹĚÁ %s, ×ÓĹ ÄÁÎÎŮĹ × ÜÔĎÍ ŇÁÚÄĹĚĹ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "÷ŮÂĹŇÉÔĹ ÄĹĘÓÔ×ÉĹ"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "óĎÚÄÁÔŘ ÎĎ×ŮĘ ŇÁÚÄĹĚ"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "đĹŇĹËĚŔŢĹÎÉĹ × ŇĹÖÉÍ üËÓĐĹŇÔ"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "đĹŇĹËĚŔŢĹÎÉĹ × ŇĹÖÉÍ îĎŇÍÁĚŘÎĎ"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "ďÔËÁÔ"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "÷ÓĹ-ÔÁËÉ ĐŇĎÄĎĚÖÁÔŘ?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "÷ŮĘÔÉ ÂĹÚ ÓĎČŇÁÎĹÎÉŃ"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "÷ŮĘÔÉ ÂĹÚ ÚÁĐÉÓÉ ÔÁÂĚÉĂŮ ŇÁÚÄĹĚĎ×?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "čĎÔÉÔĹ ĐŇĎÔĹÓÔÉŇĎ×ÁÔŘ ÎÁÓÔŇĎĘËÉ?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "ňÁÚÍĹÓÔÉÔŘ Á×ÔĎÍÁÔÉŢĹÓËÉ"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "ďŢÉÓÔÉÔŘ ×ÓĹ"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "ďĐŇĹÄĹĚĹÎÉĹ ÖĹÓÔËĎÇĎ ÄÉÓËÁ"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "÷ÓĹ ĐĹŇ×ÉŢÎŮĹ ŇÁÚÄĹĚŮ ŐÖĹ ÉÓĐĎĚŘÚĎ×ÁÎŮ"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "äĎÂÁ×ĚĹÎÉĹ ÎĎ×ŮČ ŇÁÚÄĹĚĎ× ÎĹ×ĎÚÍĎÖÎĎ"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"ţÔĎÂŮ ĐĎĚŐŢÉÔŘ ÂĎĚŘŰĹ ŇÁÚÄĹĚĎ×, ŐÄÁĚÉÔĹ ĎÄÉÎ, ŢÔĎÂŮ ĐĎĚŐŢÉÔŘ ×ĎÚÍĎÖÎĎÓÔŘ "
-"ÓĎÚÄÁÔŘ ŇÁŰÉŇĹÎÎŮĘ ŇÁÚÄĹĚ"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "úÁĐÉÓÁÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "úÁĐÁÓÎÁŃ ÔÁÂĚÉĂÁ ŇÁÚÄĹĚĎ×"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "úÁĐÁÓÎÁŃ ÔÁÂĚÉĂÁ ŇÁÚÄĹĚĎ×"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "úÁĐÁÓÎÁŃ ÔÁÂĚÉĂÁ ŇÁÚÄĹĚĎ×"
-
-#: ../../diskdrake/interactive.pm_.c:304
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "á×ÔĎÍĎÎÔÉŇĎ×ÁÎÉĹ ÓßĹÍÎŮČ ÎĎÓÉÔĹĚĹĘ"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "÷ŮÂĹŇÉÔĹ ĆÁĘĚ"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"ňĹÚĹŇ×ÎÁŃ ÔÁÂĚÉĂÁ ŇÁÚÄĹĚĎ× ÄÉÓËÁ ÉÍĹĹÔ ÄŇŐÇĎĘ ŇÁÚÍĹŇ\n"
-"÷ÓĹ-ÔÁËÉ ĐŇĎÄĎĚÖÉÔŘ?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "÷ÎÉÍÁÎÉĹ"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"÷ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ\n"
-"÷ÓĹ ÄÁÎÎŮĹ ÎÁ ÜÔĎĘ ÄÉÓËĹÔĹ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "đŇĎÂŐĹÍ ×ĎÓÓÔÁÎĎ×ÉÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×"
-
-#: ../../diskdrake/interactive.pm_.c:352
-#, fuzzy
-msgid "Detailed information"
-msgstr "đĎËÁÚÁÔŘ ÉÎĆĎŇÍÁĂÉŔ"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "ôĎŢËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "đÁŇÁÍĹÔŇŮ"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "éÚÍĹÎÉÔŘ ŇÁÚÍĹŇ"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "đĹŇĹÍĹÓÔÉÔŘ"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "ćĎŇÍÁÔÉŇĎ×ÁÔŘ"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "íĎÎÔÉŇĎ×ÁÎÉĹ"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "äĎÂÁ×ÉÔŘ Ë RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "äĎÂÁ×ÉÔŘ Ë LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "ďÔÍĎÎÔÉŇĎ×ÁÔŘ"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "őÄÁĚÉÔŘ ÉÚ RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "őÄÁĚÉÔŘ ÉÚ LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "éÚÍĹÎÉÔŘ RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "óĎÚÄÁÔŘ ÎĎ×ŮĘ ŇÁÚÄĹĚ"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "îÁŢÁĚŘÎŮĘ ÓĹËÔĎŇ: "
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "ňÁÚÍĹŇ × MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "ôÉĐ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "ôĎŢËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ:"
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "đŇĹÄĐĎŢÔĹÎÉĹ: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ ĆÁĘĚÁ loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "éÚÍĹÎÉÔŘ ÔÉĐ ŇÁÚÄĹĚÁ"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "ëÁËŐŔ ĆÁĘĚĎ×ŐŔ ÓÉÓÔĹÍŐ ×Ů ČĎÔÉÔĹ?"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "ëŐÄÁ ×Ů ČĎÔÉÔĹ ĐŇÉÍĎÎÔÉŇĎ×ÁÔŘ loopback ĆÁĘĚ %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "ëŐÄÁ ×Ů ČĎÔÉÔĹ ĐŇÉÍĎÎÔÉŇĎ×ÁÔŘ ŐÓÔŇĎĘÓÔ×Ď %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"îĹ ÍĎÇŐ ĎÔÍĹÎÉÔŘ ÔĎŢËŐ ÍĎÎÔÉŇĎ×ÁÎÉŃ, ĐĎÓËĎĚŘËŐ ÜÔĎÔ ŇÁÚÄĹĚ ÚÁÄĹĘÓÔ×Ď×ÁÎ ÄĚŃ "
-"loop back. óÎÁŢÁĚÁ ŐÂĹŇÉÔĹ loopback"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "÷ŮŢÉÓĚĹÎÉĹ ÇŇÁÎÉĂ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ FAT"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "éÚÍĹÎĹÎÉĹ ŇÁÚÍĹŇÁ"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "ňÁÚÍĹŇ ÜÔĎÇĎ ŇÁÚÄĹĚÁ ÎĹĚŘÚŃ ÉÚÍĹÎÉÔŘ"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "äĚŃ ×ÓĹČ ÄÁÎÎŮČ × ÜÔĎÍ ŇÁÚÄĹĚĹ ÄĎĚÖÎÁ ÂŮÔŘ ÓÄĹĚÁÎÁ ŇĹÚĹŇ×ÎÁŃ ËĎĐÉŃ"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"đĎÓĚĹ ÉÚÍĹÎĹÎÉŃ ŇÁÚÍĹŇÁ ŇÁÚÄĹĚÁ %s ×ÓĹ ÄÁÎÎŮĹ × ÜÔĎÍ ŇÁÚÄĹĚĹ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "÷ŮÂŇÁÔŘ ÎĎ×ŮĘ ŇÁÚÍĹŇ"
-
-#: ../../diskdrake/interactive.pm_.c:622
-#, fuzzy
-msgid "New size in MB: "
-msgstr "ňÁÚÍĹŇ × MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "îÁ ËÁËĎĘ ÄÉÓË ČĎÔÉÔĹ ĐĹŇĹÍĹÓÔÉÔŘ?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "óĹËÔĎŇ"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "îÁ ËÁËĎĘ ÓĹËÔĎŇ ČĎÔÉÔĹ ĐĹŇĹÍĹÓÔÉÔŘ?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "đĹŇĹÍĹÝĹÎÉĹ"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "đĹŇĹÍĹÝĹÎÉĹ ŇÁÚÄĹĚÁ..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "÷ŮÂĹŇÉÔĹ ÓŐÝĹÓÔ×ŐŔÝÉĘ RAID ÄĚŃ ÄĎÂÁ×ĚĹÎÉŃ"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "ÎĎ×ŮĘ"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "÷ŮÂĹŇÉÔĹ ÓŐÝĹÓÔ×ŐŔÝÉĘ LVM ÄĚŃ ÄĎÂÁ×ĚĹÎÉŃ"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "éÍŃ LVM?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "üÔĎÔ ŇÁÚÄĹĚ ÎĹĚŘÚŃ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ loopback"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "éÍŃ ĆÁĘĚÁ loopback: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-#, fuzzy
-msgid "Give a file name"
-msgstr "îÁÓÔĎŃÝĹĹ ÉÍŃ"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "ćÁĘĚ ŐÖĹ ÉÓĐĎĚŘÚŐĹÔÓŃ ÄŇŐÇÉÍ loopback, ×ŮÂĹŇÉÔĹ ÄŇŐÇĎĘ ĆÁĘĚ."
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "ćÁĘĚ ŐÖĹ ÓŐÝĹÓÔ×ŐĹÔ. éÓĐĎĚŘÚĎ×ÁÔŘ ĹÇĎ?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-#, fuzzy
-msgid "Mount options"
-msgstr "đÁŇÁÍĹÔŇŮ ÍĎÄŐĚŃ:"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "ŐÓÔŇĎĘÓÔ×Ď"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "ŐŇĎ×ĹÎŘ"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "ŇÁÚÍĹŇ chunk"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "ďÓÔĎŇĎÖÎĎ: ÜÔÁ ĎĐĹŇÁĂÉŃ ĎĐÁÓÎÁ."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "ëÁËĎĘ ÔÉĐ ŇÁÚÂÉĹÎÉŃ ÎÁ ŇÁÚÄĹĚŮ?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ÎÁ ÄÉÓËĹ (ÎÁ ĂÉĚÉÎÄŇĹ > 1024).\n"
-"ěÉÂĎ ×Ů ÉÓĐĎĚŘÚŐĹÔĹ LILO - ÔĎÇÄÁ ÜÔĎ ÎĹ ÂŐÄĹÔ ŇÁÂĎÔÁÔŘ, ĚÉÂĎ LILO ÎĹ "
-"ÉÓĐĎĚŘÚŐĹÔÓŃ, É ÔĎÇÄÁ /boot ÎĹ ÎŐÖĹÎ."
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"ňÁÚÄĹĚ, ×ŮÂŇÁÎÎŮĘ ×ÁÍÉ ÄĚŃ ÄĎÂÁ×ĚĹÎÉŃ × ËÁŢĹÓÔ×Ĺ ËĎŇÎĹ×ĎÇĎ (/) ĆÉÚÉŢĹÓËÉ "
-"ŇÁÓĐĎĚĎÖĹÎ ĐĎÓĚĹ\n"
-"1024-ÇĎ ĂÉĚÉÎÄŇÁ ÖĹÓÔËĎÇĎ ÄÉÓËÁ, Á Ő ×ÁÓ ÎĹÔ ŇÁÚÄĹĚÁ /boot .\n"
-"ĺÓĚÉ ÂŐÄĹÔ ÉÓĐĎĚŘÚĎ×ÁÔŘÓŃ ÄÉÓĐĹÔŢĹŇ ÚÁÇŇŐÚËÉ LILO, ÎĹ ÚÁÂŐÄŘÔĹ ÄĎÂÁ×ÉÔŘ "
-"ŇÁÚÄĹĚ /boot"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"÷Ů ×ŮÂŇÁĚÉ ŇÁÚÄĹĚ ĐŇĎÇŇÁÍÍÎĎÇĎ RAID × ËÁŢĹÓÔ×Ĺ ËĎŇÎĹ×ĎÇĎ (/).\n"
-"îÉËÁËĎĘ ÚÁÇŇŐÚŢÉË ÎĹ ÓÍĎÖĹÔ ÜÔĎ ĎÂŇÁÂĎÔÁÔŘ ÂĹÚ ŇÁÚÄĹĚÁ /boot.\n"
-"ôÁË ŢÔĎ ÎĹ ÚÁÂŐÄŘÔĹ ÄĎÂÁ×ÉÔŘ ŇÁÚÄĹĚ /boot"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "ôÁÂĚÉĂÁ ŇÁÚÄĹĚĎ× ŐÓÔŇĎĘÓÔ×Á %s ÂŐÄĹÔ ÚÁĐÉÓÁÎÁ ÎÁ ÄÉÓË!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "ţÔĎÂŮ ÉÚÍĹÎĹÎÉŃ ĎÓŐÝĹÓÔ×ÉĚÉÓŘ, ÎĹĎÂČĎÄÉÍĎ ĐĹŇĹÚÁÇŇŐÚÉÔŘÓŃ"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"đĎÓĚĹ ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ ŇÁÚÄĹĚÁ %s, ×ÓĹ ÄÁÎÎŮĹ × ÜÔĎÍ ŇÁÚÄĹĚĹ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ ĆÁĘĚÁ loopback %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ ŇÁÚÄĹĚÁ %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid ÎĹ ÓŇÁÂĎÔÁĚ"
-
-#: ../../diskdrake/interactive.pm_.c:984
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "îĹÄĎÓÔÁÔĎŢÎĎ Ó×ĎÂĎÄÎĎÇĎ ÍĹÓÔÁ ÄĚŃ ŇÁÚÍĹÝĹÎÉŃ ÎĎ×ŮČ ŇÁÚÄĹĚĎ×"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:996
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "îĹÄĎÓÔÁÔĎŢÎĎ Ó×ĎÂĎÄÎĎÇĎ ÍĹÓÔÁ ÄĚŃ ŇÁÚÍĹÝĹÎÉŃ ÎĎ×ŮČ ŇÁÚÄĹĚĎ×"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "ňÁÚŇĹŰĹÎÉĹ: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "őÓÔŇĎĘÓÔ×Ď: "
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "ÂŐË×Á ÄĚŃ DOS-ÄÉÓËÁ: %s (ÎÁŐÇÁÄ)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "ôÉĐ: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "éÍŃ: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "îÁŢÁĚĎ: ÓĹËÔĎŇ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "ňÁÚÍĹŇ: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s ÓĹËÔĎŇĎ×"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "ó ĂÉĚÉÎÄŇÁ %d ĐĎ ĂÉĚÉÎÄŇ %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "ďÔĆĎŇÍÁÔÉŇĎ×ÁÎĎ\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "îĹ ĎÔĆĎŇÍÁÔÉŇĎ×ÁÎĎ\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "đŇÉÍĎÎÔÉŇĎ×ÁÎĎ\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Loopback ĆÁĘĚ(Ů): %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"ňÁÚÄĹĚ, ÚÁÇŇŐÖÁĹÍŮĘ ĐĎ ŐÍĎĚŢÁÎÉŔ\n"
-" (ÄĚŃ ÚÁÇŇŐÚËÉ MS-DOS, ÎĹ ÄĚŃ lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "őŇĎ×ĹÎŘ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "ňÁÚÍĹŇ Óhunk %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "äÉÓËÉ RAID %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "éÍŃ ĆÁĘĚÁ Loopback: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"ĺÓÔŘ ×ĹŇĎŃÔÎĎÓÔŘ, ŢÔĎ ÜÔĎÔ ŇÁÚÄĹĚ\n"
-"Ń×ĚŃĹÔÓŃ ŇÁÚÄĹĚĎÍ ÄŇÁĘ×ĹŇÁ, ×ĎÚÍĎÖÎĎ,\n"
-"×ÁÍ ÎĹ ÓĚĹÄŐĹÔ ĹÇĎ ÔŇĎÇÁÔŘ.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"üÔĎÔ ÓĐĹĂÉÁĚŘÎŮĘ Bootstrap\n"
-"ŇÁÚÄĹĚ ĐŇĹÄÎÁÚÎÁŢĹÎ\n"
-"ÄĚŃ ×ĎÚÍĎÖÎĎÓÔÉ ÚÁÇŇŐÚËÉ Ä×ŐČ ĎĐ.ÓÉÓÔĹÍ.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "ňÁÚÍĹŇ: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "çĹĎÍĹÔŇÉŃ: %s ĂÉĚÉÎÄŇĎ×, %s ÇĎĚĎ×ĎË, %s ÓĹËÔĎŇĎ×\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "éÎĆĎŇÍÁĂÉŃ: "
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-ÄÉÓËÉ %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "ôÉĐ ÔÁÂĚÉĂŮ ŇÁÚÄĹĚĎ×: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "ÎÁ ŰÉÎĹ %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "đÁŇÁÍĹÔŇŮ: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "ôÉĐ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ: "
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "üÔĎÔ ĐÁŇĎĚŘ ÓĚÉŰËĎÍ ĐŇĎÓÔ (ĹÇĎ ÄĚÉÎÁ ÄĎĚÖÎÁ ÂŮÔŘ ÎĹ ÍĹÎĹĹ %d ÓÉÍ×ĎĚĎ×)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "đÁŇĎĚÉ ÎĹ ÓĎ×ĐÁÄÁŔÔ"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "éÚÍĹÎÉÔŘ ÔÉĐ ŇÁÚÄĹĚÁ"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
-msgid "Please click on a media"
-msgstr "đĎÖÁĚŐĘÓÔÁ ÎÁÖÍÉÔĹ ÎÁ ŇÁÚÄĹĚ"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "DNS ÓĹŇ×ĹŇ"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s ĎŰÉÂËÁ ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ %s"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "îĹ ÚÎÁŔ ËÁË ĆĎŇÍÁÔÉŇĎ×ÁÔŘ %s Ó ÔÉĐĎÍ %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "ĎŰÉÂËÁ ĎÔÍĎÎÔÉŇĎ×ÁÎÉŃ %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "ĐŇĎÓÔĎĘ"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "ÓĹŇ×ĹŇ"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "÷Ů ÎĹ ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ JFS ÎÁ ŇÁÚÄĹĚÁČ ÍĹÎŘŰĹ 16MB"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "÷Ů ÎĹ ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ReiserFS ÎÁ ŇÁÚÄĹĚÁČ ÍĹÎŘŰĹ 32MB"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "ôĎŢËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ ÄĎĚÖÎÁ ÎÁŢÉÎÁÔŘÓŃ Ó /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "őÖĹ ĹÓÔŘ ŇÁÚÄĹĚ Ó ÔĎŢËĎĘ ÍĎÎÔÉŇĎ×ÁÎÉŃ %s\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "÷Ů ÎĹ ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ěĎÇÉŢĹÓËÉĘ ôĎÍ LVM ÄĚŃ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "üÔÁ ÄÉŇĹËÔĎŇÉŃ ÄĎĚÖÎÁ ĎÓÔÁ×ÁÔŘÓŃ ×ÎŐÔŇÉ ËĎŇÎĹ×ĎĘ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"äĚŃ ÜÔĎĘ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ ÎŐÖÎÁ ŇĹÁĚŘÎÁŃ ĆÁĘĚĎ×ÁŃ ÓÉÓÔĹÍÁ (ext2, "
-"reiserfs)\n"
-
-#: ../../fsedit.pm_.c:488
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "÷Ů ÎĹ ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ěĎÇÉŢĹÓËÉĘ ôĎÍ LVM ÄĚŃ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ %s"
-
-#: ../../fsedit.pm_.c:546
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "îĹÄĎÓÔÁÔĎŢÎĎ Ó×ĎÂĎÄÎĎÇĎ ÍĹÓÔÁ ÄĚŃ Á×ÔĎ-ŇÁÚÍĹÝĹÎÉŃ"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr ""
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "ďŰÉÂËÁ ĎÔËŇŮÔÉŃ %s ÄĚŃ ÚÁĐÉÓÉ: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ: ÎĹ ÎÁĘÄĹÎŮ ŐÓÔŇĎĘÓÔ×Á ÄĚŃ ÓĎÚÄÁÎÉŃ ÎĎ×ŮČ ĆÁĘĚĎ×ŮČ ÓÉÓÔĹÍ. "
-"đŇĎ×ĹŇŘÔĹ ĎÂĎŇŐÄĎ×ÁÎÉĹ ÄĚŃ ×ŮŃÓÎĹÎÉŃ ×ĹŇĎŃÔÎĎĘ ĐŇÉŢÉÎŮ."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "ő ×ÁÓ ÎĹ ÓĎÚÄÁÎĎ ÎÉËÁËÉČ ŇÁÚÄĹĚĎ×!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-#, fuzzy
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"÷ŮŰĹ ĐĹŇĹŢÉÓĚĹÎŮ ÓŐÝĹÓÔ×ŐŔÝÉĹ ŇÁÚÄĹĚŮ Linux, ĎÂÎÁŇŐÖĹÎÎŮĹ ÎÁ\n"
-"×ÁŰĹÍ ÖĹÓÔËĎÍ ÄÉÓËĹ. ÷Ů ÍĎÖĹÔĹ ĎÓÔÁ×ÉÔŘ ÉÚÍĹÎĹÎÉŃ, ÓÄĹĚÁÎÎŮĹ ÍÁÓÔĹŇĎÍ, "
-"ĎÂŮŢÎĎ ĎÎÉ ĐĎÄČĎÄŃÔ \n"
-". ĺÓĚÉ ×Ů ÉČ ÉÚÍĹÎÉÔĹ, ÷Ů ÄĎĚÖÎŮ ËÁË ÍÉÍÎÉÍŐÍ ÚÁÄÁÔŘ ËĎŇÎĹ×ĎĘ (root)\n"
-"ŇÁÚÄĹĚ (\"/\"). îĹ ÄĹĚÁĘÔĹ ĹÇĎ ÓĚÉŰËĎÍ ÍÁĚĹÎŘËÉÍ, ÉÎÁŢĹ ×Ů ÎĹ ÓÍĎÖĹÔĹ "
-"ŐÓÔÁÎĎ×ÉÔŘ ×ÓĹ ÎŐÖÎŮĹ ĐŇĎÇŇÁÍÍŮ \n"
-". ĺÓĚÉ ×Ů ČĎÔÉÔĹ ČŇÁÎÉÔŘ ÷ÁŰÉ ÄÁÎÎŮĹ ÎÁ ĎÔÄĹĚŘÎĎÍ ŇÁÚÄĹĚĹ ÷ÁÍ ÔÁËÖĹ,\n"
-"ĐĎÔŇĹÂŐĹÔÓŃ ×ŮÂŇÁÔŘ \"/home\" (ÜÔĎ ×ĎÚÍĎÖÎĎ ĚÉŰŘ × ÔĎÍ ÓĚŐŢÁĹ, ËĎÇÄÁ Ő ÷ÁÓ "
-"ĹÓÔŘ\n"
-"ÂĎĚĹĹ ĎÄÎĎÇĎ ŇÁÚÄĹĚÁ Linux).\n"
-"\n"
-"\n"
-"äĚŃ ÓĐŇÁ×ËÉ - ËÁÖÄŮĘ ŇÁÚÄĹĚ ĎĐÉÓŮ×ÁĹÔÓŃ ÓĚĹÄŐŔÝÉÍ ĎÂŇÁÚĎÍ: \"éÍŃ\", \"ĺÍËĎÓÔŘ"
-"\".\n"
-"\n"
-"\n"
-"\"éÍŃ\" ĎĐÉÓŮ×ÁĹÔÓŃ ÓĚĹÄŐŔÝÉÍ ĎÂŇÁÚĎÍ: \"ÔÉĐ ÖĹÓÔËĎÇĎ ÄÉÓËÁ\", \"ÎĎÍĹŇ "
-"ÖĹÓÔËĎÇĎ ÄÉÓËÁ\",\n"
-"\"ÎĎÍĹŇ ŇÁÚÄĹĚÁ\" (ÎÁĐŇÉÍĹŇ, \"hda1\").\n"
-"\n"
-"\n"
-"\"ôÉĐ ÖĹÓÔËĎÇĎ ÄÉÓËÁ\" - \"hd\" ĹÓĚÉ Ő ÷ÁÓ ÖĹÓÔËÉĘ ÄÉÓË Ó IDE ÉÎÔĹŇĆĹĘÓĎÍ É "
-"\"sd\"\n"
-"ĹÓĚÉ ÜÔĎ SCSI ÄÉÓË.\n"
-"\n"
-"\n"
-"\"îĎÍĹŇ ÖĹÓÔËĎÇĎ ÄÉÓËÁ\" ÜÔĎ ×ÓĹÇÄÁ ÂŐË×Á ĐĎÓĚĹ \"hd\" or \"sd\". äĚŃ "
-"ÖĹÓÔËÉČ ÄÉÓËĎ× IDE:\n"
-"\n"
-" * \"a\" ĎÚÎÁŢÁĹÔ \"master ÄÉÓË ÎÁ ĐĹŇ×ĎÍ IDE ËĎÎÔŇĎĚĚĹŇĹ\",\n"
-"\n"
-" * \"b\" ĎÚÎÁŢÁĹÔ \"slave ÄÉÓË ÎÁ ĐĹŇ×ĎÍ IDE ËĎÎÔŇĎĚĚĹŇĹ\",\n"
-"\n"
-" * \"c\" ĎÚÎÁŢÁĹÔ \"master ÄÉÓË ÎÁ ×ÔĎŇĎÍ IDE ËĎÎÔŇĎĚĚĹŇĹ\",\n"
-"\n"
-" * \"d\" ĎÚÎÁŢÁĹÔ \"slave ÄÉÓË ÎÁ ×ÔĎŇĎÍ IDE ËĎÎÔŇĎĚĚĹŇĹ\".\n"
-"\n"
-"\n"
-"äĚŃ ÖĹÓÔËÉČ ÄÉÓËĎ× SCSI, \"a\" ĎÚÎÁŢÁĹÔ \"ĐĹŇ×ŮĘ ÄÉÓË\", \"b\" ĎÚÎÁŢÁĹÔ "
-"\"×ÔĎŇĎĘ ÄÉÓË\", É Ô.Ä."
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-#, fuzzy
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"óĹĘŢÁÓ ×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÓĹŇ×ÉÓŮ, ËĎÔĎŇŮĹ ÂŐÄŐÔ ÚÁĐŐÓËÁÔŘÓŃ ĐŇÉ ÚÁÇŇŐÚËĹ.\n"
-"\n"
-"\n"
-"ëĎÇÄÁ ×Ů ÎÁ×ĎÄÉÔĹ ÍŮŰŘ ÎÁ ĐŐÎËÔ, ÂŐÄĹÔ ĐĎËÁÚÁÎÁ ÍÁĚĹÎŘËÁŃ ĐĎÄÓËÁÚËÁ \n"
-"Ó ĎĐÉÓÁÎÉĹÍ ĆŐÎËĂÉĘ ÜÔĎÇĎ ÓĹŇ×ÉÓÁ.\n"
-"\n"
-"\n"
-"âŐÄŘÔĹ ĎŢĹÎŘ ÁËËŐŇÁÔÎŮ ÎÁ ÜÔĎÍ ÜÔÁĐĹ, ĹÓĚÉ ×Ů ĐĚÁÎÉŇŐĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ×ÁŰŐ "
-"ÍÁŰÉÎŐ × ËÁŢĹÓÔ×Ĺ ÓĹŇ×ĹŇÁ: ×Ů\n"
-"×ĎÚÍĎÖÎĎ ÎĹ ÚÁČĎÔÉÔĹ ÚÁĐŐÓËÁÔŘ ĚÉŰÎÉĹ ÓĹŇ×ÉÓŮ. đĎÍÎÉÔĹ,\n"
-"ŢÔĎ ÚÁĐŐÓËÁÔŘ ÎĹËĎÔĎŇŮĹ ÓĹŇ×ÉÓŮ ÎÁ ÓĹŇ×ĹŇĹ ÎĹÂĹÚĎĐÁÓÎĎ..\n"
-"÷ ĎÓÎĎ×ÎĎÍ, ÖĹĚÁÔĹĚŘÎĎ ×ŮÂÉŇÁÔŘ ÔĎĚŘËĎ ÔĹ ÓĹŇ×ÉÓŮ, ËĎÔĎŇŮĹ ×ÁÍ ŇĹÁĚŘÎĎ ÎŐÖÎŮ."
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-#, fuzzy
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"÷ ÜÔĎÍ ĐŐÎËÔĹ ×ÁÍ ÎŐÖÎĎ ×ŮÂŇÁÔŘ ÍĹÓÔĎ ÎÁ ×ÁŰĹÍ ÖĹÓÔËĎÍ ÄÉÓËĹ\n"
-"× ËĎÔĎŇĎĹ ×Ů ÂŐÄĹÔĹ ŐÓÔÁÎÁ×ĚÉ×ÁÔŘ Mandrake Linux. ĺÓĚÉ ĎÎ ĐŐÓÔ ÉĚÉ\n"
-"ÓŐÝĹÓÔ×ŐŔÝÁŃ ĎĐĹŇÁĂÉĎÎÎÁŃ ÓÉÓÔĹÍÁ ÚÁÎÉÍÁĹÔ ×ÓĹ ÄĎÓÔŐĐÎĎĹ ÍĹÓÔĎ, ×ÁÍ "
-"ĐĎÔŇĹÂŐĹÔÓŃ\n"
-"ŇÁÚÂÉÔŘ ÄÉÓË ÎÁ ŇÁÚÄĹĚŮ. đĎ ÓŐÔÉ ŇÁÚÂÉĹÎÉĹ ÎÁ ŇÁÚÄĹĚŮ ÚÁËĚŔŢÁĹÔÓŃ × "
-"ĚĎÇÉŢĹÓËĎÍ\n"
-"ŇÁÚÄĹĚĹÎÉÉ ÄÉÓËĎ×ĎÇĎ ĐŇĎÓÔŇÁÎÓÔ×Á É ÓĎÚÄÁÎÉĹ ÍĹÓÔÁ ÄĚŃ ŐÓÔÁÎĎ×ËÉ Mandrake "
-"Linux.\n"
-"\n"
-"\n"
-"đĎÓËĎĚŘËŐ ĐĎÓĚĹ ŇÁÚÂÉĹÎÉŃ ĎÂŮŢÎĎ ÎĹĚŘÚŃ ×ŮĐĎĚÎÉÔŘ ĎÂŇÁÔÎŐŔ ĐŇĎĂĹÄŐŇŐ,\n"
-"ŇÁÚÂÉĹÎÉĹ ÍĎÖĹÔ ĎËÁÚÁÔŘÓŃ ÎĹĐĎÎŃÔÎŮÍ É ÔŇŐÄÎŮÍ, ĹÓĚÉ Ő ×ÁÓ ÎĹÄĎÓÔÁÔĎŢÎĎ "
-"ĎĐŮÔÁ.\n"
-"üÔĎÔ ÍÁÓÔĹŇ ŐĐŇĎÝÁĹÔ ĐŇĎĂĹÓÓ ŇÁÚÂÉĹÎÉŃ. đŇĹÖÄĹ ŢĹÍ ÎÁŢÁÔŘ, ÉÚŐŢÉÔĹ "
-"ŇŐËĎ×ĎÄÓÔ×Ď\n"
-"É ÚÁĐÁÓÉÔĹÓŘ ×ŇĹÍĹÎĹÍ.\n"
-"\n"
-"\n"
-"÷ÁÍ ÎŐÖÎĎ ÎĹ ÍĹÎĹĹ Ä×ŐČ ŇÁÚÄĹĚĎ×. ďÄÉÎ - ÓĎÂÓÔ×ĹÎÎĎ ÄĚŃ ĎĐĹŇÁĂÉĎÎÎĎĘ ÓÉÓÔĹÍŮ "
-"É ×ÔĎŇĎĘ\n"
-"ÄĚŃ ×ÉŇÔŐÁĚŘÎĎĘ ĐÁÍŃÔÉ (ÎÁÚŮ×ÁĹÍĎĘ ÔÁËÖĹ ĆÁĘĚĎÍ ĐĎÄËÁŢËÉ - Swap).\n"
-"\n"
-"\n"
-"ĺÓĚÉ ŇÁÚÄĹĚŮ ŐÖĹ ÓÄĹĚÁÎŮ (ÉÚ ĐŇĹÄŮÄŐÝĹĘ ŐÓÔÁÎĎ×ËÉ ÉĚÉ ÄŇŐÇĎĘ\n"
-"ĐŇĎÇŇÁÍÍĎĘ ŇÁÚÂÉĹÎÉŃ), ÔĎÇÄÁ ×ÁÍ ĐŇĎÓÔĎ ÎŐÖÎĎ ÉČ ×ŮÂŇÁÔŘ ÄĚŃ ŐÓÔÁÎĎ×ËÉ "
-"×ÁŰĹĘ\n"
-"Linux ÓÉÓÔĹÍŮ.\n"
-"\n"
-"\n"
-"ĺÓĚÉ ŇÁÚÄĹĚŮ ĹÝĹ ÎĹ ÓÄĹĚÁÎŮ, ×ÁÍ ĐĎÔŇĹÂŐĹÔÓŃ ÉČ ÓĎÚÄÁÔŘ. \n"
-"ţÔĎÂŮ ÜÔĎ ÓÄĹĚÁÔŘ, ÉÓĐĎĚŘÚŐĘÔĹ ×ŮŰĹŐËÁÚÁÎÎŮĘ ÍÁÓÔĹŇ. ÷ ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ "
-"ËĎÎĆÉÇŐŇÁĂÉÉ ×ÁŰĹÇĎ ÖĹÓÔËĎÇĎ \n"
-"ÄÉÓËÁ, ×ĎÚÍĎÖÎŮ ÎĹÓËĎĚŘËĎ ŇĹŰĹÎÉĘ:\n"
-"\n"
-"* éÓĐĎĚŘÚĎ×ÁÔŘ ÓŐÝĹÓÔ×ŐŔÝĹĹ ŇÁÚÂÉĹÎÉĹ: ÍÁÓÔĹŇ ĎÂÎÁŇŐÖÉĚ ĎÄÉÎ ÉĚÉ ÎĹÓËĎĚŘËĎ "
-"ÓŐÝĹÓÔ×ŐŔÝÉČ ŇÁÚÄĹĚĎ× Linux ÎÁ ×ÁŰĹÍ ÖĹÓÔËĎÍ ÄÉÓËĹ. ÷ŮÂĹŇÉÔĹ\n"
-" ÜÔĎÔ ĐŐÎËÔ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ÉČ ÉÓĐĎĚŘÚĎ×ÁÔŘ. \n"
-"\n"
-"\n"
-"* ďŢÉÓÔÉÔŘ ×ĹÓŘ ÄÉÓË: ×ŮÂĹŇÉÔĹ ÜÔĎÔ ĐŐÎËÔ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ŐÄÁĚÉÔŘ ×ÓŔ "
-"ÉÎĆĎŇÍÁĂÉŔ É ×ÓĹ ŇÁÚÄĹĚŮ, ÓŐÝĹÓÔ×ŐŔÝÉĹ ÎÁ ×ÁŰĹÍ ÖĹÓÔËĎÍ ÄÉÓËĹ É ÚÁÍĹÎÉÔŘ "
-"ÉČ \n"
-" ×ÁŰĹĘ ÎĎ×ĎĘ Mandrake Linux ÓÉÓÔĹÍĎĘ. âŐÄŘÔĹ ĎÓÔĎŇĎÖÎŮ ĐŇÉÎÉÍÁŃ ÔÁËĎĹ "
-"ŇĹŰĹÎÉĹ - ×ĎÓÓÔÁÎĎ×ÉÔŘ ÄÁÎÎŮĹ ĐĎÓĚĹ ĐĎÔÄ×ĹŇÖÄĹÎÉŃ ×ŮĐĎĚÎĹÎÉŃ ÜÔĎĘ ĎĐĹŇÁĂÉÉ\n"
-" ×Ů ŐÖĹ ÎĹ ÓÍĎÖĹÔĹ.\n"
-"\n"
-"\n"
-"* éÓĐĎĚŘÚĎ×ÁÔŘ Ó×ĎÂĎÄÎĎĹ ÍĹÓÔĎ × ŇÁÚÄĹĚĹ Windows: ĹÓĚÉ Ő ×ÁÓ ŐÓÔÁÎĎ×ĚĹÎÁ "
-"Microsoft Windows É ÚÁÎÉÍÁĹÔ ×ÓĹ ÍĹÓÔĎ ÎÁ ÖĹÓÔËĎÍ ÄÉÓËĹ, ÔĎ ×ÁÍ ĐŇÉÄĹÔÓŃ\n"
-" ÓĎÚÄÁÔŘ Ó×ĎÂĎÄÎĎĹ ĐŇĎÓÔŇÁÎÓÔ×Ď ÄĚŃ Linux. ţÔĎÂŮ ÜÔĎ ÓÄĹĚÁÔŘ, ×Ů ÍĎÖĹÔĹ "
-"ŐÄÁĚÉÔŘ ×ÁŰ\n"
-" ŇÁÚÄĹĚ Microsoft Windows É ×ÓĹ ÄÁÎÎŮĹ (ÓÍĎÔŇÉÔĹ ĐŐÎËÔŮ \"ďŢÉÓÔÉÔŘ ×ĹÓŘ ÄÉÓË"
-"\" ÉĚÉ \"ňĹÖÉÍ üËÓĐĹŇÔ\" ) ÉĚÉ ÉÚÍĹÎÉÔŘ ŇÁÚÍĹŇ\n"
-" ×ÁŰĹÇĎ ŇÁÚÄĹĚÁ Microsoft Windows. üÔĎ ÉÚÍĹÎĹÎÉĹ ÍĎÖĹÔ ÂŮÔŘ ×ŮĐĎĚÎĹÎĎ ÂĹÚ "
-"ĐĎÔĹŇÉ ÄÁÎÎŮČ. üÔĎ ŇĹŰĹÎÉĹ ŇĹËĎÍĹÎÄŐĹÔÓŃ\n"
-" ĹÓĚÉ ×ŮČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ É Mandrake Linux É Microsoft Windows ÎÁ ĎÄÎĎÍ É "
-"ÔĎÍ ÖĹ ËĎÍĐŘŔÔĹŇĹ.\n"
-"\n"
-"\n"
-" đĹŇĹÄ ×ŮÂĎŇĎÍ ÜÔĎÇĎ ×ÁŇÉÁÎÔÁ, ×ÁÍ ÎŐÖÎĎ ĐĎÎŃÔŘ, ŢÔĎ ŇÁÚÍĹŇ ŇÁÚÄĹĚÁ "
-"Microsoft\n"
-" Windows ÂŐÄĹÔ ÍĹÎŘŰĹ, ŢĹÍ ÓŐÝĹÓÔ×ŐŔÝÉĘ. üÔĎ ĎÚÎÁŢÁĹÔ, ŢÔĎ Ő ×ÁÓ ÂŐÄĹÔ "
-"ÍĹÎŘŰĹ ÍĹÓÔÁ ĐĎÄ \n"
-" Microsoft Windows ÄĚŃ ČŇÁÎĹÎÉŃ ÉÎĆĎŇÍÁĂÉÉ É ŐÓÔÁÎĎ×ËÉ ÎĎ×ŮČ ĐŇĎÇŇÁÍÍ.\n"
-"\n"
-"\n"
-"* ňĹÖÉÍ üËÓĐĹŇÔ: ×ŮÂĹŇÉÔĹ ÜÔĎÔ ×ÁŇÉÁÎÔ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ×ŇŐŢÎŐŔ ŇÁÚÂÉÔŘ ×ÁŰ "
-"ÖĹÓÔËÉĘ ÄÉÓË. âŐÄŘÔĹ ĎÓÔĎŇĎÖÎŮ\n"
-" . üÔĎÔ ×ÁŇÉÁÎÔ ĎŢĹÎŘ ÍĎÝÎŮĘ, ÎĎ ĎŢĹÎŘ ĎĐÁÓÎŮĘ. ÷Ů ÍĎÖĹÔĹ ĚĹÇËĎ ĐĎÔĹŇŃÔŘ "
-"×ÓĹ ×ÁŰÉ ÄÁÎÎŮĹ. đĎÜÔĎÍŐ\n"
-" ÎĹ ×ŮÂÉŇÁĘÔĹ ÜÔĎÔ ×ÁŇÉÁÎÔ, ĹÓĚÉ ×Ů ÎĹ Ő×ĹŇĹÎŮ × ÔĎÍ, ŢÔĎ ÄĹĚÁĹÔĹ."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-#, fuzzy
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"ţÔĎÂŮ ÉÓĐĎĚŘÚĎ×ÁÔŘ ×ÓĹ ÚÁÄÁÎÎŮĹ ŇÁÚÄĹĚŮ, ËĎÔĎŇŮĹ ÂŮĚÉ ÚÁÎĎ×Ď ĎĐŇĹÄĹĚĹÎŮ, "
-"ĎÎÉ \n"
-"ÄĎĚÖÎŮ ÂŮÔŘ ĎÔĆĎŇÍÁÔÉŇĎ×ÁÎŮ (ĆĎŇÍÁÔÉŇĎ×ÁÎÉĹ ĎÚÎÁŢÁĹÔ ÓĎÚÄÁÎÉĹ ĆÁĘĚĎ×ĎĘ "
-"ÓÉÓÔĹÍŮ).\n"
-"\n"
-"\n"
-"÷ ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×Ů ÍĎÖĹÔĹ ĐĹŇĹĆĎŇÍÁÔÉŇĎ×ÁÔŘ É ŐÖĹ ÓŐÝĹÓÔ×ŐŔÝÉĹ ŇÁÚÄĹĚŮ ŢÔĎÂŮ "
-"ÓÔĹŇĹÔŘ\n"
-"ÓĎÄĹŇÖÁÝŐŔÓŃ ÎÁ ÎÉČ ÉÎĆĎŇÍÁĂÉŔ. ĺÓĚÉ ×Ů ČĎÔÉÔĹ ÜÔĎ ÓÄĹĚÁÔŘ, ×ŮÂĹŇÉÔĹ ÔÁËÖĹ "
-"ŇÁÚÄĹĚŮ,\n"
-"ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ĎÔĆĎŇÍÁÔÉŇĎ×ÁÔŘ.\n"
-"\n"
-"\n"
-"éÍĹĘÔĹ ××ÉÄŐ, ŢÔĎ ÎĹĎÂŃÚÁÔĹĚŘÎĎ ĐĹŇĹĆĎŇÍÁÔÉŇĎ×ÁÔŘ ×ÓĹ ŇÁÎĹĹ ÓŐÝĹÓÔ×ŐŔÝÉĹ "
-"ŇÁÚÄĹĚŮ.\n"
-"÷Ů ÄĎĚÖÎŮ ĐĹŇĹĆĎŇÍÁÔÉŇĎ×ÁÔŘ ŇÁÚÄĹĚŮ, ÓĎÄĹŇÖÁÝÉĹ ĎĐĹŇÁĂÉĎÎÎŐŔ ÓÉÓÔĹÍŐ (ÔÁËÉĹ "
-"ËÁË \"/\",\n"
-"\"/usr\" ÉĚÉ \"/var\"), ÎĎ ×ÁÍ ÎĹĎÂŃÚÁÔĹĚŘÎĎ ÜÔ ĎÄĹĚÁÔŘ ÄĚŃ ŇÁÚÄĹĚĎ×, "
-"ÓĎÄĹŇÖÁÝÉČ ÉÎĆĎŇÍÁĂÉŔ,\n"
-"ËĎÔĎŇŐŔ ×Ů ČĎÔÉÔĹ ÓĎČŇÁÎÉÔŘ (ĎÂŮŢÎĎ ÜÔĎ ŇÁÚÄĹĚ /home).\n"
-"\n"
-"\n"
-"âŐÄŘÔĹ ĎÓÔĎŇĎÖÎŮ ĐŇÉ ×ŮÂĎŇĹ ŇÁÚÄĹĚĎ×, ÔÁË ËÁË ĐĎÓĚĹ ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ ×ÓŃ "
-"ÉÎĆĎŇÍÁĂÉŃ ÂŐÄĹÔ\n"
-"ŐÄÁĚĹÎÁ ÂĹÚ ×ĎÚÍĎÖÎĎÓÔÉ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ.\n"
-"\n"
-"\n"
-"îÁÖÍÉÔĹ ÎÁ \"OK\" ÄĚŃ ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ ŇÁÚÄĹĚĎ×.\n"
-"\n"
-"\n"
-"îÁÖÍÉÔĹ ÎÁ \"ďÔÍĹÎÁ\", ĹÓĚÉ ×Ů ČĎÔÉÔĹ ×ŮÂŇÁÔŘ ÄŇŐÇÉĹ ŇÁÚÄĹĚŮ ÄĚŃ ŐÓÔÁÎĎ×ËÉ \n"
-"Mandrake Linux."
-
-#: ../../help.pm_.c:404
-#, fuzzy
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"÷ ÄÁÎÎŮĘ ÍĎÍĹÎÔ ĎÓŐÝĹÓÔ×ĚŃĹÔÓŃ ŐÓÔÁÎĎ×ËÁ ÷ÁŰĹĘ ÎĎ×ĎĘ ĎĐĹŇÁĂÉĎÎÎĎĘ ÓÉÓÔĹÍŮ "
-"Mandrake Linux\n"
-". üÔÁ ĎĐĹŇÁĂÉŃ ÚÁĘÍĹÔ ÎĹÓËĎĚŘËĎ ÍÉÎŐÔ (×ŇĹÍŃ ÚÁ×ÉÓÉÔ ĎÔ ×ŮÂŇÁÎÎĎÇĎ ŇÁÚÍĹŇÁ "
-"ŐÓÔÁÎĎ×ËÉ\n"
-"É ÓËĎŇĎÓÔÉ ×ÁŰĹÇĎ ËĎÍĐŘŔÔĹŇÁ).\n"
-"\n"
-"\n"
-"ĐĎÖÁĚŐĘÓÔÁ, ĐĎÄĎÖÄÉÔĹ."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-#, fuzzy
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-"÷ ÜÔĎÍ ĐŐÎËÔĹ ×ÁÍ ÎŐÖÎĎ ×ŮÂŇÁÔŘ, ËÁËÉĹ ŇÁÚÄĹĚ(Ů) \n"
-"ÉÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ ŐÓÔÁÎĎ×ËÉ ×ÁŰĹĘ ÎĎ×ĎĘ Mandrake Linux ÓÉÓÔĹÍŮ. ĺÓĚÉ ŇÁÚÄĹĚŮ\n"
-"ŐÖĹ ÓĎÚÄÁÎŮ (×Ď ×ŇĹÍŃ ĐŇĹÄŮÄŐÝĹĘ ŐÓÔÁÎĎ×ËÉ GNU/Linux ÉĚÉ ÄŇŐÇĎĘ\n"
-"ĐŇĎÇŇÁÍÍĎĘ ŇÁÚÂÉĹÎÉŃ), ×Ů ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĹ ŇÁÚÄĹĚŮ. ÷Ď ×ÓĹČ "
-"ÄŇŐÇÉČ ÓĚŐŢÁŃČ,\n"
-"ŇÁÚÄĹĚŮ ÖĹÓÔËĎÇĎ ÄÉÓËÁ ÄĎĚÖÎŮ ÂŮÔŘ ÚÁÄÁÎŮ.\n"
-"\n"
-"\n"
-"ţÔĎÂŮ ÓĎÚÄÁÔŘ ŇÁÚÄĹĚŮ, ÓÎÁŢÁĚÁ ×ÁÍ ÎŐÖÎĎ ×ŮÂŇÁÔŘ ÖĹÓÔËÉĘ ÄÉÓË. ÷ŮÂŇÁÔŘ ÄÉÓË "
-"ÄĚŃ \n"
-"ŇÁÚÂÉĹÎÉŃ ×Ů ÍĎÖĹÔĹ, ÎÁÖÁ× \"hda\" ÄĚŃ ÄÉÓËÁ ÎÁ ĐĹŇ×ĎÍ IDE ËÁÎÁĚĹ, \"hdb\" "
-"ÄĚŃ ÄÉÓËÁ\n"
-"ÎÁ ×ÔĎŇĎÍ IDE ËÁÎÁĚĹ, ĚÉÂĎ \"sda\" ÄĚŃ ĐĹŇ×ĎÇĎ SCSI ÄÉÓËÁ É ÔÁË ÄÁĚĹĹ.\n"
-"\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"
-" * ÷ŮĐĎĚÎĹÎĎ: ×ŮÂĹŇÉÔĹ ÜÔĎÔ ĐŐÎËÔ, ËĎÇÄÁ ×Ů ÚÁËĎÎŢÉÔĹ ŇÁÚÂÉĹÎÉĹ drive, "
-"ŢÔĎÂŮ ÓĎČŇÁÎÉÔŘ ÓÄĹĚÁÎÎŮĹ ÉÚÍĹÎĹÎÉŃ.\n"
-"\n"
-"\n"
-"÷Ů ÍĎÖĹÔĹ ĐĹŇĹĘÔÉ Ë ×ŮÂĎŇŐ ĚŔÂĎÇĎ ĐŐÎËÔÁ Ó ËĚÁ×ÉÁÔŐŇŮ: ĐĹŇĹČĎÄ ÍĹÖÄŐ "
-"ŇÁÚÄĹĚÁÍÉ ĎÓŐÝĹÓÔ×ĚŃĹÔÓŃ Ó ĐĎÍĎÝŘŔ ËĚÁ×ÉŰ Tab É ÓÔŇĹĚĎË ÷×ĹŇČ/÷ÎÉÚ.\n"
-"\n"
-"\n"
-"ëĎÇÄÁ ŇÁÚÄĹĚ ×ŮÂŇÁÎ, ÷Ů ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ:\n"
-"\n"
-" * Ctrl-c ÄĚŃ ÓĎÚÄÁÎÉŃ ÎĎ×ĎÇĎ ŇÁÚÄĹĚÁ (ËĎÇÄÁ ×ŮÂŇÁÎ ĐŐÓÔĎĘ "
-"ŇÁÚÄĹĚ)\n"
-"\n"
-" * Ctrl-d ÄĚŃ ŐÄÁĚĹÎÉŃ ŇÁÚÄĹĚÁ\n"
-"\n"
-" * Ctrl-m ÄĚŃ ÚÁÄÁÎÉŃ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ\n"
-" \n"
-"\n"
-" \n"
-"ĺÓĚÉ ×Ů ×ŮĐĎĚÎŃĹÔĹ ŐÓÔÁÎĎ×ËŐ ÎÁ ËĎÍĐŘŔÔĹŇĹ PPC, ×ĎÚÍĎÖÎĎ, ×Ů ÚÁČĎÔÉÔĹ "
-"ÓĎÚÄÁÔŘ ÎĹÂĎĚŘŰĎĘ HFS 'bootstrap' ŇÁÚÄĹĚ ÎĹ ÍĹÎĹĹ 1MB ÄĚŃ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ ĹÇĎ\n"
-"ÎÁŢÁĚŘÎŮÍ ÚÁÇŇŐÚŢÉËĎÍ yaboot. ĺÓĚÉ ×Ů ŇĹŰÉÔĹ ÓÄĹĚÁÔŘ ŇÁÚÄĹĚ ÎĹÍÎĎÇĎ ÂĎĚŘŰĹ, "
-"ÎÁĐŇÉÍĹŇ 50MB, ×Ů ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÜÔĎ ÍĹÓÔĎ ÄĚŃ \n"
-"ČŇÁÎĹÎÉŃ ŃÄŇÁ É ĎÂŇÁÚÁ ramdisk ÄĚŃ ÓĚŐŢÁĹ× Á×ÁŇÉĘÎĎĘ ÚÁÇŇŐÚËÉ."
-
-#: ../../help.pm_.c:513
-#, fuzzy
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-"îÁ ÷ÁŰĹÍ ÖĹÓÔËĎÍ ÄÉÓËĹ ĎÂÎÁŇŐÖĹÎĎ ÂĎĚĹĹ ĎÄÎĎÇĎ ŇÁÚÄĹĚÁ Microsoft Windows\n"
-". ÷ŮÂĹŇÉÔĹ ŇÁÚÄĹĚ, ŇÁÚÍĹŇ ËĎÔĎŇĎÇĎ ÷Ů ČĎÔÉÔĹ ÉÚÍĹÎÉÔŘ ÄĚŃ ŐÓÔÁÎĎ×ËÉ\n"
-"÷ÁŰĹĘ ÎĎ×ĎĘ ĎĐĹŇÁĂÉĎÎÎĎĘ ÓÉÓÔĹÍŮ Mandrake Linux.\n"
-"\n"
-"\n"
-"äĚŃ ÓĐŇÁ×ËÉ - ËÁÖÄŮĘ ŇÁÚÄĹĚ ĎĐÉÓŮ×ÁĹÔÓŃ ÓĚĹÄŐŔÝÉÍ ĎÂŇÁÚĎÍ: \"ÉÍŃ Linux\", "
-"\"ÉÍŃ\n"
-"Windows\" \"ĺÍËĎÓÔŘ\".\n"
-"\n"
-"\"ÉÍŃ Linux\" ĎĐÉÓŮ×ÁĹÔÓŃ ÓĚĹÄŐŔÝÉÍ ĎÂŇÁÚĎÍ: \"ÔÉĐ ÖĹÓÔËĎÇĎ ÄÉÓËÁ\", \"ÎĎÍĹŇ "
-"ÖĹÓÔËĎÇĎ ÄÉÓËÁ\",\n"
-"\"ÎĎÍĹŇ ŇÁÚÄĹĚÁ\" (ÎÁĐŇÉÍĹŇ, \"hda1\").\n"
-"\n"
-"\n"
-"\"ôÉĐ ÖĹÓÔËĎÇĎ ÄÉÓËÁ\" - \"hd\", ĹÓĚÉ Ő ×ÁÓ ÖĹÓÔËÉĘ ÄÉÓË Ó IDE ÉÎÔĹŇĆĹĘÓĎÍ É "
-"- \"sd\"\n"
-"ĹÓĚÉ ÜÔĎ SCSI ÄÉÓË.\n"
-"\n"
-"\n"
-"\"îĎÍĹŇ ÖĹÓÔËĎÇĎ ÄÉÓËÁ\" ÜÔĎ ×ÓĹÇÄÁ ÂŐË×Á ĐĎÓĚĹ \"hd\" or \"sd\". äĚŃ "
-"ÖĹÓÔËÉČ ÄÉÓËĎ× IDE:\n"
-"\n"
-" * \"a\" ĎÚÎÁŢÁĹÔ \"master ÄÉÓË ÎÁ ĐĹŇ×ĎÍ IDE ËĎÎÔŇĎĚĚĹŇĹ\",\n"
-"\n"
-" * \"b\" ĎÚÎÁŢÁĹÔ \"slave ÄÉÓË ÎÁ ĐĹŇ×ĎÍ IDE ËĎÎÔŇĎĚĚĹŇĹ\",\n"
-"\n"
-" * \"c\" ĎÚÎÁŢÁĹÔ \"master ÄÉÓË ÎÁ ×ÔĎŇĎÍ IDE ËĎÎÔŇĎĚĚĹŇĹ\",\n"
-"\n"
-" * \"d\" ĎÚÎÁŢÁĹÔ \"slave ÄÉÓË ÎÁ ×ÔĎŇĎÍ IDE ËĎÎÔŇĎĚĚĹŇĹ\".\n"
-"\n"
-"\n"
-"äĚŃ ÖĹÓÔËÉČ ÄÉÓËĎ× SCSI, \"a\" ĎÚÎÁŢÁĹÔ \"ĐĹŇ×ŮĘ ÄÉÓË\", \"b\" ĎÚÎÁŢÁĹÔ "
-"\"×ÔĎŇĎĘ ÄÉÓË\", É Ô.Ä.\n"
-"\n"
-"\n"
-"\"éÍŃ Windows\" - ÜÔĎ ÂŐË×Á, ĎÂĎÚÎÁŢÁŔÝÁŃ ×ÁŰ ÖĹÓÔËÉĘ ÄÉÓË × Windows (ĐĹŇ×ŮĘ "
-"ÄÉÓË \n"
-"ÉĚÉ ŇÁÚÄĹĚ ÎÁÚŮ×ÁĹÔÓŃ \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "đĎÄĎÖÄÉÔĹ. ÷ŮĐĎĚÎĹÎÉĹ ÜÔĎĘ ĎĐĹŇÁĂÉŃ ÍĎÖĹÔ ÚÁÎŃÔŘ ÎĹÓËĎĚŘËĎ ÍÉÎŐÔ."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ \"őÓÔÁÎĎ×ËÁ\", ĹÓĚÉ Ő ×ÁÓ ÎĹ ÂŮĚÁ ŐÓÔÁÎĎ×ĚĹÎÁ "
-"ĐŇĹÄŮÄŐÝÁŃ ×ĹŇÓÉŃ Mandrake Linux\n"
-"ÉĚÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÎĹÓËĎĚŘËĎ ĎĐĹŇÁĂÉĎÎÎŮČ ÓÉÓÔĹÍ.\n"
-"\n"
-"\n"
-"đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ \"ďÂÎĎ×ĚĹÎÉĹ\", ĹÓĚÉ ×Ů ČĎÔÉÔĹ ĎÂÎĎ×ÉÔŘ ŐÖĹ "
-"ŐÓÔÁÎĎ×ĚĹÎÎŐŔ ×ĹŇÓÉŔ Mandrake Linux.\n"
-"\n"
-"\n"
-"÷ ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ ×ÁŰĹÇĎ ĎĐŮÔÁ × GNU/Linux, ×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ĎÄÉÎ ÉÚ "
-"ÓĚĹÄŐŔÝÉČ ŐŇĎ×ÎĹĘ ŐÓÔÁÎĎ×ËÉ ÉĚÉ ĎÂÎĎ×ĚĹÎÉŃ ×ÁŰĹĘ\n"
-"ĎĐĹŇÁĂÉĎÎÎÎĎĘ ÓÉÓÔĹÍŮ Mandrake Linux:\n"
-"\n"
-"* ňĹËĎÍĹÎÄŐĹÍŮĘ: ĹÓĚÉ ×Ů ŇÁÎĹĹ ÎÉËĎÇÄÁ ÎĹ ŐÓÔÁÎÁ×ĚÉ×ÁĚÉ ĎĐĹŇÁĂÉĎÎÎŮČ ÓÉÓÔĹÍ "
-"GNU/Linux ×ŮÂĹŇÉÔĹ ÜÔĎÔ. őÓÔÁÎĎ×ËÁ ÂŐÄĹÔ\n"
-" ĎŢĹÎŘ ĐŇĎÓÔĎĘ É ×ÁÍ ÂŐÄĹÔ ÚÁÄÁÎĎ ×ÓĹÇĎ ÎĹÓËĎĚŘËĎ ×ĎĐŇĎÓĎ×.\n"
-"\n"
-"\n"
-"* ÷ŮÂĎŇĎŢÎŮĘ: ĹÓĚÉ ×Ů ÄĎÓÔÁÔĎŢÎĎ ÚÎÁËĎÍŮ Ó GNU/Linux, ÔĎ ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ "
-"ĂĹĚĹ×ĎĹ ÎÁÚÎÁŢĹÎÉĹ (ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ, ÓĹŇ×ĹŇ,\n"
-" ŇÁÚŇÁÂĎÔËÁ ĐŇĎÇŇÁÍÍ) ×ÁŰĹĘ ÓÉÓÔĹÍŮ. ÷ÁÍ ÂŐÄĹÔ ÚÁÄÁÎĎ ÂĎĚŘŰĹ ×ĎĐŇĎÓĎ×, ŢĹÍ "
-"× ×ÁŇÉÁÎÔĹ ŐÓÔÁÎĎ×ËÉ \"ňĹËĎÍĹÎÄŐĹÔÓŃ\" \n"
-" ŐŇĎ×ĹÎŘ, ĐĎÜÔĎÍŐ ×ÁÍ ÎŐÖÎĎ ÚÎÁÔŘ, ËÁË ŇÁÂĎÔÁĹÔ GNU/Linux ŢÔĎÂŮ ×ŮÂŇÁÔŘ "
-"ÜÔĎÔ ŐŇĎ×ĹÎŘ ŐÓÔÁÎĎ×ËÉ.\n"
-"\n"
-"\n"
-"* üËÓĐĹŇÔ: ĹÓĚÉ ×Ů ĎÂĚÁÄÁĹÔĹ ČĎŇĎŰÉÍÉ ÚÎÁÎÉŃÍÉ × GNU/Linux, ×Ů ÍĎÖĹÔĹ "
-"×ŮÂŇÁÔŘ ÜÔĎÔ ŐŇĎ×ĹÎŘ ŐÓÔÁÎĎ×ËÉ. ëÁË É × ŐŇĎ×ÎĹ \"÷ŮÂĎŇĎŢÎÁŃ\",\n"
-" ×Ů ÓÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ĂĹĚĹ×ĎĹ ÎÁÚÎÁŢĹÎÉĹ (ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ, ÓĹŇ×ĹŇ, ŇÁÚŇÁÂĎÔËÁ "
-"ĐŇĎÇŇÁÍÍ). âŐÄŘÔĹ ĎŢĹÎŘ\n"
-" ĎÓÔĎŇĎÖÎŮ × ×ŮÂĎŇĹ ÜÔĎÇĎ ŐŇĎ×ÎŃ ŐÓÔÁÎĎ×ËÉ. ÷ ÎĹÍ ×Ů ÍĎÖĹÔĹ ĎÓŐÝĹÓÔ×ÉÔŘ "
-"ĎŢĹÎŘ ÔĎÎËŐŔ ÎÁÓÔŇĎĘËŐ ĐŇĎĂĹÓÓÁ ŐÓÔÁÎĎ×ËÉ.\n"
-" ďÔ×ĹÔÉÔŘ ÎÁ ÎĹËĎÔĎŇŮĹ ×ĎĐŇĎÓŮ, ÎĹ ĎÂĚÁÄÁŃ ČĎŇĎŰÉÍÉ ÚÎÁÎÉŃÍÉ × GNU/Linux, "
-"ÍĎÖĹÔ ÂŮÔŘ ĎŢĹÎŘ ÔŇŐÄÎĎ. đĎÜÔĎÍŐ ÎĹ ×ŮÂÉŇÁĘÔĹ ÜÔĎÔ ŐŇĎ×ĹÎŘ ŐÓÔÁÎĎ×ËÉ,\n"
-" ĹÓĚÉ ×Ů ÎĹ Ő×ĹŇĹÎŮ × ÔĎÍ, ŢÔĎ ÄĹĚÁĹÔĹ."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-#, fuzzy
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"÷ŮĹÂŇÉÔĹ ĐŇÁ×ÉĚŘÎŮĘ ĐĎŇÔ. îÁĐŇÉÍĹŇ, COM1\n"
-"ĐĎŇÔ × MS Windows ÎÁÚŮ×ÁĹÔÓŃ ttyS0 × GNU/Linux."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-#, fuzzy
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-"LILO (LInux LOader - ÚÁÇŇŐÚŢÉË Linux) É Grub Ń×ĚŃŔÔÓŃ ÄÉÓĐĹÔŢĹŇÁÍÉ "
-"ÚÁÇŇŐÚËÉ:\n"
-"ĎÎÉ ÓĐĎÓĎÂÎŮ ÚÁÇŇŐÚÉÔŘ GNU/Linux ÉĚÉ ĚŔÂŐŔ ÄŇŐÇŐŔ ďó, ŐÓÔÁÎĎ×ĚĹÎÎŐŔ ÎÁ "
-"ÍÁŰÉÎĹ.\n"
-"ďÂŮŢÎĎ ÜÔÉ ÄŇŐÇÉĹ ĎĐĹŇÁĂÉĎÎÎŮĹ ÓÉÓÔĹÍŮ ËĎŇŇĹËÔÎĎ ŇÁÓĐĎÚÎÁŔÔÓŃ É "
-"ŐÓÔÁÎÁ×ĚÉ×ÁŔÔÓŃ.\n"
-"ĺÓĚÉ ÜÔĎÇĎ ÎĹ ĐŇĎÉÚĎŰĚĎ, ×Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ĐŐÎËÔ ×ŇŐŢÎŐŔ ÎÁ ÜÔĎÍ ÜËŇÁÎĹ.\n"
-"âŐÄŘÔĹ ×ÎÉÍÁÔĹĚŘÎŮ ĐŇÉ ÚÁÄÁÎÉÉ ĐÁŇÁÍĹÔŇĎ×.\n"
-"\n"
-"\n"
-"÷ĎÚÍĎÖÎĎ ÔÁËÖĹ, ŢÔĎ ×Ů ÎĹ ČĎÔÉÔĹ ÎÉËĎÍŐ ÄÁ×ÁÔŘ ÄĎÓÔŐĐ Ë ÜÔÉÍ ďó, × ÔÁËĎÍ "
-"ÓĚŐŢÁĹ\n"
-"ÍĎÖÎĎ ŐÄÁĚÉÔŘ ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÉĹ ĐŐÎËÔŮ. îĎ × ÜÔĎÍ ÓĚŐŢÁĹ ÄĚŃ ÉČ ÚÁÇŇŐÚËÉ "
-"ĐĎÔŇĹÂŐĹÔÓŃ\n"
-"ÚÁÇŇŐÚĎŢÎÁŃ ÄÉÓËĹÔÁ!"
-
-#: ../../help.pm_.c:722
-#, fuzzy
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"îÁÄĎ ŐËÁÚÁÔŘ, ËŐÄÁ ×Ů ČĎÔÉÔĹ\n"
-"ĐĎÍĹÓÔÉÔŘ ÉÎĆĎŇÍÁĂÉŔ, ÎĹĎÂČĎÄÉÍŐŔ ÄĚŃ ÚÁÇŇŐÚËÉ GNU/Linux.\n"
-"\n"
-"\n"
-"ĺÓĚÉ ×Ů ÎĹ ĐĎÎÉÍÁĹÔĹ ÁÂÓĎĚŔÔÎĎ ÔĎŢÎĎ ÔĎ, ŢÔĎ ×Ů ÄĹĚÁĹÔĹ, ×ŮÂÉŇÁĘÔĹ\n"
-"\"đĹŇ×ŮĘ ÓĹËÔĎŇ ÎÁ ÄÉÓËĹ (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX ĐĎĐŇĎÂŐĹÔ ĎĐŇĹÄĹĚÉÔŘ PCI SCSI ÁÄÁĐÔĹŇ(Ů). ĺÓĚÉ DrakX\n"
-"ÓÍĎÖĹÔ ĎĐŇĹÄĹĚÉÔŘ SCSI ÁÄÁĐÔĹŇ É Ő ÎĹÇĎ ÂŐÄĹÔ ÓĎĎÔ×ĹÔÓ×ŐŔÝÉĘ ÄŇÁĘ×ĹŇ, ÔĎ ĎÎ "
-"ÂŐÄĹÔ Á×ÔĎÍÁÔÉŢĹÓËÉ \n"
-"ŐÓÔÁÎĎ×ĚĹÎ.\n"
-"\n"
-"\n"
-"ĺÓĚÉ DrakX ÎĹ ÎÁĘÄĹÔ ÎÉ ĎÄÎĎÇĎ SCSI ÁÄÁĐÔĹŇÁ, ISA SCSI ÁÄÁĐÔĹŇÁ ÉĚÉ PCI SCSI "
-"ÁÄÁĐÔĹŇÁ, \n"
-"ÔĎÇÄÁ ×ÁÍ ÂŐÄĹÔ ÚÁÄÁÎ ×ĎĐŇĎÓ Ď ÎÁĚÉŢÉÉ SCSI ÁÄÁĐÔĹŇÁ × ×ÁŰĹĘ \n"
-"ÓÉÓÔĹÍĹ. ĺÓĚÉ ÁÄÁĐÔĹŇĎ× ÎĹÔ, ×Ů ÍĎÖĹÔĹ ÎÁÖÁÔŘ \"îĹÔ\". ĺÓĚÉ ×Ů ÎÁÖÍĹÔĹ\n"
-"\"äÁ\", ÔĎ ×ÁÍ ÂŐÄĹÔ ĐŇĹÄĚĎÖĹÎ ÓĐÉÓĎË ÁÄÁĐÔĹŇĎ×, ÉÚ ËĎÔĎŇŮČ ×Ů ÓÍĎÖĹÔĹ "
-"×ŮÂŇÁÔŘ ÉÍĹÎÎĎ ×ÁŰ.\n"
-"\n"
-"\n"
-"\n"
-"ĺÓĚÉ ×Ů ×ŇŐŢÎŐŔ ŐËÁÖÉÔĹ ×ÁŰ ÁÄÁĐÔĹŇ, DrakX ÓĐŇĎÓÉÔ ×ÁÓ, ČĎÔÉÔĹ ĚÉ ×Ů \n"
-"ŐËÁÚÁÔŘ ÄĚŃ ÎĹÇĎ ĐÁŇÁÍĹÔŇŮ. ÷Ů ÄĎĚÖÎŮ ĐĎÚ×ĎĚÉÔŘ DrakX ĎĐŇĹÄĹĚÉÔŘ ÎÁÓÔŇĎĘËÉ "
-"ÜÔĎÇĎ \n"
-"ŐÓÔŇĎĘÓÔ×Á. ďÂŮŢÎĎ ÜÔĎ ŇÁÂĎÔÁĹÔ ČĎŇĎŰĎ.\n"
-"\n"
-"\n"
-"ĺÓĚÉ ÎĹÔ, ×ÁÍ ĐÉÄĹÔÓŃ ŐËÁÚÁÔŘ ÎÁÓÔŇĎĘËÉ ÄŇÁĘ×ĹŇÁ. đĎÖÁĚŐĘÓÔÁ, ĐŇĎÓÍĎÔŇÉÔĹ "
-"ňŐËĎ×ĎÄÓÔ×Ď\n"
-"đĎĚŘÚĎ×ÁÔĹĚŃ (ÇĚÁ×Á 3, ŇÁÚÄĹĚ \"Collective informations on your hardware\") "
-"for hints\n"
-"ÉĚÉ ÎÁĘÄÉÔĹ ÜÔŐ ÉÎĆĎŇÍÁĂÉŔ × ĎĐÉÓÁÎÉÉ ĎÂĎŇŐÄĎ×ÁÎÉŃ × ÄĎËŐÍĹÎÔÁĂÉÉ\n"
-"ÎÁ web ÓÁĘÔĹ ĐŇĎÉÚ×ĎÄÉÔĹĚŃ (ĹÓĚÉ Ő ×ÁÓ ĹÓÔŘ ÄĎÓÔŐĐ × ÉÎÔĹŇÎĹÔ) ÉĚÉ "
-"ĐĎÓÍĎÔŇÉÔĹ ÎÁÓÔŇĎĘËÉ × Microsoft Windows\n"
-"(ĹÓĚÉ ĎÎ ŐÓÔÁÎĎ×ĚĹÎ ÎÁ ×ÁŰĹĘ ÓÉÓÔĹÍĹ)."
-
-#: ../../help.pm_.c:784
-#, fuzzy
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-"÷Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ÄĎĐĎĚÎÉÔĹĚŘÎŮĹ ÚÁĐÉÓÉ ÄĚŃ yaboot, ĚÉÂĎ ÄĚŃ ÄŇŐÇÉČ "
-"ĎĐĹŇÁĂÉĎÎÎŮČ ÓÉÓÔĹÍ,\n"
-"ĚÉÂĎ ÄĚŃ ÄŇŐÇÉČ ŃÄĹŇ, ĚÉÂĎ ÄĚŃ Á×ÁŇÉĘÎĎÇĎ ÚÁÇŇŐÚĎŢÎĎÇĎ ĎÂŇÁÚÁ.\n"
-"\n"
-"\n"
-"äĚŃ ÄŇŐÇÉČ ďó - ÚÁĐÉÓŘ ÓĎÄĹŇÖÉÔ ÔĎĚŘËĎ ÍĹÔËŐ É ËĎŇÎĹ×ĎĘ ŇÁÚÄĹĚ.\n"
-"\n"
-"\n"
-"äĚŃ Linux, ×ĎÚÍĎÖÎŮ ÎĹÓËĎĚŘËĎ ĐÁŇÁÍĹÔŇĎ×: \n"
-"\n"
-"\n"
-" - íĹÔËÁ: üÔĎ ĐŇĎÓÔĎ ÉÍŃ, ËĎÔĎŇĎĹ ÂŐÄĹÔ ×Ů×ĎÄÉÔŘÓŃ × ĐŇÉÇĚÁŰĹÎÉÉ yaboot ÄĚŃ "
-"×ŮÂĎŇÁ ÜÔĎÇĎ \n"
-"×ÁŇÉÁÎÔÁ ÚÁÇŇŐÚËÉ.\n"
-"\n"
-"\n"
-" - ďÂŇÁÚ: üÔĎ ÂŐÄĹÔ ÉÍŃ ÚÁÇŇŐÖÁĹÍĎÇĎ ŃÄŇÁ. ďÂŮŢÎĎ ÜÔĎ vmlinux ÉĚÉ \n"
-"×ÁŇÉÁÎÔ vmlinux ĐĚŔÓ ŇÁÓŰÉŇĹÎÉĹ.\n"
-"\n"
-"\n"
-" - Root: ëĎŇÎĹ×ĎĹ ŐÓÔŇĎĘÓÔ×Ď ÉĚÉ '/' ÄĚŃ ŐÓÔÁÎĎ×ËÉ Linux.\n"
-"\n"
-"\n"
-" \n"
-" - äĎĐĎĚÎÉÔŘ: ÷ ĎÂĎŇŐÄĎ×ÁÎÉÉ Apple, ÄĎĐĎĚÎĹÎÉĹ ŃÄŇÁ ŢÁÓÔĎ ÉÓĐĎĚŘÚŐĹÔÓŃ "
-"ŢÔĎÂŮ\n"
-"ĎÂĹÓĐĹŢÉÔŘ ÚÁĐŐÓË ×ÉÄĹĎ ĐĎÄÓÉÓÔĹÍŮ, ĚÉÂĎ ÄĚŃ ÜÍŐĚŃĂÉÉ ÎÁ ËĚÁ×ÉÁÔŐŇĹ ËÎĎĐĎË "
-"ÍŮŰÉ ÔÁË ËÁË\n"
-"2ÁŃ É 3ŃŃ ËÎĎĐËÁ ĎÔÓŐÔÓ×ŐŔÔ ÎÁ ĎÂŮŢÎŮČ Apple ÍŮŰÁČ. ÷ĎÔ ÎĹÓËĎĚŘËĎ \n"
-"ĐŇÉÍĹŇĎ×:\n"
-"\n"
-"\n"
-"\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-"\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
-"\n"
-"\n"
-" \n"
-" - Initrd: üÔĎÔ ĐÁŇÁÍĹÔŇ ÍĎÖĹÔ ÉÓĐĎĚŘÚĎ×ÁÔŘÓŃ ĚÉÂĎ ÄĚŃ ÚÁÇŇŐÚËÉ "
-"ĐĹŇ×ĎÎÁŢÁĚŘÎŮČ ÍĎÄŐĚĹĘ ÄĎ ÔĎÇĎ, ËÁË ÚÁÇŇŐÚĎŢÎĎĹ \n"
-"ŐÓÔŇĎĘÓÔ×Ď ÓÔÁÎĹÔ ÄĎÓÔŐĐÎŮÍ, ĚÉÂĎ ÄĚŃ ÚÁÇŇŐÚËÉ ĎÂŇÁÚÁ ramdisk ĐŇÉ ÚÁÇŇŐÚËĹ × "
-"Á×ÁŇÉĘÎĎĘ ÓÉÔŐÁĂÉÉ.\n"
-"\n"
-"\n"
-" - ňÁÚÍĹŇ Initrd: đĎ ŐÍĎĚŢÁÎÉŔ ŇÁÚÍĹŇ ramdisk ĎÂŮŢÎĎ 4096 ÂÁĘÔ. ĺÓĚÉ ×ÁÍ "
-"ĐĎÔŇĹÂŐĹÔÓŃ\n"
-"ŇÁÚÍĹÓÔÉÔŘ ÂďĚŘŰÉĘ ramdisk, ÔĎ ÔĎÇÄÁ ÉÓĐĎĚŘÚŐĹÔÓŃ ÜÔĎÔ ĐÁŇÁÍĹÔŇ.\n"
-"\n"
-"\n"
-" - ţÔĹÎÉĹ-ÚÁĐÉÓŘ: ĎÂŮŢÎĎ 'ËĎŇÎĹ×ĎĘ' ('root') ŇÁÚÄĹĚ ĐĹŇ×ĎÎÁŢÁĚŘÎĎ "
-"ĐĎÄËĚŔŢÁĹÔÓŃ × ŇĹÖÉÍĹ ÔĎĚŘËĎ-ŢÔĹÎÉĹ, ŢÔĎÂŮ ĐĎÚ×ĎĚÉÔŘ\n"
-"ĐŇĎ×ĹŇËŐ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ ĐĹŇĹÄ ĐĹŇĹČĎÄĎÍ ÓÉÓÔĹÍŮ × 'ŇÁÂĎŢĹĹ' ÓĎÓÔĎŃÎÉĹ. ÷ "
-"ÜÔĎÍ ĐÁŇÁÍĹÔŇĹ ×Ů ÍĎÖĹÔĹ ÜÔĎ ÉÚÍĹÎÉÔŘ.\n"
-"\n"
-"\n"
-" - NoVideo: ĺÓĚÉ ŇÁÂĎÔÁ ×ÉÄĹĎ ĐĎÄÓÉÓÔĹÍŮ Apple ÂŐÄĹÔ ÁÂÓĎĚŔÔÎĎ "
-"ÎĹŐÓÔĎĘŢÉ×ĎĘ, ÔĎ ×Ů ÍĎÖĹÔĹ\n"
-"×ŮÂŇÁÔŘ ÜÔĎÔ ĐÁŇÁÍĹÔŇ ÄĚŃ ÚÁÇŇŐÚËÉ × ŇĹÖÉÍĹ 'novideo', Ó ĐĎÄÄĹŇÖËĎĘ ŇĎÄÎĎÇĎ "
-"framebuffer .\n"
-"\n"
-"\n"
-" - đĎ ŐÍĎĚŢÁÎÉŔ: ÷ŮÂÉŇÁĹÔ ÜÔĎÔ ×ÁŇÉÁÎÔ ËÁË ×ŮÂĎŇ Linux, ŐÓÔÁÎĎ×ĚĹÎÎŮĘ ĐĎ "
-"ŐÍĎĚŢÁÎÉŔ. üÔĎ ×ŮĐĎĚÎŃĹÔÓŃ ĐŇĎÓÔŮÍ\n"
-"ÎÁÖÁÔÉĹÍ ENTER ÎÁ ĐŇÉÇĚÁŰĹÎÉĹ yaboot. üÔĎÔ ×ÁŇÉÁÎÔ ÂŐÄĹÔ ÔÁËÖĹ ×ŮÄĹĚĹÎ "
-"ÓÉÍ×ĎĚĎÍ '*', ĹÓĚÉ ×Ů ÎÁÖÍĹÔĹ\n"
-"TAB ÄĚŃ ĐŇĎÓÔÍĎÔŇÁ ×ÁŇÉÁÎÔĎ× ÚÁÇŇŐÚËÉ."
-
-#: ../../help.pm_.c:830
-#, fuzzy
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot - ÎÁŢÁĚŘÎŮĘ ÚÁÇŇŐÚŢÉË ÄĚŃ ĎÂĎŇŐÄĎ×ÁÎÉŃ NewWorld MacIntosh. ďÎ ÍĎÖĹÔ \n"
-"ÚÁÇŇŐÖÁÔŘ ĚÉÂĎ GNU/Linux, ĚÉÂĎ MacOS ÉĚÉ MacOSX, ĹÓĚÉ ĎÎÉ ĹÓÔŘ ÎÁ ×ÁŰĹÍ "
-"ËĎÍĐŘŔÔĹŇĹ.\n"
-"ďÂŮŢÎĎ ĎĐĹŇÁĂÉĎÎÎŮĹ ÓÉÓÔĹÍŮ ĎĐŇĹÄĹĚŃŔÔÓŃ É ŐÓÔÁÎÁ×ĚÉ×ÁŔÔÓŃ ËĎŇŇĹËÔÎĎ.\n"
-"ĺÓĚÉ ÜÔĎÇĎ ÎĹ ĐŇĎÉÚĎŰĚĎ, ×Ů ÍĎÖĹÔĹ ×ŇŐŢÎŐŔ ÄĎÂÁ×ÉÔŘ ÚÁĐÉÓŘ\n"
-"× ÜÔĎÍ ÜËŇÁÎĹ. âŐÄŘÔĹ ÁËËŐŇÁÔÎŮ ĐŇÉ ×ŮÂĎŇĹ ĐÁŇÁÍĹÔŇĎ×.\n"
-"\n"
-"\n"
-"ďÓÎĎ×ÎŮĹ ĐÁŇÁÍĹÔŇŮ Yaboot:\n"
-"\n"
-"\n"
-" - éÓČĎÄÎĎĹ ÓĎĎÂÝĹÎÉĹ: đŇĎÓÔĎĹ ÔĹÓÔËĎ×ĎĹ ÓĎĎÂÝĹÎÉĹ, ËĎÔĎŇĎĹ ĐĎËÁÚŮ×ÁĹÔÓŃ "
-"ĐĹŇĹÄ ĐŇÉÇĚÁŰĹÎÉĹÍ\n"
-"ÚÁÇŇŐÚŢÉËÁ.\n"
-"\n"
-"\n"
-" - úÁÇŇŐÚĎŢÎĎĹ ŐÓÔŇĎĘÓÔ×Ď: őËÁÚŮ×ÁĹÔ ÍĹÓÔĎ, × ËĎÔĎŇĎĹ ×Ů ČĎÔÉÔĹ ĐĎÍĹÓÔÉÔŘ "
-"ÉÎĆĎŇÍÁĂÉŔ, ÔŇĹÂŐŔÝŐŔÓŃ ÄĚŃ \n"
-"ÚÁÇŇŐÚËÉ GNU/Linux. ďÂŮŢÎĎ Ë ÜÔĎÍŐ ×Ů ŐÖĹ ÎÁÓÔŇÁÉ×ÁĹÔĹ ŇÁÚÄĹĚ bootstrap, "
-"ÄĚŃ \n"
-"ČŇÁÎĹÎÉŃ ÜÔĎĘ ÉÎĆĎÍÁŇĂÉÉ.\n"
-"\n"
-"\n"
-" - úÁÇŇŐÚËÁ ĎÔËŇŮÔÉŃ Firmware: ÷ ĎÔĚÉŢÉÉ ĎÔ LILO, × yaboot ÉÍĹĹÔÓŃ 2 "
-"ÚÁÄĹŇÖËÉ \n"
-". đĹŇ×ÁŃ ÚÁÄĹŇÖËÁ ÉÚÍĹŇŃĹÔÓŃ × ÓĹËŐÎÄÁČ É ÎÁ ÜÔĎÍ ÜÔÁĐĹ ×Ů ÍĎÖĹÔĹ "
-"×ŮÂÉŇÁÔŘ \n"
-"ÍĹÖÄŐ CD, OF ÚÁÇŇŐÚËĎĘ, MacOS ÉĚÉ Linux.\n"
-"\n"
-"\n"
-" - úÁÄĹŇÖËÁ ÚÁÇŇŐÚËÉ ŃÄŇÁ: üÔÁ ÚÁÄĹŇÖËÁ ÓČĎÄÎÁ Ó ÚÁÄĹŇÖËĎĘ ÚÁÇŇŐÚËÉ LILO. "
-"đĎÓĚĹ \n"
-"×ŮÂĎŇÁ Linux, Ő ×ÁÓ ÂŐÄĹÔ ÚÁÄĹŇÖËÁ × 0.1 ÓĹËŐÎÄŮ, ĐŇĹÖÄĹ ŢĹÍ ×ÁŰĹ\n"
-"ŃÄŇĎ ĐĎ ŐÍĎĚŢÁÎÉŔ ÂŐÄĹÔ ×ŮÂŇÁÎĎ.\n"
-"\n"
-"\n"
-" - ÷ËĚŔŢÉÔŘ ÚÁÇŇŐÚËŐ Ó CD?: ×ŮÂĎŇ ÜÔĎÇĎ ĐÁŇÍÁĹÔŇÁ ĐĎÚ×ĎĚÉÔ ÎÁÖÉÍÁÔŘ 'C' ÄĚŃ "
-"ÚÁÇŇŐÚËÉ Ó CD ×\n"
-"ĐĹŇ×ĎÍ ĐŇÉÇĚÁŰĹÎÉÉ ÚÁÇŇŐÚŢÉËÁ.\n"
-"\n"
-"\n"
-" - ÷ËĚŔŢÉÔŘ ÚÁÇŇŐÚËŐ OF?: ×ŮÂĎŇ ÜÔĎÇĎ ĐÁŇÁÍĹÔŇÁ ĐĎÚ×ĎĚÉÔ ×ÁÍ ÎÁÖÉÍÁÔŘ 'N' "
-"ÄĚŃ Open\n"
-"Firmware × ĐĹŇ×ĎÍ ĐŇÉÇĚÁŰĹÎÉÉ ÚÁÇŇŐÚŢÉËÁ.\n"
-"\n"
-"\n"
-" - ďó ĐĎ ŐÍĎĚŢÁÎÉŔ: ÷Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ, ËÁËÁŃ ďó ÂŐÄĹÔ ÚÁÇŇŐÖÁÔŘÓŃ ĐĎ "
-"ŐÍĎĚŢÁÎÉŔ ĐĎÓĚĹ ÉÓÔĹŢĹÎÉŃ ×ŇĹÍĹÎÉ ÚÁÄĹŇÖËÉ \n"
-"Firmware."
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-#, fuzzy
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-"÷ŮÂĹŇÉÔĹ ÖĹÓÔËÉĘ ÄÉÓË, ËĎÔĎŇŮĘ ×Ů ČĎÔÉÔĹ ĎŢÉÓÔÉÔŘ ÄĚŃ ŐÓÔÁÎĎ×ËÉ\n"
-"ÎĎ×ĎÇĎ ŇÁÚÄĹĚÁ Mandrake Linux. âŐÄŘÔĹ ĎÓÔĎŇĎÖÎŮ, ×ÓĹ ÄÁÎÎŮĹ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ "
-"ÂĹÚ ×ĎÚÍĎÖÎĎÓÔÉ\n"
-"×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ."
-
-#: ../../help.pm_.c:896
-#, fuzzy
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"îÁÖÍÉÔĹ ÎÁ \"OK\" ĹÓĚÉ ÷Ů ČĎÔÉÔĹ ŐÄÁĚÉÔŘ ×ÓĹ ÄÁÎÎŮĹ É\n"
-"ŇÁÚÄĹĚŮ, ÓŐÝĹÓÔ×ŐŔÝÉĹ ÎÁ ÜÔĎÍ ÖĹÓÔËĎÍ ÄÉÓËĹ. âŐÄŘÔĹ ĎÓÔĎŇĎÖÎŮ, ĐĎÓĚĹ ÎÁÖÁÔÉŃ "
-"ÎÁ \"OK\", ÷Ů\n"
-"ÎĹ ÓÍĎÖĹÔĹ ×ĎÓÓÔÁÎĎ×ÉÔŘ ÎÉËÁËŐŔ ÉÎĆĎŇÍÁĂÉŔ É ŇÁÚÄĹĚŮ, ÓŐÝĹÓÔ×ŐŔÝÉĹ ÎÁ ÜÔĎÍ "
-"ÖĹÓÔËĎÍ ÄÉÓËĹ,\n"
-"×ËĚŔŢÁŃ ×ÓŔ ÉÎĆĎŇÍÁĂÉŔ Windows.\n"
-"\n"
-"\n"
-"îÁÖÍÉÔĹ ÎÁ \"ďÔÍĹÎÁ\" ÄĚŃ ĎÔÍĹÎŮ ÜÔĎĘ ĎĐĹŇÁĂÉÉ ÂĹÚ ĐĎÔĹŇÉ ÄÁÎÎŮČ É "
-"ŇÁÚÄĹĚĎ× \n"
-"ÎÁ ÜÔĎÍ ÖĹÓÔËĎÍ ÄÉÓËĹ."
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr ""
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"÷Ů ×ŮÂŇÁĚÉ ÓĚĹÄŐŔÝÉĘ ÓĹŇ×ĹŇ(Á): %s\n"
-"\n"
-"\n"
-"üÔÉ ÓĹŇ×ĹŇÁ ÂŐÄŐÔ ÚÁĐŐÝĹÎŮ ĐĎ ŐÍĎĚŢÁÎÉŔ. ÷ ÎÉČ ÎĹ ĎÂÎÁŇŐÖĹÎĎ ĐŇĎÂĚĹÍ Ó "
-"ÂĹÚĎĐÁÓÎĎÓÔŘŔ\n"
-", ÎĎ, ×ĎÚÍĎÖÎĎ, ÎĹÓËĎĚŘËĎ ÎĎ×ŮČ ĐŇĎÂĚĹÍ ÂŐÄŐÔ ĎÂÎÁŇŐÖĹÎŮ. ÷ ÜÔĎÍ ÓĚŐŢÁĹ ×ÁÍ "
-"ÓĚĹÄŐĹÔ ĎÂÎĎ×ÉÔŘ ÉČ ÎĹÍĹÄĚĹÎÎĎ\n"
-".\n"
-"\n"
-"\n"
-"÷Ů Ő×ĹŇĹÎŮ, ŢÔĎ ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ÜÔÉ ÓĹŇ×ĹŇÁ?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "îĹ×ĎÚÍĎÖÎĎ ÉÓĐĎĚŘÚĎ×ÁÔŘ broadcast ÂĹÚ NIS ÄĎÍĹÎÁ"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "÷ÓÔÁ×ŘÔĹ ĎÔĆĎŇÍÁÔÉŇĎ×ÁÎÎŐŔ ĐĎÄ FAT ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "üÔÁ ÄÉÓËĹÔÁ ÎĹ ĎÔĆĎŇÍÁÔÉŇĎ×ÁÎÁ ĐĎÄ FAT"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"ţÔĎÂŮ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÓĎČŇÁÎĹÎÎŮĘ ×ŮÂĎŇ ĐÁËĹÔĎ×, ÚÁĐŐÓÔÉÔĹ ŐÓÔÁÎĎ×ËŐ Ó "
-"ĐÁŇÁÍĹÔŇĎÍ, ÎÁĐŇÉÍĹŇ ``linux defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "ďŰÉÂËÁ ŢÔĹÎÉŃ ĆÁĘĚÁ %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"îĹËĎÔĎŇŮĹ ŐÓÔŇĎĘÓÔ×Á ÎÁ ×ÁŰĹÍ ËĎÍĐŘŔÔĹŇĹ ÄĚŃ ŇÁÂĎÔŮ ÎŐÖÄÁŔÔÓŃ × ``ŇĎÄÎŮČ'' "
-"ÄŇÁĘ×ĹŇÁČ.\n"
-"÷Ů ÍĎÖĹÔĹ ÎÁĘÔÉ ÉÎĆĎŇÍÁĂÉŔ Ď ÎÉČ ÎÁ: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"ő ×ÁÓ ÄĎĚÖĹÎ ÂŮÔŘ ËĎŇÎĹ×ĎĘ ŇÁÚÄĹĚ.\n"
-"äĚŃ ÜÔĎÇĎ ÓĎÚÄÁĘÔĹ ŇÁÚÄĹĚ (ÉĚÉ ŐËÁÖÉÔĹ ŐÖĹ ÓŐÝĹÓÔ×ŐŔÝÉĘ).\n"
-"úÁÔĹÍ ×ŮÂĹŇÉÔĹ ``ôĎŢËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ'' É ŐÓÔÁÎĎ×ÉÔĹ ĹĹ × `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "ő ×ÁÓ ÄĎĚÖĹÎ ÂŮÔŘ ŇÁÚÄĹĚ swap"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"ő ×ÁÓ ÎĹÔ ŇÁÚÄĹĚÁ swap\n"
-"\n"
-"÷ÓĹ-ÔÁËÉ ĐŇĎÄĎĚÖÉÔŘ?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "ő ×ÁÓ ÄĎĚÖĹÎ ÂŮÔŘ ŇÁÚÄĹĚ swap"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Ó×ĎÂĎÄÎĎĹ ÍĹÓÔĎ"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "îĹÄĎÓÔÁÔĎŢÎĎ Ó×ĎÂĎÄÎĎÇĎ ÍĹÓÔÁ ÄĚŃ ŇÁÚÍĹÝĹÎÉŃ ÎĎ×ŮČ ŇÁÚÄĹĚĎ×"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĘ ŇÁÚÄĹĚ"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "îĹÔ ÓŐÝĹÓÔ×ŐŔÝÉČ ŇÁÚÄĹĚĎ× ÄĚŃ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ŇÁÚÄĹĚ Windows ÄĚŃ loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "ëĎÔĎŇŮĘ ŇÁÚÄĹĚ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "÷ŮÂĹŇÉÔĹ ŇÁÚÍĹŇŮ"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "ňÁÚÍĹŇ ËĎŇÎĹ×ĎÇĎ ŇÁÚÄĹĚÁ × MB: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "ňÁÚÍĹŇ ŇÁÚÄĹĚÁ swap × MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Ó×ĎÂĎÄÎĎĹ ÍĹÓÔĎ ŇÁÚÄĹĚÁ Windows"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "ňÁÚÍĹŇ ËÁËĎÇĎ ŇÁÚÄĹĚÁ ×Ů ČĎÔÉÔĹ ÉÚÍĹÎÉÔŘ?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "÷ŮŢÉÓĚĹÎÉĹ ÇŇÁÎÉĂ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ Windows"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"đŇĎÇŇÁÍÍÁ ÉÚÍĹÎĹÎÉŃ ŇÁÚÍĹŇÁ ŇÁÚÄĹĚĎ× FAT ÎĹ ÍĎÖĹÔ ĎÂŇÁÂĎÔÁÔŘ ŇÁÚÄĹĚ, \n"
-"ĐŇĎÉÚĎŰĚÁ ÓĚĹÄŐŔÝÁŃ ĎŰÉÂËÁ: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"÷ÁŰ ŇÁÚÄĹĚ Windows ÓĚÉŰËĎÍ ĆŇÁÇÍĹÎÔÉŇĎ×ÁÎ, ÚÁĐŐÓÔÉÔĹ ÓÎÁŢÁĚÁ ``defrag'' "
-
-#: ../../install_interactive.pm_.c:137
-#, fuzzy
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"÷îéíáîéĺ!\n"
-"\n"
-"óĹĘŢÁÓ DrakX ÄĎĚÖĹÎ ÉÚÍĹÎÉÔŘ ŇÁÚÍĹŇ ×ÁŰĹÇĎ ŇÁÚÄĹĚÁ Windows. âŐÄŘÔĹ "
-"ĎÓÔĎŇĎÖÎŮ: ÜÔÁ ĎĐĹŇÁĂÉŃ ĎĐÁÓÎÁ. ÷ŮĘÄÉÔĹ ÉÚ ĐŇĎĂĹÄŐŇŮ ŐÓÔÁÎĎ×ËÉ É \n"
-"ÚÁĐŐÓÔÉÔĹ scandisk ĐĎÄ Windows, ĹÓĚÉ ×Ů ÎĹ ÓÄĹĚÁĚÉ ÜÔĎ ÄĎ ÓÉČ ĐĎŇ (É \n"
-"ÖĹĚÁÔĹĚŘÎĎ defrag), Á ÚÁÔĹÍ ×ĹŇÎÉÔĹÓŘ Ë ŐÓÔÁÎĎ×ËĹ. óÄĹĚÁĘÔĹ ÔÁËÖĹ \n"
-"ŇĹÚĹŇ×ÎŐŔ ËĎĐÉŔ ÄÁÎÎŮČ.\n"
-"ĺÓĚÉ ÇĎÔĎ×Ů, ÎÁÖÍÉÔĹ Ok."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "ëÁËĎĘ ŇÁÚÍĹŇ ×Ů ČĎÔÉÔĹ ÓĎČŇÁÎÉÔŘ ÄĚŃ windows"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "ŇÁÚÄĹĚ %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "ÉÚÍĹÎĹÎÉĹ ŇÁÚÍĹŇÁ FAT ĐŇĎ×ÁĚÉĚĎÓŘ: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"îĹÔ ŇÁÚÄĹĚĎ× FAT ÄĚŃ ÉÚÍĹÎĹÎÉŃ ŇÁÚÍĹŇÁ ÉĚÉ ŇÁÚÍĹÝĹÎÉŃ loopback (ÉĚÉ ĎÓÔÁĚĎÓŘ "
-"ÎĹÄĎÓÔÁÔĎŢÎĎ ÍĹÓÔÁ)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "ďŢÉÓÔÉÔŘ ×ĹÓŘ ÄÉÓË"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "őÄÁĚÉÔŘ Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"ő ×ÁÓ ÎĹÓËĎĚŘËĎ ÖĹÓÔËÉČ ÄÉÓËĎ×. îÁ ËÁËĎĘ ÉÚ ÎÉČ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ Linux?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "÷óĺ ÓŐÝĹÓÔ×ŐŔÝÉĹ ŇÁÚÄĹĚŮ É ÉČ ÄÁÎÎŮĹ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ ÎÁ ÄÉÓËĹ %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "óĐĹĂÉÁĚŘÎĎĹ ŇÁÚÂÉĹÎÉĹ ÄÉÓËÁ"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "éÓĐĎĚŘÚŐĘÔĹ fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"ôĹĐĹŇŘ ÍĎÖÎĎ ÓÄĹĚÁÔŘ ŇÁÚÂÉĹÎÉĹ %s.\n"
-"đĎ ÚÁ×ĹŇŰĹÎÉÉ ÎĹ ÚÁÂŐÄŘÔĹ ÓĎČŇÁÎÉÔŘ ĐŇÉ ĐĎÍĎÝÉ `w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "ő ×ÁÓ ÎĹÄĎÓÔÁÔĎŢÎĎ ÍĹÓÔÁ ÎÁ ×ÁŰĹÍ ŇÁÚÄĹĚĹ Windows"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "îĹ ÎÁĘÄĹÎĎ ÍĹÓÔÁ ÄĚŃ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "íÁÓÔĹŇ ŇÁÚÂÉĹÎÉŃ ÄÉÓËÁ ÉÚ DrakX ÎÁŰĹĚ ÓĚĹÄŐŔÝÉĹ ŇĹŰĹÎÉŃ:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "ňÁÚÂÉĹÎÉĹ ÎÁ ŇÁÚÄĹĚŮ ÎĹ ĐŇĎŰĚĎ: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "áËÔÉ×ÉÚÁĂÉŃ ÓĹÔÉ"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "äĹÁËÔÉ×ÉÚÁĂÉŃ ÓĹÔÉ"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ, ÎĎ Ń ÎĹ ÚÎÁŔ, ËÁË ĹĹ ËĎŇŇĹËÔÎĎ ĎÂŇÁÂĎÔÁÔŘ.\n"
-"đŇĎÄĎĚÖÁĘÔĹ ÎÁ Ó×ĎĘ ÓÔŇÁČ É ŇÉÓË."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "äŐÂĚÉŇĎ×ÁÎÉĹ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"îĹËĎÔĎŇŮĹ ×ÁÖÎŮĹ ĐÁËĹÔŮ ÎĹ ŐÓÔÁÎĎ×ÉĚÉÓŘ ËĎŇŇĹËÔÎĎ.\n"
-"ěÉÂĎ ×ÁŰ ÄÉÓËĎ×ĎÄ CD, ĚÉÂĎ CDROM ÎĹ × ĐĎŇŃÄËĹ.\n"
-"đŇĎ×ĹŇŘÔĹ cdrom ÎÁ ŐÓÔÁÎĎ×ĚĹÎÎĎÍ ËĎÍĐŘŔÔĹŇĹ ËĎÍÁÎÄĎĘ \"rpm -qpl Mandrake/"
-"RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "äĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ × %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "äÉÓËĎ×ĎÄ ÎĹÄĎÓÔŐĐĹÎ"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "đĹŇĹČĎÄ ÎÁ ÜÔÁĐ `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"îÁ ×ÁŰĹĘ ÓÉÓÔĹÍĹ ÍÁĚĎ ŇĹÓŐŇÓĎ×. íĎÇŐÔ ×ĎÚÎÉËÎŐÔŘ ÓĚĎÖÎĎÓÔÉ ĐŇÉ ŐÓÔÁÎĎ×ËĹ\n"
-"Mandrake Linux. ĺÓĚÉ ÜÔĎ ÓĚŐŢÉÔÓŃ, ×ĎÓĐĎĚŘÚŐĘÔĹÓŘ ÔĹËÓÔĎ×ĎĘ ŐÓÔÁÎĎ×ËĎĘ. äĚŃ "
-"ÜÔĎÇĎ\n"
-"ÎÁÖÍÉÔĹ `F1' ĐŇÉ ÚÁÇŇŐÚËĹ Ó CDROM, É ÚÁÔĹÍ ÎÁÂĹŇÉÔĹ `text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "ëĚÁÓÓ őÓÔÁÎĎ×ËÉ"
-
-#: ../../install_steps_gtk.pm_.c:162
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĎÄÉÎ ÉÚ ÓĚĹÄŐŔÝÉČ ËĚÁÓÓĎ× ŐÓÔÁÎĎ×ËÉ:"
-
-#: ../../install_steps_gtk.pm_.c:228
-#, 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:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"ĺÓĚÉ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ĎÂßĹÍ, ÍĹÎŘŰÉĘ ŢĹÍ ÜÔĎÔ, ŐËÁÖÉÔĹ ĐŇĎĂĹÎÔ \n"
-"ĐÁËĹÔĎ×, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ.\n"
-"\n"
-"đŇÉ ÎÉÚËÉČ ĐŇĎĂĹÎÔÁČ ŐÓÔÁÎĎ×ŃÔÓŃ ÔĎĚŘËĎ ÎÁÉÂĎĚĹĹ ×ÁÖÎŮĹ ĐÁËĹÔŮ;\n"
-"ŐËÁÚÁÎÉĹ 100%% ĐŇÉ×ĹÄĹÔ Ë ŐÓÔÁÎĎ×ËĹ ×ÓĹČ ×ŮÂŇÁÎÎŮČ ĐÁËĹÔĎ×."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"ő ×ÁÓ ĹÓÔŘ ÍĹÓÔĎ ÎÁ ÄÉÓËĹ ÔĎĚŘËĎ ÄĚŃ %d%% ÉÚ ÜÔÉČ ĐÁËĹÔĎ×.\n"
-"\n"
-"ĺÓĚÉ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ÍĹÎŘŰĹ, ŢĹÍ ÜÔĎ, ŐËÁÖÉÔĹ × ĐŇĎĂĹÎÔÁČ ÄĎĚŔ,\n"
-"ĐÁËĹÔĎ×, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ.\n"
-"đŇÉ ÎÉÚËÉČ ĐŇĎĂĹÎÔÁČ ŐÓÔÁÎĎ×ŃÔÓŃ ÔĎĚŘËĎ ÎÁÉÂĎĚĹĹ ×ÁÖÎŮĹ ĐÁËĹÔŮ;\n"
-"ŐËÁÚÁÎÉĹ %d%% ĐŇÉ×ĹÄĹÔ Ë ŐÓÔÁÎĎ×ËĹ ÎÁÉÂĎĚŘŰĹÇĎ ×ĎÚÍĎÖÎĎÇĎ ŢÉÓĚÁ ĐÁËĹÔĎ×."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "âĎĚĹĹ ÔĎŢÎŮĘ ÉČ ×ŮÂĎŇ ÍĎÖÎĎ ÂŐÄĹÔ ÓÄĹĚÁÔŘ ÎÁ ÓĚĹÄŐŔÝĹÍ ŰÁÇĹ."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "đŇĎĂĹÎÔ ĐÁËĹÔĎ× ÄĚŃ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "÷ŮÂĎŇ ÇŇŐĐĐŮ ĐÁËĹÔĎ×"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "÷ŮÂĎŇ ĎÔÄĹĚŘÎŮČ ĐÁËĹÔĎ×"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "ďÂÝÉĘ ĎÂßĹÍ: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "đĚĎČĎĘ ĐÁËĹÔ"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "éÍŃ: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "÷ĹŇÓÉŃ: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "ňÁÚÍĹŇ: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "÷ÁÖÎĎÓÔŘ: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"îĹĚŘÚŃ ×ŮÂÉŇÁÔŘ ÜÔĎÔ ĐÁËĹÔ, ĐĎÓËĎĚŘËŐ ÄĚŃ ĹÇĎ ŐÓÔÁÎĎ×ËÉ ÎĹÄĎÓÔÁÔĎŢÎĎ ÍĹÓÔÁ"
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "âŐÄŐÔ ŐÓÔÁÎĎ×ĚĹÎŮ ÓĚĹÄŐŔÝÉĹ ĐÁËĹÔŮ"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "âŐÄŐÔ ŐÄÁĚĹÎŮ ÓĚĹÄŐŔÝÉĹ ĐÁËĹÔŮ"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "÷Ů ÎĹ ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ/ĎÔÍĹÎÉÔŘ ×ŮÂĎŇ ÜÔĎÇĎ ĐÁËĹÔÁ"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "üÔĎ ĎÂŃÚÁÔĹĚŘÎŮĘ ĐÁËĹÔ, ĎÔ ÎĹÇĎ ÎĹĚŘÚŃ ĎÔËÁÚÁÔŘÓŃ"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "îĹĚŘÚŃ ĎÔÍĹÎÉÔŘ ×ŮÂĎŇ ÜÔĎÇĎ ĐÁËĹÔÁ, ĎÎ ŐÖĹ ŐÓÔÁÎĎ×ĚĹÎ."
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"üÔĎÔ ĐÁËĹÔ ÓĚĹÄŐĹÔ ĎÂÎĎ×ÉÔŘ\n"
-"÷Ů Ő×ĹŇĹÎŮ, ŢÔĎ ČĎÔÉÔĹ ĎÔÍĹÎÉÔŘ ĹÇĎ ×ŮÂĎŇ?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "îĹĚŘÚŃ ĎÔÍĹÎÉÔŘ ×ŮÂĎŇ ÜÔĎÇĎ ĐÁËĹÔÁ. ďÎ ÄĎĚÖĹÎ ÂŮÔŘ ĎÂÎĎ×ĚĹÎ"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "đĎËÁÚÁÔŘ Á×ÔĎÍÁÔÉŢĹÓËÉ×ŮÂŇÁÎÎŮĹ ĐÁËĹÔŮ"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "őÓÔÁÎĎ×ËÁ"
-
-#: ../../install_steps_gtk.pm_.c:466
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "óĎČŇÁÎÉÔŘ ÎÁ ÄÉÓËĹÔĹ"
-
-#: ../../install_steps_gtk.pm_.c:467
-#, fuzzy
-msgid "Updating package selection"
-msgstr "óĎČŇÁÎÉÔŘ ×ŮÂĎŇ ĐÁËĹÔĎ×"
-
-#: ../../install_steps_gtk.pm_.c:472
-#, fuzzy
-msgid "Minimal install"
-msgstr "÷ŮČĎÄ ÉÚ ĐŇĎĂĹÓÓÁ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "÷ŮÂĎŇ ĐÁËĹÔĎ× ÄĚŃ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "éÄĹÔ ŐÓÔÁÎĎ×ËÁ"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "óÍĹÔÁ"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "ďÓÔÁ×ŰĹĹÓŃ ×ŇĹÍŃ "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "đĎÖÁĚŐĘÓÔÁ, ĐĎÄĎÖÄÉÔĹ, ĐĎÄÇĎÔÁ×ĚÉ×ÁĹÔÓŃ ŐÓÔÁÎĎ×ËÁ"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d ĐÁËĹÔĎ×"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "őÓÔÁÎĎ×ËÁ ĐÁËĹÔÁ %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "đŇÉÎŃÔŘ"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "ďÔËÁÚÁÔŘÓŃ"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"óÍĹÎÉÔĹ Cd-Rom!\n"
-"\n"
-"÷ÓÔÁ×ŘÔĹ Cd-Rom ĐĎÄ ÎÁÚ×ÁÎÉĹÍ \"%s\" × ĐŇÉ×ĎÄ É ÎÁÖÍÉÔĹ Ok.\n"
-"ĺÓĚÉ Ő ×ÁÓ ĹÇĎ ÎĹÔ, ÎÁÖÍÉÔĹ ďÔÍĹÎÉÔŘ (Cancel), ŢÔĎÂŮ ÉÚÂĹÖÁÔŘ ŐÓÔÁÎĎ×ËÉ Ó "
-"ÜÔĎÇĎ ÄÉÓËÁ."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "÷ÓĹ ŇÁ×ÎĎ ĐŇĎÄĎĚÖÁÔŘ?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ ĐĎĚŐŢĹÎÉŃ ĐÁËĹÔĎ×:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "đŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔĎ× ĐŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"÷ÎÉÍÁÎÉĹ\n"
-"đĎÖÁĚŐĘÓÔÁ, ×ÎÉÍÁÔĹĚŘÎĎ ĐŇĎŢÉÔÁĘÔĹ ŐÓĚĎ×ÉŃ, ĐŇÉ×ĹÄĹÎÎŮĹ ÎÉÖĹ. ĺÓĚÉ ×Ů ÎĹ "
-"ÓĎÇĚÁÓÎŮ Ó ĚŔÂĎĘ ŢÁÓÔŘŔ\n"
-", ×ÁÍ ÎĹ ŇÁÚŇĹŰÁĹÔÓŃ ŐÓÔÁÎÁ×ĚÉ×ÁÔŘ ÓĚĹÄŐŔÝÉĘ CD. îÁÖÍÉÔĹ 'ďÔËÁÚÁÔŘÓŃ' \n"
-"ÄĚŃ ĐŇĎÄĎĚÖĹÎÉŃ ŐÓÔÁÎĎ×ËÉ ÂĹÚ ÜÔĎÇĎ ÎĎÓÉÔĹĚŃ.\n"
-"\n"
-"\n"
-"îĹËĎÔĎŇŮĹ ËĎÍĐĎÎĹÎÔŮ, ÓĎÄĹŇÖÁÝÉĹĹÓŃ ÎÁ ÓĚĹÄŐŔÝĹÍ CD ÎĹ ŇŐËĎ×ĎÄÓÔ×ŐŔÔÓŃ\n"
-"ĚÉĂĹÎÚÉĹĘ GPL ÉĚÉ ĐĎÄĎÂÎŮÍÉ ÓĎÇĚÁŰĹÎÉŃÍÉ. ëÁÖÄŮĘ ÔÁËĎĘ ËĎÍĐĎÎĹÎÔ\n"
-"ŇŐËĎ×ĎÄÓÔ×ŐĹÔÓŃ ÎĹĐĎÓŇĹÄÓÔ×ĹÎÎĎ ŐÓĚĎ×ÉŃÍÉ ĹÇĎ ĚÉĂĹÎÚÉÉ. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "÷Ů ČĎÔÉÔĹ ĐĹŇĹÚÁĐŐÓÔÉÔŘ ÓĹÔŘ"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "ěÉĂĹÎÚÉĎÎÎĎĹ ÓĎÇĚÁŰĹÎÉĹ"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"÷×ĹÄĹÎÉĹ\n"
-"\n"
-"ďĐĹŇÁĂÉĎÎÎÁŃ ÓÉÓÔĹÍÁ É ŇÁÚĚÉŢÎŮĹ ËĎÍĐĎÎĹÎÔŮ, ÄĎÓÔŐĐÎŮĹ × ÄÉÓÔŇÉÂŐÔÉ×Ĺ "
-"Mandrake Linux \n"
-"ÄÁĚĹĹ ÂŐÄŐÔ ÎÁÚŮ×ÁÔŘÓŃ \"đŇĎÇŇÁÍÍÎŮĹ đŇĎÄŐËÔŮ\". đŇĎÇŇÁÍÍÎŮĹ ĐŇĎÄŐËÔŮ "
-"ĎÔÎĎÓŃÔÓŃ, ÎĎ ÎĹ ĎÇŇÁÎÉŢÉ×ÁŔÔÓŃ \n"
-"ÎÁÂĎŇ ĐŇĎÇŇÁÍÍ, ÍĹÔĎÄĎ×, ĐŇÁ×ÉĚ É ÄĎËŐÍĹÎÔÁĂÉÉ, ĎÔÎĎÓŃÝÉÍÓŃ Ë ĎĐĹŇÁĂÉĎÎÎĎĘ \n"
-"ÓÉÓÔĹÍĹ É ŇÁÚĚÉŢÎŮÍ ËĎÍĐĎÎĹÎÔÁÍ ÄÉÓÔŇÉÂŐÔÉ×Á Mandrake Linux.\n"
-"\n"
-"\n"
-"1. ěÉĂĹÚÉĎÎÎĎĹ ÓĎÇĚÁŰĹÎÉĹ\n"
-"\n"
-"đĎÖÁĚŐĘÓÔÁ, ĐŇĎŢÉÔÁĘÔĹ ÜÔĎÔ ÄĎËŐÍĹÎÔ ×ÎÉÍÁÔĹĚŘÎĎ. üÔĎÔ ÄĎËŐÍĹÎÔ Ń×ĚŃĹÔÓŃ "
-"ĚÉĂĹÎÚÉĎÎÎŮÍ ÓĎÇĚÁŰĹÎÉĹÍ ÍĹÖÄŐ ÷ÁÍÉ É \n"
-"MandrakeSoft S.A., ËĎÔĎŇĎĹ ĐŇÉÍĹÎŃĹÔÓŃ Ë đŇĎÇŇÁÍÍÎŮÍ đŇĎÄŐËÔÁÍ.\n"
-"őÔÓÁÎÁ×ĚÉ×ÁŃ, ËĎĐÉŇŐŃ ÉĚÉ ÉÓĐĎĚŘÚŐŃ ĚŔÂŮÍ ĎÂŇÁÚĎÍ đŇĎÇŇÁÍÍŮÎĹ đŇĎÄŐËÔŮ, ÷Ů "
-"Ń×ÎĎ \n"
-"ĐŇÉÎÉÍÁĹÔĹ É ĐĎĚÎĎÓÔŘŔ ÓĎÇĚÁŰÁĹÔĹÓŘ ÓĚĹÄĎ×ÁÔŘ ÔĹŇÍÉÎÁÍ É ŐÓĚĎ×ÉŃÍ ÜÔĎĘ "
-"ěÉĂĹÎÚÉÉ. \n"
-"ĺÓĚÉ ÷Ů ÎĹ ÓĎÇĚÁÓÎŮ Ó ĚŔÂĎĘ ŢÁÓÔŘŔ ÄÁÎÎĎĘ ěÉĂĹÎÚÉÉ, ÷ÁÍ ÎĹ ŇÁÚŇĹŰÁĹÔÓŃ "
-"ŐÓÔÁÎÁ×ĚÉ×ÁÔŘ, ËĎĐÉŇĎ×ÁÔŘ ÉĚÉ ÉÓĐĎĚŘÚĎ×ÁÔŘ \n"
-"đŇĎÇŇÁÍÍÎŮĹ ĐŇĎÄŐËÔŮ. \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 Mandrake Linux 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\", \"Mandrake Linux\" 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:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "ëĚÁ×ÉÁÔŐŇÁ"
-
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ŇÁÓËĚÁÄËŐ ×ÁŰĹĘ ËĚÁ×ÉÁÔŐŇŮ"
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "đĎĚÎŮĘ ÓĐÉÓĎË ÄĎÓÔŐĐÎŮČ ËĚÁ×ÉÁÔŐŇ"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "ëÁËĎĘ ËĚÁÓÓ ŐÓÔÁÎĎ×ËÉ ×Ů ČĎÔÉÔĹ?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "őÓÔÁÎĎ×ËÁ/ďÂÎĎ×ĚĹÎÉĹ"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "üÔĎ ÎĎ×ÁŃ ŐÓÔÁ×Ď×ËÁ ÉĚÉ ĎÂÎĎ×ĚĹÎÉĹ?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "ňĹËĎÍĹÎÄŐĹÔÓŃ"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "üËÓĐĹŇÔ"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade"
-msgstr "ďÂÎĎ×ĚĹÎÉĹ"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "óĎČŇÁÎÉÔŘ ×ŮÂĎŇ ĐÁËĹÔĎ×"
-
-#: ../../install_steps_interactive.pm_.c:266
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "đĎÖÁĚŐĘÓÔÁ, ŐËÁÖÉÔĹ ÔÉĐ ×ÁŰĹĘ ÍŮŰÉ"
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "đĎŇÔ ÍŮŰÉ"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "őËÁÖÉĹÔ, Ë ËÁËĎÍŐ ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎĎÍŐ ĐĎŇÔŐ ĐĎÄËĚŔŢĹÎÁ ×ÁŰÁ ÍŮŰŘ."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "üÍŐĚŃĂÉŃ ËÎĎĐĎË ÍŮŰÉ"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "üÍŐĚŃĂÉ 2 ËÎĎĐĎË"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "üÍŐĚŃĂÉŃ 3 ËÎĎĐĎË"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "îÁÓÔŇĎĘËÁ ËÁŇÔ PCMCIA ..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "îÁÓÔŇĎĘËÁ IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "ÎĹÔ ÄĎÓÔŐĐÎŮČ ŇÁÚÄĹĚĎ×"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "đŇĎÓÍĎÔŇ ŇÁÚÄĹĚĎ× - ĐĎÉÓË ÔĎŢĹË ÍĎÎÔÉŇĎ×ÁÎÉŃ"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "÷ŮÂĹŇÉÔĹ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"îĹ ÍĎÇŐ ĐŇĎŢÉÔÁÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×, ĎÎÁ ÓĚÉŰËĎÍ ĐĎ×ŇĹÖÄĹÎÁ ÄĚŃ ÍĹÎŃ :(\n"
-"íĎÖÎĎ ĐĎĐŇĎÂĎ×ÁÔŘ ĎŢÉÓÔÉÔŘ ĐĚĎČÉĹ ŇÁÚÄĹĚŮ (÷óń éîćďňíáăéń ÂŐÄĹÔ ĐĎÔŇĹŃÎÁ!).\n"
-"äŇŐÇĎĘ ×ÁŇÉÁÎÔ - ÎĹ ŇÁÚŇĹŰÁÔŘ DrakX ÉÚÍĹÎŃÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×.\n"
-"(ĎŰÉÂËÁ %s)\n"
-"\n"
-"÷Ů ÓĎÇĚÁÓÎŮ ĐĎÔĹŇŃÔŘ ×ÓĹ ×ÁŰÉ ŇÁÚÄĹĚŮ?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake ÎĹ ÓÍĎÇ ËĎŇŇĹËÔÎĎ ĐŇĎŢÉÔÁÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×.\n"
-"đŇĎÄĎĚÖÁĘÔĹ ÎÁ Ó×ĎĘ ÓÔŇÁČ É ŇÉÓË!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "÷ŮÂĎŇ ŇÁÚÄĹĚĎ× ÄĚŃ ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "ëĎŇÎĹ×ĎĘ ŇÁÚÄĹĚ"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "ëÁËĎĘ ŇÁÚÄĹĚ Ń×ĚŃĹÔÓŃ ËĎŇÎĹ×ŮÍ (/) × ×ÁŰĹĘ ÓÉÓÔĹÍĹ?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "ţÔĎÂŮ ÍĎÄÉĆÉËÁĂÉŃ ÔÁÂĚÉĂŮ ŇÁÚÄĹĚĎ× ĎÓŐÝĹÓÔ×ÉĚÁÓŘ, ĐĹŇĹÚÁÇŇŐÚÉÔĹÓŘ"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "÷ŮÂĎŇ ŇÁÚÄĹĚĎ× ÄĚŃ ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "đŇĎ×ĹŇÉÔŘ ĐĚĎČÉĹ ÂĚĎËÉ?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ ŇÁÚÄĹĚĎ×"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "óĎÚÄÁÎÉĹ É ĆĎŇÍÁÔÉŇĎ×ÁÎÉĹ ĆÁĘĚÁ %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr ""
-"îĹÄĎÓÔÁÔĎŢÎŮĘ ŇÁÚÍĹŇ ×ÉŇÔŐÁĚŘÎĎĘ ĐÁÍŃÔÉ (swap) ÄĚŃ ŐÓÔÁÎĎ×ËÉ, ÎĹÍÎĎÇĎ "
-"Ő×ĹĚÉŢŘÔĹ"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "đŇĎÓÍĎÔŇ ÄĎÓÔŐĐÎŮČ ĐÁËĹÔĎ×"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "đĎÉÓË ĐÁËĹÔĎ× ÄĚŃ ĎÂÎĎ×ĚĹÎÉŃ"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr ""
-"îÁ ×ÁŰĹĘ ÓÉÓÔĹÍĹ ĎÓÔÁĚĎÓŘ ÎĹÄĎÓÔÁÔĎŢÎĎ ÍĹÓÔÁ ÄĚŃ ŐÓÔÁÎĎ×ËÉ ÉĚÉ ĎÂÎĎ×ĚĹÎÉŃ (%"
-"d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "đĎĚÎĎÓÔŘŔ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "íÉÎÉÍŐÍ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "ňĹËĎÍĹÎÄŐĹÔÓŃ (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:571
-#, fuzzy
-msgid "Load from floppy"
-msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ Ó ÄÉÓËĹÔŮ"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Loading from floppy"
-msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ Ó ÄÉÓËĹÔŮ"
-
-#: ../../install_steps_interactive.pm_.c:573
-#, fuzzy
-msgid "Package selection"
-msgstr "÷ŮÂĎŇ ÇŇŐĐĐŮ ĐÁËĹÔĎ×"
-
-#: ../../install_steps_interactive.pm_.c:578
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "÷ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "óĎČŇÁÎÉÔŘ ÎÁ ÄÉÓËĹÔĹ"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "÷ŮÂŇÁÎÎŮĘ ŇÁÚÍĹŇ ÂĎĚŘŰĹ, ŢĹÍ ÄĎÓÔŐĐÎĎ ÍĹÓÔÁ"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"ĺÓĚÉ Ő ×ÁÓ ĹÓÔŘ ×ÓĹ CD ÉÚ ĐŇÉ×ĹÄĹÎÎĎÇĎ ÎÉÖĹ ÓĐÉÓËÁ, ÎÁÖÍÉÔĹ Ok.\n"
-"ĺÓĚÉ Ő ×ÁÓ ÎĹÔ ÎÉ ĎÄÎĎÇĎ ÉÚ ÎÉČ, ÎÁÖÍÉÔĹ ďÔÍĹÎÉÔŘ.\n"
-"ĺÓĚÉ ĎÔÓŐÔÓÔ×ŐŔÔ ÔĎĚŘËĎ ĎÔÄĹĚŘÎŮĹ CD, ĎÔÍĹÎÉÔĹ ÉČ ×ŮÂĎŇ É ÎÁÖÍÉÔĹ Ok."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom ĐĎÄ ÉÍĹÎĹÍ \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "đĎÄÇĎÔĎ×ËÁ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"őÓÔÁÎĎ×ËÁ ĐÁËĹÔÁ %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "îÁÓÔŇĎĘËÁ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "÷ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "÷ÓÔÁ×ŘÔĹ ŢÉÓÔŐŔ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"ôĹĐĹŇŘ Ő ×ÁÓ ĹÓÔŘ ×ĎÚÍĎÖÎĎÓÔŘ ÚÁÇŇŐÚÉÔŘ ĐŇĎÇŇÁÍÍŮ ÄĚŃ ŰÉĆŇĎ×ÁÎÉŃ.\n"
-"\n"
-"÷îéíáîéĺ:\n"
-"\n"
-"÷ÓĚĹÄÓÔ×ÉĹ ĎÂÝÉČ ĎÇŇÁÎÉŢĹÎÉĘ, ÎÁËĚÁÄŮ×ÁĹÍŮČ ÎÁ ĐŇĎÇŇÁÍÍŮ ÜÔĎÇĎ ŇĎÄÁ É "
-"ŇÁÚĚÉŢÎŮČ\n"
-"× ŇÁÚÎŮČ ÚÁËĎÎĎÄÁÔĹĚŘÓÔ×ÁČ, ĐŇĎÄÁ×ĹĂ É/ÉĚÉ ĐĎĚŘÚĎ×ÁÔĹĚŘ ÜÔÉČ ĐŇĎÇŇÁÍÍ "
-"ÄĎĚÖĹÎ\n"
-"ÄĎĚÖĹÎ ŐÂĹÄÉÔŘÓŃ, ŢÔĎ ÚÁËĎÎŮ ĹÇĎ/ÉČ ÓÔŇÁÎ ŇÁÚŇĹŰÁŔÔ ÓËÁŢÉ×ÁÔŘ, ČŇÁÎÉÔŘ\n"
-"É/ÉĚÉ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÜÔÉ ĐŇĎÇŇÁÍÍŮ.\n"
-"\n"
-"ëŇĎÍĹ ÔĎÇĎ, ĐŇĎÄÁ×ĹĂ É/ÉĚÉ ĐĎĚŘÚĎ×ÁÔĹĚŘ ÄĎĚÖÎŮ ÂŮÔŘ Ő×ĹŇĹÎŮ, ŢÔĎ ÎĹ "
-"ÎÁŇŐŰÁŔÔ\n"
-"ÚÁËĎÎĎ× Ó×ĎĹĘ ÓÔŇÁÎŮ. ĺÓĚÉ ĐŇĎÄÁ×ĹĂ É/ÉĚÉ ĐĎĚŘÚĎ×ÁÔĹĚŘ ĐŇĹÓÔŐĐÁĹÔ\n"
-"ÜÔÉ ĐŇÉÍĹÎÉÍŮĹ Ë ÎĹÍŐ ÚÁËĎÎŮ, ĎÎ/ĎÎÉ ĐĎÎĹÓĹÔ ÓŐŇĎ×ŐŔ\n"
-"ĎÔ×ĹÔÓÔ×ĹÎÎĎÓÔŘ.\n"
-"\n"
-"îÉ × ËĎĹÍ ÓĚŐŢÁĹ ÎÉ Mandrakesoft, ÎÉ ĹĹ ÉÓĐĎĚÎÉÔĹĚÉ É ĐĎÓÔÁ×ÝÉËÉ ÎĹ "
-"ĎÔ×ĹŢÁŔÔ\n"
-"ÚÁ ÎĹĐĎÓŇĹÄÓÔ×ĹÎÎŮĘ, ÎĹĐŇŃÍĎĘ ÉĚÉ ÓĚŐŢÁĘÎŮĘ ×ŇĹÄ (×ËĚŔŢÁŃ, ÎĎ ÎĹ \n"
-"ĎÇŇÁÎÉŢÉ×ÁŃÓŘ ŐĐŐÝĹÎÎĎĘ ĐŇÉÂŮĚŘŔ, ĐŇĹŇŮ×ÁÎÉĹÍ ÂÉÚÎĹÓÁ, ĐĎÔĹŇĹĘ ËĎÍÍĹŇŢĹÓËÉČ "
-"ÄÁÎÎŮČ É\n"
-"ÄŇŐÇÉÍÉ ĐĎÔĹŇŃÍÉ, Á ÔÁËÖĹ ×ĎÚÍĎÖÎŮÍÉ ÓÁÎËĂÉŃÍÉ É ŰÔŇÁĆÁÍÉ ĐĎÄĚĹÖÁÝÉÍÉ "
-"ŐĐĚÁÔĹ\n"
-"ĐĎ ŇĹŰĹÎÉŔ ÓŐÄÁ) ×ŮÔĹËÁŔÝÉĘ ÉÚ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ, ×ĚÁÄĹÎÉŃ, ÉĚÉ ĐŇĎÓÔĎ\n"
-"ÓËÁŢÉ×ÁÎÉŃ ÜÔÉČ ĐŇĎÇŇÁÍÍ, Ë ËĎÔĎŇŮÍ ĐŇĎÄÁ×ĹĂ ÉĚÉ ĐĎĚŘÚĎ×ÁÔĹĚŘ ĐĎĚŐŢÉĚÉ\n"
-"ÄĎÓÔŐĐ ĐĎÓĚĹ ĐĎÄĐÉÓÁÎÉŃ ÎÁÓÔĎŃÝĹÇĎ ÓĎÇĚÁŰĹÎÉŃ.\n"
-"\n"
-"ó ĚŔÂŮÍÉ ×ĎĐŇĎÓÁÍÉ, ËÁÓÁŔÝÉÍÉÓŃ ÓĎÇĚÁŰĹÎÉŃ, ĎÂŇÁÝÁĘÔĹÓŘ: \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:926
-#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr "ó×ŃÚŘ Ó ÓĹŇ×ĹŇĎÍ ÄĚŃ ĐĎĚŐŢĹÎÉŃ ÓĐÉÓËÁ ÄĎÓÔŐĐÎŮČ ĐÁËĹÔĎ×"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "÷ŮÂĎŇ ÓĹŇ×ĹŇÁ ÄĚŃ ĐĎĚŐŢĹÎÉŃ ĐÁËĹÔĎ×"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "ó×ŃÚŘ Ó ÓĹŇ×ĹŇĎÍ ÄĚŃ ĐĎĚŐŢĹÎÉŃ ÓĐÉÓËÁ ÄĎÓÔŐĐÎŮČ ĐÁËĹÔĎ×"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "ëÁËĎ× ×ÁŰ ŢÁÓĎ×ĎĘ ĐĎŃÓ?"
-
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "÷ÁŰÉ ÓÉÓÔĹÍÎŮĹ ŢÁÓŮ ŐÓÔÁÎĎ×ĚĹÎŮ ÎÁ GMT?"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:980
-#, fuzzy
-msgid "NTP Server"
-msgstr "NIS ÓĹŇ×ĹŇ"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "őÄÁĚĹÎÎŮĘ CUPS ÓĹŇ×ĹŇ"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "îĹÔ ĐŇÉÎÔĹŇÁ"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "ĺÓÔŘ ĚÉ Ő ×ÁÓ ÄŇŐÇĎĘ?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "ňĹÚŔÍĹ"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "íŮŰŘ"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "ţÁÓĎ×ĎĘ ĐĎŃÓ"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "đŇÉÎÔĹŇ"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "÷ÎŐÔŇĹÎÎŃŃ ËÁŇÔÁ ISDN"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "ú×ŐËĎ×ÁŃ ËÁŇÔÁ"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV ËÁŇÔÁ"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-#, fuzzy
-msgid "NIS"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-#, fuzzy
-msgid "Local files"
-msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "úÁÄÁÎÉĹ ĐÁŇĎĚŃ ÄĚŃ root"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "îĹÔ ĐÁŇĎĚŃ"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "üÔĎÔ ĐÁŇĎĚŘ ÓĚÉŰËĎÍ ĐŇĎÓÔ (ĹÇĎ ÄĚÉÎÁ ÄĎĚÖÎÁ ÂŮÔŘ ÎĹ ÍĹÎĹĹ %d ÓÉÍ×ĎĚĎ×)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1128
-#, fuzzy
-msgid "LDAP Server"
-msgstr "NIS ÓĹŇ×ĹŇ"
-
-#: ../../install_steps_interactive.pm_.c:1134
-#, fuzzy
-msgid "Authentication NIS"
-msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ NIS"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS ÄĎÍĹÎ"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS ÓĹŇ×ĹŇ"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"ó ĐĎÍĎÝŘŔ ÓĐĹĂÉÁĚŘÎĎĘ ÚÁÇŇŐÚĎŢÎĎĘ ÄÉÓËĹÔŮ ×Ů ÓÍĎÖĹÔĹ ÚÁÇŇŐÖÁÔŘ Linux ×ÎĹ "
-"ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ ĎÂŮŢÎĎÇĎ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ. üÔĎ ÍĎÖĹÔ ÂŮÔŘ ĐĎĚĹÚÎĎ, ĹÓĚÉ "
-"×Ů ÎĹ ČĎÔÉÔĹ ŐÓÔÁÎÁ×ĚÉ×ÁÔŘ SILO, ÉĚÉ ĹÓĚÉ ÄŇŐÇÁŃ ĎĐĹŇÁĂÉĎÎÎÁŃ ÓÉÓÔĹÍÁ ŐÄÁĚÉÔ "
-"SILO, ÉĚÉ SILO ÎĹ ÓÍĎÖĹÔ ŇÁÂĎÔÁÔŘ × ×ÁŰĹĘ ËĎÎĆÉÇŐŇÁĂÉÉ. óĐĹĂÉÁĚŘÎÁŃ "
-"ÚÁÇŇŐÚĎŢÎÁŃ ÄÉÓËĹÔÁ ÔÁËÖĹ ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎÁ Ó ŇĹÍĎÎÔÎŮÍ ĎÂŇÁÚĎÍ "
-"Mandrake, ŢÔĎ ÎÁÍÎĎÇĎ ĎÂĚĹÇŢÉÔ ×ĎÓÓÔÁÎĎ×ĚĹÎÉĹ ÓÉÓÔĹÍŮ ĐĎÓĚĹ ÔŃÖĹĚŮČ ÓÂĎĹ×.\n"
-"\n"
-"ĺÓĚÉ ČĎÔÉÔĹ ÓĎÚÄÁÔŘ ÚÁÇŇŐÚĎŢÎŮĘ ÄÉÓË ÄĚŃ Ó×ĎĹĘ ÓÉÓÔĹÍŮ, ×ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ × "
-"ĐĹŇ×ŮĘ \n"
-"ÄÉÓËĎ×ĎÄ É ÎÁÖÍÉÔĹ \"Ok\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "đĹŇ×ŮĘ ÄÉÓËĎ×ĎÄ"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "÷ÔĎŇĎĘ ÄÉÓËĎ×ĎÄ"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "đŇĎĐŐÓÔÉÔŘ"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"óĐĹĂÉÁĚŘÎÁŃ ÚÁÇŇŐÚĎŢÎÁŃ ÄÉÓËĹÔÁ ĎÂĹÓĐĹŢÉ×ÁĹÔ ×ĎÚÍĎÖÎĎÓÔŘ ÚÁÇŇŐÚËÉ Linux ×ÎĹ "
-"ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ ĎÂŮŢÎĎÇĎ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ. üÔĎ ÍĎÖĹÔ ÂŮÔŘ ĐĎĚĹÚÎĎ, ĹÓĚÉ "
-"×Ů ÎĹ ČĎÔÉÔĹ ŐÓÔÁÎÁ×ĚÉ×ÁÔŘ LILO (ÉĚÉ grub) ÎÁ ×ÁŰĹĘ ÓÉÓÔĹÍĹ, ÉĚÉ ĹÓĚÉ ÄŇŐÇÁŃ "
-"ĎĐĹŇÁĂÉĎÎÎÁŃ ÓÉÓÔĹÍÁ ŐÄÁĚÉÔ LILO, ÉĚÉ LILO ÎĹ ÓÍĎÖĹÔ ŇÁÂĎÔÁÔŘ × ×ÁŰĹĘ "
-"ËĎÎĆÉÇŐŇÁĂÉÉ. óĐĹĂÉÁĚŘÎÁŃ ÚÁÇŇŐÚĎŢÎÁŃ ÄÉÓËĹÔÁ ÔÁËÖĹ ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎÁ "
-"Ó ŇĹÍĎÎÔÎŮÍ ĎÂŇÁÚĎÍ Mandrake, ŢÔĎ ÎÁÍÎĎÇĎ ĎÂĚĹÇŢÉÔ ×ĎÓÓÔÁÎĎ×ĚĹÎÉĹ ÓÉÓÔĹÍŮ "
-"ĐĎÓĚĹ ÔŃÖĹĚŮČ ÓÂĎĹ×.\n"
-"čĎÔÉÔĹ ÓĎÚÄÁÔŘ ÚÁÇŇŐÚĎŢÎŮĘ ÄÉÓË ÓĹĘŢÁÓ?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "đŇĎÓÔÉÔĹ, ÎĎ ÄÉÓËĎ×ĎÄ ÎĹÄĎÓÔŐĐĹÎ"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "÷ŮÂĹŇÉÔĹ ÄÉÓËĎ×ĎÄ, × ËĎÔĎŇĎÍ ÂŐÄĹÔ ÓĎÚÄÁ×ÁÔŘÓŃ ÚÁÇŇŐÚĎŢÎÁŃ ÄÉÓËĹÔÁ"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "÷ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "óĎÚÄÁÎÉĹ ÚÁÇŇŐÚĎŢÎĎĘ ÄÉÓËĹÔŮ"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "đĎÄÇĎÔĎ×ËÁ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "÷Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"ďŰÉÂËÁ ŐÓÔÁÎĎ×ËÉ aboot, \n"
-"ĐĎĐŇĎÂĎ×ÁÔŘ ÓÄĹĚÁÔŘ ŐÓÔÁÎĎ×ËŐ ÎÁÓÉĚŘÎĎ, ÄÁÖĹ ĹÓĚÉ ÜÔĎ ŇÁÚŇŐŰÉÔ ĐĹŇ×ŮĘ ŇÁÚÄĹĚ?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "őÓÔÁÎĎ×ËÁ ÍĹÎĹÄÖĹŇÁ ÚÁÇŇŐÚËÉ"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "őÓÔÁÎĎ×ËÁ bootloader ÎĹ ĐŇĎŰĚÁ. đŇĎÉÚĎŰĚÁ ÓĚĹÄŐŔÝÁŃ ĎŰÉÂËÁ:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, fuzzy, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-"÷ĎÚÍĎÖÎĎ, ×ÁÍ ÎŐÖÎĎ ÓÍĹÎÉÔŘ ×ÁŰ Open Firmware ÚÁÇŇŐÚĎŢÎĎĹ ŐÓÔŇĎĘÓÔ×Ď,\n"
-" ŢÔĎÂŮ ÚÁŇÁÂĎÔÁĚ ÎÁŢÁĚŘÎŮĘ ÚÁÇŇŐÚŢÉË. ĺÓĚÉ ×Ů ÎĹ ×ÉÄÉÔĹ ĐŇÉÇĚÁŰĹÎÉŃ "
-"ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ\n"
-" ĐŇÉ ĐĹŇĹÚÁÇŇŐÚËĹt, ÎÁÖÍÉÔĹ É ŐÄĹŇÖÉ×ÁĘÔĹ Command-Option-O-F ĐŇÉ "
-"ĐĹŇĹÚÁÇŇŐÚËĹ É ××ĹÄÉÔĹ:\n"
-" setenv boot-device $of_boot,\\\\:tbxi\n"
-" úÁÔĹÍ ××ĹÄÉÔĹ: shut-down\n"
-"đŇÉ ÓĚĹÄŐŔÝĹĘ ÚÁÇŇŐÚËĹ ×Ů Ő×ÉÄÉÔĹ ĐŇÉÇĚÁŰĹÎÉĹ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ."
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "÷ÓÔÁ×ŘÔĹ ŢÉÓÔŐŔ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "óĎÚÄÁÎÉĹ ÓÁÍĎ-ŐÓÔÁÎÁ×ĚÉ×ÁŔÝĹĘÓŃ ÄÉÓËĹÔŮ"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"îĹËĎÔĎŇŮĹ ŰÁÇÉ ÎĹ ÚÁ×ĹŇŰĹÎŮ.\n"
-"\n"
-"÷Ů ÄĹĘÓÔ×ÉÔĹĚŘÎĎ ČĎÔÉÔĹ ×ŮĘÔÉ ÓĹĘŢÁÓ?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"đĎÚÄŇÁ×ĚŃĹÍ, ŐÓÔÁÎĎ×ËÁ ÚÁ×ĹŇŰĹÎÁ.\n"
-"÷ŮÎŘÔĹ ÚÁÇŇŐÚĎŢÎŮĘ ÄÉÓË É ÎÁÖÍÉÔĹ enter ÄĚŃ ĐĹŇĹÚÁÇŇŐÚËÉ.\n"
-"\n"
-"\n"
-"úÁ ÉÎĆĎŇÍÁĂÉĹĘ Ď ÉÓĐŇÁ×ĚĹÎÉŃČ ÄÁÎÎĎÇĎ ×ŮĐŐÓËÁ Mandrake Linux,\n"
-"ĎÂŇÁÝÁĘÔĹÓŘ ÎÁ \n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"éÎĆĎŇÍÁĂÉŃ Ď ÎÁÓÔŇĎĘËĹ ×ÁŰĹĘ ÓÉÓÔĹÍŮ ĹÓÔŘ × ĐĎÓĚĹ-ŐÓÔÁÎĎ×ĎŢÎĎĘ\n"
-"ÇĚÁ×Ĺ ×ÁŰĹÇĎ ňŐËĎ×ĎÄÓÔ×Á đĎĚŘÚĎ×ÁÔĹĚŃ ÉÚ ďĆÉĂÉÁĚŘÎĎÇĎ Mandrake Linux."
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "óĎÚÄÁÎÉĹ ÓÁÍĎ-ŐÓÔÁÎÁ×ĚÉ×ÁŔÝĹĘÓŃ ÄÉÓËĹÔŮ"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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:1361
-msgid "Automated"
-msgstr "á×ÔĎÍÁÔÉŢĹÓËÉĘ"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "đĎ×ÔĎŇÉÔŘ"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "óĎČŇÁÎÉÔŘ ×ŮÂĎŇ ĐÁËĹÔĎ×"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "őÓÔÁÎĎ×ËÁ Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> ÍĹÖÄŐ ÜĚĹÍĹÎÔÁÍÉ | <Space> ×ŮÂĎŇ | <F12> ÓĚĹÄŐŔÝÉĘ "
-"ÜËŇÁÎ "
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "ĎÔÓŐÔÓ×ŐĹÔ kdesy"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "÷ŮÂĹŇÉÔĹ ÄĹĘÓÔ×ÉĹ"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "đŇĎÄ×ÉÎŐÔŮĘ"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "đĎÄĎÖÄÉÔĹ, ĐĎÖÁĚŐĘÓÔÁ"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "éÎĆĎŇÍÁĂÉŃ"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "ňÁÚ×ĹŇÎŐÔŘ ÄĹŇĹ×Ď"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "ó×ĹŇÎŐÔŘ ÄĹŇĹ×Ď"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "đĹŇĹËĚŔŢĹÎÉĹ ÍĹÖÄŐ ĐŇĎÓÔŮÍ ÓĐÉÓËĎÍ É ÓĎŇÔÉŇĎ×ËĎĘ ĐĎ ÇŇŐĐĐÁÍ"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "đĚĎČĎĘ ×ŮÂĎŇ, ĐĎĐŇĎÂŐĘÔĹ ĹÝĹ\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "÷ÁŰ ×ŮÂĎŇ? (ŐÍĎĚŢÁÎÉĹ %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:68
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "÷ÁŰ ×ŮÂĎŇ? (ŐÍĎĚŢÁÎÉĹ %s) "
-
-#: ../../interactive_stdio.pm_.c:93
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "đÁŇÁÍĹÔŇŮ: %s"
-
-#: ../../interactive_stdio.pm_.c:94
-#, fuzzy
-msgid "Do you want to click on this button? "
-msgstr "÷Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ aboot?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "÷ÁŰ ×ŮÂĎŇ? (ŐÍĎĚŢÁÎÉĹ %s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "ţĹŰÓËÉĘ (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "îĹÍĹĂËÉĘ"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "éÓĐÁÎÓËÉĘ"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "ćÉÎÓËÉĘ"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "ćŇÁÎĂŐÚÓËÉĘ"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "îĎŇ×ĹÖÓËÉĘ"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "đĎĚŘÓËÉĘ"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "ňŐÓÓËÉĘ"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "ű×ĹÄÓËÉĘ"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "UK ËĚÁ×ÉÁÔŐŇÁ"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "US ËĚÁ×ÉÁÔŐŇÁ"
-
-#: ../../keyboard.pm_.c:188
-#, fuzzy
-msgid "Albanian"
-msgstr "éŇÁÎÓËÉĘ"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "áŇÍŃÎÓËÉĘ (ÓÔÁŇŮĘ)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "áŇÍŃÎÓËÉĘ (ÍÁŰÉÎĎĐÉÓŘ)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "áŇÍŃÎÓËÉĘ (ĆĎÎĹÔÉŢĹÓËÉĘ)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "áÚĹŇÂÁĘÄÖÁÎÓËÉĘ (ĚÁÔÉÎÉĂÁ)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "âĹĚŘÇÉĘÓËÉĘ"
-
-#: ../../keyboard.pm_.c:199
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "áŇÍŃÎÓËÉĘ (ĆĎÎĹÔÉŢĹÓËÉĘ)"
-
-#: ../../keyboard.pm_.c:200
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "âĎĚÇÁŇÓËÉĘ"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "âŇÁÚÉĚŘÓËÉĘ (ABNT-2)"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "âeĚĎŇŐÓÓËÉĘ"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "ű×ĹĘĂÁŇÓËÉĘ (îĹÍĹĂËÁŃ ŇÁÓËĚÁÄËÁ)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "ű×ĹĘĂÁŇÓËÉĘ (ćŇÁÎĂŐÚÓËÁŃ ŇÁÓËĚÁÄËÁ)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "ţĹŰÓËÉĘ (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "îĹÍĹĂËÉĘ (ÂĹÚ ÍĹŇÔ×ŮČ ËĚÁ×ÉŰ)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "äÁÔÓËÉĘ"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (óűá)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (îĎŇ×ĹÖÓËÉĘ)"
-
-#: ../../keyboard.pm_.c:212
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (óűá)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "üÓÔĎÎÓËÉĘ"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "çŇŐÚÉÎÓËÉĘ (\"ňŐÓÓËÁŃ\" ŇÁÓËĚÁÄËÁ)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "çŇŐÚÉÎÓËÉĘ (\"ěÁÔÉÎÓËÁŃ\" ŇÁÓËĚÁÄËÁ)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "çŇĹŢĹÓËÉĘ"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "÷ĹÎÇĹŇÓËÉĘ"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "čĎŇ×ÁÔÓËÉĘ"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "é×ŇÉÔ"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "é×ŇÉÔ (ĆĎÎĹÔÉŢĹÓËÉĘ)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "éŇÁÎÓËÉĘ"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "éÓĚÁÎÄÓËÉĘ"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "éÔÁĚŘŃÎÓËÉĘ"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "ńĐĎÎÓËÉĘ 106 ËĚÁ×ÉŰ"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "ëĎŇĹĘÓËÁŃ ËĚÁ×ÉÁÔŐŇÁ"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "ěÁÔÉÎĎ-áÍĹŇÉËÁÎÓËÉĘ"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "ěÉÔĎ×ÓËÉĘ AZERTY (ÓÔÁŇŮĘ)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "ěÉÔĎ×ÓËÉĘ AZERTY (ÎĎ×ŮĘ)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "ěÉÔĎ×ÓËÉĘ \"ÎĎÍĹŇ ŇŃÄÁ\" QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "ěÉÔĎ×ÓËÉĘ \"ĆĎÎĹÔÉŢĹÓËÉĘ\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-#, fuzzy
-msgid "Latvian"
-msgstr "íĹÓÔĎÎÁČĎÖÄĹÎÉĹ"
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "íÁËĹÄĎÎÓËÉĘ"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "çĎĚĚÁÎÄÓËÉĘ"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "đĎĚŘÓËÉĘ (ŇÁÓËĚÁÄËÁ qwerty)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "đĎĚŘÓËÉĘ (ŇÁÓËĚÁÄËÁ qwertz)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "đĎŇÔŐÇÁĚŘÓËÉĘ"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "ëÁÎÁÄÓËÉĘ (ë×ĹÂĹË)"
-
-#: ../../keyboard.pm_.c:247
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "ňŐÓÓËÉĘ (Yawerty)"
-
-#: ../../keyboard.pm_.c:248
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "ňŐÓÓËÉĘ (Yawerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "ňŐÓÓËÉĘ (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "óĚĎ×ĹÎÓËÉĘ"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "óĚĎ×ÁĂËÉĘ (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "óĚĎ×ÁĂËÉĘ (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "áÚĹŇÂÁĘÄÖÁÎÓËÉĘ (ËÉŇÉĚĚÉĂÁ)"
-
-#: ../../keyboard.pm_.c:258
-#, fuzzy
-msgid "Tamil"
-msgstr "ôÁÂĚÉĂÁ"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "ôÁĘÓËÁŃ ËĚÁ×ÉÁÔŐŇÁ"
-
-#: ../../keyboard.pm_.c:261
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "ôÁĘÓËÁŃ ËĚÁ×ÉÁÔŐŇÁ"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "ôŐŇĹĂËÉĘ (ÔŇÁÄÉĂÉĎÎÎÁŃ \"F\" ÍĎÄĹĚŘ)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "ôŐŇĹĂËÉĘ (ÓĎ×ŇĹÍĹÎÎÁŃ \"Q\" ÍĎÄĹĚŘ)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "őËŇÁÉÎÓËÉĘ"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "US ËĚÁ×ÉÁÔŐŇÁ (ÉÎÔĹŇÎÁĂÉĎÎÁĚŘÎÁŃ)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "÷ŘĹÔÎÁÍÓËÉĘ \"ŢÉÓĚĎ×ĎĘ ŇŃÄ\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "ŕÇĎÓĚÁ×ÓËÉĘ (ĚÁÔÉÎÉĂÁ/ËÉŇÉĚĚÉĂÁ)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-msgid "Left \"Windows\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "ăÉËĚÉŢĹÓËĎĹ ÍĎÎÔÉŇĎ×ÁÎÉĹ %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "óÎÁŢÁĚÁ ŐÄÁĚÉÔĹ ĚĎÇÉŢĹÓËÉĹ ÔĎÍÁ\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "íŮŰŘ Sun"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "ďÂŮŢÎÁŃ PS2 ÍŮŰŘ Ó ËĎĚĹÓÉËĎÍ"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 ËÎĎĐËÁ"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "ďÂŮŢÎÁŃ 2-Č ËÎĎĐĎŢÎÁŃ ÍŮŰŘ"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "ďÂŮŢÎŮĘ"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "ëĎĚĹÓÉËĎ"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎÁŃ"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "ďÂŮŢÎÁŃ 3-Č ËÎĎĐĎŢÎÁŃ ÍŮŰŘ"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎÁŃ, ÓÔÁŇŮĘ ÔÉĐ C7)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "bus-ÍŮŰŘ"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 ËÎĎĐËÉ"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 ËÎĎĐËÉ"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "ÎÉËÁËĎĘ"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "îĹÔ ÍŮŰÉ"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "đŇĎ×ĹŇŘÔĹ ×ÁŰŐ ÍŮŰŘ"
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "ţÔĎÂŮ ÚÁĐŐÓÔÉÔŘ ÍŮŰŘ,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "đďëňőôéôĺ ëďěĺóéëď!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "ćÉÎÓËÉĘ"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "óĚĹÄŐŔÝÉĘ ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- đŇĹÄŮÄŐÝÉĘ"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "üÔĎ ×ĹŇÎĎ?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "đĎÄÓĎĹÄÉÎÉÔŘÓŃ Ë éÎÔĹŇÎĹÔ"
-
-#: ../../network/adsl.pm_.c:20
-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, ÉÎĎÇÄÁ dhcp.\n"
-"ĺÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ, ×ŮÂÉŇÁĘÔĹ 'ÉÓĐĎĚŘÚĎ×ÁÔŘ pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "ÉÓĐĎĚŘÚĎ×ÁÔŘ dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "ÉÓĐĎĚŘÚĎ×ÁÔŘ pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "use pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"ëÁËĎÇĎ ËĚÉĹÎÔÓËŐŔ ĐŇĎÇŇÁÍÍŐ dhcp ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ?\n"
-"đĎ ŐÍĎĚŢÁÎÉŔ - dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"îÁ ×ÁŰĹĘ ÓÉÓÔĹÍĹ ÎĹ ĎÂÎÁŇŐÖĹÎĎ ÓĹÔ×ĹĎÇĎ ÁÄÁĐÔĹŇÁ ethernet.\n"
-"îĹ ÍĎÇŐ ŐÓÔÁÎĎ×ÉÔŘ ÜÔĎÔ ÔÉĐ ÓĎĹÄÉÎĹÎÉŃ."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "÷ŮÂĎŇ ÓĹÔĹ×ĎÇĎ ÉÎÔĹŇĆĹĘÓÁ"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"÷ŮÂĹŇÉÔĹ ÓĹÔĹ×ĎĘ ÁÄÁĐÔĹŇ, ËĎÔĎŇŮĘ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ ÓĎĹÄÉÎĹÎÉŃ Ó "
-"ÉÎÔĹŇÎĹÔ?"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "ÓĹÔĹ×ŮČ ËÁŇÔ ÎĹ ÎÁĘÄĹÎĎ"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
-
-#: ../../network/ethernet.pm_.c:203
-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 ""
-"÷×ĹÄÉÔĹ ÉÍŃ Ó×ĎĹĘ ÍÁŰÉÎŮ (host), ĹÓĚÉ ÚÎÁĹÔĹ ĹÇĎ.\n"
-"îĹËĎÔĎŇŮÍ ÓĹŇ×ĹŇÁÍ DHCP ÉÍŃ ÍÁŰÉÎŮ ÎĹĎÂČĎÄÉÍĎ ÄĚŃ ŇÁÂĎÔŮ.\n"
-"éÍŃ ×ÁŰĹĘ ÍÁŰÉÎŮ ÄĎĚÖÎĎ ÂŮÔŘ ÚÁÄÁÎĎ ĐĎĚÎĎÓÔŘŔ,\n"
-"ÎÁĐŇÉÍĹŇ ``mybox.mylab.myco.com''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "éÍŃ ÍÁŰÉÎŮ"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "íÁÓÔĹŇ ÎÁÓÔŇĎĘËÉ ÓĹÔÉ"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "÷ÎĹŰÎÉĘ ÍĎÄĹÍ ISDN"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "÷ÎŐÔŇĹÎÎŃŃ ËÁŇÔÁ ISDN"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "ëÁËĎĘ Ő ×ÁÓ ×ÉÄ ISDN ÓĎĹÄÉÎĹÎÉŃ?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "ďÂÎÁŇŐÖĹÎÁ ÎÁÓÔŇĎĘËÁ ÓÉÓÔĹÍŮ ÚÁÝÉÔŮ ÓĹÔÉ (firewall)!"
-
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "ďÂÎÁŇŐÖĹÎÁ ÎÁÓÔŇĎĘËÁ ÓÉÓÔĹÍŮ ÚÁÝÉÔŮ ÓĹÔÉ (firewall)!"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "îÁÓÔŇĎĘËÁ ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"÷ŮÂĹŇÉÔĹ ĐŇĎ×ÁĘÄĹŇÁ.\n"
-" ĺÓĚÉ ĹÇĎ ÎĹÔ × ÓĐÉÓËĹ, ×ŮÂĹŇÉÔĹ îĹŐËÁÚÁÎÎŮĘ"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol"
-msgstr "đŇĎÔËĎĚ ÚÁÇŇŐÚËÉ"
-
-#: ../../network/isdn.pm_.c:183
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "ĺ×ŇĎĐÁ (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "ďÓÔÁĚŘÎĎĘ ÍÉŇ"
-
-#: ../../network/isdn.pm_.c:185
-#, fuzzy
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"ďÓÔÁĚŘÎĎĘ ÍÉŇ \n"
-" ÂĹÚ D-ËÁÎÁĚÁ (×ŮÄĹĚĹÎÎŮČ ĚÉÎÉĘ)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "ëÁËĎĘ ĐŇĎÔĎËĎĚ ÂŐÄĹÔ ÉÓĐĎĚŘÚĎ×ÁÔŘÓŃ ?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "ëÁËĎĘ Ő ×ÁÓ ÔÉĐ ËÁŇÔŮ?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "ń ÎĹ ÚÎÁŔ"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"ĺÓĚÉ Ő ×ÁÓ ËÁŇÔÁ ISA, ÔĎ ÚÎÁŢĹÎÉŃ ÎÁ ÓĚĹÄŐŔÝĹÍ ÜËŇÁÎĹ ÄĎĚÖÎŮ ÂŮÔŘ ×ĹŇÎŮÍÉ.\n"
-"\n"
-"ĺÓĚÉ Ő ×ÁÓ ËÁŇÔÁ PCMCIA, ÔĎ ×ÁÍ ÎÁÄĎ ÚÎÁÔŘ irq É io Ó×ĎĹĘ ËÁŇÔŮ.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "ďÔÍĹÎÉÔŘ"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "đŇĎÄĎĚÖÉÔŘ"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "ëÁËÁŃ Ő ×ÁÓ ËÁŇÔÁ ISDN ?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"ďÂÎÁŇŐÖĹÎÁ ËÁŇÔÁ ISDN PCI, ÎĎ ĹĹ ÔÉĐ ÎĹ ŐÄÁĚĎÓŘ ĎĐŇĹÄĹĚÉÔŘ. ÷ŮÂĹŇÉÔĹ ÎÁ "
-"ÓĚĹÄŐŔÝĹÍ ÜËŇÁÎĹ ËÁŇÔŐ PCI."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "ëÁŇÔÁ ISDN PCI ÎĹ ĎÂÎÁŇŐÖĹÎÁ. ÷ŮÂĹŇÉÔĹ ĹĹ ÎÁ ÓĚĹÄŐŔÝĹÍ ÜËŇÁÎĹ."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "÷ŮÂĹŇÉÔĹ, Ë ËÁËĎÍŐ ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎĎÍŐ ĐĎŇÔŐ ĐĎÄËĚŔŢĹÎ ÍĎÄĹÍ."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "đÁŇÁÍĹÔŇŮ ÄĎÚ×ĎÎÁ"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "éÍŃ ÓĎĹÄÉÎĹÎÉŃ"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "îĎÍĹŇ ÔĹĚĹĆĎÎÁ"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "éÍŃ (Login ID)"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr ""
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "ÎÁ ÂÁÚĹ ÓËŇÉĐÔÁ"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "ÎÁ ÂÁÚĹ ÔĹŇÍÉÎÁĚÁ"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "éÍŃ ÄĎÍĹÎÁ"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "đĹŇ×ŮĘ ÓĹŇ×ĹŇ DNS (ÎĹĎÂŃÚÁÔĹĚŘÎĎ)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "÷ÔĎŇĎĘ ÓĹŇ×ĹŇ DNS (ÎĹĎÂŃÚÁÔĹĚŘÎĎ)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"÷Ů ÍĎÖĹÔĹ ĎÔÓĎĹÄÉÎÉÔŘÓŃ ÉĚÉ ĐĹŇĹÎÁÓÔŇĎÉÔŘ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"÷Ů ÍĎÖĹÔĹ ĐĹŇĹÎÁÓÔŇĎÉÔŘ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "÷ ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×Ů ÓĎĹÄÉÎĹÎŮ Ó ÉÎÔĹŇÎĹÔ."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"÷Ů ÍĎÖĹÔĹ ÓĎĹÄÉÎÉÔŘÓŃ Ó ÉÎÔĹŇÎĹÔ ÉĚÉ ĐĹŇĹÎÁÓÔŇĎÉÔŘ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "÷ ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×Ů ÎĹ ÓĎĹÄÉÎĹÎŮ Ó ÉÎÔĹŇÎĹÔ."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "óĎĹÄÉÎĹÎÉÔŘÓŃ"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "ďÔÓĎĹÄÉÎÉÔŘÓŃ"
-
-#: ../../network/netconnect.pm_.c:45
-#, fuzzy
-msgid "Configure the connection"
-msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "óĎĹÄÉÎĹÎÉĹ éÎÔĹŇÎĹÔ É ÎÁÓÔŇĎĘËÁ"
-
-#: ../../network/netconnect.pm_.c:100
-#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
-msgstr ""
-"\n"
-"÷Ů ÍĎÖĹÔĹ ĎÔÓĎĹÄÉÎÉÔŘÓŃ ÉĚÉ ĐĹŇĹÎÁÓÔŇĎÉÔŘ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ."
-
-#: ../../network/netconnect.pm_.c:109
-#, fuzzy, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"÷Ů ÍĎÖĹÔĹ ĎÔÓĎĹÄÉÎÉÔŘÓŃ ÉĚÉ ĐĹŇĹÎÁÓÔŇĎÉÔŘ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "ëĎÎĆÉÇŐŇÁĂÉŃ ÓĹÔÉ"
-
-#: ../../network/netconnect.pm_.c:139
-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"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "÷ŮÂĹŇÉÔĹ ĐŇĎĆÉĚŘ ÄĚŃ ÎÁÓÔŇĎĘËÉ"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "ďĐŇĹÄĹĚĹÎÉĹ ŐÓÔŇĎĘÓÔ×..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "ďÂŮŢÎĎĹ ÍĎÄĹÍÎĎĹ ÓĎĹÄÉÎĹÎÉĹ"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "ÎÁĘÄĹÎ ÎÁ ĐĎŇÔŐ %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN ÓĎĹÄÉÎĹÎÉĹ"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "ÎÁĘÄĹÎĎ %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, fuzzy
-msgid "ADSL connection"
-msgstr "óĎĹÄÉÎĹÎÉĹ ĐĎ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "ĎÂÎÁŇŐÖĹÎ ÎÁ ÉÎÔĹŇĆĹĘÓĹ %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "ëÁÂĹĚŘÎĎĹ ÓĎĹÄÉÎĹÎÉĹ"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-#, fuzzy
-msgid "cable connection detected"
-msgstr "ëÁÂĹĚŘÎĎĹ ÓĎĹÄÉÎĹÎÉĹ"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "óĎĹÄÉÎĹÎÉĹ ĐĎ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "ĎÂÎÁŇŐÖĹÎÁ ĎÄÎÁ ÉĚÉ ÎĹÓËĎĚŘËĎ ÓĹÔĹ×ÁČ ËÁŇÔ ethernet"
-
-#: ../../network/netconnect.pm_.c:202
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "÷ŮÂĹŇÉÔĹ ĐŇĎÇŇÁÍÍŐ, ËĎÔĎŇŮĘ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:227
-#, fuzzy
-msgid "Internet connection"
-msgstr "ňÁÚÄĹĚĹÎÉĹ ÉÎÔĹŇÎĹÔ-ÓĎĹÄÉÎĹÎÉŃ"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "čĎÔÉÔĹ ĚÉ ×Ů, ŢÔĎÂŮ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ ÚÁĐŐÓËÁĚĎÓŘ ĐŇÉ ÚÁÇŇŐÚËĹ?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"÷ĎÚÎÉËĚÁ ĐŇĎÂĚĹÍÁ ĐŇÉ ĐĹŇĹÚÁĐŐÓËĹ ÓĹÔÉ: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"đĎÚÄŇÁ×ĚŃĹÍ, ÎÁÓÔŇĎĘËÁ ÓĹÔÉ É ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ ÚÁ×ĹŇŰĹÎÁ.\n"
-"\n"
-"óĹĘŢÁÓ ÂŐÄŐÔ ÓÄĹĚÁÎŮ ÉÚÍĹÎĹÎÉŃ × ×ÁŰĹĘ ÓÉÓÔĹÍĹ.\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"đĎÓĚĹ ÜÔĎÇĎ ÍŮ ŇĹËĎÍĹÎÄŐĹÍ ĐĹŇĹÚÁĐŐÓÔÉÔŘ ×ÁŰ X ÓĹŇ×ĹŇ, \n"
-"ŢÔĎÂŮ ÉÚÂĹÖÁÔŘ ĐŇĎÂĚĹÍ ÉÚ-ÚÁ ÓÍĹÎŮ ÉÍĹÎÉ ËĎÍĐŘŔÔĹŇÁ."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"÷îéíáîéĺ: üÔĎ ŐÓÔŇĎĘÓÔ×Ď ŇÁÎĹĹ ÂŮĚĎ ÓËĎÎĆÉÇŐŇÉŇĎ×ÁÎĎ ÄĚŃ ĐĎÄËĚŔŢĹÎÉŃ Ë "
-"ÉÎÔĹŇÎĹÔ.\n"
-"đŇĎÓÔĎ ĎÓÔÁ×ŘÔĹ ÜÔĎ ŐÓÔŇĎĘÓÔ×Ď ÎÁÓÔŇĎĹÎÎŮÍ.\n"
-"éÚÍĹÎĹÎÉĹ ĐĎĚĹĘ ×ÎÉÚŐ ÉÚÍĹÎÉÔ ĐŇĹÄŮÄŐÝŐŔ ÎÁÓÔŇĎĘËŐ."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"đĎÖÁĚŐĘÓÔÁ ××ĹÄÉÔĹ IP ËĎÎĆÉÇŐŇÁĂÉŔ ÄĚŃ ×ÁŰĹĘ ÍÁŰÉÎŮ.\n"
-"ëÁÖÄŮĘ ĐŐÎËÔ ÄĎĚÖĹÎ ÂŮÔŘ ÚÁĐĎĚÎĹÎ ËÁË IP ÁÄŇĹÓ × ÄĹÓŃÔÉŢÎĎ-ÔĎŢĹŢÎĎĘ \n"
-"ÎĎÔÁĂÉÉ (ÎÁĐŇÉÍĹŇ, 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "îÁÓÔŇĎĘËÁ ÓĹÔĹ×ĎÇĎ ŐÓÔŇĎĘÓÔ×Á %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr "(driver %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP ÁÄŇĹÓ"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "íÁÓËÁ ÓĹÔÉ"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "á×ÔĎÍÁÔÉŢĹÓËÉĘ IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP ÁÄŇĹÓ ÄĎĚÖĹÎ ÂŮÔŘ × ĆĎŇÍÁÔĹ 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 ""
-"÷×ĹÄÉÔĹ ÉÍŃ Ó×ĎĹĘ ÍÁŰÉÎŮ (host).\n"
-"éÍŃ ×ÁŰĹĘ ÍÁŰÉÎŮ ÄĎĚÖÎĎ ÂŮÔŘ ÚÁÄÁÎĎ ĐĎĚÎĎÓÔŘŔ,\n"
-"ÎÁĐŇÉÍĹŇ ``mybox.mylab.myco.com''.\n"
-"÷Ů ÍĎÖĹÔĹ ÔÁËÖĹ ××ĹÓÔÉ IP ÁÄŇĹÓ ŰĚŔÚÁ, ĹÓĚÉ ĎÎ Ő ×ÁÓ ĹÓÔŘ"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS ÓĹŇ×ĹŇ"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "űĚŔÚĎ×ĎĹ ŐÓÔŇĎĘÓÔ×Ď"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "îÁÓÔŇĎĘËÁ proxy"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy ÄĎĚÖÎĎ ÂŮÔŘ http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy ÄĎĚÖÎĎ ÂŮÔŘ ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "îÁÓÔŇĎĘËÁ éÎÔĹŇÎĹÔ"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "čĎÔÉÔĹ ×ĎĘÔÉ × ÉÎÔĹŇÎĹÔ ÓĹĘŢÁÓ?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "đŇĎ×ĹŇËÁ ×ÁŰĹÇĎ ÓĎĹÄÉÎĹÎÉŃ..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "óĹĘŢÁÓ ÓÉÓÔĹÍÁ ÓĎĹÄÉÎĹÎÁ Ó éÎÔĹŇÎĹÔ."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "éÚ ÓĎĎÂŇÁÖĹÎÉĘ ÂĹÚĎĐÁÓÎĎÓÔÉ, ÓĎĹÄÉÎĹÎÉĹ ÂŐÄĹÔ ÓĹĘŢÁÓ ŇÁÚĎŇ×ÁÎĎ"
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"đĎČĎÖĹ, ÓÉÓÔĹÍÁ ÎĹ ×ĎŰĚÁ × ÉÎÔĹŇÎĹÔ.\n"
-"đĎĐŇĎÂŐĘÔĹ ÎÁÓÔŇĎÉÔŘ ÓĎĹÄÉÎĹÎÉĹ."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "îÁÓÔŇĎĘËÁ ÓĎĹÄÉÎĹÎÉŃ"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "úÁĐĎĚÎÉÔĹ ÉĚÉ ĐŇĎ×ĹŇŘÔĹ ĐĎĚĹ ×ÎÉÚŐ"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ ËÁŇÔŮ"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "áÄŇĹÓ (DMA) ËÁŇÔŮ"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO ËÁŇÔŮ"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_0 ËÁŇÔŮ"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 ËÁŇÔŮ"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "÷ÁŰ ĚÉŢÎŮĘ ÔĹĚĹĆĎÎÎŮĘ ÎĎÍĹŇ"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "éÍŃ ĐŇĎ×ÁĘÄĹŇÁ (ÎÁĐŇ. provider.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "îĎÍĹŇ ÔĹĚĹĆĎÎÁ ĐŇĎ×ÁĘÄĹŇÁ"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "IP ÁÄŇĹÓ ĐĹŇ×ĎÇĎ DNS ÓĹŇ×ĹŇÁ ĐŇĎ×ÁĘÄĹŇÁ (ÎĹĎÂŃÚÁÔĹĚŘÎĎ)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "IP ÁÄŇĹÓ ×ÔĎŇĎÇĎ DNS ÓĹŇ×ĹŇÁ ĐŇĎ×ÁĘÄĹŇÁ (ÎĹĎÂŃÚÁÔĹĚŘÎĎ)"
-
-#: ../../network/tools.pm_.c:89
-#, fuzzy
-msgid "Choose your country"
-msgstr "÷ŮÂĎŇ ËĚÁ×ÉÁÔŐŇŮ"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "ňĹÖÉÍ ÄĎÚ×ĎÎÁ"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-#, fuzzy
-msgid "Connection speed"
-msgstr "ôÉĐ ÓĎĹÄÉÎĹÎÉŃ: "
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "ôÉĐ ÓĎĹÄÉÎĹÎÉŃ: "
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "÷ČĎÄ (ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "đÁŇĎĚŘ"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "ĎŰÉÂËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "ňÁÓŰÉŇĹÎÎŮĹ ŇÁÚÄĹĚŮ ÎĹ ĐĎÄÄĹŇÖÉ×ÁŔÔÓŃ ÎÁ ÜÔĎĘ ĐĚÁÔĆĎŇÍĹ"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"ő ×ÁÓ ĹÓÔŘ ÄŮŇÁ × ÔÁÂĚÉĂĹ ŇÁÚÄĹĚĎ×, ÎĎ Ń ÎĹ ÍĎÇŐ ĹĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ.\n"
-"ĺÄÉÎÓÔ×ĹÎÎŮĘ ×ŮČĎÄ ÓĎÓÔĎÉÔ × ÔĎÍ, ŢÔĎÂŮ ĐĹŇĹÄ×ÉÎŐÔŘ ĐĹŇ×ÉŢÎŮĹ ŇÁÚÄĹĚŮ ÔÁË, "
-"ŢÔĎÂŮ ÄŮŇÁ ŰĚÁ ÓŇÁÚŐ ÚÁ ŇÁÓŰÉŇĹÎÎŮÍ (extended) ŇÁÚÄĹĚĎÍ"
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "÷ĎÓÓÔÁÎĎ×ĚĹÎÉĹ ÉÚ ĆÁĘĚÁ %s ĐŇĎ×ÁĚÉĚĎÓŘ %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "ďŰÉÂËÁ ÚÁĐÉÓÉ × ĆÁĘĚ %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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"
-"üÔĎ ĎÚÎÁŢÁĹÔ, ŢÔĎ ÚÁĐÉÓŘ ÉÎĆĎŇÍÁĂÉÉ ÎÁ ÜÔĎÔ ÄÉÓË ÚÁËĎÎŢÉÔÓŃ ÇĎŇĎĘ ÍŐÓĎŇÁ"
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "ĎÂŃÚÁÔĹĚŘÎĎ"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "×ÁÖÎĎ"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "×ĹÓŘÍÁ ÖĹĚÁÔĹĚŘÎĎ"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "ÖĹĚÁÔĹĚŘÎĎ"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "ÍĎÖÎĎ É ÜÔĎ"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr ""
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr ""
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr ""
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr ""
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr ""
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../printer.pm_.c:49
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "őÄÁĚĹÎÎŮĘ CUPS ÓĹŇ×ĹŇ"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "őÄÁĚĹÎÎŮĘ lpd ÓĹŇ×ĹŇ"
-
-#: ../../printer.pm_.c:51
-#, fuzzy
-msgid "Network printer (TCP/Socket)"
-msgstr "óĹÔĹ×ĎĘ ĐŇÉÎÔĹŇ (ÓĎËĹÔ)"
-
-#: ../../printer.pm_.c:52
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../printer.pm_.c:53
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "óĹŇ×ĹŇ ĐĹŢÁÔÉ"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "áÄŇĹÓ ŐÓÔŇĎĘÓÔ×Á ĐĹŢÁÔÉ"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr ""
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr ""
-
-#: ../../printer.pm_.c:532
-#, fuzzy
-msgid "Local Printers"
-msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-#, fuzzy
-msgid "Remote Printers"
-msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ""
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../printer.pm_.c:559
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "ďŰÉÂËÁ ÚÁĐÉÓÉ × ĆÁĘĚ %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr ""
-
-#: ../../printer.pm_.c:841
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(ÍĎÄŐĚŘ %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr ""
-
-#: ../../printer.pm_.c:868
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP ÓĹŇ×ĹŇÁ CUPS"
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (őÍĎĚŢÁÎÉĹ)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "÷ŮÂĎŇ ÔÉĐÁ ĐĎÄËĚŔŢĹÎÉŃ ĐŇÉÎÔĹŇÁ"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "ëÁË ĐĎÄÓĎĹÄÉÎĹÎ ×ÁŰ ĐŇÉÎÔĹŇ?"
-
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"ó ŐÄÁĚĹÎÎŮÍ ÓĹŇ×ĹŇĎÍ ĐĹŢÁÔÉ CUPS, ×ÁÍ ÎĹ ÎŐÖÎĎ ÚÄĹÓŘ ÎÁÓÔŇÁÉ×ÁÔŘ\n"
-"ÎÉËÁËÉČ ĐŇÉÎÔĹŇĎ×; ĐŇÉÎÔĹŇŮ ÂŐÄŐÔ ĎÂÎÁŇŐÖĹÎŮ Á×ÔĎÍÁÔÉŢĹÓËÉ.\n"
-"ĺÓĚÉ ÓĎÍÎĹ×ÁĹÔĹÓŘ, ×ŮÂĹŇÉÔĹ \"őÄÁĚĹÎÎŮĘ CUPS ÓĹŇ×ĹŇ\"."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "őÄÁĚĹÎÎŮĘ CUPS ÓĹŇ×ĹŇ"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP ÁÄŇĹÓ ÄĎĚÖĹÎ ÂŮÔŘ × ĆĎŇÍÁÔĹ 1.2.3.4"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-#, fuzzy
-msgid "The port number should be an integer!"
-msgstr "îĎÍĹŇ ĐĎŇÔÁ ÄĎĚÖĹÎ ÓĎÓÔĎŃÔŘ ÉÚ ĂÉĆŇ"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP ÓĹŇ×ĹŇÁ CUPS"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "đĎŇÔ"
-
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "îÁÓÔŇĎĘËÁ ×ÉÄÁ ÚÁÇŇŐÚËÉ"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "ďĐŇĹÄĹĚĹÎÉĹ ŐÓÔŇĎĘÓÔ×..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "đŇĎ×ĹŇÉÔŘ ĐĎŇÔŮ"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
-msgid "Add a new printer"
-msgstr "îĹÔ ĐŇÉÎÔĹŇÁ"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-#, fuzzy
-msgid "Local Printer"
-msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-#, fuzzy
-msgid "Auto-detect printers"
-msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../printerdrake.pm_.c:256
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "ÎÁĘÄĹÎĎ %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "áÄŇĹÓ ŐÓÔŇĎĘÓÔ×Á ĐĹŢÁÔÉ"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "÷ŮÂĹŇÉÔĹ, Ë ËÁËĎÍŐ ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎĎÍŐ ĐĎŇÔŐ ĐĎÄËĚŔŢĹÎ ÍĎÄĹÍ."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "áÄŇĹÓ ŐÓÔŇĎĘÓÔ×Á ĐĹŢÁÔÉ"
-
-#: ../../printerdrake.pm_.c:441
-#, fuzzy
-msgid "Manual configuration"
-msgstr "îÁÓÔŇĎĘËÁ"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "őÓÔÁÎĎ×ËÁ ĐÁËĹÔÁ %s"
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:505
-#, fuzzy
-msgid "Installing SANE package..."
-msgstr "őÓÔÁÎĎ×ËÁ ĐÁËĹÔÁ %s"
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:534
-#, fuzzy
-msgid "Making printer port available for CUPS ..."
-msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-#, fuzzy
-msgid "Reading printer database ..."
-msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "ďĐĂÉÉ ŐÄÁĚĹÎÎĎÇĎ ĐŇÉÎÔĹŇÁ lpd"
-
-#: ../../printerdrake.pm_.c:625
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"äĚŃ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ ŐÄÁĚĹÎÎĎĘ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ ×ÁÍ ÎŐÖÎĎ ŐËÁÚÁÔŘ ÉÍŃ ŐÄÁĚĹÎÎĎÇĎ "
-"ÓĹŇ×ĹŇÁ ĐĹŢÁÔÉ É ÉÍŃ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ ÎÁ ÜÔĎÍ ÓĹŇ×ĹŇĹ, × ËĎÔĎŇŐŔ ŐÄÁĚĹÎÎŮĘ "
-"ÓĹŇ×ĹŇ ÂŐÄĹÔ ĐĎÍĹÝÁÔŘ ÚÁÄÁÎÉŃ ÎÁ ĐĹŢÁÔŘ."
-
-#: ../../printerdrake.pm_.c:626
-#, fuzzy
-msgid "Remote host name"
-msgstr "őÄÁĚĹÎÎÁŃ ÍÁŰÉÎÁ"
-
-#: ../../printerdrake.pm_.c:627
-#, fuzzy
-msgid "Remote printer name"
-msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../printerdrake.pm_.c:630
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "őÄÁĚĹÎÎÁŃ ÍÁŰÉÎÁ"
-
-#: ../../printerdrake.pm_.c:634
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "őÄÁĚĹÎÎÁŃ ÍÁŰÉÎÁ"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "ďĐĂÉÉ ĐŇÉÎÔĹŇÁ SMB (Windows 9x/NT)"
-
-#: ../../printerdrake.pm_.c:703
-#, fuzzy
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"äĚŃ ĐĹŢÁÔÉ ÎÁ ĐŇÉÎÔĹŇĹ SMB ×ÁÍ ÎĹĎÂČĎÄÉÍĎ ŐËÁÚÁÔŘ ÉÍŃ ČĎÓÔÁ SMB (ÎĹ ×ÓĹÇÄÁ "
-"ÓĎ×ĐÁÄÁĹÔ Ó ÉÍĹÎĹÍ × ÓĹÔÉ TCP/IP) É ÁÄŇĹÓ IP ÓĹŇ×ĹŇÁ ĐĹŢÁÔÉ, Á ÔÁËÖĹ ÉÍŃ "
-"ŇĹÓŐŇÓÁ, Ó×ŃÚÁÎÎĎĹ Ó ×ŮÂŇÁÎÎŮÍ ĐŇÉÎÔĹŇĎÍ, ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ, ĐÁŇĎĚŘ É "
-"ÉÎĆĎŇÍÁĂÉŔ Ď ŇÁÂĎŢĹĘ ÇŇŐĐĐĹ."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "óĹŇ×ĹŇ SMB"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP ÓĹŇ×ĹŇÁ SMB"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "éÍŃ ŇĹÓŐŇÓÁ"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "ňÁÂĎŢÁŃ ÇŇŐĐĐÁ"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "ďĐĂÉÉ ĐŇÉÎÔĹŇÁ NetWare"
-
-#: ../../printerdrake.pm_.c:802
-#, fuzzy
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"äĚŃ ĐĹŢÁÔÉ ÎÁ ĐŇÉÎÔĹŇ NetWare ×ÁÍ ÎĹĎÂČĎÄÉÍĎ ŐËÁÚÁÔŘ ÉÍŃ ÓĹŇ×ĹŇÁ ĐĹŢÁÔÉ "
-"NetWare (ÎĹ ×ÓĹÇÄÁ ÓĎ×ĐÁÄÁĹÔ Ó ÉÍĹÎĹÍ × ÓĹÔÉ TCP/IP) É ÉÍŃ ĎŢĹŇĹÄÉ, "
-"ÓĎĎÔ×ĹÔÓÔ×ŐŔÝĹĘ ×ŮÂŇÁÎÎĎÍŐ ĐŇÉÎÔĹŇŐ, Á ÔÁËÖĹ ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ É ĐÁŇĎĚŘ."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "óĹŇ×ĹŇ ĐĹŢÁÔÉ"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "éÍŃ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:852
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "ďĐĂÉÉ ĐŇÉÎÔĹŇÁ Socket"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:854
-#, fuzzy
-msgid "Printer host name"
-msgstr "éÍŃ ÍÁŰÉÎŮ Ó ĐŇÉÎÔĹŇĎÍ"
-
-#: ../../printerdrake.pm_.c:858
-#, fuzzy
-msgid "Printer host name missing!"
-msgstr "éÍŃ ÍÁŰÉÎŮ Ó ĐŇÉÎÔĹŇĎÍ"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "áÄŇĹÓ ŐÓÔŇĎĘÓÔ×Á ĐĹŢÁÔÉ"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "éÍŃ ĐŇÉÎÔĹŇÁ"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "ďĐÉÓÁÎÉĹ"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "íĹÓÔĎÎÁČĎÖÄĹÎÉĹ"
-
-#: ../../printerdrake.pm_.c:1021
-#, fuzzy
-msgid "Preparing printer database ..."
-msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "üÔĎ ×ĹŇÎĎ?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../printerdrake.pm_.c:1139
-#, fuzzy
-msgid "Printer model selection"
-msgstr "đĎÄËĚŔŢĹÎÉĹ ĐŇÉÎÔĹŇÁ"
-
-#: ../../printerdrake.pm_.c:1140
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "ëÁËĎĘ Ő ×ÁÓ ÔÉĐ ĐŇÉÎÔĹŇÁ?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "îÁÓÔŇĎĘËÁ éÎÔĹŇÎĹÔ"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "îÁÓÔŇĎĘËÁ éÎÔĹŇÎĹÔ"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1565
-#, fuzzy, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "čĎÔÉÔĹ ×ŮĐĎĚÎÉÔŘ ĐŇĎÂÎŐŔ ĐĹŢÁÔŘ?"
-
-#: ../../printerdrake.pm_.c:1582
-#, fuzzy
-msgid "Test pages"
-msgstr "đŇĎ×ĹŇÉÔŘ ĐĎŇÔŮ"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1587
-#, fuzzy
-msgid "No test pages"
-msgstr "äÁ, ÎÁĐĹŢÁÔÁÔŘ ĎÂĹ ĐŇĎÂÎŮĹ ÓÔŇÁÎÉĂŮ ÔĹËÓÔÁ"
-
-#: ../../printerdrake.pm_.c:1588
-#, fuzzy
-msgid "Print"
-msgstr "đŇÉÎÔĹŇ"
-
-#: ../../printerdrake.pm_.c:1590
-#, fuzzy
-msgid "Standard test page"
-msgstr "óÔÁÎÄÁŇÔÎÁŃ"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1596
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "đĹŢÁÔŘ ÔĹÓÔĎ×ŮČ ÓÔŇÁÎÉĂ..."
-
-#: ../../printerdrake.pm_.c:1598
-#, fuzzy
-msgid "Photo test page"
-msgstr "đĹŢÁÔŘ ÔĹÓÔĎ×ŮČ ÓÔŇÁÎÉĂ..."
-
-#: ../../printerdrake.pm_.c:1602
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "đĹŢÁÔŘ ÔĹÓÔĎ×ŮČ ÓÔŇÁÎÉĂ..."
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "đĹŢÁÔŘ ÔĹÓÔĎ×ŮČ ÓÔŇÁÎÉĂ..."
-
-#: ../../printerdrake.pm_.c:1635
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"đŇĎÂÎŮĹ ÓÔŇÁÎÉĂŮ ĎÔĐŇÁ×ĚĹÎŮ ÄĹÍĎÎŐ ĐĹŢÁÔÉ.\n"
-"đŇĹÖÄĹ ŢĹÍ ĐŇÉÎÔĹŇ ÚÁŇÁÂĎÔÁĹÔ ÍĎÖĹÔ ĐŇĎĘÔÉ ÎĹËĎÔĎŇĎĹ ×ŇĹÍŃ.\n"
-"óÔÁÔŐÓ ĐĹŢÁÔÉ:\n"
-"%s\n"
-"\n"
-"ďÎ ŇÁÂĎÔÁĹÔ ÎĎŇÍÁĚŘÎĎ?"
-
-#: ../../printerdrake.pm_.c:1639
-#, fuzzy
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"đŇĎÂÎŮĹ ÓÔŇÁÎÉĂŮ ĎÔĐŇÁ×ĚĹÎŮ ÄĹÍĎÎŐ ĐĹŢÁÔÉ.\n"
-"đŇĹÖÄĹ ŢĹÍ ĐŇÉÎÔĹŇ ÚÁŇÁÂĎÔÁĹÔ ÍĎÖĹÔ ĐŇĎĘÔÉ ÎĹËĎÔĎŇĎĹ ×ŇĹÍŃ.\n"
-"ďÎ ŇÁÂĎÔÁĹÔ ÎĎŇÍÁĚŘÎĎ?"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-#, fuzzy
-msgid "Raw printer"
-msgstr "îĹÔ ĐŇÉÎÔĹŇÁ"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "úÁËŇŮÔŘ"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "äĹÁËÔÉ×ÉÚÁĂÉŃ ÓĹÔÉ"
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "äĹÁËÔÉ×ÉÚÁĂÉŃ ÓĹÔÉ"
-
-#: ../../printerdrake.pm_.c:1744
-#, fuzzy
-msgid "Print option list"
-msgstr "đÁŇÁÍĹÔŇŮ ĐŇÉÎÔĹŇÁ"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "îÁÓÔŇĎĘËÁ éÎÔĹŇÎĹÔ"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "éÍŃ ĐŇÉÎÔĹŇÁ ÄĎĚÖÎĎ ÓĎÄĹŇÖÁÔŘ ÔĎĚŘËĎ ÂŐË×Ů, ĂÉĆŇŮ É ĐĎÄŢĹŇËÉ×ÁÎÉĹ"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1864
-#, fuzzy
-msgid "New printer name"
-msgstr "îĹÔ ĐŇÉÎÔĹŇÁ"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-#, fuzzy
-msgid "Refreshing printer data ..."
-msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1896
-#, fuzzy
-msgid "Starting network ..."
-msgstr "úÁĐŐÓË ÷ÁŰĹÇĎ ÓĎĹÄÉÎĹÎÉŃ..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-#, fuzzy
-msgid "Configure the network now"
-msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
-
-#: ../../printerdrake.pm_.c:1931
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "íĎÎÉÔĎŇ ÎĹ ÎÁÓÔŇĎĹÎ"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
-msgid "Restarting printing system ..."
-msgstr "ëÁËŐŔ ÓÉÓÔĹÍŐ ĐĹŢÁÔÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ?"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "high"
-msgstr "÷ŮÓĎËÉĘ"
-
-#: ../../printerdrake.pm_.c:2017
-#, fuzzy
-msgid "paranoid"
-msgstr "đÁŇÁÎĎÉÄÁĚŘÎŮĘ"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "ëÁËŐŔ ÓÉÓÔĹÍŐ ĐĹŢÁÔÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ?"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2205
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "÷ŮÂĎŇ ÔÉĐÁ ĐĎÄËĚŔŢĹÎÉŃ ĐŇÉÎÔĹŇÁ"
-
-#: ../../printerdrake.pm_.c:2206
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "ëÁËŐŔ ÓÉÓÔĹÍŐ ĐĹŢÁÔÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ?"
-
-#: ../../printerdrake.pm_.c:2239
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "îÁÓÔŇĎÉÔŘ ĐŇÉÎÔĹŇ"
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "őÓÔÁÎĎ×ËÁ ĐÁËĹÔÁ %s"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "đÁŇÁÍĹÔŇŮ ĐŇÉÎÔĹŇÁ"
-
-#: ../../printerdrake.pm_.c:2318
-#, fuzzy
-msgid "Preparing PrinterDrake ..."
-msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "îÁÓÔŇĎÉÔŘ ĐŇÉÎÔĹŇ"
-
-#: ../../printerdrake.pm_.c:2355
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "čĎÔÉÔĹ ÎÁÓÔŇĎÉÔŘ ĐŇÉÎÔĹŇ?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2415
-#, fuzzy
-msgid "Printerdrake"
-msgstr "đŇÉÎÔĹŇ"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"éÍĹŔÔÓŃ ÓĚĹÄŐŔÝÉĹ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ.\n"
-"÷Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ÎĎ×ŮĹ ÉĚÉ ÉÚÍĹÎÉÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĹ."
-
-#: ../../printerdrake.pm_.c:2420
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"éÍĹŔÔÓŃ ÓĚĹÄŐŔÝÉĹ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ.\n"
-"÷Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ÎĎ×ŮĹ ÉĚÉ ÉÚÍĹÎÉÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĹ."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "îĎŇÍÁĚŘÎŮĘ ŇĹÖÉÍ"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "čĎÔÉÔĹ ĐŇĎÔĹÓÔÉŇĎ×ÁÔŘ ÎÁÓÔŇĎĘËÉ?"
-
-#: ../../printerdrake.pm_.c:2711
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "îÁÓÔŇĎĘËÁ éÎÔĹŇÎĹÔ"
-
-#: ../../printerdrake.pm_.c:2713
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "čĎÔÉÔĹ ĐŇĎÔĹÓÔÉŇĎ×ÁÔŘ ÎÁÓÔŇĎĘËÉ?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-#, fuzzy
-msgid "Printer connection type"
-msgstr "ňÁÚÄĹĚĹÎÉĹ ÉÎÔĹŇÎĹÔ-ÓĎĹÄÉÎĹÎÉŃ"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "đĎÄËĚŔŢĹÎÉĹ ĐŇÉÎÔĹŇÁ"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-#, fuzzy
-msgid "Print test pages"
-msgstr "đĹŢÁÔŘ ÔĹÓÔĎ×ŮČ ÓÔŇÁÎÉĂ..."
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "čĎÔÉÔĹ ĐŇĎÔĹÓÔÉŇĎ×ÁÔŘ ÎÁÓÔŇĎĘËÉ?"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-#, fuzzy
-msgid "Remove printer"
-msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../printerdrake.pm_.c:2786
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-
-#: ../../printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Default printer"
-msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "÷Ů ČĎÔÉÔĹ ĐĹŇĹÚÁĐŐÓÔÉÔŘ ÓĹÔŘ"
-
-#: ../../printerdrake.pm_.c:2838
-#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-#, fuzzy
-msgid "Proxy configuration"
-msgstr "îÁÓÔŇĎĘËÁ proxy"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr ""
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-#, fuzzy
-msgid "port"
-msgstr "đĎŇÔ"
-
-#: ../../proxy.pm_.c:44
-#, fuzzy
-msgid "Url should begin with 'http:'"
-msgstr "Proxy ÄĎĚÖÎĎ ÂŮÔŘ http://..."
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-#, fuzzy
-msgid "The port part should be numeric"
-msgstr "îĎÍĹŇ ĐĎŇÔÁ ÄĎĚÖĹÎ ÓĎÓÔĎŃÔŘ ÉÚ ĂÉĆŇ"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Proxy ÄĎĚÖÎĎ ÂŮÔŘ ftp://..."
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-
-#: ../../proxy.pm_.c:80
-#, fuzzy
-msgid "login"
-msgstr "á×ÔĎ-×ČĎÄ"
-
-#: ../../proxy.pm_.c:82
-#, fuzzy
-msgid "password"
-msgstr "đÁŇĎĚŘ"
-
-#: ../../proxy.pm_.c:84
-#, fuzzy
-msgid "re-type password"
-msgstr "îĹÔ ĐÁŇĎĚŃ"
-
-#: ../../proxy.pm_.c:88
-#, fuzzy
-msgid "The passwords don't match. Try again!"
-msgstr "đÁŇĎĚÉ ÎĹ ÓĎ×ĐÁÄÁŔÔ"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "îĹ ÍĎÇŐ ÄĎÂÁ×ÉÔŘ ŇÁÚÄĹĚ ÎÁ _ĎÔĆĎŇÍÁÔÉŇĎ×ÁÎÎŮĘ_ RAID md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "îĹ ÍĎÇŐ ĐÉÓÁÔŘ × ĆÁĘĚ %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid ÎĹ ÓŇÁÂĎÔÁĚ"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid ÎĹ ÓŇÁÂĎÔÁĚ (×ĎÚÍĎÖÎĎ, ÎĹÔ raidtools?)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "îĹÄĎÓÔÁÔĎŢÎĎ ŇÁÚÄĹĚĎ× ÄĚŃ RAID ŐŇĎ×ÎŃ %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-"úÁĐŐÓÔÉÔŘ ALSA (ňÁÓŰÉŇĹÎÎÁŃ Ú×ŐËĎ×ÁŃ ÁŇČÉÔĹËÔŐŇÁ Linux) Ú×ŐËĎ×ŐŔ ÓÉÓÔĹÍŐ"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, ĐĚÁÎÉŇĎ×ÝÉË ÄĚŃ ĐĎ×ÔĎŇŃŔÝÉČÓŃ ĐĎ ÇŇÁĆÉËŐ ËĎÍÁÎÄ."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd ÉÓĐĎĚŘÚŐĹÔÓŃ ÄĚŃ ĎÔÓĚĹÖÉ×ÁÎÉŃ ÓĎÓÔĎŃÎÉŃ ÂÁÔÁŇĹĘ É ×ĹÄĹÎÉŃ ĐŇĎÔĎËĎĚÁ "
-"ŢĹŇĹÚ syslog.\n"
-"ôÁËÖĹ ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎ ÄĚŃ ×ŮËĚŔŢĹÎÉŃ ÍÁŰÉÎŮ ĐŇÉ ÓÉĚŘÎĎÍ ŇÁÚŇŃÄĹ "
-"ÂÁÔÁŇĹĘ."
-
-#: ../../services.pm_.c:18
-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 ""
-"úÁĐŐÓËÁĹÔ ËĎÍÁÎÄŮ, ×ÎĹÓĹÎÎŮĹ × ŇÁÓĐÉÓÁÎÉĹ ËĎÍÁÎÄĎĘ at ×Ď ×ŇĹÍŃ, ŐËÁÚÁÎÎĎĹ "
-"ĐŇÉ\n"
-"ÚÁĐŐÓËĹ at, É ×ŮĐĎĚÎŃĹÔ ĐÁËĹÔŮ ËĎÍÁÎÄ, ËĎÇÄÁ ÓŇĹÄÎŃŃ ÚÁÇŇŐÚËÁ ÄĎÓÔÁÔĎŢÎĎ "
-"ÎÉÚËÁ."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron Ń×ĚŃĹÔÓŃ ÓÔÁÎÄÁŇÔÎĎĘ ĐŇĎÇŇÁÍÍĎĘ UNIX, ËĎÔĎŇÁŃ ÚÁĐŐÓËÁĹÔ ŐËÁÚÁÎÎŮĹ "
-"ĐĎĚŘÚĎ×ÁÔĹĚŃÍ\n"
-"ĐŇĎÇŇÁÍÍŮ ĐĎ ŇÁÓĐÉÓÁÎÉŔ. vixie cron ÄĎÂÁ×ĚŃĹÔ ÎĎ×ŮĹ Ó×ĎĘÓÔ×Á Ë ÉÓČĎÄÎĎÍŐ "
-"cron ÉÚ \n"
-"UNIX, ×ËĚŔŢÁŃ ĚŐŢŰŐŔ ÂĹÚĎĐÁÓÎĎÓÔŘ É ÂĎĚĹĹ ÍĎÝÎŮĹ ĐÁŇÁÍĹÔŇŮ ÎÁÓÔŇĎĘËÉ."
-
-#: ../../services.pm_.c:23
-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 ÄĎÂÁ×ĚŃĹÔ ĐĎÄÄĹŇÖËŐ ÍŮŰÉ ÄĚŃ ĐŇÉĚĎÖĹÎÉĘ, ŇÁÂĎÔÁŔÝÉČ × ÔĹËÓÔĎ×ĎÍ ŇĹÖÉÍĹ, "
-"ÔÁËÉČ ,ËÁË \n"
-"Midnight Commander. đĎÄÄĹŇÖÉ×ÁĹÔÓŃ ÔÁËÖĹ ĎĐĹŇÁĂÉÉ ÍŮŰŘŔ ×ŮŇĹÚÁÔŘ-É-×ÓÔÁ×ÉÔŘ "
-"É ×ÓĐĚŮ×ÁŔÝÉĹ ÍĹÎŔ × \n"
-"ËĎÎÓĎĚÉ."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake ×ŮĐĎĚÎŃĹÔ ĐŇĎ×ĹŇËŐ ÖĹĚĹÚÁ É ĐŇÉ ÎĹĎÂČĎÄÉÍĎÓÔÉ ÎÁÓÔŇÁÉ×ÁĹÔ \n"
-"ÎĎ×ŮĹ/ÉÚÍĹÎÉ×ŰÉĹÓŃ ŐÓÔŇĎĘÓÔ×Á."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Apache Ń×ĚŃĹÔÓŃ ÓĹŇ×ĹŇĎÍ World Wide Web. ďÎ ÉÓĐĎĚŘÚŐĹÔÓŃ ÄĚŃ ĎÂÓĚŐÖÉ×ÁÎÉŃ "
-"ĆÁĘĚĎ× HTML É CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"äĹÍĎÎ ÓŐĐĹŇÓĹŇ×ĹŇÁ ÉÎÔĹŇÎĹÔ (ÎÁÚŮ×ÁĹÍŮĘ ĎÂŮŢÎĎ inetd) ÚÁĐŐÓËÁĹÔ ĐĎ ÍĹŇĹ \n"
-"ÎĹĎÂČĎÄÉÍĎÓÔÉ ŇÁÚĚÉŢÎŮĹ ÉÎÔĹŇÎĹÔ-ÓĹŇ×ÉÓŮ. ďÎ ĎÔ×ĹŢÁĹÔ ÚÁ ÚÁĐŐÓË ÍÎĎÇÉČ \n"
-"ÓĹŇ×ÉÓĎ×, ×ËĚŔŢÁŃ telnet, ftp, rsh, É rlogin. ďÔËĚŔŢĹÎÉĹ inetd ĎÔËĚŔŢÉÔ \n"
-"ÔÁËÖĹ ×ÓĹ ÓĹŇ×ÉÓŮ, ÚÁ ËĎÔĎŇŮĹ ĎÎ ĎÔ×ĹŢÁĹÔ."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"úÁĐŐÓÔÉÔŘ ĆÉĚŘÔŇÁĂÉŔ ĐÁËĹÔĎ× ÄĚŃ Linux Ó ŃÄŇÁÍÉ ÓĹŇÉÉ 2.2, ŢÔĎÂŮ ÎÁÓÔŇĎÉÔŘ\n"
-"ÓÉÓÔĹÍŐ ÚÁÝÉÔŮ ÓĹÔÉ (firewall) ÄĚŃ ÚÁÝÉÔŮ ×ÁŰĹĘ ÍÁŰÉÎŮ ĎÔ ÓĹÔĹ×ŮČ ÁÔÁË."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"üÔĎÔ ĐÁËĹÔ ÚÁÇŇŐÖÁĹÔ ×ŮÂŇÁÎÎŐŔ ŇÁÓËĚÁÄËŐ ËĚÁ×ÉÁÔŐŇŮ × ÓĎĎÔ×ĹÔÓÔ×ÉÉ Ó \n"
-"/etc/sysconfig/keyboard. ÷ŮÂĎŇ ĎÓŐÝĹÓÔ×ĚŃĹÔÓŃ ĐŇÉ ĐĎÍĎÝÉ ŐÔÉĚÉÔŮ "
-"kbdconfig.\n"
-"äĚŃ ÂĎĚŘŰÉÎÓÔ×Á ÍÁŰÉÎ ÍĎÖÎĎ ĎÓÔÁ×ÉÔŘ ×ËĚŔŢĹÎÎŮÍ."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"á×ÔĎÍÁÔÉŢĹÓËĎĹ ĆĎŇÍÉŇĎ×ÁÎÉĹ ÚÁÇĎĚĎ×ËÁ ŃÄŇÁ × /boot ÄĚŃ\n"
-"/usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎÂÎÁŇŐÖĹÎÉĹ É ÎÁÓÔŇĎĘËÁ ŐÓÔŇĎĘÓÔ× ĐŇÉ ÚÁÇŇŐÚËĹ."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf ÉÎĎÇÄÁ ĎŇÇÁÎÉÚĎ×Ů×ÁĹÔ ×ŮĐĎĚÎĹÎÉĹ ŇÁÚĚÉŢÎŮČ ÚÁÄÁŢ\n"
-"×Ď ×ŇĹÍŃ ÚÁÇŇŐÚËÉ, ÄĚŃ ĐĎÄÄĹŇÖÁÎÉŃ ËĎÎĆÉÇŐŇÁĂÉÉ ÓÉÓÔĹÍŮ."
-
-#: ../../services.pm_.c:43
-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. üÔĎ\n"
-"× ĐĹŇ×ŐŔ ĎŢĹŇĹÄŘ ÓĹŇ×ĹŇ, ŇÁÓĐŇĹÄĹĚŃŔÝÉĘ ÚÁÄÁÎÉŃ ÎÁ ĐĹŢÁÔŘ ĐĎ ĐŇÉÎÔĹŇÁÍ."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux ÷ÉŇÔŐĚÁŘÎŮĘ óĹŇ×ĹŇ, ÉÓĐĎĚŘÚŐĹÔÓŃ ÄĚŃ ÓĎÚÄÁÎÉŃ ×ŮÓĎËĎĐŇĎÉÚ×ĎÄÉÔĹĚŘÎŮČ "
-"ÓĹŇ×ĹŇĎ×\n"
-"Ó ČĎŇĎŰÉÍ ÄĎÓÔŐĐĎÍ."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-#, fuzzy
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) Ń×ĚŃĹÔÓŃ ÓĹŇ×ĹŇĎÍ ÄĎÍĹÎÎŮČ ÉÍĹÎ (DNS), ËĎÔĎŇŮĘ ÉÓĐĎĚŘÚŐĹÔÓŃ ÄĚŃ "
-"ĐŇĹĎÂŇÁÚĎ×ÁÎÉŃ ÉÍĹÎ ÍÁŰÉÎ × IP ÁÄŇĹÓÁ."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"íĎÎÔÉŇŐĹÔ É ŇÁÚÍĎÎÔÉŇŐĹÔ ×ÓĹ ÓĹÔĹ×ŮĹ ĆÁĘĚĎ×ŮĹ ÓÉÓÔĹÍŮ (NFS), SMB (Lan\n"
-"Manager/Windows) É NCP (NetWare)."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"áËÔÉ×ÉÚÉŇŐĹÔ/äĹÁËÔÉ×ÉÚÉŇŐĹÔ ×ÓĹ ÓĹÔĹ×ŮĹ ÉÎÔĹŇĆĹĘÓŮ, ÎÁÓÔŇĎĹÎÎŮĹ ÎÁ ÚÁĐŐÓË\n"
-"ĐŇÉ ÚÁÇŇŐÚËĹ."
-
-#: ../../services.pm_.c:52
-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.\n"
-"üÔĎÔ ÓĹŇ×ÉÓ ĎÂĹÓĐĹŢÉ×ÁĹÔ ĆŐÎËĂÉĎÎÁĚŘÎĎÓÔŘ ÓĹŇ×ĹŇÁ NFS, ÎÁÓÔŇÁÉ×ÁĹÍĎÇĎ ×\n"
-"ŢĹŇĹÚ ĆÁĘĚ /etc/exports."
-
-#: ../../services.pm_.c:55
-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."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"á×ÔĎÍÁÔÉŢĹÓËÉ ×ËĚŔŢÁÔŘ ËĚÁ×ÉŰŐ numlock × ËĎÎÓĎĚÉ É \n"
-"XFree ĐŇÉ ÚÁÇŇŐÚËĹ."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "đĎÄÄĹŇÖËÁ OKI 4w É ÓĎ×ÍĹÓÔÉÍŮČ win-ĐŇÉÎÔĹŇĎ×."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"đĎÄÄĹŇÖËÁ PCMCIA ĎÂŮŢÎÁ ÎŐÖÎÁ ÄĚŃ ĐĎÄÄĹŇÖËÉ ÓĹÔ×ŮČ ËÁŇÔ ethernet É ÍĎÄĹÍĎ× "
-"ÎÁ ĐĎŇÔÁÔÉ×ÎŮČ ËĎÍĐŘŔÔĹŇÁČ. ďÎÁ ÎĹ ÓÔÁŇÔŐĹÔ ÄĎ ÔĹČ ĐĎŇ, ĐĎËÁ ÎĹ ÂŐÄĹÔ "
-"ÎÁÓÔŇĎĹÎÁ, ÔÁËÉÍ ĎÂŇÁÚĎÍ \n"
-"ĹĹ ŐÓÔÁÎĎ×ËÁ ÎÁ ÍÁŰÉÎÁČ, ÇÄĹ ĎÎÁ ÎĹ ÎŐÖÎÁ, ÂĹÚĎĐÁÓÎÁ."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"portmapper ŐĐŇÁ×ĚŃĹÔ ÓĎĹÄÉÎĹÎÉŃÍÉ RPC, ËĎÔĎŇŮĹ ÉÓĐĎĚŘÚŐŔÔÓŃ ÔÁËÉÍÉ "
-"ĐŇĎÔĎËĎĚÁÍÉ\n"
-"ËÁË NFS É NIS. óĹŇ×ĹŇ portmap ÄĎĚÖĹÎ ŇÁÂĎÔÁÔŘ ÎÁ ÍÁŰÉÎÁČ, \n"
-"ËĎÔĎŇŮĹ ĆŐÎËĂÉĎÎÉŇŐŔÔ ËÁË ÓĹŇ×ĹŇÁ ÄĚŃ ĐŇĎÔĎËĎĚĎ×, ËĎÔĎŇŮĹ ĐĎÚ×ĎĚŃŔÔ "
-"ÉÓĐĎĚŘÚĎ×ÁÔŘ ÍĹČÁÎÉÚÍ RPC."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-#, fuzzy
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix Ń×ĚŃĹÔÓŃ áÇĹÎÔĎÍ äĎÓÔÁ×ËÉ đĎŢÔŮ, ÔĎ ĹÓÔŘ ĐŇĎÇŇÁÍÍĎĘ, ËĎÔĎŇÁŃ \n"
-"ĐĹŇĹÍĹÝÁĹÔ ĐĎŢÔŐ Ó ĎÄÎĎĘ ÍÁŰÉÎŮ ÎÁ ÄŇŐÇŐŔ."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"óĎČŇÁÎŃĹÔ É ×ĎÓÓÔÁÎÁ×ĚÉ×ÁĹÔ ĐŐĚ ÓÉÓÔĹÍÎĎĘ ÜÎÔŇĎĐÉÉ ÄĚŃ ŐĚŐŢŰĹÎÉŃ ËÁŢĹÓÔ×Á\n"
-"ÇĹÎĹŇÁĂÉÉ ÓĚŐŢÁĘÎŮČ ŢÉÓĹĚ."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"îÁÚÎÁŢÁĹÔ raw-ŐÓÔŇĎĘÓÔ×Á block-ŐÓÔŇĎĘÓÔ×ÁÍ (ÔÁËÉÍ ËÁË ŇÁÚÄĹĚŮ\n"
-"ÖĹÓÔËĎÇĎ ÄÉÓËÁ), ÄĚŃ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ ÔÁËÉÍÉ ĐŇÉĚĎÖĹÎÉŃÍÉ, ËÁË Oracle"
-
-#: ../../services.pm_.c:71
-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 ÄĎĐŐÓËÁĹÔ Á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎÂÎĎ×ĚĹÎÉĹ ÔÁÂĚÉĂ IP ÍÁŇŰŇŐÔÉÚÁĂÉÉ "
-"ŢĹŇĹÚ \n"
-"ĐŇĎÔĎËĎĚ RIP. ÷ ÔĎ ×ŇĹÍŃ ËÁË RIP ŰÉŇĎËĎ ÉÓĐĎĚŘÚŐĹÔÓŃ × ÎĹÂĎĚŘŰÉČ ÓĹÔŃČ, ÄĚŃ\n"
-"ÂĎĚĹĹ ÓĚĎÖÎŮČ ÓĹÔĹĘ ÎŐÖÎŮ ÂĎĚĹĹ ÓĚĎÖÎŮĹ ĐŇĎÔĎËĎĚŮ ÍÁŇŰŇŐÔÉÚÁĂÉÉ."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"đŇĎÔĎËĎĚ rstat ĐĎÚ×ĎĚŃĹÔ ĐĎĚŘÚĎ×ÁÔĹĚŃÍ ÓĹÔÉ ĐĎĚŐŢÁÔŘ\n"
-"ÄÁÎÎŮĹ Ď ĐŇĎÉÚ×ĎÄÉÔĹĚŘÎĎÓÔÉ ĚŔÂĎĘ ÍÁŰÉÎŮ ×ÄÁÎÎĎĘ ÓĹÔÉ."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"đŇĎÔĎËĎĚ rusers ĐĎÚ×ĎĚŃĹÔ ĐĎĚŘÚĎ×ÁÔĹĚŃÍ ÓĹÔÉ ĎĐŇĹÄĹĚŃÔŘ, ËÔĎ ŇÁÂĎÔÁĹÔ\n"
-"ÎÁ ÄŇŐÇĎĘ ĎÔ×ĹŢÁŔÝĹĘ ÍÁŰÉÎĹ."
-
-#: ../../services.pm_.c:78
-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 ĐĎÚ×ĎĚŃĹÔ ŐÄÁĚĹÎÎĎÍŐ ĐĎĚŘÚĎ×ÁÔĹĚŔ ĐĎĚŐŢÉÔŘ ÓĐÉÓĎË ×ÓĹČ "
-"ĐĎĚŘÚĎ×ÁÔĹĚĹĘ,\n"
-"ŇÁÂĎÔÁŔÝÉČ ÎÁ ÍÁŰÉÎĹ Ó ŐÓÔÁÎĎ×ĚĹÎÎŮÍ ÄĹÍĎÎĎÍ rwho (ÁÎÁĚĎÇÉŢÎĎ finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "úÁĐŐÓÔÉÔŘ ĐĎÄÄĹŇÖËŐ Ú×ŐËÁ ÎÁ ×ÁŰĹĘ ÍÁŰÉÎĹ"
-
-#: ../../services.pm_.c:81
-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 - ÜÔĎ ×ĎÚÍĎÖÎĎÓÔŘ, ËĎÔĎŇĎĘ ĐĎĚŘÚŐŔÔÓŃ ÍÎĎÇÉĹ ÄĹÍĎÎŮ ÄĚŃ ÚÁÎĹÓĹÎÉŃ\n"
-"ÓĎĎÂÝĹÎÉĘ × ŇÁÚĚÉŢÎŮĹ ÖŐŇÎÁĚŮ ÓÉÓÔĹÍÎŮČ ÓĎĎÂÝĹÎÉĘ. őÄĎÂÎĎ, ËĎÇÄÁ syslog "
-"×ÓĹÇÄÁ ÚÁĐŐÝĹÎ."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "úÁÇŇŐÚÉÔŘ ÄŇÁĘ×ĹŇÁ ÄĚŃ ×ÁŰÉČ USB ŐÓÔŇĘĎÓÔ×."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "úÁĐŐÓËÁĹÔ X Font Server (ďÂŃÚÁÔĹĚĹÎ ÄĚŃ ŇÁÂĎÔŮ XFree)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "÷ŮÂĹŇÉÔĹ, ËÁËÉĹ ÓĹŇ×ÉÓŮ ÄĎĚÖÎŮ Á×ÔĎÍÁÔÉŢĹÓËÉ ÚÁĐŐÓËÁÔŘÓŃ ĐŇÉ ÚÁÇŇŐÚËĹ"
-
-#: ../../services.pm_.c:122
-#, fuzzy
-msgid "Printing"
-msgstr "đŇÉÎÔĹŇ"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "éÎÔĹŇÎĹÔ"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr ""
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-#, fuzzy
-msgid "System"
-msgstr "óÉÓÔĹÍÎŮĘ ŇĹÖÉÍ"
-
-#: ../../services.pm_.c:133
-#, fuzzy
-msgid "Remote Administration"
-msgstr "ďĐĂÉÉ ŐÄÁĚĹÎÎĎÇĎ ĐŇÉÎÔĹŇÁ lpd"
-
-#: ../../services.pm_.c:141
-#, fuzzy
-msgid "Database Server"
-msgstr "âÁÚÁ ÄÁÎÎŮČ"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr ""
-
-#: ../../services.pm_.c:186
-#, fuzzy
-msgid "Services"
-msgstr "ŐÓÔŇĎĘÓÔ×Ď"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "×ŮĐĎĚÎĹÎÉĹ"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "ĎÓÔÁÎĎ×ĚĹÎĎ"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "óĹŇ×ÉÓŮ É ÄĹÍĎÎŮ"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"îĹÔ ÄĎĐĎĚÎÉÔĹĚŘÎĎĘ ÉÎĆĎŇÍÁĂÉÉ\n"
-"Ď ÜÔĎ ÓĹŇ×ÉÓĹ. éÚ×ÉÎÉÔĹ."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "đŇÉ ÚÁÇŇŐÚËĹ"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Start"
-msgstr "óÔÁÔŐÓ:"
-
-#: ../../services.pm_.c:236
-#, fuzzy
-msgid "Stop"
-msgstr "óĹËÔĎŇ"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "ďÓÔÁĚŘÎĎĘ ÍÉŇ"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "äĎÓÔŐĐ × ÉÎÔĹŇÎĹÔ"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "íŐĚŘÔÉÍĹÄÉÁ - çŇÁĆÉËÁ"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "ňÁÚŇÁÂĎÔËÁ"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "ăĹÎÔŇ őĐŇÁ×ĚĹÎÉŃ"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "óĹÔĹ×ĎĘ ÉÎÔĹŇĆĹĘÓ"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "óĹŇ×ĹŇ SMB"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "éÇŇŮ"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "üËÓĐĹŇÔ"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-msgid "MandrakeConsulting"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-#, fuzzy
-msgid "Installing packages..."
-msgstr "őÓÔÁÎĎ×ËÁ ĐÁËĹÔÁ %s"
-
-#: ../../standalone/diskdrake_.c:85
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"ôÁÂĚÉĂÁ ŇÁÚÄĹĚĎ× ÎĹ ŢÉÔÁĹÔÓŃ, ĎÎÁ ÓĚÉŰËĎÍ ÉÓĐĎŇŢĹÎÁ :(\n"
-"đĎÓÔÁŇÁŔÓŘ ĐŇĎÄĎĚÖÉÔŘ, ĎŢÉÝÁŃ ĎŢÉÝÁŃ ŇÁÚÄĹĚŮ"
-
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
-msgid "Error!"
-msgstr "ďŰÉÂËÁ"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "îÁÓÔŇĎĘËÁ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "îÁÓÔŇĎĘËÁ ×ÉÄÁ ÚÁÇŇŐÚËÉ"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "đĎÚÄŇÁ×ĚŃĹÍ!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:282
-#, fuzzy
-msgid "Auto Install"
-msgstr "őÓÔÁÎĎ×ËÁ"
-
-#: ../../standalone/drakautoinst_.c:352
-#, fuzzy
-msgid "Add an item"
-msgstr "äĎÂÁ×ÉÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-
-#: ../../standalone/drakautoinst_.c:359
-#, fuzzy
-msgid "Remove the last item"
-msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ ĆÁĘĚÁ loopback %s"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-
-#: ../../standalone/drakbackup_.c:615
-#, fuzzy
-msgid "Backup User files..."
-msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:666
-#, fuzzy
-msgid "Backup Other files..."
-msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-#, fuzzy
-msgid "File Selection"
-msgstr "÷ŮÂĎŇ ÇŇŐĐĐŮ ĐÁËĹÔĎ×"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:812
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-#, fuzzy
-msgid "Remove Selected"
-msgstr "őÄÁĚÉÔŘ ĎŢĹŇĹÄŘ"
-
-#: ../../standalone/drakbackup_.c:900
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "őÄÁĚÉÔŘ Windows(TM)"
-
-#: ../../standalone/drakbackup_.c:939
-#, fuzzy
-msgid "Users"
-msgstr "đĎĚŘÚĎ×ÁÔĹĚŘÓËĎĹ ÉÍŃ"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:967
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "đŇĎ×ĹŇŘÔĹ ×ÁŰŐ ÍŮŰŘ"
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:977
-#, fuzzy
-msgid "Please enter your login"
-msgstr "đĎĐŇĎÂŐĘÔĹ ĹÝĹ ŇÁÚ"
-
-#: ../../standalone/drakbackup_.c:982
-#, fuzzy
-msgid "Please enter your password"
-msgstr "đĎĐŇĎÂŐĘÔĹ ĹÝĹ ŇÁÚ"
-
-#: ../../standalone/drakbackup_.c:988
-#, fuzzy
-msgid "Remember this password"
-msgstr "îĹÔ ĐÁŇĎĚŃ"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "óĎĹÄÉÎĹÎÉĹ ĐĎ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "÷ŮÂĎŇ ÔÉĐÁ ĐĎÄËĚŔŢĹÎÉŃ ĐŇÉÎÔĹŇÁ"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-#, fuzzy
-msgid "Please choose your CD space"
-msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ŇÁÓËĚÁÄËŐ ×ÁŰĹĘ ËĚÁ×ÉÁÔŐŇŮ"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "đĎÖÁĚŐĘÓÔÁ ÎÁÖÍÉÔĹ ÎÁ ŇÁÚÄĹĚ"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1106
-#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1153
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "đŇĎ×ĹŇŘÔĹ ×ÁŰŐ ÍŮŰŘ"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-#, fuzzy
-msgid "Use quota for backup files."
-msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-
-#: ../../standalone/drakbackup_.c:1267
-#, fuzzy
-msgid "Network"
-msgstr "óĹÔĹ×ĎĘ ÉÎÔĹŇĆĹĘÓ"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1312
-#, fuzzy
-msgid "Use daemon"
-msgstr "đĎĚŘÚĎ×ÁÔĹĚŘÓËĎĹ ÉÍŃ"
-
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-
-#: ../../standalone/drakbackup_.c:1323
-#, fuzzy
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "őËÁÖÉÔĹ, ËÁËĎĘ ŃÚŮË ÉÓĐĎĚŘÚĎ×ÁÔŘ."
-
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "ďĐŇĹÄĹĚĹÎÉĹ ÖĹÓÔËĎÇĎ ÄÉÓËÁ"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "đĎĚŘÚĎ×ÁÔĹĚŘÓËĎĹ ÉÍŃ"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1416
-#, fuzzy
-msgid "Where"
-msgstr "ëĎĚĹÓÉËĎ"
-
-#: ../../standalone/drakbackup_.c:1421
-#, fuzzy
-msgid "When"
-msgstr "ëĎĚĹÓÉËĎ"
-
-#: ../../standalone/drakbackup_.c:1426
-#, fuzzy
-msgid "More Options"
-msgstr "đÁŇÁÍĹÔŇŮ ÍĎÄŐĚŃ:"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "ëĎÎĆÉÇŐŇÁĂÉŃ ÓĹÔÉ"
-
-#: ../../standalone/drakbackup_.c:1463
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1540
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-
-#: ../../standalone/drakbackup_.c:1541
-#, fuzzy
-msgid "Backup system"
-msgstr "îÁÓÔŇ. ĆÁĘĚĎ×ŮČ ÓÉÓÔĹÍ"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1637
-#, fuzzy
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "đÁŇÁÍĹÔŇŮ"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1755
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "÷ŮÂĹŇÉÔĹ, Ë ËÁËĎÍŐ ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎĎÍŐ ĐĎŇÔŐ ĐĎÄËĚŔŢĹÎ ÍĎÄĹÍ."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1886
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "ëĎÎĆÉÇŐŇÁĂÉŃ ÓĹÔÉ"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1972
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-
-#: ../../standalone/drakbackup_.c:1974
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "đĎÖÁĚŐĘÓÔÁ, ŐËÁÖÉÔĹ ÔÉĐ ×ÁŰĹĘ ÍŮŰÉ"
-
-#: ../../standalone/drakbackup_.c:2002
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-
-#: ../../standalone/drakbackup_.c:2083
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ Ó ÄÉÓËĹÔŮ"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2143
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "đĎÖÁĚŐĘÓÔÁ, ŐËÁÖÉÔĹ ÔÉĐ ×ÁŰĹĘ ÍŮŰÉ"
-
-#: ../../standalone/drakbackup_.c:2145
-#, fuzzy
-msgid "Other Media"
-msgstr "äŇŐÇÉĹ"
-
-#: ../../standalone/drakbackup_.c:2151
-#, fuzzy
-msgid "Restore system"
-msgstr "őÓÔÁÎĎ×ËÁ ÓÉÓÔĹÍŮ"
-
-#: ../../standalone/drakbackup_.c:2152
-#, fuzzy
-msgid "Restore Users"
-msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ÉÚ ĆÁĘĚÁ"
-
-#: ../../standalone/drakbackup_.c:2153
-#, fuzzy
-msgid "Restore Other"
-msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ÉÚ ĆÁĘĚÁ"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2225
-#, fuzzy
-msgid "Custom Restore"
-msgstr "óĐĹĂÉÁĚŘÎÁŃ"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_đĎÍĎÝŘ"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-#, fuzzy
-msgid "Previous"
-msgstr "<- đŇĹÄŮÄŐÝÉĘ"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
-msgid "Save"
-msgstr "óÔÁÔŐÓ:"
-
-#: ../../standalone/drakbackup_.c:2317
-#, fuzzy
-msgid "Build Backup"
-msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-#, fuzzy
-msgid "Restore"
-msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ÉÚ ĆÁĘĚÁ"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-#, fuzzy
-msgid "Next"
-msgstr "óĚĹÄŐŔÝÉĘ ->"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
-msgid "Package List to Install"
-msgstr "÷ŮÂĎŇ ĐÁËĹÔĎ× ÄĚŃ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2573
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "őËÁÖÉÔĹ, ËÁËĎĘ ŃÚŮË ÉÓĐĎĚŘÚĎ×ÁÔŘ."
-
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "őËÁÖÉÔĹ, ËÁËĎĘ ŃÚŮË ÉÓĐĎĚŘÚĎ×ÁÔŘ."
-
-#: ../../standalone/drakbackup_.c:2616
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "őËÁÖÉÔĹ, ËÁËĎĘ ŃÚŮË ÉÓĐĎĚŘÚĎ×ÁÔŘ."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2739
-#, fuzzy
-msgid "Backup system files"
-msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-
-#: ../../standalone/drakbackup_.c:2741
-#, fuzzy
-msgid "Backup user files"
-msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-
-#: ../../standalone/drakbackup_.c:2743
-#, fuzzy
-msgid "Backup other files"
-msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2771
-#, fuzzy
-msgid "Sending files..."
-msgstr "óĎČŇÁÎÉÔŘ × ĆÁĘĚ"
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2899
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "đŇĎ×ĹŇŘÔĹ ×ÁŰŐ ÍŮŰŘ"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2923
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-
-#: ../../standalone/drakbackup_.c:2989
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "ëĎÎĆÉÇŐŇÁĂÉŃ ÓĹÔÉ"
-
-#: ../../standalone/drakbackup_.c:2999
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "ëĎÎĆÉÇŐŇÁĂÉŃ ÓĹÔÉ"
-
-#: ../../standalone/drakbackup_.c:3020
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../standalone/drakbackup_.c:3024
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../standalone/drakbackup_.c:3028
-#, fuzzy
-msgid "Backup Now"
-msgstr "îÁÓÔŇ. ĆÁĘĚĎ×ŮČ ÓÉÓÔĹÍ"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "őÓÔÁÎĎ×ËÁ %s ÚÁ×ĹŇŰÉĚÁÓŘ ÎĹŐÄÁŢÎĎ. đŇĎÉÚĎŰĚÁ ÓĚĹÄŐŔÝÁŃ ĎŰÉÂËÁ:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:253
-#, fuzzy
-msgid "no fonts found"
-msgstr "ÓĹÔĹ×ŮČ ËÁŇÔ ÎĹ ÎÁĘÄĹÎĎ"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-#, fuzzy
-msgid "done"
-msgstr "çĎÔĎ×Ď"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:353
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "đĎÄÇĎÔĎ×ËÁ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:414
-#, fuzzy
-msgid "Restart XFS"
-msgstr "ĎÇŇÁÎÉŢÉÔŘ"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:465
-#, fuzzy
-msgid "xfs restart"
-msgstr "ĎÇŇÁÎÉŢÉÔŘ"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:547
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "ĆĎŇÍÁÔÉŇĎ×ÁÎÉĹ ŇÁÚÄĹĚĎ×"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../standalone/drakfont_.c:570
-#, fuzzy
-msgid "Font List"
-msgstr "ôĎŢËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ"
-
-#: ../../standalone/drakfont_.c:739
-#, fuzzy
-msgid "Choose the applications that will support the fonts :"
-msgstr "÷ŮÂĎŇ ŇÁÚÄĹĚĎ× ÄĚŃ ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:747
-#, fuzzy
-msgid "StarOffice"
-msgstr "ďĆÉÓ"
-
-#: ../../standalone/drakfont_.c:751
-#, fuzzy
-msgid "Abiword"
-msgstr "ďÔÍĹÎÉÔŘ"
-
-#: ../../standalone/drakfont_.c:755
-#, fuzzy
-msgid "Generic Printers"
-msgstr "đŇÉÎÔĹŇ"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:828
-#, fuzzy
-msgid "Install List"
-msgstr "őÓÔÁÎĎ×ËÁ ÓÉÓÔĹÍŮ"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr ""
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:899
-#, fuzzy
-msgid "Selected All"
-msgstr "÷ŮÂĹŇÉÔĹ ĆÁĘĚ"
-
-#: ../../standalone/drakfont_.c:901
-#, fuzzy
-msgid "Remove List"
-msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-#, fuzzy
-msgid "Initials tests"
-msgstr "îÁŢÁĚŘÎĎĹ ÓĎĎÂÝĹÎÉĹ"
-
-#: ../../standalone/drakfont_.c:920
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "îÁ ×ÁŰĹĘ ÍÁŰÉÎĹ ÎĹÔ ÓĹÔĹ×ĎÇĎ ÁÄÁĐÔĹŇÁ!"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:922
-#, fuzzy
-msgid "Post Install"
-msgstr "őÓÔÁÎĎ×ËÁ"
-
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "îÁ ×ÁŰĹĘ ÍÁŰÉÎĹ ÎĹÔ ÓĹÔĹ×ĎÇĎ ÁÄÁĐÔĹŇÁ!"
-
-#: ../../standalone/drakfont_.c:941
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "÷ŮČĎÄ ÉÚ ĐŇĎĂĹÓÓÁ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "ňÁÚÄĹĚĹÎÉĹ ÉÎÔĹŇÎĹÔ-ÓĎĹÄÉÎĹÎÉŃ"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "ňÁÚÄĹĚĹÎÉĹ ÉÎÔĹŇÎĹÔ-ÓĎĹÄÉÎĹÎÉŃ × ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×ËĚŔŢĹÎĎ"
-
-#: ../../standalone/drakgw_.c:139
-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"
-"÷ ÄÁÎÎŮĘ ÍĎÍĹÎÔ ŇÁÚÄĹĚĹÎÉĹ ×ËĚŔŢĹÎĎ.\n"
-"\n"
-"ţÔĎ ×Ů ČĎÔÉÔĹ ÓÄĹĚÁÔŘ?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "×ŮËĚŔŢÉÔŘ"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "ŐÂŇÁÔŘ"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "ĐĹŇĹÎÁÓÔŇĎÉÔŘ"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "÷ŮËĚŔŢĹÎÉĹ ÓĹŇ×ĹŇĎ×..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "ňÁÚÄĹĚĹÎÉĹ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ ÔĹĐĹŇŘ ×ŮËĚŔŢĹÎĎ."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "ňÁÚÄĹĚĹÎÉĹ ÉÎÔĹŇÎĹÔ-ÓĎĹÄÉÎĹÎÉŃ × ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×ŮËĚŔŢĹÎĎ"
-
-#: ../../standalone/drakgw_.c:164
-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"
-"÷ ÄÁÎÎŮĘ ÍĎÍĹÎÔ ŇÁÚÄĹĚĹÎÉĹ ×ŮËĚŔŢĹÎĎ.\n"
-"\n"
-"ţÔĎ ×Ů ČĎÔÉÔĹ ÓÄĹĚÁÔŘ?"
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "×ËĚŔŢÉÔŘ"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "÷ËĚŔŢĹÎÉĹ ÓĹŇ×ĹŇĎ×..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "ňÁÚÄĹĚĹÎÉĹ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ ÔĹĐĹŇŘ ×ËĚŔŢĹÎĎ."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "éÎÔĹŇĆĹĘÓ %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "îÁ ×ÁŰĹĘ ÍÁŰÉÎĹ ÎĹÔ ÓĹÔĹ×ĎÇĎ ÁÄÁĐÔĹŇÁ!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "óĹÔĹ×ĎĘ ÉÎÔĹŇĆĹĘÓ"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"÷ ÓÉÓÔĹÍĹ ĹÓÔŘ ÔĎĚŘËĎ ĎÄÉÎ ÎÁÓÔŇĎĹÎÎŮĘ ÓĹÔĹ×ĎĘ ÁÄÁĐÔĹŇ:\n"
-"\n"
-"%s\n"
-"\n"
-"ń ÓĎÂÉŇÁŔÓŘ ÎÁÓÔŇĎÉÔŘ ĚĎËÁĚŘÎŐŔ ÓĹÔŘ, ÉÓĐĎĚŘÚŐŃ ÜÔĎÔ ÁÄÁĐÔĹŇ."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ, ËÁËĎĘ ÓĹÔĹ×ĎĘ ÁÄÁĐÔĹŇ ÂŐÄĹÔ ĐĎÄËĚŔŢĹÎ Ë ×ÁŰĹĘ "
-"ĚĎËÁĚŘÎĎĘ ÓĹÔÉ."
-
-#: ../../standalone/drakgw_.c:271
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "íĎÎÉÔĎŇ ÎĹ ÎÁÓÔŇĎĹÎ"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:277
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "îÁÓÔŇĎĘËÁ ×ÉÄÁ ÚÁÇŇŐÚËÉ"
-
-#: ../../standalone/drakgw_.c:278
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "îÁÓÔŇĎĘËÁ éÎÔĹŇÎĹÔ"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:298
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "IP ÓĹŇ×ĹŇÁ CUPS"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"đĎÔĹÎĂÉÁĚŘÎŮĘ ËĎÎĆĚÉËÔ ÁÄŇĹÓĎ× LAN ĎÂÎÁŇŐÖĹÎ × ÔĹËŐÝĹĘ ËĎÎĆÉÇŐŇÁĂÉÉ %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "ďÂÎÁŇŐÖĹÎÁ ÎÁÓÔŇĎĘËÁ ÓÉÓÔĹÍŮ ÚÁÝÉÔŮ ÓĹÔÉ (firewall)!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"÷ÎÉÍÁÎÉĹ! ďÂÎÁŇŐÖĹÎŮ ÓŐÝĹÓÔ×ŐŔÝÉĹ ÎÁÓÔŇĎĘËÉ ÓÉÓÔĹÍŮ ÚÁÝÉÔŮ ÓĹÔĹĘ (firewall). "
-"÷ÁÍ ÍĎÇŐÔ ĐĎÔŇĹÂĎ×ÁÔŘÓŃ ÎĹÂĎĚŘŰÉĹ ŇŐŢÎŮĹ ÉÓĐŇÁ×ĚĹÎÉŃ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "îÁÓÔŇĎĘËÁ..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "îÁÓÔŇĎĘËÁ ÓËŇÉĐÔĎ×, ŐÓÔÁÎĎ×ËÁ ĐŇĎÇŇÁÍÍ, ÚÁĐŐÓË ÓĹŇ×ÉÓĎ×..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "đŇĎÂĚĹÍŮ Ó ŐÓÔÁÎĎ×ËĎĘ ĐÁËĹÔÁ %s"
-
-#: ../../standalone/drakgw_.c:672
-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:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "îÁÓÔŇĎĘËÁ ŐÖĹ ÂŮĚÁ ÓÄĹĚÁÎÁ, ÎĎ ÓĹĘŢÁÓ ĎÎÁ ×ŮËĚŔŢĹÎÁ."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "îÁÓÔŇĎĘËÁ ŐÖĹ ÂŮĚÁ ÓÄĹĚÁÎÁ É ÓĹĘŢÁÓ ĎÎÁ ×ËĚŔŢĹÎÁ."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "îÁÓÔŇĎĘËÁ ŇÁÚÄĹĚĹÎÉŃ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ ÎÉËĎÇÄÁ ÎĹ ×ŮĐĎĚÎŃĚÁÓŘ."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "îÁÓÔŇĎĘËÁ ŇÁÚÄĹĚĹÎÉŃ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ"
-
-#: ../../standalone/drakgw_.c:703
-#, 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:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ëĎÎĆÉÇŐŇÁĂÉŃ ÓĹÔÉ (%d ÁÄÁĐÔĹŇĎ×)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "đŇĎĆÉĚŘ: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "őÄÁĚÉÔŘ ĐŇĎĆÉĚŘ..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "őÄÁĚŃĹÍŮĘ ĐŇĎĆÉĚŘ:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "îĎ×ŮĘ ĐŇĎĆÉĚŘ..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "éÍŃ ËĎÍĐŘŔÔĹŇÁ:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "äĎÓÔŐĐ × ÉÎÔĹŇÎĹÔ"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "ôÉĐ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "űĚŔÚ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "éÎÔĹŇĆĹĘÓ:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "óÔÁÔŐÓ:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "îÁÓÔŇĎĘËÁ ÄĎÓÔŐĐÁ × ÉÎÔĹŇÎĹÔ..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "äŇÁĘ×ĹŇ"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "éÎÔĹŇĆĹĘÓ"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "đŇĎÔĎËĎĚ"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "óÔÁÔŐÓ:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "îÁÓÔŇĎÉÔŘ ĚĎËÁĚŘÎŐŔ ÓĹÔŘ..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "íÁÓÔĹŇ..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "đŇÉÍĹÎÉÔŘ"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "đĎÖÁĚŐĘÓÔÁ, ĐĎÄĎÖÄÉÔĹ... ÷ÎĹÓĹÎÉĹ ÉÚÍĹÎĹÎÉĘ × ÎÁÓÔŇĎĘËŐ"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "óĎĹÄÉÎĹÎĎ"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "îĹ ÓĎĹÄÉÎĹÎĎ"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "óĎĹÄÉÎÉÔŘ..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "ďÔÓĎĹÄÉÎÉÔŘ..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"ő ×ÁÓ ÎĹÔ ÎÁÓÔŇĎĹÎÎŮČ ÉÎÔĹŇĆĹĘÓĎ×.\n"
-"óÎÁŢÁĚÁ ÎŐÖÎĎ ÉČ ÎÁÓÔŇĎÉÔŘ ÎÁÖÁ× ÎÁ 'îÁÓÔŇĎÉÔŘ'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "áÄÁĐÔĹŇ %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "đŇĎÔËĎĚ ÚÁÇŇŐÚËÉ"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "úÁĐŐÝĹÎĎ ĐŇÉ ÚÁÇŇŐÚËĹ"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "ëĚÉĹÎÔ DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "áËÔÉ×ÎŮĘ"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "áËÔÉ×ÎŮĘ"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"ő ×ÁÓ ÎĹÔ ÎÉ ĎÄÎĎÇĎ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ.\n"
-"óÎÁŢÁĚÁ ÓĎÚÄÁĘÔĹ ÓĎĹÄÉÎĹÎÉĹ, ÎÁÖÁ× 'îÁÓÔŇĎÉÔŘ'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "îÁÓÔŇĎĘËÁ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "îÁÓÔŇĎĘËÁ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "ôÉĐ ÓĎĹÄÉÎĹÎÉŃ: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "đÁŇÁÍĹÔŇŮ"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "űĚŔÚ"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "óĹÔĹ×ÁŃ ËÁŇÔÁ"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "ëĚÉĹÎÔ DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "îÁÓÔŇĎĘËÁ ŐŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "ăĹÎÔŇ őĐŇÁ×ĚĹÎÉŃ"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "÷ŮÂĹŇÉÔĹ ĐŇĎÇŇÁÍÍŐ, ËĎÔĎŇŮĘ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ"
-
-#: ../../standalone/drakxtv_.c:48
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "ëÁÎÁÄÓËÉĘ (ë×ĹÂĹË)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "East Europe"
-msgstr "ĺ×ŇĎĐÁ"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Ireland"
-msgstr "éÓĚÁÎÄÓËÉĘ"
-
-#: ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "West Europe"
-msgstr "ĺ×ŇĎĐÁ"
-
-#: ../../standalone/drakxtv_.c:51
-#, fuzzy
-msgid "Australia"
-msgstr "ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎÁŃ"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "ÉÓĐĎĚŘÚĎ×ÁÎÉĹ: keyboarddrake [--expert] [keyboard]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ŇÁÓËĚÁÄËŐ ×ÁŰĹĘ ËĚÁ×ÉÁÔŐŇŮ"
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "÷Ů ČĎÔÉÔĹ, ŢÔĎÂŮ ËĚÁ×ÉŰÁ BackSpace ĎÚÎÁŢÁĚÁ × ËĎÎÓĎĚÉ Delete?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "óÍĹÎÉÔĹ Cd-Rom"
-
-#: ../../standalone/livedrake_.c:25
-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 ĐĎÄ ÎÁÚ×ÁÎÉĹÍ Installation × ÄÉÓËĎ×ĎÄ É ÎÁÖÍÉÔĹ Ok.\n"
-"ĺÓĚÉ Ő ×ÁÓ ĹÇĎ ÎĹÔ, ÎÁÖÍÉÔĹ ďÔÍĹÎÉÔŘ (Cancel), ŢÔĎÂŮ ÉÚÂĹÖÁÔŘ ĎÂÎĎ×ĚĹÎÉŃ Ó "
-"ÜÔĎÇĎ ÄÉÓËÁ."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "îĹ×ĎÚÍĎÖÎĎ ÎÁŢÁÔŘ ĎÂÎĎ×ĚĹÎÉĹ !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-#, fuzzy
-msgid "Show only for the selected day"
-msgstr "ďÔĎÂŇÁÖÁÔŘ ÔĎĚŘËĎ ÚÁ ÓĹÇĎÄÎŃ"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/ćÁĘĚ/_îĎ×ŮĘ"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/ćÁĘĚ/_ďÔËŇŮÔŘ"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/ćÁĘĚ/_óĎČŇÁÎÉÔŘ"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/ćÁĘĚ/óĎČŇÁÎÉÔŘ _ëÁË"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/ćÁĘĚ/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_đÁŇÁÍĹÔŇŮ"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/đÁŇÁÍĹÔŇŮ/đŇĎ×ĹŇËÁ"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/đĎÍĎÝŘ"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/đĎÍĎÝŘ/_ď ĐŇĎÇŇÁÍÍĹ..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:173
-#, fuzzy
-msgid "User"
-msgstr "đĎĚŘÚĎ×ÁÔĹĚŘÓËĎĹ ÉÍŃ"
-
-#: ../../standalone/logdrake_.c:174
-#, fuzzy
-msgid "Messages"
-msgstr "ÓĎĎÂÝĹÎÉŃ"
-
-#: ../../standalone/logdrake_.c:175
-#, fuzzy
-msgid "Syslog"
-msgstr "ÚÁĐÉÓŘ ÓĎÂŮÔÉĘ × ÓÉÓÔĹÍĹ"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "ĐĎÉÓË"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "őÔÉĚÉÔÁ ÍĎÎÉÔĎŇÉÎÇÁ ÚÁĐÉÓĹĘ ÓĎÂŮÔÉĘ"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "îÁÓÔŇĎĘËÉ"
-
-#: ../../standalone/logdrake_.c:191
-#, fuzzy
-msgid "matching"
-msgstr "ÓĎĎÔ×ĹÔÓÔ×ŐĹÔ"
-
-#: ../../standalone/logdrake_.c:192
-#, fuzzy
-msgid "but not matching"
-msgstr "ËŇĎÍĹ ÓĎĎÔ×ĹÔÓÔ×ŐŔŰÉČ"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "÷ŮÂĹŇÉÔĹ ĆÁĘĚ"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "ëÁĚĹÎÄÁŇŘ"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "óĎÄĹŇÖÉÍĎĹ ćÁĘĚÁ"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "đĎÖÁĚŐĘÓÔÁ ĐĎÄĎÖÄÉÔĹ, ×ŮĐĎĚÎŃĹÔÓŃ: %s"
-
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
-
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
-msgid "service setting"
-msgstr "ŐÓÔŇĎĘÓÔ×Ď"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:433
-#, fuzzy
-msgid "load setting"
-msgstr "ćĎŇÍÁÔÉŇĎ×ÁÎÉĹ"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:447
-#, fuzzy
-msgid "alert configuration"
-msgstr "îÁÓÔŇĎĘËÁ"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "óĎČŇÁÎÉÔŘ ËÁË..."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "đĎÖÁĚŐĘÓÔÁ, ŐËÁÖÉÔĹ ÔÉĐ ×ÁŰĹĘ ÍŮŰÉ"
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "serial_usb ÎĹ ÎÁĘÄĹÎ\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "üÍŐĚÉŇĎ×ÁÔŘ ÔŇĹÔŘŔ ËÎĎĐËŐ?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
-msgid "Select a scanner"
-msgstr "÷ŮÂĹŇÉÔĹ ×ÉÄĹĎËÁŇÔŐ"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "úÁÇŇŐÚĎŢÎĎĹ ŐÓÔŇĎĘÓÔ×Ď"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "îÁÓÔŇĎĘËÁ ÓÉÓÔĹÍŮ ÚÁÝÉÔŮ ÓĹÔĹĘ (firewall)"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "îÁÓÔŇĎĘËÁ ÓÉÓÔĹÍŮ ÚÁÝÉÔŮ ÓĹÔĹĘ (firewall)"
-
-#: ../../standalone/tinyfirewall_.c:79
-msgid ""
-"Firewalling\n"
-"\n"
-"You already have set up a firewall.\n"
-"Click on Configure to change or remove the firewall"
-msgstr ""
-"CÉÓÔĹÍÁ ÚÁÝÉÔŮ ÓĹÔĹĘ\n"
-"\n"
-"÷Ů ŐÖĹ ÎÁÓÔŇĎÉĚÉ ÓÉÓÔĹÍŐ ÚÁÝÉÔŮ ÓĹÔĹĘ.\n"
-"îÁÖÍÉÔĹ ÎÁ îÁÓÔŇĎÉÔŘ ÄĚŃ ÉÚÍĹÎĹÎÉŃ ÉĚÉ ŐÄÁĚĹÎÉŃ ÓÉÓÔĹÍŮ ÚÁÝÉÔŮ ÓĹÔÉ"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"CÉÓÔĹÍÁ ÚÁÝÉÔŮ ÓĹÔĹĘ\n"
-"\n"
-"îÁÖÍÉÔĹ ÎÁ îÁÓÔŇĎÉÔŘ ÄĚŃ ÓĎÚÄÁÎÉŃ ÓÉÓÔĹÍŮ ÚÁÝÉÔŮ ÓĹÔÉ"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "÷ŮÂĹŇÉÔĹ ŃÚŮË"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "÷ŮÂĹŇÉÔĹ ËĚÁÓÓ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "ďĐŇĹÄĹĚĹÎÉĹ ÖĹÓÔËĎÇĎ ÄÉÓËÁ"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "îÁÓÔŇĎĘËÁ ÍŮŰÉ"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "÷ŮÂĎŇ ËĚÁ×ÉÁÔŐŇŮ"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "âĹÚĎĐÁÓÎĎÓÔŘ"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "îÁÓÔŇ. ĆÁĘĚĎ×ŮČ ÓÉÓÔĹÍ"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "ĆĎŇÍÁÔÉŇĎ×ÁÎÉĹ ŇÁÚÄĹĚĎ×"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "÷ŮÂĎŇ ĐÁËĹÔĎ× ÄĚŃ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "őÓÔÁÎĎ×ËÁ ÓÉÓÔĹÍŮ"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "äĎÂÁ×ÉÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "îÁÓÔŇĎĘËÁ ÓĹŇ×ÉÓĎ×"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "őÓÔÁÎĎ×ËÁ ÍĹÎĹÄÖĹŇÁ ÚÁÇŇŐÚËÉ"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "óĎÚÄÁÔŘ ÚÁÇŇŐÚ. ÄÉÓË"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "îÁÓÔŇĎĘËÁ X Window"
-
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "őÓÔÁÎĎ×ËÁ ÓÉÓÔĹÍŮ"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "÷ŮČĎÄ ÉÚ ĐŇĎĂĹÓÓÁ ŐÓÔÁÎĎ×ËÉ"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"ÔĎÎËÁŃ ÎÁÓÔŇĎĘËÁ ÓÉÓÔĹÍŮ ÚÁÝÉÔŮ ÓĹÔÉ\n"
-"\n"
-"úÄĹÓŘ ÎÁÓÔŇÁÉ×ÁĹÔÓŃ ĐĹŇÓĎÎÁĚŘÎÁŃ ÓÉÓÔĹÍÁ ÄĚŃ ÜÔĎĘ Mandrake Linux ÍÁŰÉÎŮ.\n"
-"äĚŃ ÓĎÚÄÁÎÉŃ ÓĐĹĂÉÁĚŘÎĎĘ ÍĎÝÎĎĘ ÓÉÓÔĹÍŮ ÚÁÝÉÔŮ ÓĹÔÉ, ĎÂŇÁÔÉÔĹ ×ÎÉÍÁÎÉĹ ÎÁ\n"
-"ÓĐĹĂÉÁĚÉÚÉŇĎ×ÁÎÎŮĘ ÄÉÓÔŇÉÂŐÔÉ× MandrakeSecurity Firewall."
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"÷ÁÍ ÂŐÄĹÔ ÚÁÄÁÎĎ ÎĹÓËĎĚŘËĎ ×ĎĐŇĎÓĎ× Ď ÔĎÍ, Ë ËÁËÉÍ ÓĹŇ×ÉÓÁÍ ÍĎÖÎĎ ÂŐÄĹÔ "
-"ĐĎÄÓĎĹÄÉÎŃÔŘÓŃ\n"
-"ÉÚ ÉÎÔĹŇÎĹÔÁ. đŇĎÄŐÍŮ×ÁĘÔĹ ÔÝÁÔĹĚŘÎĎ ĎÔ×ĹÔŮ\n"
-", ÔÁË ËÁË ×ĎĐŇĎÓ ÂĹÚĎĐÁÓÎĎÓÔÉ ×ÁŰĹĘ ÍÁŰÉÎŮ - ÜÔĎ ×ÁÖÎĎ.\n"
-"\n"
-"đĎÖÁĚŐĘÓÔÁ, ĹÓĚÉ ×Ů × ÄÁÎÎŮĘ ÍĎÍĹÎÔ ÎĹ ÉÓĐĎĚŘÚŐĹÔĹ ËÁËĎĘ-ĚÉÂĎ ÉÚ ÜÔÉČ "
-"ÓĹŇ×ÉÓĎ×, ÚÁËŇĎĘÔĹ\n"
-"ĹÇĎ ÓÉÓÔĹÍĎĘ ÚÁÝÉÔŮ ĎÔ ÄĎÓÔŐĐÁ Ë ÎĹÍŐ ÉÚÉÎÔĹŇÎĹÔÁ. ÷Ů ÍĎÖĹÔĹ ÉÚÍĹÎÉÔŘ ÜÔŐ "
-"ÎÁÓÔŇĎĘËŐ ĐĎÚÖĹ\n"
-"× ĚŔÂĎĹ ×ŇĹÍŃ!"
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"éÓĐĎĚŘÚŐĹÔĹ ĚÉ ×Ů ÎÁ ÜÔĎĘ ÍÁŰÉÎĹ web ÓĹŇ×ĹŇ, ËĎÔĎŇŮĘ ÄĎĚÖĹÎ ÂŮÔŘ ×ÉÄĹÎ\n"
-"ÉÚ ÉÎÔĹŇÎĹÔÁ? ĺÓĚÉ ×Ů ÉÓĐĎĚŘÚŐĹÔĹ web ÓĹŇ×ĹŇ, ÄĎÓÔŐĐ Ë ËĎÔĎŇĎÍŐ ÎŐÖĹÎ ÔĎĚŘËĎ "
-"Ó ÜÔĎĘ\n"
-"ÍÁŰÉÎŮ, ×Ů ÍĎÖĹÔĹ ÓĐĎËĎĘÎĎ ĎÔ×ĹÔÉÔŘ îĹÔ ÎÁ ÜÔĎÔ ×ĎĐŇĎÓ.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"éÓĐĎĚŘÚŐĹÔĹ ĚÉ ×Ů ÓĹŇ×ĹŇ ÉÍĹÎ (DNS) ÎÁ ÜÔĎĘ ÍÁŰÉÎĹ? ĺÓĚÉ ×Ů ÎĹ ĹÇĎ "
-"ÎÁÓÔŇÁÉ×ÁĚÉ\n"
-"ÄĚŃ ×ŮÄÁŢÉ ÉÎĆĎÍÁŇĂÉÉ Ď IP É ÚĎÎÁČ ÄĚŃ ×ÓĹÇĎ ÉÎÔĹŇÎĹÔÁ, ĐĎÖÁĚŐĘÓÔÁ,\n"
-"ĎÔ×ĹÔŘÔĹ îĹÔ.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"čĎÔÉÔĹ ĚÉ ×Ů ŇÁÚŇĹŰÉÔŘ ×ČĎÄŃÝÉĹ Secure Shell (ssh) ÓĎĹÄÉÎĹÎÉŃ? üÔĎ\n"
-"ÚÁÍĹÎÁ ĐŇĎÇŇÁÍÍĹ telnet, ËĎÔĎŇŐŔ ×Ů, ×ĎÚÍĎÖÎĎ, ÚÁČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ "
-"×ČĎÄÁ.\n"
-"ĺÓĚÉ ×Ů ÓĹĘŢÁÓ ÉÓĐĎĚŘÚŐĹÔĹ, ×Ů ĎÂŃÚÁÔĹĚŘÎĎ ÄĎĚÖÎŮ ĐĹŇĹĘÔÉ ÎÁ ssh. ÄÁÎÎŮĹ × "
-"telnet ÎĹ\n"
-" ŰÉĆŇŐŔÔÓŃ -- ĐĎÜÔĎÍŐ ÎĹËĎÔĎŇŮĹ ×ÚĚĎÍÝÉËÉ ÍĎÇŐÔ ŐËŇÁÓÔŘ ×ÁŰ ĐÁŇĎĚŘ, ĹÓĚÉ ×Ů "
-"ÉÓĐĎĚŘÚŐĹÔĹ telnet.\n"
-"äÁÎÎŮĹ × ssh ÚÁŰÉĆŇĎ×ÁÎŮ É ÎĹ ÄĎĐŐÓËÁŔÔ ÔÁËĎÇĎ ĐĎÄÓĚŐŰÉ×ÁÎÉŃ."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"čĎÔÉÔĹ ĚÉ ×Ů ŇÁÚŇĹŰÉÔŘ ×ČĎÄŃÝÉĹ ÓĎĹÄÉÎĹÎÉŃ telnet?\n"
-"üÔĎ Ó×ĹŇČÎĹÂĹÚĎĐÁÓÎĎ, ËÁË ÍŮ ĎÂŘŃÓÎŃĚÉ × ĐŇĹÄŮÄŐÝĹÍ ÜËŇÁÎĹ. íŮ\n"
-"ÎÁÓÔĎŃÔĹĚŘÎĎ ŇĹËĎÍĹÎÄŐĹÍ ĎÔ×ĹÔÉÔ ÚÄĹÓŘ No É ÉÓĐĎĚŘÚĎ×ÁÔŘ ssh ×ÍĹÓÔĎ \n"
-"telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"éÓĐĎĚŘÚŐĹÔĹ ĚÉ ×Ů FTP ÓĹŇ×ĹŇ, Ë ËĎÔĎŇĎÍŐ ČĎÔÉÔĹ ĐŇĹÄĎÓÔÁ×ĚŃÔŘ ÄĎÓÔŐĐ\n"
-"ÉÚ ÉÎÔĹŇÎĹÔÁ? ĺÓĚÉ ÄÁ, ÔĎ ÍŮ ÎÁÓÔĎŃÔĹĚŘÎĎ ŇĹËĎÍĹÎÄŐĹÍ ÉÓĐĎĚŘÚĎ×ÁÔŘ ĹÇĎ "
-"ÔĎĚŘËĎ ÄĚŃ\n"
-"áÎĎÎÉÍÎĎĘ ĐĹŇĹÄÁŢÉ ÄÁÎÎŮČ. ÷ÓĹ ĐÁŇĎĚÉ ĐĎÓŮĚÁĹÍŮĹ ÓĹŇ×ĹŇĎÍ FTP ÍĎÇŐÔ ÂŮÔŘ "
-"ŐËŇÁÄĹÎŮ\n"
-"×ÚĚĎÍÝÉËÁÍÉ, ĐĎÓËĎĚŘËŐ FTP ĎÂŮŢÎĎ ÎĹ ÉÓĐĎĚŘÚŐĹÔ ŰÉĆŇĎ×ÁÎÉĹ ĐŇÉ ĐĹŇĹÄÁŢĹ "
-"ĐÁŇĎĚĹĘ.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"éóĐĎĚŘÚŐĹÔĹ ĚÉ ×Ů ĐĎŢÔĎ×ŮĘ ÓĹŇ×ĹŇ ÎÁ ÜÔĎĘ ÍÁŰÉÎĹ? ĺÓĚÉ ×Ů ĎÔĐŇÁ×ĚŃĹÔĹ ×ÁŰÉ \n"
-"ÓĎĎÂÝĹÎÉŃ ŢĹŇĹÚ ĐŇĎÇŇÁÍÍŐ pine, mutt ÉĚÉ ĚŔÂĎÇĎ ÄŇŐÇĎÇĎ ÔĹËÓÔĎ×ĎÇĎ ĐĎŢÔĎ×ĎÇĎ "
-"ËĚÉĹÎÔÁ,\n"
-"ÔĎ ÓËĎŇĹĹ ×ÓĹÇĎ - ÄÁ. éÎÁŢĹ, ÚÁËŇĎĘÔĹ ĹÇĎ ÓÉÓÔĹÍĎĘ ÚÁÝÉÔŮ ÓĹÔÉ.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"éÓĐĎĚŘÚŐĹÔĹ ĚÉ ×Ů ÎÁ ÜÔĎĘ ÍÁŰÉÎĹ ÓĹŇ×ĹŇÁ POP ÉĚÉ IMAP? üÔĎ ÍĎÖĹÔ ÂŮÔŘ "
-"ÉÓĐĎĚŘÚĎ×ÁÎĎ\n"
-"ÄĚŃ ČŇÁÎĹÎÉŃ ĐĎŢÔĎ×ŮČ ŐŢĹÔÎŮČ ÚÁĐÉÓĹĘ ÄĚŃ ĐĎŢÔŮ ÂĹÚ web ÉÎÔĹŇĆĹĘÓÁ ŢĹŇĹÚ \n"
-"ÜÔŐ ÍÁŰÉÎŐ.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"÷Ů ÉÓĐĎĚŘÚŐĹÔĹ ŃÄŇĎ 2.2. ĺÓĚÉ ×ÁŰ IP ÁÄŇĹÓ × ÓĹÔÉ\n"
-"Á×ÔĎÍÁÔÉŢĹÓËÉ ÎÁÓÔŇÁÉ×ÁĹÔÓŃ ÄĎÍÁ ÉĚÉ × ĎĆÉÓĹ \n"
-"(Á×ÔĎÍÁÔÉŢĹÓËÉ ĐŇÉÓ×ÁÉ×ÁĹÔÓŃ), ÔĎÇÄÁ ÎŐÖÎĎ ÜÔĎ ŇÁÚŇĹŰÉÔŘ. üÔĎ ÉÍĹÎÎĎ ÔĎÔ\n"
-"ÓĚŐŢÁĘ?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"÷ŇĹÍŃ ÎÁ ×ÁŰĹÍ ËĎÍĐŘŔÔĹŇĹ ÓÉÎČŇĎÎÉÚÉŇŐĹÔÓŃ ĐĎ ÄŇŐÇĎÍŐ ËĎÍĐŘŔÔĹŇŐ?\n"
-"ďÂŮŢÎĎ ÜÔĎ ÉÓĐĎĚŘÚŐĹÔÓŃ ÓŇĹÄÎĹÇĎ ŇÁÚÍĹŇÁ Unix/Linux ĎŇÇÁÎÉÚÁĂÉŃÍÉ\n"
-"ÄĚŃ ÓÉÎČŇĎÎÉÚÁĂÉÉ ×ŇĹÍĹÎÉ ĐŇÉ ×ĹÄĹÎÉÉ ÖŐŇÎÁĚĎ× É ÔĎÍŐ ĐĎÄĎÂÎĎÇĎ. ĺÓĚÉ ×Ů ÎĹ "
-"ŇÁÂĎÔÁĹÔĹ\n"
-"× ÂĎĚŘŰĎÍ ĎĆÉÓĹ É ÎÉËĎÇÄÁ ÎĹ ÓĚŮŰÁĚÉ ĎÂ ÜÔĎÍ, ÓËĎŇĹĹ ×ÓĹÇĎ, ÜÔĎ ÎĹ "
-"ĐŇĎÉÓČĎÄÉÔ \n"
-"."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"îÁÓÔŇĎĘËÁ ÚÁ×ĹŇŰĹÎÁ. íĎÖÎĎ ÚÁĐÉÓÁÔŘ ÉÚÍĹÎĹÎÉŃ ÎÁ ÄÉÓË?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "ďŰÉÂËÁ ĎÔËŇŮÔÉŃ %s ÄĚŃ ÚÁĐÉÓÉ: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "îÁÓÔŇĎĘËÁ ÓÉÓÔĹÍŮ ÚÁÝÉÔŮ ÓĹÔĹĘ (firewall)"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "đĎÖÁĚŐĘÓÔÁ, ĐĎÄĎÖÄÉÔĹ, ĐĎÄÇĎÔÁ×ĚÉ×ÁĹÔÓŃ ŐÓÔÁÎĎ×ËÁ"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "óĹÔĹ×ĎĘ ËĎÍĐŘŔÔĹŇ (ËĚÉĹÎÔ)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS ÓĹŇ×ĹŇ, SMB ÓĹŇ×ĹŇ, Proxy ÓĹŇ×ĹŇ, ssh ÓĹŇ×ĹŇ"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "ďĆÉÓ"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "ňÁÂĎŢÁŃ ÓÔÁÎĂÉŃ Gnome"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "đŇĎÇŇÁÍÍŮ ÄĚŃ ×ÁŰĹÇĎ Palm Pilot ÉĚÉ Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "ňÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "óÉÓÔĹÍÁ ÚÁÝÉÔŮ ÓĹÔĹĘ/íÁŇŰŇŐÔÉÚÁÔĎŇ"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "óĹŇ×ĹŇ ÉÍĹÎ (DNS) É ÓĹŇ×ĹŇ NIS"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"ďĆÉÓÎŮĹ ĐŇĎÇŇÁÍÍŮ: ÔĹÓÔĎ×ŮĹ ĐŇĎĂĹÓÓĎŇŮ (kword, abiword), ÜĚĹËÔŇĎÎÎŮĹ ÔÁÂĚÉĂŮ "
-"(kspread, gnumeric), ĐŇĎÓÍĎÔŇÝÉËÉ pdf, É Ô.Ä."
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "ú×ŐËĎ×ŮĹ ĐŇĎÇŇÁÍÍŮ: ĐĚĹĘĹŇŮ mp3 ÉĚÉ MIDI, ÍÉËŰĹŇŮ, É Ô.Ä."
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "ëÎÉÇÉ É HowTo Ď Linux É Ó×ĎÂĎÄÎĎÍ ĐŇĎÇŇÁÍÍÎĎÍ ĎÂĹÓĐĹŢĹÎÉÉ"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "ňÁÂĎŢÁŃ ÓÔÁÎĂÉŃ KDE"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ÄŇŐÇÉĹ"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "íŐĚŘÔÉÍĹÄÉÁ - ÷ÉÄĹĎ"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "îÁÂĎŇ ĐŇĎÇŇÁÍÍ ÄĚŃ ĐĎŢÔŮ, ÎĎ×ĎÓÔĹĘ, web, ĐĹŇĹÄŃŢÉ ĆÁĘĚĎ× É ŢÁÔÁ"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "âÁÚÁ ÄÁÎÎŮČ"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "óĹŇ×ĹŇ ÂÁÚ ÄÁÎÎŮČ PostgreSQL ÉĚÉ MySQL"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "đŇĎÇŇÁÍÍŮ, ŐĐŇĎÝÁŔÝÉĹ ÎÁÓÔŇĎĘËŐ ×ÁŰĹÇĎ ËĎÍĐŘŔÔĹŇÁ"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "íŐĚŘÔÉÍĹÄÉÁ - ú×ŐË"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "őÔÉĚÉÔŮ"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "äĎËŐÍĹÎÔÁĂÉŃ"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "đŇĎÇŇÁÍÍŮ ÄĚŃ ËĎÎÓĎĚÉ"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "đĎŢÔĎ×ŮĘ ÓĹŇ×ĹŇ Postfix, ÓĹŇ×ĹŇ ÎĎ×ĎÓÔĹĘ Inn"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "óÔÁÎĂÉŃ ÉÎÔĹŇÎĹÔ"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "íŐĚŘÔÉÍĹÄÉÁ ÓÔÁÎĂÉŃ"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "ĺÝĹ çŇÁĆÉŢĹÓËbĹ chtls (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"óŇĹÄÁ K Desktop, ĎÓÎĎ×ÎÁŃ ÇŇÁĆÉŢĹÓËÁŃ ÓŇĹÄÁ Ó ÎÁÂĎŇĎÍ ÓĎĎÔ×ĹÔÓ×ŐŔÝÉČ ĐŇĎÇŇÁÍÍ"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "çŇÁĆÉŢĹÓËÁŃ ÓŇĹÄÁ"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "đŇĎÇŇÁÍÍŮ ÄĚŃ ÓĎÚÄÁÎÉŃ É ÚÁĐÉÓÉ CD ÄÉÓËĎ×"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "ďĆÉÓÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "óĹŇ×ĹŇ"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, É Ô.Ä."
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "çŇÁĆÉŢĹÓËÉĹ ĐŇĎÇŇÁÍÍŮ, ÔÁËÉĹ ËÁË The Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "ÂÉÂĚÉĎÔĹËÁ C É C++, ĐŇĎÇŇÁÍÍŮ É ĆÁĘĚŮ include"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "óĹÔĹ×ĎĘ ÓĹŇ×ĹŇ"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "đĎŢÔÁ/đŇĎÇŇÁÍÍŮ ÄĚŃ ŇÁÂĎÔŮ × ÇŇŐĐĐĹ/îĎ×ĎÓÔÉ"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "éÇŇĎ×ÁŃ ÓÔÁÎĂÉŃ"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "÷ÉÄĹĎ-ĐĚĹĘĹŇŮ É ŇĹÄÁËÔĎŇŮ"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "íŐĚŘÔÉÍĹÄÉÁ - çŇÁĆÉËÁ"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "đŇĎÇŇÁÍÍŮ ÄĚŃ ŇÁÚ×ĚĹŢĹÎÉŃ: ÉÇŇŮ É Ô.Ä."
-
-#: ../../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:999
-msgid "Archiving, emulators, monitoring"
-msgstr "áŇČÉ×ÉŇĎ×ÁÎÉĹ, ÜÍŐĚŃĂÉŃ, ĎÔÓĚĹÖÉ×ÁÎÉĹ"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "ěÉŢÎŮĹ ĆÉÎÁÎÓŮ"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr "çŇÁĆÉŢĹÓËÁŃ ÓŇĹÄÁ Ó ÎÁÂĎŇĎÍ ÄŇŐÖĹÓÔ×ĹÎÎŮČ ĐŇĎÇŇÁÍÍ "
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "ëĚÉĹÎÔŮ ÄĚŃ ŇÁÚÎŮČ ĐŇĎÔĎËĎĚĎ×, ×ËĚŔŢÁŃ ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "űĚŔÚ ÉÎÔĹŇÎĹÔ"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "đŇĎÇŇÁÍÍŮ ÄĚŃ ĐŇĎÉÇŇŮ×ÁÎÉŃ/ŇĹÄÁËÔÉŇĎ×ÁÎÉŃ Ú×ŐËÁ É ×ÉÄĹĎ"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "äŇŐÇÉĹ ÇŇÁĆÉŢĹÓËÉĹ ÓŇĹÄŮ"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "ňĹÄËÁÔĎŇŮ, ĎÂĎĚĎŢËÉ, ĆÁĘĚĎ×ŮĹ ŐÔÉĚÉÔŮ, ÔĹŇÍÉÎÁĚŮ"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "đŇĎÇŇÁÍÍŮ ÄĚŃ ŐĐŇÁ×ĚĹÎÉŃ ĆÉÎÁÎÓÁÍÉ, ÔÁËÉĹ ËÁË gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "őĐŇÁ×ĚĹÎÉĹ ĚÉŢÎĎĘ ÉÎĆĎŇÍÁĂÉĹĘ"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "íŐĚŘÔÉÍĹÄÉÁ - úÁĐÉÓŘ CD"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
-
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "ďÔÍĹÎÉÔŘ"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "çĎÔĎ×Ď"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "÷ŮÂĹŇÉÔĹ ĐĎĚŘÚĎ×ÁÔĹĚŃ ĐĎ ŐÍĎĚŢÁÎÉŔ:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ÚÁÄÁ×ÁÔŘ ĐÁŇÁÍĹÔŇŮ ÄĚŃ ÍĎÄŐĚŃ %s."
-
-#~ msgid "mount failed"
-#~ msgstr "ĎŰÉÂËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ"
-
-#~ msgid "Low"
-#~ msgstr "îÉÚËÉĘ"
-
-#~ msgid "Medium"
-#~ msgstr "óŇĹÄÎÉĘ"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "îÁ ÜÔĎÍ ŐŇĎ×ÎĹ ÂĹÚĎĐÁÓÎĎÓÔÉ ĹÓÔŘ ŇŃÄ ŐĚŐŢŰĹÎÉĘ, × ĐĹŇ×ŐŔ ĎŢĹŇĹÄŘ\n"
-#~ "Ő×ĹĚÉŢÉĚĎÓŘ ËĎĚÉŢĹÓÔ×Ď ĐŇĎ×ĹŇĎË É ĐŇĹÄŐĐŇĹÖÄĹÎÉĘ."
-
-#~ msgid "Boot mode"
-#~ msgstr "ňĹÖÉÍ ÚÁÇŇŐÚËÉ"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "üËÓĐĹŇÔ"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux ĎÔÓŢÉÔŮ×ÁĹÔ ×ŇĹÍŃ × GMT (ĐĎ çŇÉÎ×ÉŢŐ) É ĐĹŇĹ×ĎÄÉÔ ĹÇĎ × "
-#~ "ÍĹÓÔÎĎĹ\n"
-#~ "×ŇĹÍŃ × ÓĎĎÔ×ĹÔÓÔ×ÉÉ Ó ×ŮÂŇÁÎÎŮÍ ŢÁÓĎ×ŮÍ ĐĎŃÓĎÍ."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "đĎÄÓĎĹÄÉÎÉÔŘÓŃ Ë éÎÔĹŇÎĹÔ"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "ďÔÓĎĹÄÉÎÉÔŘÓŃ ĎÔ éÎÔĹŇÎĹÔ"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "îÁÓÔŇĎÉÔŘ ÓĹÔĹ×ĎĹ ÓĎĹÄÉÎĹÎÉĹ (ĚĎËÁĚŘÎÁŃ ÓĹÔŘ ÉĚÉ ÉÎÔĹŇÎĹÔ)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "îÁ ËÁËĎĘ ÄÉÓË ČĎÔÉÔĹ ĐĹŇĹÍĹÓÔÉÔŘ?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "éÎĆĎŇÍÁĂÉŃ"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "ňÁÂĎŢÁŃ ÓÔÁÎĂÉŃ Gnome"
-
-#~ msgid "authentification"
-#~ msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ"
-
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "ĐĎĚŘÚĎ×ÁÔĹĚŘ"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "đĎÖÁĚŐĘÓÔÁ, ŐËÁÖÉÔĹ ÔÉĐ ×ÁŰĹĘ ÍŮŰÉ"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "÷ŮČĎÄ"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "á×ÔĎÍĎÎÔÉŇĎ×ÁÎÉĹ ÓßĹÍÎŮČ ÎĎÓÉÔĹĚĹĘ"
-
-#~ msgid "Active"
-#~ msgstr "áËÔÉ×ÎŮĘ"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "îĹÔ"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "đŇÉÎÔĹŇ ÍĎÄĹĚÉ \"%s\" ĎÂÎÁŇŐÖĹÎ ÎÁ "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
-
-#~ msgid "Printer Device"
-#~ msgstr "đŇÉÎÔĹŇ"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "őÄÁĚĹÎÎŮĘ CUPS ÓĹŇ×ĹŇ"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "őÄÁĚĹÎÎŮĘ CUPS ÓĹŇ×ĹŇ"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "óÉÓÔĹÍÎŮĘ ŇĹÖÉÍ"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "äŇŐÇÉĹ"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ŇÁÓËĚÁÄËŐ ×ÁŰĹĘ ËĚÁ×ÉÁÔŐŇŮ"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "đĎÖÁĚŐĘÓÔÁ ÎÁÖÍÉÔĹ ÎÁ ŇÁÚÄĹĚ"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "ôÉĐ: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "îÁÓÔŇĎĘËÁ X Window"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "đŇÉÎÔĹŇ"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "ďÔÍĹÎÁ"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "ďË"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "úÁËŇŮÔŘ"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "úÁĐŐÓË ÷ÁŰĹÇĎ ÓĎĹÄÉÎĹÎÉŃ..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "úÁËŇŮÔÉĹ ×ÁŰĹÇĎ ÓĎĹÄÉÎĹÎÉŃ..."
-
-#~ 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."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "ôĹĐĹŇŘ ÓÉÓÔĹÍÁ ĎÔÓĎĹÄÉÎĹÎÁ."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "÷ŮÂĹŇÉÔĹ ÖĹĚÁÔĹĚŘÎŮĘ ŇÁÚÍĹŇ ŐÓÔÁÎĎ×ËÉ"
-
-#~ msgid "Total size: "
-#~ msgstr "ďÂÝÉĘ ŇÁÚÍĹŇ: "
-
-#~ msgid "Please wait, "
-#~ msgstr "đĎÄĎÖÄÉÔĹ, ĐĎÖÁĚŐĘÓÔÁ, "
-
-#~ msgid "Total time "
-#~ msgstr "ďÂÝĹĹ ×ŇĹÍŃ "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ÓŐÝĹÓÔ×ŐŔÝŐŔ ÎÁÓÔŇĎĘËŐ ÄĚŃ X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "ë ËÁËĎÍŐ ŐÓÔŇĎĘÓÔ×Ő ĐĎÄËĚŔŢĹÎ ×ÁŰ ĐŇÉÎÔĹŇ \n"
-#~ "(ĐĎÍÎÉÔĹ? - /dev/lp0 ÜË×É×ÁĚĹÎÔĹÎ LPT1:)?\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr "÷ÎÉÍÁÎÉĹ, ÓĹÔĹ×ĎĘ ÁÄÁĐÔĹŇ ŐÖĹ ÎÁÓÔŇĎĹÎ. ń ĹÇĎ ĐĹŇĹËĎÎĆÉÇŐŇÉŇŐŔ."
-
-#~ msgid "New"
-#~ msgstr "îĎ×ŮĘ"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "őÄÁĚĹÎÎÁŃ ĎŢĹŇĹÄŘ"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "đĎÖÁĚŐĘÓÔÁ ÎÁÖÍÉÔĹ ÎÁ ŇÁÚÄĹĚ"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "îĹĎĐŇĹÄĹĚĹÎÎĎÓÔŘ (%s), ÂŐÄŘÔĹ ĐĎÔĎŢÎĹĹ\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (ŐÍĎĚŢÁÎÉĹ %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "÷ÁŰ ×ŮÂĎŇ? (ŐÍĎĚŢÁÎÉĹ %s ××ĹÄÉÔĹ 'none' ĐŇÉ ĎÔÓŐÔÓÔ×ÉÉ) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ÄĚŃ ŢÔĹÎÉŃ /etc/sysconfig/autologin : %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "÷Ů ČĎÔÉÔĹ ĐĹŇĹÚÁĐŐÓÔÉÔŘ ÓĹÔŘ"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "÷Ů ÓĎÇĚÁÓÎŮ?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "óĎÂÉŇÁŔÓŘ ĐĹŇĹÚÁĐŐÓÔÉÔŘ ÓĹÔĹ×ĎĹ ŐÓÔŇĎĘÓÔ×Ď:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "óĎÂÉŇÁŔÓŘ ĐĹŇĹÚÁĐŐÓÔÉÔŘ ÓĹÔĹ×ĎĹ ŐÓÔŇĎĘÓÔ×Ď %s. ÷Ů ÓĎÇĚÁÓÎŮ?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "ĺÓĚÉ ÎĹ ÚÎÁĹÔĹ ÔĎŢÎĎ ÄŇŐÇĎĘ ×ÁŇÉÁÎÔ, ÔĎ ĎÂŮŢÎŮÍ ×ŮÂĎŇĎÍ Ń×ĚŃĹÔÓŃ \"/dev/"
-#~ "hda\"\n"
-#~ "(IDE ÍÁÓÔĹŇ ÄÉÓË ÎÁ ĐĹŇ×ĎÍ ËÁÎÁĚĹ) ÉĚÉ \"/dev/sda\" (ĐĹŇ×ŮĘ SCSI ÄÉÓË)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "ôÉĐ ÓĎĹÄÉÎĹÎÉŃ: "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "÷ŮÂĹŇÉÔĹ ĐĎĚŘÚĎ×ÁÔĹĚŃ ĐĎ ŐÍĎĚŢÁÎÉŔ:"
-
-#~ msgid "Test the mouse here."
-#~ msgstr "đŇĎ×ĹŇŘÔĹ ×ÁŰŐ ÍŮŰŘ ÚÄĹÓŘ."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr ""
-#~ "÷ŮÂĹŇÉÔĹ ĐŇĹÄĐĎŢÔÉÔĹĚŘÎŮĘ ŃÚŮË ÄĚŃ ŐÓÔÁÎĎ×ËÉ É ÉÓĐĎĚŘÚĎ×ÁÎÉŃ ÓÉÓÔĹÍŮ."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "÷ÁÍ ÎĹĎÂČĎÄÉÍĎ ĐŇÉÎŃÔŘ ŐÓĚĎ×ÉŃ ĚÉĂĹÎÚÉÉ ÄĚŃ ĐŇĎÄĎĚÖĹÎÉŃ ŐÓÔÁÎĎ×ËÉ.\n"
-#~ "\n"
-#~ "\n"
-#~ "îÁÖÍÉÔĹ \"đŇÉÎŃÔŘ\" ĹÓĚÉ ×Ů ÓĎÇĚÁÓÎŮ Ó ŐÓĚĎ×ÉŃÍÉ ĚÉĂĹÎÚÉÉ.\n"
-#~ "\n"
-#~ "\n"
-#~ "îÁÖÍÉÔĹ \"ďÔËÁÚÁÔŘÓŃ\" ĹÓĚÉ ×Ů ÎĹ ÓĎÇĚÁÓÎŮ Ó ĹĹ ŐÓĚĎ×ÉŃÍÉ. őÓÔÁÎĎ×ËÁ "
-#~ "ÂŐÄĹÔ ĐŇĹŇ×ÁÎÁ ÂĹÚ ÉÚÍĹÎĹÎÉŃ ×ÁŰĹĘ ÔĹËŐÝĹĘ\n"
-#~ "ËĎÎĆÉÇŐŇÁĂÉÉ."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr ""
-#~ "÷ŮÂĹŇÉÔĹ ÉÚ ĐŇÉ×ĹÄĹÎÎĎÇĎ ÓĐÉÓËÁ ŇÁÓËĚÁÄËŐ, ÓĎĎÔ×ĹÔÓÔ×ŐŔÝŐŔ ×ÁŰĹĘ "
-#~ "ËĚÁ×ÉÁÔŐŇĹ"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "ĺÓĚÉ ×Ů ČĎÔÉÔĹ, ŢÔĎÂŮ ÄŇŐÇÉĹ ŃÚŮËÉ (ËŇĎÍĹ ×ŮÂŇÁÎÎŮČ \n"
-#~ "× ÎÁŢÁĚĹ ŐÓÔÁÎĎ×ËÉ) ÂŮĚÉ ÄĎÓÔŐĐÎŮ ĐĎÓĚĹ ĎËĎÎŢÁÎÉŃ ŐÓÔÁÎĎ×ËÉ, ĐĎÖÁĚŐĘÓÔÁ "
-#~ "×ŮÂĹŇÉÔĹ\n"
-#~ "ÉČ ÉÚ ÓĐÉÓËÁ. ĺÓĚÉ ×Ů ČĎÔÉÔĹ ×ŮÂŇÁÔŘ ÉČ ×ÓĹ, ĐŇĎÓÔĎ ×ŮÂĹŇÉÔĹ \"÷ÓĹ\"."
-
-#~ msgid ""
-#~ "Select:\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"
-#~ "\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!"
-#~ msgstr ""
-#~ "÷ŮÂĹŇÉÔĹ:\n"
-#~ "\n"
-#~ " - ÷ŮÂĎŇĎŢÎŮĘ: ĺÓĚÉ ×Ů ÚÎÁËĎÍŮ Ó GNU/Linux, ÔĎ ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ĂĹĚĹ×ĎĹ \n"
-#~ "ÎÁÚÎÁŢĹÎÉĹ ×ÁŰĹĘ ÓÉÓÔĹÍŮ. äĹÔÁĚÉ ĎĐÉÓÁÎŮ ÎÉÖĹ. \n"
-#~ "\n"
-#~ "\n"
-#~ " - üËÓĐĹŇÔ: đĎÄŇÁÚŐÍĹ×ÁĹÔÓŃ, ŢÔĎ Ő ×ÁÓ ĹÓÔŘ ĎĐŮÔ Ó GNU/Linux É ×Ů "
-#~ "ČĎÔÉÔĹ \n"
-#~ " ×ŮĐĎĚÎÉÔŘ ÔĎÎËŐŔ ÎÁÓÔŇĎĘËŐ ŐÓÔÁÎĎ×ËÉ. ëÁË É ÄĚŃ ŐŇĎ×ÎŃ \"÷ŮÂĎŇĎŢÎÁŃ"
-#~ "\" \n"
-#~ " ×Ů ÓÍĎÖĹÔĹ ŐËÁÚÁÔŘ ĂĹĚĹ×ĎĹ ÎÁÚÎÁŢĹÎÉĹ ×ÁŰĹĘ ÓÉÓÔĹÍŮ.\n"
-#~ " îĎ, ĐĎÖÁĚŐĘÓÔÁ, ÷ůâéňáęôĺ üôďô őňď÷ĺîř ôďěřëď ĺóěé ÷ů ô÷ĺňäď ő÷ĺňĺîů\n"
-#~ " ÷ ôďí ţôď ÷ů äĺěáĺôĺ"
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "ôĹĐĹŇŘ ×Ů ÄĎĚÖÎŮ ĎĐŇĹÄĹĚÉÔŘ ÉÓĐĎĚŘÚĎ×ÁÎÉĹ ×ÁŰĹĘ ÓÉÓÔĹÍŮ. ÷ÁŇÉÁÎÔŮ:\n"
-#~ "\n"
-#~ "* ňÁÂĎŢÁĘ ÓÔÁÎĂÉŃ: ÜÔĎ ÉÄĹÁĚŘÎŮĘ ×ŮÂĎŇ × ÔĎÍ ÓĚŐŢÁĹ, ĹÓĚÉ ×Ů ĐĚÁÎÉŇŐĹÔĹ "
-#~ "ÉÓĐĎĚŘÚĎ×ÁÔŘ ÓÉÓÔĹÍŐ × ĎÓÎĎ×ÎĎÍ ÄĚŃ ĎÂŮŢÎĎĘ ŇÁÂĎÔŮ × ĎĆÉÓĹ\n"
-#~ " ÉĚÉ ÄĎÍÁ.\n"
-#~ "\n"
-#~ "\n"
-#~ "* ňÁÚŇÁÂĎÔËÁ ĐŇĎÇŇÁÍÍt: ÜÔĎ ČĎŇĎŰÉĘ ×ŮÂĎŇ, ĹÓĚÉ ×Ů ĐĚÁÎÉŇŐĹÔĹ "
-#~ "ÉÓĐĎĚŘÚĎ×ÁÔŘ Ó×ĎŔ ÓÉÓÔĹÍŐ × ĎÓÎĎ×ÎĎÍ ÄĚŃ ŇÁÚŇÁÂĎÔËÉ ĐŇĎÇŇÁÍÍ. ő ×ÁÓ "
-#~ "ÂŐÄĹÔ\n"
-#~ " ĐĎĚÎŮĘ ÎÁÂĎŇ ŐÓÔÁÎĎ×ĚĹÎÎŮČ ĐŇĎÇŇÁÍÍ ÄĚŃ ËĎÍĐÉĚŃĂÉÉ, ĎÔĚÁÄËÉ, "
-#~ "ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ ÉÓČĎÄÎŮČ ÔĹËÓÔĎ× Á ÔÁËÖĹ ÄĚŃ ÓĎÚÄÁÎÉŃ ĐÁËĹÔĎ× ĐŇĎÇŇÁÍÍ.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "* óĹŇ×ĹŇ: ČĎŇĎŰÉĘ ×ŮÂĎŇ, ĹÓĚÉ ×Ů ĐĚÁÎÉŇŐĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ËĎÍĐŘŔÔĹŇ × "
-#~ "ËÁŢĹÓÔ×Ĺ ÓĹŇ×ĹŇÁ. ěÉÂĎ × ËÁŢĹÓÔ×Ĺ ĆÁĘĚ-ÓĹŇ×ĹŇÁ (NFS ÉĚÉ\n"
-#~ " SMB), ÓĹŇ×ĹŇÁ ĐĹŢÁÔÉ (ÄĚŃ Unix ÉĚÉ ÄĚŃ Microsoft Windows), ÓĹŇ×ĹŇÁ "
-#~ "ÁŐÔĹÎÔÉĆÉËÁĂÉÉ (NIS), ÓĹŇ×ĹŇÁ ÂÁÚ ÄÁÎÎŮČ\n"
-#~ " É ÔÁË ÄÁĚĹĹ. đĎÜÔĎÍŐ ÎĹ ĎÖÉÄÁĘÔĹ, ŢÔĎ ÂŐÄŐÔ ŐÓÔÁÎĎ×ĚĹÎŮ ĐÁËĹÔŮ ÔÉĐÁ "
-#~ "KDE, GNOME, É ĐĎÄĎÂÎŮĹ. "
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÇŇŐĐĐŐ ĐÁËĹÔĎ×, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ\n"
-#~ "ŐÓÔÁÎĎ×ÉÔŘ ÉĚÉ ĎÂÎĎ×ÉÔŘ.\n"
-#~ "\n"
-#~ "\n"
-#~ "úÁÔĹÍ DrakX ĐŇĎ×ĹŇÉÔ, ÄĎÓÔÁÔĎŢÎĎ ĚÉ Ő ×ÁÓ ÍĹÓÔÁ ÄĚŃ ÉČ ŐÓÔÁÎĎ×ËÉ. ĺÓĚÉ "
-#~ "ÎĹÔ,\n"
-#~ "ÂŐÄĹÔ ×ŮÄÁÎĎ ĐŇĹÄŐĐŇĹÖÄĹÎÉĹ. ĺÓĚÉ ×Ů ×ÓĹ ŇÁ×ÎĎ ČĎÔÉÔĹ ĐŇĎÄĎĚÖÉÔŘ, "
-#~ "ŐÓÔÁÎĎ×ËÁ ÂŐÄĹÔ ×ŮÂŇÁÎÎŮČ\n"
-#~ "ÇŇŐĐĐ ÂŐÄĹÔ ×ŮĐĎĚÎĹÎÁ ÚÁ ÉÓËĚŔŢĹÎÉĹÍ ÍĹÎĹĹ ×ÁÖÎŮČ\n"
-#~ "ĐÁËĹÔĎ×. ÷ÎÉÚŐ ÓĐÉÓËÁ ×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ×ÁŇÉÁÎÔ \n"
-#~ "\"éÎÄÉ×ÉÄŐÁĚŘÎŮĘ ×ŮÂĎŇ ĐÁËĹÔĎ×\"; - × ÜÔĎÍ ÓĚŐŢÁĹ ×ÁÍ ĐŇÉÄĹÔÓŃ "
-#~ "ĐŇĎÓÍĎÔŇĹÔŘ ÓĐÉÓĎË\n"
-#~ "ÉÚ ÂĎĚĹĹ ŢĹÍ 1000 ĐÁËĹÔĎ×..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "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"
-#~ "ĎÔÍĹÎÉÔŘ ×ŮÂĎŇ ÎĹÓËĎĚŘËÉČ ÄŇŐÇÉČ ĐÁËĹÔĎ×, ÚÁ×ÉÓŃÝÉČ ĎÔ ÎĹÇĎ."
-
-#~ 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 "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "ĺÓĚÉ Ő ×ÁÓ ĹÓÔŘ ×ÓĹ CD ÉÚ ĐŇÉ×ĹÄĹÎÎĎÇĎ ×ŮŰĹ ÓĐÉÓËÁ, ÎÁÖÍÉÔĹ Ok.\n"
-#~ "ĺÓĚÉ Ő ×ÁÓ ÎĹÔ ÎÉ ĎÄÎĎÇĎ ÉÚ ÎÉČ, ÎÁÖÍÉÔĹ ďÔÍĹÎÉÔŘ.\n"
-#~ "ĺÓĚÉ ĎÔÓŐÔÓÔ×ŐŔÔ ÔĎĚŘËĎ ÎĹËĎÔĎŇŮĹ CD, ĎÔÍĹÎÉÔĹ ÉČ ×ŮÂĎŇ É ÎÁÖÍÉÔĹ Ok."
-
-#~ 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 "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "ĺÓĚÉ ×Ů ČĎÔÉÔĹ ĐĎÄËĚŔŢÉÔŘ ×ÁŰ ËĎÍĐŘŔÔĹŇ Ë ÉÎÔĹŇÎĹÔŐ ÉĚÉ\n"
-#~ "Ë ĚĎËÁĚŘÎĎĘ ÓĹÔÉ ×ŮÂĹŇÉÔĹ ÎŐÖÎŮĘ ×ÁŇÉÁÎÔ. đĎÖÁĚŐĘÓÔÁ, ×ËĚŔŢÉÔĹ ×ÁŰĹ "
-#~ "ŐÓÔŇĎĘÓÔ×Ď\n"
-#~ "ĐĹŇĹÄ ×ŮÂĎŇĎÍ, ŢÔĎÂŮ DrakX ÓÍĎÇ ĹÇĎ Á×ÔĎÍÁÔÉŢĹÓËÉ ĎĐŇĹÄĹĚÉÔŘ.\n"
-#~ "\n"
-#~ "\n"
-#~ "ĺÓĚÉ Ő ×ÁÓ ÎĹÔ ÓĎĹÄÉÎĹÎÉŃ Ó ÉÎÔĹŇÎĹÔ ÉĚÉ Ó ĚĎËÁĚŘÎĎĘ ÓĹÔŘŔ, ×ŮÂĹŇÉÔĹ\n"
-#~ "\"ďÔËĚŔŢÉÔŘ ÓĹÔŘ\".\n"
-#~ "\n"
-#~ "\n"
-#~ "ĺÓĚÉ ×Ů ČĎÔÉÔĹ ÎÁÓÔŇĎÉÔŘ ÓĹÔŘ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ, ĚÉÂĎ ĹÓĚÉ ×Ů ŐÖĹ\n"
-#~ "ÚÁËĎÎŢÉĚÉ ÎÁÓÔŇĎĘËŐ ÓĹÔĹ×ĎÇĎ ÓĎĹÄÉÎĹÎÉŃ, ×ŮÂĹŇÉÔĹ \"÷ŮĐĎĚÎĹÎĎ\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "îÉ ĎÄÎĎÇĎ ÍĎÄĹÍÁ ÎĹ ĎÂÎÁŇŐÖĹÎĎ. đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎŮĘ "
-#~ "ĐĎŇÔ, Ë ËĎÔĎŇĎÍŐ ĎÎ ĐĎÄËĚŔŢĹÎ.\n"
-#~ "\n"
-#~ "\n"
-#~ "äĚŃ ÓĐŇÁ×ËÉ - ĐĹŇ×ŮĘ ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎŮĘ ĐĎŇÔ (ÎÁÚŮ×ÁĹÍŮĘ \"COM1\" × "
-#~ "Microsoft\n"
-#~ "Windows) × Linux ÎÁÚŮ×ÁĹÔÓŃ \"ttyS0\"."
-
-#~ 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 "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "óĹĘŢÁÓ ×Ů ÍĎÖĹÔĹ ÎÁÓÔŇĎÉÔŘ ĐÁŇÁÍĹÔŇŮ ÄĎÚ×ĎÎÁ. ĺÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ\n"
-#~ "ÉĚÉ ÎĹ Ő×ĹŇĹÎŮ × ÔĎÍ, ŢÔĎ ÎŐÖÎĎ ××ĹÓÔÉ, ĐŇÁ×ÉĚŘÎÁŃ ÉÎĆĎŇÍÁĂÉŃ ÍĎÖĹÔ ÂŮÔŘ "
-#~ "ĐĎĚŐŢĹÎÁ ĎÔ\n"
-#~ "×ÁŰĹÇĎ ÉÎÔĹŇÎĹÔ-ĐŇĎ×ÁĘÄĹŇÁ. ĺÓĚÉ ×Ů ÎĹ ××ĹÄĹÔĹ ÉÎĆĎŇÍÁĂÉŔ Ď DNS (ÓĹŇ×ĹŇ "
-#~ "ÉÍĹÎ)\n"
-#~ "ÓĹĘŢÁÓ, ÔĎ ÜÔÁ ÉÎĆĎŇÍÁĂÉŃ ÂŐÄĹÔ ĐĎĚŐŢĹÎÁ ĎÔ ×ÁŰĹÇĎ ÉÎÔĹŇÎĹÔ-ĐŇĎ×ÁĘÄĹŇÁ ×Ď "
-#~ "×ŇĹÍŃ\n"
-#~ "ÓĎĹÄÉÎĹÎÉŃ."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "ĺÓĚÉ Ő ×ÁÓ ×ÎĹŰÎÉĘ ÍĎÄĹÍ, ×ËĚŔŢÉÔĹ ĹÇĎ ÓĹĘŢÁÓ, ŢÔĎÂŮ DrakX ÓÍĎÇ ĹÇĎ "
-#~ "Á×ÔĎÍÁÔÉŢĹÓËÉ ĎĐŇĹÄĹĚÉÔŘ."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "đĎÖÁĚŐĘÓÔÁ, ×ËĚŔŢÉÔĹ ×ÁŰ ÍĎÄĹÍ É ×ŮÂĹŇÉÔĹ ĐŇÁ×ÉĚŘÎŮĘ."
-
-#~ 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"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "ĺÓĚÉ ×Ů ÎĹ Ő×ĹŇĹÎŮ × ĐŇÁ×ÉĚŘÎĎÓÔÉ ×ŮŰĹŐËÁÚÁÎÎĎĘ ÉÎĆĎŇÍÁĂÉÉ\n"
-#~ "ÉĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ, ŢÔĎ ××ĎÄÉÔŘ, ĐŇÁ×ÉĚŘÎÁŃ ÉÎĆĎŇÍÁĂÉŃ\n"
-#~ "ÍĎÖĹÔ ÂŮÔŘ ĐĎĚŐŢĹÎÁ ĎÔ ÉÎÔĹŇÎĹÔ-ĐŇĎ×ÁĘÄĹŇÁ. ĺÓĚÉ ×Ů ÎĹ ××ĹÄĹÔĹ ÓĹĘŢÁÓ\n"
-#~ "ÉÎĆĎŇÍÁĂÉŔ Ď DNS (ÓĹŇ×ĹŇĹ ÉÍĹÎ), ÜÔÁ ÉÎĆĎŇÍÁĂÉŃ ÂŐÄĹÔ ĐĎĚŐŢĹÎÁ ĐĎÚÖĹ\n"
-#~ "ĎÔ ×ÁŰĹÇĎ ÉÎÔĹŇÎĹÔ-ĐŇĎ×ÁĘÄĹŇÁ ×Ď ×ŇĹÍŃ ÓĎĹÄÉÎĹÎÉŃ."
-
-#~ 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 ""
-#~ "óĹĘŢÁÓ ÷Ů ÍĎÖĹÔĹ ÚÁÄÁÔŘ ÎÁÚ×ÁÎÉĹ (ÉÍŃ) ÄĚŃ ×ÁŰĹĘ ÍÁŰÉÎŮ, ĹÓĚÉ ČĎÔÉÔĹ. "
-#~ "ĺÓĚÉ\n"
-#~ "×Ů ÎĹ ÚÎÁĹÔĹ ÉĚÉ ÎĹ Ő×ĹŇĹÎŮ, ŢÔĎ ÎŐÖÎĎ ××ĹÓÔÉ, ĐŇÁ×ÉĚŘÎÁŃ ÉÎĆĎŇÍÁĂÉŃ "
-#~ "ÍĎÖĹÔ ÂŮÔŘ\n"
-#~ "ĐĎĚŐŢĹÎÁ ĎÔ ×ÁŰĹÇĎ ÉÎÔĹŇÎĹÔ-ĐŇĎ×ÁĘÄĹŇÁ."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"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 ÁÄŇĹÓ: ĹÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ ÉĚÉ ÎĹ Ő×ĹŇĹÎŮ × ÔĎÍ, ŢÔĎ ÎŐÖÎĎ ××ĹÓÔÉ, "
-#~ "ÓĐŇĎÓÉÔĹ ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ ×ÁŰĹĘ ÓĹÔÉ.\n"
-#~ " ÷Ů ÎĹ ÄĎĚÖÎŮ ××ĎÄÉÔŘ IP ÁÄŇĹÓ, ĹÓĚÉ ×ŮÂĹŇÉÔĹ ×ÁŇÉÁÎÔ "
-#~ "\"á×ÔĎÍÁÔÉŢĹÓËÉĘ IP\" ×ÎÉÚŐ.\n"
-#~ "\n"
-#~ " * íÁÓËÁ ÓĹÔÉ: \"255.255.255.0\" - ĎÂŮŢÎĎ ČĎŇĎŰÉĘ ×ŮÂĎŇ. ĺÓĚÉ ×Ů ÎĹ "
-#~ "ÚÎÁĹÔĹ ÉĚÉ ÎĹ Ő×ĹŇĹÎŮ, ŢÔĎ ÎŐÖÎĎ ××ĹÓÔÉ,\n"
-#~ " ÓĐŇĎÓÉÔĹ ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ ×ÁŰĹĘ ÓĹÔÉ.\n"
-#~ "\n"
-#~ " * á×ÔĎÍÁÔÉŢĹÓËÉĘ IP: ĹÓĚÉ × ×ÁŰĹĘ ÓĹÔÉ ÉÓĐĎĚŘÚŐŔÔÓŃ ĐŇĎÔĎËĎĚŮ BOOTP "
-#~ "ÉĚÉ DHCP, ×ŮÂĹŇÉÔĹ ÜÔĎÔ ×ÁŇÉÁÎÔ. ĺÓĚÉ ĎÎ ×ŮÂŇÁÎ, ÚÎÁŢĹÎÉĹ, ŐËÁÚÁÎÎĎĹ ×\n"
-#~ " \"IP ÁÄŇĹÓ\" ÂŐÄĹÔ ĐŇĎÉÇÎĎŇÉŇĎ×ÁÎĎ. ĺÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ ÉĚÉ ÎĹ Ő×ĹŇĹÎŮ "
-#~ "× ÎĹĎÂČĎÄÉÍĎÓÔÉ ×ŮÂĎŇÁ ÜÔĎÇĎ ×ÁŇÉÁÎÔÁ, ÓĐŇĎÓÉÔĹ ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ ×ÁŰĹĘ ÓĹÔÉ."
-
-#~ 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 ""
-#~ "óĹĘŢÁÓ ×Ů ÍĎÖĹÔĹ ××ĹÓÔÉ ÉÍŃ ×ÁŰĹÇĎ ËĎÍĐŘŔÔĹŇÁ, ĹÓĚÉ ÎŐÖÎĎ. ĺÓĚÉ ×Ů ÎĹ "
-#~ "ÚÎÁĹÔĹ ÉĚÉ \n"
-#~ "ÎĹ Ő×ĹŇĹÎŮ × ÔĎÍ, ŢÔĎ ÎŐÖÎĎ ××ĹÓÔÉ, ÓĐŇĎÓÉÔĹ ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ ×ÁŰĹĘ ÓĹÔÉ."
-
-#~ 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"
-#~ "ÉĚÉ ÎĹ Ő×ĹŇĹÎŮ × ÔĎÍ, ŢÔĎ ÎŐÖÎĎ ××ĹÓÔÉ, ĎÓÔÁ×ŘÔĹ ĐĎĚĹ ÎĹÚÁĐĎĚÎĹÎÎŮÍ."
-
-#~ 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 ""
-#~ "ôĹĐĹŇŘ ÍĎÖÎĎ ××ĹÓÔÉ ĐÁŇÁÍĹÔŇŮ ÄĎÚ×ĎÎÁ (dialup). ĺÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ, ŢÔĎ "
-#~ "××ĹÓÔÉ, \n"
-#~ "ĐŇÁ×ÉĚŘÎŐŔ ÉÎĆĎŇÍÁĂÉŔ ÍĎÖÎĎ ĐĎĚŐŢÉÔŘ Ő Ó×ĎĹÇĎ ĐŇĎ×ÁĘÄĹŇÁ ÉÎÔĹŇÎĹÔ (ISP)."
-
-#~ 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 ""
-#~ "ĺÓĚÉ ÂŐÄĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÓĹŇ×ĹŇÁ proxy, ÎÁÓÔŇĎĘÔĹ ÉČ ÓĹĘŢÁÓ. ĺÓĚÉ ÎĹ "
-#~ "ÚÎÁĹÔĹ,\n"
-#~ "ÎŐÖÎĎ ĚÉ ÜÔĎ, ĎÂŇÁÔÉÔĹÓŘ Ë ÁÄÍÉÎÉÓÔŇÁÔĎŇŐ ÓĹÔÉ ÉĚÉ ÉÎÔĹŇÎĹÔ ĐŇĎ×ÁĘÄĹŇŐ."
-
-#~ 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 and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "÷Ů ÍĎÖĹÔĹ ŐÓÔÁÎĎ×ÉÔŘ ĐÁËĹÔ ŰÉĆŇĎ×ÁÎÉŃ, ĹÓĚÉ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ c ÉÎÔĹŇÎĹÔ "
-#~ "ŐÖĹ\n"
-#~ "ĐŇÁ×ÉĚŘÎĎ ÎÁÓÔŇĎĹÎĎ. óÎÁŢÁĚÁ ×ŮÂĹŇÉÔĹ ÓĹŇ×ĹŇ, ĎÔËŐÄÁ ×Ů ČĎÔÉÔĹ ÓËÁŢÁÔŘ "
-#~ "ĐÁËĹÔŮ É \n"
-#~ "ĐĎÔĎÍ ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ.\n"
-#~ "\n"
-#~ "\n"
-#~ "éÍĹĘÔĹ ××ÉÄŐ, ŢÔĎ ×ÁÍ ÎŐÖÎĎ ×ŮÂÉŇÁÔŘ ÓĹŇ×ĹŇ É ĐÁËĹÔŮ ŰÉĆŇĎ×ÁÎÉŃ × "
-#~ "ÓĎĎÔ×ĹÔÓÔ×ÉÉ Ó ÚÁËĎÎĎÄÁÔĹĚŘÓÔ×ĎÍ,\n"
-#~ "ÄĹĘÓÔ×ŐŔÝÉÍ × ×ÁŰĹĘ ÓÔŇÁÎĹ."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "óĹĘŢÁÓ ×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ŢÁÓĎ×ĎĘ ĐĎŃÓ, × ËĎÔĎŇĎÍ ×Ů ÖÉ×ĹÔĹ."
-
-#~ 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 ÉĚÉ Microsoft Windows)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "ĺÓĚÉ ×Ů ČĎÔÉÔĹ ×ŮĐĎĚÎŃÔŘ ĐĹŢÁÔŘ, ×ŮÂĹŇÉÔĹ ÓÉÔĹÍŐ ĐĹŢÁÔÉ - \n"
-#~ "CUPS ÉĚÉ LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS - ÎĎ×ÁŃ, ÍĎÝÎÁŃ É ÇÉÂËÁŃ ÓÉÓÔĹÍÁ ĐĹŢÁÔÉ ÄĚŃ Unix ÓÉÓÔĹÍ (CUPS\n"
-#~ "ĎÚÎÁŢÁĹÔ \"ďÂŮŢÎÁŃ óÉÓÔĹÍÁ đĹŢÁÔÉ Unix\"). üÔÁ ÓÉÓÔĹÍÁ ÉÓĐĎĚŘÚŐĹÔÓŃ ×\n"
-#~ "Mandrake Linux ĐĎ ŐÍĎĚŢÁÎÉŔ.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR - ÓÔÁŇÁŃ ÓÉÓÔĹÍÁ ĐĹŢÁÔÉ, ÉÓĐĎĚŘÚĎ×Á×ŰÁŃÓŃ × ĐŇĹÄŮÄŐÝÉČ ÄÉÓÔŇÉÂŐÔÉ×ÁČ "
-#~ "Mandrake Linux .\n"
-#~ "\n"
-#~ "\n"
-#~ "ĺÓĚÉ Ő ×ÁÓ ÎĹÔ ĐŇÉÎÔĹŇÁ, ×ŮÂĹŇÉÔĹ \"ďÔÓŐÔÓÔ×ŐĹÔ\"."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "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 \n"
-#~ "(ÉĚÉ ÍÁŰÉÎĹ Ó Unix, ÉÓĐĎĚŘÚŐŃ SMB ĐŇĎÔĎËĎĚ), ×ŮÂĹŇÉÔĹ \"SMB/Windows 95/98/"
-#~ "NT\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " 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"
-#~ " * éÍŃ ĐŇÉÎÔĹŇÁ: ÍĹÎĹÄÖĹŇ ĐĹŢÁÔÉ (spooler) \"lp\" ËÁË ÉÍŃ ĐŇÉÎÔĹŇÁ ĐĎ "
-#~ "ŐÍĎĚŢÁÎÉŔ. đĎÜÔĎÍŐ, Ő ×ÁÓ ÄĎĚÖĹÎ ÂŮÔŘ ĐŇÉÎÔĹŇ Ó ÉÍĹÎĹÍ \"lp\".\n"
-#~ " ĺÓĚÉ Ő ×ÁÓ ÔĎĚŘËĎ ĎÄÉÎ ĐŇÉÎÔĹŇ, ×Ů ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÎĹÓËĎĚŘËĎ "
-#~ "ÉÍĹÎ ÄĚŃ ÎĹÇĎ. ÷Ů ĐŇĎÓÔĎ ÄĎĚÖÎŮ ŇÁÚÄĹĚÉÔŘ ÉČ ÓÉÍ×ĎĚĎÍ\n"
-#~ " \"|\". đĎÜÔĎÍŐ, ĹÓĚÉ ×Ů ĐŇĹÄĐĎŢÉÔÁĹÔĹ ÓÍŮÓĚĎ×ĎĹ ÉÍŃ, ĹÇĎ ÎŐÖÎĎ "
-#~ "ĐĎÍĹÓÔÉÔŘ ĐĹŇ×ŮÍ, ÎÁĐŇÉÍĹŇ: \"íĎĘ ĐŇÉÎÔĹŇ|lp\".\n"
-#~ " đŇÉÎÔĹŇ, ÓĎÄĹŇÖÁÝÉĘ \"lp\" × ÓĎ×ĹÍ ÉÍĹÎÉ ÉĚÉ ÉÍĹÎÁČ, ÂŐÄĹÔ ĐŇÉÎÔĹŇĎÍ "
-#~ "ĐĎ ŐÍĎĚŢÁÎÉŔ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * ďĐÉÓÁÎÉĹ: ÜÔĎ ŐËÁÚŮ×ÁÔŘ ÎĹĎÂŃÚÁÔĹĚŘÎĎ, ÎĎ ÍĎÖĹÔ ĎËÁÚÁÔŘÓŃ ĐĎĚĹÚÎŮÍ "
-#~ "ĹÓĚÉ ÎĹÓËĎĚŘËĎ ĐŇÉÎÔŇĎ× ĐĎÄËĚŔŢĹÎŮ Ë ×ÁŰĹÍŐ ËĎÍĐŘŔÔĹŇŐ ÉĚÉ ĹÓĚÉ ×Ů "
-#~ "ŇÁÚŇĹŰÁĹÔĹ\n"
-#~ " ÄŇŐÇÉÍ ËĎÍĐŘŔÔĹŇÁÍ ÉÓĐĎĚŘÚĎ×ÁÔŘ ×ÁŰ ĐŇÉÎÔĹŇ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * ňÁÓĐĎĚĎÖĹÎÉĹ: ĹÓĚÉ ×Ů ČĎÔÉÔĹ ŐËÁÚÁÔŘ ËÁËŐŔ-ĚÉÂĎ ÉÎĆĎŇÍÁĂÉŔ Ď "
-#~ "ŇÁÓĐĎĚĎÖĹÎÉÉ\n"
-#~ " ×ÁŰĹÇĎ ĐŇÉÎÔĹŇÁ, ÎÁĐÉŰÉÔĹ ĹĹ ÚÄĹÓŘ (ĐÉÓÁÔŘ ÍĎÖĹÔĹ ×ÓĹ, ŢÔĎ ŐÇĎÄÎĎ\n"
-#~ " , ÎÁĐŇÉÍĹŇ \"2ĎĘ ÜÔÁÖ\").\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "óĹĘŢÁÓ ×ÁÍ ĐĎÔŇĹÂŐĹÔÓŃ ××ĹÓÔÉ ÎĹËĎÔĎŇŐŔ ÉÎĆĎŇÍÁĂÉŔ.\n"
-#~ "\n"
-#~ "\n"
-#~ " * éÍŃ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ: ÍĹÎĹÄÖĹŇ ĐĹŢÁÔÉ ÉÓĐĎĚŘÚŐĹÔ \"lp\" × ËÁŢĹÓÔ×Ĺ "
-#~ "ÉÍĹÎÉ ĐĎ ŐÍĎĚŢÁÎÉŔ. đĎÜÔĎÍŐ Ő ×ÁÓ ÄĎĚÖĹÎ ÂŮÔŘ ĐŇÉÎÔĹŇ Ó ÉÍĹÎÍ \"lp\".\n"
-#~ " ĺÓĚÉ Ő ×ÁÓ ÔĎĚŘËĎ ĎÄÉÎ ĐŇÉÎÔĹŇ, ×Ů ÍĎÖĹÔĹ ÚÁÄÁÔŘ ÄĚŃ ÎĹÇĎ ÎĹÓËĎĚŘËĎ "
-#~ "ÉÍĹÎ. đŇĎÓÔĎ ŇÁÚÄĹĚÉÔĹ ÉÍĹÎÁ ÓÉÍ×ĎĚĎÍ\n"
-#~ " \"|\". ôÁË, ĹÓĚÉ ×Ů ĐŇĹÄĐĎŢÉÔÁĹÔĹ ÂĎĚĹĹ ĎÓÍŮÓĚĹÎÎĎĹ ÉÍŃ, ÔĎ ĐĎÍĹÓÔÉÔĹ "
-#~ "ĹÇĎ ĐĹŇ×ŮÍ, ÎÁĐŇÉÍĹŇ: \"íĎĘ ĐŇÉÎÔĹŇ|lp\".\n"
-#~ " đŇÉÎÔĹŇ, ÓĎÄĹŇÖÁÝÉĘ × ÉÍĹÎÉ ĚÉÂĎ ÉÍĹÎÁČ \"lp\" ÂŐÄĹÔ ĐŇÉÎÔĹŇĎÍ ĐĎ "
-#~ "ŐÍĎĚŢÁÎÉŔ.\n"
-#~ "\n"
-#~ " \n"
-#~ " * ëÁÔÁĚĎÇ ĎŢĹŇĹÄÉ: × ÜÔĎÍ ËÁÔÁĚĎÇĹ ÂŐÄŐÔ ČŇÁÎÉÔŘÓŃ ×ÓĹ ÚÁÄÁÎÉŃ ÎÁ "
-#~ "ĐĹŢÁÔŘ. ďÓÔÁ×ŘÔĹ ×ŮÂĎŇ ĐĎ ŐÍĎĚŢÁÎÉŔ,\n"
-#~ " ĹÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ, ËÁËĎĘ ËÁÔÁĚĎÇ ŐËÁÚÁÔŘ\n"
-#~ "\n"
-#~ "\n"
-#~ " * ôÉĐ ĐĎÄËĚŔŢĹÎÉŃ: ĺÓĚÉ ×ÁŰ ĐŇÉÎÔĹŇ ĆÉÚÉŢĹÓËÉ ĐŇÉÓĎĹÄÉÎĹÎ Ë ×ÁŰĹÍŐ "
-#~ "ËĎÍĐŘŔÔĹŇŐ, ×ŮÂĹŇÉÔĹ \"ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ\".\n"
-#~ " ĺÓĚÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ĐŇÉÎÔĹŇ, ĐĎÄËĚŔŢĹÎÎŮĘ Ë ŐÄÁĚĹÎÎĎĘ Unix "
-#~ "ÍÁŰÉÎĹ, ×ŮÂĹŇÉÔĹ \"őÄÁĚĹÎÎŮĘ lpd ĐŇÉÎÔĹŇ\".\n"
-#~ "\n"
-#~ "\n"
-#~ " ĺÓĚÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ĐŇÉÎÔĹŇ, ĐĎÄËĚŔŢĹÎÎŮĘ Ë ŐÄÁĚĹÎÎĎĘ "
-#~ "Microsoft Windows ÍÁŰÉÎĹ (ÉĚÉ Ë ÍÁŰÉÎĹ Unix ÉÓĐĎĚŘÚŐŔŃ SMB\n"
-#~ " ĐŇĎÔĎËĎĚ), ×ŮÂĹŇÉÔĹ \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " ĺÓĚÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ĐŇÉÎÔĹŇ, ŇÁÓĐĎĚĎÖĹÎÎŮĘ × ĚĎËÁĚŘÎĎĘ ÓĹÔÉ "
-#~ "NetWare, ×ŮÂĹŇÉÔĹ \"NetWare\".\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "÷ÁŰ ĐŇÉÎÔĹŇ ÎĹ ĎÂÎÁŇŐÖĹÎ. ÷×ĹÄÉÔĹ ÉÍŃ ŐÓÔŇĎĘÓÔ×Á, Ë ËĎÔĎŇĎÍŐ ĎÎ "
-#~ "ĐĎÄËĚŔŢĹÎ\n"
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ "äĚŃ ÓĐŇÁ×ËÉ - ÂĎĚŘŰÉÎÓÔ×Ď ĐŇÉÎÔĹŇĎ× ĐĎÄËĚŔŢÁŔÔÓŃ Ë ĐĹŇ×ĎÍŐ ĐÁŇÁĚĚĹĚŘÎĎÍŐ "
-#~ "ĐĎŇÔŐ. ÷ GNU/Linux\n"
-#~ "ĎÎ ÎÁÚŮ×ÁĹÔÓŃ \"/dev/lp0\", × Microsoft Windows - \"LPT1\" ."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "óĹĘŢÁÓ ×ÁÍ ÎŐÖÎĎ ×ŮÂŇÁÔŘ ×ÁŰ ĐŇÉÎÔĹŇ ÉÚ ĐŇÉ×ĹÄĹÎÎĎÇĎ ÓĐÉÓËÁ."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "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"
-#~ "ő ×ÁÓ ÂŐÄĹÔ ×ĎÚÍĎÖÎĎÓÔŘ ĐŇĎÔĹÓÔÉŇĎ×ÁÔŘ ×ÁŰÉ ÎÁÓÔŇĎĘËÉ ÎÁ ÓĚĹÄŐŔÝĹÍ ÜÔÁĐĹ "
-#~ "É ×Ů ÓÍĎÖĹÔĹ ÉÚÍĹÎÉÔŘ ÉČ, ĹÓĚÉ ĐŇÉÎÔĹŇ ÂŐÄĹÔ ŇÁÂĎÔÁÔŘ ÎĹËĎŇŇĹËÔÎĎ."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "óĹĘŢÁÓ ×Ů ÍĎÖĹÔĹ ××ĹÓÔÉ ĐÁŇĎĚŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ root ÄĚŃ ×ÁŰĹĘ Mandrake Linux "
-#~ "ÓÉÓÔĹÍŮ.\n"
-#~ "đÁŇĎĚŘ ÎŐÖÎĎ ××ĹÓÔÉ Ä×ÁÖÄŮ, ŢÔĎÂŮ ŐÂĹÄÉÔŘÓŃ, ŢÔĎ ĎÂÁ ĐÁŇĎĚŃ ÓĎ×ĐÁÄÁŔÔ .\n"
-#~ "\n"
-#~ "\n"
-#~ "đĎĚŘÚĎ×ÁÔĹĚŘ root - ÜÔĎ ÓÉÓÔĹÍÎŮĘ ÁÄÍÉÎÉÓÔŇÁÔĎŇ É ĹÄÉÎÓÔ×ĹÎÎŮĘ "
-#~ "ĐĎĚŘÚĎ×ÁÔĹĚŘ, ËÔĎŇĎÍŐ\n"
-#~ "ŇÁÚŇĹŰĹÎĎ ÉÚÍĹÎŃÔŘ ËĎÎĆÉÇŐŇÁĂÉŔ ÓÉÓÔĹÍŮ. óĚĹÄĎ×ÁÔĹĚŘÎĎ, ×ÎÉÍÁÔĹĚŘÎĎ "
-#~ "×ŮÂÉŇÁĘÔĹ ĐÁŇĎĚŘ. \n"
-#~ "éÓĐĎĚŘÚĎ×ÁÎÉĹ ŐŢĹÔÎĎĘ ÚÁĐÉÓÉ root ĐĎÓÔĎŇĎÎÎÉÍÉ ĚÉĂÁÍÉ ÍĎÖĹÔ ÂŮÔŘ "
-#~ "Ó×ĹŇČĎĐÁÓÎŮÍ ÄĚŃ ĂĹĚĎÓÔÎĎÓÔÉ\n"
-#~ "ÓÉÓÔĹÍŮ, ĹĹ ÄÁÎÎŮČ É ÄŇŐÇÉČ ÓÉÓÔĹÍ, ÓĎĹÄÉÎĹÎÎŮČ Ó ÎĹĘ.\n"
-#~ "\n"
-#~ "\n"
-#~ "đÁŇĎĚŘ ÄĎĚÖĹÎ ÓĎÓÔĎŃÔŘ ÉÚ ÂŐË× É ĂÉĆŇ É ÂŮÔŘ ËÁË ÍÉÎÉÍŐÍ 8\n"
-#~ "ÓÉÍ×ĎĚĎ× ÄĚÉÎÎĎĘ. ĺÇĎ ÎÉËĎÇÄÁ É ÎÉËŐÄÁ ÎĹĚŘÚŃ ÚÁĐÉÓŮ×ÁÔŘ.\n"
-#~ "\n"
-#~ "\n"
-#~ "îĹ ÓÔĎÉÔ ÄĹĚÁÔŘ ĹÇĎ ÓĚÉŰËĎÍ ÄĚÉÎÎŮÍ ÉĚÉ ÓĚĎÖÎŮÍ: ×Ů ÄĎĚÖÎŮ ×ÓĐĎÍÉÎÁÔŘ ĹÇĎ "
-#~ "ÂĹÚ\n"
-#~ "ĎÓĎÂŮČ ŐÓÉĚÉĘ."
-
-#~ 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"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ÓĎÚÄÁÔŘ ĎÄÎŐ ÉĚÉ ÎĹÓËĎĚŘËĎ \"ĎÂŮŢÎŮČ\" ŐŢĹÔÎŮČ ÚÁĐÉÓĹĘ "
-#~ "ÄĚŃ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ\n"
-#~ ", × ĎÔĚÉŢÉĹ ĎÔ \"ĐŇÉ×ÉĚĹÇÉŇĎ×ÁÎÎĎĘ\" ŐŢĹÔÎĎĘ ÚÁĐÉÓÉ root. íĎÖÎĎ\n"
-#~ "ÓĎÚÄÁÔŘ ĎÄÎŐ ÉĚÉ ÎĹÓËĎĚŘËĎ ŐŢĹÔÎŮČ ÚÁĐÉÓĹĘ ÄĚŃ ËÁÖÄĎÇĎ ĐĎĚŘÚĎ×ÁÔĹĚŃ,\n"
-#~ "ËĎÔĎŇŮĘ ÂŐÄĹÔ ŇÁÂĎÔÁÔŘ ÎÁ ËĎÍĐŘŔÔĹŇĹ. äĚŃ ËÁÖÄĎĘ ŐŢĹÔÎĎĘ ÚÁĐÉÓÉ "
-#~ "ĐĎĚŘÚĎ×ÁÔĹĚŃ\n"
-#~ "ÓĎÚÄÁŔÔÓŃ Ó×ĎÉ ÎÁÓÔŇĎĘËÉ (ÇŇÁĆÉŢĹÓËĎĹ ĎËŇŐÖĹÎÉĹ, ÎÁÓÔŇĎĘËÉ ĐŇĎÇŇÁÍÍ, É Ô."
-#~ "Ä.)\n"
-#~ "É Ó×ĎĘ \"ÄĎÍÁŰÎÉĘ ËÁÔÁĚĎÇ\", × ËĎÔĎŇĎÍ ČŇÁÎŃÔÓŃ ÜÔÉ \n"
-#~ "ÎÁÓÔŇĎĘËÉ.\n"
-#~ "\n"
-#~ "\n"
-#~ "đŇĹÖÄĹ ×ÓĹÇĎ ÓĎÚÄÁĘÔĹ ŐŢĹÔÎŐŔ ÚÁĐÉÓŘ ÄĚŃ ÓĹÂŃ! äÁÖĹ ĹÓĚÉ ×Ů ÂŐÄĹÔĹ "
-#~ "ĹÄÉÎÓÔ×ĹÎÎŮÍ\n"
-#~ "ĐĎĚŘÚĎ×ÁÔĹĚĹÍ ÎÁ ÍÁŰÉÎĹ, ÎĹ ÓĚĹÄŐĹÔ ×ČĎÄÉÔŘ ĐĎÄ ÉÍĹÎĹÍ root\n"
-#~ "ÄĚŃ ĐĎ×ÓĹÄÎĹ×ÎĎĘ ŇÁÂĎÔŮ: ÜÔĎ ÓĚÉŰËĎÍ ÂĎĚŘŰÁŃ ŐÇŇĎÚÁ ÂĹÚĎĐÁÓÎĎÓÔÉ. \n"
-#~ "íĎÖÎĎ ŇÁÚŇŐŰÉÔŘ ÓÉÓÔĹÍŐ ĎÂŮŢÎĎĘ ĎĐĹŢÁÔËĎĘ.\n"
-#~ "\n"
-#~ "\n"
-#~ "đĎÜÔĎÍŐ ×ČĎÄÉÔŘ × ÓÉÓÔĹÍŐ ÎÁÄĎ, ÉÓĐĎĚŘÚŐŃ ŐŢĹÔÎŐŔ ÚÁĐÉÓŘ ĎÂŮŢÎĎÇĎ "
-#~ "ĐĎĚŘÚĎ×ÁÔĹĚŃ,\n"
-#~ "ËĎÔĎŇĎÇĎ ×Ů ÓĹĘŢÁÓ É ÓĎÚÄÁÄÉÔĹ, Á ×ČĎÄÉÔŘ ËÁË root ÎÁÄĎ ÔĎĚŘËĎ\n"
-#~ "× ĂĹĚŃČ ÁÄÍÉÎÉÓÔŇÉŇĎ×ÁÎÉŃ É ĎÂÓĚŐÖÉ×ÁÎÉŃ ÓÉÓÔĹÍŮ."
-
-#~ 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 ""
-#~ "îÁÓÔĎŃÔĹĚŘÎĎ ŇĹËĎÍĹÎÄŐĹÔÓŃ ÓĎÚÄÁÔŘ ÚÁÇŇŐÚĎŢÎŐŔ ÄÉÓËĹÔŐ. ĺÓĚÉ ×Ů ÎĹ ÓÍĎÖĹÔ "
-#~ "ÚÁÇŇŐÚÉÔŘ\n"
-#~ "ËĎÍĐŘŔÔĹŇ, ÜÔĎ ÂŐÄĹÔ ĹÄÉÎÓÔ×ĹÎÎŮĘ ÓĐĎÓĎÂĎ ×ĎÓÓÔÁÎĎ×ÉÔŘ ÓÉÓÔĹÍŐ ÂĹÚ "
-#~ "ĐĹŇĹŐÓÔÁÎĎ×ËÉ\n"
-#~ "."
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <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"
-#~ " - úÁÇŇŐÚĎŢÎĎĹ ŐÓÔŇĎĘÓÔ×Ď: őËÁÚŮ×ÁĹÔÓŃ ÉÍŃ ŐÓÔŇĎĘÓÔ×Á (ÎÁĐŇÉÍĹŇ, ŇÁÚÄĹĚ "
-#~ "ÖĹÓÔËĎÇĎ ÄÉÓËÁ,\n"
-#~ "ËĎÔĎŇĎĹ ÓĎÄĹŇÖÉÔ ÚÁÇŇŐÚĎŢÎŮĘ ÓĹËÔĎŇ. ĺÓĚÉ ×Ů ÎĹ ÄĹĚÁĹÔĹ ĎÓĎÚÎÁÎÎĎ ÄŇŐÇĎĘ "
-#~ "×ŮÂĎŇ, ÔĎ\n"
-#~ "×ŮÂÉŇÁĘÔĹ \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - úÁÄĹŇÖËÁ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ ĎÂŇÁÚÁ ĐĎ ŐÍĎĚŢÁÎÉŔ: úÁÄÁĹÔ ŢÉÓĚĎ × ÄĹÓŃÔŮČ\n"
-#~ "ÄĎĚŃČ ÓĹËŐÎÄŮ × ÔĹŢĹÎÉĹ ËĎÔĎŇŮČ ÎÁŢÁĚŘÎŮĘ ÚÁÇŇŐÚŢÉË ÖÄĹÔ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ "
-#~ "ĐĹŇ×ĎÇĎ ĎÂŇÁÚÁ.\n"
-#~ "üÔĎ ĐĎĚĹÚÎĎ ÄĚŃ ÓÉÓÔĹÍ, ÓŇÁÚŐ ÚÁÇŇŐÖÁĹÍŮČ Ó ÖĹÓÔËĎÇĎ ÄÉÓËÁ ÓŇÁÚŐ ĐĎÓĚĹ\n"
-#~ "×ËĚŔŢĹÎÉŃ ËĚÁ×ÉÁÔŐŇŮ. úÁÇŇŐÚŢÉË ÎĹ ÖÄĹÔ, ĹÓĚÉ \"ÚÁÄĹŇÖËÁ\" \n"
-#~ "ÎĹ ŐÓÔÁÎĎ×ĚĹÎÁ, ÉĚÉ ŇÁ×ÎÁ ÎŐĚŔ."
-
-#~ 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"
-#~ "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"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "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 - ÜÔĎ ÄÉÓĐĹÔŢĹŇ ÚÁÇŇŐÚËÉ ÄĚŃ SPARC: \n"
-#~ "ĎÎ ÓĐĎÓĎÂĹÎ ÚÁÇŇŐÚÉÔŘ GNU/Linux ÉĚÉ ĚŔÂŐŔ ÄŇŐÇŐŔ ďó, ŐÓÔÁÎĎ×ĚĹÎÎŐŔ ÎÁ "
-#~ "ÍÁŰÉÎĹ.\n"
-#~ "ďÂŮŢÎĎ ÜÔÉ ÄŇŐÇÉĹ ĎĐĹŇÁĂÉĎÎÎŮĹ ÓÉÓÔĹÍŮ ËĎŇŇĹËÔÎĎ ŇÁÓĐĎÚÎÁŔÔÓŃ É "
-#~ "ŐÓÔÁÎÁ×ĚÉ×ÁŔÔÓŃ.\n"
-#~ "ĺÓĚÉ ÜÔĎÇĎ ÎĹ ĐŇĎÉÚĎŰĚĎ, ×Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ĐŐÎËÔ ×ŇŐŢÎŐŔ ÎÁ ÜÔĎÍ "
-#~ "ÜËŇÁÎĹ.\n"
-#~ "âŐÄŘÔĹ ×ÎÉÍÁÔĹĚŘÎŮ ĐŇÉ ÚÁÄÁÎÉÉ ĐÁŇÁÍĹÔŇĎ×.\n"
-#~ "\n"
-#~ "\n"
-#~ "÷ĎÚÍĎÖÎĎ ÔÁËÖĹ, ŢÔĎ ×Ů ÎĹ ČĎÔÉÔĹ ÎÉËĎÍŐ ÄÁ×ÁÔŘ ÄĎÓÔŐĐ Ë ÜÔÉÍ ďó, × ÔÁËĎÍ "
-#~ "ÓĚŐŢÁĹ ÍĎÖÎĎ ŐÄÁĚÉÔŘ ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÉĹ ĐŐÎËÔŮ. îĎ × ÜÔĎÍ ÓĚŐŢÁĹ ÄĚŃ ÉČ "
-#~ "ÚÁÇŇŐÚËÉ ĐĎÔŇĹÂŐĹÔÓŃ ÚÁÇŇŐÚĎŢÎÁŃ ÄÉÓËĹÔÁ!"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "ĎÓÎĎ×ÎŮĹ ĐÁŇÁÍĹÔŇŮ SILO:\n"
-#~ " - őÓÔÁÎĎ×ËÁ ÚÁÇŇŐÚŢÉËÁ: őËÁÖÉÔĹ, ÇÄĹ ×Ů ČĎÔÉÔĹ ŇÁÚÍĹÓÔÉÔŘ ÉÎĆĎŇÍÁĂÉŔ,\n"
-#~ "ÎĹĎÂČĎÄÉÍŐŔ ÄĚŃ ÚÁÇŇŐÚËÉ GNU/Linux. ĺÓĚÉ ÎĹ ÚÎÁĹÔĹ ÔĎŢÎĎ, ŢÔĎ ÄĹĚÁĹÔĹ,\n"
-#~ "×ŮÂÉŇÁĘÔĹ \"đĹŇ×ŮĘ ÓĹËÔĎŇ ŐÓÔŇĎĘÓÔ×Á (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - úÁÄĹŇÖËÁ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ ĎÂŇÁÚÁ ĐĎ ŐÍĎĚŢÁÎÉŔ: úÁÄÁĹÔ ŢÉÓĚĎ × ÄĹÓŃÔŮČ\n"
-#~ "ÄĎĚŃČ ÓĹËŐÎÄŮ × ÔĹŢĹÎÉĹ ËĎÔĎŇŮČ ÚÁÇŇŐÚŢÉË ÖÄĹÔ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ ĐĹŇ×ĎÇĎ "
-#~ "ĎÂŇÁÚÁ.\n"
-#~ "üÔĎ ĐĎĚĹÚÎĎ ÄĚŃ ÓÉÓÔĹÍ, ÚÁÇŇŐÖÁĹÍŮČ Ó ÖĹÓÔËĎÇĎ ÄÉÓËÁ ÓŇÁÚŐ ĐĎÓĚĹ\n"
-#~ "×ËĚŔŢĹÎÉŃ ËĚÁ×ÉÁÔŐŇŮ. úÁÇŇŐÚŢÉË ÎĹ ÖÄĹÔ, ĹÓĚÉ \"ÚÁÄĹŇÖËÁ\" \n"
-#~ "ÎĹ ŐËÁÚÁÎÁ ÉĚÉ ŇÁ×ÎÁ ÎŐĚŔ."
-
-#~ 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"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "ôĹĐĹŇŘ ÎŐÖÎĎ ÎÁÓÔŇĎÉÔŘ X Window System, ËĎÔĎŇÁŃ Ń×ĚŃĹÔÓŃ\n"
-#~ "ĎÓÎĎ×ĎĘ GNU/Linux GUI (çŇÁĆÉŢĹÓËÉĘ đĎĚŘÚĎ×ÁÔĹĚŘÓËÉĘ éÎÔĹŇĆĹĘÓ). äĚŃ ÜÔĎĘ\n"
-#~ "ĂĹĚÉ ÎÁÄĎ ÎÁÓÔŇĎÉÔŘ ×ÉÄĹĎËÁŇÔŐ É ÍĎÎÉÔĎŇ. âĎĚŘŰÁŃ ŢÁÓÔŘ ÜÔÉČ ŰÁÇĎ×\n"
-#~ "Á×ÔĎÍÁÔÉÚÉŇĎ×ÁÎÁ, ÔÁË ŢÔĎ ×ÁŰÁ ŇÁÂĎÔÁ ÍĎÖĹÔ Ó×ĹÓÔÉÓŘ Ë ĐŇĎ×ĹŇËĹ\n"
-#~ "ŇĹÚŐĚŘÔÁÔĎ× ÎÁÓÔŇĎĘËÉ É ĐĎÄÔ×ĹŇÖÄĹÎÉŔ ×ŮÂŇÁÎÎŮČ ŐÓÔÁÎĎ×ĎË :)\n"
-#~ "\n"
-#~ "\n"
-#~ "ëĎÇÄÁ ËĎÎĆÉÇŐŇÉŇĎ×ÁÎÉĹ ÚÁ×ĹŇŰÉÔÓŃ, ÂŐÄĹÔ ÚÁĐŐÝĹÎ X (ĹÓĚÉ ×Ů ÎĹ\n"
-#~ "ĐĎĐŇĎÓÉÔĹ DrakX ÎĹ ÄĹĚÁÔŘ ÜÔĎÇĎ) ŢÔĎÂŮ ×Ů ÍĎÇĚÉ ĐŇĎ×ĹŇÉÔŘ, ŐÓÔŇÁÉ×ÁŔÔ\n"
-#~ "ĚÉ ×ÁÓ ŐÓÔÁÎĎ×ËÉ. ĺÓĚÉ ÎĹÔ, ×Ů ÍĎÖĹÔĹ ×ĹŇÎŐÔŘÓŃ É ÉÚÍĹÎŃÔŘ ÉČ\n"
-#~ "ÓËĎĚŘËĎ ×ÁÍ ŐÇĎÄÎĎ."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "ĺÓĚÉ ŢÔĎ ÔĎ ÎĹ × ĐĎŇŃÄËĹ Ó ÎÁÓÔŇĎĘËĎĘ X, ÉÓĐĎĚŘÚŐĘÔĹ ÜÔÉ ĐÁŇÁÍĹÔŇŮ ÄĚŃ\n"
-#~ "ËĎŇŇĹËÔÎĎĘ ÎÁÓÔŇĎĘËÉ X Window System."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "ĺÓĚÉ ×Ů ĐŇĹÄĐĎŢÉÔÁĹÔĹ ÇŇÁĆÉŢĹÓËÉĘ ×ČĎÄ (login), ÷ŮÂĹŇÉÔĹ \"äÁ\". éÎÁŢĹ "
-#~ "- \n"
-#~ "\"îĹÔ\"."
-
-#~ msgid ""
-#~ "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"
-#~ msgstr ""
-#~ "÷Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ŐŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ ÄĚŃ ×ÁŰĹĘ ÓÉÓÔĹÍŮ. đĎÄŇĎÂÎŐŔ "
-#~ "ÉÎĆĎŇÍÁĂÉŔ ÍĎÖÎĎ\n"
-#~ " ÎÁĘÔÉ × ŇŐËĎ×ĎÄÓÔ×Ĺ. ëÁË ĎÂŮŢÎĎ, ĹÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ, ŢÔĎ ×ŮÂŇÁÔŘ, "
-#~ "ĎÓÔÁ×ŘÔĹ ŐÓÔÁÎĎ×ËÉ ĐĎ ŐÍĎĚŢÁÎÉŔ.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "óÉÓÔĹÍÁ ÓĎÂÉŇÁĹÔÓŃ ĐĹŇĹÚÁÇŇŐÚÉÔŘÓŃ.\n"
-#~ "\n"
-#~ "đĎÓĚĹ ĐĹŇĹÚÁÇŇŐÚËÉ, ×ÁŰÁ ÎĎ×ÁŃ ÓÉÓÔĹÍÁ Mandrake Linux ÚÁÇŇŐÚÉÔÓŃ "
-#~ "Á×ÔĎÍÁÔÉŢĹÓËÉ.\n"
-#~ "ĺÓĚÉ ČĎÔÉÔĹ ÚÁÇŇŐÚÉÔŘ ÄŇŐÇŐŔ ĎĐĹŇÁĂÉĎÎÎŐŔ ÓÉÓÔĹÍŐ, ŢÉÔÁĘÔĹ \n"
-#~ "ÄĎĐĎĚÎÉÔĹĚŘÎŮĹ ÉÎÓÔŇŐËĂÉÉ."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "ţĹŰÓËÉĘ (đŇĎÇŇÁÍÍÉÓÔŮ)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "óĚĎ×ÁĂËÉĘ (đŇĎÇŇÁÍÍÉÓÔŮ)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "éÍŃ ÓĎÚÄÁ×ÁĹÍĎÇĎ ĐŇĎĆÉĚŃ:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "úÁĐÉÓÁÔŘ /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "ćĎŇÍÁÔÉŇĎ×ÁÔŘ ×ÓĹ"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "đĎÓĚĹ ĆĎŇÍÁÔÉŇĎ×ÁÎÉŃ ×ÓĹČ ŇÁÚÄĹĚĎ×,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "×ÓĹ ÄÁÎÎŮĹ × ÜÔÉČ ŇÁÚÄĹĚÁČ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ"
-
-#~ msgid "Reload"
-#~ msgstr "đĹŇĹÚÁÇŇŐÚÉÔŘ"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "čĎÔÉÔĹ ÓÇĹÎĹŇÉŇĎ×ÁÔŘ ÓÁÍĎ-ŐÓÔÁÎÁ×ĚÉ×ÁŔÝŐŔÓŃ ÄÉÓËĹÔŐ ÄĚŃ ËĚĎÎÉŇĎ×ÁÎÉŃ "
-#~ "linux?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "îÁÓÔŇĎĘËÁ ADSL"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "ó ŐÄÁĚĹÎÎŮÍ ÓĹŇ×ĹŇĎÍ ĐĹŢÁÔÉ CUPS, ×ÁÍ ÎĹ ÎŐÖÎĎ ÚÄĹÓŘ ÎÁÓÔŇÁÉ×ÁÔŘ\n"
-#~ "ÎÉËÁËÉČ ĐŇÉÎÔĹŇĎ×; ĐŇÉÎÔĹŇŮ ÂŐÄŐÔ ĎÂÎÁŇŐÖĹÎŮ Á×ÔĎÍÁÔÉŢĹÓËÉ,\n"
-#~ "ĹÓĚÉ ÔĎĚŘËĎ ×ÁŰ ÓĹŇ×ĹŇ ÎĹ ÎÁČĎÄÉÔÓŃ × ÄŇŐÇĎĘ ÓĹÔÉ; × ĐĎÓĚĹÄÎĹÍ ÓĚŐŢÁĹ\n"
-#~ ", ×ÁÍ ÎŐÖÎĎ ŐËÁÚÁÔŘ IP ÁÄŇĹÓ ÓĹŇ×ĹŇÁ CUPS \n"
-#~ "É, ×ĎÚÍĎÖÎĎ, ÎĎÍĹŇ ĐĎŇÔÁ."
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "őÄÁĚĹÎÎÁŃ ĎŢĹŇĹÄŘ"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "éÍŃ ÄĎÍĹÎÁ"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "îĹÔ ĐŇÉÎÔĹŇÁ"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "íĎÎÉÔĎŇÉÎÇ ÓĹÔÉ"
-
-#~ msgid "Profile "
-#~ msgstr "đŇĎĆÉĚŘ "
-
-#~ msgid "Statistics"
-#~ msgstr "óÔÁÔÉÓÔÉËÁ"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "óËĎŇĎÓÔŘ ĎÔĐŇÁ×ËÉ: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "óËĎŇĎÓÔŘ ĐĎĚŐŢĹÎÉŃ: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "ôÉĐ ÓĎĹÄÉÎĹÎÉŃ: "
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "óĎĹÄÉÎŃĹÍÓŃ Ó ÉÎÔĹŇÎĹÔ "
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "ďÔÓĎĹÄÉÎŃĹÍÓŃ ĎÔ ÉÎÔĹŇÎĹÔ "
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "ďŰÉÂËÁ ĎÔÓĎĹÄÉÎÉÎĹÎÉŃ ĎÔ ÉÎÔĹŇÎĹÔ."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "ďÔÓĎĹÄÉÎĹÎÉĹ ĎÔ ÉÎÔĹŇÎĹÔ ÚÁ×ĹŇŰĹÎĎ."
-
-#~ msgid "Connection complete."
-#~ msgstr "óĎĹÄÉÎĹÎÉĹ ÚÁ×ĹŇŰĹÎĎ."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "ďŰÉÂËÁ ÓĎĹÄÉĹÎÉŃ.\n"
-#~ "đŇĎ×ĹŇŘÔĹ ×ÁŰÉ ÎÁÓÔŇĎĘËÉ × ĐÁÎĹĚÉ ŐĐŇÁ×ĚĹÎÉŃ Mandrake."
-
-#~ msgid "sent: "
-#~ msgstr "ĎÔĐŇÁ×ĚĹÎĎ: "
-
-#~ msgid "received: "
-#~ msgstr "ĐĎĚŐŢĹÎĎ: "
-
-#~ msgid "Default Runlevel"
-#~ msgstr "RunLevel ĐĎ ŐÍĎĚŢÁÎÉŔ"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "îĹ ŐÄÁĹÔÓŃ ĎÂŇÁÂĎÔÁÔŘ ÓĎÄĹŇÖÉÍĎĹ ĆÁĘĚÁ ÎÁÓÔŇĎĹË."
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "îĹŇÁÓĐĎÚÎÁÎÎŮĘ ĆÁĘĚ ÎÁÓÔŇĎĹË"
-
-#~ msgid "Adapter"
-#~ msgstr "áÄÁĐÔĹŇ"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "÷ŮËĚŔŢÉÔŘ"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "÷ËĚŔŢÉÔŘ"
-
-#~ 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"
-#~ "ÄŇŐÇĎÇĎ ÄŇÁĘ×ĹŇÁ."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (ÉĚÉ ADSL) ÓĎĹÄÉÎĹÎÉĹ"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "úÁËŇŮÔŘ"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "÷Ů ÍĎÖĹÔĹ ÎÁĐŇŃÍŐŔ ŐËÁÚÁÔŘ ÁÄŇĹÓ ÄĚŃ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ ĐŇÉÎÔĹŇÁ × CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "äÁ, ÎÁĐĹŢÁÔÁÔŘ ĐŇĎÂÎŐŔ ÓÔŇÁÎÉĂŐ ÔĹËÓÔÁ ASCII"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "äÁ, ÎÁĐĹŢÁÔÁÔŘ ĐŇĎÂÎŐŔ ÓÔŇÁÎÉĂŐ ÔĹËÓÔÁ PostScript"
-
-#~ msgid "Paper Size"
-#~ msgstr "ňÁÚÍĹŇ ÂŐÍÁÇÉ"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "őÄÁĚŃÔŘ ÂŐÍÁÇŐ ĐĎÓĚĹ ĐĹŢÁÔÉ?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "đÁŇÁÍĹÔŇŮ ÄŇÁĘ×ĹŇÁ Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "đÁŇÁÍĹÔŇŮ ÇĚŐÂÉÎŮ Ă×ĹÔÁ"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "đĹŢÁÔÁÔŘ ÔĹËÓÔ ËÁË PostScript"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "éÓĐŇÁ×ĚŃÔŘ \"ÓÔŐĐĹÎŢÁÔŐŔ ĐĹŢÁÔŘ\"?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "ëĎĚÉŢĹÓÔ×Ď ÓÔŇÁÎÉĂ ÎÁ ĚÉÓÔĹ"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "đŇÁ×ĎĹ/ěĹ×ĎĹ ĐĎĚĹ × ĐŐÎËÔÁČ (1/72 ÄŔĘÍÁ)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "÷ĹŇČÎĹĹ/îÉÖÎĹĹ ĐĎĚĹ × ĐŐÎËÔÁČ (1/72 ÄŔĘÍÁ)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "äĎĐĎĚÎÉÔĹĚŘÎŮĹ ĐÁŇÁÍĹÔŇŮ ÄĚŃ GhostScript"
-
-#~ msgid "Extra Text options"
-#~ msgstr "äĎĐĎĚÎÉÔĹĚŘÎŮĹ ĐÁŇÁÍĹÔŇŮ ÄĚŃ ÔĹËÓÔÁ"
-
-#~ msgid "Reverse page order"
-#~ msgstr "ďÂŇÁÔÎŮĘ ĐĎŇŃÄĎË ÓÔŇÁÎÉĂ"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "÷ŮÂĎŇ ÔÉĐÁ ŐÄÁĚĹÎÎĎÇĎ ĐĎÄËĚŔŢĹÎÉŃ ĐŇÉÎÔĹŇÁ"
-
-#~ 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 ""
-#~ "ëÁÖÄĎÍŐ ĐŇÉÎÔĹŇŐ ÔŇĹÂŐĹÔÓŃ ÉÍŃ (ÎÁĐŇÉÍĹŇ, lp).\n"
-#~ "äĎĐĎĚÎÉÔĹĚŘÎŮĹ ĐÁŇÁÍĹÔŇŮ, ÔÁËÉĹ ËÁË ĎĐÉÓÁÎÉĹ ĐŇÉÎÔĹŇÁ É ĹÇĎ "
-#~ "ÍĹÓÔĎÎÁČĎÖÄĹÎÉŃ\n"
-#~ "ÔÁË ÖĹ ÍĎÇŐÔ ÂŮÔŘ ÚÁÄÁÎŮ. ëÁËĎĹ ÉÍŃ ÂŐÄĹÔ ÉÓĐĎĚŘÚĎ×ÁÎĎ ÄĚŃ ÄÁÎÎĎÇĎ "
-#~ "ĐŇÉÎÔĹŇÁ É\n"
-#~ "ËÁË ĎÎ ĐĎÄÓĎĹÄÉÎĹÎ?"
-
-#~ 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 ""
-#~ "ëÁÖÄÁŃ ĎŢĹŇĹÄŘ ĐĹŢÁÔÉ, × ËĎÔĎŇŐŔ ĐĎÍĹÝÁŔÔÓŃ ÚÁÄÁÎÉŃ ÄĚŃ ĐĹŢÁÔÉ, ÔŇĹÂŐĹÔ "
-#~ "ŐËÁÚÁÎÉŃ ÉÍĹÎÉ (ĎÂŮŢÎĎ lp) É Ó×ŃÚÁÎÎĎÇĎ Ó ÎĹĘ ËÁÔÁĚĎÇÁ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ. "
-#~ "őËÁÖÉÔĹ ÉÍŃ É ËÁÔÁĚĎÇ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ, Á ÔÁËÖĹ ÓĐĎÓĎÂ, ËĎÔĎŇŮÍ ĐĎÄÓĎĹÄÉĹÎ "
-#~ "ĐŇÉÎÔĹŇ?"
-
-#~ msgid "Name of queue"
-#~ msgstr "éÍŃ ĎŢĹŇĹÄÉ"
-
-#~ msgid "Spool directory"
-#~ msgstr "ëÁÔÁĚĎÇ spool"
-
-#, fuzzy
-#~ msgid "fsck failed: "
-#~ msgstr "ĎŰÉÂËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ: "
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "ţÔĎÂŮ ĐĎ×ŮÓÉÔŘ ÂĹÚĎĐÁÓÎĎÓÔŘ ÓÉÓÔĹÍŮ, ÎÁÄĎ ×ŮÂŇÁÔŘ \"éÓĐĎĚŘÚĎ×ÁÔŘ ÓËŇŮÔŮĘ "
-#~ "ĆÁĘĚ\" \n"
-#~ "É \"éÓĐĎĚŘÚĎ×ÁÔŘ ĐÁŇĎĚÉ MD5\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "ĺÓĚÉ × ×ÁŰĹĘ ÓĹÔÉ ÉÓĐĎĚŘÚŐĹÔÓŃ NIS, ×ŮÂĹŇÉÔĹ \"éÓĐĎĚŘÚĎ×ÁÔŘ NIS\". ĺÓĚÉ \n"
-#~ "ÎĹ ÚÎÁĹÔĹ, ÓĐŇĎÓÉÔĹ ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ ÓĹÔÉ."
-
-#~ msgid "yellow pages"
-#~ msgstr "ÖĹĚÔŮĹ ÓÔŇÁÎÉĂŮ"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "áÄŇĹÓ ĐĹŇ×ĎÇĎ DNS ÓĹŇ×ĹŇÁ ĐŇĎ×ÁĘÄĹŇÁ"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "áÄŇĹÓ ×ÔĎŇĎÇĎ DNS ÓĹŇ×ĹŇÁ ĐŇĎ×ÁĘÄĹŇÁ"
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "ëÁË ×Ů ČĎÔÉÔĹ ĐĎÄÓĎĹÄÉÎÉÔŘÓŃ Ë éÎÔĹŇÎĹÔ?"
diff --git a/perl-install/share/po/sk.po b/perl-install/share/po/sk.po
deleted file mode 100644
index 62d13d0af..000000000
--- a/perl-install/share/po/sk.po
+++ /dev/null
@@ -1,11152 +0,0 @@
-# Translatrion file of Mandrake graphic install
-# Copyright (C) 1999 Mandrakesoft
-# Jan Matis <damned@hq.alert.sk>, 2000
-# Pavol Cvengros <orpheus@hq.alert.sk>, 2000
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-02-17 23:14+0100\n"
-"Last-Translator: Jan Matis <matis@hq.alert.sk>\n"
-"Language-Team: sk <i18n@hq.alert.sk>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-2\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Nastaviť všetky hlavy osobitne"
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Použiť Xinerama rozšírenie"
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Nastaviť iba kartu \"%s\" (%s)"
-
-#: ../../Xconfigurator.pm_.c:249
-msgid "Multi-head configuration"
-msgstr "Nastavenie \"viac-hláv\""
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Váš systém podporuje nastevenie pre \"viac hláv\".\n"
-"Čo chcete spraviť?"
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafická karta"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Zvoľte grafickú kartu"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Zvoľte X server"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Zvoľte X server"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X server"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree86 %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Akú konfiguráciu XFree chcete mať?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Vaša karta má podporu hardwarovej 3D akcelerácie ale iba v XFree %s.\n"
-"Vaša karta je podporovaná XFree %s, ktoré majú lepšiu podporuj v 2D."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Vaša karta má podporu hardwarovej 3D akcelerácie v XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s s 3D hardwerovou akceleráciou"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Vaša karta má podporu hardwarovej 3D akcelerácie ale iba v XFree %s.\n"
-"POZOR, TÁTO PODPORA JE IBA EXPERIMENTÁLNA A MOŽE SPOSOBIŤ ZAMRZNUTIE "
-"POČÍTAČA."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s s EXPERIMENTÁLNOU 3D akceleráciou"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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ša karta má podporu hardwarovej 3D akcelerácie ale iba v XFree %s.\n"
-"POZOR, TÁTO PODPORA JE IBA EXPERIMENTÁLNA A MOŽE SPOSOBIŤ ZAMRZNUTIE "
-"POČÍTAČA.\n"
-"Vaša karta je podporovaná XFree %s, ktoré majú lepšiu podporuj v 2D."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (ovládač obrazovky pre inštaláciu)"
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfigurácia"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Zvoľte veľkosť grafickej pamäti"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Zvoľte parametre servra"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Zvoľte monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Dva kritické parametre sú vertikálna frekvencia (frekvencia, ktorou je "
-"obnovovaná celá obrazovka) a horizontálna frekvencia (frekvencia, ktorou sú "
-"zobrazované jednotlivé riadky).\n"
-"Je veľmi dôležité, aby ste nenastavili frekvencie, ktoré prevyšujú "
-"schopnosti vášho monitora. Mohol by sa poškodiť.\n"
-"Ak ste si nie celkom istý, zvoľte radšej slabšie nastavenie."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Horizontálna frekvencia"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Vertikálna frekvencia"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Nie je nastavený monitor"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Nie je nastavená grafická karta"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Nie sú nastavené grafické rozlíšenia"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Otestovať konfiguráciu?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Varovanie: Testovanie tejto grafickej karty môže spôsobiť zamrznutie systému"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Test konfigurácie"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"skúste zmeniť niektoré parametre"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Vyskytla sa chyba"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Návrat za %d sekúnd"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Je toto správne nastavenie?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Vyskytla sa chyba, skúste zmeniť niektoré parametre"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Rozlíšenie"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Zvoľte rozlíšenie a farebnú hĺbku"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Grafická karta: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Viac"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Expertný mód"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Zobraz všetko"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rozlíšenia"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Nastavenie klávesnice: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Typ myši: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Port myši: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Horizontálna frekvencia monitoru: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Vertikálna frekvencia monitoru: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Grafická karta: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikácia Grafickej karty: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Grafická pamäť: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Farebná hĺbka: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Rozlíšenie: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 server: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 ovládač: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pripravujem konfiguráciu X-Windows"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Čo chcete robiť?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Zmeň monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Zmeň grafickú kartu"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Zmeň parametre servra"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Zmeň rozlíšenie"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Zobraz informácie"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Skús znova"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Koniec"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zachovať zmeny?\n"
-"Aktuálna konfigurácia je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X pri štarte"
-
-#: ../../Xconfigurator.pm_.c:1604
-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ôžem nastaviť váš počítač aby po reštarte automaticky spúšťal X.\n"
-"Chcete mať spustené X-Windows po reštarte počítača?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Prosím, prihláste sa znova do %s aby ste aktivovali zmeny"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Prosím, odhláste sa a potom stlačte Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 farieb (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisíc farieb (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisíc farieb (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliónov farieb (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardy farieb (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB a viac"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Štandardná VGA, 640×480 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800×600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 kompatibilná, 1024×768 @ 87 Hz prekladane (nie je 800×600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024×768 @ 87 Hz prekladane, 800×600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Rozšírená Super VGA, 800×600 @ 60 Hz, 640×480 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Neprekladaná SVGA, 1024×768 @ 60 Hz, 800×600 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Vysoko frekvenčná SVGA, 1024×768 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Monitor, ktorý dokáže 1280×1024 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Monitor, ktorý dokáže 1280×1024 @ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Monitor, ktorý dokáže 1280×1024 @ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor, ktorý dokáže 1600×1200 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor, ktorý dokáže 1600×1200 @ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Prvý sektor zavádzacieho oddielu"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Prvý sektor disku (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Inštalácia SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Kam si želáte nainštalovať zavádzač?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Inštalácia lilo/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr "LILO s textovym menu"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr "LILO s grafickým menu"
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Štart z DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Hlavné parametre zavádzača"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-msgid "Bootloader to use"
-msgstr "Použiť zavádzač"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Inštalácia zavádzača"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Boot zariadenie"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (nepracuje správne so staršími BIOSmi)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Kompaktná"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "kompaktná"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Video mód"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Pauza pred štartom predvoleného jadra"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Heslo"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Heslo (znovu)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Obmedz voľby príkazového riadku"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "obmedz"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Vyčistiť /tmp pri každom štarte"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Presná veľkosť pamäti (našiel som %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Dovoliť multi profily"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Zadajte veľkosť pamäti v Mb"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Parameter ``Restrict command line options'' je bez použitia hesla vypnutý"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Prosím skúste znovu"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Heslo nesúhlasí"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr "Inicializačná správa"
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr "Open Firmware Delay"
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr "Oneskorenie pre štart kernelu"
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr "Povoliť štart z CD?"
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr "Povoliť štart z OF?"
-
-#: ../../any.pm_.c:206
-msgid "Default OS?"
-msgstr "Predvolený OS?"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Momentálne sa tu nachádzajú tieto záznamy.\n"
-"Môžete pridávať ďalšie, alebo meniť existujúce."
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Pridaj"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Hotovo"
-
-#: ../../any.pm_.c:265
-msgid "Modify"
-msgstr "Modifikovať"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Aký typ záznamu chcete pridať"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Iný OS (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Iný OS (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Iný OS (windows...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Obraz"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Root"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Pridaj"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Čítanie/Zápis"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabuľka"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Nie celkom bezpečný"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Záznam"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Predvoľba"
-
-#: ../../any.pm_.c:326
-msgid "Initrd-size"
-msgstr "Initrd-veľkosť"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr "Bez videa"
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Odstráň záznam"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Prázdny záznam nie je dovolený"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr "Musíte zadať súbor s jadrom"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a root partition"
-msgstr "Musíte nastaviť koreňový oddiel"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Tento záznam je už použitý"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Našiel som %s %s rozhranie"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Máte ešte nejaké ďalšie?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Máte nejaké %s rozhranie?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Nie"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Áno"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Prezrite si informácie o technických prostriedkoch"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Inštalujem ovládač pre %s kartu %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Ktorý %s ovládač mám skúsiť?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Ovládač %s niekedy potrebuje pre správnu činnosť doplnkovú informáciu, aj\n"
-"keď zvyčajne pracuje správne aj bez nej. Želáte si zadať doplnkové voľby,\n"
-"alebo dovolíte ovládaču otestovať váš počítač a údaje si zistiť? Občas sa\n"
-"stane, že toto testovanie počítač zablokuje, ale nemalo by spôsobiť žiadnu "
-"škodu."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Automatické zistenie"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Zadajte voľby"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Teraz môžete zadať parametre pre modul %s.\n"
-"Parametre sú vo formáte ``meno=hodnota meno2=hodnota2 ...''.\n"
-"Napríklad: ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Parametre modulu:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Nahrávanie modulu %s zlyhalo.\n"
-"Chcete sa o to pokúsiť znova s inými parametrami?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr "prístup ku X programom"
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr "prístup ku rpm nástrojom"
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr "dovoliť \"su\""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr "prístup ku konfiguračným súborom"
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(už pridaný %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Toto heslo je príliš jednoduché"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Prosím zadajte užívateľské meno"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Užívateľské meno môže obsahovať len malé písmená, číslice, `-' a `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "Takýto užívateľ je už pridaný"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Pridaj užívateľa"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Zadajte užívateľa\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Akceptuj užívateľa"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Reálne meno"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Užívateľské meno"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikona"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Autologin"
-
-#: ../../any.pm_.c:829
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Môžem nastaviť váš počítač, aby sa po reštarte automaticky prihlásil\n"
-"jeden užívateľ. Želáte si túto možnosť?"
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Zvoľte predvoleného uživateľa:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Vyberte si window manažéra:"
-
-#: ../../any.pm_.c:849
-msgid "Please choose a language to use."
-msgstr "Prosím, zvoľte jazyk, ktorý chcete používať."
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr "Môžete zvoliť ďalšie jazyky použiteľné po inštalácii"
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr "Všetko"
-
-#: ../../any.pm_.c:955
-msgid "Allow all users"
-msgstr "Dovoľ všetkým užívateľom"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Vlastný výber"
-
-#: ../../any.pm_.c:955
-msgid "No sharing"
-msgstr "Bez zdielania"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Je potrebné inštalovať balík %s. Súhlasíte ?"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Zdielanie môže byť cez Sambu alebo NFS. Ktoré si želáte ?"
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Chýba povinný balík %s"
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Zruš"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr "Žiadna"
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr "Veľmi slabá"
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr "Štandardné"
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr "Vysoká"
-
-#: ../../any.pm_.c:1039
-#, fuzzy
-msgid "Higher"
-msgstr "Vysoká"
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr "Paranoidná"
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"Táto úroveň by mala byť používaná opatrne. Zjednodušuje prácu so systémom,\n"
-"ale nemal by byť pripojený k iným počítačom, alebo k internetu. Nie sú\n"
-"totiž používané žiadne heslá."
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Je nastavené používanie hesiel, ale použitie tohoto počítača v sieti nemôžem "
-"doporučiť."
-
-#: ../../any.pm_.c:1047
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Toto je štandardná úroveň bezpečnosti pre počítač, ktorý je používaný\n"
-"pre pripojenie k internetu ako klient."
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-"S touto úrovňou bezpečnosti sa stáva systém použiteľný ako sieťový server."
-
-#: ../../any.pm_.c:1052
-#, fuzzy
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-"Založené na predošlej úrovni, ale systém je úplne uzavretý.\n"
-"Bezpečnosť je na najvyššej možnej úrovni."
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Voľba bezpečnostnej úrovne"
-
-#: ../../any.pm_.c:1061
-msgid "Security level"
-msgstr "Úroveň bezpečnosti"
-
-#: ../../any.pm_.c:1063
-msgid "Use libsafe for servers"
-msgstr "Použi libsafe pre servre"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Knižnica, ktorá bráni proti útokom typu buffer overflow a format string."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Vitajte v zavadzaci operacneho systemu %s!\n"
-"\n"
-"Vyberte si operacy system ktory chcete spusti, alebo \n"
-"cakajte %d sekund pre predvolenu akciu.\n"
-"\n"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Vitajte v zavadzaci operacneho systemu GRUB"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Pouzite klavesy %c a %c pre oznacenie zaznamu zviraznenim"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Stlacte enter pre zavedenie oznaceneho OS, 'e' pre upravu"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "prikazov pred zavedenim, alebo 'c' pre prikazovy riadok"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Oznaceny OS bude zavedeny za %d sekund."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "nie je dosť miesta v /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Desktop"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Štart menu"
-
-#: ../../bootloader.pm_.c:1065
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Na oddiel %s nemôžete nainštalovať zavádzač\n"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "pomoc zatiaľ nebola implementovaná.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Konfigurácia štýlu štartovania"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Súbory"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Súbor/_Koniec"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>K"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr "Nový štýl kategórii monitorov"
-
-#: ../../bootlook.pm_.c:92
-msgid "NewStyle Monitor"
-msgstr "Nový štýl monitora"
-
-#: ../../bootlook.pm_.c:93
-msgid "Traditional Monitor"
-msgstr "Štandardný monitor"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr "Štandardný Gtk+ monitor"
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Spustiť Auroru pri štarte"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr "Lilo/Grub mód"
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr "Yaboot mód"
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Momentálne používate %s ako štartovací manažér.\n"
-"Kliknite na Konfigurácia pre spustenie sprievodcu nastavením."
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-msgid "Configure"
-msgstr "Konfigurácia"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Mód systému"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Spustiť X-Window systém pri štarte"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Nie, nechcem automatické prihlásenie"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Áno, chcem automatické prihlásenie s (uživateľ, desktop)"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "OK"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "nemôžem otvoriť /etc/inittab na čítanie: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minút"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minúta"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekúnd"
-
-#: ../../common.pm_.c:159
-msgid "Can't make screenshots before partitioning"
-msgstr "Nemôžem robiť kópie obrazovky pred rozdelením disku"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Kópie obrazovky budú po inštalácii dostupné v %s"
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-msgid "France"
-msgstr "Francúzsko"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr "Kostarika"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr "Belgicko"
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr "Česká republika"
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr "Nemecko"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Greece"
-msgstr "Grécko"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr "Nórsko"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr "Švédsko"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr "Holandsko"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-msgid "Italy"
-msgstr "Taliansko"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr "Rakúsko"
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr "Spojené štáty"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Prosím, najprv si za zálohujte vaše dáta"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Čítajte pozorne!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Ak plánujete použiť ABOOT, nechajte prosím na začiatku disku dosť voľného "
-"miesta.\n"
-"(2048 sektorov bude stačiť)"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Chyba"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Sprievodca"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Zvoľ akciu"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Máte jeden veľký FAT diskový oddiel\n"
-"(používaný MS DOSom alebo WINDOWS).\n"
-"Navrhujem zmeniť jeho veľkosť\n"
-"(kliknite naň, potom kliknite na \"Zmeň veľkosť\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Prosím kliknite na oddiel"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Detaily"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Journalised FS"
-msgstr "Žurnálovací súborový systém"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Prázdna"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Iná"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Typ súborového systému:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Vytvor"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Typ"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Namiesto toho použite `%s''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Zruš"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Najprv spravte `Unmount''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Po zmene diskovej oblasti %s budú všetky dáta na tejto oblasti nenávratne "
-"stratené"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose a partition"
-msgstr "Zvoľte oddiel"
-
-#: ../../diskdrake/interactive.pm_.c:171
-msgid "Choose another partition"
-msgstr "Zvoľte iný oddiel"
-
-#: ../../diskdrake/interactive.pm_.c:196
-msgid "Exit"
-msgstr "Koniec"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Prepni do expert módu"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Prepni do normálneho módu"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Späť"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Pokračovať?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Koniec bez uloženia"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Koniec bez zmeny partition tabuľky?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Želáte si uložiť zmeny do /etc/fstab"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Automaticky prerozdeľ"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Zmaž všetko"
-
-#: ../../diskdrake/interactive.pm_.c:262
-msgid "Hard drive information"
-msgstr "Informácie o pevnom disku"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Všetky primárne oddiely sú už použité"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Nemôžem pridať ďalší oddiel"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Ak chcete mať viac diskových oddielov, tak zmažte jeden z nich, aby sa dal "
-"vytvoriť rozšírený oddiel disku"
-
-#: ../../diskdrake/interactive.pm_.c:295
-msgid "Save partition table"
-msgstr "Ulož tabuľku rozdelenia disku"
-
-#: ../../diskdrake/interactive.pm_.c:296
-msgid "Restore partition table"
-msgstr "Obnov tabuľku rozdelenia disku"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Obnoviť tabuľku rozdelenia disku"
-
-#: ../../diskdrake/interactive.pm_.c:299
-msgid "Reload partition table"
-msgstr "Znovunačítať tabuľku rozdelenia disku"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr "Automatické pripojenie vymeniteľného média"
-
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
-msgid "Select file"
-msgstr "Vyber súbor"
-
-#: ../../diskdrake/interactive.pm_.c:320
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Záložná tabuľka rozdelenia disku nemá rovnakú veľkosť\n"
-"Naozaj pokračovať?"
-
-#: ../../diskdrake/interactive.pm_.c:334
-msgid "Warning"
-msgstr "Varovanie"
-
-#: ../../diskdrake/interactive.pm_.c:335
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Vložte disketu do mechaniky\n"
-"Všetky dáta na tejto diskete budú nenávratne stratené"
-
-#: ../../diskdrake/interactive.pm_.c:346
-msgid "Trying to rescue partition table"
-msgstr "Pokúšam sa obnoviť partition tabuľku"
-
-#: ../../diskdrake/interactive.pm_.c:352
-msgid "Detailed information"
-msgstr "Detailné informácie"
-
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
-msgid "Mount point"
-msgstr "Bod pripojenia"
-
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
-msgid "Options"
-msgstr "Parametre"
-
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
-msgid "Resize"
-msgstr "Zmeň veľkosť"
-
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
-msgid "Move"
-msgstr "Presuň"
-
-#: ../../diskdrake/interactive.pm_.c:369
-msgid "Format"
-msgstr "Formát"
-
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
-msgid "Mount"
-msgstr "Pripoj"
-
-#: ../../diskdrake/interactive.pm_.c:371
-msgid "Add to RAID"
-msgstr "Pridaj do RAID"
-
-#: ../../diskdrake/interactive.pm_.c:372
-msgid "Add to LVM"
-msgstr "Pridaj do LVM"
-
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
-msgid "Unmount"
-msgstr "Odpoj"
-
-#: ../../diskdrake/interactive.pm_.c:375
-msgid "Remove from RAID"
-msgstr "Odober z RAID"
-
-#: ../../diskdrake/interactive.pm_.c:376
-msgid "Remove from LVM"
-msgstr "Odober z LVM"
-
-#: ../../diskdrake/interactive.pm_.c:377
-msgid "Modify RAID"
-msgstr "Modifikuj RAID"
-
-#: ../../diskdrake/interactive.pm_.c:378
-msgid "Use for loopback"
-msgstr "Použi loopback"
-
-#: ../../diskdrake/interactive.pm_.c:417
-msgid "Create a new partition"
-msgstr "Vytvor nový oddiel"
-
-#: ../../diskdrake/interactive.pm_.c:420
-msgid "Start sector: "
-msgstr "Počiatočný sektor:"
-
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
-msgid "Size in MB: "
-msgstr "Veľkosť v MB: "
-
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
-msgid "Filesystem type: "
-msgstr "Typ súborového systému: "
-
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
-msgid "Mount point: "
-msgstr "Bod pripojenia: "
-
-#: ../../diskdrake/interactive.pm_.c:428
-msgid "Preference: "
-msgstr "Preferencia: "
-
-#: ../../diskdrake/interactive.pm_.c:472
-msgid "Remove the loopback file?"
-msgstr "Odstrániť loopback súbor?"
-
-#: ../../diskdrake/interactive.pm_.c:497
-msgid "Change partition type"
-msgstr "Zvoľte typ oddielu"
-
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Aký typ súborového systému chcete??"
-
-#: ../../diskdrake/interactive.pm_.c:502
-msgid "Switching from ext2 to ext3"
-msgstr "Prepínam z ext2 na ext3"
-
-#: ../../diskdrake/interactive.pm_.c:532
-#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Kam si želáte pripojiť loopback súbor %s?"
-
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Kam si želáte pripojiť zariadenie %s?"
-
-#: ../../diskdrake/interactive.pm_.c:539
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Nemôžem odpojiť oddiel kým je používaný nejakou spätnou slučkou.\n"
-"Odstráňte najskôr spätnú slučku"
-
-#: ../../diskdrake/interactive.pm_.c:577
-msgid "Computing FAT filesystem bounds"
-msgstr "Počítam hranice FAT súborového systému"
-
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
-msgid "Resizing"
-msgstr "Mením veľkosť"
-
-#: ../../diskdrake/interactive.pm_.c:609
-msgid "This partition is not resizeable"
-msgstr "Tomuto oddielu sa nedá meniť veľkosť?"
-
-#: ../../diskdrake/interactive.pm_.c:614
-msgid "All data on this partition should be backed-up"
-msgstr "Všetky dáta na tejto oblasti by sa mali zazálohovať"
-
-#: ../../diskdrake/interactive.pm_.c:616
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Po zmene veľkosti oddielu %s budú všetky dáta nenávratne stratené"
-
-#: ../../diskdrake/interactive.pm_.c:621
-msgid "Choose the new size"
-msgstr "Zvolte novú veľkosť"
-
-#: ../../diskdrake/interactive.pm_.c:622
-msgid "New size in MB: "
-msgstr "Nová veľkosť v MB: "
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "Which disk do you want to move it to?"
-msgstr "Ktorý disk si želáte posunúť?"
-
-#: ../../diskdrake/interactive.pm_.c:676
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../diskdrake/interactive.pm_.c:677
-msgid "Which sector do you want to move it to?"
-msgstr "Ktorý sektor si želáte posunúť?"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving"
-msgstr "Presúvam"
-
-#: ../../diskdrake/interactive.pm_.c:680
-msgid "Moving partition..."
-msgstr "Presúvam oddiel..."
-
-#: ../../diskdrake/interactive.pm_.c:697
-msgid "Choose an existing RAID to add to"
-msgstr "Vyberte existujúci RAID pre pridanie"
-
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
-msgid "new"
-msgstr "nový"
-
-#: ../../diskdrake/interactive.pm_.c:714
-msgid "Choose an existing LVM to add to"
-msgstr "Vyberte existujúci LVM pre pridanie"
-
-#: ../../diskdrake/interactive.pm_.c:719
-msgid "LVM name?"
-msgstr "LVM meno?"
-
-#: ../../diskdrake/interactive.pm_.c:759
-msgid "This partition can't be used for loopback"
-msgstr "Tento oddiel nemôže byť použitý pre spätnú slučku"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "Loopback"
-msgstr "Spätná slučka"
-
-#: ../../diskdrake/interactive.pm_.c:772
-msgid "Loopback file name: "
-msgstr "Meno súboru spätnej slučky: "
-
-#: ../../diskdrake/interactive.pm_.c:777
-msgid "Give a file name"
-msgstr "Zadajte meno súboru"
-
-#: ../../diskdrake/interactive.pm_.c:780
-msgid "File already used by another loopback, choose another one"
-msgstr "Súbor je už používaný inou spätnou slučkou, skúste iný súbor"
-
-#: ../../diskdrake/interactive.pm_.c:781
-msgid "File already exists. Use it?"
-msgstr "Súbor existuje. Použiť?"
-
-#: ../../diskdrake/interactive.pm_.c:804
-msgid "Mount options"
-msgstr "Parametre pripojenia"
-
-#: ../../diskdrake/interactive.pm_.c:811
-msgid "Various"
-msgstr "Rozdielne"
-
-#: ../../diskdrake/interactive.pm_.c:874
-msgid "device"
-msgstr "zariadenie"
-
-#: ../../diskdrake/interactive.pm_.c:875
-msgid "level"
-msgstr "úroveň"
-
-#: ../../diskdrake/interactive.pm_.c:876
-msgid "chunk size"
-msgstr "veľkosť"
-
-#: ../../diskdrake/interactive.pm_.c:891
-msgid "Be careful: this operation is dangerous."
-msgstr "Buďte opatrní: táto operácia je nebezpečná."
-
-#: ../../diskdrake/interactive.pm_.c:906
-msgid "What type of partitioning?"
-msgstr "Aký typ rozdelenia oddielov?"
-
-#: ../../diskdrake/interactive.pm_.c:924
-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 ""
-"Prepáčte, ale nemôžem akceptovať vytvorenie /boot tak ďaleko na disku (na "
-"valci > 1024).\n"
-")Používate LILO a tým pádom to nebude pracovať, alebo ho nepoužívate a tým "
-"pádom nepotrebujete /boot"
-
-#: ../../diskdrake/interactive.pm_.c:928
-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 ""
-"Oddiel, ktorý chcete pridať ako root (/) sa na disku fyzicky nachádza až za "
-"valcom 1024, a nemáte zadefinovaný oddiel /boot. \n"
-"Ak plánujete použiť LILO, prosím pridajte najprv oddiel /boot"
-
-#: ../../diskdrake/interactive.pm_.c:934
-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 ""
-"Nastavili ste softvérový RAID oddiel ako koreňový (/).\n"
-"Žiaden zavádzač systému nedokáže zaviesť systém bez /boot oddielu.\n"
-"Preto dbajte na pridanie /boot oddielu"
-
-#: ../../diskdrake/interactive.pm_.c:954
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Partition tabuľka zariadenia %s sa zapíše na disk!"
-
-#: ../../diskdrake/interactive.pm_.c:958
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Aby sa úpravy prejavili, musíte reštartovať počítač"
-
-#: ../../diskdrake/interactive.pm_.c:969
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Ak naformátujete oddiel %s,všetky predošlé dáta sa na ňom stratia"
-
-#: ../../diskdrake/interactive.pm_.c:971
-msgid "Formatting"
-msgstr "Formátuje sa"
-
-#: ../../diskdrake/interactive.pm_.c:972
-#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Formátuje sa loopback súbor %s"
-
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formátuje sa oddiel %s"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Hide files"
-msgstr "Skryté súbory"
-
-#: ../../diskdrake/interactive.pm_.c:984
-msgid "Move files to the new partition"
-msgstr "Prenes súbory na nový oddiel"
-
-#: ../../diskdrake/interactive.pm_.c:985
-#, c-format
-msgid ""
-"Directory %s already contain some data\n"
-"(%s)"
-msgstr ""
-"Adresár %s už obsahuje nejaké dáta\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:996
-msgid "Moving files to the new partition"
-msgstr "Prenos súborov na nový oddiel"
-
-#: ../../diskdrake/interactive.pm_.c:1000
-#, c-format
-msgid "Copying %s"
-msgstr "Kopírujem %s"
-
-#: ../../diskdrake/interactive.pm_.c:1004
-#, c-format
-msgid "Removing %s"
-msgstr "Odstraňujem %s"
-
-#: ../../diskdrake/interactive.pm_.c:1014
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "oddiel %s sa teraz volá %s"
-
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
-msgid "Device: "
-msgstr "Zariadenie:"
-
-#: ../../diskdrake/interactive.pm_.c:1036
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Označenie v DOSe: %s (asi)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Type: "
-msgstr "Typ: "
-
-#: ../../diskdrake/interactive.pm_.c:1044
-msgid "Name: "
-msgstr "Meno: "
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Začiatok: sektor %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1053
-#, c-format
-msgid "Size: %s"
-msgstr "Veľkosť: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1055
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektorov"
-
-#: ../../diskdrake/interactive.pm_.c:1057
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Od cylindra %d po cylinder %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1058
-msgid "Formatted\n"
-msgstr "Naformátované\n"
-
-#: ../../diskdrake/interactive.pm_.c:1059
-msgid "Not formatted\n"
-msgstr "Nenaformátované\n"
-
-#: ../../diskdrake/interactive.pm_.c:1060
-msgid "Mounted\n"
-msgstr "Pripojené\n"
-
-#: ../../diskdrake/interactive.pm_.c:1061
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1063
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Loopback súbor(y):\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Predvolený oddiel pre štart\n"
-" (MS-DOS boot, nie pre lilo)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1066
-#, c-format
-msgid "Level %s\n"
-msgstr "Hladina %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1067
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Veľkosť kúsku %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1068
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-disky %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1070
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Meno loopback súboru: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1073
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Možnosti sú, tento oddiel je\n"
-"ovládaci oddiel, mali by ste\n"
-"ho nechcať samotný.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1076
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Tento špecialny Bootstrap\n"
-"oddiel je pre\n"
-"duálne štartovanie systému.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1095
-#, c-format
-msgid "Size: %s\n"
-msgstr "Veľkosť: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1096
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometria: %s cylindrov, %s hlavičiek, %s sektorov\n"
-
-#: ../../diskdrake/interactive.pm_.c:1097
-msgid "Info: "
-msgstr "Info:"
-
-#: ../../diskdrake/interactive.pm_.c:1098
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-disky %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1099
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Typ partition tabuľky: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
-msgstr "na zbernici %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1114
-#, c-format
-msgid "Options: %s"
-msgstr "Možnosti: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1130
-msgid "Filesystem encryption key"
-msgstr "Kryptovací kľúč súborového systému"
-
-#: ../../diskdrake/interactive.pm_.c:1131
-msgid "Choose your filesystem encryption key"
-msgstr "Zvoľte kryptovací kľúč súborového systému"
-
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Tento kryptovací kľúč je príliš jednoduchý (musí byť minimálne %d znakov "
-"dlhé)"
-
-#: ../../diskdrake/interactive.pm_.c:1135
-msgid "The encryption keys do not match"
-msgstr "kryptovacie kľúče nesúhlasia"
-
-#: ../../diskdrake/interactive.pm_.c:1138
-msgid "Encryption key"
-msgstr "Kryptovací kľúč"
-
-#: ../../diskdrake/interactive.pm_.c:1139
-msgid "Encryption key (again)"
-msgstr "Kryptovací kľúč (znovu)"
-
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Zmeňte typ"
-
-#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
-msgstr "Prosím kliknite na médium"
-
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
-#, fuzzy
-msgid "Search servers"
-msgstr "DNS server"
-
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formátovanie %s zlyhalo"
-
-#: ../../fs.pm_.c:548
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Nedokážem formátovať %s na typ %s"
-
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
-
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck zlyhalo s exit kódom %d alebo signálom %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "chyba odpojenia %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "jednoduché"
-
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
-
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "server"
-
-#: ../../fsedit.pm_.c:467
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Na oddiely menšie ako 16MB nemôžete použiť JFS"
-
-#: ../../fsedit.pm_.c:468
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Na oddiely menšie ako 32MB nemôžete použiť ReiserFS"
-
-#: ../../fsedit.pm_.c:477
-msgid "Mount points must begin with a leading /"
-msgstr "Body pripojenia musia začínať /"
-
-#: ../../fsedit.pm_.c:478
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Oddiel s bodom pripojenia %s už existuje\n"
-
-#: ../../fsedit.pm_.c:482
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Nemôžete použiť logický zväzok LVM pre bod pripojenia %s"
-
-#: ../../fsedit.pm_.c:484
-msgid "This directory should remain within the root filesystem"
-msgstr "Tento adresár by mal ostať na rootovskom súborovom systéme"
-
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
-msgstr ""
-"Pre tento bod pripojenia potrebujete ozajstný súborový systém(ext2, "
-"reiserfs)\n"
-
-#: ../../fsedit.pm_.c:488
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Nemôžete použiť kryptovaný súborový systém pre bod pripojenia %s"
-
-#: ../../fsedit.pm_.c:546
-msgid "Not enough free space for auto-allocating"
-msgstr "Nedostatok miesta pre automatickú alokáciu"
-
-#: ../../fsedit.pm_.c:548
-msgid "Nothing to do"
-msgstr "Nerobiť nič"
-
-#: ../../fsedit.pm_.c:612
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Chyba otvárania %s pre zápis: %s"
-
-#: ../../fsedit.pm_.c:697
-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 ""
-"Vyskytla sa chyba - neboli nájdené žiadne platné zariadenia, na ktorých je "
-"možné vytvoriť nové súborové systémy. Skontrolujte váš hardvér pre zistenie "
-"príčiny problému."
-
-#: ../../fsedit.pm_.c:720
-msgid "You don't have any partitions!"
-msgstr "Nemáte žiadny oddiel disku!"
-
-#: ../../help.pm_.c:13
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more. But unlike \"root\", which is the administrator, the users\n"
-"you will add here will not be entitled to change anything except their own\n"
-"files and their own configuration. You will have to create at least one\n"
-"regular user for yourself. That account is where you should log in for\n"
-"routine use. Although it is very practical to log in as \"root\" everyday,\n"
-"it may also be very dangerous! The slightest mistake could mean that your\n"
-"system would not work any more. If you make a serious mistake as a regular\n"
-"user, you may only lose some information, but not the entire system.\n"
-"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
-"as you can actually enter whatever you want. DrakX will then take the first\n"
-"word you have entered in the box and will bring it over to the \"User\n"
-"name\". This is the name this particular user will use to log onto the\n"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
-"from a security point of view, but that is no reason to neglect it: after\n"
-"all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of your friends: your father or your sister, for\n"
-"example. When you finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default)."
-msgstr ""
-
-#: ../../help.pm_.c:41
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a partition for \"/home\"\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: ../../help.pm_.c:72
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM and will eject the\n"
-"current CD and ask you to insert a different one as required."
-msgstr ""
-
-#: ../../help.pm_.c:77
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
-"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
-"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
-"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
-"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you deselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"With X\": install the fewer packages possible to have a working\n"
-"graphical desktop;\n"
-"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
-"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
-"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
-"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:128
-msgid ""
-"Finally, depending on whether or not you selected individual packages, you\n"
-"will be presented a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An estimate of the time it will take to\n"
-"install everything is displayed on the screen, to help you gauge if there\n"
-"is sufficient time to enjoy a cup of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
-"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of last step on how to create such\n"
-"a floppy."
-msgstr ""
-
-#: ../../help.pm_.c:164
-msgid ""
-"You are now proposed to set up your Internet/network connection. If you\n"
-"wish to connect your computer to the Internet or to a local network, click\n"
-"\"OK\". The autodetection of network devices and modem will be launched. If\n"
-"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
-"may also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
-"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
-"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
-"\n"
-"You can consult the ``User Guide'' chapter about Internet connections for\n"
-"details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:186
-#, fuzzy
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are presented all the services available with the current\n"
-"installation. Review them carefully and uncheck those which are not always\n"
-"needed at boot time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Teraz by ste mali zvoliť služby, ktoré chcete spúšťať pri štarte.\n"
-"\n"
-"\n"
-"Ak plánujete používať tento počítač ako server prístupný z internetu, mali "
-"by ste\n"
-"povoliť iba služby ktoré naozaj potrebujete. "
-
-#: ../../help.pm_.c:203
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
-"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:217
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely. In this section, DrakX\n"
-"will try to configure X automatically.\n"
-"\n"
-"It is extremely rare for it to fail, unless the hardware is very old (or\n"
-"very new). If it succeeds, it will start X automatically with the best\n"
-"resolution possible, depending on the size of the monitor. A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen."
-msgstr ""
-
-#: ../../help.pm_.c:237
-msgid ""
-"The first time you try the X configuration, you may not be very satisfied\n"
-"with its display (screen is too small, shifted left or right...). Hence,\n"
-"even if X starts up correctly, DrakX then asks you if the configuration\n"
-"suits you. It will also propose to change it by displaying a list of valid\n"
-"modes it could find, asking you to select one.\n"
-"\n"
-"As a last resort, if you still cannot get X to work, choose \"Change\n"
-"graphics card\", select \"Unlisted card\", and when prompted on which\n"
-"server, choose \"FBDev\". This is a failsafe option which works with any\n"
-"modern graphics card. Then choose \"Test again\" to be sure."
-msgstr ""
-
-#: ../../help.pm_.c:249
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:256
-msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-msgstr ""
-
-#: ../../help.pm_.c:280
-#, fuzzy
-msgid ""
-"At this point, you need to choose where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space, you will\n"
-"need to partition it. Basically, partitioning a hard drive consists of\n"
-"logically dividing it to create space to install your new Mandrake Linux\n"
-"system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``User Guide''.\n"
-"From the installation interface, you can use the wizards as described here\n"
-"by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available:\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
-"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option;\n"
-"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
-"be performed without the loss of any data, provided you previously\n"
-"defragment the Windows partition. Backing up your data won't hurt either..\n"
-"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
-"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
-msgstr ""
-"Teraz môžete zvoliť, kam si želáte inštalovať Linux Mandrake.\n"
-"Ak je pevný disk prázdny, alebo ak iný operačný systém zaberá\n"
-"všetok použiteľný priestor, treba disk rozdeliť.\n"
-"\n"
-"\n"
-"Pretože je efekt rozdelovacieho procesu nenávratný, prerozdelenie\n"
-"disku môže byt pre neskúsených užívateľov stresujúce. Tento nástroj\n"
-"rozdeľovanie disku zjednodušuje.\n"
-"\n"
-"\n"
-"Potrebujete minimálne dva oddiely. Jeden pre operačný systém a jeden\n"
-"pre virtuálnu pamäť (tiež nazývaný swap)."
-
-#: ../../help.pm_.c:347
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
-"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
-"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../help.pm_.c:378
-#, fuzzy
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"any of it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
-msgstr ""
-"Každý novo definovaný diskový oddiel musí byť naformátovaný.\n"
-"Formátovanie znamená vytváranie súborového systému.\n"
-"\n"
-"\n"
-"Teraz môžete zvoliť, či si želáte formátovať existujúce oddiely aby ste "
-"odstránili\n"
-"dáta, ktoré sa na nich nachádzajú. Ak si to želáte, zvoľte prosím oddiely, "
-"ktoré\n"
-"si želáte formátovať.\n"
-"\n"
-"\n"
-"Nieje nutné opätovne formátovať všetky existujúce oddiely. Určite musíte\n"
-"formátovať oddiely obsahujúce operačný systém (napríklad \"/\", \"/usr\",\n"
-"alebo \"/var\" ). Nemusíte však formátovať oddiely obsahujúce dáta, ktoré\n"
-"chcete zachovať (typicky \"/home\")\n"
-"\n"
-"\n"
-"Pri voľbe oddielov na formátovanie buďte opatrný. Všetky dáta na "
-"formátovanom\n"
-"oddiely budú nenávratne stratené.\n"
-"\n"
-"\n"
-"Kliknite na \"OK\" ak ste pripravený formátovať vybrané oddiely. \n"
-"\n"
-"\n"
-"Kliknite na \"Zruš\" ak chcete zvoliť iné oddiely pre inštaláciu."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
-msgstr ""
-"Teraz sa inštaluje váš nový operačný systém Linux Mandrake.\n"
-"V závislosti na množstve balíčkov a rýchlosti vášho počítača\n"
-"môže táto operácia trvať od niekoľkých minút až po rádovo hodiny.\n"
-"\n"
-"Prosím buďte trpezlivý."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now proposed to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
-"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms in it, click on the \"Refuse\" button which will immediately\n"
-"terminate the installation. To continue with the installation, click on the\n"
-"\"Accept\" button."
-msgstr ""
-"Pred tým, než budete pokračovať, mali by ste si pozorne prečítať\n"
-"licenčné podmienky. Pokrývajú celú distribúciu Linux Mandrake\n"
-"a ak nesúhlasíte so všetkými z nich kliknite na tlačitlo \"Odmietni\".\n"
-"To okamžite ukončí inštaláciu. Pre pokračovanie v inštalácii\n"
-"stlačte tlačidlo \"Akceptuj\"."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
-"to get more information about the meaning of these levels.\n"
-"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-
-#: ../../help.pm_.c:442
-msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
-"\n"
-" * \"Auto allocate\": this option enables to automatically create \"Ext2\"\n"
-"and swap partitions in free space of your hard drive;\n"
-"\n"
-" * \"More\": gives access to additional features:\n"
-"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
-"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from floppy disk;\n"
-"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
-"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
-"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
-"CD-ROMs.\n"
-"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
-"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
-"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
-"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
-"\n"
-"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"
-"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2fs chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
-msgstr ""
-
-#: ../../help.pm_.c:513
-msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
-"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Prosím buďte trpezlivý. Táto operácia môže trvať niekoľko minút."
-
-#: ../../help.pm_.c:547
-#, fuzzy
-msgid ""
-"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
-"installation or if you want to have greater control (\"Expert\"). You can\n"
-"also choose to do a new install or an upgrade of an existing Mandrake Linux\n"
-"system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. In fact, depending on\n"
-"what currently holds your machine, you will be able to keep some old (Linux\n"
-"or other) partitions unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
-"existing Mandrake Linux system while keeping all system configurations\n"
-"unchanged. Adding new packages to the current installation is also\n"
-"possible.\n"
-"\n"
-"Upgrades should work fine for Mandrake Linux systems starting from \"8.1\"\n"
-"release.\n"
-"\n"
-"Depending on your knowledge of GNU/Linux, select one of the following\n"
-"choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good knowledge of GNU/Linux, you can choose this\n"
-"installation class. The expert installation will allow you to perform a\n"
-"highly-customized installation. Answering some of the questions can be\n"
-"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
-"choose this unless you know what you are doing."
-msgstr ""
-"Prosím zvoľte \"Install\" ak nemáte nainštalovanú predošlú verziu Mandrake "
-"Linux-u\n"
-"alebo ak chcete používať viac operačných systémov.\n"
-"\n"
-"\n"
-"Prosím zvoľte \"Update\" ak si želáte obnoviť už nainštalovanú staršiu "
-"verziu Mandrake Linux-u.\n"
-"\n"
-"\n"
-"V závislosti od vašich skúseností s GNU/Linux-om môžete zvolit jednu z "
-"nasledujúcich úrovní inštalácie\n"
-"\n"
-"* Recommended: Ak ste ešte nikdy neinštalovali GNU/Linux, zvoľte túto "
-"možnosť. Inštalácia bude\n"
-" veľmi jednoduchá a budete musieť odpovedať len na niekoľko otázok.\n"
-"\n"
-"\n"
-"* Customized: ak ste sa už s GNU/Linux-om stretli, môžete si zvoliť základné "
-"použitie vášho počítača \n"
-" (pracovná stanica, server, vývojová stanica). Budete tiež musieť odpovedať "
-"na viac otázok ako pri \n"
-" Recomended úrovni inštalácie.\n"
-"\n"
-"\n"
-"* Expert: Ak máte naozaj dostatočné skúsenosti s GNU/Linux-om, môžete zvoliť "
-"túto triedu inštalácie.\n"
-" Tak ako v Customized si budete môcť zvoliť základné použitie vášho počítača "
-"(pracovná stanica, server,\n"
-" vývojová stanica). Budete mať možnosť ovplyvniť mnoho detailov inštalácie "
-"ale môže sa Vám stať, že \n"
-" nebudete vedieť odpovedať na niektoré otázky. Preto nepoužívajte túto "
-"úroveň inštalácie pokiaľ sa v \n"
-" GNU/Linux-e naozaj nevyznáte."
-
-#: ../../help.pm_.c:583
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen) and you won't even see this step. However, you\n"
-"might not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may still want\n"
-"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
-"located in Quebec, you may find yourself in the same situation. In both\n"
-"cases, you will have to go back to this installation step and select an\n"
-"appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards."
-msgstr ""
-
-#: ../../help.pm_.c:596
-msgid ""
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you will host users from Spain on your\n"
-"machine, select English as the main language in the tree view and in the\n"
-"Advanced section click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue."
-msgstr ""
-
-#: ../../help.pm_.c:609
-msgid ""
-"DrakX generally detects the number of buttons your mouse has. If not, it\n"
-"assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again."
-msgstr ""
-
-#: ../../help.pm_.c:623
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Prosím zvoľte správny port. Napríklad COM1 pod MS Windows sa v\n"
-"GNU/Linux nazýva ttyS0."
-
-#: ../../help.pm_.c:627
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"root\" is the system\n"
-"administrator and is the only one authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
-"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
-"\n"
-"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
-"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
-"network administrator.\n"
-"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:663
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds here:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu).\n"
-"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface.\n"
-"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
-"\n"
-" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
-"another boot entry than the default one.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved to the expert user.\n"
-"\n"
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
-"installation step."
-msgstr ""
-
-#: ../../help.pm_.c:711
-msgid ""
-"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
-"either GNU/Linux or any other operating system present on your computer.\n"
-"Normally, these other operating systems are correctly detected and\n"
-"installed. If this is not the case, you can add an entry by hand in this\n"
-"screen. Be careful to choose the correct parameters.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone. In which case, you can delete the corresponding entries. But then,\n"
-"you will need a boot disk in order to boot those other operating systems!"
-msgstr ""
-
-#: ../../help.pm_.c:722
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"to GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Musíte sa rozhodnúť, kam umiestniť informácie potrebné pre spustenie\n"
-"systému.\n"
-"Pokiaľ presne neviete čo robiť zvoľte \"Prvý sektor disku (MBR)\"."
-
-#: ../../help.pm_.c:729
-msgid ""
-"Here, we select a printing system for your computer. Other OSs may offer\n"
-"you one, but Mandrake Linux offers three.\n"
-"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
-"printer jams, and you do not have networked printers. It will handle only\n"
-"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
-"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
-"after installation by running PrinterDrake from the Mandrake Control Center\n"
-"and clicking the expert button.\n"
-"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
-"graphical front-ends for printing or choosing printer options.\n"
-"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
-"approximately the same things the others can do, but it will print to\n"
-"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
-"and it can print directly to shell commands. If you have need of Novell or\n"
-"printing to commands without using a separate pipe construct, use lprNG.\n"
-"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
-"networks."
-msgstr ""
-
-#: ../../help.pm_.c:757
-#, fuzzy
-msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented a list of SCSI cards to choose from. Click \"No\" if you have\n"
-"no SCSI hardware. If you are unsure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info\" and clicking\n"
-"\"OK\". Examine the list of hardware and then click on the \"OK\" button to\n"
-"return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to provide options to the driver manually. Please review the\n"
-"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
-"Hardware'' section) for hints on retrieving the parameters required from\n"
-"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
-"Windows on your system)."
-msgstr ""
-"DrakX sa pokúsi vyhľadať PCI SCSI radiče. Ak DrakX nájde SCSI\n"
-"adaptér a rozpozná aký ovládač použiť, bude automaticky nainštalovaný.\n"
-"\n"
-"\n"
-"Ak nemáte SCSI radič, alebo máte (ISA, PCI) SCSI adaptér, ktorý DrakX\n"
-"nerozoznal. Budete musieť odpovedať či máte SCSI radič. V prípade, že\n"
-"zvolíte Áno, zobrazí sa zoznam ovládačov z ktorých si budete môcť \n"
-"vybrať vhodný pre váš SCSI radič.\n"
-"\n"
-"\n"
-"V prípade, že budete sami vyberať vhodný ovládač, DrakX vám dá možnosť\n"
-"špecifikovať jeho parametre. Taktiež budete musieť dovoliť test hardvéru\n"
-"na funkčnosť ovládača a jeho parametrov."
-
-#: ../../help.pm_.c:784
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\n"
-"For Linux, there are a few possible options:\n"
-"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
-"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
-"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
-"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
-"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
-"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
-"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
-"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:830
-msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\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"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-
-#: ../../help.pm_.c:862
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
-"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time;\n"
-"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time;\n"
-"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with it."
-msgstr ""
-
-#: ../../help.pm_.c:891
-msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
-msgstr ""
-
-#: ../../help.pm_.c:896
-msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to cancel this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-
-#: ../../install2.pm_.c:113
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-
-#: ../../install2.pm_.c:169
-#, c-format
-msgid "You must also format %s"
-msgstr "Taktiež musíte naformátovať %s"
-
-#: ../../install_any.pm_.c:411
-#, 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 ""
-"Zvolili ste nasledujúce služby: %s\n"
-"\n"
-"\n"
-"Tieto služby sa spúšťajú implicitne. Momentálne nemajú žiadne známe "
-"bezpečnostné\n"
-"chyby, ale v budúcnosti nejaké môžu byť nájdené. V tom prípade musíte prejsť "
-"na\n"
-"vyššiu verziu čo najskôr.\n"
-"\n"
-"\n"
-"Naozaj si želáte inštalovať tieto služby?\n"
-
-#: ../../install_any.pm_.c:447
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Nemôžem použiť broadcast bez NIS domény"
-
-#: ../../install_any.pm_.c:793
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Vložte disketu s FAT formátom do mechaniky %s"
-
-#: ../../install_any.pm_.c:797
-msgid "This floppy is not FAT formatted"
-msgstr "Táto disketa nemá FAT format"
-
-#: ../../install_any.pm_.c:809
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Pre použitie tohto uloženého výberu balíčkov, naštartujte inštaláciu s "
-"``linux defcfg=floppy''"
-
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
-#, c-format
-msgid "Error reading file %s"
-msgstr "chyba pri čítaní zo súboru %s"
-
-#: ../../install_interactive.pm_.c:23
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Nejaky hardware vo vašom počítači potrebuje ``proprietarne'' ovládače.\n"
-"Informácie môžete nájsť na: %s"
-
-#: ../../install_interactive.pm_.c:58
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Musíte mať koreňový oddiel.\n"
-"Vytvorte oddiel (alebo kliknite na existujúcu).\n"
-"Potom zvoľte akciu ``Bod pripojenia`` a nastavte na `/'"
-
-#: ../../install_interactive.pm_.c:63
-msgid "You must have a swap partition"
-msgstr "Musíte nastaviť swap oddiel"
-
-#: ../../install_interactive.pm_.c:64
-msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Nevytvorili ste swap oddiel\n"
-"\n"
-"Napriek tomu pokračovať?"
-
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Musíte mať FAT oddiel pripojený na /boot/efi"
-
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Použi voľné miesto"
-
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nedostatok voľného miesta pre vytvorenie nového oddielu"
-
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
-msgstr "Použi existujúci oddiel"
-
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Tu nieje žiadny použiteľný oddiel"
-
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Použi oddiel s Windows pre loopback"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Ktorý oddiel chcete použiť pre Linux4Win?"
-
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Zvoľte veľkosti"
-
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Veľkosť koreňového oddielu v MB: "
-
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Veľkosť oddielu v MB: "
-
-#: ../../install_interactive.pm_.c:125
-msgid "Use the free space on the Windows partition"
-msgstr "Použi voľné miesto na Windows oddiele"
-
-#: ../../install_interactive.pm_.c:128
-msgid "Which partition do you want to resize?"
-msgstr "Ktorému oddielu chcete zmeniť veľkosť?"
-
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
-msgstr "Počítam hranice súborového systému pre Windows"
-
-#: ../../install_interactive.pm_.c:133
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Menič veľkosti FAT nebol schopny pracovať s oddielom, \n"
-"nastala chyba: %s"
-
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
-msgstr ""
-"Vaš oddiel s Windows je veľmi fragmentovaný, prosím spustite najprv "
-"``defrag''"
-
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"POZOR!\n"
-"\n"
-"DrakX teraz ide zmeniť veľkosť vášho Windows oddielu.\n"
-"Buďte opatrný: táto operácia je nebezpečná. Ak ste tak ešte\n"
-"neurobili, spustite najskôr pod Windows scandisk a defrag.\n"
-"Bolo by tiež vhodné zazálohovať vaše dáta. \n"
-"Ak viete čo robíte, stlačte Ok."
-
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
-msgstr "Koľko chcete nechať pre windows"
-
-#: ../../install_interactive.pm_.c:148
-#, c-format
-msgid "partition %s"
-msgstr "oddiel %s"
-
-#: ../../install_interactive.pm_.c:155
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Neúspešná zmena veľkosti FAT: %s"
-
-#: ../../install_interactive.pm_.c:170
-msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-"Nieje tu oddiel FAT, ktorému by sa dala zmeniť veľkosť alebo použiť ho pre "
-"loopback (alebo tam nieje dostatok voľného miesta)"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Erase entire disk"
-msgstr "Vymaž celý disk"
-
-#: ../../install_interactive.pm_.c:176
-msgid "Remove Windows(TM)"
-msgstr "Odstrániť Windows(TM)"
-
-#: ../../install_interactive.pm_.c:179
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Máte viac ako jeden disk, na ktorý chcete inštalovať linux ?"
-
-#: ../../install_interactive.pm_.c:182
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Všetky oddiely a dáta na nich budu stratené na disku %s"
-
-#: ../../install_interactive.pm_.c:190
-msgid "Custom disk partitioning"
-msgstr "Vlastné rozdelenie disku"
-
-#: ../../install_interactive.pm_.c:194
-msgid "Use fdisk"
-msgstr "Použiť fdisk"
-
-#: ../../install_interactive.pm_.c:197
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Teraz môžete rozdeliť váš pevný disk %s.\n"
-"Keď skončíte, nezabudnite uložiť zmeny pomocou `w'"
-
-#: ../../install_interactive.pm_.c:226
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Nemáte dostatok voľného miesta na oddiele s Windows"
-
-#: ../../install_interactive.pm_.c:242
-msgid "I can't find any room for installing"
-msgstr "Nemôžem nájsť miesto pre inštaláciu"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX sprievodca rozdelením disku našiel tieto riešenia:"
-
-#: ../../install_interactive.pm_.c:251
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Neúspešne rozdeľovanie: %s"
-
-#: ../../install_interactive.pm_.c:261
-msgid "Bringing up the network"
-msgstr "Spúšťam prácu so sieťou"
-
-#: ../../install_interactive.pm_.c:266
-msgid "Bringing down the network"
-msgstr "Ukončujem prácu so sieťou"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Vyskytla sa chyba a neviem ju úplne vyriešiť.\n"
-"Pokračujte na vlastnú zodpovednosť."
-
-#: ../../install_steps.pm_.c:205
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Dvojnásobný bod pripojenia %s"
-
-#: ../../install_steps.pm_.c:388
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"Niektoré dôležité balíky neboli správne nainštalované.\n"
-"Je možné, že sú poškodené váš CD disk alebo mechanika.\n"
-"Skontrolujte to napríklad použitím \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:458
-#, c-format
-msgid "Welcome to %s"
-msgstr "Vitajte v %s"
-
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
-msgid "No floppy drive available"
-msgstr "Nie je dostupná žiadna floppy mechanika"
-
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Spúšťam krok %s'\n"
-
-#: ../../install_steps_gtk.pm_.c:148
-msgid ""
-"Your system is low on resource. You may have some problem installing\n"
-"Mandrake Linux. 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á nedostatok prostriedkov. Možno budete mať problémy s\n"
-"inštaláciou Mandrake Linux. Ak sa tak stane, skúste textovú inštaláciu. Pre "
-"jej\n"
-"spustenie stlačte `F1' po naštartovaní z CDROMky a zadajte `text'."
-
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
-msgid "Install Class"
-msgstr "Trieda inštalácie"
-
-#: ../../install_steps_gtk.pm_.c:162
-msgid "Please choose one of the following classes of installation:"
-msgstr "Prosím, zvoľte jednu z nasledujúcich tried inštalácie: "
-
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Celková veľkosť skupín, ktoré ste označili je približne %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ak si želáte inštalovať menej ako je dané číslo,\n"
-"zvoľte toľko percent balíkov, koľko uznáte za vhodné.\n"
-"\n"
-"Pri malých percentách sa budú inštalovať iba naozaj dôležité balíky\n"
-"a ak zvolíte 100%% nainštaluje sa všetko."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Na disku máte priestor iba pre %d%% z označených balíkov.\n"
-"\n"
-"Ak si želáte nainštalovať menej,\n"
-"zvoľte toľko percent balíkov, koľko uznáte za vhodné.\n"
-"Pri malých percentách sa budú inštalovať iba naozaj dôležité balíky\n"
-"Ak necháte %d%% nainštaluje sa toľko balíkov, koľko bude možné."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "V ďalšom kroku budete mať možnosť nastaviť presnejšie"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Percentuálny počet balíkov pre inštaláciu"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
-msgid "Package Group Selection"
-msgstr "Výber skupín balíkov"
-
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
-msgid "Individual package selection"
-msgstr "Osobitná voľba balíkov"
-
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Celková veľkosť: %d / %d MB"
-
-#: ../../install_steps_gtk.pm_.c:391
-msgid "Bad package"
-msgstr "Chybný balík"
-
-#: ../../install_steps_gtk.pm_.c:392
-#, c-format
-msgid "Name: %s\n"
-msgstr "Meno: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:393
-#, c-format
-msgid "Version: %s\n"
-msgstr "Verzia: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:394
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Veľkosť: %d KB\n"
-
-#: ../../install_steps_gtk.pm_.c:395
-#, c-format
-msgid "Importance: %s\n"
-msgstr "Dôležité: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:417
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Nemôžete označiť tento balík pretože na jeho inštaláciu nie je dosť miesta."
-
-#: ../../install_steps_gtk.pm_.c:422
-msgid "The following packages are going to be installed"
-msgstr "Budú nainštalované nasledujúce balíky"
-
-#: ../../install_steps_gtk.pm_.c:423
-msgid "The following packages are going to be removed"
-msgstr "Nasledujúce balíky budú odstránené"
-
-#: ../../install_steps_gtk.pm_.c:435
-msgid "You can't select/unselect this package"
-msgstr "Môžete označiť/odznačiť tento balík"
-
-#: ../../install_steps_gtk.pm_.c:447
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Toto je jeden zo základných balíkov, nemôže byť odznačený"
-
-#: ../../install_steps_gtk.pm_.c:449
-msgid "You can't unselect this package. It is already installed"
-msgstr "Nemôžete odznačiť tento balík. Je už nainštalovaný"
-
-#: ../../install_steps_gtk.pm_.c:453
-msgid ""
-"This package must be upgraded\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Tento balík potrebuje novšiu verziu\n"
-"Ste si istý, že ho chcete odznačiť?"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Nemôžete odznačiť tento balík. Musíte pridať novú verziu"
-
-#: ../../install_steps_gtk.pm_.c:462
-msgid "Show automatically selected packages"
-msgstr "Zobraz automaticky zvolené balíčky"
-
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Install"
-msgstr "Inštalácia"
-
-#: ../../install_steps_gtk.pm_.c:466
-msgid "Load/Save on floppy"
-msgstr "Nahrať/Uložiť na disketu"
-
-#: ../../install_steps_gtk.pm_.c:467
-msgid "Updating package selection"
-msgstr "Aktualizácia voľby balíčkov"
-
-#: ../../install_steps_gtk.pm_.c:472
-msgid "Minimal install"
-msgstr "Minimálna inštalácia"
-
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
-msgid "Choose the packages you want to install"
-msgstr "Zvoľte balíky, ktoré chcete nainštalovať"
-
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
-msgid "Installing"
-msgstr "Inštalujem"
-
-#: ../../install_steps_gtk.pm_.c:509
-msgid "Estimating"
-msgstr "Odhadujem"
-
-#: ../../install_steps_gtk.pm_.c:516
-msgid "Time remaining "
-msgstr "Zvyšný čas "
-
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
-msgstr "Prosím čakajte, pripravujem inštaláciu"
-
-#: ../../install_steps_gtk.pm_.c:611
-#, c-format
-msgid "%d packages"
-msgstr "%d balíky"
-
-#: ../../install_steps_gtk.pm_.c:616
-#, c-format
-msgid "Installing package %s"
-msgstr "Inštalujem balík %s"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-#: ../../standalone/drakautoinst_.c:203
-msgid "Accept"
-msgstr "Akceptuj"
-
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
-msgid "Refuse"
-msgstr "Odmietni"
-
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
-"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Zmeňte váš CD-ROM disk!\n"
-"\n"
-"Prosím, vložte CD-ROM nazvané \"%s\" do vašej mechaniky a zvoľte OK.\n"
-"Ak taký CD disk nemáte, zvoľte Zruš pre zrušenie inštalácie z tohoto disku."
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
-msgid "Go on anyway?"
-msgstr "Napriek tomu pokračovať?"
-
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
-msgid "There was an error ordering packages:"
-msgstr "Chyba pri zoraďovaní zoznamu balíkov:"
-
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
-msgid "There was an error installing packages:"
-msgstr "Počas inštalácie balíkov sa vyskytla chyba:"
-
-#: ../../install_steps_interactive.pm_.c:10
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Vyskytla sa chyba"
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "Naozaj chcete ukončiť inštaláciu?"
-
-#: ../../install_steps_interactive.pm_.c:108
-msgid "License agreement"
-msgstr "Súhlas s licenciou"
-
-#: ../../install_steps_interactive.pm_.c:109
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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"
-msgstr ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\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 Mandrake Linux 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\", \"Mandrake Linux\" 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:205
-#: ../../install_steps_interactive.pm_.c:1045
-#: ../../standalone/keyboarddrake_.c:28
-msgid "Keyboard"
-msgstr "Klávesnica"
-
-#: ../../install_steps_interactive.pm_.c:206
-msgid "Please choose your keyboard layout."
-msgstr "Prosím, zvoľte typ vašej klávesnice."
-
-#: ../../install_steps_interactive.pm_.c:207
-msgid "Here is the full list of keyboards available"
-msgstr "Tu je zoznam dostupných klávesnic"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Which installation class do you want?"
-msgstr "Akú inštalačnú triedu chcete použiť?"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Install/Update"
-msgstr "Inštalácia/Aktualizácia"
-
-#: ../../install_steps_interactive.pm_.c:226
-msgid "Is this an install or an update?"
-msgstr "Toto je inštalácia alebo aktualizácia?"
-
-#: ../../install_steps_interactive.pm_.c:235
-msgid "Recommended"
-msgstr "Odporúčane"
-
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Expert"
-msgstr "Expert"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade"
-msgstr "Aktualizácia"
-
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Upgrade packages only"
-msgstr "Jedine aktualizácia balíčkov"
-
-#: ../../install_steps_interactive.pm_.c:266
-msgid "Please choose the type of your mouse."
-msgstr "Prosím, zvoľte typ vašej myši."
-
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
-msgid "Mouse Port"
-msgstr "Port myši"
-
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Prosím zvoľte, ktorému sériovému portu je vaša myš pripojená."
-
-#: ../../install_steps_interactive.pm_.c:281
-msgid "Buttons emulation"
-msgstr "Emulácia tlačidiel"
-
-#: ../../install_steps_interactive.pm_.c:283
-msgid "Button 2 Emulation"
-msgstr "Emulácia druhého tlačidla"
-
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Button 3 Emulation"
-msgstr "Emulácia tretieho tlačidla"
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfigurujem PCMCIA karty..."
-
-#: ../../install_steps_interactive.pm_.c:305
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "Configuring IDE"
-msgstr "Konfigurujem IDE"
-
-#: ../../install_steps_interactive.pm_.c:312
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
-msgstr "nie sú dostupné žiadne oddiely"
-
-#: ../../install_steps_interactive.pm_.c:330
-msgid "Scanning partitions to find mount points"
-msgstr "Prehľadávam oddiely na body pripojenia"
-
-#: ../../install_steps_interactive.pm_.c:338
-msgid "Choose the mount points"
-msgstr "Zvoľte body pripojenia"
-
-#: ../../install_steps_interactive.pm_.c:357
-#, c-format
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to loose all the partitions?\n"
-msgstr ""
-"Nemôžem prečítať tabuľku rozdelenia disku, je príliš poškodená :(\n"
-"Môžem sa pokúsiť vyčistiť poškodené oddiely (VŠETKY ÚDAJE budu stratené!).\n"
-"Druhou možnosťou je zakázať DrakXu modifikovať tabuľku rozdelenia.\n"
-"(chyba %s)\n"
-"\n"
-"Povolite strátu oddielu?\n"
-
-#: ../../install_steps_interactive.pm_.c:370
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake nedokázal korektne načítať tabuľku rozdelenia disku.\n"
-"Pokračujte na vlastné riziko!"
-
-#: ../../install_steps_interactive.pm_.c:386
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Nieje dostatok miesta pre 1MB veľký bootstrap! Inštalácia môže pokračovať, "
-"ale pre spustenie systému musíte vytvoriť oddiel pomocou DiskDrake"
-
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Nenašiel som koreňový oddiel pre upgrade"
-
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Koreňový oddiel"
-
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Ktorý je koreňový oddiel vašej inštalácie?"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Aby sa prejavily úpravy partition tabuľky, musíte reštartovať"
-
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Výber oddielov pre formátovanie"
-
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Kontrola chybných blokov?"
-
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Formatting partitions"
-msgstr "Formátuje sa"
-
-#: ../../install_steps_interactive.pm_.c:464
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Vytváram a formátujem súbor %s"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Nedostatočne veľký swap pre dokončenie inštalácie, prosím zväčšiť"
-
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
-msgstr "Hľadám dostupné balíky"
-
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
-msgstr "Hľadám balíky pre aktualizáciu"
-
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
-msgstr "Váš systém nemá dosť miesta pre inštaláciu alebo upgrade (%d > %d)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Úplna (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Odporučené (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Prosím zvoľte načítať, alebo uložiť výber balíčkov na disketu.\n"
-"Formát je taký istý ako diskety generované automatickou\n"
-"inštaláciou."
-
-#: ../../install_steps_interactive.pm_.c:571
-msgid "Load from floppy"
-msgstr "Nahrať z diskety"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Loading from floppy"
-msgstr "Nahrávam z diskety"
-
-#: ../../install_steps_interactive.pm_.c:573
-msgid "Package selection"
-msgstr "Výber balíčkov"
-
-#: ../../install_steps_interactive.pm_.c:578
-msgid "Insert a floppy containing package selection"
-msgstr "Vložte do mechaniky disketu s zoznamom balíčkov"
-
-#: ../../install_steps_interactive.pm_.c:590
-msgid "Save on floppy"
-msgstr "Ulož na disketu"
-
-#: ../../install_steps_interactive.pm_.c:658
-msgid "Selected size is larger than available space"
-msgstr "Zvolená veľkosť je väčšia ako dostupné miesto"
-
-#: ../../install_steps_interactive.pm_.c:671
-msgid "Type of install"
-msgstr "Typ inštalácie"
-
-#: ../../install_steps_interactive.pm_.c:672
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Nebola vybratá žiadna skupina balíčkov\n"
-"Prosím, zvoľte minimálnu inštaláciu, ktorú si želáte"
-
-#: ../../install_steps_interactive.pm_.c:675
-msgid "With X"
-msgstr "S X"
-
-#: ../../install_steps_interactive.pm_.c:677
-msgid "With basic documentation (recommended!)"
-msgstr "So základnou dokumentáciou (doporučené!)"
-
-#: ../../install_steps_interactive.pm_.c:678
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Naozaj minimálna inštalácia (bez urpmi)"
-
-#: ../../install_steps_interactive.pm_.c:762
-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 ""
-"Ak máte všetky CD zo zoznamu, stlačte OK.\n"
-"Ak nemáte žiadne, stlačte Zruš.\n"
-"Ak vám chýbajú iba niektoré, odznačte ich a potom stlačte OK."
-
-#: ../../install_steps_interactive.pm_.c:767
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom označené \"%s\""
-
-#: ../../install_steps_interactive.pm_.c:787
-msgid "Preparing installation"
-msgstr "Pripravujem inštaláciu"
-
-#: ../../install_steps_interactive.pm_.c:796
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Inštalujem balík %s\n"
-"%d%%"
-
-#: ../../install_steps_interactive.pm_.c:842
-msgid "Post-install configuration"
-msgstr "Poinštalačná konfigurácia"
-
-#: ../../install_steps_interactive.pm_.c:848
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Vložte štartovaciu disketu do mechaniky %s"
-
-#: ../../install_steps_interactive.pm_.c:854
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Vložte Update Modules disketu do mechaniky %s"
-
-#: ../../install_steps_interactive.pm_.c:874
-msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
-"\n"
-"WARNING:\n"
-"\n"
-"Due to different general requirements applicable to these software and "
-"imposed\n"
-"by various jurisdictions, customer and/or end user of theses software "
-"should\n"
-"ensure that the laws of his/their jurisdiction allow him/them to download, "
-"stock\n"
-"and/or use these software.\n"
-"\n"
-"In addition customer and/or end user shall particularly be aware to not "
-"infringe\n"
-"the laws of his/their jurisdiction. Should customer and/or end user not\n"
-"respect the provision of these applicable laws, he/they will incure serious\n"
-"sanctions.\n"
-"\n"
-"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-"liable\n"
-"for special, indirect or incidental damages whatsoever (including, but not\n"
-"limited to loss of profits, business interruption, loss of commercial data "
-"and\n"
-"other pecuniary losses, and eventual liabilities and indemnification to be "
-"paid\n"
-"pursuant to a court decision) arising out of use, possession, or the sole\n"
-"downloading of these software, to which customer and/or end user could\n"
-"eventually have access after having sign up the present agreement.\n"
-"\n"
-"\n"
-"For any queries relating to these agreement, please contact \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-msgstr ""
-"Teraz máte možnosť získať balíky určené na kryptovanie.\n"
-"\n"
-"Varovanie:\n"
-"\n"
-"Vďaka rozdielnemu prístupu zákona (v rôznych krajinách) k týmto balíkom,\n"
-"by ste sa mali dopredu uistiť, či vám používanie takýchto balíkov zákon\n"
-"vo vašej krajine dovoľuje.\n"
-"\n"
-"V prípade, že porušíte zákony vašej krajiny, mali by ste si byť vedomý,\n"
-"aký trest vám za to hrozí.\n"
-"\n"
-"Mandrakesoft (ani jeho zamestnanci, či spolupracovníci) neručí za akékoľvek\n"
-"škody spôsobené používaním jeho softvéru.\n"
-"\n"
-"\n"
-"Ak máte ďalšie otázky súvisiace s týmto textom, obráťte sa prosím na \n"
-"Mandrakesoft, Inc.\n"
-"2400 N. Lincoln Avenue Suite 243\n"
-"Altadena California 91001\n"
-"USA"
-
-#: ../../install_steps_interactive.pm_.c:912
-msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
-"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"Teraz máte možnosť stiahnuť aktualizované verzie balíčkov, ktoré\n"
-"boli vydané až po uvoľnení distribúcie.\n"
-"\n"
-"Získate tým bezpečnostné opravy a opravy chýb. Potrebujete\n"
-"však nastavené pripojenie k internetu.\n"
-"\n"
-"Želáte si nainštalovať aktualizácie balíčkov ?"
-
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
-msgstr ""
-"Pripájam sa k www stránke Mandrake Linuxu pre stiahnutie zoznamu zrkadiel"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "Choose a mirror from which to get the packages"
-msgstr "Vyberte miror, z ktorého chcete stiahnuť balík"
-
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
-msgstr "Pripájam sa k miroru a sťahujem zoznam možných balíkov"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Which is your timezone?"
-msgstr "Ktoré je vaše časové pásmo?"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Hardware clock set to GMT"
-msgstr "Hardvérove hodiny nastavené na GMT"
-
-#: ../../install_steps_interactive.pm_.c:973
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatická synchronizácia času (pomocou NTP)"
-
-#: ../../install_steps_interactive.pm_.c:980
-msgid "NTP Server"
-msgstr "NTP server"
-
-#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
-msgid "Remote CUPS server"
-msgstr "Vzdialený CUPS server"
-
-#: ../../install_steps_interactive.pm_.c:1015
-msgid "No printer"
-msgstr "Bez tlačiarne"
-
-#: ../../install_steps_interactive.pm_.c:1032
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Máte ešte nejaké ďalšie?"
-
-#: ../../install_steps_interactive.pm_.c:1034
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1036
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Zhrnutie"
-
-#: ../../install_steps_interactive.pm_.c:1044
-msgid "Mouse"
-msgstr "Myš"
-
-#: ../../install_steps_interactive.pm_.c:1046
-msgid "Timezone"
-msgstr "Časová zóna"
-
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
-msgid "Printer"
-msgstr "Tlačiarne"
-
-#: ../../install_steps_interactive.pm_.c:1049
-msgid "ISDN card"
-msgstr "ISDN karta"
-
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
-msgid "Sound card"
-msgstr "Zvuková karta"
-
-#: ../../install_steps_interactive.pm_.c:1056
-msgid "TV card"
-msgstr "TV karta"
-
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
-msgid "Local files"
-msgstr "Lokálne súbory"
-
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Nastavenie root hesla"
-
-#: ../../install_steps_interactive.pm_.c:1107
-msgid "No password"
-msgstr "Bez hesla"
-
-#: ../../install_steps_interactive.pm_.c:1112
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Toto heslo je príliš jednoduché(musí byť minimálne %d znakov dlhé)"
-
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
-msgid "Authentication"
-msgstr "Autentifikácia"
-
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "Authentication LDAP"
-msgstr "Autentifikácia LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1127
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
-
-#: ../../install_steps_interactive.pm_.c:1128
-msgid "LDAP Server"
-msgstr "LDAP server"
-
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Authentication NIS"
-msgstr "NIS autentifikácia"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "NIS Domain"
-msgstr "NIS doména"
-
-#: ../../install_steps_interactive.pm_.c:1136
-msgid "NIS Server"
-msgstr "NIS server"
-
-#: ../../install_steps_interactive.pm_.c:1171
-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 "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
-"Vlastná zavádzacia disketa poskytuje možnosť zaviesť váš systém Linux\n"
-"bez závislosti na obvyklom zavádzači. Hodí sa to, pokiaľ nechcete na vašom\n"
-"systéme inštalovať SILO, iný operačný systém SILO odstráni, alebo\n"
-"SILO nepracuje správne s vaším hardvérom. Individuálna zavádzacia disketa\n"
-"môže byť tiež použitá spolu s Mandrake Linux záchrannou disketou, čo \n"
-"podstatne uľahčí zotavenie sa z vážnych chýb systému.\n"
-"\n"
-"Ak si želáte vytvoriť zavádzaciu disketu pre váš systém, vložte disketu do\n"
-"prvej mechaniky a stlačte \"Ok\"."
-
-#: ../../install_steps_interactive.pm_.c:1187
-msgid "First floppy drive"
-msgstr "Prvá floppy mechanika"
-
-#: ../../install_steps_interactive.pm_.c:1188
-msgid "Second floppy drive"
-msgstr "Druhá floppy mechanika"
-
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
-msgid "Skip"
-msgstr "Vynechaj"
-
-#: ../../install_steps_interactive.pm_.c:1194
-#, c-format
-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 "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
-msgstr ""
-"Individuálna zavádzacia disketa poskytuje možnosť zaviesť váš systém Linux\n"
-"bez závislosti na obvyklom zavádzači. Hodí sa to, pokiaľ nechcete na vašom\n"
-"systéme inštalovať LILO (či GRUB), iný operačný systém LILO odstráni, alebo\n"
-"LILO nepracuje správne s vaším hardvérom. Individuálna zavádzacia disketa\n"
-"môže byť tiež použitá spolu s Mandrake Linux záchrannou disketou, čo \n"
-"podstatne uľahčí zotavenie sa z vážnych chýb systému.\n"
-"\n"
-"Želáte si vytvoriť zavádzaciu disketu pre váš systém?\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:1200
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1208
-msgid "Sorry, no floppy drive available"
-msgstr "Prepáčte, nenašiel som žiadnu disketovú mechaniku"
-
-#: ../../install_steps_interactive.pm_.c:1212
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Zvoľte floppy mechaniku v ktorej chcete vytvoriť boot disketu"
-
-#: ../../install_steps_interactive.pm_.c:1216
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Vložte disketu do mechaniky %s"
-
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr "Vytváram bootdisk"
-
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr "Pripravuje sa zavádzač"
-
-#: ../../install_steps_interactive.pm_.c:1237
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1243
-msgid "Do you want to use aboot?"
-msgstr "Chcete použiť aboot?"
-
-#: ../../install_steps_interactive.pm_.c:1246
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Chyba inštalácie aboot.\n"
-"Skúsiť silovú inštaláciu s možnosťou zničenia prvého oddielu?"
-
-#: ../../install_steps_interactive.pm_.c:1253
-msgid "Installing bootloader"
-msgstr "Inštalujem zavádzač"
-
-#: ../../install_steps_interactive.pm_.c:1259
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Inštalácia zavádzača zlýhala. Vyskytla sa nasledujúca chyba:"
-
-#: ../../install_steps_interactive.pm_.c:1267
-#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1311
-#: ../../standalone/drakautoinst_.c:81
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Vložte čistú disketu do mechaniky %s"
-
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
-msgstr "Pripravujem auto inštalačnú disketu"
-
-#: ../../install_steps_interactive.pm_.c:1326
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"Niektoré kroky niesu dokončené.\n"
-"\n"
-"Naozaj chcete teraz skončiť?"
-
-#: ../../install_steps_interactive.pm_.c:1337
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
-"Gratulujeme! Inštalácia je kompletná.\n"
-"Vyberte zavádzacie médium (disketa, CD) a stačte enter\n"
-"pre reštart počítača.\n"
-"\n"
-"\n"
-"Informácie o opravách tejto verzie Mandrake Linux-u môžete nájst na\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
-" "
-
-#: ../../install_steps_interactive.pm_.c:1354
-msgid "Generate auto install floppy"
-msgstr "Príprava auto inštalačnej diskety"
-
-#: ../../install_steps_interactive.pm_.c:1356
-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 ""
-"Automatická inštalácia môže byť plne automatizovaná\n"
-"v tom prípade však inštalácia zaberie celý pevný disk.\n"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Automated"
-msgstr "Automatická"
-
-#: ../../install_steps_interactive.pm_.c:1361
-msgid "Replay"
-msgstr "Prehrať"
-
-#: ../../install_steps_interactive.pm_.c:1364
-msgid "Save packages selection"
-msgstr "Uložiť voľbu balíkov"
-
-#: ../../install_steps_newt.pm_.c:22
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Inštalácia Mandrake Linux %s"
-
-#: ../../install_steps_newt.pm_.c:34
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> medzi položkami | <Medzera> označuje | <F12> ďalej"
-
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "chýba kdesu"
-
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Zvoľte súbor"
-
-#: ../../interactive.pm_.c:314
-msgid "Advanced"
-msgstr "Rozšírene"
-
-#: ../../interactive.pm_.c:315
-msgid "Basic"
-msgstr "Základná"
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Prosím čakajte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Ukáž strom"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Skri strom"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Priame, alebo skupinové triedenie"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
-msgid "Bad choice, try again\n"
-msgstr "Chybná voľba, skúste znovu\n"
-
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Vaša voľba? (predvolené %s) "
-
-#: ../../interactive_stdio.pm_.c:52
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"Záznamy, ktoré musíte vyplniť:\n"
-"%s"
-
-#: ../../interactive_stdio.pm_.c:68
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Vaša voľba? (0/1, predvolené `%s') "
-
-#: ../../interactive_stdio.pm_.c:93
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Tlačítko `%s': %s"
-
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
-msgstr "Želáte si kliknúť na toto tlačítko?"
-
-#: ../../interactive_stdio.pm_.c:103
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Vaša voľba? (predvolené `%s'%s) "
-
-#: ../../interactive_stdio.pm_.c:121
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:124
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:137
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:144
-msgid "Re-submit"
-msgstr ""
-
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
-msgid "Czech (QWERTZ)"
-msgstr "Česká (QWERTZ)"
-
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
-msgid "German"
-msgstr "Nemecká"
-
-#: ../../keyboard.pm_.c:176
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
-msgid "Spanish"
-msgstr "Španielska"
-
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
-msgid "Finnish"
-msgstr "Fínska"
-
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
-msgid "French"
-msgstr "Francúzska"
-
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
-msgid "Norwegian"
-msgstr "Nórska"
-
-#: ../../keyboard.pm_.c:181
-msgid "Polish"
-msgstr "Polská"
-
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
-msgid "Russian"
-msgstr "Ruská"
-
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
-msgid "Swedish"
-msgstr "Švédska"
-
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
-msgid "UK keyboard"
-msgstr "UK klávesnica"
-
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
-msgid "US keyboard"
-msgstr "US klávesnica"
-
-#: ../../keyboard.pm_.c:188
-msgid "Albanian"
-msgstr "Albánska"
-
-#: ../../keyboard.pm_.c:189
-msgid "Armenian (old)"
-msgstr "Arménska (stará)"
-
-#: ../../keyboard.pm_.c:190
-msgid "Armenian (typewriter)"
-msgstr "Arménska (písací stroj)"
-
-#: ../../keyboard.pm_.c:191
-msgid "Armenian (phonetic)"
-msgstr "Arménska (fonetická)"
-
-#: ../../keyboard.pm_.c:196
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbajdžan (latin)"
-
-#: ../../keyboard.pm_.c:198
-msgid "Belgian"
-msgstr "Belgická"
-
-#: ../../keyboard.pm_.c:199
-msgid "Bulgarian (phonetic)"
-msgstr "Bulharská (fonetická)"
-
-#: ../../keyboard.pm_.c:200
-msgid "Bulgarian (BDS)"
-msgstr "Bulharská (BDS)"
-
-#: ../../keyboard.pm_.c:201
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazílska"
-
-#: ../../keyboard.pm_.c:202
-msgid "Belarusian"
-msgstr "Bieloruská"
-
-#: ../../keyboard.pm_.c:203
-msgid "Swiss (German layout)"
-msgstr "Švajčiarska (Nemecké rozloženie kláves)"
-
-#: ../../keyboard.pm_.c:204
-msgid "Swiss (French layout)"
-msgstr "Švajčiarska (Francúzske rozloženie kláves)"
-
-#: ../../keyboard.pm_.c:206
-msgid "Czech (QWERTY)"
-msgstr "Česká (QWERTY)"
-
-#: ../../keyboard.pm_.c:208
-msgid "German (no dead keys)"
-msgstr "Nemecká (bez mŕtvych kláves)"
-
-#: ../../keyboard.pm_.c:209
-msgid "Danish"
-msgstr "Dánska"
-
-#: ../../keyboard.pm_.c:210
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../keyboard.pm_.c:211
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Nórska)"
-
-#: ../../keyboard.pm_.c:212
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Swedish)"
-
-#: ../../keyboard.pm_.c:213
-msgid "Estonian"
-msgstr "Estónska"
-
-#: ../../keyboard.pm_.c:217
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Gruzínska (\"Ruské\" rozloženie kláves)"
-
-#: ../../keyboard.pm_.c:218
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Gruzínska (\"Latin\" rozloženie kláves)"
-
-#: ../../keyboard.pm_.c:219
-msgid "Greek"
-msgstr "Grécka"
-
-#: ../../keyboard.pm_.c:220
-msgid "Hungarian"
-msgstr "Maďarská"
-
-#: ../../keyboard.pm_.c:221
-msgid "Croatian"
-msgstr "Chorvátska"
-
-#: ../../keyboard.pm_.c:222
-msgid "Israeli"
-msgstr "Izraelská"
-
-#: ../../keyboard.pm_.c:223
-msgid "Israeli (Phonetic)"
-msgstr "Izraelská (fonetická)"
-
-#: ../../keyboard.pm_.c:224
-msgid "Iranian"
-msgstr "Iránska"
-
-#: ../../keyboard.pm_.c:225
-msgid "Icelandic"
-msgstr "Islandská"
-
-#: ../../keyboard.pm_.c:226
-msgid "Italian"
-msgstr "Talianska"
-
-#: ../../keyboard.pm_.c:228
-msgid "Japanese 106 keys"
-msgstr "Japonská 106 kláves"
-
-#: ../../keyboard.pm_.c:231
-msgid "Korean keyboard"
-msgstr "Kórejska klávesnica"
-
-#: ../../keyboard.pm_.c:232
-msgid "Latin American"
-msgstr "Latinsko Americká"
-
-#: ../../keyboard.pm_.c:233
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litovská AZERTY (stará)"
-
-#: ../../keyboard.pm_.c:235
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litovská AZERTY (nová)"
-
-#: ../../keyboard.pm_.c:236
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litovská QWERTY"
-
-#: ../../keyboard.pm_.c:237
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litovská \"fonetická\" QWERTY"
-
-#: ../../keyboard.pm_.c:238
-msgid "Latvian"
-msgstr ""
-
-#: ../../keyboard.pm_.c:239
-msgid "Macedonian"
-msgstr "Macedónska"
-
-#: ../../keyboard.pm_.c:240
-msgid "Dutch"
-msgstr "Holandský"
-
-#: ../../keyboard.pm_.c:242
-msgid "Polish (qwerty layout)"
-msgstr "Poľská (qwerty rozloženie kláves)"
-
-#: ../../keyboard.pm_.c:243
-msgid "Polish (qwertz layout)"
-msgstr "Poľská (qwertz rozloženie kláves)"
-
-#: ../../keyboard.pm_.c:244
-msgid "Portuguese"
-msgstr "Portugalská"
-
-#: ../../keyboard.pm_.c:245
-msgid "Canadian (Quebec)"
-msgstr "Kanadská (Quebec)"
-
-#: ../../keyboard.pm_.c:247
-msgid "Romanian (qwertz)"
-msgstr "Románska (Yawerty)"
-
-#: ../../keyboard.pm_.c:248
-msgid "Romanian (qwerty)"
-msgstr "Románska (Yawerty)"
-
-#: ../../keyboard.pm_.c:250
-msgid "Russian (Yawerty)"
-msgstr "Ruská (Yawerty)"
-
-#: ../../keyboard.pm_.c:252
-msgid "Slovenian"
-msgstr "Slovinská"
-
-#: ../../keyboard.pm_.c:253
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovenská (QWERTZ)"
-
-#: ../../keyboard.pm_.c:254
-msgid "Slovakian (QWERTY)"
-msgstr "Slovenská (QWERTY)"
-
-#: ../../keyboard.pm_.c:256
-msgid "Serbian (cyrillic)"
-msgstr "Srbská (cyrillic)"
-
-#: ../../keyboard.pm_.c:258
-msgid "Tamil"
-msgstr "Tamilská"
-
-#: ../../keyboard.pm_.c:259
-msgid "Thai keyboard"
-msgstr "Thaiská klávesnica"
-
-#: ../../keyboard.pm_.c:261
-msgid "Tajik keyboard"
-msgstr "Tajik klávesnica"
-
-#: ../../keyboard.pm_.c:262
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turecká (tradičný \"F\" model)"
-
-#: ../../keyboard.pm_.c:263
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turecká (moderný \"Q\" model)"
-
-#: ../../keyboard.pm_.c:265
-msgid "Ukrainian"
-msgstr "Ukrainská"
-
-#: ../../keyboard.pm_.c:268
-msgid "US keyboard (international)"
-msgstr "US klávesnica (medzinárodná)"
-
-#: ../../keyboard.pm_.c:269
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamská \"numerická\" QWERTY"
-
-#: ../../keyboard.pm_.c:270
-msgid "Yugoslavian (latin)"
-msgstr "Juhoslovanská (latin)"
-
-#: ../../keyboard.pm_.c:278
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:279
-msgid "Both Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:280
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:281
-msgid "CapsLock key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:282
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:283
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../keyboard.pm_.c:284
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../keyboard.pm_.c:285
-#, fuzzy
-msgid "Left \"Windows\" key"
-msgstr "Prevziať fonty z Windows"
-
-#: ../../keyboard.pm_.c:286
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: ../../loopback.pm_.c:32
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Kruhové pripojenia %s\n"
-
-#: ../../lvm.pm_.c:88
-msgid "Remove the logical volumes first\n"
-msgstr "Odstraňte najprv logické zväzky\n"
-
-#: ../../modules.pm_.c:826
-msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"PCMCIA podpora už nieje zahrnutá v jadrách verzie 2.2. Použite verziu 2.4"
-
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun myš"
-
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Štandardná PS2 myš s kolieskom"
-
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
-msgid "1 button"
-msgstr "1 tlačidlo"
-
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
-msgid "Generic 2 Button Mouse"
-msgstr "štandardná myš s 2 tlačidlami"
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Všeobecné"
-
-#: ../../mouse.pm_.c:46
-msgid "Wheel"
-msgstr "Koliesko"
-
-#: ../../mouse.pm_.c:49
-msgid "serial"
-msgstr "sériová"
-
-#: ../../mouse.pm_.c:52
-msgid "Generic 3 Button Mouse"
-msgstr "Štandardná trojtlačítková"
-
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../mouse.pm_.c:54
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../mouse.pm_.c:55
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../mouse.pm_.c:57
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../mouse.pm_.c:58
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../mouse.pm_.c:60
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../mouse.pm_.c:61
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../mouse.pm_.c:62
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (sériová, starý typ C7)"
-
-#: ../../mouse.pm_.c:66
-msgid "busmouse"
-msgstr "Myš na zbernici"
-
-#: ../../mouse.pm_.c:69
-msgid "2 buttons"
-msgstr "2 tlačidlá"
-
-#: ../../mouse.pm_.c:70
-msgid "3 buttons"
-msgstr "3 tlačidlá"
-
-#: ../../mouse.pm_.c:73
-msgid "none"
-msgstr "nič"
-
-#: ../../mouse.pm_.c:75
-msgid "No mouse"
-msgstr "Žiadna myš"
-
-#: ../../mouse.pm_.c:499
-msgid "Please test the mouse"
-msgstr "Prosím otestujte myš."
-
-#: ../../mouse.pm_.c:500
-msgid "To activate the mouse,"
-msgstr "Pre aktiváciu myši,"
-
-#: ../../mouse.pm_.c:501
-msgid "MOVE YOUR WHEEL!"
-msgstr "POHNITE KOLIESKOM!"
-
-#: ../../my_gtk.pm_.c:651
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:686
-msgid "Finish"
-msgstr "Dokončiť"
-
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
-msgid "Next ->"
-msgstr "Ďalší ->"
-
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
-msgid "<- Previous"
-msgstr "<- Predchádzajúce"
-
-#: ../../my_gtk.pm_.c:1019
-msgid "Is this correct?"
-msgstr "Je to správne?"
-
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Pripojenie k internetu"
-
-#: ../../network/adsl.pm_.c:20
-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 ""
-"Najpouživanejšie pripojenie s adsl je pppoe.\n"
-"Avšak existujú pripojenia ktoré používaju pptp alebo dhcp.\n"
-"Ak neviete čo použiť, tak zvoľte 'použi pppoe'"
-
-#: ../../network/adsl.pm_.c:22
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use dhcp"
-msgstr "použiť dhcp"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pppoe"
-msgstr "použi pppoe"
-
-#: ../../network/adsl.pm_.c:22
-msgid "use pptp"
-msgstr "použi pptp"
-
-#: ../../network/ethernet.pm_.c:37
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpcd"
-msgstr ""
-"Ktorý dhcp klient chcete použiť?\n"
-"Štandardný je dhcpcd"
-
-#: ../../network/ethernet.pm_.c:88
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Vo vašom systéme nebol nájdený sieťovy ethernet adaptér.\n"
-"Nemôžem nastaviť požadovaný typ pripojenia."
-
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
-msgid "Choose the network interface"
-msgstr "Zvoľte sieťove rozhranie"
-
-#: ../../network/ethernet.pm_.c:93
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr ""
-"Prosím zvoľte si ktoré sieťové zariadenie budete používať na pripojenie k "
-"internetu"
-
-#: ../../network/ethernet.pm_.c:178
-msgid "no network card found"
-msgstr "nenašiel som sieťovú kartu"
-
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
-msgid "Configuring network"
-msgstr "Konfigurujem sieť"
-
-#: ../../network/ethernet.pm_.c:203
-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 zadajte meno vášho počítača ak ho viete.\n"
-"Niektoré DHCP servre ho vyžadujú pre svoju funkčnosť.\n"
-"Meno vášho počítača by malo byt plne kvalifikované host name,\n"
-"ako napríklad ``hq.alert.sk''."
-
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
-msgid "Host name"
-msgstr "Názov počítača"
-
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
-msgid "Network Configuration Wizard"
-msgstr "Sprievodca konfiguráciou siete"
-
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Externý ISDN modem"
-
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Interná ISDN karta"
-
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Aký typ ISDN pripojenia máte?"
-
-#: ../../network/isdn.pm_.c:45
-msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
-msgstr ""
-"Ktorý typ nastavenia ISDN uprednotníte?\n"
-"\n"
-"* Starý typ používa isdn4net. Obsahuje silné nástroje, ale\n"
-" ťažko sa nastavuje.\n"
-"\n"
-"* Nový typ je jednoduchšie pochopiteľný, ale obsahuje menej\n"
-" nástrojov.\n"
-"\n"
-"Doporučujeme použiť nový typ nastavenia ISDN.\n"
-
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Nová konfigurácia (isdn-light)"
-
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Stará konfigurácia (isdn4net)"
-
-#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
-msgid "ISDN Configuration"
-msgstr "Konfigurácia ISDN"
-
-#: ../../network/isdn.pm_.c:170
-msgid ""
-"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
-msgstr ""
-"Zvoľte si poskytovateľa.\n"
-"Ak nieje v zozname, zvoľte Unlisted"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol"
-msgstr "Európsky protokol"
-
-#: ../../network/isdn.pm_.c:183
-msgid "Europe protocol (EDSS1)"
-msgstr "Európsky protokol (EDSS1)"
-
-#: ../../network/isdn.pm_.c:185
-msgid "Protocol for the rest of the world"
-msgstr "Protokol pre zvyšok sveta"
-
-#: ../../network/isdn.pm_.c:185
-msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
-msgstr ""
-"Protokol pre zvyšok sveta \n"
-" bez D-Channel (prenajaté linky)"
-
-#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
-msgstr "Aký typ protokolu chcete používať ?"
-
-#: ../../network/isdn.pm_.c:199
-msgid "What kind of card do you have?"
-msgstr "Aký typ karty máte?"
-
-#: ../../network/isdn.pm_.c:200
-msgid "I don't know"
-msgstr "Neviem"
-
-#: ../../network/isdn.pm_.c:200
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../network/isdn.pm_.c:200
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../network/isdn.pm_.c:206
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
-msgstr ""
-"\n"
-"Ak máte ISA kartu, tak hodnoty na ďalšej obrazovke by mali byť správne.\n"
-"\n"
-"Ak máte PCMCIA kartu, musíte vedieť irq a io adresu tejto karty.\n"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Abort"
-msgstr "Preruš"
-
-#: ../../network/isdn.pm_.c:210
-msgid "Continue"
-msgstr "Pokračovať"
-
-#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr "Ktorá je vaša ISDN karta ?"
-
-#: ../../network/isdn.pm_.c:235
-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 ""
-"Našiel som PCI ISDN kartu, ale nepoznám tento typ. Prosím zvoľte si jednu z "
-"PCI kariet na ďalšej obrazovke."
-
-#: ../../network/isdn.pm_.c:244
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Nebola nájdena ISDN karta. Prosím zvoľte si jednu zo zobrazených."
-
-#: ../../network/modem.pm_.c:39
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Prosím zvoľte na ktorý sériový port je pripojený váš modem."
-
-#: ../../network/modem.pm_.c:44
-msgid "Dialup options"
-msgstr "Voľby dialupu"
-
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
-msgid "Connection name"
-msgstr "Meno pripojenia"
-
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
-msgid "Phone number"
-msgstr "Telefónne číslo"
-
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
-msgid "Login ID"
-msgstr "Prihlasovacie ID"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Script-based"
-msgstr "Založené na skriptoch"
-
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
-msgid "Terminal-based"
-msgstr "Založené na terminály"
-
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
-msgid "Domain name"
-msgstr "Meno domény"
-
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
-msgid "First DNS Server (optional)"
-msgstr "Prvý DNS server (nepovinné)"
-
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
-msgid "Second DNS Server (optional)"
-msgstr "Druhý DNS server (nepovinné)"
-
-#: ../../network/netconnect.pm_.c:34
-msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
-"\n"
-"Môžete vaše pripojenie prekonfigurovať alebo sa odpojiť."
-
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can reconfigure your connection."
-msgstr ""
-"\n"
-"Môžete prekonfigurovať vaše pripojenie."
-
-#: ../../network/netconnect.pm_.c:34
-msgid "You are currently connected to internet."
-msgstr "Momentálne ste pripojený k internetu."
-
-#: ../../network/netconnect.pm_.c:37
-msgid ""
-"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr ""
-"\n"
-"Môžete prekonfigurovať vaše pripojenie, alebo sa pripojit k internetu."
-
-#: ../../network/netconnect.pm_.c:37
-msgid "You are not currently connected to Internet."
-msgstr "Momentálne nieste pripojený k internetu."
-
-#: ../../network/netconnect.pm_.c:41
-msgid "Connect"
-msgstr "Pripojenie"
-
-#: ../../network/netconnect.pm_.c:43
-msgid "Disconnect"
-msgstr "Odpojenie"
-
-#: ../../network/netconnect.pm_.c:45
-msgid "Configure the connection"
-msgstr "Nastaviť pripojenie"
-
-#: ../../network/netconnect.pm_.c:50
-msgid "Internet connection & configuration"
-msgstr "Pripojenie a konfigurácia internetu"
-
-#: ../../network/netconnect.pm_.c:100
-#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Teraz nastavíme Vaše pripojenie %s."
-
-#: ../../network/netconnect.pm_.c:109
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Teraz nastavíme pripojenie %s.\n"
-"\n"
-"Stlačte OK pre pokračovanie."
-
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
-msgid "Network Configuration"
-msgstr "Konfigurácia siete"
-
-#: ../../network/netconnect.pm_.c:139
-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 ""
-"Pretože robíte inštaláciu cez sieť, vaša sieť je už nasavená. Stlačte OK pre "
-"zachovanie\n"
-"nastavenia, alebo Cancel pre opätovné nastavenie pripojenia na internet a "
-"sieť.\n"
-
-#: ../../network/netconnect.pm_.c:165
-msgid ""
-"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 ""
-"Vítajte v sprievodcovi nastavenia siete\n"
-"\n"
-"Chcete nastaviť vaše pripojenie k sieti/internetu.\n"
-"Ak nechcete použiť automatickú detekciu odškrtnite políčko.\n"
-
-#: ../../network/netconnect.pm_.c:167
-msgid "Choose the profile to configure"
-msgstr "Zvoľte profil na konfiguráciu"
-
-#: ../../network/netconnect.pm_.c:168
-msgid "Use auto detection"
-msgstr "Použiť auto-detekciu"
-
-#: ../../network/netconnect.pm_.c:175
-msgid "Detecting devices..."
-msgstr "Zisťujem zariadenia..."
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-msgid "Normal modem connection"
-msgstr "Normálne modémove pripojenie"
-
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
-#, c-format
-msgid "detected on port %s"
-msgstr "detekovaný na porte %s"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-msgid "ISDN connection"
-msgstr "ISDN pripojenie"
-
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
-#, c-format
-msgid "detected %s"
-msgstr "nájdene %s"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-msgid "ADSL connection"
-msgstr "ADSL pripojenie"
-
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
-#, c-format
-msgid "detected on interface %s"
-msgstr "detekovaný na rozhraní %s"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "Cable connection"
-msgstr "Pripojenie káblom"
-
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
-msgid "cable connection detected"
-msgstr "detekované pripojenie káblom"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "LAN connection"
-msgstr "Pripojenie LAN"
-
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
-msgid "ethernet card(s) detected"
-msgstr "nájdená ethernet karta(y)"
-
-#: ../../network/netconnect.pm_.c:202
-msgid "Choose the connection you want to configure"
-msgstr "Vyberte pripojenie, ktoré chcete nastaviť"
-
-#: ../../network/netconnect.pm_.c:226
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Nastavili ste niekoľko možností pripojenia k internetu.\n"
-"Zvoľte jednu, ktorú chcete používať.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:227
-msgid "Internet connection"
-msgstr "Pripojenie k internetu"
-
-#: ../../network/netconnect.pm_.c:233
-msgid "Do you want to start the connection at boot?"
-msgstr "Chcete sa pripojiť hneď pri štarte?"
-
-#: ../../network/netconnect.pm_.c:247
-msgid "Network configuration"
-msgstr "Konfigurácia siete"
-
-#: ../../network/netconnect.pm_.c:248
-msgid "The network needs to be restarted"
-msgstr "Sieť potrebuje reštart."
-
-#: ../../network/netconnect.pm_.c:252
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Nastal problém pri reštartovaní sieťe: \n"
-"\n"
-"%s"
-
-#: ../../network/netconnect.pm_.c:261
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
-msgstr ""
-"Gratulujeme. Nastavenie siete a pripojenia k internetu je dokončené\n"
-"Nastavenie bude teraz aplikované na váš systém.\n"
-"\n"
-
-#: ../../network/netconnect.pm_.c:265
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Po zmene doporučujeme reštartovat X windows, aby ste\n"
-"predišli problémom pri zmene mena hostu."
-
-#: ../../network/netconnect.pm_.c:266
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
-msgstr ""
-"Počas konfigurácie sa vyskytli problémy.\n"
-"Vyskúšajte Vaše pripojenie s nástrojom net_monitor, alebo mcc. Ak pripojenie "
-"nepracuje, mali by ste opätovne spustiť konfiguráciu"
-
-#: ../../network/network.pm_.c:292
-msgid ""
-"WARNING: This device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
-msgstr ""
-"Varovanie: Toto zariadenie už bolo nastavené na prístup k internetu.\n"
-"Jednoducho nechajte pôvodné nastavenie.\n"
-"Modifikácia parametrov môže zmeniť nastavenie."
-
-#: ../../network/network.pm_.c:297
-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 ""
-"Zadajte IP konfiguráciu tohoto počítača.\n"
-"Každý záznam by mal byť zadaný ako IP adresa v dekadickom tvare\n"
-"oddelenom bodkami (napr. 1.2.3.4)."
-
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigurácia sieťového zariadenia %s"
-
-#: ../../network/network.pm_.c:307
-#, c-format
-msgid " (driver %s)"
-msgstr " (ovladač %s)"
-
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
-msgid "IP address"
-msgstr "IP adresa"
-
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
-msgid "Netmask"
-msgstr "Maska siete"
-
-#: ../../network/network.pm_.c:311
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../network/network.pm_.c:311
-msgid "Automatic IP"
-msgstr "Automatická IP"
-
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresa musí byť vo formáte 1.2.3.4"
-
-#: ../../network/network.pm_.c:361
-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 zadajte meno vášho počítača.\n"
-"Meno vášho počítača by malo byt plne kvalifikované host name,\n"
-"ako napríklad ``hq.alert.sk''.\n"
-"Tiež môžete zadať IP adresu brány ak ju viete"
-
-#: ../../network/network.pm_.c:366
-msgid "DNS server"
-msgstr "DNS server"
-
-#: ../../network/network.pm_.c:367
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (napr. %s)"
-
-#: ../../network/network.pm_.c:369
-msgid "Gateway device"
-msgstr "Zariadenie smerujúce k bráne"
-
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Nastavenie proxy"
-
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
-msgstr ""
-
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy má byť http://..."
-
-#: ../../network/network.pm_.c:388
-msgid "Proxy should be ftp://..."
-msgstr "Proxy má byť ftp://..."
-
-#: ../../network/tools.pm_.c:39
-msgid "Internet configuration"
-msgstr "Konfigurácia internetu"
-
-#: ../../network/tools.pm_.c:40
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Chcete sa skúsiť pripojiť teraz k internetu?"
-
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
-msgid "Testing your connection..."
-msgstr "Testovanie pripojenia..."
-
-#: ../../network/tools.pm_.c:50
-msgid "The system is now connected to Internet."
-msgstr "Systém je teraz pripojený k internetu."
-
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
-msgstr "Z bezpečnostných dôvodov bude teraz odpojený."
-
-#: ../../network/tools.pm_.c:52
-msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Systém prevdepodobne nieje pripojený k internetu.\n"
-"Skúste prekonfigurovať pripojenie."
-
-#: ../../network/tools.pm_.c:76
-msgid "Connection Configuration"
-msgstr "Konfigurácia pripojenia"
-
-#: ../../network/tools.pm_.c:77
-msgid "Please fill or check the field below"
-msgstr "Prosím vyplňte alebo zaškrtnite políčka"
-
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
-msgid "Card IRQ"
-msgstr "IRQ karty"
-
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
-msgid "Card mem (DMA)"
-msgstr "DMA karty"
-
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
-msgid "Card IO"
-msgstr "IO karty"
-
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
-msgid "Card IO_0"
-msgstr "IO_0 karty"
-
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
-msgid "Card IO_1"
-msgstr "IO_1 karty"
-
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
-msgid "Your personal phone number"
-msgstr "Vaše osobné telefónne číslo"
-
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
-msgid "Provider name (ex provider.net)"
-msgstr "Meno poskytovateľa (napr. provider.net)"
-
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
-msgid "Provider phone number"
-msgstr "Telefónne číslo poskytovateľa"
-
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
-msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 poskytovateľa (voliteľné)"
-
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
-msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 poskytovateľa (voliteľné)"
-
-#: ../../network/tools.pm_.c:89
-msgid "Choose your country"
-msgstr "Vyberte si vašu krajinu"
-
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
-msgid "Dialing mode"
-msgstr "Mód vytáčania"
-
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
-msgid "Connection speed"
-msgstr "Rýchlosť pripojenia"
-
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
-msgid "Connection timeout (in sec)"
-msgstr "Timeout pripojenia (v sekundách)"
-
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
-msgid "Account Login (user name)"
-msgstr "Meno účtu (uživateľské meno)"
-
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
-msgid "Account Password"
-msgstr "Heslo účtu"
-
-#: ../../partition_table.pm_.c:600
-msgid "mount failed: "
-msgstr "nepodarilo sa pripojiť: "
-
-#: ../../partition_table.pm_.c:664
-msgid "Extended partition not supported on this platform"
-msgstr "Na tejto platforme njeje podporovaný rozšírený oddiel"
-
-#: ../../partition_table.pm_.c:682
-msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
-msgstr ""
-"V tabuľke rozdelenia disku sa nachádza záznam o voľnom priestore,\n"
-"ktorý nedokážem využiť. Jediné riešenie je presunúť primárny oddiel tak,\n"
-"aby sa voľné miesto nachádzalo za ním a bolo použiteľné pre rozšírený\n"
-"oddiel."
-
-#: ../../partition_table.pm_.c:770
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Obnovenie zo súboru %s zlyhalo: %s"
-
-#: ../../partition_table.pm_.c:772
-msgid "Bad backup file"
-msgstr "Chybný zálohovací súbor"
-
-#: ../../partition_table.pm_.c:794
-#, c-format
-msgid "Error writing to file %s"
-msgstr "chyba pri zápise do súboru %s"
-
-#: ../../partition_table_raw.pm_.c:186
-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 ""
-"Na vašom disku sa deje niečo nedobré.\n"
-"Zlyhal test integrity dát. Akýkoľvek zápis dát može skončiť\n"
-"neúspechom a stratou dát."
-
-#: ../../pkgs.pm_.c:24
-msgid "must have"
-msgstr "musí mať"
-
-#: ../../pkgs.pm_.c:25
-msgid "important"
-msgstr "dôležité"
-
-#: ../../pkgs.pm_.c:26
-msgid "very nice"
-msgstr "veľmi pekné"
-
-#: ../../pkgs.pm_.c:27
-msgid "nice"
-msgstr "pekné"
-
-#: ../../pkgs.pm_.c:28
-msgid "maybe"
-msgstr "možno"
-
-#: ../../printer.pm_.c:23
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../printer.pm_.c:24
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../printer.pm_.c:25
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
-
-#: ../../printer.pm_.c:26
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Tlač, neukladaj do fronty."
-
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
-msgid "CUPS"
-msgstr "USB"
-
-#: ../../printer.pm_.c:33
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../printer.pm_.c:34
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../printer.pm_.c:35
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../printer.pm_.c:47
-msgid "Local printer"
-msgstr "Lokálna tlačiareň"
-
-#: ../../printer.pm_.c:48
-msgid "Remote printer"
-msgstr "Vzdialená tlačiareň"
-
-#: ../../printer.pm_.c:49
-msgid "Printer on remote CUPS server"
-msgstr "Tlačiareň na vzdialenom CUPS serveri"
-
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
-msgid "Printer on remote lpd server"
-msgstr "Tlačiareň na vzdialenom lpd serveri"
-
-#: ../../printer.pm_.c:51
-msgid "Network printer (TCP/Socket)"
-msgstr "Sieťová tlačiareň (TCP/Soket)"
-
-#: ../../printer.pm_.c:52
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Tlačiareň na vzdialenom SMB/Windows 95/98/NT serveri"
-
-#: ../../printer.pm_.c:53
-msgid "Printer on NetWare server"
-msgstr "Tlačiareň na vzdialenom NetWare serveri"
-
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
-msgid "Enter a printer device URI"
-msgstr "Vložte URI zariadenia tlačiarne"
-
-#: ../../printer.pm_.c:55
-msgid "Pipe job into a command"
-msgstr "Presmeruj výstup do príkazu"
-
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
-msgid "Unknown model"
-msgstr "Neznámy model"
-
-#: ../../printer.pm_.c:532
-msgid "Local Printers"
-msgstr "Lokálne tlačiarne"
-
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
-msgid "Remote Printers"
-msgstr "Vzdialené tlačiarne"
-
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
-#, c-format
-msgid " on parallel port \\/*%s"
-msgstr " na paralelnom porte \\/*%s"
-
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
-#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ", USB tlačiareň \\/*%s"
-
-#: ../../printer.pm_.c:549
-#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ", multifunkčné zariadenie na paralelnom porte \\/*%s"
-
-#: ../../printer.pm_.c:552
-msgid ", multi-function device on USB"
-msgstr ", multifunkčné zariadenie na USB"
-
-#: ../../printer.pm_.c:554
-msgid ", multi-function device on HP JetDirect"
-msgstr ", multifunkčné zariadenie HP JetDirect"
-
-#: ../../printer.pm_.c:556
-msgid ", multi-function device"
-msgstr ", multifunkčné zariadenie "
-
-#: ../../printer.pm_.c:559
-#, c-format
-msgid ", printing to %s"
-msgstr ", tlač na %s"
-
-#: ../../printer.pm_.c:561
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "na LPD serveri \"%s\", tlačiareň \"%s\""
-
-#: ../../printer.pm_.c:563
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP host \"%s\", port %s"
-
-#: ../../printer.pm_.c:567
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "na Windows serveri \"%s\", zložka \"%s\""
-
-#: ../../printer.pm_.c:571
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "na Novell serveri \"%s\", tlačiareň \"%s\""
-
-#: ../../printer.pm_.c:573
-#, c-format
-msgid ", using command %s"
-msgstr ", použitím príkazu %s"
-
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
-msgid "Raw printer (No driver)"
-msgstr "Základná tlačiareň (bez ovládača)"
-
-#: ../../printer.pm_.c:841
-#, c-format
-msgid "(on %s)"
-msgstr "(nal %s)"
-
-#: ../../printer.pm_.c:843
-msgid "(on this machine)"
-msgstr "(na tomto stroji)"
-
-#: ../../printer.pm_.c:868
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Na CUPS server \"%s\""
-
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
-msgid " (Default)"
-msgstr " (Predvoľba)"
-
-#: ../../printerdrake.pm_.c:22
-msgid "Select Printer Connection"
-msgstr "Zvoľte pripojenie tlačiarne"
-
-#: ../../printerdrake.pm_.c:23
-msgid "How is the printer connected?"
-msgstr "Ako je tlačiareň pripojená?"
-
-#: ../../printerdrake.pm_.c:25
-msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Tlačiarne na vzdialenom CUPS serveri nemusíte konfigurovať lokálne; "
-"tlačiarne budú rozpoznané automaticky."
-
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Konfigurácia"
-
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Vzdialený CUPS server"
-
-#: ../../printerdrake.pm_.c:71
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:72
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:76
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP adresa vyzerá napríklad takto: 192.168.1.4"
-
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
-msgid "The port number should be an integer!"
-msgstr "Čislo portu má byť celé kladné číslo!"
-
-#: ../../printerdrake.pm_.c:87
-msgid "CUPS server IP"
-msgstr "IP CUPS servera"
-
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
-msgid "Port"
-msgstr "Port"
-
-#: ../../printerdrake.pm_.c:90
-msgid "Automatic CUPS configuration"
-msgstr "Automatické nastavenie CUPS"
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Zisťujem zariadenia..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test portov"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
-msgid "Add a new printer"
-msgstr "Pridaj novú tlačiareň"
-
-#: ../../printerdrake.pm_.c:168
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
-msgid "Local Printer"
-msgstr "Lokálna tlačiareň"
-
-#: ../../printerdrake.pm_.c:177
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
-"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:186
-msgid "Auto-detect printers"
-msgstr "Automatická detekcia tlačiarní"
-
-#: ../../printerdrake.pm_.c:204
-msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:223
-msgid "Auto-Detection of Printers"
-msgstr "Automatická detekcia tlačiarní"
-
-#: ../../printerdrake.pm_.c:224
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Použiť auto-detekciu"
-
-#: ../../printerdrake.pm_.c:228
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Vybrať užívateľov manuálne"
-
-#: ../../printerdrake.pm_.c:256
-#, c-format
-msgid "Detected %s"
-msgstr "Nájdené %s"
-
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
-#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr "Tlačiareň na paralelnom porte \\/*%s"
-
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
-#, c-format
-msgid "USB printer \\/*%s"
-msgstr "USB tlačiareň \\/*%s"
-
-#: ../../printerdrake.pm_.c:379
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:383
-msgid "You must enter a device or file name!"
-msgstr "Musíte vložiť zariadenie alebo meno súboru!"
-
-#: ../../printerdrake.pm_.c:394
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "Nebola nájdená lokálna tlačiareň!"
-
-#: ../../printerdrake.pm_.c:395
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:396
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:407
-msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:408
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:410
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:411
-msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:413
-msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:414
-msgid "Please choose the port where your printer is connected to."
-msgstr "Prosím, zvoľte, na ktorý port je pripojená váša tlačiareň."
-
-#: ../../printerdrake.pm_.c:416
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:421
-msgid "You must choose/enter a printer/device!"
-msgstr "Musíte vložiť zariadenie tlačiarne"
-
-#: ../../printerdrake.pm_.c:441
-msgid "Manual configuration"
-msgstr "Ručné nastavenie"
-
-#: ../../printerdrake.pm_.c:467
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:482
-msgid "Installing HPOJ package..."
-msgstr "Inštalujem balíček HPOJ ..."
-
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
-msgstr "Kontrolujem zariadenia a konfigurujem HPOJ ..."
-
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr "Inštalujem balíček SANE ..."
-
-#: ../../printerdrake.pm_.c:517
-msgid "Scanning on your HP multi-function device"
-msgstr "Vyhľadávam na multi-funkčnom HP zariadení"
-
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
-msgstr "Nastavujem rozhranie tlačiarne pre prístup z CUPS ..."
-
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
-msgstr "Načítavam databázu tlačiarní ..."
-
-#: ../../printerdrake.pm_.c:624
-msgid "Remote lpd Printer Options"
-msgstr "Voľby vzdialenej lpd tlačiarne"
-
-#: ../../printerdrake.pm_.c:625
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Pre použitie vzdialenej lpd tlačiarne je potrebné zadať názov tlačového "
-"servera a názov tlačiarne na tomto serveri."
-
-#: ../../printerdrake.pm_.c:626
-msgid "Remote host name"
-msgstr "Názov vzdialeného počítača"
-
-#: ../../printerdrake.pm_.c:627
-msgid "Remote printer name"
-msgstr "Meno vzdialenej tlačiarne"
-
-#: ../../printerdrake.pm_.c:630
-msgid "Remote host name missing!"
-msgstr "Chýba názov vzdialeného počítača"
-
-#: ../../printerdrake.pm_.c:634
-msgid "Remote printer name missing!"
-msgstr "Chýba názov vzdialenej tlačiarne!"
-
-#: ../../printerdrake.pm_.c:702
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Voľby tlačiarne SMB/Windows 9x/NT"
-
-#: ../../printerdrake.pm_.c:703
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Pre tlač na SMB tlačiareň je potrebné zadať názov SMB servera (nebýva vždy\n"
-"zhodný s TCP/IP názvom počítača) a prípadne IP adresu tlačového servera, "
-"ako\n"
-"aj názov zdieľaného zariadenia pre tlačiareň a vhodné meno používateľa,\n"
-"heslo a pracovnú skupinu."
-
-#: ../../printerdrake.pm_.c:704
-msgid "SMB server host"
-msgstr "Názov SMB servra"
-
-#: ../../printerdrake.pm_.c:705
-msgid "SMB server IP"
-msgstr "IP adresa SMB servra"
-
-#: ../../printerdrake.pm_.c:706
-msgid "Share name"
-msgstr "Názov zdieľaného zariadenia"
-
-#: ../../printerdrake.pm_.c:709
-msgid "Workgroup"
-msgstr "Pracovná skupina"
-
-#: ../../printerdrake.pm_.c:716
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Musíte zadať meno, alebo IP adresu servera!"
-
-#: ../../printerdrake.pm_.c:720
-msgid "Samba share name missing!"
-msgstr "Chýba meno samba zložky!"
-
-#: ../../printerdrake.pm_.c:725
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:726
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:736
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:739
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:801
-msgid "NetWare Printer Options"
-msgstr "Voľby tlačiarne pre NetWare"
-
-#: ../../printerdrake.pm_.c:802
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Pre tlač na NetWare tlačiareň je potrebné zadať názov NetWare tlačového\n"
-"servera (nebýva vždy zhodný s TCP/IP názvom počítača), ako aj názov fronty\n"
-"tlačiarne, ku ktorej chcete pristupovať a vhodné meno používateľa s heslom."
-
-#: ../../printerdrake.pm_.c:803
-msgid "Printer Server"
-msgstr "Tlačový server"
-
-#: ../../printerdrake.pm_.c:804
-msgid "Print Queue Name"
-msgstr "Názov tlačovej fronty"
-
-#: ../../printerdrake.pm_.c:809
-msgid "NCP server name missing!"
-msgstr "Chýba meno NCP servera!"
-
-#: ../../printerdrake.pm_.c:813
-msgid "NCP queue name missing!"
-msgstr "Chýba meno NCP fronty!"
-
-#: ../../printerdrake.pm_.c:852
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Soket nastavenia tlačiarne"
-
-#: ../../printerdrake.pm_.c:853
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
-msgstr ""
-"Pre tlač na TCP, alebo socket tlačiareň musíte zadať meno hostiteľa "
-"tlačiarne a prípadne číslo portu. Na HP JetDirect serveroch je číslo portu "
-"väčšinou 9100, na iných serveroch to môže byť odlišné. Pozrite si manuál."
-
-#: ../../printerdrake.pm_.c:854
-msgid "Printer host name"
-msgstr "Hostiteľské meno tlačiarne"
-
-#: ../../printerdrake.pm_.c:858
-msgid "Printer host name missing!"
-msgstr "Chýba hostiteľské meno tlačiarne"
-
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
-msgid "Printer Device URI"
-msgstr "URI tlačiarne"
-
-#: ../../printerdrake.pm_.c:888
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Pre prístup k tlačiarni zadajte jej URI. URI musí spĺňať CUPS alebo Foomatic "
-"špecifikácie."
-
-#: ../../printerdrake.pm_.c:903
-msgid "A valid URI must be entered!"
-msgstr "Musíte zadať správne URI!"
-
-#: ../../printerdrake.pm_.c:1004
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Každá tlačiareň potrebuje meno (napríklad \"print\"). Položky Popis a Poloha "
-"nie je potrebné vyplňovať. Sú to iba komentáre pre užívateľov."
-
-#: ../../printerdrake.pm_.c:1005
-msgid "Name of printer"
-msgstr "Meno tlačiarne"
-
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Popis"
-
-#: ../../printerdrake.pm_.c:1007
-msgid "Location"
-msgstr "Umiestnenie"
-
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
-msgstr "Pripravujem databázu tlačiarní ..."
-
-#: ../../printerdrake.pm_.c:1112
-#, fuzzy
-msgid "Your printer model"
-msgstr "Meno vzdialenej tlačiarne"
-
-#: ../../printerdrake.pm_.c:1113
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
-#, fuzzy
-msgid "The model is correct"
-msgstr "Je to správne?"
-
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
-#, fuzzy
-msgid "Select model manually"
-msgstr "Vybrať užívateľov manuálne"
-
-#: ../../printerdrake.pm_.c:1139
-msgid "Printer model selection"
-msgstr "Výber modelu tlačiarne"
-
-#: ../../printerdrake.pm_.c:1140
-msgid "Which printer model do you have?"
-msgstr "Aký model tlačiarne máte?"
-
-#: ../../printerdrake.pm_.c:1141
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1144
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1220
-msgid "OKI winprinter configuration"
-msgstr "Nastavenie OKI winprinter"
-
-#: ../../printerdrake.pm_.c:1221
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
-msgid "Lexmark inkjet configuration"
-msgstr "Nastavenie Lexmark inkjet"
-
-#: ../../printerdrake.pm_.c:1265
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1292
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Go to the US site and click on the \"Drivers\" button. Then choose "
-"your model and afterwards \"Linux\" as operating system. The drivers come as "
-"RPM packages or shell scripts with interactive graphical installation. You "
-"do not need to do this configuration by the graphical frontends. Cancel "
-"directly after the license agreement. Then print printhead alignment pages "
-"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
-"program."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1508
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Základné nastavenia tlačiarne\n"
-"\n"
-"Uistite sa, že veľkosť papiera, typ atramentu, tlačový mód (ak existuje) a "
-"tiež hardvérové nastavenie laserových tlačiarní (pamäť, duplex, ...) sú "
-"nastavené správne. Príliš vysoká kvalita, či rozlíšenie tlače spôsobuje "
-"spomalenie."
-
-#: ../../printerdrake.pm_.c:1517
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Parameter %s musí byť celé číslo!"
-
-#: ../../printerdrake.pm_.c:1521
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Parameter %s musí byť číslo!"
-
-#: ../../printerdrake.pm_.c:1526
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Parameter %s je mimo rozsahu!"
-
-#: ../../printerdrake.pm_.c:1565
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Želáte si nastaviť túto tlačiateň (\"%s\")\n"
-"ako predvolenú?"
-
-#: ../../printerdrake.pm_.c:1582
-msgid "Test pages"
-msgstr "Testovacie stránky"
-
-#: ../../printerdrake.pm_.c:1583
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Prosím zvoľte testovacie stránky, ktoré chcete vytlačiť\n"
-"Tlač testovacej stánky foto kvality môže trvať trošku dlhšie a na laserovej "
-"tlačiarni s nedostatkom pamäte sa nemusí vytlačiť vôbec. Vo večšine "
-"prípadoch postačuje vyskúšať štandartnú testovaciu stránku."
-
-#: ../../printerdrake.pm_.c:1587
-msgid "No test pages"
-msgstr "Žiadne testovacie stránky"
-
-#: ../../printerdrake.pm_.c:1588
-msgid "Print"
-msgstr "Tlač"
-
-#: ../../printerdrake.pm_.c:1590
-msgid "Standard test page"
-msgstr "Štandardné testovacie stránky"
-
-#: ../../printerdrake.pm_.c:1593
-msgid "Alternative test page (Letter)"
-msgstr "Alternatívna testovacia stránka (Letter)"
-
-#: ../../printerdrake.pm_.c:1596
-msgid "Alternative test page (A4)"
-msgstr "Alternatívna testovacia stránka (A4)"
-
-#: ../../printerdrake.pm_.c:1598
-msgid "Photo test page"
-msgstr "Fotografická testovacia stránka"
-
-#: ../../printerdrake.pm_.c:1602
-msgid "Do not print any test page"
-msgstr "Bez tlače testovacích stránok"
-
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
-msgid "Printing test page(s)..."
-msgstr "Prebieha tlač testovacej stránky..."
-
-#: ../../printerdrake.pm_.c:1635
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Testovacia stránka bola zaslaná tlačiarni.\n"
-"Kým začne tlačiareň tlačiť, môže to chvíľku trvať.\n"
-"Stav tlače:\n"
-"%s\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:1639
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Testovacia stránka bola zaslaná tlačiarni.\n"
-"Kým začne tlačiareň tlačiť, môže to chvíľku trvať.\n"
-
-#: ../../printerdrake.pm_.c:1646
-msgid "Did it work properly?"
-msgstr "Pracuje správne?"
-
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
-msgid "Raw printer"
-msgstr "Základná tlačiareň"
-
-#: ../../printerdrake.pm_.c:1685
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1687
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1696
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1721
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1725
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1729
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zatvoriť"
-
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Tlač/Skenovanie na \"%s\""
-
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Tlačím na tlačiareň \"%s\""
-
-#: ../../printerdrake.pm_.c:1744
-msgid "Print option list"
-msgstr "Zobraz zoznam parametrov"
-
-#: ../../printerdrake.pm_.c:1766
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1772
-#, c-format
-msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
-msgstr "Načítavam dáta tlačiarne ..."
-
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
-msgid "Transfer printer configuration"
-msgstr "Prenes nastavenie tlačiarne"
-
-#: ../../printerdrake.pm_.c:1815
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1818
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS nepodporuje tlačiarne na Novell serveroch, alebo tlačiarne, ktoré "
-"posielajú dáta vo free-formed command.\n"
-
-#: ../../printerdrake.pm_.c:1820
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ podporuje iba lokálne tlačiarne, vzdialené LPD a Socket/TCP tlačiarne.\n"
-
-#: ../../printerdrake.pm_.c:1822
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD a LPRng nepodporujú IPP tlačiarne.\n"
-
-#: ../../printerdrake.pm_.c:1824
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1825
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1826
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"Označte tlačiareň ktorú si želáte preniesť a stlačte \n"
-"\"Prenos\"."
-
-#: ../../printerdrake.pm_.c:1829
-msgid "Do not transfer printers"
-msgstr "Neprenášaj tlačiarne"
-
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
-msgid "Transfer"
-msgstr "Prenos"
-
-#: ../../printerdrake.pm_.c:1843
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Tlačiareň s menom \"%s\" už pod %s existuje.\n"
-"Stlačte \"Prenos\" na prepísanie.\n"
-"Môžete tiež napísať nové meno alebo preskočiť\n"
-"túto tlačiareň."
-
-#: ../../printerdrake.pm_.c:1851
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Meno tlačiarne môže obsahovať iba písmená, čísla a podčiarkovník"
-
-#: ../../printerdrake.pm_.c:1856
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"Tlačiareň \"%s\" už existuje.\n"
-"Želáte si prepísať nastavenie ?"
-
-#: ../../printerdrake.pm_.c:1864
-msgid "New printer name"
-msgstr "Nové meno tlačiarne"
-
-#: ../../printerdrake.pm_.c:1867
-#, c-format
-msgid "Transferring %s ..."
-msgstr "Prenášam %s ..."
-
-#: ../../printerdrake.pm_.c:1878
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
-msgstr "Obnova dát tlačiarne ..."
-
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
-msgid "Configuration of a remote printer"
-msgstr "Nastavenie vzdialenej tlačiarne"
-
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
-msgstr "Spúšťam sieť..."
-
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
-msgid "Configure the network now"
-msgstr "Teraz nastaviť pripojenie siete"
-
-#: ../../printerdrake.pm_.c:1931
-msgid "Network functionality not configured"
-msgstr "Sieťové pripojenie nieje nastavené"
-
-#: ../../printerdrake.pm_.c:1932
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1935
-msgid "Go on without configuring the network"
-msgstr "Pokračuj bez nastavenia siete."
-
-#: ../../printerdrake.pm_.c:1968
-msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1969
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
-msgstr "Reštartujem tlačový systém ..."
-
-#: ../../printerdrake.pm_.c:2017
-msgid "high"
-msgstr "vysoká"
-
-#: ../../printerdrake.pm_.c:2017
-msgid "paranoid"
-msgstr "paranoidná"
-
-#: ../../printerdrake.pm_.c:2018
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2019
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2051
-msgid "Starting the printing system at boot time"
-msgstr "Spúšťať tlačový systém pri spustení systému"
-
-#: ../../printerdrake.pm_.c:2052
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
-msgid "Checking installed software..."
-msgstr "Kontrolujem inštalovaný softvér..."
-
-#: ../../printerdrake.pm_.c:2117
-msgid "Removing LPRng..."
-msgstr "Odstraňujem PLRng..."
-
-#: ../../printerdrake.pm_.c:2147
-msgid "Removing LPD..."
-msgstr "Odstraňujem LPD..."
-
-#: ../../printerdrake.pm_.c:2205
-msgid "Select Printer Spooler"
-msgstr "Zvoľte tlačovú frontu"
-
-#: ../../printerdrake.pm_.c:2206
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Aký typ tlačového systému chcete používať?"
-
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "Konfigurujem tlačiareň \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2252
-#, fuzzy
-msgid "Installing Foomatic ..."
-msgstr "Inštalujem balíčky"
-
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
-msgid "Printer options"
-msgstr "Voľby tlačiarne"
-
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
-msgstr "Pripravujem PrinterDrake ..."
-
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Konfigurujem tlačiareň \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2355
-msgid "Would you like to configure printing?"
-msgstr "Želáte si nastaviť tlačiareň?"
-
-#: ../../printerdrake.pm_.c:2367
-msgid "Printing system: "
-msgstr "Tlačový systém:"
-
-#: ../../printerdrake.pm_.c:2415
-msgid "Printerdrake"
-msgstr "Printerdrake"
-
-#: ../../printerdrake.pm_.c:2419
-#, fuzzy
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org."
-msgstr ""
-"Momentálne sú nastavené tieto tlačiarne. Spravte dvojklik na meno tlačiarne "
-"ak si želáte zmenit jej nastavenia, alebo prezrieť informácie."
-
-#: ../../printerdrake.pm_.c:2420
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"Momentálne sú nastavené tieto tlačiarne. Spravte dvojklik na meno tlačiarne "
-"ak si želáte zmenit jej nastavenia, alebo prezrieť informácie."
-
-#: ../../printerdrake.pm_.c:2446
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2464
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Nastavenie tlačového systému"
-
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
-msgid "Normal Mode"
-msgstr "Normálny mód"
-
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
-msgid "Do you want to configure another printer?"
-msgstr "Želáte si nastaviť inú tlačiareň ?"
-
-#: ../../printerdrake.pm_.c:2711
-msgid "Modify printer configuration"
-msgstr "Zmena nastavenia tlačiarne"
-
-#: ../../printerdrake.pm_.c:2713
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Tlačiareň %s\n"
-"čo si želáte zmeniť na tejto tlačiarni?"
-
-#: ../../printerdrake.pm_.c:2717
-msgid "Do it!"
-msgstr "Urob to!"
-
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
-msgid "Printer connection type"
-msgstr "Typ pripojenia tlačiarne"
-
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
-msgid "Printer name, description, location"
-msgstr "Meno, popis a poloha tlačiarne"
-
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
-msgid "Printer manufacturer, model, driver"
-msgstr "Výrobca tlačiarne, model, ovládač"
-
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
-msgid "Printer manufacturer, model"
-msgstr "Výrobca tlačiarne, model"
-
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
-msgid "Set this printer as the default"
-msgstr "Nastaviť tlačiaren ako predvolenú"
-
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
-msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
-msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
-msgid "Print test pages"
-msgstr "Tlač testovacích stránok"
-
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
-msgid "Know how to use this printer"
-msgstr "Viem, ako používať túto tlačiareň"
-
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
-msgid "Remove printer"
-msgstr "Odstrániť tlačiareň"
-
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Odstraňujem starú tlačiareň \"%s\" ..."
-
-#: ../../printerdrake.pm_.c:2810
-msgid "Default printer"
-msgstr "Predvolená tlačiareň"
-
-#: ../../printerdrake.pm_.c:2811
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Tlačiareň \"%s\" je teraz nastavená ako predvolená."
-
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
-msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2816
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2819
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
-msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2825
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2828
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:2836
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Naozaj chcete odstrániť tlačiateň \"%s\"?"
-
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Odstraňujem tlačiareň \"%s\" ..."
-
-#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
-#: ../../proxy.pm_.c:78
-msgid "Proxy configuration"
-msgstr "Nastavenie proxy"
-
-#: ../../proxy.pm_.c:30
-msgid ""
-"Welcome to the proxy configuration utility.\n"
-"\n"
-"Here, you'll be able to set up your http and ftp proxies\n"
-"with or without login and password\n"
-msgstr ""
-"Vitajte v nástroji na nastavenie proxy servera.\n"
-"\n"
-"Teraz budete môcť nastavit používanie FTP a\n"
-"HTTP proxy serverov a prístupové heslá.\n"
-
-#: ../../proxy.pm_.c:38
-msgid ""
-"Please fill in the http proxy informations\n"
-"Leave it blank if you don't want an http proxy"
-msgstr ""
-"Prosím vyplňťe informácie pre HTTP proxy\n"
-"Nechajte prázdne ak nechcete HTTP proxy\n"
-"používať. "
-
-#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
-msgid "URL"
-msgstr "URL"
-
-#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-msgid "port"
-msgstr "port"
-
-#: ../../proxy.pm_.c:44
-msgid "Url should begin with 'http:'"
-msgstr "URL ma začínať 'http:'"
-
-#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-msgid "The port part should be numeric"
-msgstr "Port má byť v číselnom tvare"
-
-#: ../../proxy.pm_.c:59
-msgid ""
-"Please fill in the ftp proxy informations\n"
-"Leave it blank if you don't want an ftp proxy"
-msgstr ""
-"Prosím vyplňťe informácie pre FTP proxy\n"
-"Nechajte prázdne ak nechcete FTP proxy\n"
-"používať. "
-
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "URL ma začínať 'ftp:'"
-
-#: ../../proxy.pm_.c:79
-msgid ""
-"Please enter proxy login and password, if any.\n"
-"Leave it blank if you don't want login/passwd"
-msgstr ""
-"Prosím vložte prihlasovacie meno a heslo pre proxy.\n"
-"Nechajte prázdne ak heslo nepotrebujete. "
-
-#: ../../proxy.pm_.c:80
-msgid "login"
-msgstr "login"
-
-#: ../../proxy.pm_.c:82
-msgid "password"
-msgstr "heslo"
-
-#: ../../proxy.pm_.c:84
-msgid "re-type password"
-msgstr "heslo ešte raz"
-
-#: ../../proxy.pm_.c:88
-msgid "The passwords don't match. Try again!"
-msgstr "Hesla nesúhlasia. Skúste znova!"
-
-#: ../../raid.pm_.c:35
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Nemôžem pridať oddiel do _naformátovaného_ RAID poľa md%d"
-
-#: ../../raid.pm_.c:111
-#, c-format
-msgid "Can't write file %s"
-msgstr "Nemôžem zapísať súbor %s"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed"
-msgstr "mkraid zlyhal"
-
-#: ../../raid.pm_.c:136
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid zlyhal (možno nie sú nainštalované raidtools)"
-
-#: ../../raid.pm_.c:152
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Nie je dosť oddielov pre RAID úrovne %d\n"
-
-#: ../../services.pm_.c:14
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Spustenie ALSA (Advanced Linux Sound Architecture) zvukového systému"
-
-#: ../../services.pm_.c:15
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, periodický plánovač príkazov."
-
-#: ../../services.pm_.c:16
-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."
-msgstr ""
-"apmd sa používa pre monitorovanie (a zápis pomocou syslogu) stavu batérií.\n"
-"Môžete ho tiež použiť na vypnutie počítača keď sa baterky takmer minú."
-
-#: ../../services.pm_.c:18
-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 "Spúšťa príkazy nastavené cez príkaz at v stanovenom čase."
-
-#: ../../services.pm_.c:20
-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 "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron je štandardný UNIXový program, ktorý spúšťa príkazy naplánované\n"
-"užívateľom. vixie cron pridáva viac možností konfigurácie."
-
-#: ../../services.pm_.c:23
-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 pridá podporu myši textovo orientovaným aplikáciám ako napríklad\n"
-"Midnight Commander. Takisto umožní v textových konzolách kopírovanie\n"
-"pomocou myši a podporu pop-up menu."
-
-#: ../../services.pm_.c:26
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake vyhľadáva nový harvér a nastavuje parametre\n"
-"nového alebo zmeneného hardvéru."
-
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr "Apache je WWW server. Je používaný na poskytovanie HTML stránok a CGI."
-
-#: ../../services.pm_.c:29
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Internet superserver démon (väčšinou nazývaný inetd) poskytuje mnoho\n"
-"služieb súvisiacich s internetom. Je zodpovedný za spúšťanie služieb\n"
-"ako telnet, ftp, rsh, rlogin a iné. Vypnutím inetd vypnete všetky\n"
-"služby, za ktoré je zodpovedný."
-
-#: ../../services.pm_.c:33
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Spustí filtrovanie paketov pre Linux kernel verzie 2.2 na \n"
-"ochranu vášho počítača pred útokmi zo siete."
-
-#: ../../services.pm_.c:35
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Tento balík nahrá do pamäti vybranú klávesnicovú mapu z nastavenia v\n"
-"/etc/sysconfig/keyboard. Nastavenie sa dá meniť napríklad pomocou\n"
-"konfiguračného nástroja kbdconfig."
-
-#: ../../services.pm_.c:38
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Automatická obnova hlavičiek jadra v /boot\n"
-"pre /usr/include/linux/{autoconf,version}.h"
-
-#: ../../services.pm_.c:40
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Automatická detekcia a konfigurácia hardvéru pri štarte."
-
-#: ../../services.pm_.c:41
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf niekedy nastaví vykonanie rôznych úloh počas\n"
-"zavádzania systému pre udržanie konfigurácie."
-
-#: ../../services.pm_.c:43
-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 je tlačový démon, ktorý je požadovaný pre správnu prácu nástroja lpr."
-
-#: ../../services.pm_.c:45
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr "Linux Virtual Server sa používa na vysoko výkonné a HA riešenia."
-
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) je doménový menný server (DNS) používaný na preklad z mena "
-"počítača na IP adresu."
-
-#: ../../services.pm_.c:48
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Pripája a odpája všetky NFS, SMB (Windows) a NCP (NetWare)\n"
-"body pripojenia."
-
-#: ../../services.pm_.c:50
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktivuje/Deaktivuje všetky sieťové zariadenia konfigurované pre spustenie\n"
-"po zavedení systému."
-
-#: ../../services.pm_.c:52
-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 je známy protokol, určený na zdielanie súborov cez TCP/IP siete.\n"
-"Táto služba dovolí NFS servru exportovať adresáre predvolené v súbore\n"
-"/etc/exports"
-
-#: ../../services.pm_.c:55
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS je známy protokol, určený na zdielanie súborov cez TCP/IP siete.\n"
-"Táto služba pridá NFS servru funkciu lockovania súborov."
-
-#: ../../services.pm_.c:57
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Automaticky zapne num-lock pod konzolou a XFree pocas\n"
-"štartu systému."
-
-#: ../../services.pm_.c:59
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Podpora pre OKI 4w a kompatibilné win tlačiarne."
-
-#: ../../services.pm_.c:60
-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 "
-"have\n"
-"it installed on machines that don't need it."
-msgstr ""
-"Podpora PCMCIA je väčšinou používaná na sprístupnenie sieťovej karty,\n"
-"alebo modemu v notebookoch."
-
-#: ../../services.pm_.c:63
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Portmaper spravuje RPC pripojenia, ktoré sú používané protokolmi ako\n"
-"NFS a NIS. Portmap server musí byť spustený na počítačoch, ktoré sú \n"
-"servrami pre protokoly používajúce RPC mechanizmus."
-
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix je Mail Transport Agent, čiže program, ktorý prenáša e-maily z "
-"počítača na počítač."
-
-#: ../../services.pm_.c:67
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Ukladá a obnovuje system entropy pool pre vyššiu kvalitu generátora\n"
-"náhodných čísel."
-
-#: ../../services.pm_.c:69
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-msgstr ""
-"Priradí základné zariadenie k blokovému (ako napríklad oddiely\n"
-"pevného disku) pre použitie v aplikáciách ako Oracle"
-
-#: ../../services.pm_.c:71
-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 démon umožňuje automatickú úpravu smerovacích IP tabuliek\n"
-"cez RIP protokol. RIP je častejšie používaný na malých sietiach. Pre\n"
-"komplexnejšie siete je potrebný komplexný smerovací protokol."
-
-#: ../../services.pm_.c:74
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Rstat protokol umožňuje užívateľom získavať cez sieť\n"
-"informácie o zaťažení akéhokoľvek počítača na sieti."
-
-#: ../../services.pm_.c:76
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Rusers protokol umožňuje zistiť užívateľom cez sieť, kto je\n"
-"prihlásený na odpovedajúcich počítačoch."
-
-#: ../../services.pm_.c:78
-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 protokol zašle vzdialeným užívateľom zoznam všetkých užívateľov\n"
-"prihlásený na systéme, na ktorom je spustený rwho démon (podobne ako finger)."
-
-#: ../../services.pm_.c:80
-msgid "Launch the sound system on your machine"
-msgstr "Spustiť zvukový systém na Vašom počítači"
-
-#: ../../services.pm_.c:81
-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 je možnosť, ktorú využíva mnoho démonov na ukladanie správ\n"
-"do rôznych systémových log súborov. Je dobré, keď je syslog vždy spustený."
-
-#: ../../services.pm_.c:83
-msgid "Load the drivers for your usb devices."
-msgstr "Nahratie ovládačov pre vaše usb zariadenia."
-
-#: ../../services.pm_.c:84
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Spúšťa X Font Server (je potrebný pre spustenie XFree)."
-
-#: ../../services.pm_.c:110 ../../services.pm_.c:152
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Zvoľte si služby, ktoré budú spustené automaticky po štarte systému"
-
-#: ../../services.pm_.c:122
-msgid "Printing"
-msgstr "Tlačím"
-
-#: ../../services.pm_.c:123
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../services.pm_.c:126
-msgid "File sharing"
-msgstr "Zdielanie súborov"
-
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
-msgid "System"
-msgstr "Systém"
-
-#: ../../services.pm_.c:133
-msgid "Remote Administration"
-msgstr "Vzdialená správa"
-
-#: ../../services.pm_.c:141
-msgid "Database Server"
-msgstr "Databázový server"
-
-#: ../../services.pm_.c:170
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Služby: %d aktivované %d registrované"
-
-#: ../../services.pm_.c:186
-msgid "Services"
-msgstr "Služby"
-
-#: ../../services.pm_.c:198
-msgid "running"
-msgstr "beží"
-
-#: ../../services.pm_.c:198
-msgid "stopped"
-msgstr "stopnuté"
-
-#: ../../services.pm_.c:212
-msgid "Services and deamons"
-msgstr "Služby a démoni"
-
-#: ../../services.pm_.c:217
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Žiadne rozširujúce informácie\n"
-"o tejto službe, prepáčte."
-
-#: ../../services.pm_.c:224
-msgid "On boot"
-msgstr "Pri štarte"
-
-#: ../../services.pm_.c:236
-msgid "Start"
-msgstr "Štart"
-
-#: ../../services.pm_.c:236
-msgid "Stop"
-msgstr "Stop"
-
-#: ../../share/advertising/00-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
-
-#: ../../share/advertising/00-thanks.pl_.c:11
-msgid ""
-"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
-msgstr ""
-
-#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
-msgid "Join the Free Software world"
-msgstr "Protokol pre zvyšok sveta"
-
-#: ../../share/advertising/01-gnu.pl_.c:10
-msgid ""
-"Get to know the Open Source community and become a member. Learn, teach, and "
-"help others by joining the many discussion forums that you will find in our "
-"\"Community\" webpages"
-msgstr ""
-
-#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
-msgid "Internet and Messaging"
-msgstr "Prístup k internetu"
-
-#: ../../share/advertising/02-internet.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best software to access everything the "
-"Internet has to offer: Surf the web & view animations with Mozilla and "
-"Konqueror, exchange email & organize your personal information with "
-"Evolution and Kmail, and much more"
-msgstr ""
-
-#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
-msgid "Multimedia and Graphics"
-msgstr "Multimédia - Grafika"
-
-#: ../../share/advertising/03-graphic.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 lets you push your multimedia computer to its limits! Use "
-"the latest software to play music and audio files, edit and organize your "
-"images and photos, watch TV and videos, and much more"
-msgstr ""
-
-#: ../../share/advertising/04-develop.pl_.c:9
-msgid "Development"
-msgstr "Vývojárska"
-
-#: ../../share/advertising/04-develop.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 is the ultimate development platform. Discover the power "
-"of the GNU gcc compiler as well as the best Open Source development "
-"environments"
-msgstr ""
-
-#: ../../share/advertising/05-contcenter.pl_.c:9
-#, fuzzy
-msgid "Mandrake Control Center"
-msgstr "Kontrolné centrum"
-
-#: ../../share/advertising/05-contcenter.pl_.c:10
-msgid ""
-"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
-"customizing and configuring your Mandrake system"
-msgstr ""
-
-#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
-msgid "User interfaces"
-msgstr "Sieťove rozhranie"
-
-#: ../../share/advertising/06-user.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides 11 different graphical desktop environments and "
-"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
-"0.8, and the rest"
-msgstr ""
-
-#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
-msgid "Server Software"
-msgstr "Názov SMB servra"
-
-#: ../../share/advertising/07-server.pl_.c:10
-msgid ""
-"Transform your machine into a powerful server with just a few clicks of the "
-"mouse: Web server, email, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/08-games.pl_.c:9
-msgid "Games"
-msgstr "Hry"
-
-#: ../../share/advertising/08-games.pl_.c:10
-msgid ""
-"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
-"cards, sports, strategy, ..."
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:9
-msgid "MandrakeCampus"
-msgstr ""
-
-#: ../../share/advertising/09-MDKcampus.pl_.c:10
-msgid ""
-"Would you like to learn Linux simply, quickly, and for free? MandrakeSoft "
-"provides free Linux training, as well as a way to test your progress, at "
-"MandrakeCampus -- our online training center"
-msgstr ""
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert"
-msgstr "Expert"
-
-#: ../../share/advertising/10-MDKexpert.pl_.c:10
-msgid ""
-"Quality support from the Linux Community, and from MandrakeSoft, is just "
-"around the corner. And if you're already a Linux veteran, become an \"Expert"
-"\" and share your knowledge at our support website"
-msgstr ""
-
-#: ../../share/advertising/11-consul.pl_.c:9
-#, fuzzy
-msgid "MandrakeConsulting"
-msgstr "Popis Mandrake Nástrojov"
-
-#: ../../share/advertising/11-consul.pl_.c:10
-msgid ""
-"For all of your IT projects, our consultants are ready to analyze your "
-"requirements and offer a customized solution. Benefit from MandrakeSoft's "
-"vast experience as a Linux producer to provide a true IT alternative for "
-"your business organization"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:9
-msgid "MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-MDKstore.pl_.c:10
-msgid ""
-"A full range of Linux solutions, as well as special offers on products and "
-"'goodies', are available online at our e-store"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:9
-msgid ""
-"For more information on MandrakeSoft's Professional Services and commercial "
-"offerings, please see the following web page:"
-msgstr ""
-
-#: ../../share/advertising/13-Nvert.pl_.c:11
-msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
-
-#: ../../standalone.pm_.c:25
-msgid "Installing packages..."
-msgstr "Inštalujem balíčky"
-
-#: ../../standalone/diskdrake_.c:85
-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 ""
-"Nedokážem prečítať tabuľku rozdelenia disku, je príliš poškodená\n"
-"Skúsim odstrániť chybné oddiely"
-
-#: ../../standalone/drakautoinst_.c:45
-msgid "Error!"
-msgstr "Chyba!"
-
-#: ../../standalone/drakautoinst_.c:46
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Nemôžem nájst potrebný image file `%s'."
-
-#: ../../standalone/drakautoinst_.c:48
-msgid "Auto Install Configurator"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:49
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"Teraz môžete nastaviť Autoinštalačnú disketu. Táto možnosť je čiastočne "
-"nebezpečná a preto ju používajte opatrne\n"
-"\n"
-"Budete môcť zopakovať inštaláciu, ktorú ste spravili na tento počítač, s "
-"nekoľkými interaktívnymi krokmi (aby ste mohli zmeniť ich hodnoty)\n"
-"\n"
-"Pre maximálnu bezpečnosť, rozdelenie disku a formátovanie sa nikdy nebude "
-"robiť automaticky.\n"
-"\n"
-"Želáte si pokračovať?"
-
-#: ../../standalone/drakautoinst_.c:71
-msgid "Automatic Steps Configuration"
-msgstr "Automatické kroky konfigurácie"
-
-#: ../../standalone/drakautoinst_.c:72
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Prosím pre každý krok zvoľte či sa má zopakovať ako pri vašej inštalácii "
-"alebo znovu nastaviť"
-
-#: ../../standalone/drakautoinst_.c:145
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Vitajte.\n"
-"\n"
-"Parametre automatickej inštalácie sú dosiahnuteľné na lište vľavo"
-
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
-#: ../../standalone/scannerdrake_.c:106
-msgid "Congratulations!"
-msgstr "Gratulujeme!"
-
-#: ../../standalone/drakautoinst_.c:244
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Disketa bola úspešne vytvorená.\n"
-"Teraz môžete zopakovať inštaláciu."
-
-#: ../../standalone/drakautoinst_.c:282
-msgid "Auto Install"
-msgstr "Automatická inštalácia"
-
-#: ../../standalone/drakautoinst_.c:352
-msgid "Add an item"
-msgstr "Pridaj položku"
-
-#: ../../standalone/drakautoinst_.c:359
-msgid "Remove the last item"
-msgstr "Odstráň poslednú položku"
-
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
-msgid ""
-"\n"
-" DrakBackup Report \n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup report \n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:450
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup Démon report\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" DrakBackup detaily reportu\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:476
-msgid "total progess"
-msgstr "celkový postup"
-
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
-msgid "Backup system files..."
-msgstr "Záloha systémových súborov..."
-
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
-msgid "Hard Disk Backup files..."
-msgstr "Záloha na pevný disk. Súbory..."
-
-#: ../../standalone/drakbackup_.c:615
-msgid "Backup User files..."
-msgstr "Zálohovať užívateľské súbory..."
-
-#: ../../standalone/drakbackup_.c:616
-msgid "Hard Disk Backup Progress..."
-msgstr "Stav zálohy na pevný disk..."
-
-#: ../../standalone/drakbackup_.c:666
-msgid "Backup Other files..."
-msgstr "Zálohovať iné súbory..."
-
-#: ../../standalone/drakbackup_.c:674
-#, c-format
-msgid ""
-"file list send by FTP : %s\n"
-" "
-msgstr ""
-"Zoznam súborov odoslaných cez FTP : %s\n"
-" "
-
-#: ../../standalone/drakbackup_.c:677
-msgid ""
-"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"(!) Chzba FTP pripojenia: Nebolo možné odoslať zálohovacie súbory cez FTP.\n"
-
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Chzba počas odosielania e-mailu. \n"
-
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
-msgid "File Selection"
-msgstr "Výber súborov"
-
-#: ../../standalone/drakbackup_.c:755
-msgid "Select the files or directories and click on 'Add'"
-msgstr "Zvoľte súbory a adresáre a kliknite na 'Pridaj'"
-
-#: ../../standalone/drakbackup_.c:790
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Zvoľte prosím všetky volby, ktoré potrebujete.\n"
-
-#: ../../standalone/drakbackup_.c:791
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"Tieto nastavenia môžu zálohovať a obnovovať všetky súbory v adresári /etc.\n"
-
-#: ../../standalone/drakbackup_.c:792
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Záloha systémových súborov. (adresár /etc )"
-
-#: ../../standalone/drakbackup_.c:793
-msgid "Use incremental backup (do not replace old backups)"
-msgstr "Použi prírastkové zálohovanie (bez prepisovania starých záloh)"
-
-#: ../../standalone/drakbackup_.c:794
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Nezahrnovať kritické súbory (passwd, group, fstab)"
-
-#: ../../standalone/drakbackup_.c:795
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"S týmto nastavením budete schopný obnoviť ktorúkoľvek\n"
-" verziu vášho /etc adresára."
-
-#: ../../standalone/drakbackup_.c:812
-msgid "Please check all users that you want to include in your backup."
-msgstr "Prosím, zadajte všetkých užívateľov, ktorých chcete zálohovať."
-
-#: ../../standalone/drakbackup_.c:839
-msgid "Do not include the browser cache"
-msgstr "Nezahrnovať vyrovnávaciu pamäť prehliadača"
-
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr "Použi prírastkové zálohovanie (bez prepisovania starých záloh)"
-
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
-msgid "Remove Selected"
-msgstr "Odstráň zvolené"
-
-#: ../../standalone/drakbackup_.c:900
-msgid "Windows (FAT32)"
-msgstr " Windows (FAT32) "
-
-#: ../../standalone/drakbackup_.c:939
-msgid "Users"
-msgstr " Užívatelia"
-
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr "Pre zálohovanie použiť FTP"
-
-#: ../../standalone/drakbackup_.c:967
-msgid "Please enter the host name or IP."
-msgstr "Prosím vložte meno hostu alebo IP."
-
-#: ../../standalone/drakbackup_.c:972
-msgid ""
-"Please enter the directory to\n"
-" put the backup on this host."
-msgstr ""
-"Prosím zadajte adresár, kam sa\n"
-" budú ukladať zálohy na tomto hoste."
-
-#: ../../standalone/drakbackup_.c:977
-msgid "Please enter your login"
-msgstr "Prosím vložte váš login"
-
-#: ../../standalone/drakbackup_.c:982
-msgid "Please enter your password"
-msgstr "Prosím vložte vaše heslo"
-
-#: ../../standalone/drakbackup_.c:988
-msgid "Remember this password"
-msgstr "Zapamätajte si toto heslo"
-
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr " FTP spojenie"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Bezpečné pripojenie"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
-msgid "Use CD/DVDROM to backup"
-msgstr "Pre zálohovanie použiť CD/DVDROM"
-
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
-msgid "Please choose your CD space"
-msgstr "Prosím, zvoľte veľkosť CD"
-
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
-msgid "Please check if you are using CDRW media"
-msgstr "Prosím skontrolujte, či používate CDRW médium"
-
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Prosím zaškrtnite, aks i želáte CDRW médium najskôr vymazať"
-
-#: ../../standalone/drakbackup_.c:1106
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Ak si želáte spustiteľné CD,\n"
-" vyberte túto voľbu."
-
-#: ../../standalone/drakbackup_.c:1112
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Prosím, zadajte meno zariadenia CD Zapisovačky\n"
-" napr. 0,1,0"
-
-#: ../../standalone/drakbackup_.c:1153
-msgid "Use tape to backup"
-msgstr "Pre zálohovanie použiť pásku"
-
-#: ../../standalone/drakbackup_.c:1156
-msgid "Please enter the device name to use for backup"
-msgstr "Prosím, zadajte meno zálohovacieho zariadenia"
-
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup"
-msgstr ""
-"Prosím, zadajte maximálnu veľkosť\n"
-" pre Drakbackup"
-
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr "Prosím, zadajte adresár:"
-
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
-msgid "Use quota for backup files."
-msgstr "Pre zálohovanie použiť quotu."
-
-#: ../../standalone/drakbackup_.c:1267
-msgid "Network"
-msgstr "Sieť"
-
-#: ../../standalone/drakbackup_.c:1272
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM "
-
-#: ../../standalone/drakbackup_.c:1277
-msgid "HardDrive / NFS"
-msgstr "Pevný disk / NFS"
-
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
-msgid "hourly"
-msgstr "každú hodinu"
-
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
-msgid "daily"
-msgstr "denne"
-
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
-msgid "weekly"
-msgstr "týždenne"
-
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
-msgid "monthly"
-msgstr "mesačne"
-
-#: ../../standalone/drakbackup_.c:1312
-msgid "Use daemon"
-msgstr "Použi démnona"
-
-#: ../../standalone/drakbackup_.c:1317
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"Prosím, zvoľte časový interval\n"
-"medzi jednotlivými zálohami"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr ""
-"Prosím, zálohovacie \n"
-"médium."
-
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Použitie pevného disku s démonom"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Použitie FTP s démonom"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Prosím skontrolujte či je cron démon súčasťou spusťených služieb."
-
-#: ../../standalone/drakbackup_.c:1369
-msgid "Send mail report after each backup to :"
-msgstr "Odoslať e-mailovú správu po každej zálohe:"
-
-#: ../../standalone/drakbackup_.c:1411
-msgid "What"
-msgstr "Čo"
-
-#: ../../standalone/drakbackup_.c:1416
-msgid "Where"
-msgstr "Kde"
-
-#: ../../standalone/drakbackup_.c:1421
-msgid "When"
-msgstr "Kedy"
-
-#: ../../standalone/drakbackup_.c:1426
-msgid "More Options"
-msgstr "Viac možností"
-
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup nastavenia"
-
-#: ../../standalone/drakbackup_.c:1463
-msgid "Please choose where you want to backup"
-msgstr "Prosím zvoľte kam chcete zálohovať"
-
-#: ../../standalone/drakbackup_.c:1465
-msgid "on Hard Drive"
-msgstr "na pevný disk"
-
-#: ../../standalone/drakbackup_.c:1476
-msgid "across Network"
-msgstr "cez sieť"
-
-#: ../../standalone/drakbackup_.c:1540
-msgid "Please choose what you want to backup"
-msgstr "Prosím zvoľte čo chcete zálohovať"
-
-#: ../../standalone/drakbackup_.c:1541
-msgid "Backup system"
-msgstr "Zálohovací systém"
-
-#: ../../standalone/drakbackup_.c:1542
-msgid "Backup Users"
-msgstr "Záloha Užívateľov"
-
-#: ../../standalone/drakbackup_.c:1545
-msgid "Select user manually"
-msgstr "Vybrať užívateľov manuálne"
-
-#: ../../standalone/drakbackup_.c:1627
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Zdroje zálohy: \n"
-
-#: ../../standalone/drakbackup_.c:1628
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- Systémové súbory:\n"
-
-#: ../../standalone/drakbackup_.c:1630
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Súbory používateľov:\n"
-
-#: ../../standalone/drakbackup_.c:1632
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Ostatné súbory:\n"
-
-#: ../../standalone/drakbackup_.c:1634
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path : %s\n"
-msgstr ""
-"\n"
-"- Uložiť na pevný disk na cestu : %s\n"
-
-#: ../../standalone/drakbackup_.c:1635
-#, c-format
-msgid ""
-"\n"
-"- Save on FTP on host : %s\n"
-msgstr ""
-"\n"
-"- Uložiť na FTP na host : %s\n"
-
-#: ../../standalone/drakbackup_.c:1636
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t Meno užívateľa: %s\n"
-"\t\t na cestu: %s \n"
-
-#: ../../standalone/drakbackup_.c:1637
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- Parametre:\n"
-
-#: ../../standalone/drakbackup_.c:1638
-msgid "\tDo not include System Files\n"
-msgstr "\tNezahŕnať systémové súbory\n"
-
-#: ../../standalone/drakbackup_.c:1639
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tZálohovanie používa tar a bzip2\n"
-
-#: ../../standalone/drakbackup_.c:1640
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tZálohovanie používa tar a gzip\n"
-
-#: ../../standalone/drakbackup_.c:1641
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include :\n"
-msgstr ""
-"\n"
-"- Démon (%s) zahŕňa :\n"
-
-#: ../../standalone/drakbackup_.c:1642
-msgid "\t-Hard drive.\n"
-msgstr "\t-Pevný disk.\n"
-
-#: ../../standalone/drakbackup_.c:1643
-msgid "\t-CDROM.\n"
-msgstr "\t-CDROM.\n"
-
-#: ../../standalone/drakbackup_.c:1644
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Sieť cez FTP.\n"
-
-#: ../../standalone/drakbackup_.c:1645
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Sieť cez SSH.\n"
-
-#: ../../standalone/drakbackup_.c:1647
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Ešte nenastavené, prosím použite Pomocníka alebo Rozšírené.\n"
-
-#: ../../standalone/drakbackup_.c:1652
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"Zoznam dát pre obnovu:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1753
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Zoznam porušených dát:\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:1755
-msgid "Please uncheck or remove it on next time."
-msgstr "Prosím odznačte alebo odstráňte to nabudúce."
-
-#: ../../standalone/drakbackup_.c:1765
-msgid "Backup files are corrupted"
-msgstr "Súbory zálohy boli porušené"
-
-#: ../../standalone/drakbackup_.c:1786
-msgid " All your selectionned data have been "
-msgstr " Všetky Vami vybrané dáta boli "
-
-#: ../../standalone/drakbackup_.c:1787
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " Úspešne obnovené na %s "
-
-#: ../../standalone/drakbackup_.c:1886
-msgid " Restore Configuration "
-msgstr " Obnoviť nastavenie"
-
-#: ../../standalone/drakbackup_.c:1904
-msgid "OK to restore the other files."
-msgstr "OK pre obnovu ostatných súborov."
-
-#: ../../standalone/drakbackup_.c:1922
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "Zoznam užívateľov prew obnovu (je dôležitá iba posledná záloha)"
-
-#: ../../standalone/drakbackup_.c:1972
-msgid "Backup the system files before:"
-msgstr "Najskôr zálohuj systémové súbory:"
-
-#: ../../standalone/drakbackup_.c:1974
-msgid "please choose the date to restore"
-msgstr "prosím, zvoľte dáta, ktoré chcete obnoviť"
-
-#: ../../standalone/drakbackup_.c:2002
-msgid "Use Hard Disk to backup"
-msgstr "Pre zálohovanie použiť pevný disk"
-
-#: ../../standalone/drakbackup_.c:2083
-msgid "Restore from Hard Disk."
-msgstr "Obnova z pevného disku"
-
-#: ../../standalone/drakbackup_.c:2085
-msgid "Please enter the directory where backups are stored"
-msgstr "Prosím, zadajte, kde sú uložené zálohy"
-
-#: ../../standalone/drakbackup_.c:2143
-msgid "Select another media to restore from"
-msgstr "Vyberte iné médium pre obnovu"
-
-#: ../../standalone/drakbackup_.c:2145
-msgid "Other Media"
-msgstr "Iné médium"
-
-#: ../../standalone/drakbackup_.c:2151
-msgid "Restore system"
-msgstr "Obnoviť systém"
-
-#: ../../standalone/drakbackup_.c:2152
-msgid "Restore Users"
-msgstr "Obnov Uźívateľov"
-
-#: ../../standalone/drakbackup_.c:2153
-msgid "Restore Other"
-msgstr "Obnov ostatné"
-
-#: ../../standalone/drakbackup_.c:2155
-msgid "select path to restore (instead of / )"
-msgstr "vyberte cestu pre obnovu (okrem /)"
-
-#: ../../standalone/drakbackup_.c:2159
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Pred obnovou urobiť novú zálohu (iba pre prírastkové zálohovanie)"
-
-#: ../../standalone/drakbackup_.c:2160
-msgid "Remove user directories before restore."
-msgstr "Pred obnovou odstráň užívateľské adresáre."
-
-#: ../../standalone/drakbackup_.c:2217
-msgid "Restore all backups"
-msgstr "Obnov všetky zálohy"
-
-#: ../../standalone/drakbackup_.c:2225
-msgid "Custom Restore"
-msgstr "Vlastná obnova"
-
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Pomoc"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
-msgid "Previous"
-msgstr "Predchádzajúce"
-
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
-#: ../../standalone/logdrake_.c:224
-msgid "Save"
-msgstr "Ulož"
-
-#: ../../standalone/drakbackup_.c:2317
-msgid "Build Backup"
-msgstr "Vytvor zálohu"
-
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
-msgid "Restore"
-msgstr "Obnova"
-
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
-msgid "Next"
-msgstr "Ďalší"
-
-#: ../../standalone/drakbackup_.c:2478
-msgid ""
-"Please Build backup before to restore it...\n"
-" or verify that your path to save is correct."
-msgstr ""
-"Skôr než sa pokúsite obnoviť, vytvorte zálohu..\n"
-" alebo skontrolujte, či je zadaná cesta správna."
-
-#: ../../standalone/drakbackup_.c:2499
-msgid ""
-"Error durind sendmail\n"
-" your report mail was not sent\n"
-" Please configure sendmail"
-msgstr ""
-"Chyba pri odosielaní pošty\n"
-" Váš report nebol odoslaný\n"
-" Prosím nastavte sendmail"
-
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Zoznam balíčkov pre inštaláciu"
-
-#: ../../standalone/drakbackup_.c:2550
-msgid ""
-"Error durind sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Počas posielania súboru cez FTP sa vyskytla chyba.\n"
-" Prosím skontrolujte správnosť FTP nastavenia."
-
-#: ../../standalone/drakbackup_.c:2573
-msgid "Please select data to restore..."
-msgstr "Prosím, skontrolujte dáta ktoré chcete obnoviť..."
-
-#: ../../standalone/drakbackup_.c:2594
-msgid "Please select media for backup..."
-msgstr "Prosím, zvoľte médium pre zálohovanie..."
-
-#: ../../standalone/drakbackup_.c:2616
-msgid "Please select data to backup..."
-msgstr "Prosím, zvoľte médium pre zálohovanie..."
-
-#: ../../standalone/drakbackup_.c:2638
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Nebol nájdený konfiguračný súbor.\n"
-"Prosím vyberte Pomocník, alebo Rozšírené."
-
-#: ../../standalone/drakbackup_.c:2659
-msgid "Under Devel ... please wait."
-msgstr "Vo vývoji ... prosím vydržte."
-
-#: ../../standalone/drakbackup_.c:2739
-msgid "Backup system files"
-msgstr "Zálohuj systémové súbory"
-
-#: ../../standalone/drakbackup_.c:2741
-msgid "Backup user files"
-msgstr "Zálohuj užívateľské súbory"
-
-#: ../../standalone/drakbackup_.c:2743
-msgid "Backup other files"
-msgstr "Zálohuj iné súbory"
-
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
-msgid "Total Progress"
-msgstr "Celkový priebeh"
-
-#: ../../standalone/drakbackup_.c:2767
-msgid "files sending by FTP"
-msgstr "súbory odosielané cez FTP"
-
-#: ../../standalone/drakbackup_.c:2771
-msgid "Sending files..."
-msgstr "Odosielam súbory..."
-
-#: ../../standalone/drakbackup_.c:2841
-msgid "Data list to include on CDROM."
-msgstr "Zoznam dát, ktoré budú na CDROM."
-
-#: ../../standalone/drakbackup_.c:2899
-msgid "Please enter the cd writer speed"
-msgstr "Prosím, zadajte rýchlosť vašej CD mechaniky"
-
-#: ../../standalone/drakbackup_.c:2917
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Zadajte prosím meno zariadenia zapisovacej CD mechaniky (napr. 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:2923
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Zvoľte, ak si želáte mať inštalačné CD spustiteľné."
-
-#: ../../standalone/drakbackup_.c:2989
-msgid "Backup Now from configuration file"
-msgstr "Zálohuj podľa konfiguračného súbora"
-
-#: ../../standalone/drakbackup_.c:2999
-msgid "View Backup Configuration."
-msgstr "Zobraz nastavenie zálohovania."
-
-#: ../../standalone/drakbackup_.c:3020
-msgid "Wizard Configuration"
-msgstr "Pomocník nastavenia"
-
-#: ../../standalone/drakbackup_.c:3024
-msgid "Advanced Configuration"
-msgstr "Pokročilá konfigurácia"
-
-#: ../../standalone/drakbackup_.c:3028
-msgid "Backup Now"
-msgstr "Zálohuj"
-
-#: ../../standalone/drakbackup_.c:3053
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../standalone/drakbackup_.c:3104
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3134
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3142
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3181
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used ,because with incremental \n"
-"backups it is necesarry to restore one by one each older backups.\n"
-"\n"
-"So if you don't like to restore an user please unselect all his\n"
-"check box.\n"
-"\n"
-"Otherwise, you are able to select only one of this\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerfull \n"
-"\toption to use backup, this option allow you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed after.\n"
-"\tSo you will be able during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this options all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
-msgid ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-msgstr ""
-" Copyright (C) 2001 MandrakeSoft DUPONT Sebastien <dupont_s\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
-msgid ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3223
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3261
-msgid ""
-"options description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3270
-msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3298
-msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, Drakbackup will remove\n"
-" your original directory and verify that all\n"
-" backup files are not corrupted. It is recommended\n"
-" you do a last backup before restoring.\n"
-" \n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakboot_.c:58
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Inštalácia %s zlyhala. Vyskytla sa nasledujúca chyba:"
-
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
-msgstr "Hladať nainštalované fonty"
-
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
-msgstr "Odznačiť nainštalované fonty"
-
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
-msgstr "zpracovať všetky fonty"
-
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
-msgstr "nenašiel som žiadne fonty"
-
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
-msgid "done"
-msgstr "hotovo"
-
-#: ../../standalone/drakfont_.c:265
-msgid "could not find any font in your mounted partitions"
-msgstr "Na pripojených oddieloch nieje možné nájsť fonty"
-
-#: ../../standalone/drakfont_.c:301
-msgid "Reselect correct fonts"
-msgstr "Znovu vybrať správne fonty"
-
-#: ../../standalone/drakfont_.c:304
-msgid "could not find any font.\n"
-msgstr "nemôžem nájsť žiaden font.\n"
-
-#: ../../standalone/drakfont_.c:327
-msgid "Search fonts in installed list"
-msgstr "Vyhľadávam fonty v zozname nainštalovaných"
-
-#: ../../standalone/drakfont_.c:350
-msgid "Fonts copy"
-msgstr "Kópia fontu"
-
-#: ../../standalone/drakfont_.c:353
-msgid "True Type fonts installation"
-msgstr "Inštalácia True Type fontov"
-
-#: ../../standalone/drakfont_.c:357
-msgid "please wait during ttmkfdir..."
-msgstr "Prosím čakajte počas tmkfdir..."
-
-#: ../../standalone/drakfont_.c:359
-msgid "True Type install done"
-msgstr "Inštalácia True Type fontov hotová."
-
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
-msgid "Fonts conversion"
-msgstr "Konverzia fontov"
-
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
-msgid "type1inst building"
-msgstr "vytváram type1inst"
-
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
-msgid "Ghostscript referencing"
-msgstr "Odkazy na Ghostscript"
-
-#: ../../standalone/drakfont_.c:397
-msgid "ttf fonts conversion"
-msgstr "prevod ttf fontov"
-
-#: ../../standalone/drakfont_.c:401
-msgid "pfm fonts conversion"
-msgstr "prevod pfm fontov"
-
-#: ../../standalone/drakfont_.c:411
-msgid "Suppress temporary Files"
-msgstr "Ignorovať pracovné súbory"
-
-#: ../../standalone/drakfont_.c:414
-msgid "Restart XFS"
-msgstr "Reštart XFS"
-
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
-msgid "Suppress Fonts Files"
-msgstr "Ignorovať súbory s fontami"
-
-#: ../../standalone/drakfont_.c:465
-msgid "xfs restart"
-msgstr "xfs restart"
-
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
-msgstr ""
-"Pred pridaním fontov sa prosím uistite, že na vašom počítači máte práva ich "
-"pridávať.\n"
-"\n"
-"-Pre pridávanie fontov môžete použiť štandartný spôsob. V špeciálnych "
-"prípadoch však chybné fonty môžu spôsobiť vytuhnutie X servera."
-
-#: ../../standalone/drakfont_.c:547
-msgid "Fonts Importation"
-msgstr "Import fontov"
-
-#: ../../standalone/drakfont_.c:562
-msgid "Get Windows Fonts"
-msgstr "Prevziať fonty z Windows"
-
-#: ../../standalone/drakfont_.c:564
-msgid "Uninstall Fonts"
-msgstr "Odstránenie fontov"
-
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Pokročilé nastavenia"
-
-#: ../../standalone/drakfont_.c:570
-msgid "Font List"
-msgstr "Zoznam fontov"
-
-#: ../../standalone/drakfont_.c:739
-msgid "Choose the applications that will support the fonts :"
-msgstr "Zvoľte aplikácie ktoré budú podporovať fonty:"
-
-#: ../../standalone/drakfont_.c:743
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakfont_.c:747
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakfont_.c:751
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/drakfont_.c:755
-msgid "Generic Printers"
-msgstr "Tlačiarne pre všeobecné použitie"
-
-#: ../../standalone/drakfont_.c:792
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Zvoľte adresár fontov a kliknite na 'Pridaj'"
-
-#: ../../standalone/drakfont_.c:828
-msgid "Install List"
-msgstr "Nainštaluj zoznam"
-
-#: ../../standalone/drakfont_.c:858
-msgid "click here if you are sure."
-msgstr "Kliknite sem, ak ste si istý."
-
-#: ../../standalone/drakfont_.c:860
-msgid "here if no."
-msgstr "sem ak nie"
-
-#: ../../standalone/drakfont_.c:897
-msgid "Unselected All"
-msgstr "Odznačiť všetky"
-
-#: ../../standalone/drakfont_.c:899
-msgid "Selected All"
-msgstr "Vyber všetko"
-
-#: ../../standalone/drakfont_.c:901
-msgid "Remove List"
-msgstr "Odstrániť zoznam"
-
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
-msgid "Initials tests"
-msgstr "Počiatočné testy"
-
-#: ../../standalone/drakfont_.c:920
-msgid "Copy fonts on your system"
-msgstr "Kopírovať fonty na váš systém"
-
-#: ../../standalone/drakfont_.c:921
-msgid "Install & convert Fonts"
-msgstr "Inštalácia a konverzia fontov"
-
-#: ../../standalone/drakfont_.c:922
-msgid "Post Install"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:940
-msgid "Remove fonts on your system"
-msgstr "Odstrániť fonty zo systému"
-
-#: ../../standalone/drakfont_.c:941
-msgid "Post Uninstall"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
-msgid "Internet Connection Sharing"
-msgstr "Zdieľanie pripojenia k internetu"
-
-#: ../../standalone/drakgw_.c:138
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Zdieľanie internetového pripojenia je momentálne povolené"
-
-#: ../../standalone/drakgw_.c:139
-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 ""
-"Nastavenie zdieľania internetového pripojenia už bolo urobené.\n"
-"Momentálne je povolené.\n"
-"\n"
-"Čo chcete urobiť?"
-
-#: ../../standalone/drakgw_.c:143
-msgid "disable"
-msgstr "zakázať"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "dismiss"
-msgstr "odmietnuť"
-
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
-msgid "reconfigure"
-msgstr "prekonfigurovať"
-
-#: ../../standalone/drakgw_.c:146
-msgid "Disabling servers..."
-msgstr "Zakazujem servre..."
-
-#: ../../standalone/drakgw_.c:154
-msgid "Internet connection sharing is now disabled."
-msgstr "Zdieľanie internetového pripojenia je teraz zakázane."
-
-#: ../../standalone/drakgw_.c:163
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Zdieľanie internetového pripojenia je momentálne zakázane"
-
-#: ../../standalone/drakgw_.c:164
-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 ""
-"Nastavenie zdieľania internetového pripojenia už bolo urobené.\n"
-"Momentálne je zakázané.\n"
-"\n"
-"Čo chcete urobiť?\""
-
-#: ../../standalone/drakgw_.c:168
-msgid "enable"
-msgstr "povoliť"
-
-#: ../../standalone/drakgw_.c:175
-msgid "Enabling servers..."
-msgstr "Povoľujem servre..."
-
-#: ../../standalone/drakgw_.c:180
-msgid "Internet connection sharing is now enabled."
-msgstr "Zdieľanie internetového pripojenia je teraz povolené."
-
-#: ../../standalone/drakgw_.c:201
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Máte možnosť nastaviť zdielanie pripojenia na internet. S touto funkciou\n"
-"budú môcť ostatné počítače vo vašej lokálnej sieti používať pripojenie na "
-"internet vášho počítača.\n"
-"\n"
-"Poznámka: Potrebujete samostatnú sieťovú kartu na pripojenie lokálnej siete."
-
-#: ../../standalone/drakgw_.c:227
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Rozhranie %s (používa modul %s)"
-
-#: ../../standalone/drakgw_.c:228
-#, c-format
-msgid "Interface %s"
-msgstr "Rozhranie %s"
-
-#: ../../standalone/drakgw_.c:236
-msgid "No network adapter on your system!"
-msgstr "Vo vašom systéme nieje sieťovy adaptér!"
-
-#: ../../standalone/drakgw_.c:237
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Vo vašom systéme nebol nájdený sieťovy ethernet adaptér. Prosím spustite "
-"konfiguráciu hardweru."
-
-#: ../../standalone/drakgw_.c:243
-msgid "Network interface"
-msgstr "Sieťove rozhranie"
-
-#: ../../standalone/drakgw_.c:244
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Vo vašom systéme je iba jeden sieťový adaptér:\n"
-"\n"
-"%s\n"
-"\n"
-"Lokálna sieť bude nastavená práve s týmto adaptérom."
-
-#: ../../standalone/drakgw_.c:253
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Prosím vyberte si sieťovy adaptér, ktorý bude pripojený k vašej lokálnej "
-"sieti."
-
-#: ../../standalone/drakgw_.c:271
-msgid "Network interface already configured"
-msgstr "Sieťové rozhranie je už nastavené"
-
-#: ../../standalone/drakgw_.c:272
-#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
-msgstr ""
-"Varovanie. Siťový adaptér (%s) je už nastavený.\n"
-"\n"
-"Želáte si automatickú rekonfiguráciu?\n"
-"\n"
-"Môžete to urobiť manuálne, ale musíte vedieť, čo robíte."
-
-#: ../../standalone/drakgw_.c:277
-msgid "Automatic reconfiguration"
-msgstr "Automatická zmena konfigurácie"
-
-#: ../../standalone/drakgw_.c:278
-msgid "Show current interface configuration"
-msgstr "Zobraz aktuálne nastavenie rozhrania"
-
-#: ../../standalone/drakgw_.c:280
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"Aktuálne nastavenie `%s':\n"
-"\n"
-"Sieť: %s\n"
-"IP adresa: %s\n"
-"IP attribution: %s\n"
-"Ovládač: %s"
-
-#: ../../standalone/drakgw_.c:292
-msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the C-Class Network that "
-"you use for your local network; I will not reconfigure it and I will not "
-"touch your DHCP server configuration.\n"
-"\n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
-"\n"
-msgstr ""
-"Je možné zachovať súčasné nastavenie a predpokladať, že už máte nastavený "
-"DHCP server; v tom prípade prosím skontrolujte, že je správne nastavená "
-"lokálna sieť; v nastaveniach sa nebudú robiť žiadne zmeny.\n"
-"\n"
-"Ak si to však želáte, je možné zmeniť aj rozhranie lokálnej siete, aj "
-"nastavenie DHCP serveru.\n"
-"\n"
-
-#: ../../standalone/drakgw_.c:297
-msgid "C-Class Local Network"
-msgstr "Lokálna sieť triedy C"
-
-#: ../../standalone/drakgw_.c:298
-msgid "(This) DHCP Server IP"
-msgstr "IP tohoto DHCP servera"
-
-#: ../../standalone/drakgw_.c:299
-msgid "Re-configure interface and DHCP server"
-msgstr "Opätovné nastavenie DHCP servera"
-
-#: ../../standalone/drakgw_.c:306
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Číslo lokálnej siete nekončí na .0, zkúšam znovu."
-
-#: ../../standalone/drakgw_.c:317
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Potenciálny konflik LAN adries v aktuálnej konfigurácii %s!\n"
-
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
-msgid "Firewalling configuration detected!"
-msgstr "Bola nájdená kofigurácia firewalu!"
-
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Pozor! Bola nájdená existujúca konfigurácia firewallu. Možno budete musiet "
-"urobiť zopár ručnych zásahov po inštalácii."
-
-#: ../../standalone/drakgw_.c:340
-msgid "Configuring..."
-msgstr "Konfigurácia..."
-
-#: ../../standalone/drakgw_.c:341
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Konfigurácia skriptov, inštalovanie programov, štart serverov..."
-
-#: ../../standalone/drakgw_.c:378
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problémy pri inštalácii balíčka %s"
-
-#: ../../standalone/drakgw_.c:672
-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 ""
-"Všetko bolo nastavené.\n"
-"Teraz môžete zdieľať vaše pripojenie na internet s ostatnými počítačmi na "
-"vašej lokálnej sieti použitím automatickéhonastavenia siete (DHCP)."
-
-#: ../../standalone/drakgw_.c:689
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Nastavenie už bolo urobené a je momentálne zakázané."
-
-#: ../../standalone/drakgw_.c:690
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Nastavenie už bolo urobené a je momentálne povolené."
-
-#: ../../standalone/drakgw_.c:691
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Zdieľanie internetového pripojenia ešte nebolo nastavené."
-
-#: ../../standalone/drakgw_.c:696
-msgid "Internet connection sharing configuration"
-msgstr "Konfigurácia zdiaľania pripojenia k internetu"
-
-#: ../../standalone/drakgw_.c:703
-#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"Vítajte v utilite na zdieľanie pripojenia k internetu!\n"
-"\n"
-"%s\n"
-"\n"
-"Kliknite na Nastaviť ak chcete spustiť sprievodcu nastavením."
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Konfigurácia siete (%d rozhraní)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Zmaž profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Zmena profilu:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nový profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr "Meno nového profilu (nový profil bude vytvorený ako kópia aktuálneho)"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Meno počítača: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Prístup k internetu"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Typ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Brána:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Rozhranie:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Čakajte prosím"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigurácia prístupu k internetu..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Konfigurácia LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Ovládač"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Rozhranie"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Konfigurácia lokálnej siete..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Pre spustenie Pomocníka kliknite sem ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Sprievodca..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplikovať"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Prosím čakajte... Aplikujem konfiguráciu"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Pripojený."
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nepripojený"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Pripojenie..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Odpojenie..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Varovanie. Bolo rozpoznané iné pripojenie na internet, možno používa vašu "
-"sieť."
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemáte nastavené žiadne rozhranie.\n"
-"Nastavte ho kliknutím na Konfiguruj"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Konfigurácia LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptér %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Štartovací protokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Spustené pri štarte"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivuj teraz"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivuj"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Toto rozhranie ešte nebolo nastavené.\n"
-"Spustite Pomocníka nastavenia v hlavnom okne"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemáte nastavené pripojenie na internet.\n"
-"Vytvorte ho zakliknutím tlačítka konfiguruj"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfigurácia pripojenia internetu"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfigurácia pripojenia internetu"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Typ pripojenia: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametre"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Brána"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet karta"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Nastavujem úroveň bezpečnosti"
-
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Kontrolné centrum"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Vyberte nástroj, ktorý chcete použiť"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "Canada (cable)"
-msgstr "Kanadská (cable)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable)"
-msgstr "USA (kábel)"
-
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (cable-hrc)"
-msgstr "USA (kábel - hrc)"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "Čína"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japonsko"
-
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (cable)"
-msgstr "Japonsko (kábel)"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "East Europe"
-msgstr "Východná európa"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "Ireland"
-msgstr "Írsko"
-
-#: ../../standalone/drakxtv_.c:50
-msgid "West Europe"
-msgstr "Západná Európa"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Australia"
-msgstr "Austrália"
-
-#: ../../standalone/drakxtv_.c:51
-msgid "Newzealand"
-msgstr "Nový Zéland"
-
-#: ../../standalone/drakxtv_.c:52
-msgid "South Africa"
-msgstr "Južná Afrika"
-
-#: ../../standalone/drakxtv_.c:53
-msgid "Argentina"
-msgstr "Argentína"
-
-#: ../../standalone/drakxtv_.c:58
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Prosím,\n"
-"zadajte vašu TV normu a krajinu"
-
-#: ../../standalone/drakxtv_.c:60
-msgid "TV norm :"
-msgstr "TV norma:"
-
-#: ../../standalone/drakxtv_.c:61
-msgid "Area :"
-msgstr "Oblasť :"
-
-#: ../../standalone/drakxtv_.c:65
-msgid "Scanning for TV channels in progress ..."
-msgstr "Prebieha vyhľadávanie TV programov..."
-
-#: ../../standalone/drakxtv_.c:72
-msgid "Scanning for TV channels"
-msgstr "Vyhladávanie TV programov"
-
-#: ../../standalone/drakxtv_.c:83
-msgid "No TV Card detected!"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:84
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-
-#: ../../standalone/keyboarddrake_.c:16
-msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-msgstr "použitie: keyboarddrake [--expert] [klávesnica]\n"
-
-#: ../../standalone/keyboarddrake_.c:29
-msgid "Please, choose your keyboard layout."
-msgstr "Prosím, zvoľte váš typ klávesnice"
-
-#: ../../standalone/keyboarddrake_.c:36
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Chcete aby BackSpace vrátil Delete na konzole?"
-
-#: ../../standalone/livedrake_.c:24
-msgid "Change Cd-Rom"
-msgstr "Vymeň CD"
-
-#: ../../standalone/livedrake_.c:25
-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 ""
-"Prosím vložte inštalačné CD do mechaniky a stlačte Ok.\n"
-"Ak ho nemáte, stlačte Zrušiť pre priamu aktualizáciu."
-
-#: ../../standalone/livedrake_.c:35
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Nemôžem spustiť priamu aktualizáciu !!!\n"
-
-#: ../../standalone/localedrake_.c:32
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone/logdrake_.c:95
-msgid "Show only for the selected day"
-msgstr "Ukázať iba pre vybraný deň"
-
-#: ../../standalone/logdrake_.c:102
-msgid "/File/_New"
-msgstr "/Súbor/_Nový"
-
-#: ../../standalone/logdrake_.c:102
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../standalone/logdrake_.c:103
-msgid "/File/_Open"
-msgstr "/Súbor/_Otvor"
-
-#: ../../standalone/logdrake_.c:103
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../standalone/logdrake_.c:104
-msgid "/File/_Save"
-msgstr "/Súbor/_Ulož"
-
-#: ../../standalone/logdrake_.c:104
-msgid "<control>S"
-msgstr "<control>U"
-
-#: ../../standalone/logdrake_.c:105
-msgid "/File/Save _As"
-msgstr "/Súbor/Uložiť _ako"
-
-#: ../../standalone/logdrake_.c:106
-msgid "/File/-"
-msgstr "/Súbor/-"
-
-#: ../../standalone/logdrake_.c:108
-msgid "/_Options"
-msgstr "/_Parametre"
-
-#: ../../standalone/logdrake_.c:109
-msgid "/Options/Test"
-msgstr "/Parametre/Test"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Pomoc"
-
-#: ../../standalone/logdrake_.c:111
-msgid "/Help/_About..."
-msgstr "/Pomoc/_O aplikácii..."
-
-#: ../../standalone/logdrake_.c:118
-msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:119
-msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#: ../../standalone/logdrake_.c:173
-msgid "User"
-msgstr "Užívateľ"
-
-#: ../../standalone/logdrake_.c:174
-msgid "Messages"
-msgstr "Správy"
-
-#: ../../standalone/logdrake_.c:175
-msgid "Syslog"
-msgstr "Syslog"
-
-#: ../../standalone/logdrake_.c:176
-msgid "Mandrake Tools Explanations"
-msgstr "Popis Mandrake Nástrojov"
-
-#: ../../standalone/logdrake_.c:179
-msgid "search"
-msgstr "hľadaj"
-
-#: ../../standalone/logdrake_.c:185
-msgid "A tool to monitor your logs"
-msgstr "Nástroj na monitorovanie logov"
-
-#: ../../standalone/logdrake_.c:186
-msgid "Settings"
-msgstr "Nastavenia"
-
-#: ../../standalone/logdrake_.c:191
-msgid "matching"
-msgstr "porovnávam"
-
-#: ../../standalone/logdrake_.c:192
-msgid "but not matching"
-msgstr "nezodpovedajú"
-
-#: ../../standalone/logdrake_.c:196
-msgid "Choose file"
-msgstr "Zvoľte súbor"
-
-#: ../../standalone/logdrake_.c:201
-msgid "Calendar"
-msgstr "Kalendár"
-
-#: ../../standalone/logdrake_.c:211
-msgid "Content of the file"
-msgstr "Obsah súboru"
-
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
-msgid "Mail/SMS alert"
-msgstr "Výstraha cez Mail/SMS"
-
-#: ../../standalone/logdrake_.c:268
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "prosím čakajte, analyzujem súbor: %s"
-
-#: ../../standalone/logdrake_.c:405
-msgid "Mail/SMS alert configuration"
-msgstr "Nastavenie výstrahy cez SMS alebo e-mail"
-
-#: ../../standalone/logdrake_.c:406
-msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Vitajte v nástroji na nastavenie SMS/e-mail.\n"
-"\n"
-"Tu budete môcť nastavit výstrahy systému.\n"
-
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
-#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
-
-#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
-
-#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
-
-#: ../../standalone/logdrake_.c:422
-msgid "service setting"
-msgstr "nastavenie služieb"
-
-#: ../../standalone/logdrake_.c:423
-msgid ""
-"You will receive an alert if one of the selected service is no more running"
-msgstr "Ak nebude funkčná vyznačená služba, budete upozornený"
-
-#: ../../standalone/logdrake_.c:433
-msgid "load setting"
-msgstr "načítať nastavenie"
-
-#: ../../standalone/logdrake_.c:434
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Ak load prekročí túto hodnotu, budete upozornený"
-
-#: ../../standalone/logdrake_.c:447
-msgid "alert configuration"
-msgstr "Konfigurácia upozornení"
-
-#: ../../standalone/logdrake_.c:448
-msgid "Configure the way the system will alert you"
-msgstr "Nastavte cestu, akou Vás má systém upozorniť"
-
-#: ../../standalone/logdrake_.c:478
-msgid "Save as.."
-msgstr "Ulož ako.."
-
-#: ../../standalone/mousedrake_.c:49
-msgid "Please, choose the type of your mouse."
-msgstr "Prosím, zvoľte typ vašej myši."
-
-#: ../../standalone/mousedrake_.c:59
-msgid "no serial_usb found\n"
-msgstr "nebolo nájdené serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:63
-msgid "Emulate third button?"
-msgstr "Emulovať 3 tlačítka?"
-
-#: ../../standalone/scannerdrake_.c:53
-#, c-format
-msgid "%s found on %s, configure it ?"
-msgstr "%s nájdené v %s, nastaviť?"
-
-#: ../../standalone/scannerdrake_.c:60
-msgid "Select a scanner"
-msgstr "Zvoľte scaner"
-
-#: ../../standalone/scannerdrake_.c:80
-#, c-format
-msgid "This %s scanner is unsupported"
-msgstr "Tento %s skener nieje podporovaný"
-
-#: ../../standalone/scannerdrake_.c:94
-#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
-msgid "choose device"
-msgstr "Boot zariadenie"
-
-#: ../../standalone/scannerdrake_.c:102
-#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../standalone/scannerdrake_.c:107
-#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-
-#: ../../standalone/tinyfirewall_.c:31
-msgid "Firewalling Configuration"
-msgstr "Konfigurácia firewalu"
-
-#: ../../standalone/tinyfirewall_.c:44
-msgid "Firewalling configuration"
-msgstr "Konfigurácia firewalu"
-
-#: ../../standalone/tinyfirewall_.c:79
-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"
-"Už máte nastavený firewall.\n"
-"Kliknite na Nastaviť ak ho chcete zmeniť alebo odtrániť"
-
-#: ../../standalone/tinyfirewall_.c:83
-msgid ""
-"Firewalling\n"
-"\n"
-"Click on Configure to set up a standard firewall"
-msgstr ""
-"Firewall\n"
-"\n"
-"Kliknite na Nastaviť ak chcete nastaviť štandardný firewall"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Voľba jazyka"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Voľba triedy inštalácie"
-
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Detekcia pevného disku"
-
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Konfigurácia myši"
-
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Výber klávesnice"
-
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Bezpečnosť"
-
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Súborové systémy"
-
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formátovanie oddielov"
-
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Výber balíkov"
-
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Inštalácia systému"
-
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Vytváranie užívateľov"
-
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Sieťové služby"
-
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Nastavenie služieb"
-
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Inštalácia zavádzača"
-
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Zavádzacia disketa"
-
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Konfigurácia X"
-
-#: ../../steps.pm_.c:34
-msgid "Install system updates"
-msgstr "Inštalácia aktualizácií systému"
-
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Koniec inštalácie"
-
-#: ../../tinyfirewall.pm_.c:9
-msgid ""
-"tinyfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
-msgstr ""
-"tinyfirewall konfigurátor\n"
-"\n"
-"Nastavuje osobný firewall pre váš Linux Mandrake systém na tomto\n"
-"počítači. "
-
-#: ../../tinyfirewall.pm_.c:14
-msgid ""
-"We'll now ask you questions about which services you'd like to allow\n"
-"the Internet to connect to. Please think carefully about these\n"
-"questions, as your computer's security is important.\n"
-"\n"
-"Please, if you're not currently using one of these services, firewall\n"
-"it off. You can change this configuration anytime you like by\n"
-"re-running this application!"
-msgstr ""
-"Teraz niekoľko otázok o tom, na ktoré služby chcete dovoliť prístup\n"
-"z internetu. Prosím zvažujte či potrebujete jednotlivé služby pretože\n"
-"bezpečnosť vášho počítača je dôležitá.\n"
-"\n"
-"Ak nepoužívate tieto služby, je lepšie zabrániť prístupu z internetu.\n"
-"Nastavenie môžete zmeniť jednoducho opätovným spustením\n"
-"tejto aplikácie."
-
-#: ../../tinyfirewall.pm_.c:21
-msgid ""
-"Are you running a web server on this machine that you need the whole\n"
-"Internet to see? If you are running a webserver that only needs to be\n"
-"accessed by this machine, you can safely answer NO here.\n"
-"\n"
-msgstr ""
-"Chcete aby bol váš www server dostupný z internetu ? Ak vám stačí\n"
-"dostupnosť iba z lokálneho servera, môžete odpovedať Nie.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:26
-msgid ""
-"Are you running a name server on this machine? If you didn't set one\n"
-"up to give away IP and zone information to the whole Internet, please\n"
-"answer no.\n"
-"\n"
-msgstr ""
-"Používate na vašom počítači menný server ? Ak sa o vaše DNS záznamy\n"
-"stará napríklad váš poskytovateľ internetu, odpovedzte prosím nie. \n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:31
-msgid ""
-"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
-"is a telnet-replacement that you might use to login. If you're using\n"
-"telnet now, you should definitely switch to ssh. telnet is not\n"
-"encrypted -- so some attackers can steal your password if you use\n"
-"it. ssh is encrypted and doesn't allow for this eavesdropping."
-msgstr ""
-"Chcete dovoliť príchodzie Secure Shell (ssh) pripojenia ? Ssh je náhrada\n"
-"za telnet, ktorú môžete použiť na prihlásenie sa k vzdialenému serveru.\n"
-"Telnet nepoužíva kódovanie. To znamená, že útočník môže ukradnúť \n"
-"vaše heslo. Ssh kódovanie používa, takže krádež vášho hesla nehrozí."
-
-#: ../../tinyfirewall.pm_.c:36
-msgid ""
-"Do you want to allow incoming telnet connections?\n"
-"This is horribly unsafe, as we explained in the previous screen. We\n"
-"strongly recommend answering No here and using ssh in place of\n"
-"telnet.\n"
-msgstr ""
-"Chcete dovoliť pripojenia cez telnet ? Toto je veľmi nebezpečné.\n"
-"Silne doporučujeme Tu odpovedať NIE a použiť ssh ako náhradu \n"
-"za telnet.\n"
-
-#: ../../tinyfirewall.pm_.c:41
-msgid ""
-"Are you running an FTP server here that you need accessible to the\n"
-"Internet? If you are, we strongly recommend that you only use it for\n"
-"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
-"attackers, since FTP also uses no encryption for transferring passwords.\n"
-msgstr ""
-"Chcete používať FTP server dosiahnuteľný cez internet ? Ak áno, veľmi \n"
-"doporučujeme aby ste používali iba anonymné prenosy. Akékoľvek heslo\n"
-"zaslané FTP serveru môže byť ukradnuté, pretože FTP pri prenose hesiel\n"
-"nepoužíva kódovanie.\n"
-
-#: ../../tinyfirewall.pm_.c:46
-msgid ""
-"Are you running a mail server here? If you're sending you \n"
-"messages through pine, mutt or any other text-based mail client,\n"
-"you probably are. Otherwise, you should firewall this off.\n"
-"\n"
-msgstr ""
-"Máte spustený mail server ? Ak používate textové e-mail\n"
-"klieny ako pine, alebo mutt, tak asi máte. V opačnom prípade\n"
-"by ste túto službu mali vypnúť.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:51
-msgid ""
-"Are you running a POP or IMAP server here? This would\n"
-"be used to host non-web-based mail accounts for people via \n"
-"this machine.\n"
-"\n"
-msgstr ""
-"Máte spustené POP alebo IMAP služby? Tieto môžu byť\n"
-"použité pre prístup k e-mailovým schránkam užívateľov.\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:56
-msgid ""
-"You appear to be running a 2.2 kernel. If your network IP\n"
-"is automatically set by a computer in your home or office \n"
-"(dynamically assigned), we need to allow for this. Is\n"
-"this the case?\n"
-msgstr ""
-"Vyzerá to, že máte kernel verzie 2.2.x. Ak je vaša IP adresa\n"
-"automaticky nastavovaná pri zmene prostredia (domov, praca)\n"
-"potrebujete dovoliť túto možnosť. Je to tento prípad ?\n"
-
-#: ../../tinyfirewall.pm_.c:61
-msgid ""
-"Is your computer getting time syncronized to another computer?\n"
-"Mostly, this is used by medium-large Unix/Linux organizations\n"
-"to synchronize time for logging and such. If you're not part\n"
-"of a larger office and haven't heard of this, you probably \n"
-"aren't."
-msgstr ""
-"Má váš počítač synchronizovaný čas voči inému počítaču?\n"
-"Väčšinou sa táto služba používa v stredne veľkých organizáciách\n"
-"kôli jednotnému času v logoch a podobne. Ak nie ste súčasť\n"
-"niečoho väčšieho a ešte ste o takejto službe nepočuli, \n"
-"pravdepodobne to nebudete potrebovať."
-
-#: ../../tinyfirewall.pm_.c:66
-msgid ""
-"Configuration complete. May we write these changes to disk?\n"
-"\n"
-"\n"
-"\n"
-msgstr ""
-"Kofigurácia kompletná. Mám zapísať zmeny na disk ?\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../tinyfirewall.pm_.c:82
-#, c-format
-msgid "Can't open %s: %s\n"
-msgstr "Nemôžem otvoriť %s: %s\n"
-
-#: ../../tinyfirewall.pm_.c:84
-#, c-format
-msgid "Can't open %s for writing: %s\n"
-msgstr "Nemôžem otvoriť %s pre zápis: %s\n"
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "No I don't need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:180
-msgid "Yes I need DHCP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "No I don't need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:181
-msgid "Yes I need NTP"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-msgid "Don't Save"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
-msgid "Save & Quit"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
-msgid "Firewall Configuration Wizard"
-msgstr "Konfigurácia firewalu"
-
-#: ../../tinyfirewall.pm_.c:199
-msgid "No (firewall this off from the internet)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:200
-msgid "Yes (allow this through the firewall)"
-msgstr ""
-
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
-msgid "Please Wait... Verifying installed packages"
-msgstr "Prosím čakajte, pripravujem inštaláciu"
-
-#: ../../tinyfirewall.pm_.c:238
-#, c-format
-msgid ""
-"Failure installing the needed packages : %s and Bastille.\n"
-" Try to install them manually."
-msgstr ""
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Sieťovy počítač (klient)"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS server, SMB server, Proxy server, SSH server"
-
-#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Kancelária"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome stanica"
-
-#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Nástroje pre váš Palm Pilot alebo Visor"
-
-#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Pracovná stanica"
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Firewall/Router"
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domain Name a Network Information Server"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Kancelárske programy: editory (kword, abiword), tabuľkové procesory "
-"(kspread, gnumeric), pdf prehliadače, atd"
-
-#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Nástroje pre audio: mpš alebo midi prehrávače, etc"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Knihy a návody pre Linux a Free Software"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE stanica"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, atď"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimédia - Video"
-
-#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Nástroje na mail, správy, web, prenos súborov, a chat"
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Dtabázy"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL alebo MySQL databázový server"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Nástroje na jednoduchú konfiguráciu vášho počítača"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimédia - Zvuk"
-
-#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Pomôcky"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentácia"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Konzolové nástroje"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix mail server, Inn news server"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internetová stanica"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimedialna stanica"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Konfigurácia"
-
-#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Viac grafických prostredí (Gnome, IceWM)"
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"K Desktop Enviroment, grafické prostredie s množstvom pribalených programov"
-
-#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Grafické prostredie"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache a Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Nástroje na vytvorenie a napálenie CD"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Kancelárska stanica"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, atď"
-
-#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Grafické programy ako napr. The Gimp"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C a C++ vývojove knižnice, programy a include súbory"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Sieťový server"
-
-#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Mail/Groupware/Správy"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Hracia stanica"
-
-#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Prehravače a editory videa"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Graphics"
-msgstr "Multimédia - Grafika"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Zábavne programy: stolové, stratégie, atď"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Nástroje na čítanie a posielanie mailov a správ (pine, mutt, tin..) a "
-"prehliadanie www"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivácia, emulátory, monitorovanie"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Osobné financie"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr "Grafické rozhranie s aplikáciami a desktopovými nástrojmi"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Klienty pre rôzne protokoly vrátane ssh"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Brána k internetu"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programy na prehrávanie/editovanie zvuku a videa"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Iné grafické prostredia"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editory, shelly, súborove nástroje, terminály"
-
-#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programy na správu vaších financií, napr. gnucash"
-
-#: ../../share/compssUsers:999
-msgid "Personal Information Management"
-msgstr "Osobný informačný manažment"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimédia - CD napaľovanie"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Vedecká stanica"
-
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-
-#~ msgid "About"
-#~ msgstr "O "
-
-#~ msgid " Help "
-#~ msgstr " Pomoc"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr ""
-#~ "Nemôžem pristupovať k modulom jadra, ktoré patria k Vášmu jadru (chýba "
-#~ "súbor %s)"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "Choose a default printer!"
-#~ msgstr "Zvoľte predvolenú tlačiareň"
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Aplikuj/Znovu načítaj"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Teraz môžete zadať parametre pre modul %s."
-
-#~ msgid "mount failed"
-#~ msgstr "pripojenie zlyhalo "
-
-#~ msgid "Low"
-#~ msgstr "Slabá"
-
-#~ msgid "Medium"
-#~ msgstr "Stredná"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr "V tejto úrovni je viac varovaní a kontroly."
-
-#~ msgid "Boot mode"
-#~ msgstr "Mód štartu"
-
-#~ msgid "Export"
-#~ msgstr "Export"
-
-#~ msgid "click here"
-#~ msgstr "kliknite sem"
-
-#~ msgid ""
-#~ "This %s scanner uses parallel port, which is unsupported for the moment"
-#~ msgstr ""
-#~ "Tento %s skener používa paralelný port, ktorý ešte nieje podporovaný."
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux spravuje čas v GMT a prekladá ho na lokálny\n"
-#~ "čas s ohladom na časovú zónu, ktorú ste zvolili."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Pripojiť k internetu"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Odpojiť od internetu"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfigurácia sieťového pripojenia (LAN alebo internet)"
-
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Rozpoznané %s, želáte si ho nastaviť?"
-
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Prosím zvoľte tlačiareň, ktorú chcete nastaviť"
-
-#~ msgid "Infos"
-#~ msgstr "Informácie"
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "Hľadám možné nfs zdroje"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "Hľadám možné nfs zdroje na serveri %s"
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "Hľadám možné samba zdroje"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "Hľadám možné samba zdroje na serveri %s"
-
-#~ msgid "Removable media"
-#~ msgstr "Vymeniteľné médium"
-
-#~ msgid "Active"
-#~ msgstr "Aktívny"
-
-#~ msgid "No X"
-#~ msgstr "Nie X"
-
-#~ msgid "Base system only"
-#~ msgstr "Iba základný systém"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "Bola zistená tlačiareň, model \"%s\" na "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Lokálne zariadenie tlačiarne"
-
-#~ msgid "Printer Device"
-#~ msgstr "Zariadenie tlačiarne"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "Chýba zariadenie alebo meno súboru."
-
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Tlačiareň na vzdialenom CUPS serveri"
-
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Tlačiareň na vzdialenom serveri"
-
-#~ msgid " Linux "
-#~ msgstr " Linux"
-
-#~ msgid " System "
-#~ msgstr " Systém"
-
-#~ msgid " Other "
-#~ msgstr " Iná"
-
-#~ msgid " A Entire System "
-#~ msgstr " Celý Systém"
-
-#~ msgid "please choose your CD space"
-#~ msgstr "Prosím zvoľte priestor na CD"
-
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr " Prosím skontrolujte či používate CDRW médium"
-
-#~ msgid " Tape "
-#~ msgstr " Páska"
-
-#~ msgid " Use .backupignore files"
-#~ msgstr "Použi súbory .backupignore"
-
-#~ msgid "Configure it"
-#~ msgstr "Nastav to"
-
-#~ msgid "on CDROM"
-#~ msgstr "na CDROM"
-
-#~ msgid "on Tape Device"
-#~ msgstr "na Páskové zariadenie"
-
-#~ msgid " Cancel "
-#~ msgstr " Zruš"
-
-#~ msgid " Help "
-#~ msgstr " Pomoc"
-
-#~ msgid " Ok "
-#~ msgstr " Ok"
-
-#~ msgid " Next "
-#~ msgstr " Nasledujúci"
-
-#~ msgid "close"
-#~ msgstr "zatvoriť"
diff --git a/perl-install/share/po/sl.po b/perl-install/share/po/sl.po
deleted file mode 100644
index f27bc3b16..000000000
--- a/perl-install/share/po/sl.po
+++ /dev/null
@@ -1,11880 +0,0 @@
-# Translation file of Mandrake graphic install
-# Copyright (C) 1999 Mandrakesoft
-# Alen Salamun <alien@alienworld.org>, 2000.
-# (1938)
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-09-05 20:49+0200\n"
-"Last-Translator: Alen Salamun <alien@alienworld.org>\n"
-"Language-Team: Slovenian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-2\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:249
-#, fuzzy
-msgid "Multi-head configuration"
-msgstr "Nastavitev zaslona"
-
-#: ../../Xconfigurator.pm_.c:250
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafična kartica"
-
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Izberite grafično kartico"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Izberite strežnik X"
-
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Strežnik X"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Izberite strežnik X"
-
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Strežnik X"
-
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Katero nastavitev strežnika XFree želite?"
-
-#: ../../Xconfigurator.pm_.c:374
-#, 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 ""
-"Vaša kartica lahko uporablja strojno 3D pospeševanje, ampak samo z XFree %"
-"s.\n"
-"Vaša kartica je podprta s strani XFree %s, kjer je lahko boljša 2D podpora."
-
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Vaša kartica lahko uporablja strojno 3D pospeševanje z XFree %s."
-
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s s strojnim 3D pospeševanjem"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, 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 ""
-"Vaša kartica lahko uporablja strojno 3D pospeševanje z XFree %s,\n"
-"PODPORA JE ŠE V RAZVOJU, RAČUNALNIK SE LAHKO PRENEHA ODZIVATI."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s z RAZVOJNO strojno 3D pospešitvijo"
-
-#: ../../Xconfigurator.pm_.c:397
-#, 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ša kartica lahko uporablja strojno 3D pospeševanje, ampak samo z XFree %"
-"s,\n"
-"PODPORA JE ŠE V RAZVOJU, RAČUNALNIK SE LAHKO PRENEHA ODZIVATI.Vaša kartica "
-"je podprta s strani XFree %s, kjer je lahko boljša 2D podpora."
-
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Nastavitev XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Izberite velikost pomnilnika grafične kartice"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Izberite nastavitve strežnika"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Choose a monitor"
-msgstr "Izberite monitor"
-
-#: ../../Xconfigurator.pm_.c:574
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfigurator.pm_.c:577
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Kritična parametra sta: vertikalna osvežitev (to je hitrost s katero je "
-"osvežen celoten zaslon) in najbolj pomembna horizontalna osvežitev (to je "
-"hitrost s katero so osvežene vrstice).\n"
-"\n"
-"ZELO POMEMBNO je, da ne izberete monitorja z osvežitvami, ki so izven "
-"sposobnosti vašega monitorja. S tem lahko poškodujete monitor!\n"
-"Če ste v dvomih, izberite konservativno nastavitev."
-
-#: ../../Xconfigurator.pm_.c:584
-msgid "Horizontal refresh rate"
-msgstr "Horizontalna sinhronizacija"
-
-#: ../../Xconfigurator.pm_.c:585
-msgid "Vertical refresh rate"
-msgstr "Vertikalna sinhronizacija"
-
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor ni nastavljen"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafična kartica še ni nastavljena"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Ločljivost še ni izbrana"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Želite preizkusiti nastavitev?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Pozor: testiranje te grafične kartice lahko povzroči neodzivanje računalnika"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Preizkus nastavitev"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"poskusite spremeniti nekatere parametre"
-
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Prišlo je do napake:"
-
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Zapuščam v %d sekundah"
-
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Je to pravilna nastavitev?"
-
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Prišlo je do napake, poskusite spremeniti nekatere parametre"
-
-#: ../../Xconfigurator.pm_.c:822
-msgid "Resolution"
-msgstr "Ločljivost"
-
-#: ../../Xconfigurator.pm_.c:874
-msgid "Choose the resolution and the color depth"
-msgstr "Izberite ločljivost in barvno globino"
-
-#: ../../Xconfigurator.pm_.c:876
-#, c-format
-msgid "Graphic card: %s"
-msgstr "Grafična kartica: %s"
-
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Strežnik XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr "Premakni"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
-msgid "Ok"
-msgstr "V redu"
-
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Expert Mode"
-msgstr "Napredni način"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Pokaži vse"
-
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Ločljivosti"
-
-#: ../../Xconfigurator.pm_.c:1509
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Razpored tipkovnice: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Tip miške: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1511
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Naprava miške: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1512
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1513
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Horizontalna frekvenca monitorja: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1514
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Vertikalna frekvenca monitorja: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1515
-#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Grafična kartica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Grafična kartica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
-msgstr "Grafični pomnilnik: %s kB\n"
-
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Barvna globina: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Ločljivost: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1522
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Strežnik XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1523
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Gonilnik XFree86: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Priprava nastavitev X-Windows"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Kaj želite narediti?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Spremeni monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Spremeni grafično kartico"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Spremeni nastavitve strežnika"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Spremeni ločljivost"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Pokaži informacije"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Testiraj ponovno"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Izhod"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Ohrani spremembe?\n"
-"Trenutna nastavitev:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X v zagonu"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
-msgstr ""
-"Računalnik lahko samodejno pri zagonu sistema zažene strežnik X.\n"
-"Želite zagnati strežnik X pri zagonu?"
-
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Za uveljavitev sprememb, se ponovno prijavite v %s"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Odjavite se in nato pritisnite Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 barv (8 bitov)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisoč barv (15 bitov)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisoč barv (16 bitov)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milijonov barv (24 bitov)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milijarde barv (32 bitov)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB ali več"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standardni VGA, 640×480 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800×600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Združljiv z 8514, 1024×768 @ 87 Hz prepleteno (brez 800×600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024×768 @ 87 Hz prepleteno, 800×600 @ 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Razširjen Super VGA, 800×600 @ 60 Hz, 640×480 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Neprepleten SVGA, 1024×768 @ 60 Hz, 800×600 @ 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Visoko frekvenčen SVGA, 1024×768 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Monitor, ki zmore 1280×1024 @ 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Monitor, ki zmore 1280×1024 @ 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Monitor, ki zmore 1280×1024 @ 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor, ki zmore 1600×1200 @ 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor, ki zmore 1600×1200 @ 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
-msgid "First sector of boot partition"
-msgstr "Prvi sektor zagonskega razdelka"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
-msgid "First sector of drive (MBR)"
-msgstr "Prvi sektor pogona (MBR)"
-
-#: ../../any.pm_.c:120
-msgid "SILO Installation"
-msgstr "Namestitev SILO"
-
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
-msgid "Where do you want to install the bootloader?"
-msgstr "Kam želite namestiti zagonski nalagalnik?"
-
-#: ../../any.pm_.c:133
-msgid "LILO/grub Installation"
-msgstr "Namestitev LILO/grub"
-
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
-msgid "SILO"
-msgstr ""
-
-#: ../../any.pm_.c:147
-msgid "LILO with text menu"
-msgstr ""
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
-msgid "LILO with graphical menu"
-msgstr ""
-
-#: ../../any.pm_.c:151
-msgid "Grub"
-msgstr ""
-
-#: ../../any.pm_.c:155
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr ""
-
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
-#, fuzzy
-msgid "Yaboot"
-msgstr "Korenski"
-
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
-msgid "Bootloader main options"
-msgstr "Glavne možnosti zagonskega nalagalnika"
-
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
-#, fuzzy
-msgid "Bootloader to use"
-msgstr "Glavne možnosti zagonskega nalagalnika"
-
-#: ../../any.pm_.c:169
-msgid "Bootloader installation"
-msgstr "Namestitev zagonskega nalagalnika"
-
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
-msgid "Boot device"
-msgstr "Zagonska naprava"
-
-#: ../../any.pm_.c:172
-msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA (ne deluje z starejšimi BIOS-i)"
-
-#: ../../any.pm_.c:173
-msgid "Compact"
-msgstr "Kompaktno"
-
-#: ../../any.pm_.c:173
-msgid "compact"
-msgstr "kompaktno"
-
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
-msgid "Video mode"
-msgstr "Grafični način"
-
-#: ../../any.pm_.c:176
-msgid "Delay before booting default image"
-msgstr "Pavza pred zaganjanjem privzete slike"
-
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
-msgid "Password"
-msgstr "Geslo"
-
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
-msgid "Password (again)"
-msgstr "Geslo (ponovno)"
-
-#: ../../any.pm_.c:180
-msgid "Restrict command line options"
-msgstr "Omejitev možnosti ukazne vrstice"
-
-#: ../../any.pm_.c:180
-msgid "restrict"
-msgstr "omeji"
-
-#: ../../any.pm_.c:182
-msgid "Clean /tmp at each boot"
-msgstr "Pri zagonu počisti /tmp"
-
-#: ../../any.pm_.c:183
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Natanšna velikost pomnilnika RAM, če je potrebno (najdenih %d MB)"
-
-#: ../../any.pm_.c:185
-msgid "Enable multi profiles"
-msgstr "Omogoči več profilov"
-
-#: ../../any.pm_.c:189
-msgid "Give the ram size in MB"
-msgstr "Podajte velikost pomnilnika v MB"
-
-#: ../../any.pm_.c:191
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Možnost ``Omejitev možnosti ukazne vrstice'' ni uporabna brez gesla"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "Please try again"
-msgstr "Poskusite ponovno"
-
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
-msgid "The passwords do not match"
-msgstr "Gesla se ne ujemata"
-
-#: ../../any.pm_.c:200
-msgid "Init Message"
-msgstr ""
-
-#: ../../any.pm_.c:202
-msgid "Open Firmware Delay"
-msgstr ""
-
-#: ../../any.pm_.c:203
-msgid "Kernel Boot Timeout"
-msgstr ""
-
-#: ../../any.pm_.c:204
-msgid "Enable CD Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:205
-msgid "Enable OF Boot?"
-msgstr ""
-
-#: ../../any.pm_.c:206
-#, fuzzy
-msgid "Default OS?"
-msgstr "Privzeto"
-
-#: ../../any.pm_.c:240
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-
-#: ../../any.pm_.c:255
-msgid ""
-"Here are the different entries.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Tukaj so različni vnosi.\n"
-"Lahko dodate še kakšnega ali spremenite obstoječega"
-
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
-msgid "Add"
-msgstr "Dodaj"
-
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
-msgid "Done"
-msgstr "Končano"
-
-#: ../../any.pm_.c:265
-#, fuzzy
-msgid "Modify"
-msgstr "Spremeni RAID"
-
-#: ../../any.pm_.c:273
-msgid "Which type of entry do you want to add?"
-msgstr "Kakšen tip vnosa želite dodati?"
-
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:274
-msgid "Other OS (SunOS...)"
-msgstr "Ostali OS (SunOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (MacOS...)"
-msgstr "Ostali OS (MacOS...)"
-
-#: ../../any.pm_.c:275
-msgid "Other OS (windows...)"
-msgstr "Ostali OS (Okna...)"
-
-#: ../../any.pm_.c:294
-msgid "Image"
-msgstr "Slika"
-
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
-msgid "Root"
-msgstr "Korenski"
-
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
-msgid "Append"
-msgstr "Pripni"
-
-#: ../../any.pm_.c:300
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:301
-msgid "Read-write"
-msgstr "Branje-pisanje"
-
-#: ../../any.pm_.c:308
-msgid "Table"
-msgstr "Tabela"
-
-#: ../../any.pm_.c:309
-msgid "Unsafe"
-msgstr "Tvegano"
-
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
-msgid "Label"
-msgstr "Labela"
-
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
-msgid "Default"
-msgstr "Privzeto"
-
-#: ../../any.pm_.c:326
-#, fuzzy
-msgid "Initrd-size"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:328
-msgid "NoVideo"
-msgstr ""
-
-#: ../../any.pm_.c:336
-msgid "Remove entry"
-msgstr "Odstrani vnos"
-
-#: ../../any.pm_.c:339
-msgid "Empty label not allowed"
-msgstr "Prazna labela ni dovoljena"
-
-#: ../../any.pm_.c:340
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:340
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Potrebujete razdelek swap"
-
-#: ../../any.pm_.c:341
-msgid "This label is already used"
-msgstr "Ta labela je že uporabljena"
-
-#: ../../any.pm_.c:656
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Najdenih %s %s vmesnikov"
-
-#: ../../any.pm_.c:657
-msgid "Do you have another one?"
-msgstr "Imate še kakšnega?"
-
-#: ../../any.pm_.c:658
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Imate vmesnike %s?"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "No"
-msgstr "Ne"
-
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
-msgid "Yes"
-msgstr "Da"
-
-#: ../../any.pm_.c:661
-msgid "See hardware info"
-msgstr "Glejte informacije o strojni opremi"
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Namestitev gonilnika za %s kartico %s"
-
-#: ../../any.pm_.c:696
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Kateri %s gonilnik naj poizkusim?"
-
-#: ../../any.pm_.c:715
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"V nekaterih primerih potrebuje gonilnik %s za pravilno delovanje dodatne\n"
-" informacije. Lahko se zgodi, da deluje normalno tudi brez. Želite navesti\n"
-"dodatne nastavitve zanj ali dovolite gonilniku da poskusi pridobiti "
-"potrebne\n"
-"informacije samodejno? Lahko se zgodi, da se računalnik nepredvidoma "
-"ustavi,\n"
-"kar pa naj ne bi povzročilo nobene škode."
-
-#: ../../any.pm_.c:720
-msgid "Autoprobe"
-msgstr "Samodejna zaznava"
-
-#: ../../any.pm_.c:720
-msgid "Specify options"
-msgstr "Navedite nastavitve"
-
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sedaj lahko posredujete nastavitve za modul %s.\n"
-"Nastavitve so oblike ``ime=vrednost ime2=vrednost2 ...''.\n"
-"Na primer: ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Nastavitve modula:"
-
-#: ../../any.pm_.c:745
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Nalaganje modula %s je bilo neuspešno.\n"
-"Želite poskusiti znova z drugimi parametri?"
-
-#: ../../any.pm_.c:761
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:762
-msgid "access to rpm tools"
-msgstr ""
-
-#: ../../any.pm_.c:763
-msgid "allow \"su\""
-msgstr ""
-
-#: ../../any.pm_.c:764
-msgid "access to administrative files"
-msgstr ""
-
-#: ../../any.pm_.c:769
-#, c-format
-msgid "(already added %s)"
-msgstr "(že dodano %s)"
-
-#: ../../any.pm_.c:774
-msgid "This password is too simple"
-msgstr "Geslo je preveč preprosto"
-
-#: ../../any.pm_.c:775
-msgid "Please give a user name"
-msgstr "Vnesite uporabniško ime"
-
-#: ../../any.pm_.c:776
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Uporabniško ime mora vsebovati samo male črke, številke, `-' in `_'"
-
-#: ../../any.pm_.c:777
-msgid "This user name is already added"
-msgstr "To uporabniško ime je že dodano"
-
-#: ../../any.pm_.c:781
-msgid "Add user"
-msgstr "Dodaj uporabnika"
-
-#: ../../any.pm_.c:782
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Vnesite uporabnika\n"
-"%s"
-
-#: ../../any.pm_.c:783
-msgid "Accept user"
-msgstr "Sprejmi uporabnika"
-
-#: ../../any.pm_.c:794
-msgid "Real name"
-msgstr "Pravo ime"
-
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
-msgid "User name"
-msgstr "Uporabniško ime"
-
-#: ../../any.pm_.c:798
-msgid "Shell"
-msgstr "Lupina"
-
-#: ../../any.pm_.c:800
-msgid "Icon"
-msgstr "Ikona"
-
-#: ../../any.pm_.c:828
-msgid "Autologin"
-msgstr "Samodejna prijava"
-
-#: ../../any.pm_.c:829
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Računalnik lahko samodejno, po zagonu, v sistem prijavi uporabnika.\n"
-"Če tega ne želite, pritisnite gumb prekliči."
-
-#: ../../any.pm_.c:833
-msgid "Choose the default user:"
-msgstr "Izberite privzetega uporabnika:"
-
-#: ../../any.pm_.c:834
-msgid "Choose the window manager to run:"
-msgstr "Izberite okenskega upravitelja, ki naj bo pognan:"
-
-#: ../../any.pm_.c:849
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Ali želite sedaj zagnati ,X -probeonly`?"
-
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
-msgstr ""
-
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
-msgid "All"
-msgstr ""
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "Allow all users"
-msgstr "Dodaj uporabnika"
-
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-#, fuzzy
-msgid "Custom"
-msgstr "Prilagojeno"
-
-#: ../../any.pm_.c:955
-#, fuzzy
-msgid "No sharing"
-msgstr "Zaganjam X"
-
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Izberite pakete, ki jih želite namestiti"
-
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr ""
-
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:982
-msgid ""
-"Do you want to allow users to export some directories in their home?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Prekliči"
-
-#: ../../any.pm_.c:996
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:998
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
-msgstr ""
-
-#: ../../any.pm_.c:1035
-msgid "Welcome To Crackers"
-msgstr ""
-
-#: ../../any.pm_.c:1036
-msgid "Poor"
-msgstr ""
-
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
-msgid "Standard"
-msgstr ""
-
-#: ../../any.pm_.c:1038
-msgid "High"
-msgstr ""
-
-#: ../../any.pm_.c:1039
-msgid "Higher"
-msgstr ""
-
-#: ../../any.pm_.c:1040
-msgid "Paranoid"
-msgstr ""
-
-#: ../../any.pm_.c:1043
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive: it must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-
-#: ../../any.pm_.c:1046
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-
-#: ../../any.pm_.c:1047
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-
-#: ../../any.pm_.c:1048
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-
-#: ../../any.pm_.c:1049
-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. Note: if your machine is only a client on the "
-"Internet, you should better choose a lower level."
-msgstr ""
-
-#: ../../any.pm_.c:1052
-msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
-msgstr ""
-
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr ""
-
-#: ../../any.pm_.c:1061
-#, fuzzy
-msgid "Security level"
-msgstr "Privzeto"
-
-#: ../../any.pm_.c:1063
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Izberite nastavitve strežnika"
-
-#: ../../any.pm_.c:1064
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
-#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"Pozdravljeni v izbiralcu operacijskega sistema %s!\n"
-"\n"
-"Izberite operacijski sistem iz zgornjega seznama ali\n"
-"pocakajte %d sekund za prevzet zagon.\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
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Pozdravljeni v izbiralcu operacijskega sistema GRUB!"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Uporabite tipke %c in %c za izbiro vnosa"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Pritisnite enter za zagon izbranega OS, 'e' za urejevanje"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "ukazov pred zagonom ali 'c' za ukazno vrstico."
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Izbran vnos bo zagnan samodejno cez %d sekund."
-
-#: ../../bootloader.pm_.c:944
-msgid "not enough room in /boot"
-msgstr "premalo prostora v /boot"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
-msgid "Desktop"
-msgstr "Namizje"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
-msgid "Start Menu"
-msgstr "Meni Start"
-
-#: ../../bootloader.pm_.c:1065
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Kam želite namestiti zagonski nalagalnik?"
-
-#: ../../bootlook.pm_.c:46
-msgid "no help implemented yet.\n"
-msgstr "pomoč še ni implementirana.\n"
-
-#: ../../bootlook.pm_.c:62
-msgid "Boot Style Configuration"
-msgstr "Nastavitev zagonskega stila"
-
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
-msgid "/_File"
-msgstr "/_Datoteka"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "/File/_Quit"
-msgstr "/Datoteka/_Izhod"
-
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:91
-msgid "NewStyle Categorizing Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:92
-#, fuzzy
-msgid "NewStyle Monitor"
-msgstr "Monitor"
-
-#: ../../bootlook.pm_.c:93
-#, fuzzy
-msgid "Traditional Monitor"
-msgstr "Spremeni monitor"
-
-#: ../../bootlook.pm_.c:94
-msgid "Traditional Gtk+ Monitor"
-msgstr ""
-
-#: ../../bootlook.pm_.c:95
-msgid "Launch Aurora at boot time"
-msgstr "Zagon Aurore pri nalaganju sistema"
-
-#: ../../bootlook.pm_.c:98
-msgid "Lilo/grub mode"
-msgstr ""
-
-#: ../../bootlook.pm_.c:98
-msgid "Yaboot mode"
-msgstr ""
-
-#: ../../bootlook.pm_.c:104
-#, c-format
-msgid ""
-"You are currently using %s as Boot Manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
-#: ../../standalone/tinyfirewall_.c:59
-#, fuzzy
-msgid "Configure"
-msgstr "Nastavitev X"
-
-#: ../../bootlook.pm_.c:141
-msgid "System mode"
-msgstr "Sistemski način"
-
-#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
-msgstr "Zagon sistema X-Windows pri zagonu sistema"
-
-#: ../../bootlook.pm_.c:148
-msgid "No, I don't want autologin"
-msgstr "Ne, ne želim samodejne prijave"
-
-#: ../../bootlook.pm_.c:150
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Da, želim samodejno prijavo s tem uporabnikom"
-
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
-msgid "OK"
-msgstr "V redu"
-
-#: ../../bootlook.pm_.c:229
-#, c-format
-msgid "can not open /etc/inittab for reading: %s"
-msgstr "/etc/inittab ni mogoče odpreti za branje: %s"
-
-#: ../../common.pm_.c:94
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:94
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:94
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:102
-msgid "TB"
-msgstr "TB"
-
-#: ../../common.pm_.c:110
-#, c-format
-msgid "%d minutes"
-msgstr "%d minut"
-
-#: ../../common.pm_.c:112
-msgid "1 minute"
-msgstr "1 minuta"
-
-#: ../../common.pm_.c:114
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekund"
-
-#: ../../common.pm_.c:159
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Razdelkov ni več mogoče dodati"
-
-#: ../../common.pm_.c:166
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "France"
-msgstr "Prekliči"
-
-#: ../../crypto.pm_.c:13
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
-msgid "Belgium"
-msgstr ""
-
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
-msgid "Germany"
-msgstr ""
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
-msgid "Greece"
-msgstr "Splošno"
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Norway"
-msgstr ""
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-msgid "Sweden"
-msgstr ""
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
-#, fuzzy
-msgid "Italy"
-msgstr "Namestiti"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-msgid "Austria"
-msgstr ""
-
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
-msgid "United States"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm_.c:94
-msgid "Please make a backup of your data first"
-msgstr "Najprej naredite varnostno kopijo podatkov"
-
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
-msgid "Read carefully!"
-msgstr "Pazljivo preberite!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-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 ""
-"Če nameravate uporabiti aboot, pustite dovolj prostega prostora (2048 "
-"sektorjev je dovolj)\n"
-"na začetku diska"
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Napaka"
-
-#: ../../diskdrake/hd_gtk.pm_.c:151
-msgid "Wizard"
-msgstr "Čarovnik"
-
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
-msgid "Choose action"
-msgstr "Izberite akcijo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:185
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Imate velik FAT razdelek (ponavadi v uporabi\n"
-"DOS-a/Oken). Predlagamo vam, da najprej \n"
-"spremenite velikost tega razdelka (pritisnite\n"
-"nanj, nato pa pritisnite \"Spremeni velikost\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:188
-msgid "Please click on a partition"
-msgstr "Kliknite na razdelek"
-
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
-msgid "Details"
-msgstr "Podrobnosti"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-#, fuzzy
-msgid "Journalised FS"
-msgstr "priklop neuspešen"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:320
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
-msgid "Empty"
-msgstr "Prazno"
-
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
-msgid "Other"
-msgstr "Drugo"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Filesystem types:"
-msgstr "Tipi datotečnih sistemov:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
-msgid "Create"
-msgstr "Ustvari"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
-msgid "Type"
-msgstr "Tip"
-
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Namesto tega uporabite ``%s''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
-msgid "Delete"
-msgstr "Izbriši"
-
-#: ../../diskdrake/hd_gtk.pm_.c:348
-msgid "Use ``Unmount'' first"
-msgstr "Najprej uporabite ``Odklopi''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"Po spremembi tipa razdelka %s, bodo vsi podatki na tem razdelku izgubljeni"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Izberite akcijo"
-
-#: ../../diskdrake/interactive.pm_.c:171
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Ustvarjanje novega razdelka"
-
-#: ../../diskdrake/interactive.pm_.c:196
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to expert mode"
-msgstr "Spremeni v napredni način"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Toggle to normal mode"
-msgstr "Spremeni v normalen način"
-
-#: ../../diskdrake/interactive.pm_.c:218
-msgid "Undo"
-msgstr "Razveljavi"
-
-#: ../../diskdrake/interactive.pm_.c:237
-msgid "Continue anyway?"
-msgstr "Naj nadaljujem?"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without saving"
-msgstr "Zapri brez zapisovanja sprememb"
-
-#: ../../diskdrake/interactive.pm_.c:242
-msgid "Quit without writing the partition table?"
-msgstr "Zapri brez zapisovanja razdelitvene tabele?"
-
-#: ../../diskdrake/interactive.pm_.c:247
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Želite preizkusiti nastavitev?"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Auto allocate"
-msgstr "Samodejno dodeljevanje"
-
-#: ../../diskdrake/interactive.pm_.c:259
-msgid "Clear all"
-msgstr "Izbriši vse"
-
-#: ../../diskdrake/interactive.pm_.c:262
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Prepoznavanje trdega diska"
-
-#: ../../diskdrake/interactive.pm_.c:283
-msgid "All primary partitions are used"
-msgstr "Vsi primarni razdelki so uporabljeni"
-
-#: ../../diskdrake/interactive.pm_.c:284
-msgid "I can't add any more partition"
-msgstr "Razdelkov ni več mogoče dodati"
-
-#: ../../diskdrake/interactive.pm_.c:285
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Če želite imeti več razdelkov, enega izbrišite, tako da bo možno ustvariti "
-"razširjen razdelek"
-
-#: ../../diskdrake/interactive.pm_.c:295
-#, fuzzy
-msgid "Save partition table"
-msgstr "Zapiši razdelitveno tabelo"
-
-#: ../../diskdrake/interactive.pm_.c:296
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Reševanje razdelitvene tabele"
-
-#: ../../diskdrake/interactive.pm_.c:297
-msgid "Rescue partition table"
-msgstr "Reševanje razdelitvene tabele"
-
-#: ../../diskdrake/interactive.pm_.c:299
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Reševanje razdelitvene tabele"
-
-#: ../../diskdrake/interactive.pm_.c:304
-msgid "Removable media automounting"
-msgstr ""
-